/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/plymouth.c

  • Committer: teddy at bsnet
  • Date: 2011-03-15 19:15:24 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110315191524-jc3ajgqu2za7dcly
* mandos: Use the new argparse library instead of optparse.
* debian/control (mandos): Depend on python (<=2.7) | python-argparse

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  -*- coding: utf-8 -*- */
 
2
/*
 
3
 * Plymouth - Read a password from Plymouth and output it
 
4
 * 
 
5
 * Copyright © 2010-2011 Teddy Hogeborn
 
6
 * Copyright © 2010-2011 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(), TEMP_FAILURE_RETRY() */
2
26
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
27
                                   sigemptyset(), sigaddset(), SIGINT,
6
30
#include <stdbool.h>            /* bool, false, true */
7
31
#include <fcntl.h>              /* open(), O_RDONLY */
8
32
#include <iso646.h>             /* and, or, not*/
9
 
#include <sys/types.h>          /* size_t, ssize_t, pid_t, struct dirent,
10
 
                                   waitpid() */
 
33
#include <sys/types.h>          /* size_t, ssize_t, pid_t, struct
 
34
                                   dirent, waitpid() */
11
35
#include <sys/wait.h>           /* waitpid() */
12
36
#include <stddef.h>             /* NULL */
13
37
#include <string.h>             /* strchr(), memcmp() */
14
 
#include <stdio.h>              /* asprintf(), perror(), fopen(), fscanf() */
15
 
#include <unistd.h>             /* close(), readlink(), read(), fork()
16
 
                                   setsid(), chdir(), dup2()
 
38
#include <stdio.h>              /* asprintf(), perror(), fopen(),
 
39
                                   fscanf() */
 
40
#include <unistd.h>             /* close(), readlink(), read(),
 
41
                                   fork(), setsid(), chdir(), dup2(),
17
42
                                   STDERR_FILENO, execv(), access() */
18
43
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
19
44
                                   EXIT_SUCCESS, malloc(), _exit(),
21
46
#include <dirent.h>             /* scandir(), alphasort() */
22
47
#include <inttypes.h>           /* intmax_t, strtoumax(), SCNuMAX */
23
48
#include <sys/stat.h>           /* struct stat, lstat() */
24
 
#include <sysexits.h>           /* EX_OSERR */
 
49
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
25
50
#include <error.h>              /* error() */
26
51
#include <errno.h>              /* TEMP_FAILURE_RETRY */
27
 
#include <stdarg.h>
 
52
#include <argz.h>               /* argz_count(), argz_extract() */
28
53
 
29
54
sig_atomic_t interrupted_by_signal = 0;
30
55
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
31
56
const char plymouth_path[] = "/bin/plymouth";
32
57
const char plymouthd_path[] = "/sbin/plymouthd";
33
 
const char *plymouthd_default_argv[] = {"/sbin/plymouthd", "--mode=boot",
 
58
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
 
59
                                        "--mode=boot",
34
60
                                        "--attach-to-session",
35
 
                                        "--pid-file=/dev/.initramfs/plymouth.pid",
 
61
                                        "--pid-file="
 
62
                                        "/dev/.initramfs/"
 
63
                                        "plymouth.pid",
36
64
                                        NULL };
37
65
 
38
66
static void termination_handler(__attribute__((unused))int signum){
48
76
  char *prompt;
49
77
  const char *const cryptsource = getenv("cryptsource");
50
78
  const char *const crypttarget = getenv("crypttarget");
51
 
  const char prompt_start[] = "Enter passphrase to unlock the disk";
 
79
  const char prompt_start[] = "Unlocking the disk";
 
80
  const char prompt_end[] = "Enter passphrase";
52
81
  
53
82
  if(cryptsource == NULL){
54
83
    if(crypttarget == NULL){
55
 
      ret = asprintf(&prompt, "%s: ", prompt_start);
 
84
      ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
56
85
    } else {
57
 
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
58
 
                     crypttarget);
 
86
      ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
 
87
                     crypttarget, prompt_end);
59
88
    }
60
89
  } else {
61
90
    if(crypttarget == NULL){
62
 
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
91
      ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
 
92
                     prompt_end);
63
93
    } else {
64
 
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
65
 
                     cryptsource, crypttarget);
 
94
      ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
 
95
                     cryptsource, crypttarget, prompt_end);
66
96
    }
67
97
  }
68
98
  if(ret == -1){
114
144
        _exit(EX_OSERR);
115
145
      }
116
146
    }
117
 
 
 
147
    
118
148
    char **new_argv = NULL;
119
 
    char *tmp;
 
149
    char **tmp;
120
150
    int i = 0;
