/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-18 08:47:40 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091018084740-fa1qgm22lg125r10
* plugins.d/splashy.c: Use exit codes from <sysexits.h>.

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-2012 Teddy Hogeborn
6
 
 * Copyright © 2008-2012 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
19
19
 * along with this program.  If not, see
20
20
 * <http://www.gnu.org/licenses/>.
21
21
 * 
22
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
23
 */
24
24
 
25
25
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
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(), perror() */
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() */
47
 
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
48
 
                                   ENOENT, ENAMETOOLONG, EMFILE,
49
 
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
50
 
                                   E2BIG, EFAULT, EIO, ETXTBSY,
51
 
                                   EISDIR, ELIBBAD, EPERM, EINTR,
52
 
                                   ECHILD */
53
 
#include <error.h>              /* error() */
 
45
#include <string.h>             /* memcmp() */
 
46
#include <errno.h>              /* errno */
54
47
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
55
48
                                   WEXITSTATUS() */
 
49
 
56
50
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
57
51
                                   EX_UNAVAILABLE */
58
 
#include <stdarg.h>             /* va_list, va_start(), ... */
59
52
 
60
53
sig_atomic_t interrupted_by_signal = 0;
61
54
int signal_received;
62
55
 
63
 
/* Function to use when printing errors */
64
 
__attribute__((format (gnu_printf, 3, 4)))
65
 
