/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugins.d/usplash.c

* Makefile (run-client): Pass $(CLIENTARGS) to plugin-runner.
  (run-server): Pass $(SERVERARGS) to server.

Show diffs side-by-side

added added

removed removed

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