/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: Björn Påhlsson
  • Date: 2010-09-09 22:06:10 UTC
  • mto: (237.4.3 mandos-release)
  • mto: This revision was merged to the branch mainline in revision 421.
  • Revision ID: belorn@fukt.bsnet.se-20100909220610-fcpkaykznlq22oaw
minor debug info for plugin-runner.
Commit before merge

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(), vasprintf(), fprintf(), vfprintf() */
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() */
53
 
#include <stdarg.h>             /* va_list, va_start(), ... */
 
27
#include <stdarg.h>
54
28
 
55
29
sig_atomic_t interrupted_by_signal = 0;
56
30
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
57
31
const char plymouth_path[] = "/bin/plymouth";
58
32
const char plymouthd_path[] = "/sbin/plymouthd";
59
 
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
60
 
                                        "--mode=boot",
 
33
const char *plymouthd_default_argv[] = {"/sbin/plymouthd", "--mode=boot",
61
34
                                        "--attach-to-session",
62
 
                                        "--pid-file="
63
 
                                        "/dev/.initramfs/"
64
 
                                        "plymouth.pid",
 
35
                                        "--pid-file=/dev/.initramfs/plymouth.pid",
65
36
                                        NULL };
66
37
 
67
38
static void termination_handler(__attribute__((unused))int signum){
71
42
  interrupted_by_signal = 1;
72
43
}
73
44
 
74
 
/* Function to use when printing errors */
75
 
void error_plus(int status, int errnum, const char *formatstring, ...){
76
 
  va_list ap;
77
 
  char *text;
78
 
  int ret;
79
 
  
80
 
  va_start(ap, formatstring);
81
 
  ret = vasprintf(&text, formatstring, ap);
82
 
  if (ret == -1){
83
 
    fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
84
 
    vfprintf(stderr, formatstring, ap);
85
 
    fprintf(stderr, ": ");
86
 
    fprintf(stderr, "%s\n", strerror(errnum));
87
 
    error(status, errno, "vasprintf while printing error");
88
 
    return;
89
 
  }
90
 
  fprintf(stderr, "Mandos plugin ");
91
 
  error(status, errnum, "%s", text);
92
 
  free(text);
93
 
}
94
 
 
95
45
/* Create prompt string */
96
46
char *makeprompt(void){
97
47
  int ret = 0;
98
48
  char *prompt;
99
49
  const char *const cryptsource = getenv("cryptsource");
100
50
  const char *const crypttarget = getenv("crypttarget");
101
 
  const char prompt_start[] = "Unlocking the disk";
102
 
  const char prompt_end[] = "Enter passphrase";
 
51
  const char prompt_start[] = "Enter passphrase to unlock the disk";
103
52
  
104
53
  if(cryptsource == NULL){
105
54
    if(crypttarget == NULL){
106
 
      ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
 
55
      ret = asprintf(&prompt, "%s: ", prompt_start);
107
56
    } else {
108
 
      ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
109
 
                     crypttarget, prompt_end);
 
57
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
58
                     crypttarget);
110
59
    }
111
60
  } else {
112
61
    if(crypttarget == NULL){
113
 
      ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
114
 
                     prompt_end);
 
62
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
115
63
    } else {
116
 
      ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
117
 
                     cryptsource, crypttarget, prompt_end);
 
64
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
65
                     cryptsource, crypttarget);
118
66
    }
119
67
  }
120
68
  if(ret == -1){
131
79
bool become_a_daemon(void){
132
80
  int ret = setuid(geteuid());
133
81
  if(ret == -1){
134
 
    error_plus(0, errno, "setuid");
 
82
    error(0, errno, "setuid");
135
83
  }
136
84
    
137
85
  setsid();
138
86
  ret = chdir("/");
139
87
  if(ret == -1){
140
 
    error_plus(0, errno, "chdir");
 
88
    error(0, errno, "chdir");
141
89
    return false;
142
90
  }
143
91
  ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
144
92
  if(ret == -1){
145
 
    error_plus(0, errno, "dup2");
 
93
    error(0, errno, "dup2");
146
94
    return false;
147
95
  }
148
96
  return true;
156
104
  pid_t pid;
157
105
  pid = fork();
158
106
  if(pid == -1){
159
 
    error_plus(0, errno, "fork");
 
107
    error(0, errno, "fork");
160
108
    return false;
161
109
  }
162
110
  if(pid == 0){
166
114
        _exit(EX_OSERR);
167
115
      }
168
116
    }
169
 
    
 
117
 
170
118
    char **new_argv = NULL;
171
 
    char **tmp;
 
119
    char *tmp;
172
120
    int i = 0;
173
 
    for (; argv[i]!=NULL; i++){
 
121
    for (; argv[i]!=(char *)NULL; i++){
174
122
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
175
123
      if (tmp == NULL){
176
 
        error_plus(0, errno, "realloc");
 
124
        error(0, errno, "realloc");
177
125
        free(new_argv);
178
 
        _exit(EX_OSERR);
 
126
        _exit(EXIT_FAILURE);
179
127
      }
180
 
      new_argv = tmp;
 
128
      new_argv = (char **)tmp;
181
129
      new_argv[i] = strdup(argv[i]);
182
130
    }
183
 
    new_argv[i] = NULL;
 
131
    new_argv[i] = (char *) NULL;
184
132
    
185
133
    execv(path, (char *const *)new_argv);
186
 
    error_plus(0, errno, "execv");
 
134
    error(0, errno, "execv");
187
135
    _exit(EXIT_FAILURE);
188
136
  }
189
137
  if(pid_return != NULL){
198
146
    return false;
199
147
  }
200
148
  if(ret == -1){
201
 
    error_plus(0, errno, "waitpid");
 
149
    error(0, errno, "waitpid");
202
150
    return false;
203
151
  }
204
 
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
 
152
  if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
205
153
    return true;
206
154
  }
