/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

  • Committer: Teddy Hogeborn
  • Date: 2017-08-20 16:27:49 UTC
  • mto: (237.7.594 trunk)
  • mto: This revision was merged to the branch mainline in revision 360.
  • Revision ID: teddy@recompile.se-20170820162749-uzfplfdbuvbatmnm
Update Debian package standard-version to "4.0.1".

* debian/control (Standards-Version): Update to "4.0.1".

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-2017 Teddy Hogeborn
 
6
 * Copyright © 2010-2017 Björn Påhlsson
 
7
 * 
 
8
 * This file is part of Mandos.
 
9
 * 
 
10
 * Mandos is free software: you can redistribute it and/or modify it
 
11
 * under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation, either version 3 of the License, or
 
13
 * (at your option) any later version.
 
14
 * 
 
15
 * Mandos is distributed in the hope that it will be useful, but
 
16
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
18
 * General Public License for more details.
 
19
 * 
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
22
 * 
 
23
 * Contact the authors at <mandos@recompile.se>.
 
24
 */
 
25
 
1
26
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
2
27
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
28
                                   sigemptyset(), sigaddset(), SIGINT,
12
37
#include <stddef.h>             /* NULL */
13
38
#include <string.h>             /* strchr(), memcmp() */
14
39
#include <stdio.h>              /* asprintf(), perror(), fopen(),
15
 
                                   fscanf() */
 
40
                                   fscanf(), vasprintf(), fprintf(),
 
41
                                   vfprintf() */
16
42
#include <unistd.h>             /* close(), readlink(), read(),
17
43
                                   fork(), setsid(), chdir(), dup2(),
18
44
                                   STDERR_FILENO, execv(), access() */
26
52
#include <error.h>              /* error() */
27
53
#include <errno.h>              /* TEMP_FAILURE_RETRY */
28
54
#include <argz.h>               /* argz_count(), argz_extract() */
 
55
#include <stdarg.h>             /* va_list, va_start(), ... */
29
56
 
30
57
sig_atomic_t interrupted_by_signal = 0;
31
 
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
 
58
 
 
59
/* Used by Ubuntu 11.04 (Natty Narwahl) */
 
60
const char plymouth_old_pid[] = "/dev/.initramfs/plymouth.pid";
 
61
/* Used by Ubuntu 11.10 (Oneiric Ocelot) */
 
62
const char plymouth_pid[] = "/run/initramfs/plymouth.pid";
 
63
 
32
64
const char plymouth_path[] = "/bin/plymouth";
33
65
const char plymouthd_path[] = "/sbin/plymouthd";
34
66
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
35
67
                                        "--mode=boot",
36
68
                                        "--attach-to-session",
37
 
                                        "--pid-file="
38
 
                                        "/dev/.initramfs/"
39
 
                                        "plymouth.pid",
40
69
                                        NULL };
41
70
 
42
71
static void termination_handler(__attribute__((unused))int signum){
46
75
  interrupted_by_signal = 1;
47
76
}
48
77
 
 
78
/* Function to use when printing errors */
 
79
__attribute__((format (gnu_printf, 3, 4)))
 
80
void error_plus(int status, int errnum, const char *formatstring,
 
81
                ...){
 
82
  va_list ap;
 
83
  char *text;
 
84
  int ret;
 
85
  
 
86
  va_start(ap, formatstring);
 
87
  ret = vasprintf(&text, formatstring, ap);
 
88
  if(ret == -1){
 
89
    fprintf(stderr, "Mandos plugin %s: ",
 
90
            program_invocation_short_name);
 
91
    vfprintf(stderr, formatstring, ap);
 
92
    fprintf(stderr, ": ");
 
93
    fprintf(stderr, "%s\n", strerror(errnum));
 
94
    error(status, errno, "vasprintf while printing error");
 
95
    return;
 
96
  }
 
97
  fprintf(stderr, "Mandos plugin ");
 
98
  error(status, errnum, "%s", text);
 
99
  free(text);
 
100
}
 
101
 