121
 
    for (; argv[i]!=(char *)NULL; i++){
 
151
    for (; argv[i]!=NULL; i++){
122
152
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
123
153
      if (tmp == NULL){
124
154
        error(0, errno, "realloc");
125
155
        free(new_argv);
126
 
        _exit(EXIT_FAILURE);
 
156
        _exit(EX_OSERR);
127
157
      }
128
 
      new_argv = (char **)tmp;
 
158
      new_argv = tmp;
129
159
      new_argv[i] = strdup(argv[i]);
130
160
    }
131
 
    new_argv[i] = (char *) NULL;
 
161
    new_argv[i] = NULL;
132
162
    
133
163
    execv(path, (char *const *)new_argv);
134
164
    error(0, errno, "execv");
149
179
    error(0, errno, "waitpid");
150
180
    return false;
151
181
  }
152
 
  if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
 
182
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
153
183
    return true;
154
184
  }
155
185
  return false;
163
193
    errno = 0;
164
194
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
165
195
 
166
 
    if(errno != 0 or *tmp != '\0' or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
196
    if(errno != 0 or *tmp != '\0'
 
197
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
167
198
      return 0;
168
199
    }
169
200
  }
170
 
  char exe_target[sizeof(plymouth_path)];
 
201
  char exe_target[sizeof(plymouthd_path)];
171
202
  char *exe_link;
172
203
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
173
204
  if(ret == -1){
174
205
    error(0, errno, "asprintf");
175
206
    return 0;
176
207
  }
177
 
 
 
208
  
178
209
  struct stat exe_stat;
179
210
  ret = lstat(exe_link, &exe_stat);
180
211
  if(ret == -1){
191
222
    free(exe_link);
192
223
    return 0;
193
224
  }
194
 
 
 
225
  
195
226
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
196
227
  free(exe_link);
197
 
  if((sret != (ssize_t)sizeof(plymouth_path)-1) or
198
 
      (memcmp(plymouth_path, exe_target,
199
 
              sizeof(plymouth_path)-1) != 0)){
 
228
  if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
 
229
      (memcmp(plymouthd_path, exe_target,
 
230
              sizeof(plymouthd_path)-1) != 0)){
200
231
    return 0;
201
232
  }
202
233
  return 1;
216
247
  if(maxvalue == 0){
217
248
    struct dirent **direntries;
218
249
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
219
 
    sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
250
    if (ret == -1){
 
251
      error(0, errno, "scandir");
 
252
    }
 
253
    if (ret > 0){
 
254
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
255
      if (ret < 0){
 
256
        error(0, errno, "sscanf");
 
257
      }
 
258
    }
220
259
  }
221
260
  pid_t pid;
222
261
  pid = (pid_t)maxvalue;
286
325
  }
287
326
  
288
327
  /* we got cmdline and cmdline_len, ignore rest... */
289
 
  const char **argv = NULL;
290
 
  size_t argv_size = 0;
291
 
  for(char *arg = cmdline; arg-cmdline < (ssize_t)cmdline_len;
292
 
      arg = strchr(arg, '\0')+1){
293
 
    tmp = realloc(argv, ((++argv_size)+1)*sizeof(char *));
294
 
    if(tmp == NULL){
295
 
      error(0, errno, "realloc");
296
 
      free(argv);
297
 
      return NULL;
298
 
    }
299
 
    argv = (const char **)tmp;
300
 
    argv[argv_size-1] = arg;
 
328
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
 
329
                       * sizeof(char *)); /* Get number of args */
 
330
  if(argv == NULL){
 
331
    error(0, errno, "argv = malloc()");
 
332
    free(cmdline);
 
333
    return NULL;
301
334
  }
302
 
  argv[argv_size] = NULL;
303
 
  return argv;
 
335
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
 
336
  return (const char **)argv;
304
337
}
305
338
 
306
339
int main(__attribute__((unused))int argc,
314
347
  /* test -x /bin/plymouth */
315
348
  ret = access(plymouth_path, X_OK);
316
349
  if(ret == -1){
317
 
    exit(EXIT_FAILURE);
 
350
    /* Plymouth is probably not installed.  Don't print an error
 
351
       message, just exit. */
 
352
    exit(EX_UNAVAILABLE);
318
353
  }
319
 
 
 
354
  
320
355
  { /* Add signal handlers */
321
356
    struct sigaction old_action,
322
357
      new_action = { .sa_handler = termination_handler,
323
358
                     .sa_flags = 0 };
324
359
    sigemptyset(&new_action.sa_mask);
325
 
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
 
360
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
 
361
        *sig != 0; sig++){
326
362
      ret = sigaddset(&new_action.sa_mask, *sig);
327
363
      if(ret == -1){
328
 
        error(0, errno, "sigaddset");
329
 
        exit(EX_OSERR);
 
364
        error(EX_OSERR, errno, "sigaddset");
330
365
      }
331
366
      ret = sigaction(*sig, NULL, &old_action);
332
367
      if(ret == -1){
333
 
        error(0, errno, "sigaction");
334
 
        exit(EX_OSERR);
 
368
        error(EX_OSERR, errno, "sigaction");
335
369
      }
336
370
      if(old_action.sa_handler != SIG_IGN){
337
371
        ret = sigaction(*sig, &new_action, NULL);
338
372
        if(ret == -1){
339
 
          error(0, errno, "sigaction");
340
 
          exit(EX_OSERR);
 
373
          error(EX_OSERR, errno, "sigaction");
341
374
        }
342
375
      }
343
376
    }
344
377
  }
