/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-03 09:32:30 UTC
  • Revision ID: teddy@fukt.bsnet.se-20081003093230-rshn19e0c19zz12i
* .bzrignore (plugins.d/askpass-fifo): Added.

* Makefile (FORTIFY): Added "-fstack-protector-all".
  (mandos, mandos-keygen): Use more strict regexps when updating the
                           version number.

* mandos (Client.__init__): Use os.path.expandvars() and
                            os.path.expanduser() on the "secfile"
                            config value.

* plugins.d/splashy.c: Update comments and order of #include's.
  (main): Check user and group when looking for running splashy
          process.  Do not ignore ENOENT from execl().  Use _exit()
          instead of "return" when an error happens in child
          processes.  Bug fix: Only wait for splashy_update
          completion if it was started.  Bug fix: detect failing
          waitpid().  Only kill splashy_update if it is running.  Do
          the killing of the old splashy process before the fork().
          Do setsid() and setuid(geteuid()) before starting the new
          splashy.  Report failing execl().

* plugins.d/usplash.c: Update comments and order of #include's.
  (main): Check user and group when looking for running usplash
          process.  Do not report execv() error if interrupted by a
          signal.

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