/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: Björn Påhlsson
  • Date: 2011-06-23 22:27:15 UTC
  • mto: This revision was merged to the branch mainline in revision 485.
  • Revision ID: belorn@fukt.bsnet.se-20110623222715-q5wro9ma9iyjl367
* Makefile (CFLAGS): Added "-lrt" to include real time library.
* plugins.d/mandos-client.c: use scandir(3) instead of readdir(3)
                             Prefix all debug output with "Mandos plugin " + program_invocation_short_name
                             Retry servers that failed to provide password.
                             New option --retry SECONDS that sets the interval between rechecking.
                             --retry also controls how often it retries a server when using --connect.
* plugins.d/splashy.c:  Prefix all debug output with "Mandos plugin " + program_invocation_short_name
* plugins.d/usplash.c: --||--
* plugins.d/askpass-fifo.c: --||--
* plugins.d/password-prompt.c: --||--
* plugins.d/plymouth.c: --||--
* mandos: Lower logger level from warning to info on failed client requests because client was disabled or unknown fingerprint.
* plugins.d/plymouth.c (get_pid): bug fix. Was not calling free on direntries. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
                                   SIG_IGN, kill(), SIGKILL */
30
30
#include <stddef.h>             /* NULL */
31
31
#include <stdlib.h>             /* getenv() */
32
 
#include <stdio.h>              /* asprintf() */
 
32
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(), fprintf() */
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() */
 
45
#include <string.h>             /* memcmp(), strerror() */
46
46
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
47
47
                                   ENOENT, ENAMETOOLONG, EMFILE,
48
48
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
54
54
                                   WEXITSTATUS() */
55
55
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
56
56
                                   EX_UNAVAILABLE */
 
57
#include <stdarg.h>             /* va_list, va_start(), ... */
57
58
 
58
59
sig_atomic_t interrupted_by_signal = 0;
59
60
int signal_received;
60
61
 
 
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
 