207
155
  return false;
215
163
    errno = 0;
216
164
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
217
165
 
218
 
    if(errno != 0 or *tmp != '\0'
219
 
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
166
    if(errno != 0 or *tmp != '\0' or maxvalue != (uintmax_t)((pid_t)maxvalue)){
220
167
      return 0;
221
168
    }
222
169
  }
223
 
  char exe_target[sizeof(plymouthd_path)];
 
170
  char exe_target[sizeof(plymouth_path)];
224
171
  char *exe_link;
225
172
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
226
173
  if(ret == -1){
227
 
    error_plus(0, errno, "asprintf");
 
174
    error(0, errno, "asprintf");
228
175
    return 0;
229
176
  }
230
 
  
 
177
 
231
178
  struct stat exe_stat;
232
179
  ret = lstat(exe_link, &exe_stat);
233
180
  if(ret == -1){
234
181
    free(exe_link);
235
182
    if(errno != ENOENT){
236
 
      error_plus(0, errno, "lstat");
 
183
      error(0, errno, "lstat");
237
184
    }
238
185
    return 0;
239
186
  }
244
191
    free(exe_link);
245
192
    return 0;
246
193
  }
247
 
  
 
194
 
248
195
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
249
196
  free(exe_link);
250
 
  if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
251
 
      (memcmp(plymouthd_path, exe_target,
252
 
              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)){
253
200
    return 0;
254
201
  }
255
202
  return 1;
267
214
    fclose(pidfile);
268
215
  }
269
216
  if(maxvalue == 0){
270
 
    struct dirent **direntries = NULL;
 
217
    struct dirent **direntries;
271
218
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
272
 
    if (ret == -1){
273
 
      error_plus(0, errno, "scandir");
274
 
    }
275
 
    if (ret > 0){
276
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
277
 
      if (ret < 0){
278
 
        error_plus(0, errno, "sscanf");
279
 
      }
280
 
    }
281
 
    /* scandir might preallocate for this variable (man page unclear).
282
 
       even if ret == 0, we need to free it. */
283
 
    free(direntries);
 
219
    sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
284
220
  }
285
221
  pid_t pid;
286
222
  pid = (pid_t)maxvalue;
300
236
  ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
301
237
                 (uintmax_t)pid);
302
238
  if(ret == -1){
303
 
    error_plus(0, errno, "asprintf");
 
239
    error(0, errno, "asprintf");
304
240
    return NULL;
305
241
  }
306
242
  
308
244
  cl_fd = open(cmdline_filename, O_RDONLY);
309
245
  free(cmdline_filename);
310
246
  if(cl_fd == -1){
311
 
    error_plus(0, errno, "open");
 
247
    error(0, errno, "open");
312
248
    return NULL;
313
249
  }
314
250
  
322
258
    if(cmdline_len + blocksize > cmdline_allocated){
323
259
      tmp = realloc(cmdline, cmdline_allocated + blocksize);
324
260
      if(tmp == NULL){
325
 
        error_plus(0, errno, "realloc");
 
261
        error(0, errno, "realloc");
326
262
        free(cmdline);
327
263
        close(cl_fd);
328
264
        return NULL;
335
271
    sret = read(cl_fd, cmdline + cmdline_len,
336
272
                cmdline_allocated - cmdline_len);
337
273
    if(sret == -1){
338
 
      error_plus(0, errno, "read");
 
274
      error(0, errno, "read");
339
275
      free(cmdline);
340
276
      close(cl_fd);
341
277
      return NULL;
344
280
  } while(sret != 0);
345
281
  ret = close(cl_fd);
346
282
  if(ret == -1){
347
 
    error_plus(0, errno, "close");
 
283
    error(0, errno, "close");
348
284
    free(cmdline);
349
285
    return NULL;
350
286
  }
351
287
  
352
288
  /* we got cmdline and cmdline_len, ignore rest... */
353
 
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
354
 
                       * sizeof(char *)); /* Get number of args */
355
 
  if(argv == NULL){
356
 
    error_plus(0, errno, "argv = malloc()");
357
 
    free(cmdline);
358
 
    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;
359
301
  }
360
 
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
361
 
  return (const char **)argv;
 
302
  argv[argv_size] = NULL;
 
303
  return argv;
362
304
}
363
305
 
