/mandos/release

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

« back to all changes in this revision

Viewing changes to plugins.d/splashy.c

Merge in branch to interpret an empty device name to mean
"autodetect".

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-2011 Teddy Hogeborn
6
 
 * Copyright © 2008-2011 Björn Påhlsson
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
7
7
 * 
8
8
 * This program is free software: you can redistribute it and/or
9
9
 * modify it under the terms of the GNU General Public License as
29
29
                                   SIG_IGN, kill(), SIGKILL */
30
30
#include <stddef.h>             /* NULL */
31
31
#include <stdlib.h>             /* getenv() */
32
 
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(), fprintf() */
 
32
#include <stdio.h>              /* asprintf(), perror() */
33
33
#include <stdlib.h>             /* EXIT_FAILURE, free(),
34
34
                                   EXIT_SUCCESS */
35
35
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
42
42
                                   sleep(), dup2() STDERR_FILENO,
43
43
                                   STDOUT_FILENO, _exit(),
44
44
                                   pause() */
45
 
#include <string.h>             /* memcmp(), strerror() */
 
45
#include <string.h>             /* memcmp() */
46
46
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
47
47
                                   ENOENT, ENAMETOOLONG, EMFILE,
48
48
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
49
49
                                   E2BIG, EFAULT, EIO, ETXTBSY,
50
50
                                   EISDIR, ELIBBAD, EPERM, EINTR,
51
51
                                   ECHILD */
52
 
#include <error.h>              /* error() */
53
52
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
54
53
                                   WEXITSTATUS() */
55
54
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
56
55
                                   EX_UNAVAILABLE */
57
 
#include <stdarg.h>             /* va_list, va_start(), ... */
58
56
 
59
57
sig_atomic_t interrupted_by_signal = 0;
60
58
int signal_received;
61
59
 
62
 
/* Function to use when printing errors */
63
 
