/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/usplash.c

  • Committer: Teddy Hogeborn
  • Date: 2008-10-05 17:38:31 UTC
  • Revision ID: teddy@fukt.bsnet.se-20081005173831-fysrfayl4yvhlo6x
* INSTALL: Add instructions on how to set the correct network
           interface on the cient, and also how to test the server and
           verify the password.

* TODO: Clean up old stuff.

* debian/mandos-client.README.Debian: Separate into sections with
                                      headlines.  Add instructions on
                                      how to test the server and
                                      verify the password.

* plugin-runner.conf: Add reminder to update initrd image.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#define _GNU_SOURCE             /* asprintf() */
2
2
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
 
                                   sigemptyset(), sigaddset(),
4
 
                                   sigaction, SIGINT, SIG_IGN, SIGHUP,
5
 
                                   SIGTERM, kill(), SIGKILL */
 
3
                                   sigemptyset(), sigaddset(), SIGINT,
 
4
                                   SIGHUP, SIGTERM, sigaction(),
 
5
                                   SIG_IGN, kill(), SIGKILL */
 
6
#include <stdbool.h>            /* bool, false, true */
 
7
#include <fcntl.h>              /* open(), O_WRONLY, O_RDONLY */
 
8
#include <iso646.h>             /* and, or, not*/
 
9
#include <errno.h>              /* errno, EINTR */
 
10
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR, struct
 
11
                                   dirent */
6
12
#include <stddef.h>             /* NULL */
 
13
#include <string.h>             /* strlen(), memcmp() */
 
14
#include <stdio.h>              /* asprintf(), perror() */
 
15
#include <unistd.h>             /* close(), write(), readlink(),
 
16
                                   read(), STDOUT_FILENO, sleep(),
 
17
                                   fork(), setuid(), geteuid(),
 
18
                                   setsid(), chdir(), dup2(),
 
19
                                   STDERR_FILENO, execv() */
 
20
#include <stdlib.h>             /* free(), EXIT_FAILURE, strtoul(),
 
21
                                   realloc(), EXIT_SUCCESS, malloc(),
 
22
                                   _exit() */
7
23
#include <stdlib.h>             /* getenv() */
8
 
#include <stdio.h>              /* asprintf(), perror() */
9
 
#include <stdlib.h>             /* EXIT_FAILURE, EXIT_SUCCESS,
10
 
                                   strtoul(), free() */
11
 
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
12
 
                                   ssize_t */
13
24
#include <dirent.h>             /* opendir(), readdir(), closedir() */
14
 
#include <unistd.h>             /* readlink(), fork(), execl(),
15
 
                                   _exit */
16
 
#include <string.h>             /* memcmp() */
17
 
#include <iso646.h>             /* and */
18
 
#include <stdbool.h>            /* bool, false, true */
19
 
#include <errno.h>              /* errno */
20
 
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
21
 
                                   WEXITSTATUS() */
22
 
#include <fcntl.h>              /* open(), O_RDONLY */
 
25
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
23
26
 
24
27
sig_atomic_t interrupted_by_signal = 0;
25
28
 
27
30
  interrupted_by_signal = 1;
28
31
}
29
32
 
 
33
static bool usplash_write(const char *cmd, const char *arg){
 
34
  /* 
 
35
   * usplash_write("TIMEOUT", "15") will write "TIMEOUT 15\0"
 
36
   * usplash_write("PULSATE", NULL) will write "PULSATE\0"
 
37
   * SEE ALSO
 
38
   *         usplash_write(8)
 
39
   */
 
40
  int ret;
 
41
  int fifo_fd;
 
42
  do{
 
43
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
 
44
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
 
45
      return false;
 
46
    }
 
47
  }while(fifo_fd == -1);
 
48
  
 
49
  const char *cmd_line;
 
50
  size_t cmd_line_len;
 
51
  char *cmd_line_alloc = NULL;
 
52
  if(arg == NULL){
 
53
    cmd_line = cmd;
 
54
    cmd_line_len = strlen(cmd);
 
55
  }else{
 
56
    do{
 
57
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
 
58
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
59
        int e = errno;
 
60
        close(fifo_fd);
 
61
        errno = e;
 
62
        return false;
 
63
      }
 
64
    }while(ret == -1);
 
65
    cmd_line = cmd_line_alloc;
 
66
    cmd_line_len = (size_t)ret + 1;
 
67
  }
 
68
  
 
69
  size_t written = 0;
 
70
  while(not interrupted_by_signal and written < cmd_line_len){
 
71
    ret = write(fifo_fd, cmd_line + written,
 
72
                cmd_line_len - written);
 
73
    if(ret == -1){
 
74
      if(errno != EINTR or interrupted_by_signal){
 
75
        int e = errno;
 
76
        close(fifo_fd);
 
77
        free(cmd_line_alloc);
 
78
        errno = e;
 
79
        return false;
 
80
      } else {
 
81
        continue;
 
82
      }
 
83
    }
 
84
    written += (size_t)ret;
 
85
  }
 