345
 
    
 
378
  
346
379
  /* plymouth --ping */
347
380
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
348
 
                       (const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
 
381
                       (const char *[])
 
382
                       { plymouth_path, "--ping", NULL },
349
383
                       true, false);
350
384
  if(not bret){
351
385
    if(interrupted_by_signal){
352
386
      kill_and_wait(plymouth_command_pid);
 
387
      exit(EXIT_FAILURE);
353
388
    }
354
 
    exit(EXIT_FAILURE);
 
389
    /* Plymouth is probably not running.  Don't print an error
 
390
       message, just exit. */
 
391
    exit(EX_UNAVAILABLE);
355
392
  }
356
393
  
357
394
  prompt = makeprompt();
358
395
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
359
396
  free(prompt);
360
397
  if(ret == -1){
361
 
    error(0, errno, "asprintf");
362
 
    exit(EXIT_FAILURE);
 
398
    error(EX_OSERR, errno, "asprintf");
363
399
  }
364
400
  
365
401
  /* plymouth ask-for-password --prompt="$prompt" */
366
 
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
367
 
                       (const char *[]){plymouth_path, "ask-for-password", prompt_arg, NULL},
 
402
  bret = exec_and_wait(&plymouth_command_pid,
 
403
                       plymouth_path, (const char *[])
 
404
                       { plymouth_path, "ask-for-password",
 
405
                           prompt_arg, NULL },
368
406
                       true, false);
369
407
  free(prompt_arg);
370
 
  if(not bret){
371
 
    if(interrupted_by_signal){
372
 
      kill_and_wait(plymouth_command_pid);
373
 
    } else {
374
 
      exit(EXIT_FAILURE);
375
 
    }
376
 
  }
377
 
  
378
408
  if(bret){
379
409
    exit(EXIT_SUCCESS);
380
410
  }
 
411
  if(not interrupted_by_signal){
 
412
    /* exec_and_wait failed for some other reason */
 
413
    exit(EXIT_FAILURE);
 
414
  }
 
415
  kill_and_wait(plymouth_command_pid);
381
416
  
382
 
  const char **plymouthd_argv = NULL;
 
417
  const char **plymouthd_argv;
383
418
  pid_t pid = get_pid();
384
419
  if(pid == 0){
385
420
    error(0, 0, "plymouthd pid not found");
 
421
    plymouthd_argv = plymouthd_default_argv;
386
422
  } else {
387
423
    plymouthd_argv = getargv(pid);
388
424
  }
389
 
  if(plymouthd_argv == NULL){
390
 
    plymouthd_argv = plymouthd_default_argv;
391
 
  }
392
425
  
393
 
  bret = exec_and_wait(NULL, plymouth_path,
394
 
                       (const char *[]){plymouth_path, "quit", NULL}, false, false);
395
 
  if(not bret){
396
 
    exit(EXIT_FAILURE);
397
 
  }
398
 
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv, false, true);
399
 
  if(not bret){
400
 
    exit(EXIT_FAILURE);
401
 
  }
402
 
  exec_and_wait(NULL, plymouth_path,
403
 
                (const char *[]){ plymouth_path, "show-splash", NULL }, false, false);
 
426
  bret = exec_and_wait(NULL, plymouth_path, (const char *[])
 
427
                       { plymouth_path, "quit", NULL },
 
428
                       false, false);
 
429
  if(not bret){
 
430
    exit(EXIT_FAILURE);
 
431
  }
 
432
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
 
433
                       false, true);
 
434
  if(not bret){
 
435
    exit(EXIT_FAILURE);
 
436
  }
 
437
  exec_and_wait(NULL, plymouth_path, (const char *[])
 
438
                { plymouth_path, "show-splash", NULL },
 
439
                false, false);
404
440
  exit(EXIT_FAILURE);
405
441
}