/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-09-26 04:54:35 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080926045435-0thnnqops1kzclag
* debian/mandos-client.postinst: Change home directory to
                                 "/nonexistent".
* debian/mandos.postinst: - '' -

* plugin-runner.c (main): Bug fix: Block signals while modifying
                          "plugin_list".

* plugins.d/usplash.c (usplash_write): New function.
  (main): Use "usplash_write" to write "INPUTQUIET" command.  Also
          write "TIMEOUT 0" before it, and write "TIMEOUT 15" and
          "PULSATE" if starting a new usplash process.  Kill old
          usplash before forking.  Bug fix: do setuid(geteuid()) to
          preserve genuine rootness.  Better interrupted/error logic
          overall.

* debian/mandos-client.lintian-overrides: Ignore setuid
                                          "plugins.d/usplash".

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(), 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 */
 
3
                                   sigemptyset(), sigaddset(),
 
4
                                   sigaction, SIGINT, SIG_IGN, SIGHUP,
 
5
                                   SIGTERM, kill(), SIGKILL */
12
6
#include <stddef.h>             /* NULL */
13
 
#include <string.h>             /* strlen(), memcmp() */
 
7
#include <stdlib.h>             /* getenv() */
14
8
#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() */
23
 
#include <stdlib.h>             /* getenv() */
 
9
#include <stdlib.h>             /* EXIT_FAILURE, EXIT_SUCCESS,
 
10
                                   strtoul(), free() */
 
11
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
 
12
                                   ssize_t */
24
13
#include <dirent.h>             /* opendir(), readdir(), closedir() */
25
 
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
 
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 */
26
23
 
27
24
sig_atomic_t interrupted_by_signal = 0;
28
25
 
32
29
 
33
30
static bool usplash_write(const char *cmd, const char *arg){
34
31
  /* 
35
 
   * usplash_write("TIMEOUT", "15") will write "TIMEOUT 15\0"
36
 
   * usplash_write("PULSATE", NULL) will write "PULSATE\0"
 
32
   * usplash_write("TIMEOUT", "15"); -> "TIMEOUT 15\0"
 
33
   * usplash_write("PULSATE", NULL); -> "PULSATE\0"
37
34
   * SEE ALSO
38
35
   *         usplash_write(8)
39
36
   */
47
44
  }while(fifo_fd == -1);
48
45
  
49
46
  const char *cmd_line;
50
 
  size_t cmd_line_len;
51
47
  char *cmd_line_alloc = NULL;
52
48
  if(arg == NULL){
53
49
    cmd_line = cmd;
54
 
    cmd_line_len = strlen(cmd);
 
50
    ret = (int)strlen(cmd);
55
51
  }else{
56
52
    do{
57
53
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
63
59
      }
64
60
    }while(ret == -1);
65
61
    cmd_line = cmd_line_alloc;
66
 
    cmd_line_len = (size_t)ret + 1;
67
62
  }
68
63
  
 
64
  size_t cmd_line_len = (size_t)ret + 1;
69
65
  size_t written = 0;
