/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 from trunk.  D-Bus usage is now standard, and there are two new
utilities (mandos-monitor and mandos-ctl) which uses it.  Also, a new
plugin for Plymouth.  Also fixes Debian bug #557076.

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,2009 Teddy Hogeborn
6
 
 * Copyright © 2008,2009 Björn Påhlsson
 
5
 * Copyright © 2008-2010 Teddy Hogeborn
 
6
 * Copyright © 2008-2010 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(), perror() */
 
32
#include <stdio.h>              /* asprintf() */
33
33
#include <stdlib.h>             /* EXIT_FAILURE, free(),
34
34
                                   EXIT_SUCCESS */
35
35
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
43
43
                                   STDOUT_FILENO, _exit(),
44
44
                                   pause() */
45
45
#include <string.h>             /* memcmp() */
46
 
#include <errno.h>              /* errno */
 
46
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
 
47
                                   ENOENT, ENAMETOOLONG, EMFILE,
 
48
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
 
49
                                   E2BIG, EFAULT, EIO, ETXTBSY,
 
50
                                   EISDIR, ELIBBAD, EPERM, EINTR,
 
51
                                   ECHILD */
 
52
#include <error.h>              /* error() */
47
53
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
48
54
                                   WEXITSTATUS() */
 
55
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
 
56
                                   EX_UNAVAILABLE */
49
57
 
50
58
sig_atomic_t interrupted_by_signal = 0;
51
59
int signal_received;
65
73
  DIR *proc_dir = NULL;
66
74
  pid_t splashy_pid = 0;
67
75
  pid_t splashy_command_pid = 0;
 
76
  int exitstatus = EXIT_FAILURE;
68
77
  
69
78
  /* Create prompt string */
70
79
  {
90
99
    }
91
100
    if(ret == -1){
92
101
      prompt = NULL;
 
102
      exitstatus = EX_OSERR;
93
103
      goto failure;
94
104
    }
95
105
  }
99
109
    const char splashy_name[] = "/sbin/splashy";
100
110
    proc_dir = opendir("/proc");
101
111
    if(proc_dir == NULL){
102
 
      perror("opendir");
 
112
      int e = errno;
 
113
      error(0, errno, "opendir");
 
114
      switch(e){
 
115
      case EACCES:
 
116
      case ENOTDIR:
 
117
      case ELOOP:
 
118
      case ENOENT:
 
119
      default:
 
120
        exitstatus = EX_OSFILE;
 
121
        break;
 
122
      case ENAMETOOLONG:
 
123
      case EMFILE:
 
124
      case ENFILE:
 
125
      case ENOMEM:
 
126
        exitstatus = EX_OSERR;
 
127
        break;
 
128
      }
103
129
      goto failure;
104
130
    }
105
131
    for(struct dirent *proc_ent = readdir(proc_dir);
126
152
        char *exe_link;
127
153
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
128
154
        if(ret == -1){
129
 
          perror("asprintf");
 
155
          error(0, errno, "asprintf");
 
156
          exitstatus = EX_OSERR;
130
157
          goto failure;
131
158
        }
132
159
        
138
165
            free(exe_link);
139
166
            continue;
140
167
          }
141
 
          perror("lstat");
 
168
          int e = errno;
 
169
          error(0, errno, "lstat");
142
170
          free(exe_link);
 
171
          switch(e){
 
172
          case EACCES:
 
173
          case ENOTDIR:
 
174
          case ELOOP:
 
175
          default:
 
176
            exitstatus = EX_OSFILE;
 
177
            break;
 
178
          case ENAMETOOLONG:
 
179
            exitstatus = EX_OSERR;
 
180
            break;
 
181
          }
143
182
          goto failure;
144
183
        }
145
184
        if(not S_ISLNK(exe_stat.st_mode)
163
202
    proc_dir = NULL;
164
203
  }
165
204
  if(splashy_pid == 0){
 
205
    exitstatus = EX_UNAVAILABLE;
166
206
    goto failure;
167
207
  }
168
208
  
174
214
    sigemptyset(&new_action.sa_mask);
175
215
    ret = sigaddset(&new_action.sa_mask, SIGINT);
176
216
    if(ret == -1){
177
 
      perror("sigaddset");
 
217
      error(0, errno, "sigaddset");
 
218
      exitstatus = EX_OSERR;
178
219
      goto failure;
179
220
    }
180
221
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
181
222
    if(ret == -1){
182
 
      perror("sigaddset");
 
223
      error(0, errno, "sigaddset");
 
224
      exitstatus = EX_OSERR;
183
225
      goto failure;
184
226
    }
185
227
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
186
228
    if(ret == -1){
187
 
      perror("sigaddset");
 
229
      error(0, errno, "sigaddset");
 
230
      exitstatus = EX_OSERR;
188
231
      goto failure;
189
232
    }
190
233
    ret = sigaction(SIGINT, NULL, &old_action);
191
234
    if(ret == -1){
192
 
      perror("sigaction");
 
235
      error(0, errno, "sigaction");
 
236
      exitstatus = EX_OSERR;
193
237
      goto failure;
194
238
    }
195
239
    if(old_action.sa_handler != SIG_IGN){
196
240
      ret = sigaction(SIGINT, &new_action, NULL);
197
241
      if(ret == -1){
198
 
        perror("sigaction");
 
242
        error(0, errno, "sigaction");
 
243
        exitstatus = EX_OSERR;
199
244
        goto failure;
200
245
      }
201
246
    }
