/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-01-04 21:54:55 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090104215455-o5q1zdrlxzr1wmn1
* README: Update copyright year; add "2009".
* debian/copyright: - '' -
* mandos: - '' -
* mandos-clients.conf.xml: - '' -
* mandos-keygen: - '' -
* mandos-keygen.xml: - '' -
* mandos.conf.xml: - '' -
* mandos.xml: - '' -
* plugin-runner.c: - '' -
* plugin-runner.xml: - '' -
* plugins.d/askpass-fifo.c: - '' -
* plugins.d/askpass-fifo.xml: - '' -
* plugins.d/mandos-client.c: - '' -
* plugins.d/mandos-client.xml: - '' -
* plugins.d/password-prompt.c: - '' -
* plugins.d/password-prompt.xml: - '' -
* plugins.d/splashy.c: - '' -
* plugins.d/splashy.xml: - '' -
* plugins.d/usplash.c: - '' -
* plugins.d/usplash.xml: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  -*- coding: utf-8 -*- */
 
2
/*
 
3
 * Passprompt - 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 <https://www.fukt.bsnet.se/~belorn/> and
 
23
 * <https://www.fukt.bsnet.se/~teddy/>.
 
24
 */
 
25
 
1
26
#define _GNU_SOURCE             /* asprintf() */
2
27
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
 
                                   sigemptyset(), sigaddset(),
4
 
                                   sigaction, SIGINT, SIG_IGN, SIGHUP,
5
 
                                   SIGTERM, kill(), SIGKILL */
 
28
                                   sigemptyset(), sigaddset(), SIGINT,
 
29
                                   SIGHUP, SIGTERM, sigaction(),
 
30
                                   SIG_IGN, kill(), SIGKILL */
 
31
#include <stdbool.h>            /* bool, false, true */
 
32
#include <fcntl.h>              /* open(), O_WRONLY, O_RDONLY */
 
33
#include <iso646.h>             /* and, or, not*/
 
34
#include <errno.h>              /* errno, EINTR */
 
35
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR, struct
 
36
                                   dirent */
6
37
#include <stddef.h>             /* NULL */
 
38
#include <string.h>             /* strlen(), memcmp() */
 
39
#include <stdio.h>              /* asprintf(), perror() */
 
40
#include <unistd.h>             /* close(), write(), readlink(),
 
41
                                   read(), STDOUT_FILENO, sleep(),
 
42
                                   fork(), setuid(), geteuid(),
 
43
                                   setsid(), chdir(), dup2(),
 
44
                                   STDERR_FILENO, execv() */
 
45
#include <stdlib.h>             /* free(), EXIT_FAILURE, strtoul(),
 
46
                                   realloc(), EXIT_SUCCESS, malloc(),
 
47
                                   _exit() */
7
48
#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
49
#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 */
 
50
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
23
51
 
24
52
sig_atomic_t interrupted_by_signal = 0;
25
53
 
29
57
 
30
58
static bool usplash_write(const char *cmd, const char *arg){
31
59
  /* 
32
 
   * usplash_write("TIMEOUT", "15"); -> "TIMEOUT 15\0"
33
 
   * usplash_write("PULSATE", NULL); -> "PULSATE\0"
 
60
   * usplash_write("TIMEOUT", "15") will write "TIMEOUT 15\0"
 
61
   * usplash_write("PULSATE", NULL) will write "PULSATE\0"
34
62
   * SEE ALSO
35
63
   *         usplash_write(8)
36
64
   */
44
72
  }while(fifo_fd == -1);
45
73
  
46
74
  const char *cmd_line;
 
75
  size_t cmd_line_len;
47
76
  char *cmd_line_alloc = NULL;
48
77
  if(arg == NULL){
49
78
    cmd_line = cmd;
50
 
    ret = (int)strlen(cmd);
 
79
    cmd_line_len = strlen(cmd);
51
80
  }else{
52
81
    do{
53
82
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
59
88
      }
60
89
    }while(ret == -1);
61
90
    cmd_line = cmd_line_alloc;
 
91
    cmd_line_len = (size_t)ret + 1;
62
92
  }
63
93
  
64
 
  size_t cmd_line_len = (size_t)ret + 1;
65
94
  size_t written = 0;