61
84
static void termination_handler(int signum){
62
85
  if(interrupted_by_signal){
63
86
    return;
110
133
    proc_dir = opendir("/proc");
111
134
    if(proc_dir == NULL){
112
135
      int e = errno;
113
 
      error(0, errno, "opendir");
 
136
      error_plus(0, errno, "opendir");
114
137
      switch(e){
115
138
      case EACCES:
116
139
      case ENOTDIR:
152
175
        char *exe_link;
153
176
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
154
177
        if(ret == -1){
155
 
          error(0, errno, "asprintf");
 
178
          error_plus(0, errno, "asprintf");
156
179
          exitstatus = EX_OSERR;
157
180
          goto failure;
158
181
        }
166
189
            continue;
167
190
          }
168
191
          int e = errno;
169
 
          error(0, errno, "lstat");
 
192
          error_plus(0, errno, "lstat");
170
193
          free(exe_link);
171
194
          switch(e){
172
195
          case EACCES:
214
237
    sigemptyset(&new_action.sa_mask);
215
238
    ret = sigaddset(&new_action.sa_mask, SIGINT);
216
239
    if(ret == -1){
217
 
      error(0, errno, "sigaddset");
 
240
      error_plus(0, errno, "sigaddset");
218
241
      exitstatus = EX_OSERR;
219
242
      goto failure;
220
243
    }
221
244
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
222
245
    if(ret == -1){
223
 
      error(0, errno, "sigaddset");
 
246
      error_plus(0, errno, "sigaddset");
224
247
      exitstatus = EX_OSERR;
225
248
      goto failure;
226
249
    }
227
250
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
228
251
    if(ret == -1){
229
 
      error(0, errno, "sigaddset");
 
252
      error_plus(0, errno, "sigaddset");
230
253
      exitstatus = EX_OSERR;
231
254
      goto failure;
232
255
    }
233
256
    ret = sigaction(SIGINT, NULL, &old_action);
234
257
    if(ret == -1){
235
 
      error(0, errno, "sigaction");
 
258
      error_plus(0, errno, "sigaction");
236
259
      exitstatus = EX_OSERR;
237
260
      goto failure;
238
261
    }
239
262
    if(old_action.sa_handler != SIG_IGN){
240
263
      ret = sigaction(SIGINT, &new_action, NULL);
241
264
      if(ret == -1){
242
 
        error(0, errno, "sigaction");
 
265
        error_plus(0, errno, "sigaction");
243
266
        exitstatus = EX_OSERR;
244
267
        goto failure;
245
268
      }
246
269
    }
247
270
    ret = sigaction(SIGHUP, NULL, &old_action);
248
271
    if(ret == -1){
249
 
      error(0, errno, "sigaction");
 
272
      error_plus(0, errno, "sigaction");
250
273
      exitstatus = EX_OSERR;
251
274
      goto failure;
252
275
    }
253
276
    if(old_action.sa_handler != SIG_IGN){
254
277
      ret = sigaction(SIGHUP, &new_action, NULL);
255
278
      if(ret == -1){
256
 
        error(0, errno, "sigaction");
 
279
        error_plus(0, errno, "sigaction");
257
280
        exitstatus = EX_OSERR;
258
281
        goto failure;
259
282
      }
260
283
    }
261
284
    ret = sigaction(SIGTERM, NULL, &old_action);
262
285
    if(ret == -1){
263
 
      error(0, errno, "sigaction");
 
286
      error_plus(0, errno, "sigaction");
264
287
      exitstatus = EX_OSERR;
265
288
      goto failure;
266
289
    }
267
290
    if(old_action.sa_handler != SIG_IGN){
268
291
      ret = sigaction(SIGTERM, &new_action, NULL);
269
292
      if(ret == -1){
270
 
        error(0, errno, "sigaction");
 
293
        error_plus(0, errno, "sigaction");
271
294
        exitstatus = EX_OSERR;
272
295
        goto failure;
273
296
      }
284
307
    goto failure;
285
308
  }
286
309
  if(splashy_command_pid == -1){
287
 
    error(0, errno, "fork");
 
310
    error_plus(0, errno, "fork");
288
311
    exitstatus = EX_OSERR;
289
312
    goto failure;
290
313
  }
294
317
      const char splashy_command[] = "/sbin/splashy_update";
295
318
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
296
319
      int e = errno;
297
 
      error(0, errno, "execl");
 
320
      error_plus(0, errno, "execl");
298
321
      switch(e){
299
322
      case EACCES:
300
323
      case ENOENT:
344
367
      goto failure;
345
368
    }
346
369
    if(ret == -1){
347
 
      error(0, errno, "waitpid");
 
370
      error_plus(0, errno, "waitpid");
348
371
      if(errno == ECHILD){
349
372
        splashy_command_pid = 0;
350
373
      }
382
405
         the real user ID (_mandos) */
383
406
      ret = setuid(geteuid());
384
407
      if(ret == -1){
385
 
        error(0, errno, "setuid");
 
408
        error_plus(0, errno, "setuid");
386
409
      }
387
410
      
388
411
      setsid();
389
412
      ret = chdir("/");
390
413
      if(ret == -1){
391
 
        error(0, errno, "chdir");
 
414
        error_plus(0, errno, "chdir");
392
415
      }
393
416
/*       if(fork() != 0){ */
394
417
/*      _exit(EXIT_SUCCESS); */
395
418
/*       } */
396
419
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
397
420
      if(ret == -1){
398
 
        error(0, errno, "dup2");
 
421
        error_plus(0, errno, "dup2");
399
422
        _exit(EX_OSERR);
400
423
      }
401
424
      
402
425
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
403
426
      {
404
427
        int e = errno;
405
 
        error(0, errno, "execl");
 
428
        error_plus(0, errno, "execl");
406
429
        switch(e){
407
430
        case EACCES:
408
431
        case ENOENT:
428
451
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
429
452
                                            &signal_action, NULL));
430
453
    if(ret == -1){
431
 
      error(0, errno, "sigaction");
 
454
      error_plus(0, errno, "sigaction");
432
455
    }
433
456
    do {
434
457
      ret = raise(signal_received);
435
458
    } while(ret != 0 and errno == EINTR);
436
459
    if(ret != 0){
437
 
      error(0, errno, "raise");
 
460
      error_plus(0, errno, "raise");
438
461
      abort();
439
462
    }
440
463
    TEMP_FAILURE_RETRY(pause());