202
247
    ret = sigaction(SIGHUP, NULL, &old_action);
203
248
    if(ret == -1){
204
 
      perror("sigaction");
 
249
      error(0, errno, "sigaction");
 
250
      exitstatus = EX_OSERR;
205
251
      goto failure;
206
252
    }
207
253
    if(old_action.sa_handler != SIG_IGN){
208
254
      ret = sigaction(SIGHUP, &new_action, NULL);
209
255
      if(ret == -1){
210
 
        perror("sigaction");
 
256
        error(0, errno, "sigaction");
 
257
        exitstatus = EX_OSERR;
211
258
        goto failure;
212
259
      }
213
260
    }
214
261
    ret = sigaction(SIGTERM, NULL, &old_action);
215
262
    if(ret == -1){
216
 
      perror("sigaction");
 
263
      error(0, errno, "sigaction");
 
264
      exitstatus = EX_OSERR;
217
265
      goto failure;
218
266
    }
219
267
    if(old_action.sa_handler != SIG_IGN){
220
268
      ret = sigaction(SIGTERM, &new_action, NULL);
221
269
      if(ret == -1){
222
 
        perror("sigaction");
 
270
        error(0, errno, "sigaction");
 
271
        exitstatus = EX_OSERR;
223
272
        goto failure;
224
273
      }
225
274
    }
235
284
    goto failure;
236
285
  }
237
286
  if(splashy_command_pid == -1){
238
 
    perror("fork");
 
287
    error(0, errno, "fork");
 
288
    exitstatus = EX_OSERR;
239
289
    goto failure;
240
290
  }
241
291
  /* Child */
243
293
    if(not interrupted_by_signal){
244
294
      const char splashy_command[] = "/sbin/splashy_update";
245
295
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
246
 
      perror("execl");
 
296
      int e = errno;
 
297
      error(0, errno, "execl");
 
298
      switch(e){
 
299
      case EACCES:
 
300
      case ENOENT:
 
301
      case ENOEXEC:
 
302
      case EINVAL:
 
303
        _exit(EX_UNAVAILABLE);
 
304
      case ENAMETOOLONG:
 
305
      case E2BIG:
 
306
      case ENOMEM:
 
307
      case EFAULT:
 
308
      case EIO:
 
309
      case EMFILE:
 
310
      case ENFILE:
 
311
      case ETXTBSY:
 
312
      default:
 
313
        _exit(EX_OSERR);
 
314
      case ENOTDIR:
 
315
      case ELOOP:
 
316
      case EISDIR:
 
317
      case ELIBBAD:
 
318
      case EPERM:
 
319
        _exit(EX_OSFILE);
 
320
      }
247
321
    }
248
322
    free(prompt);
249
323
    _exit(EXIT_FAILURE);
268
342
      goto failure;
269
343
    }
270
344
    if(ret == -1){
271
 
      perror("waitpid");
 
345
      error(0, errno, "waitpid");
272
346
      if(errno == ECHILD){
273
347
        splashy_command_pid = 0;
274
348
      }
306
380
         the real user ID (_mandos) */
307
381
      ret = setuid(geteuid());
308
382
      if(ret == -1){
309
 
        perror("setuid");
 
383
        error(0, errno, "setuid");
310
384
      }
311
385
      
312
386
      setsid();
313
387
      ret = chdir("/");
314
388
      if(ret == -1){
315
 
        perror("chdir");
 
389
        error(0, errno, "chdir");
316
390
      }
317
391
/*       if(fork() != 0){ */
318
392
/*      _exit(EXIT_SUCCESS); */
319
393
/*       } */
320
394
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
321
395
      if(ret == -1){
322
 
        perror("dup2");
323
 
        _exit(EXIT_FAILURE);
 
396
        error(0, errno, "dup2");
 
397
        _exit(EX_OSERR);
324
398
      }
325
 
    
 
399
      
326
400
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
327
 
      perror("execl");
328
 
      _exit(EXIT_FAILURE);
 
401
      {
 
402
        int e = errno;
 
403
        error(0, errno, "execl");
 
404
        switch(e){
 
405
        case EACCES:
 
406
        case ENOENT:
 
407
        case ENOEXEC:
 
408
        default:
 
409
          _exit(EX_UNAVAILABLE);
 
410
        case ENAMETOOLONG:
 
411
        case E2BIG:
 
412
        case ENOMEM:
 
413
          _exit(EX_OSERR);
 
414
        case ENOTDIR:
 
415
        case ELOOP:
 
416
          _exit(EX_OSFILE);
 
417
        }
 
418
      }
329
419
    }
330
420
  }
331
421
  
336
426
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
337
427
                                            &signal_action, NULL));
338
428
    if(ret == -1){
339
 
      perror("sigaction");
 
429
      error(0, errno, "sigaction");
340
430
    }
341
431
    do {
342
432
      ret = raise(signal_received);
343
433
    } while(ret != 0 and errno == EINTR);
344
434
    if(ret != 0){
345
 
      perror("raise");
 
435
      error(0, errno, "raise");
346
436
      abort();
347
437
    }
348
438
    TEMP_FAILURE_RETRY(pause());
349
439
  }
350
440
  
351
 
  return EXIT_FAILURE;
 
441
  return exitstatus;
352
442
}