49
102
/* Create prompt string */
50
103
char *makeprompt(void){
51
104
  int ret = 0;
52
105
  char *prompt;
53
106
  const char *const cryptsource = getenv("cryptsource");
54
107
  const char *const crypttarget = getenv("crypttarget");
55
 
  const char prompt_start[] = "Enter passphrase to unlock the disk";
 
108
  const char prompt_start[] = "Unlocking the disk";
 
109
  const char prompt_end[] = "Enter passphrase";
56
110
  
57
111
  if(cryptsource == NULL){
58
112
    if(crypttarget == NULL){
59
 
      ret = asprintf(&prompt, "%s: ", prompt_start);
 
113
      ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
60
114
    } else {
61
 
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
62
 
                     crypttarget);
 
115
      ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
 
116
                     crypttarget, prompt_end);
63
117
    }
64
118
  } else {
65
119
    if(crypttarget == NULL){
66
 
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
120
      ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
 
121
                     prompt_end);
67
122
    } else {
68
 
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
69
 
                     cryptsource, crypttarget);
 
123
      ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
 
124
                     cryptsource, crypttarget, prompt_end);
70
125
    }
71
126
  }
72
127
  if(ret == -1){
83
138
bool become_a_daemon(void){
84
139
  int ret = setuid(geteuid());
85
140
  if(ret == -1){
86
 
    error(0, errno, "setuid");
 
141
    error_plus(0, errno, "setuid");
87
142
  }
88
143
    
89
144
  setsid();
90
145
  ret = chdir("/");
91
146
  if(ret == -1){
92
 
    error(0, errno, "chdir");
 
147
    error_plus(0, errno, "chdir");
93
148
    return false;
94
149
  }
95
150
  ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
96
151
  if(ret == -1){
97
 
    error(0, errno, "dup2");
 
152
    error_plus(0, errno, "dup2");
98
153
    return false;
99
154
  }
100
155
  return true;
101
156
}
102
157
 
 
158
__attribute__((nonnull (2, 3)))
103
159
bool exec_and_wait(pid_t *pid_return, const char *path,
104
 
                   const char **argv, bool interruptable,
 
160
                   const char * const *argv, bool interruptable,
105
161
                   bool daemonize){
106
162
  int status;
107
163
  int ret;
108
164
  pid_t pid;
109
165
  pid = fork();
110
166
  if(pid == -1){
111
 
    error(0, errno, "fork");
 
167
    error_plus(0, errno, "fork");
112
168
    return false;
113
169
  }
114
170
  if(pid == 0){
118
174
        _exit(EX_OSERR);
119
175
      }
120
176
    }
121
 
 
122
 
    char **new_argv = NULL;
123
 
    char *tmp;
 
177
    
 
178
    char **new_argv = malloc(sizeof(const char *));
 
179
    if(new_argv == NULL){
 
180
      error_plus(0, errno, "malloc");
 
181
      _exit(EX_OSERR);
 
182
    }
 
183
    char **tmp;
124
184
    int i = 0;
125
 
    for (; argv[i]!=(char *)NULL; i++){
126
 
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
127
 
      if (tmp == NULL){
128
 
        error(0, errno, "realloc");
 
185
    for (; argv[i] != NULL; i++){
 
186
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 2));
 
187
      if(tmp == NULL){
 
188
        error_plus(0, errno, "realloc");
129
189
        free(new_argv);
130
190
        _exit(EX_OSERR);
131
191
      }
132
 
      new_argv = (char **)tmp;
 
192
      new_argv = tmp;
133
193
      new_argv[i] = strdup(argv[i]);
134
194
    }
135
 
    new_argv[i] = (char *) NULL;
 
195
    new_argv[i] = NULL;
136
196
    
137
197
    execv(path, (char *const *)new_argv);
138
 
    error(0, errno, "execv");
 
198
    error_plus(0, errno, "execv");
139
199
    _exit(EXIT_FAILURE);
140
200
  }
141
201
  if(pid_return != NULL){
150
210
    return false;
151
211
  }
