/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

merge

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(),
33
 
                                   fprintf() */
 
32
#include <stdio.h>              /* asprintf() */
34
33
#include <stdlib.h>             /* EXIT_FAILURE, free(),
35
34
                                   EXIT_SUCCESS */
36
35
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
43
42
                                   sleep(), dup2() STDERR_FILENO,
44
43
                                   STDOUT_FILENO, _exit(),
45
44
                                   pause() */
46
 
#include <string.h>             /* memcmp(), strerror() */
 
45
#include <string.h>             /* memcmp() */
47
46
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
48
47
                                   ENOENT, ENAMETOOLONG, EMFILE,
49
48
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
55
54
                                   WEXITSTATUS() */
56
55
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
57
56
                                   EX_UNAVAILABLE */
58
 
#include <stdarg.h>             /* va_list, va_start(), ... */
59
57
 
60
58
sig_atomic_t interrupted_by_signal = 0;
61
59
int signal_received;
62
60
 
63
 
/* Function to use when printing errors */
64
 
void error_plus(int status, int errnum, const char *formatstring,
65
 
                ...){
66
 
  va_list ap;
67
 
  char *text;
68
 
  int ret;
69
 
  
70
 
  va_start(ap, formatstring);
71
 
  ret = vasprintf(&text, formatstring, ap);
72
 
  if (ret == -1){
73
 
    fprintf(stderr, "Mandos plugin %s: ",
74
 
            program_invocation_short_name);
75
 
    vfprintf(stderr, formatstring, ap);
76
 
    fprintf(stderr, ": ");
77
 
    fprintf(stderr, "%s\n", strerror(errnum));
78
 
    error(status, errno, "vasprintf while printing error");
79
 
    return;
80
 
  }
81
 
  fprintf(stderr, "Mandos plugin ");
82
 
  error(status, errnum, "%s", text);
83
 
  free(text);
84
 
}
85
 
 
86
 
 
87
61
static void termination_handler(int signum){
88
62
  if(interrupted_by_signal){
89
63
    return;
136
110
    proc_dir = opendir("/proc");
137
111
    if(proc_dir == NULL){
138
112
      int e = errno;
139
 
      error_plus(0, errno, "opendir");
 
113
      error(0, errno, "opendir");
140
114
      switch(e){
141
115
      case EACCES:
142
116
      case ENOTDIR:
178
152
        char *exe_link;
179
153
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
180
154
        if(ret == -1){
181
 
          error_plus(0, errno, "asprintf");
 
155
          error(0, errno, "asprintf");
182
156
          exitstatus = EX_OSERR;
183
157
          goto failure;
184
158
        }
192
166
            continue;
193
167
          }
194
168
          int e = errno;
195
 
          error_plus(0, errno, "lstat");
 
169
          error(0, errno, "lstat");
196
170
          free(exe_link);
197
171
          switch(e){
198
172
          case EACCES:
240
214
    sigemptyset(&new_action.sa_mask);
241
215
    ret = sigaddset(&new_action.sa_mask, SIGINT);
242
216
    if(ret == -1){
243
 
      error_plus(0, errno, "sigaddset");
 
217
      error(0, errno, "sigaddset");
244
218
      exitstatus = EX_OSERR;
245
219
      goto failure;
246
220
    }
247
221
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
248
222
    if(ret == -1){
249
 
      error_plus(0, errno, "sigaddset");
 
223
      error(0, errno, "sigaddset");
250
224
      exitstatus = EX_OSERR;
251
225
      goto failure;
252
226
    }
253
227
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
254
228
    if(ret == -1){
255
 
      error_plus(0, errno, "sigaddset");
 
229
      error(0, errno, "sigaddset");
256
230
      exitstatus = EX_OSERR;
257
231
      goto failure;
258
232
    }
259
233
    ret = sigaction(SIGINT, NULL, &old_action);
260
234
    if(ret == -1){
261
 
      error_plus(0, errno, "sigaction");
 
235
      error(0, errno, "sigaction");
262
236
      exitstatus = EX_OSERR;
263
237
      goto failure;
264
238
    }
265
239
    if(old_action.sa_handler != SIG_IGN){
266
240
      ret = sigaction(SIGINT, &new_action, NULL);
267
241
      if(ret == -1){
268
 
        error_plus(0, errno, "sigaction");
 
242
        error(0, errno, "sigaction");
269
243
        exitstatus = EX_OSERR;
270
244
        goto failure;
271
245
      }
272
246
    }
273
247
    ret = sigaction(SIGHUP, NULL, &old_action);
274
248
    if(ret == -1){
275
 
      error_plus(0, errno, "sigaction");
 
249
      error(0, errno, "sigaction");
276
250
      exitstatus = EX_OSERR;
277
251
      goto failure;
278
252
    }
279
253
    if(old_action.sa_handler != SIG_IGN){
280
254
      ret = sigaction(SIGHUP, &new_action, NULL);
281
255
      if(ret == -1){
282
 
        error_plus(0, errno, "sigaction");
 
256
        error(0, errno, "sigaction");
283
257
        exitstatus = EX_OSERR;
284
258
        goto failure;
285
259
      }
286
260
    }
287
261
    ret = sigaction(SIGTERM, NULL, &old_action);
288
262
    if(ret == -1){
289
 
      error_plus(0, errno, "sigaction");
 
263
      error(0, errno, "sigaction");
290
264
      exitstatus = EX_OSERR;
291
265
      goto failure;
292
266
    }
293
267
    if(old_action.sa_handler != SIG_IGN){
294
268
      ret = sigaction(SIGTERM, &new_action, NULL);
295
269
      if(ret == -1){
296
 
        error_plus(0, errno, "sigaction");
 
270
        error(0, errno, "sigaction");
297
271
        exitstatus = EX_OSERR;
298
272
        goto failure;
299
273
      }
310
284
    goto failure;
311
285
  }
312
286
  if(splashy_command_pid == -1){
313
 
    error_plus(0, errno, "fork");
 
287
    error(0, errno, "fork");
314
288
    exitstatus = EX_OSERR;
315
289
    goto failure;
316
290
  }
320
294
      const char splashy_command[] = "/sbin/splashy_update";
321
295
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
322
296
      int e = errno;
323
 
      error_plus(0, errno, "execl");
 
297
      error(0, errno, "execl");
324
298
      switch(e){
325
299
      case EACCES:
326
300
      case ENOENT:
340
314
      case ENOTDIR:
341
315
      case ELOOP:
342
316
      case EISDIR:
343
 
#ifdef ELIBBAD
344
 
      case ELIBBAD:             /* Linux only */
345
 
#endif
 
317
      case ELIBBAD:
346
318
      case EPERM:
347
319
        _exit(EX_OSFILE);
348
320
      }
370
342
      goto failure;
371
343
    }
372
344
    if(ret == -1){
373
 
      error_plus(0, errno, "waitpid");
 
345
      error(0, errno, "waitpid");
374
346
      if(errno == ECHILD){
375
347
        splashy_command_pid = 0;
376
348
      }
408
380
         the real user ID (_mandos) */
409
381
      ret = setuid(geteuid());
410
382
      if(ret == -1){
411
 
        error_plus(0, errno, "setuid");
 
383
        error(0, errno, "setuid");
412
384
      }
413
385
      
414
386
      setsid();
415
387
      ret = chdir("/");
416
388
      if(ret == -1){
417
 
        error_plus(0, errno, "chdir");
 
389
        error(0, errno, "chdir");
418
390
      }
419
391
/*       if(fork() != 0){ */
420
392
/*      _exit(EXIT_SUCCESS); */
421
393
/*       } */
422
394
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
423
395
      if(ret == -1){
424
 
        error_plus(0, errno, "dup2");
 
396
        error(0, errno, "dup2");
425
397
        _exit(EX_OSERR);
426
398
      }
427
399
      
428
400
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
429
401
      {
430
402
        int e = errno;
431
 
        error_plus(0, errno, "execl");
 
403
        error(0, errno, "execl");
432
404
        switch(e){
433
405
        case EACCES:
434
406
        case ENOENT:
454
426
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
455
427
                                            &signal_action, NULL));
456
428
    if(ret == -1){
457
 
      error_plus(0, errno, "sigaction");
 
429
      error(0, errno, "sigaction");
458
430
    }
459
431
    do {
460
432
      ret = raise(signal_received);
461
433
    } while(ret != 0 and errno == EINTR);
462
434
    if(ret != 0){
463
 
      error_plus(0, errno, "raise");
 
435
      error(0, errno, "raise");
464
436
      abort();
465
437
    }
466
438
    TEMP_FAILURE_RETRY(pause());