/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: 2011-06-23 22:27:15 UTC
  • mto: This revision was merged to the branch mainline in revision 485.
  • Revision ID: belorn@fukt.bsnet.se-20110623222715-q5wro9ma9iyjl367
* Makefile (CFLAGS): Added "-lrt" to include real time library.
* plugins.d/mandos-client.c: use scandir(3) instead of readdir(3)
                             Prefix all debug output with "Mandos plugin " + program_invocation_short_name
                             Retry servers that failed to provide password.
                             New option --retry SECONDS that sets the interval between rechecking.
                             --retry also controls how often it retries a server when using --connect.
* plugins.d/splashy.c:  Prefix all debug output with "Mandos plugin " + program_invocation_short_name
* plugins.d/usplash.c: --||--
* plugins.d/askpass-fifo.c: --||--
* plugins.d/password-prompt.c: --||--
* plugins.d/plymouth.c: --||--
* mandos: Lower logger level from warning to info on failed client requests because client was disabled or unknown fingerprint.
* plugins.d/plymouth.c (get_pid): bug fix. Was not calling free on direntries. 

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