152
212
  if(ret == -1){
153
 
    error(0, errno, "waitpid");
 
213
    error_plus(0, errno, "waitpid");
154
214
    return false;
155
215
  }
156
216
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
159
219
  return false;
160
220
}
161
221
 
 
222
__attribute__((nonnull))
162
223
int is_plymouth(const struct dirent *proc_entry){
163
224
  int ret;
164
225
  {
165
 
    uintmax_t maxvalue;
 
226
    uintmax_t proc_id;
166
227
    char *tmp;
167
228
    errno = 0;
168
 
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
 
229
    proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
169
230
 
170
231
    if(errno != 0 or *tmp != '\0'
171
 
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
232
       or proc_id != (uintmax_t)((pid_t)proc_id)){
172
233
      return 0;
173
234
    }
174
235
  }
175
 
  char exe_target[sizeof(plymouth_path)];
 
236
  char exe_target[sizeof(plymouthd_path)];
176
237
  char *exe_link;
177
238
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
178
239
  if(ret == -1){
179
 
    error(0, errno, "asprintf");
 
240
    error_plus(0, errno, "asprintf");
180
241
    return 0;
181
242
  }
182
243
  
185
246
  if(ret == -1){
186
247
    free(exe_link);
187
248
    if(errno != ENOENT){
188
 
      error(0, errno, "lstat");
 
249
      error_plus(0, errno, "lstat");
189
250
    }
190
251
    return 0;
191
252
  }
199
260
  
200
261
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
201
262
  free(exe_link);
202
 
  if((sret != (ssize_t)sizeof(plymouth_path)-1) or
203
 
      (memcmp(plymouth_path, exe_target,
204
 
              sizeof(plymouth_path)-1) != 0)){
 
263
  if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
 
264
      (memcmp(plymouthd_path, exe_target,
 
265
              sizeof(plymouthd_path)-1) != 0)){
205
266
    return 0;
206
267
  }
207
268
  return 1;
209
270
 
210
271
pid_t get_pid(void){
211
272
  int ret;
 
273
  uintmax_t proc_id = 0;
212
274
  FILE *pidfile = fopen(plymouth_pid, "r");
213
 
  uintmax_t maxvalue = 0;
 
275
  /* Try the new pid file location */
214
276
  if(pidfile != NULL){
215
 
    ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
 
277
    ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
216
278
    if(ret != 1){
217
 
      maxvalue = 0;
 
279
      proc_id = 0;
218
280
    }
219
281
    fclose(pidfile);
220
282
  }
221
 
  if(maxvalue == 0){
222
 
    struct dirent **direntries;
 
283
  /* Try the old pid file location */
 
284
  if(proc_id == 0){
 
285
    pidfile = fopen(plymouth_pid, "r");
 
286
    if(pidfile != NULL){
 
287
      ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
288
      if(ret != 1){
 
289
        proc_id = 0;
 
290
      }
 
291
      fclose(pidfile);
 
292
    }
 
293
  }
 
294
  /* Look for a plymouth process */
 
295
  if(proc_id == 0){
 
296
    struct dirent **direntries = NULL;
223
297
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
224
 
    sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
298
    if(ret == -1){
 
299
      error_plus(0, errno, "scandir");
 
300
    }
 
301
    if(ret > 0){
 
302
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id);
 
303
      if(ret < 0){
 
304
        error_plus(0, errno, "sscanf");
 
305
      }
 
306
    }
 
307
    /* scandir might preallocate for this variable (man page unclear).
 
308
       even if ret == 0, therefore we need to free it. */
 
309
    free(direntries);
225
310
  }
226
311
  pid_t pid;
227
 
  pid = (pid_t)maxvalue;
228
 
  if((uintmax_t)pid == maxvalue){
 
312
  pid = (pid_t)proc_id;
 
313
  if((uintmax_t)pid == proc_id){
229
314
    return pid;
230
315
  }
231
316
  
232
317
  return 0;
233
318
}
234
319
 
235
 
const char **getargv(pid_t pid){
 
320
const char * const * getargv(pid_t pid){
236
321
  int cl_fd;
237
322
  char *cmdline_filename;
238
323
  ssize_t sret;
241
326
  ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
242
327
                 (uintmax_t)pid);
243
328
  if(ret == -1){
244
 
    error(0, errno, "asprintf");
 
329
    error_plus(0, errno, "asprintf");
245
330
    return NULL;
246
331
  }
247
332
  
249
334
  cl_fd = open(cmdline_filename, O_RDONLY);
250
335
  free(cmdline_filename);
251
336
  if(cl_fd == -1){
252
 
    error(0, errno, "open");
 
337
    error_plus(0, errno, "open");
253
338
    return NULL;
254
339
  }
255
340
  
263
348
    if(cmdline_len + blocksize > cmdline_allocated){
264
349
      tmp = realloc(cmdline, cmdline_allocated + blocksize);
265
350
      if(tmp == NULL){
266
 
        error(0, errno, "realloc");
 
351
        error_plus(0, errno, "realloc");
267
352
        free(cmdline);
268
353
        close(cl_fd);
269
354
        return NULL;
276
361
    sret = read(cl_fd, cmdline + cmdline_len,
277
362
                cmdline_allocated - cmdline_len);
278
363
    if(sret == -1){
279
 
      error(0, errno, "read");
 
364
      error_plus(0, errno, "read");
280
365
      free(cmdline);
281
366
      close(cl_fd);
282
367
      return NULL;
285
370
  } while(sret != 0);
286
371
  ret = close(cl_fd);
287
372
  if(ret == -1){
288
 
    error(0, errno, "close");
 
373
    error_plus(0, errno, "close");
289
374
    free(cmdline);
290
375
    return NULL;
291
376
  }
294
379
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
295
380
                       * sizeof(char *)); /* Get number of args */
296
381
  if(argv == NULL){
297
 
    error(0, errno, "argv = malloc()");
 
382
    error_plus(0, errno, "argv = malloc()");
298
383
    free(cmdline);
299
384
    return NULL;
300
385
  }
301
386
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
302
 
  return (const char **)argv;
 
387
  return (const char * const *)argv;
303
388
}
304
389
 
305
390
int main(__attribute__((unused))int argc,
327
412
        *sig != 0; sig++){
328
413
      ret = sigaddset(&new_action.sa_mask, *sig);
329
414
      if(ret == -1){
330
 
        error(EX_OSERR, errno, "sigaddset");
 
415
        error_plus(EX_OSERR, errno, "sigaddset");
331
416
      }
332
417
      ret = sigaction(*sig, NULL, &old_action);
333
418
      if(ret == -1){
334
 
        error(EX_OSERR, errno, "sigaction");
 
419
        error_plus(EX_OSERR, errno, "sigaction");
335
420
      }
336
421
      if(old_action.sa_handler != SIG_IGN){
337
422
        ret = sigaction(*sig, &new_action, NULL);
338
423
        if(ret == -1){
339
 
          error(EX_OSERR, errno, "sigaction");
 
424
          error_plus(EX_OSERR, errno, "sigaction");
340
425
        }
341
426
      }
342
427
    }
361
446
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
362
447
  free(prompt);
363
448
  if(ret == -1){
364
 
    error(EX_OSERR, errno, "asprintf");
 
449
    error_plus(EX_OSERR, errno, "asprintf");
365
450
  }
366
451
  
367
452
  /* plymouth ask-for-password --prompt="$prompt" */
380
465
  }
381
466
  kill_and_wait(plymouth_command_pid);
382
467
  
383
 
  const char **plymouthd_argv;
 
468
  const char * const *plymouthd_argv;
384
469
  pid_t pid = get_pid();
385
470
  if(pid == 0){
386
 
    error(0, 0, "plymouthd pid not found");
 
471
    error_plus(0, 0, "plymouthd pid not found");
387
472
    plymouthd_argv = plymouthd_default_argv;
388
473
  } else {
389
474
    plymouthd_argv = getargv(pid);