/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/splashy.c

  • Committer: Teddy Hogeborn
  • Date: 2009-10-02 00:34:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091002003419-28cmxz7ls9h60l1m
* mandos (ClientDBus.ReceivedSecret): Renamed to "GotSecret".  All
                                      emitters changed.
  (DBusObjectWithProperties.Introspect): Catch any XML parsing errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Splashy - Read a password from splashy and output it
4
4
 * 
5
 
 * Copyright © 2008-2018 Teddy Hogeborn
6
 
 * Copyright © 2008-2018 Björn Påhlsson
7
 
 * 
8
 
 * This file is part of Mandos.
9
 
 * 
10
 
 * Mandos is free software: you can redistribute it and/or modify it
11
 
 * under the terms of the GNU General Public License as published by
12
 
 * the Free Software Foundation, either version 3 of the License, or
13
 
 * (at your option) any later version.
14
 
 * 
15
 
 * Mandos is distributed in the hope that it will be useful, but
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
 
7
 * 
 
8
 * This program is free software: you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License as
 
10
 * published by the Free Software Foundation, either version 3 of the
 
11
 * License, or (at your option) any later version.
 
12
 * 
 
13
 * This program is distributed in the hope that it will be useful, but
16
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
17
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
16
 * General Public License for more details.
19
17
 * 
20
18
 * You should have received a copy of the GNU General Public License
21
 
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
19
 * along with this program.  If not, see
 
20
 * <http://www.gnu.org/licenses/>.
22
21
 * 
23
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
24
23
 */
25
24
 
26
25
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
30
29
                                   SIG_IGN, kill(), SIGKILL */
31
30
#include <stddef.h>             /* NULL */
32
31
#include <stdlib.h>             /* getenv() */
33
 
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(),
34
 
                                   fprintf() */
 
32
#include <stdio.h>              /* asprintf(), perror() */
35
33
#include <stdlib.h>             /* EXIT_FAILURE, free(),
36
34
                                   EXIT_SUCCESS */
37
35
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
44
42
                                   sleep(), dup2() STDERR_FILENO,
45
43
                                   STDOUT_FILENO, _exit(),
46
44
                                   pause() */
47
 
#include <string.h>             /* memcmp(), strerror() */
48
 
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
49
 
                                   ENOENT, ENAMETOOLONG, EMFILE,
50
 
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
51
 
                                   E2BIG, EFAULT, EIO, ETXTBSY,
52
 
                                   EISDIR, ELIBBAD, EPERM, EINTR,
53
 
                                   ECHILD */
54
 
#include <error.h>              /* error() */
 
45
#include <string.h>             /* memcmp() */
 
46
#include <errno.h>              /* errno */
55
47
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
56
48
                                   WEXITSTATUS() */
57
 
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
58
 
                                   EX_UNAVAILABLE */
59
 
#include <stdarg.h>             /* va_list, va_start(), ... */
60
49
 
61
50
sig_atomic_t interrupted_by_signal = 0;
62
51
int signal_received;
63
52
 
64
 
/* Function to use when printing errors */
65
 
__attribute__((format (gnu_printf, 3, 4)))
66
 
