/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: 2009-09-07 23:48:17 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090907234817-op1lgg9gpruejsiv
* initramfs-tools-hook: Bug fix: Really install user-supplied plugins.
                        Bug fix: Warn about empty plugin directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  -*- coding: utf-8 -*- */
2
2
/*
3
 
 * Passprompt - Read a password from usplash and output it
 
3
 * Usplash - Read a password from usplash and output it
4
4
 * 
5
5
 * Copyright © 2008,2009 Teddy Hogeborn
6
6
 * Copyright © 2008,2009 Björn Påhlsson
19
19
 * along with this program.  If not, see
20
20
 * <http://www.gnu.org/licenses/>.
21
21
 * 
22
 
 * Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
23
 
 * <https://www.fukt.bsnet.se/~teddy/>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
24
23
 */
25
24
 
26
25
#define _GNU_SOURCE             /* asprintf() */
42
41
                                   fork(), setuid(), geteuid(),
43
42
                                   setsid(), chdir(), dup2(),
44
43
                                   STDERR_FILENO, execv() */
45
 
#include <stdlib.h>             /* free(), EXIT_FAILURE, strtoul(),
46
 
                                   realloc(), EXIT_SUCCESS, malloc(),
47
 
                                   _exit() */
 
44
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
 
45
                                   EXIT_SUCCESS, malloc(), _exit() */
48
46
#include <stdlib.h>             /* getenv() */
49
47
#include <dirent.h>             /* opendir(), readdir(), closedir() */
 
48
#include <inttypes.h>           /* intmax_t, strtoimax() */
50
49
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
51
50
 
52
51
sig_atomic_t interrupted_by_signal = 0;
64
63
   */
65
64
  int ret;
66
65
  int fifo_fd;
67
 
  do{
 
66
  do {
68
67
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
69
68
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
70
69
      return false;
71
70
    }
72
 
  }while(fifo_fd == -1);
 
71
  } while(fifo_fd == -1);
73
72
  
74
73
  const char *cmd_line;
75
74
  size_t cmd_line_len;
77
76
  if(arg == NULL){
78
77
    cmd_line = cmd;
79
78
    cmd_line_len = strlen(cmd);
80
 
  }else{
81
 
    do{
 
79
  } else {
 
80
    do {
82
81
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
83
82
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
84
83
        int e = errno;
86
85
        errno = e;
87
86
        return false;
88
87
      }
89
 
    }while(ret == -1);
 
88
    } while(ret == -1);
90
89
    cmd_line = cmd_line_alloc;
91
90
    cmd_line_len = (size_t)ret + 1;
92
91
  }
93
92
  
94
93
  size_t written = 0;
 
94
  ssize_t sret = 0;
95
95
  while(not interrupted_by_signal and written < cmd_line_len){
96
 
    ret = write(fifo_fd, cmd_line + written,
97
 
                cmd_line_len - written);
98
 
    if(ret == -1){
 
96
    sret = write(fifo_fd, cmd_line + written,
 
97
                 cmd_line_len - written);
 
98
    if(sret == -1){
99
99
      if(errno != EINTR or interrupted_by_signal){
100
100
        int e = errno;
101
101
        close(fifo_fd);
106
106
        continue;
107
107
      }
108
108
    }
109
 
    written += (size_t)ret;
 
109
    written += (size_t)sret;
110
110
  }
111
111
  free(cmd_line_alloc);
112
 
  do{
 
112
  do {
113
113
    ret = close(fifo_fd);
114
114
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
115
115
      return false;
116
116
    }
117
 
  }while(ret == -1);
 
117
  } while(ret == -1);
118
118
  if(interrupted_by_signal){
119
119
    return false;
120
120
  }