70
66
  while(not interrupted_by_signal and written < cmd_line_len){
71
67
    ret = write(fifo_fd, cmd_line + written,
107
103
  {
108
104
    const char *const cryptsource = getenv("cryptsource");
109
105
    const char *const crypttarget = getenv("crypttarget");
110
 
    const char prompt_start[] = "Enter passphrase to unlock the disk";
 
106
    const char *const prompt_start = "Enter passphrase to unlock the disk";
111
107
    
112
108
    if(cryptsource == NULL){
113
109
      if(crypttarget == NULL){
153
149
         /proc/<pid>/exe link */
154
150
      char exe_target[sizeof(usplash_name)];
155
151
      {
156
 
        /* create file name string */
157
152
        char *exe_link;
158
153
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
159
154
        if(ret == -1){
162
157
          closedir(proc_dir);
163
158
          return EXIT_FAILURE;
164
159
        }
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
 
        
183
160
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
184
161
        free(exe_link);
185
 
        if(sret == -1){
186
 
          continue;
187
 
        }
188
162
      }
189
163
      if((sret == ((ssize_t)sizeof(exe_target)-1))
190
164
         and (memcmp(usplash_name, exe_target,
268
242
      free(prompt);
269
243
      return EXIT_FAILURE;
270
244
    }
271
 
    if(old_action.sa_handler != SIG_IGN){
 
245
    if (old_action.sa_handler != SIG_IGN){
272
246
      ret = sigaction(SIGINT, &new_action, NULL);
273
247
      if(ret == -1){
274
248
        perror("sigaction");
282
256
      free(prompt);
283
257
      return EXIT_FAILURE;
284
258
    }
285
 
    if(old_action.sa_handler != SIG_IGN){
 
259
    if (old_action.sa_handler != SIG_IGN){
286
260
      ret = sigaction(SIGHUP, &new_action, NULL);
287
261
      if(ret == -1){
288
262
        perror("sigaction");
296
270
      free(prompt);
297
271
      return EXIT_FAILURE;
298
272
    }
299
 
    if(old_action.sa_handler != SIG_IGN){
 
273
    if (old_action.sa_handler != SIG_IGN){
300
274
      ret = sigaction(SIGTERM, &new_action, NULL);
301
275
      if(ret == -1){
302
276
        perror("sigaction");
397
371
    
398
372
    /* Print password to stdout */
399
373
    size_t written = 0;
400
 
    while(written < buf_len){
 
374
    do{
401
375
      do{
402
376
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
403
377
        if(sret == -1){
414
388
      if(interrupted_by_signal or an_error_occured){
415
389
        break;
416
390
      }
 
391
      
417
392
      written += (size_t)sret;
418
 
    }
419
 
    free(buf);
 
393
    }while(written < buf_len);
420
394
    if(not interrupted_by_signal and not an_error_occured){
421
 
      free(cmdline);
422
395
      return EXIT_SUCCESS;
423
396
    }
424
397
    break;                      /* Big */
425
 
  }                             /* end of non-loop while() */
 
398
  }
426
399
  
427
400
  /* If we got here, an error or interrupt must have happened */
428
401
  
429
 
  /* Create argc and argv for new usplash*/
430
402
  int cmdline_argc = 0;
431
403
  char **cmdline_argv = malloc(sizeof(char *));
 
404
  /* Create argv and argc for new usplash*/
432
405
  {
433
406
    size_t position = 0;
434
407
    while(position < cmdline_len){
435
408
      char **tmp = realloc(cmdline_argv,
436
 
                           (sizeof(char *)
437
 
                            * (size_t)(cmdline_argc + 2)));
 
409
                           (sizeof(char *) * (size_t)(cmdline_argc + 2)));
438
410
      if(tmp == NULL){
439
411
        perror("realloc");
440
412
        free(cmdline_argv);
448
420
    cmdline_argv[cmdline_argc] = NULL;
449
421
  }
450
422
  /* Kill old usplash */
451
 
  kill(usplash_pid, SIGTERM);
452
 
  sleep(2);
 
423
    kill(usplash_pid, SIGTERM);
 
424
    sleep(2);
453
425
  while(kill(usplash_pid, 0) == 0){
454
426
    kill(usplash_pid, SIGKILL);
455
427
    sleep(1);
461
433
    /* Make the effective user ID (root) the only user ID instead of
462
434
       the real user ID (mandos) */
463
435
    ret = setuid(geteuid());
464
 
    if(ret == -1){
 
436
    if (ret == -1){
465
437
      perror("setuid");
466
438
    }
467
439
    
477
449
    }
478
450
    
479
451
    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
452
  }
487
 
  free(cmdline);
488
 
  free(cmdline_argv);
489
453
  sleep(2);
490
454
  if(not usplash_write("PULSATE", NULL)
491
455
     and (errno != EINTR)){