/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 07:48:59 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090907074859-nv2nni1wwib5hi10
* plugin-runner.c: Minor stylistic changes.

* plugins.d/askpass-fifo.c: Changed contact information and did minor
                            stylistic changes.

* plugins.d/mandos-client.c: Minor stylistic changes.

* plugins.d/password-prompt.c: Changed contact information.

* plugins.d/splashy.c: Changed contact information.
  (main): Changed error handling design.  Bug fix: Will now be much
          more tolerant against signals.  Bug fix: Will now re-raise
          signal received.

* plugins.d/usplash.c: Changed contact information and did minor
                       stylistic changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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() */
36
35
                                   dirent */
37
36
#include <stddef.h>             /* NULL */
38
37
#include <string.h>             /* strlen(), memcmp() */
39
 
#include <stdio.h>              /* asprintf(), perror(), sscanf() */
 
38
#include <stdio.h>              /* asprintf(), perror() */
40
39
#include <unistd.h>             /* close(), write(), readlink(),
41
40
                                   read(), STDOUT_FILENO, sleep(),
42
41
                                   fork(), setuid(), geteuid(),
46
45
                                   EXIT_SUCCESS, malloc(), _exit() */
47
46
#include <stdlib.h>             /* getenv() */
48
47
#include <dirent.h>             /* opendir(), readdir(), closedir() */
 
48
#include <inttypes.h>           /* intmax_t, strtoimax() */
49
49
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
50
50
 
51
51
sig_atomic_t interrupted_by_signal = 0;
63
63
   */
64
64
  int ret;
65
65
  int fifo_fd;
66
 
  do{
 
66
  do {
67
67
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
68
68
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
69
69
      return false;
70
70
    }
71
 
  }while(fifo_fd == -1);
 
71
  } while(fifo_fd == -1);
72
72
  
73
73
  const char *cmd_line;
74
74
  size_t cmd_line_len;
76
76
  if(arg == NULL){
77
77
    cmd_line = cmd;
78
78
    cmd_line_len = strlen(cmd);
79
 
  }else{
80
 
    do{
 
79
  } else {
 
80
    do {
81
81
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
82
82
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
83
83
        int e = errno;
85
85
        errno = e;
86
86
        return false;
87
87
      }
88
 
    }while(ret == -1);
 
88
    } while(ret == -1);
89
89
    cmd_line = cmd_line_alloc;
90
90
    cmd_line_len = (size_t)ret + 1;
91
91
  }
109
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
  }
170
170
        proc_ent != NULL;
171
171
        proc_ent = readdir(proc_dir)){
172
172
      pid_t pid;
173
 
      /* In the GNU C library, pid_t is always int */
174
 
      ret = sscanf(proc_ent->d_name, "%d", &pid);
175
 
      if(ret != 1){
176
 
        /* Not a process */
177
 
        continue;
 
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;
178
184
      }
179
185
      /* Find the executable name by doing readlink() on the
180
186
         /proc/<pid>/exe link */
245
251
          size_t cmdline_allocated = 0;
246
252
          char *tmp;
247
253
          const size_t blocksize = 1024;
248
 
          do{
 
254
          do {
249
255
            if(cmdline_len + blocksize > cmdline_allocated){
250
256
              tmp = realloc(cmdline, cmdline_allocated + blocksize);
251
257
              if(tmp == NULL){
359
365
    
360
366
    /* Open FIFO */
361
367
    int fifo_fd;
362
 
    do{
 
368
    do {
363
369
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
364
370
      if(fifo_fd == -1){
365
371
        if(errno != EINTR){
371
377
          break;
372
378
        }
373
379
      }
374
 
    }while(fifo_fd == -1);
 
380
    } while(fifo_fd == -1);
375
381
    if(interrupted_by_signal or an_error_occured){
376
382
      break;                    /* Big */
377
383
    }
379
385
    /* Read from FIFO */
380
386
    size_t buf_allocated = 0;
381
387
    const size_t blocksize = 1024;
382
 
    do{
 
388
    do {
383
389
      if(buf_len + blocksize > buf_allocated){
384
390
        char *tmp = realloc(buf, buf_allocated + blocksize);
385
391
        if(tmp == NULL){
390
396
        buf = tmp;
391
397
        buf_allocated += blocksize;
392
398
      }
393
 
      do{
 
399
      do {
394
400
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
395
401
        if(sret == -1){
396
402
          if(errno != EINTR){
402
408
            break;
403
409
          }
404
410
        }
405
 
      }while(sret == -1);
 
411
      } while(sret == -1);
406
412
      if(interrupted_by_signal or an_error_occured){
407
413
        break;
408
414
      }
409
415
      
410
416
      buf_len += (size_t)sret;
411
 
    }while(sret != 0);
 
417
    } while(sret != 0);
412
418
    close(fifo_fd);
413
419
    if(interrupted_by_signal or an_error_occured){
414
420
      break;                    /* Big */
426
432
    /* Print password to stdout */
427
433
    size_t written = 0;
428
434
    while(written < buf_len){
429
 
      do{
 
435
      do {
430
436
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
431
437
        if(sret == -1){
432
438
          if(errno != EINTR){
438
444
            break;
439
445
          }
440
446
        }
441
 
      }while(sret == -1);
 
447
      } while(sret == -1);
442
448
      if(interrupted_by_signal or an_error_occured){
443
449
        break;
444
450
      }