void error_plus(int status, int errnum, const char *formatstring,
67
 
                ...){
68
 
  va_list ap;
69
 
  char *text;
70
 
  int ret;
71
 
  
72
 
  va_start(ap, formatstring);
73
 
  ret = vasprintf(&text, formatstring, ap);
74
 
  if(ret == -1){
75
 
    fprintf(stderr, "Mandos plugin %s: ",
76
 
            program_invocation_short_name);
77
 
    vfprintf(stderr, formatstring, ap);
78
 
    fprintf(stderr, ": ");
79
 
    fprintf(stderr, "%s\n", strerror(errnum));
80
 
    error(status, errno, "vasprintf while printing error");
81
 
    return;
82
 
  }
83
 
  fprintf(stderr, "Mandos plugin ");
84
 
  error(status, errnum, "%s", text);
85
 
  free(text);
86
 
}
87
 
 
88
 
 
89
53
static void termination_handler(int signum){
90
54
  if(interrupted_by_signal){
91
55
    return;
101
65
  DIR *proc_dir = NULL;
102
66
  pid_t splashy_pid = 0;
103
67
  pid_t splashy_command_pid = 0;
104
 
  int exitstatus = EXIT_FAILURE;
105
68
  
106
69
  /* Create prompt string */
107
70
  {
127
90
    }
128
91
    if(ret == -1){
129
92
      prompt = NULL;
130
 
      exitstatus = EX_OSERR;
131
93
      goto failure;
132
94
    }
133
95
  }
137
99
    const char splashy_name[] = "/sbin/splashy";
138
100
    proc_dir = opendir("/proc");
139
101
    if(proc_dir == NULL){
140
 
      int e = errno;
141
 
      error_plus(0, errno, "opendir");
142
 
      switch(e){
143
 
      case EACCES:
144
 
      case ENOTDIR:
145
 
      case ELOOP:
146
 
      case ENOENT:
147
 
      default:
148
 
        exitstatus = EX_OSFILE;
149
 
        break;
150
 
      case ENAMETOOLONG:
151
 
      case EMFILE:
152
 
      case ENFILE:
153
 
      case ENOMEM:
154
 
        exitstatus = EX_OSERR;
155
 
        break;
156
 
      }
 
102
      perror("opendir");
157
103
      goto failure;
158
104
    }
159
105
    for(struct dirent *proc_ent = readdir(proc_dir);
180
126
        char *exe_link;
181
127
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
182
128
        if(ret == -1){
183
 
          error_plus(0, errno, "asprintf");
184
 
          exitstatus = EX_OSERR;
 
129
          perror("asprintf");
185
130
          goto failure;
186
131
        }
187
132
        
193
138
            free(exe_link);
194
139
            continue;
195
140
          }
196
 
          int e = errno;
197
 
          error_plus(0, errno, "lstat");
 
141
          perror("lstat");
198
142
          free(exe_link);
199
 
          switch(e){
200
 
          case EACCES:
201
 
          case ENOTDIR:
202
 
          case ELOOP:
203
 
          default:
204
 
            exitstatus = EX_OSFILE;
205
 
            break;
206
 
          case ENAMETOOLONG:
207
 
            exitstatus = EX_OSERR;
208
 
            break;
209
 
          }
210
143
          goto failure;
211
144
        }
212
145
        if(not S_ISLNK(exe_stat.st_mode)
230
163
    proc_dir = NULL;
231
164
  }
232
165
  if(splashy_pid == 0){
233
 
    exitstatus = EX_UNAVAILABLE;
234
166
    goto failure;
235
167
  }
236
168
  
242
174
    sigemptyset(&new_action.sa_mask);
243
175
    ret = sigaddset(&new_action.sa_mask, SIGINT);
244
176
    if(ret == -1){
245
 
      error_plus(0, errno, "sigaddset");
246
 
      exitstatus = EX_OSERR;
 
177
      perror("sigaddset");
247
178
      goto failure;
248
179
    }
249
180
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
250
181
    if(ret == -1){
251
 
      error_plus(0, errno, "sigaddset");
252
 
      exitstatus = EX_OSERR;
 
182
      perror("sigaddset");
253
183
      goto failure;
254
184
    }
255
185
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
256
186
    if(ret == -1){
257
 
      error_plus(0, errno, "sigaddset");
258
 
      exitstatus = EX_OSERR;
 
187
      perror("sigaddset");
259
188
      goto failure;
260
189
    }
261
190
    ret = sigaction(SIGINT, NULL, &old_action);
262
191
    if(ret == -1){
263
 
      error_plus(0, errno, "sigaction");
264
 
      exitstatus = EX_OSERR;
 
192
      perror("sigaction");
265
193
      goto failure;
266
194
    }
267
195
    if(old_action.sa_handler != SIG_IGN){
268
196
      ret = sigaction(SIGINT, &new_action, NULL);
269
197
      if(ret == -1){
270
 
        error_plus(0, errno, "sigaction");
271
 
        exitstatus = EX_OSERR;
 
198
        perror("sigaction");
272
199
        goto failure;
273
200
      }
274
201
    }
275
202
    ret = sigaction(SIGHUP, NULL, &old_action);
276
203
    if(ret == -1){
277
 
      error_plus(0, errno, "sigaction");
278
 
      exitstatus = EX_OSERR;
 
204
      perror("sigaction");
279
205
      goto failure;
280
206
    }
281
207
    if(old_action.sa_handler != SIG_IGN){
282
208
      ret = sigaction(SIGHUP, &new_action, NULL);
283
209
      if(ret == -1){
284
 
        error_plus(0, errno, "sigaction");
285
 
        exitstatus = EX_OSERR;
 
210
        perror("sigaction");
286
211
        goto failure;
287
212
      }
288
213
    }
289
214
    ret = sigaction(SIGTERM, NULL, &old_action);
290
215
    if(ret == -1){
291
 
      error_plus(0, errno, "sigaction");
292
 
      exitstatus = EX_OSERR;
 
216
      perror("sigaction");
293
217
      goto failure;
294
218
    }