86
  free(cmd_line_alloc);
 
87
  do{
 
88
    ret = close(fifo_fd);
 
89
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
90
      return false;
 
91
    }
 
92
  }while(ret == -1);
 
93
  if(interrupted_by_signal){
 
94
    return false;
 
95
  }
 
96
  return true;
 
97
}
 
98
 
30
99
int main(__attribute__((unused))int argc,
31
100
         __attribute__((unused))char **argv){
32
101
  int ret = 0;
38
107
  {
39
108
    const char *const cryptsource = getenv("cryptsource");
40
109
    const char *const crypttarget = getenv("crypttarget");
41
 
    const char *const prompt_start = "Enter passphrase to unlock the disk";
 
110
    const char prompt_start[] = "Enter passphrase to unlock the disk";
42
111
    
43
112
    if(cryptsource == NULL){
44
113
      if(crypttarget == NULL){
64
133
  pid_t usplash_pid = 0;
65
134
  char *cmdline = NULL;
66
135
  size_t cmdline_len = 0;
 
136
  const char usplash_name[] = "/sbin/usplash";
67
137
  {
68
 
    const char usplash_name[] = "/sbin/usplash";
69
138
    DIR *proc_dir = opendir("/proc");
70
139
    if(proc_dir == NULL){
71
140
      free(prompt);
84
153
         /proc/<pid>/exe link */
85
154
      char exe_target[sizeof(usplash_name)];
86
155
      {
 
156
        /* create file name string */
87
157
        char *exe_link;
88
158
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
89
159
        if(ret == -1){
92
162
          closedir(proc_dir);
93
163
          return EXIT_FAILURE;
94
164
        }
 
165
        
 
166
        /* Check that it refers to a symlink owned by root:root */
 
167
        struct stat exe_stat;
 
168
        ret = lstat(exe_link, &exe_stat);
 
169
        if(ret == -1){
 
170
          perror("lstat");
 
171
          free(exe_link);
 
172
          free(prompt);
 
173
          closedir(proc_dir);
 
174
          return EXIT_FAILURE;
 
175
        }
 
176
        if(not S_ISLNK(exe_stat.st_mode)
 
177
           or exe_stat.st_uid != 0
 
178
           or exe_stat.st_gid != 0){
 
179
          free(exe_link);
 
180
          continue;
 
181
        }
 
182
        
95
183
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
96
184
        free(exe_link);
 
185
        if(sret == -1){
 
186
          continue;
 
187
        }
97
188
      }
98
189
      if((sret == ((ssize_t)sizeof(exe_target)-1))
99
190
         and (memcmp(usplash_name, exe_target,
177
268
      free(prompt);
178
269
      return EXIT_FAILURE;
179
270
    }
180
 
    if (old_action.sa_handler != SIG_IGN){
 
271
    if(old_action.sa_handler != SIG_IGN){
181
272
      ret = sigaction(SIGINT, &new_action, NULL);
182
273
      if(ret == -1){
183
274
        perror("sigaction");
191
282
      free(prompt);
192
283
      return EXIT_FAILURE;
193
284
    }
194
 
    if (old_action.sa_handler != SIG_IGN){
 
285
    if(old_action.sa_handler != SIG_IGN){
195
286
      ret = sigaction(SIGHUP, &new_action, NULL);
196
287
      if(ret == -1){
197
288
        perror("sigaction");
205
296
      free(prompt);
206
297
      return EXIT_FAILURE;
207
298
    }
208
 
    if (old_action.sa_handler != SIG_IGN){
 
299
    if(old_action.sa_handler != SIG_IGN){
209
300
      ret = sigaction(SIGTERM, &new_action, NULL);
210
301
      if(ret == -1){
211
302
        perror("sigaction");
217
308
  
218
309
  /* Write command to FIFO */
219
310
  if(not interrupted_by_signal){
220
 
    int fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
221
 
    if(fifo_fd == -1){
222
 
      perror("open");
223
 
      free(prompt);
224
 
      return EXIT_FAILURE;
225
 
    }
226
 
    char *command;
227
 
    ret = asprintf(&command, "INPUTQUIET %s", prompt);
228
 
    if(ret == -1){
229
 
      perror("asprintf");
230
 
      free(prompt);
231
 
      return EXIT_FAILURE;
232
 
    }
233
 
    free(prompt);
234
 
    
235
 
    size_t command_len = (size_t)ret + 1;
236
 
    size_t written = 0;
237
 
    while(not interrupted_by_signal and written < command_len){
238
 
      ret = write(fifo_fd, command + written, command_len - written);
239
 
      if(ret == -1){
240
 
        if(interrupted_by_signal){
241
 
          break;
242
 
        }
243
 
        perror("write");
244
 
        if(written == 0){
245
 
          free(command);
246
 
          return EXIT_FAILURE;
247
 
        }
248
 
        an_error_occured = true;
249
 
        break;
250
 
      }
251
 
      written += (size_t)ret;
252
 
    }
253
 
    ret = close(fifo_fd);
254
 
    if(ret == -1 and not interrupted_by_signal){
255
 
      an_error_occured = true;
256
 
    }
257
 
    free(command);
258
 
  }else{
259
 
    free(prompt);
260
 
  }
 
311
    if(not usplash_write("TIMEOUT", "0")
 
312
       and (errno != EINTR)){
 
313
      perror("usplash_write");
 
314
      an_error_occured = true;
 
315
    }
 
316
  }
 
317
  if(not interrupted_by_signal and not an_error_occured){
 
318
    if(not usplash_write("INPUTQUIET", prompt)
 
319
       and (errno != EINTR)){
 
320
      perror("usplash_write");
 
321
      an_error_occured = true;
 
322
    }
 
323
  }
 
324
  free(prompt);
261
325
  
262
 
  {
 
326
  /* This is not really a loop; while() is used to be able to "break"
 
327
     out of it; those breaks are marked "Big" */
 
328
  while(not interrupted_by_signal and not an_error_occured){
263
329
    char *buf = NULL;
264
330
    size_t buf_len = 0;
265
331
    
 
332
    /* Open FIFO */
 
333
    int fifo_fd;
 
334
    do{
 
335
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
 
336
      if(fifo_fd == -1){
 
337
        if(errno != EINTR){
 
338
          perror("open");
 
339
          an_error_occured = true;
 
340
          break;
 
341
        }
 
342
        if(interrupted_by_signal){
 
343
          break;
 
344
        }
 
345
      }
 
346
    }while(fifo_fd == -1);
 
347
    if(interrupted_by_signal or an_error_occured){
 
348
      break;                    /* Big */
 
349
    }
 
350
    
266
351
    /* Read from FIFO */
267
 
    if(not interrupted_by_signal and not an_error_occured){
268
 
      int fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
269
 
      if(fifo_fd == -1 and not interrupted_by_signal){
270
 
        perror("open");
271
 
        return EXIT_FAILURE;
 
352
    size_t buf_allocated = 0;
 
353
    const size_t blocksize = 1024;
 
354
    do{
 
355
      if(buf_len + blocksize > buf_allocated){
 
356
        char *tmp = realloc(buf, buf_allocated + blocksize);
 
357
        if(tmp == NULL){
 
358
          perror("realloc");
 
359
          an_error_occured = true;
 
360
          break;
 
361
        }
 
362
        buf = tmp;
 
363
        buf_allocated += blocksize;
272
364
      }
273
 
      size_t buf_allocated = 0;
274
 
      const int blocksize = 1024;
275
365
      do{
276
 
        if(buf_len + blocksize > buf_allocated){
277
 
          char *tmp = realloc(buf, buf_allocated + blocksize);
278
 
          if(tmp == NULL){
279
 
            perror("realloc");
280
 
            an_error_occured = true;
281
 
            break;
282
 
          }
283
 
          buf = tmp;
284
 
          buf_allocated += blocksize;
285
 
        }
286
366
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
287
367
        if(sret == -1){
288
 
          perror("read");
289
 
          an_error_occured = true;
290
 
          break;
 
368
          if(errno != EINTR){
 
369
            perror("read");
 
370
            an_error_occured = true;
 
371
            break;
 
372
          }
 
373
          if(interrupted_by_signal){
 
374
            break;
 
375
          }
291
376
        }
292
 
        buf_len += (size_t)sret;
293
 
      }while(not interrupted_by_signal and sret != 0);
294
 
      close(fifo_fd);
295
 
    }
296
 
  
 
377
      }while(sret == -1);
 
378
      if(interrupted_by_signal or an_error_occured){
 
379
        break;
 
380
      }
 
381
      
 
382
      buf_len += (size_t)sret;
 
383
    }while(sret != 0);
 
384
    close(fifo_fd);
 
385
    if(interrupted_by_signal or an_error_occured){
 
386
      break;                    /* Big */
 
387
    }
 
388
    
 
389
    if(not usplash_write("TIMEOUT", "15")
 
390
       and (errno != EINTR)){
 
391
        perror("usplash_write");
 
392
        an_error_occured = true;
 
393
    }
 
394
    if(interrupted_by_signal or an_error_occured){
 
395
      break;                    /* Big */
 
396
    }
 
397
    
297
398
    /* Print password to stdout */
298
 
    if(not interrupted_by_signal and not an_error_occured){
299
 
      size_t written = 0;
 
399
    size_t written = 0;
 
400
    while(written < buf_len){
300
401
      do{
301
402
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
302
 
        if(sret == -1 and not interrupted_by_signal){
303
 
          perror("write");
304
 
          an_error_occured = true;
305
 
          break;
 
403
        if(sret == -1){
 
404
          if(errno != EINTR){
 
405
            perror("write");
 
406
            an_error_occured = true;
 
407
            break;
 
408
          }
 
409
          if(interrupted_by_signal){
 
410
            break;
 
411
          }
306
412
        }
307
 
        written += (size_t)sret;
308
 
      }while(written < buf_len);
309
 
      if(not interrupted_by_signal and not an_error_occured){
310
 
        return EXIT_SUCCESS;
 
413
      }while(sret == -1);
 
414
      if(interrupted_by_signal or an_error_occured){
 
415
        break;
311
416
      }
312
 
    }
313
 
  }
314
 
  
315
 
  kill(usplash_pid, SIGTERM);
316
 
  
 
417
      written += (size_t)sret;
 
418
    }
 
419
    free(buf);
 
420
    if(not interrupted_by_signal and not an_error_occured){
 
421
      free(cmdline);
 
422
      return EXIT_SUCCESS;
 
423
    }
 
424
    break;                      /* Big */
 
425
  }                             /* end of non-loop while() */
 
426
  
 
427
  /* If we got here, an error or interrupt must have happened */
 
428
  
 
429
  /* Create argc and argv for new usplash*/
317
430
  int cmdline_argc = 0;
318
431
  char **cmdline_argv = malloc(sizeof(char *));
319
 
  /* Create argv and argc for new usplash*/
320
432
  {
321
 
    ptrdiff_t position = 0;
322
 
    while((size_t)position < cmdline_len){
 
433
    size_t position = 0;
 
434
    while(position < cmdline_len){
323
435
      char **tmp = realloc(cmdline_argv,
324
 
                           (sizeof(char *) * (size_t)(cmdline_argc + 2)));
 
436
                           (sizeof(char *)
 
437
                            * (size_t)(cmdline_argc + 2)));
325
438
      if(tmp == NULL){
326
439
        perror("realloc");
327
440
        free(cmdline_argv);
330
443
      cmdline_argv = tmp;
331
444
      cmdline_argv[cmdline_argc] = cmdline + position;
332
445
      cmdline_argc++;
333
 
      position = (char *)rawmemchr(cmdline + position, '\0')
334
 
        - cmdline + 1;
 
446
      position += strlen(cmdline + position) + 1;
335
447
    }
336
448
    cmdline_argv[cmdline_argc] = NULL;
337
449
  }
 
450
  /* Kill old usplash */
 
451
  kill(usplash_pid, SIGTERM);
 
452
  sleep(2);
 
453
  while(kill(usplash_pid, 0) == 0){
 
454
    kill(usplash_pid, SIGKILL);
 
455
    sleep(1);
 
456
  }
338
457
  pid_t new_usplash_pid = fork();
339
458
  if(new_usplash_pid == 0){
340
459
    /* Child; will become new usplash process */
341
 
    while(kill(usplash_pid, 0)){
342
 
      sleep(2);
343
 
      kill(usplash_pid, SIGKILL);
344
 
      sleep(1);
 
460
    
 
461
    /* Make the effective user ID (root) the only user ID instead of
 
462
       the real user ID (mandos) */
 
463
    ret = setuid(geteuid());
 
464
    if(ret == -1){
 
465
      perror("setuid");
345
466
    }
 
467
    
 
468
    setsid();
 
469
    ret = chdir("/");
 
470
/*     if(fork() != 0){ */
 
471
/*       _exit(EXIT_SUCCESS); */
 
472
/*     } */
346
473
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
347
474
    if(ret == -1){
348
475
      perror("dup2");
349
476
      _exit(EXIT_FAILURE);
350
477
    }
351
 
    execv("/sbin/usplash", cmdline_argv);
 
478
    
 
479
    execv(usplash_name, cmdline_argv);
 
480
    if(not interrupted_by_signal){
 
481
      perror("execv");
 
482
    }
 
483
    free(cmdline);
 
484
    free(cmdline_argv);
 
485
    _exit(EXIT_FAILURE);
 
486
  }
 
487
  free(cmdline);
 
488
  free(cmdline_argv);
 
489
  sleep(2);
 
490
  if(not usplash_write("PULSATE", NULL)
 
491
     and (errno != EINTR)){
 
492
    perror("usplash_write");
352
493
  }
353
494
  
354
495
  return EXIT_FAILURE;