/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-08 06:28:20 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090908062820-xgkdkrnvuze9vc72
* debian/mandos-client.README.Debian: Improved wording and formatting.
                                      Updated location of nfsroot.txt.
* debian/mandos.README.Debian: Improved wording and formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  -*- coding: utf-8 -*- */
 
2
/*
 
3
 * Usplash - Read a password from usplash and output it
 
4
 * 
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
 
7
 * 
 
8
 * This program is free software: you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License as
 
10
 * published by the Free Software Foundation, either version 3 of the
 
11
 * License, or (at your option) any later version.
 
12
 * 
 
13
 * This program is distributed in the hope that it will be useful, but
 
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * General Public License for more details.
 
17
 * 
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program.  If not, see
 
20
 * <http://www.gnu.org/licenses/>.
 
21
 * 
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
23
 */
 
24
 
1
25
#define _GNU_SOURCE             /* asprintf() */
2
26
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
27
                                   sigemptyset(), sigaddset(), SIGINT,
17
41
                                   fork(), setuid(), geteuid(),
18
42
                                   setsid(), chdir(), dup2(),
19
43
                                   STDERR_FILENO, execv() */
20
 
#include <stdlib.h>             /* free(), EXIT_FAILURE, strtoul(),
21
 
                                   realloc(), EXIT_SUCCESS, malloc(),
22
 
                                   _exit() */
 
44
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
 
45
                                   EXIT_SUCCESS, malloc(), _exit() */
23
46
#include <stdlib.h>             /* getenv() */
24
47
#include <dirent.h>             /* opendir(), readdir(), closedir() */
 
48
#include <inttypes.h>           /* intmax_t, strtoimax() */
25
49
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
26
50
 
27
51
sig_atomic_t interrupted_by_signal = 0;
39
63
   */
40
64
  int ret;
41
65
  int fifo_fd;
42
 
  do{
 
66
  do {
43
67
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
44
68
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
45
69
      return false;
46
70
    }
47
 
  }while(fifo_fd == -1);
 
71
  } while(fifo_fd == -1);
48
72
  
49
73
  const char *cmd_line;
50
74
  size_t cmd_line_len;
52
76
  if(arg == NULL){
53
77
    cmd_line = cmd;
54
78
    cmd_line_len = strlen(cmd);
55
 
  }else{
56
 
    do{
 
79
  } else {
 
80
    do {
57
81
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
58
82
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
59
83
        int e = errno;
61
85
        errno = e;
62
86
        return false;
63
87
      }
64
 
    }while(ret == -1);
 
88
    } while(ret == -1);
65
89
    cmd_line = cmd_line_alloc;
66
90
    cmd_line_len = (size_t)ret + 1;
67
91
  }
68
92
  
69
93
  size_t written = 0;
 
94
  ssize_t sret = 0;
70
95
  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){
 
96
    sret = write(fifo_fd, cmd_line + written,
 
97
                 cmd_line_len - written);
 
98
    if(sret == -1){
74
99
      if(errno != EINTR or interrupted_by_signal){
75
100
        int e = errno;
76
101
        close(fifo_fd);
81
106
        continue;
82
107
      }
83
108
    }
84
 
    written += (size_t)ret;
 
109
    written += (size_t)sret;
85
110
  }
86
111
  free(cmd_line_alloc);
87
 
  do{
 
112
  do {
88
113
    ret = close(fifo_fd);
89
114
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
90
115
      return false;
91
116
    }
92
 
  }while(ret == -1);
 
117
  } while(ret == -1);
93
118
  if(interrupted_by_signal){
94
119
    return false;
95
120
  }
144
169
    for(struct dirent *proc_ent = readdir(proc_dir);
145
170
        proc_ent != NULL;
146
171
        proc_ent = readdir(proc_dir)){
147
 
      pid_t pid = (pid_t) strtoul(proc_ent->d_name, NULL, 10);
148
 
      if(pid == 0){
149
 
        /* Not a process */
150
 
        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;
151
184
      }
152
185
      /* Find the executable name by doing readlink() on the
153
186
         /proc/<pid>/exe link */
167
200
        struct stat exe_stat;
168
201
        ret = lstat(exe_link, &exe_stat);
169
202
        if(ret == -1){
 
203
          if(errno == ENOENT){
 
204
            free(exe_link);
 
205
            continue;
 
206
          }
170
207
          perror("lstat");
171
208
          free(exe_link);
172
209
          free(prompt);
182
219
        
183
220
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
184
221
        free(exe_link);
185
 
        if(sret == -1){
186
 
          continue;
187
 
        }
188
222
      }
189
223
      if((sret == ((ssize_t)sizeof(exe_target)-1))
190
224
         and (memcmp(usplash_name, exe_target,
217
251
          size_t cmdline_allocated = 0;
218
252
          char *tmp;
219
253
          const size_t blocksize = 1024;
220
 
          do{
 
254
          do {
221
255
            if(cmdline_len + blocksize > cmdline_allocated){
222
256
              tmp = realloc(cmdline, cmdline_allocated + blocksize);
223
257
              if(tmp == NULL){
331
365
    
332
366
    /* Open FIFO */
333
367
    int fifo_fd;
334
 
    do{
 
368
    do {
335
369
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
336
370
      if(fifo_fd == -1){
337
371
        if(errno != EINTR){
343
377
          break;
344
378
        }
345
379
      }
346
 
    }while(fifo_fd == -1);
 
380
    } while(fifo_fd == -1);
347
381
    if(interrupted_by_signal or an_error_occured){
348
382
      break;                    /* Big */
349
383
    }
351
385
    /* Read from FIFO */
352
386
    size_t buf_allocated = 0;
353
387
    const size_t blocksize = 1024;
354
 
    do{
 
388
    do {
355
389
      if(buf_len + blocksize > buf_allocated){
356
390
        char *tmp = realloc(buf, buf_allocated + blocksize);
357
391
        if(tmp == NULL){
362
396
        buf = tmp;
363
397
        buf_allocated += blocksize;
364
398
      }
365
 
      do{
 
399
      do {
366
400
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
367
401
        if(sret == -1){
368
402
          if(errno != EINTR){
374
408
            break;
375
409
          }
376
410
        }
377
 
      }while(sret == -1);
 
411
      } while(sret == -1);
378
412
      if(interrupted_by_signal or an_error_occured){
379
413
        break;
380
414
      }
381
415
      
382
416
      buf_len += (size_t)sret;
383
 
    }while(sret != 0);
 
417
    } while(sret != 0);
384
418
    close(fifo_fd);
385
419
    if(interrupted_by_signal or an_error_occured){
386
420
      break;                    /* Big */
398
432
    /* Print password to stdout */
399
433
    size_t written = 0;
400
434
    while(written < buf_len){
401
 
      do{
 
435
      do {
402
436
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
403
437
        if(sret == -1){
404
438
          if(errno != EINTR){
410
444
            break;
411
445
          }
412
446
        }
413
 
      }while(sret == -1);
 
447
      } while(sret == -1);
414
448
      if(interrupted_by_signal or an_error_occured){
415
449
        break;
416
450
      }
459
493
    /* Child; will become new usplash process */
460
494
    
461
495
    /* Make the effective user ID (root) the only user ID instead of
462
 
       the real user ID (mandos) */
 
496
       the real user ID (_mandos) */
463
497
    ret = setuid(geteuid());
464
498
    if(ret == -1){
465
499
      perror("setuid");