169
169
    for(struct dirent *proc_ent = readdir(proc_dir);
170
170
        proc_ent != NULL;
171
171
        proc_ent = readdir(proc_dir)){
172
 
      pid_t pid = (pid_t) strtoul(proc_ent->d_name, NULL, 10);
173
 
      if(pid == 0){
174
 
        /* Not a process */
175
 
        continue;
 
172
      pid_t pid;
 
173
      {
 
174
        intmax_t tmpmax;
 
175
        char *tmp;
 
176
        errno = 0;
 
177
        tmpmax = strtoimax(proc_ent->d_name, &tmp, 10);
 
178
        if(errno != 0 or tmp == proc_ent->d_name or *tmp != '\0'
 
179
           or tmpmax != (pid_t)tmpmax){
 
180
          /* Not a process */
 
181
          continue;
 
182
        }
 
183
        pid = (pid_t)tmpmax;
176
184
      }
177
185
      /* Find the executable name by doing readlink() on the
178
186
         /proc/<pid>/exe link */
192
200
        struct stat exe_stat;
193
201
        ret = lstat(exe_link, &exe_stat);
194
202
        if(ret == -1){
 
203
          if(errno == ENOENT){
 
204
            free(exe_link);
 
205
            continue;
 
206
          }
195
207
          perror("lstat");
196
208
          free(exe_link);
197
209
          free(prompt);
207
219
        
208
220
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
209
221
        free(exe_link);
210
 
        if(sret == -1){
211
 
          continue;
212
 
        }
213
222
      }
214
223
      if((sret == ((ssize_t)sizeof(exe_target)-1))
215
224
         and (memcmp(usplash_name, exe_target,
242
251
          size_t cmdline_allocated = 0;
243
252
          char *tmp;
244
253
          const size_t blocksize = 1024;
245
 
          do{
 
254
          do {
246
255
            if(cmdline_len + blocksize > cmdline_allocated){
247
256
              tmp = realloc(cmdline, cmdline_allocated + blocksize);
248
257
              if(tmp == NULL){
356
365
    
357
366
    /* Open FIFO */
358
367
    int fifo_fd;
359
 
    do{
 
368
    do {
360
369
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
361
370
      if(fifo_fd == -1){
362
371
        if(errno != EINTR){
368
377
          break;
369
378
        }
370
379
      }
371
 
    }while(fifo_fd == -1);
 
380
    } while(fifo_fd == -1);
372
381
    if(interrupted_by_signal or an_error_occured){
373
382
      break;                    /* Big */
374
383
    }
376
385
    /* Read from FIFO */
377
386
    size_t buf_allocated = 0;
378
387
    const size_t blocksize = 1024;
379
 
    do{
 
388
    do {
380
389
      if(buf_len + blocksize > buf_allocated){
381
390
        char *tmp = realloc(buf, buf_allocated + blocksize);
382
391
        if(tmp == NULL){
387
396
        buf = tmp;
388
397
        buf_allocated += blocksize;
389
398
      }
390
 
      do{
 
399
      do {
391
400
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
392
401
        if(sret == -1){
393
402
          if(errno != EINTR){
399
408
            break;
400
409
          }
401
410
        }
402
 
      }while(sret == -1);
 
411
      } while(sret == -1);
403
412
      if(interrupted_by_signal or an_error_occured){
404
413
        break;
405
414
      }
406
415
      
407
416
      buf_len += (size_t)sret;
408
 
    }while(sret != 0);
 
417
    } while(sret != 0);
409
418
    close(fifo_fd);
410
419
    if(interrupted_by_signal or an_error_occured){
411
420
      break;                    /* Big */
423
432
    /* Print password to stdout */
424
433
    size_t written = 0;
425
434
    while(written < buf_len){
426
 
      do{
 
435
      do {
427
436
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
428
437
        if(sret == -1){
429
438
          if(errno != EINTR){
435
444
            break;
436
445
          }
437
446
        }
438
 
      }while(sret == -1);
 
447
      } while(sret == -1);
439
448
      if(interrupted_by_signal or an_error_occured){
440
449
        break;
441
450
      }
484
493
    /* Child; will become new usplash process */
485
494
    
486
495
    /* Make the effective user ID (root) the only user ID instead of
487
 
       the real user ID (mandos) */
 
496
       the real user ID (_mandos) */
488
497
    ret = setuid(geteuid());
489
498
    if(ret == -1){
490
499
      perror("setuid");