/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugins.d/plymouth.c

* plugins.d/splashy.c (error_plus): Check format string.
* plugins.d/askpass-fifo.c (error_plus): - '' -
* plugins.d/plymouth.c (error_plus): - '' -
* plugins.d/password-prompt.c (error_plus): - '' -
* plugins.d/usplash.c (error_plus): - '' -

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