/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 Hogeborn
  • Date: 2010-09-13 06:05:44 UTC
  • mfrom: (24.1.164 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20100913060544-34zz4pu9sezosnoi
Merge from Björn.

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