295
219
    if(old_action.sa_handler != SIG_IGN){
296
220
      ret = sigaction(SIGTERM, &new_action, NULL);
297
221
      if(ret == -1){
298
 
        error_plus(0, errno, "sigaction");
299
 
        exitstatus = EX_OSERR;
 
222
        perror("sigaction");
300
223
        goto failure;
301
224
      }
302
225
    }
312
235
    goto failure;
313
236
  }
314
237
  if(splashy_command_pid == -1){
315
 
    error_plus(0, errno, "fork");
316
 
    exitstatus = EX_OSERR;
 
238
    perror("fork");
317
239
    goto failure;
318
240
  }
319
241
  /* Child */
321
243
    if(not interrupted_by_signal){
322
244
      const char splashy_command[] = "/sbin/splashy_update";
323
245
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
324
 
      int e = errno;
325
 
      error_plus(0, errno, "execl");
326
 
      switch(e){
327
 
      case EACCES:
328
 
      case ENOENT:
329
 
      case ENOEXEC:
330
 
      case EINVAL:
331
 
        _exit(EX_UNAVAILABLE);
332
 
      case ENAMETOOLONG:
333
 
      case E2BIG:
334
 
      case ENOMEM:
335
 
      case EFAULT:
336
 
      case EIO:
337
 
      case EMFILE:
338
 
      case ENFILE:
339
 
      case ETXTBSY:
340
 
      default:
341
 
        _exit(EX_OSERR);
342
 
      case ENOTDIR:
343
 
      case ELOOP:
344
 
      case EISDIR:
345
 
#ifdef ELIBBAD
346
 
      case ELIBBAD:             /* Linux only */
347
 
#endif
348
 
      case EPERM:
349
 
        _exit(EX_OSFILE);
350
 
      }
 
246
      perror("execl");
351
247
    }
352
248
    free(prompt);
353
249
    _exit(EXIT_FAILURE);
372
268
      goto failure;
373
269
    }
374
270
    if(ret == -1){
375
 
      error_plus(0, errno, "waitpid");
 
271
      perror("waitpid");
376
272
      if(errno == ECHILD){
377
273
        splashy_command_pid = 0;
378
274
      }
410
306
         the real user ID (_mandos) */
411
307
      ret = setuid(geteuid());
412
308
      if(ret == -1){
413
 
        error_plus(0, errno, "setuid");
 
309
        perror("setuid");
414
310
      }
415
311
      
416
312
      setsid();
417
313
      ret = chdir("/");
418
314
      if(ret == -1){
419
 
        error_plus(0, errno, "chdir");
 
315
        perror("chdir");
420
316
      }
421
317
/*       if(fork() != 0){ */
422
318
/*      _exit(EXIT_SUCCESS); */
423
319
/*       } */
424
320
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
425
321
      if(ret == -1){
426
 
        error_plus(0, errno, "dup2");
427
 
        _exit(EX_OSERR);
 
322
        perror("dup2");
 
323
        _exit(EXIT_FAILURE);
428
324
      }
429
 
      
 
325
    
430
326
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
431
 
      {
432
 
        int e = errno;
433
 
        error_plus(0, errno, "execl");
434
 
        switch(e){
435
 
        case EACCES:
436
 
        case ENOENT:
437
 
        case ENOEXEC:
438
 
        default:
439
 
          _exit(EX_UNAVAILABLE);
440
 
        case ENAMETOOLONG:
441
 
        case E2BIG:
442
 
        case ENOMEM:
443
 
          _exit(EX_OSERR);
444
 
        case ENOTDIR:
445
 
        case ELOOP:
446
 
          _exit(EX_OSFILE);
447
 
        }
448
 
      }
 
327
      perror("execl");
 
328
      _exit(EXIT_FAILURE);
449
329
    }
450
330
  }
451
331
  
456
336
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
457
337
                                            &signal_action, NULL));
458
338
    if(ret == -1){
459
 
      error_plus(0, errno, "sigaction");
 
339
      perror("sigaction");
460
340
    }
461
341
    do {
462
342
      ret = raise(signal_received);
463
343
    } while(ret != 0 and errno == EINTR);
464
344
    if(ret != 0){
465
 
      error_plus(0, errno, "raise");
 
345
      perror("raise");
466
346
      abort();
467
347
    }
468
348
    TEMP_FAILURE_RETRY(pause());
469
349
  }
470
350
  
471
 
  return exitstatus;
 
351
  return EXIT_FAILURE;
472
352
}