void error_plus(int status, int errnum, const char *formatstring, ...){
64
 
  va_list ap;
65
 
  char *text;
66
 
  int ret;
67
 
  
68
 
  va_start(ap, formatstring);
69
 
  ret = vasprintf(&text, formatstring, ap);
70
 
  if (ret == -1){
71
 
    fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
72
 
    vfprintf(stderr, formatstring, ap);
73
 
    fprintf(stderr, ": ");
74
 
    fprintf(stderr, "%s\n", strerror(errnum));
75
 
    error(status, errno, "vasprintf while printing error");
76
 
    return;
77
 
  }
78
 
  fprintf(stderr, "Mandos plugin ");
79
 
  error(status, errnum, "%s", text);
80
 
  free(text);
81
 
}
82
 
 
83
 
 
84
60
static void termination_handler(int signum){
85
61
  if(interrupted_by_signal){
86
62
    return;
133
109
    proc_dir = opendir("/proc");
134
110
    if(proc_dir == NULL){
135
111
      int e = errno;
136
 
      error_plus(0, errno, "opendir");
 
112
      perror("opendir");
137
113
      switch(e){
138
114
      case EACCES:
139
115
      case ENOTDIR:
175
151
        char *exe_link;
176
152
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
177
153
        if(ret == -1){
178
 
          error_plus(0, errno, "asprintf");
 
154
          perror("asprintf");
179
155
          exitstatus = EX_OSERR;
180
156
          goto failure;
181
157
        }
189
165
            continue;
190
166
          }
191
167
          int e = errno;
192
 
          error_plus(0, errno, "lstat");
 
168
          perror("lstat");
193
169
          free(exe_link);
194
170
          switch(e){
195
171
          case EACCES:
237
213
    sigemptyset(&new_action.sa_mask);
238
214
    ret = sigaddset(&new_action.sa_mask, SIGINT);
239
215
    if(ret == -1){
240
 
      error_plus(0, errno, "sigaddset");
 
216
      perror("sigaddset");
241
217
      exitstatus = EX_OSERR;
242
218
      goto failure;
243
219
    }
244
220
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
245
221
    if(ret == -1){
246
 
      error_plus(0, errno, "sigaddset");
 
222
      perror("sigaddset");
247
223
      exitstatus = EX_OSERR;
248
224
      goto failure;
249
225
    }
250
226
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
251
227
    if(ret == -1){
252
 
      error_plus(0, errno, "sigaddset");
 
228
      perror("sigaddset");
253
229
      exitstatus = EX_OSERR;
254
230
      goto failure;
255
231
    }
256
232
    ret = sigaction(SIGINT, NULL, &old_action);
257
233
    if(ret == -1){
258
 
      error_plus(0, errno, "sigaction");
 
234
      perror("sigaction");
259
235
      exitstatus = EX_OSERR;
260
236
      goto failure;
261
237
    }
262
238
    if(old_action.sa_handler != SIG_IGN){
263
239
      ret = sigaction(SIGINT, &new_action, NULL);
264
240
      if(ret == -1){
265
 
        error_plus(0, errno, "sigaction");
 
241
        perror("sigaction");
266
242
        exitstatus = EX_OSERR;
267
243
        goto failure;
268
244
      }
269
245
    }
270
246
    ret = sigaction(SIGHUP, NULL, &old_action);
271
247
    if(ret == -1){
272
 
      error_plus(0, errno, "sigaction");
 
248
      perror("sigaction");
273
249
      exitstatus = EX_OSERR;
274
250
      goto failure;
275
251
    }
276
252
    if(old_action.sa_handler != SIG_IGN){
277
253
      ret = sigaction(SIGHUP, &new_action, NULL);
278
254
      if(ret == -1){
279
 
        error_plus(0, errno, "sigaction");
 
255
        perror("sigaction");
280
256
        exitstatus = EX_OSERR;
281
257
        goto failure;
282
258
      }
283
259
    }
284
260
    ret = sigaction(SIGTERM, NULL, &old_action);
285
261
    if(ret == -1){
286
 
      error_plus(0, errno, "sigaction");
 
262
      perror("sigaction");
287
263
      exitstatus = EX_OSERR;
288
264
      goto failure;
289
265
    }
290
266
    if(old_action.sa_handler != SIG_IGN){
291
267
      ret = sigaction(SIGTERM, &new_action, NULL);
292
268
      if(ret == -1){
293
 
        error_plus(0, errno, "sigaction");
 
269
        perror("sigaction");
294
270
        exitstatus = EX_OSERR;
295
271
        goto failure;
296
272
      }
307
283
    goto failure;
308
284
  }
309
285
  if(splashy_command_pid == -1){
310
 
    error_plus(0, errno, "fork");
 
286
    perror("fork");
311
287
    exitstatus = EX_OSERR;
312
288
    goto failure;
313
289
  }
317
293
      const char splashy_command[] = "/sbin/splashy_update";
318
294
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
319
295
      int e = errno;
320
 
      error_plus(0, errno, "execl");
 
296
      perror("execl");
321
297
      switch(e){
322
298
      case EACCES:
323
299
      case ENOENT:
337
313
      case ENOTDIR:
338
314
      case ELOOP:
339
315
      case EISDIR:
340
 
#ifdef ELIBBAD
341
 
      case ELIBBAD:             /* Linux only */
342
 
#endif
 
316
      case ELIBBAD:
343
317
      case EPERM:
344
318
        _exit(EX_OSFILE);
345
319
      }
367
341
      goto failure;
368
342
    }
369
343
    if(ret == -1){
370
 
      error_plus(0, errno, "waitpid");
 
344
      perror("waitpid");
371
345
      if(errno == ECHILD){
372
346
        splashy_command_pid = 0;
373
347
      }
405
379
         the real user ID (_mandos) */
406
380
      ret = setuid(geteuid());
407
381
      if(ret == -1){
408
 
        error_plus(0, errno, "setuid");
 
382
        perror("setuid");
409
383
      }
410
384
      
411
385
      setsid();
412
386
      ret = chdir("/");
413
387
      if(ret == -1){
414
 
        error_plus(0, errno, "chdir");
 
388
        perror("chdir");
415
389
      }
416
390
/*       if(fork() != 0){ */
417
391
/*      _exit(EXIT_SUCCESS); */
418
392
/*       } */
419
393
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
420
394
      if(ret == -1){
421
 
        error_plus(0, errno, "dup2");
 
395
        perror("dup2");
422
396
        _exit(EX_OSERR);
423
397
      }
424
398
      
425
399
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
426
400
      {
427
401
        int e = errno;
428
 
        error_plus(0, errno, "execl");
 
402
        perror("execl");
429
403
        switch(e){
430
404
        case EACCES:
431
405
        case ENOENT:
451
425
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
452
426
                                            &signal_action, NULL));
453
427
    if(ret == -1){
454
 
      error_plus(0, errno, "sigaction");
 
428
      perror("sigaction");
455
429
    }
456
430
    do {
457
431
      ret = raise(signal_received);
458
432
    } while(ret != 0 and errno == EINTR);
459
433
    if(ret != 0){
460
 
      error_plus(0, errno, "raise");
 
434
      perror("raise");
461
435
      abort();
462
436
    }
463
437
    TEMP_FAILURE_RETRY(pause());