364
306
int main(__attribute__((unused))int argc,
372
314
  /* test -x /bin/plymouth */
373
315
  ret = access(plymouth_path, X_OK);
374
316
  if(ret == -1){
375
 
    /* Plymouth is probably not installed.  Don't print an error
376
 
       message, just exit. */
377
 
    exit(EX_UNAVAILABLE);
 
317
    exit(EXIT_FAILURE);
378
318
  }
379
 
  
 
319
 
380
320
  { /* Add signal handlers */
381
321
    struct sigaction old_action,
382
322
      new_action = { .sa_handler = termination_handler,
383
323
                     .sa_flags = 0 };
384
324
    sigemptyset(&new_action.sa_mask);
385
 
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
386
 
        *sig != 0; sig++){
 
325
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
387
326
      ret = sigaddset(&new_action.sa_mask, *sig);
388
327
      if(ret == -1){
389
 
        error_plus(EX_OSERR, errno, "sigaddset");
 
328
        error(0, errno, "sigaddset");
 
329
        exit(EX_OSERR);
390
330
      }
391
331
      ret = sigaction(*sig, NULL, &old_action);
392
332
      if(ret == -1){
393
 
        error_plus(EX_OSERR, errno, "sigaction");
 
333
        error(0, errno, "sigaction");
 
334
        exit(EX_OSERR);
394
335
      }
395
336
      if(old_action.sa_handler != SIG_IGN){
396
337
        ret = sigaction(*sig, &new_action, NULL);
397
338
        if(ret == -1){
398
 
          error_plus(EX_OSERR, errno, "sigaction");
 
339
          error(0, errno, "sigaction");
 
340
          exit(EX_OSERR);
399
341
        }
400
342
      }
401
343
    }
402
344
  }
403
 
  
 
345
    
404
346
  /* plymouth --ping */
405
347
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
406
 
                       (const char *[])
407
 
                       { plymouth_path, "--ping", NULL },
 
348
                       (const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
408
349
                       true, false);
409
350
  if(not bret){
410
351
    if(interrupted_by_signal){
411
352
      kill_and_wait(plymouth_command_pid);
412
 
      exit(EXIT_FAILURE);
413
353
    }
414
 
    /* Plymouth is probably not running.  Don't print an error
415
 
       message, just exit. */
416
 
    exit(EX_UNAVAILABLE);
 
354
    exit(EXIT_FAILURE);
417
355
  }
418
356
  
419
357
  prompt = makeprompt();
420
358
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
421
359
  free(prompt);
422
360
  if(ret == -1){
423
 
    error_plus(EX_OSERR, errno, "asprintf");
 
361
    error(0, errno, "asprintf");
 
362
    exit(EXIT_FAILURE);
424
363
  }
425
364
  
426
365
  /* plymouth ask-for-password --prompt="$prompt" */
427
 
  bret = exec_and_wait(&plymouth_command_pid,
428
 
                       plymouth_path, (const char *[])
429
 
                       { plymouth_path, "ask-for-password",
430
 
                           prompt_arg, NULL },
 
366
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
 
367
                       (const char *[]){plymouth_path, "ask-for-password", prompt_arg, NULL},
431
368
                       true, false);
432
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
  
433
378
  if(bret){
434
379
    exit(EXIT_SUCCESS);
435
380
  }
436
 
  if(not interrupted_by_signal){
437
 
    /* exec_and_wait failed for some other reason */
438
 
    exit(EXIT_FAILURE);
439
 
  }
440
 
  kill_and_wait(plymouth_command_pid);
441
381
  
442
 
  const char **plymouthd_argv;
 
382
  const char **plymouthd_argv = NULL;
443
383
  pid_t pid = get_pid();
444
384
  if(pid == 0){
445
 
    error_plus(0, 0, "plymouthd pid not found");
 
385
    error(0, 0, "plymouthd pid not found");
 
386
  } else {
 
387
    plymouthd_argv = getargv(pid);
 
388
  }
 
389
  if(plymouthd_argv == NULL){
446
390
    plymouthd_argv = plymouthd_default_argv;
447
 
  } else {
448
 
    plymouthd_argv = getargv(pid);
449
391
  }
450
392
  
451
 
  bret = exec_and_wait(NULL, plymouth_path, (const char *[])
452
 
                       { plymouth_path, "quit", NULL },
453
 
                       false, false);
454
 
  if(not bret){
455
 
    exit(EXIT_FAILURE);
456
 
  }
457
 
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
458
 
                       false, true);
459
 
  if(not bret){
460
 
    exit(EXIT_FAILURE);
461
 
  }
462
 
  exec_and_wait(NULL, plymouth_path, (const char *[])
463
 
                { plymouth_path, "show-splash", NULL },
464
 
                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);
465
404
  exit(EXIT_FAILURE);
466
405
}