66
95
  while(not interrupted_by_signal and written < cmd_line_len){
67
96
    ret = write(fifo_fd, cmd_line + written,
103
132
  {
104
133
    const char *const cryptsource = getenv("cryptsource");
105
134
    const char *const crypttarget = getenv("crypttarget");
106
 
    const char *const prompt_start = "Enter passphrase to unlock the disk";
 
135
    const char prompt_start[] = "Enter passphrase to unlock the disk";
107
136
    
108
137
    if(cryptsource == NULL){
109
138
      if(crypttarget == NULL){
149
178
         /proc/<pid>/exe link */
150
179
      char exe_target[sizeof(usplash_name)];
151
180
      {
 
181
        /* create file name string */
152
182
        char *exe_link;
153
183
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
154
184
        if(ret == -1){
157
187
          closedir(proc_dir);
158
188
          return EXIT_FAILURE;
159
189
        }
 
190
        
 
191
        /* Check that it refers to a symlink owned by root:root */
 
192
        struct stat exe_stat;
 
193
        ret = lstat(exe_link, &exe_stat);
 
194
        if(ret == -1){
 
195
          perror("lstat");
 
196
          free(exe_link);
 
197
          free(prompt);
 
198
          closedir(proc_dir);
 
199
          return EXIT_FAILURE;
 
200
        }
 
201
        if(not S_ISLNK(exe_stat.st_mode)
 
202
           or exe_stat.st_uid != 0
 
203
           or exe_stat.st_gid != 0){
 
204
          free(exe_link);
 
205
          continue;
 
206
        }
 
207
        
160
208
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
161
209
        free(exe_link);
 
210
        if(sret == -1){
 
211
          continue;
 
212
        }
162
213
      }
163
214
      if((sret == ((ssize_t)sizeof(exe_target)-1))
164
215
         and (memcmp(usplash_name, exe_target,
242
293
      free(prompt);
243
294
      return EXIT_FAILURE;
244
295
    }
245
 
    if (old_action.sa_handler != SIG_IGN){
 
296
    if(old_action.sa_handler != SIG_IGN){
246
297
      ret = sigaction(SIGINT, &new_action, NULL);
247
298
      if(ret == -1){
248
299
        perror("sigaction");
256
307
      free(prompt);
257
308
      return EXIT_FAILURE;
258
309
    }
259
 
    if (old_action.sa_handler != SIG_IGN){
 
310
    if(old_action.sa_handler != SIG_IGN){
260
311
      ret = sigaction(SIGHUP, &new_action, NULL);
261
312
      if(ret == -1){
262
313
        perror("sigaction");
270
321
      free(prompt);
271
322
      return EXIT_FAILURE;
272
323
    }
273
 
    if (old_action.sa_handler != SIG_IGN){
 
324
    if(old_action.sa_handler != SIG_IGN){
274
325
      ret = sigaction(SIGTERM, &new_action, NULL);
275
326
      if(ret == -1){
276
327
        perror("sigaction");
371
422
    
372
423
    /* Print password to stdout */
373
424
    size_t written = 0;
374
 
    do{
 
425
    while(written < buf_len){
375
426
      do{
376
427
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
377
428
        if(sret == -1){
388
439
      if(interrupted_by_signal or an_error_occured){
389
440
        break;
390
441
      }
391
 
      
392
442
      written += (size_t)sret;
393
 
    }while(written < buf_len);
 
443
    }
 
444
    free(buf);
394
445
    if(not interrupted_by_signal and not an_error_occured){
 
446
      free(cmdline);
395
447
      return EXIT_SUCCESS;
396
448
    }
397
449
    break;                      /* Big */
398
 
  }
 
450
  }                             /* end of non-loop while() */
399
451
  
400
452
  /* If we got here, an error or interrupt must have happened */
401
453
  
 
454
  /* Create argc and argv for new usplash*/
402
455
  int cmdline_argc = 0;
403
456
  char **cmdline_argv = malloc(sizeof(char *));
404
 
  /* Create argv and argc for new usplash*/
405
457
  {
406
458
    size_t position = 0;
407
459
    while(position < cmdline_len){
408
460
      char **tmp = realloc(cmdline_argv,
409
 
                           (sizeof(char *) * (size_t)(cmdline_argc + 2)));
 
461
                           (sizeof(char *)
 
462
                            * (size_t)(cmdline_argc + 2)));
410
463
      if(tmp == NULL){
411
464
        perror("realloc");
412
465
        free(cmdline_argv);
420
473
    cmdline_argv[cmdline_argc] = NULL;
421
474
  }
422
475
  /* Kill old usplash */
423
 
    kill(usplash_pid, SIGTERM);
424
 
    sleep(2);
 
476
  kill(usplash_pid, SIGTERM);
 
477
  sleep(2);
425
478
  while(kill(usplash_pid, 0) == 0){
426
479
    kill(usplash_pid, SIGKILL);
427
480
    sleep(1);
433
486
    /* Make the effective user ID (root) the only user ID instead of
434
487
       the real user ID (mandos) */
435
488
    ret = setuid(geteuid());
436
 
    if (ret == -1){
 
489
    if(ret == -1){
437
490
      perror("setuid");
438
491
    }
439
492
    
449
502
    }
450
503
    
451
504
    execv(usplash_name, cmdline_argv);
 
505
    if(not interrupted_by_signal){
 
506
      perror("execv");
 
507
    }
 
508
    free(cmdline);
 
509
    free(cmdline_argv);
 
510
    _exit(EXIT_FAILURE);
452
511
  }
 
512
  free(cmdline);
 
513
  free(cmdline_argv);
453
514
  sleep(2);
454
515
  if(not usplash_write("PULSATE", NULL)
455
516
     and (errno != EINTR)){