/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

* 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-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() */
 
49
 
57
50
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
58
51
                                   EX_UNAVAILABLE */
59
 
#include <stdarg.h>             /* va_list, va_start(), ... */
60
52
 
61
53
sig_atomic_t interrupted_by_signal = 0;
62
54
int signal_received;
63
55
 
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
56
static void termination_handler(int signum){
90
57
  if(interrupted_by_signal){
91
58
    return;
138
105
    proc_dir = opendir("/proc");
139
106
    if(proc_dir == NULL){
140
107
      int e = errno;
141
 
      error_plus(0, errno, "opendir");
 
108
      perror("opendir");
142
109
      switch(e){
143
110
      case EACCES:
144
111
      case ENOTDIR:
180
147
        char *exe_link;
181
148
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
182
149
        if(ret == -1){
183
 
          error_plus(0, errno, "asprintf");
 
150
          perror("asprintf");
184
151
          exitstatus = EX_OSERR;
185
152
          goto failure;
186
153
        }
194
161
            continue;
195
162
          }
196
163
          int e = errno;
197
 
          error_plus(0, errno, "lstat");
 
164
          perror("lstat");
198
165
          free(exe_link);
199
166
          switch(e){
200
167
          case EACCES:
242
209
    sigemptyset(&new_action.sa_mask);
243
210
    ret = sigaddset(&new_action.sa_mask, SIGINT);
244
211
    if(ret == -1){
245
 
      error_plus(0, errno, "sigaddset");
 
212
      perror("sigaddset");
246
213
      exitstatus = EX_OSERR;
247
214
      goto failure;
248
215
    }
249
216
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
250
217
    if(ret == -1){
251
 
      error_plus(0, errno, "sigaddset");
 
218
      perror("sigaddset");
252
219
      exitstatus = EX_OSERR;
253
220
      goto failure;
254
221
    }
255
222
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
256
223
    if(ret == -1){
257
 
      error_plus(0, errno, "sigaddset");
 
224
      perror("sigaddset");
258
225
      exitstatus = EX_OSERR;
259
226
      goto failure;
260
227
    }
261
228
    ret = sigaction(SIGINT, NULL, &old_action);
262
229
    if(ret == -1){
263
 
      error_plus(0, errno, "sigaction");
 
230
      perror("sigaction");
264
231
      exitstatus = EX_OSERR;
265
232
      goto failure;
266
233
    }
267
234
    if(old_action.sa_handler != SIG_IGN){
268
235
      ret = sigaction(SIGINT, &new_action, NULL);
269
236
      if(ret == -1){
270
 
        error_plus(0, errno, "sigaction");
 
237
        perror("sigaction");
271
238
        exitstatus = EX_OSERR;
272
239
        goto failure;
273
240
      }
274
241
    }
275
242
    ret = sigaction(SIGHUP, NULL, &old_action);
276
243
    if(ret == -1){
277
 
      error_plus(0, errno, "sigaction");
 
244
      perror("sigaction");
278
245
      exitstatus = EX_OSERR;
279
246
      goto failure;
280
247
    }
281
248
    if(old_action.sa_handler != SIG_IGN){
282
249
      ret = sigaction(SIGHUP, &new_action, NULL);
283
250
      if(ret == -1){
284
 
        error_plus(0, errno, "sigaction");
 
251
        perror("sigaction");
285
252
        exitstatus = EX_OSERR;
286
253
        goto failure;
287
254
      }
288
255
    }
289
256
    ret = sigaction(SIGTERM, NULL, &old_action);
290
257
    if(ret == -1){
291
 
      error_plus(0, errno, "sigaction");
 
258
      perror("sigaction");
292
259
      exitstatus = EX_OSERR;
293
260
      goto failure;
294
261
    }
295
262
    if(old_action.sa_handler != SIG_IGN){
296
263
      ret = sigaction(SIGTERM, &new_action, NULL);
297
264
      if(ret == -1){
298
 
        error_plus(0, errno, "sigaction");
 
265
        perror("sigaction");
299
266
        exitstatus = EX_OSERR;
300
267
        goto failure;
301
268
      }
312
279
    goto failure;
313
280
  }
314
281
  if(splashy_command_pid == -1){
315
 
    error_plus(0, errno, "fork");
 
282
    perror("fork");
316
283
    exitstatus = EX_OSERR;
317
284
    goto failure;
318
285
  }
321
288
    if(not interrupted_by_signal){
322
289
      const char splashy_command[] = "/sbin/splashy_update";
323
290
      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
 
      }
 
291
      perror("execl");
351
292
    }
352
293
    free(prompt);
353
294
    _exit(EXIT_FAILURE);
372
313
      goto failure;
373
314
    }
374
315
    if(ret == -1){
375
 
      error_plus(0, errno, "waitpid");
 
316
      perror("waitpid");
376
317
      if(errno == ECHILD){
377
318
        splashy_command_pid = 0;
378
319
      }
410
351
         the real user ID (_mandos) */
411
352
      ret = setuid(geteuid());
412
353
      if(ret == -1){
413
 
        error_plus(0, errno, "setuid");
 
354
        perror("setuid");
414
355
      }
415
356
      
416
357
      setsid();
417
358
      ret = chdir("/");
418
359
      if(ret == -1){
419
 
        error_plus(0, errno, "chdir");
 
360
        perror("chdir");
420
361
      }
421
362
/*       if(fork() != 0){ */
422
363
/*      _exit(EXIT_SUCCESS); */
423
364
/*       } */
424
365
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
425
366
      if(ret == -1){
426
 
        error_plus(0, errno, "dup2");
 
367
        perror("dup2");
427
368
        _exit(EX_OSERR);
428
369
      }
429
370
      
430
371
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
431
372
      {
432
373
        int e = errno;
433
 
        error_plus(0, errno, "execl");
 
374
        perror("execl");
434
375
        switch(e){
435
376
        case EACCES:
436
377
        case ENOENT:
456
397
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
457
398
                                            &signal_action, NULL));
458
399
    if(ret == -1){
459
 
      error_plus(0, errno, "sigaction");
 
400
      perror("sigaction");
460
401
    }
461
402
    do {
462
403
      ret = raise(signal_received);
463
404
    } while(ret != 0 and errno == EINTR);
464
405
    if(ret != 0){
465
 
      error_plus(0, errno, "raise");
 
406
      perror("raise");
466
407
      abort();
467
408
    }
468
409
    TEMP_FAILURE_RETRY(pause());