void error_plus(int status, int errnum, const char *formatstring,
66
 
                ...){
67
 
  va_list ap;
68
 
  char *text;
69
 
  int ret;
70
 
  
71
 
  va_start(ap, formatstring);
72
 
  ret = vasprintf(&text, formatstring, ap);
73
 
  if (ret == -1){
74
 
    fprintf(stderr, "Mandos plugin %s: ",
75
 
            program_invocation_short_name);
76
 
    vfprintf(stderr, formatstring, ap);
77
 
    fprintf(stderr, ": ");
78
 
    fprintf(stderr, "%s\n", strerror(errnum));
79
 
    error(status, errno, "vasprintf while printing error");
80
 
    return;
81
 
  }
82
 
  fprintf(stderr, "Mandos plugin ");
83
 
  error(status, errnum, "%s", text);
84
 
  free(text);
85
 
}
86
 
 
87
 
 
88
56
static void termination_handler(int signum){
89
57
  if(interrupted_by_signal){
90
58
    return;
137
105
    proc_dir = opendir("/proc");
138
106
    if(proc_dir == NULL){
139
107
      int e = errno;
140
 
      error_plus(0, errno, "opendir");
 
108
      perror("opendir");
141
109
      switch(e){
142
110
      case EACCES:
143
111
      case ENOTDIR:
179
147
        char *exe_link;
180
148
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
181
149
        if(ret == -1){
182
 
          error_plus(0, errno, "asprintf");
 
150
          perror("asprintf");
183
151
          exitstatus = EX_OSERR;
184
152
          goto failure;
185
153
        }
193
161
            continue;
194
162
          }
195
163
          int e = errno;
196
 
          error_plus(0, errno, "lstat");
 
164
          perror("lstat");
197
165
          free(exe_link);
198
166
          switch(e){
199
167
          case EACCES:
241
209
    sigemptyset(&new_action.sa_mask);
242
210
    ret = sigaddset(&new_action.sa_mask, SIGINT);
243
211
    if(ret == -1){
244
 
      error_plus(0, errno, "sigaddset");
 
212
      perror("sigaddset");
245
213
      exitstatus = EX_OSERR;
246
214
      goto failure;
247
215
    }
248
216
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
249
217
    if(ret == -1){
250
 
      error_plus(0, errno, "sigaddset");
 
218
      perror("sigaddset");
251
219
      exitstatus = EX_OSERR;
252
220
      goto failure;
253
221
    }
254
222
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
255
223
    if(ret == -1){
256
 
      error_plus(0, errno, "sigaddset");
 
224
      perror("sigaddset");
257
225
      exitstatus = EX_OSERR;
258
226
      goto failure;
259
227
    }
260
228
    ret = sigaction(SIGINT, NULL, &old_action);
261
229
    if(ret == -1){
262
 
      error_plus(0, errno, "sigaction");
 
230
      perror("sigaction");
263
231
      exitstatus = EX_OSERR;
264
232
      goto failure;
265
233
    }
266
234
    if(old_action.sa_handler != SIG_IGN){
267
235
      ret = sigaction(SIGINT, &new_action, NULL);
268
236
      if(ret == -1){
269
 
        error_plus(0, errno, "sigaction");
 
237
        perror("sigaction");
270
238
        exitstatus = EX_OSERR;
271
239
        goto failure;
272
240
      }
273
241
    }
274
242
    ret = sigaction(SIGHUP, NULL, &old_action);
275
243
    if(ret == -1){
276
 
      error_plus(0, errno, "sigaction");
 
244
      perror("sigaction");
277
245
      exitstatus = EX_OSERR;
278
246
      goto failure;
279
247
    }
280
248
    if(old_action.sa_handler != SIG_IGN){
281
249
      ret = sigaction(SIGHUP, &new_action, NULL);
282
250
      if(ret == -1){
283
 
        error_plus(0, errno, "sigaction");
 
251
        perror("sigaction");
284
252
        exitstatus = EX_OSERR;
285
253
        goto failure;
286
254
      }
287
255
    }
288
256
    ret = sigaction(SIGTERM, NULL, &old_action);
289
257
    if(ret == -1){
290
 
      error_plus(0, errno, "sigaction");
 
258
      perror("sigaction");
291
259
      exitstatus = EX_OSERR;
292
260
      goto failure;
293
261
    }
294
262
    if(old_action.sa_handler != SIG_IGN){
295
263
      ret = sigaction(SIGTERM, &new_action, NULL);
296
264
      if(ret == -1){
297
 
        error_plus(0, errno, "sigaction");
 
265
        perror("sigaction");
298
266
        exitstatus = EX_OSERR;
299
267
        goto failure;
300
268
      }
311
279
    goto failure;
312
280
  }
313
281
  if(splashy_command_pid == -1){
314
 
    error_plus(0, errno, "fork");
 
282
    perror("fork");
315
283
    exitstatus = EX_OSERR;
316
284
    goto failure;
317
285
  }
320
288
    if(not interrupted_by_signal){
321
289
      const char splashy_command[] = "/sbin/splashy_update";
322
290
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
323
 
      int e = errno;
324
 
      error_plus(0, errno, "execl");
325
 
      switch(e){
326
 
      case EACCES:
327
 
      case ENOENT:
328
 
      case ENOEXEC:
329
 
      case EINVAL:
330
 
        _exit(EX_UNAVAILABLE);
331
 
      case ENAMETOOLONG:
332
 
      case E2BIG:
333
 
      case ENOMEM:
334
 
      case EFAULT:
335
 
      case EIO:
336
 
      case EMFILE:
337
 
      case ENFILE:
338
 
      case ETXTBSY:
339
 
      default:
340
 
        _exit(EX_OSERR);
341
 
      case ENOTDIR:
342
 
      case ELOOP:
343
 
      case EISDIR:
344
 
#ifdef ELIBBAD
345
 
      case ELIBBAD:             /* Linux only */
346
 
#endif
347
 
      case EPERM:
348
 
        _exit(EX_OSFILE);
349
 
      }
 
291
      perror("execl");
350
292
    }
351
293
    free(prompt);
352
294
    _exit(EXIT_FAILURE);
371
313
      goto failure;
372
314
    }
373
315
    if(ret == -1){
374
 
      error_plus(0, errno, "waitpid");
 
316
      perror("waitpid");
375
317
      if(errno == ECHILD){
376
318
        splashy_command_pid = 0;
377
319
      }
409
351
         the real user ID (_mandos) */
410
352
      ret = setuid(geteuid());
411
353
      if(ret == -1){
412
 
        error_plus(0, errno, "setuid");
 
354
        perror("setuid");
413
355
      }
414
356
      
415
357
      setsid();
416
358
      ret = chdir("/");
417
359
      if(ret == -1){
418
 
        error_plus(0, errno, "chdir");
 
360
        perror("chdir");
419
361
      }
420
362
/*       if(fork() != 0){ */
421
363
/*      _exit(EXIT_SUCCESS); */
422
364
/*       } */
423
365
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
424
366
      if(ret == -1){
425
 
        error_plus(0, errno, "dup2");
 
367
        perror("dup2");
426
368
        _exit(EX_OSERR);
427
369
      }
428
370
      
429
371
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
430
372
      {
431
373
        int e = errno;
432
 
        error_plus(0, errno, "execl");
 
374
        perror("execl");
433
375
        switch(e){
434
376
        case EACCES:
435
377
        case ENOENT:
455
397
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
456
398
                                            &signal_action, NULL));
457
399
    if(ret == -1){
458
 
      error_plus(0, errno, "sigaction");
 
400
      perror("sigaction");
459
401
    }
460
402
    do {
461
403
      ret = raise(signal_received);
462
404
    } while(ret != 0 and errno == EINTR);
463
405
    if(ret != 0){
464
 
      error_plus(0, errno, "raise");
 
406
      perror("raise");
465
407
      abort();
466
408
    }
467
409
    TEMP_FAILURE_RETRY(pause());