/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: 2011-03-08 19:09:03 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110308190903-j499ebtb9bpk31ar
* INSTALL: Updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Plymouth - Read a password from Plymouth and output it
4
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
 
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
16
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
17
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
16
 * General Public License for more details.
19
17
 * 
20
18
 * You should have received a copy of the GNU General Public License
21
 
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
19
 * along with this program.  If not, see
 
20
 * <http://www.gnu.org/licenses/>.
22
21
 * 
23
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
24
23
 */
25
24
 
26
25
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
37
36
#include <stddef.h>             /* NULL */
38
37
#include <string.h>             /* strchr(), memcmp() */
39
38
#include <stdio.h>              /* asprintf(), perror(), fopen(),
40
 
                                   fscanf(), vasprintf(), fprintf(),
41
 
                                   vfprintf() */
 
39
                                   fscanf() */
42
40
#include <unistd.h>             /* close(), readlink(), read(),
43
41
                                   fork(), setsid(), chdir(), dup2(),
44
42
                                   STDERR_FILENO, execv(), access() */
52
50
#include <error.h>              /* error() */
53
51
#include <errno.h>              /* TEMP_FAILURE_RETRY */
54
52
#include <argz.h>               /* argz_count(), argz_extract() */
55
 
#include <stdarg.h>             /* va_list, va_start(), ... */
56
53
 
57
54
sig_atomic_t interrupted_by_signal = 0;
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
 
 
 
55
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
64
56
const char plymouth_path[] = "/bin/plymouth";
65
57
const char plymouthd_path[] = "/sbin/plymouthd";
66
58
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
67
59
                                        "--mode=boot",
68
60
                                        "--attach-to-session",
 
61
                                        "--pid-file="
 
62
                                        "/dev/.initramfs/"
 
63
                                        "plymouth.pid",
69
64
                                        NULL };
70
65
 
71
66
static void termination_handler(__attribute__((unused))int signum){
75
70
  interrupted_by_signal = 1;
76
71
}
77
72
 
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
 
 
102
73
/* Create prompt string */
103
74
char *makeprompt(void){
104
75
  int ret = 0;
138
109
bool become_a_daemon(void){
139
110
  int ret = setuid(geteuid());
140
111
  if(ret == -1){
141
 
    error_plus(0, errno, "setuid");
 
112
    error(0, errno, "setuid");
142
113
  }
143
114
    
144
115
  setsid();
145
116
  ret = chdir("/");
146
117
  if(ret == -1){
147
 
    error_plus(0, errno, "chdir");
 
118
    error(0, errno, "chdir");
148
119
    return false;
149
120
  }
150
121
  ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
151
122
  if(ret == -1){
152
 
    error_plus(0, errno, "dup2");
 
123
    error(0, errno, "dup2");
153
124
    return false;
154
125
  }
155
126
  return true;
156
127
}
157
128
 
158
 
__attribute__((nonnull (2, 3)))
159
129
bool exec_and_wait(pid_t *pid_return, const char *path,
160
 
                   const char * const *argv, bool interruptable,
 
130
                   const char **argv, bool interruptable,
161
131
                   bool daemonize){
162
132
  int status;
163
133
  int ret;
164
134
  pid_t pid;
165
135
  pid = fork();
166
136
  if(pid == -1){
167
 
    error_plus(0, errno, "fork");
 
137
    error(0, errno, "fork");
168
138
    return false;
169
139
  }
170
140
  if(pid == 0){
175
145
      }
176
146
    }
177
147
    
178
 
    char **new_argv = malloc(sizeof(const char *));
179
 
    if(new_argv == NULL){
180
 
      error_plus(0, errno, "malloc");
181
 
      _exit(EX_OSERR);
182
 
    }
 
148
    char **new_argv = NULL;
183
149
    char **tmp;
184
150
    int i = 0;
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");
 
151
    for (; argv[i]!=NULL; i++){
 
152
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
 
153
      if (tmp == NULL){
 
154
        error(0, errno, "realloc");
189
155
        free(new_argv);
190
156
        _exit(EX_OSERR);
191
157
      }
195
161
    new_argv[i] = NULL;
196
162
    
197
163
    execv(path, (char *const *)new_argv);
198
 
    error_plus(0, errno, "execv");
 
164
    error(0, errno, "execv");
199
165
    _exit(EXIT_FAILURE);
200
166
  }
201
167
  if(pid_return != NULL){
210
176
    return false;
211
177
  }
212
178
  if(ret == -1){
213
 
    error_plus(0, errno, "waitpid");
 
179
    error(0, errno, "waitpid");
214
180
    return false;
215
181
  }
216
182
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
219
185
  return false;
220
186
}
221
187
 
222
 
__attribute__((nonnull))
223
188
int is_plymouth(const struct dirent *proc_entry){
224
189
  int ret;
225
190
  {
226
 
    uintmax_t proc_id;
 
191
    uintmax_t maxvalue;
227
192
    char *tmp;
228
193
    errno = 0;
229
 
    proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
194
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
230
195
 
231
196
    if(errno != 0 or *tmp != '\0'
232
 
       or proc_id != (uintmax_t)((pid_t)proc_id)){
 
197
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
233
198
      return 0;
234
199
    }
235
200
  }
237
202
  char *exe_link;
238
203
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
239
204
  if(ret == -1){
240
 
    error_plus(0, errno, "asprintf");
 
205
    error(0, errno, "asprintf");
241
206
    return 0;
242
207
  }
243
208
  
246
211
  if(ret == -1){
247
212
    free(exe_link);
248
213
    if(errno != ENOENT){
249
 
      error_plus(0, errno, "lstat");
 
214
      error(0, errno, "lstat");
250
215
    }
251
216
    return 0;
252
217
  }
270
235
 
271
236
pid_t get_pid(void){
272
237
  int ret;
273
 
  uintmax_t proc_id = 0;
274
238
  FILE *pidfile = fopen(plymouth_pid, "r");
275
 
  /* Try the new pid file location */
 
239
  uintmax_t maxvalue = 0;
276
240
  if(pidfile != NULL){
277
 
    ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
241
    ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
278
242
    if(ret != 1){
279
 
      proc_id = 0;
 
243
      maxvalue = 0;
280
244
    }
281
245
    fclose(pidfile);
282
246
  }
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;
 
247
  if(maxvalue == 0){
 
248
    struct dirent **direntries;
297
249
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
298
 
    if(ret == -1){
299
 
      error_plus(0, errno, "scandir");
 
250
    if (ret == -1){
 
251
      error(0, errno, "scandir");
300
252
    }
301
 
    if(ret > 0){
302
 
      for(int i = ret-1; i >= 0; i--){
303
 
        if(proc_id == 0){
304
 
          ret = sscanf(direntries[i]->d_name, "%" SCNuMAX, &proc_id);
305
 
          if(ret < 0){
306
 
            error_plus(0, errno, "sscanf");
307
 
          }
308
 
        }
309
 
        free(direntries[i]);
 
253
    if (ret > 0){
 
254
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
255
      if (ret < 0){
 
256
        error(0, errno, "sscanf");
310
257
      }
311
258
    }
312
 
    /* scandir might preallocate for this variable (man page unclear).
313
 
       even if ret == 0, therefore we need to free it. */
314
 
    free(direntries);
315
259
  }
316
260
  pid_t pid;
317
 
  pid = (pid_t)proc_id;
318
 
  if((uintmax_t)pid == proc_id){
 
261
  pid = (pid_t)maxvalue;
 
262
  if((uintmax_t)pid == maxvalue){
319
263
    return pid;
320
264
  }
321
265
  
322
266
  return 0;
323
267
}
324
268
 
325
 
char **getargv(pid_t pid){
 
269
const char **getargv(pid_t pid){
326
270
  int cl_fd;
327
271
  char *cmdline_filename;
328
272
  ssize_t sret;
331
275
  ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
332
276
                 (uintmax_t)pid);
333
277
  if(ret == -1){
334
 
    error_plus(0, errno, "asprintf");
 
278
    error(0, errno, "asprintf");
335
279
    return NULL;
336
280
  }
337
281
  
339
283
  cl_fd = open(cmdline_filename, O_RDONLY);
340
284
  free(cmdline_filename);
341
285
  if(cl_fd == -1){
342
 
    error_plus(0, errno, "open");
 
286
    error(0, errno, "open");
343
287
    return NULL;
344
288
  }
345
289
  
353
297
    if(cmdline_len + blocksize > cmdline_allocated){
354
298
      tmp = realloc(cmdline, cmdline_allocated + blocksize);
355
299
      if(tmp == NULL){
356
 
        error_plus(0, errno, "realloc");
 
300
        error(0, errno, "realloc");
357
301
        free(cmdline);
358
302
        close(cl_fd);
359
303
        return NULL;
366
310
    sret = read(cl_fd, cmdline + cmdline_len,
367
311
                cmdline_allocated - cmdline_len);
368
312
    if(sret == -1){
369
 
      error_plus(0, errno, "read");
 
313
      error(0, errno, "read");
370
314
      free(cmdline);
371
315
      close(cl_fd);
372
316
      return NULL;
375
319
  } while(sret != 0);
376
320
  ret = close(cl_fd);
377
321
  if(ret == -1){
378
 
    error_plus(0, errno, "close");
 
322
    error(0, errno, "close");
379
323
    free(cmdline);
380
324
    return NULL;
381
325
  }
384
328
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
385
329
                       * sizeof(char *)); /* Get number of args */
386
330
  if(argv == NULL){
387
 
    error_plus(0, errno, "argv = malloc()");
 
331
    error(0, errno, "argv = malloc()");
388
332
    free(cmdline);
389
333
    return NULL;
390
334
  }
391
335
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
392
 
  return argv;
 
336
  return (const char **)argv;
393
337
}
394
338
 
395
339
int main(__attribute__((unused))int argc,
417
361
        *sig != 0; sig++){
418
362
      ret = sigaddset(&new_action.sa_mask, *sig);
419
363
      if(ret == -1){
420
 
        error_plus(EX_OSERR, errno, "sigaddset");
 
364
        error(EX_OSERR, errno, "sigaddset");
421
365
      }
422
366
      ret = sigaction(*sig, NULL, &old_action);
423
367
      if(ret == -1){
424
 
        error_plus(EX_OSERR, errno, "sigaction");
 
368
        error(EX_OSERR, errno, "sigaction");
425
369
      }
426
370
      if(old_action.sa_handler != SIG_IGN){
427
371
        ret = sigaction(*sig, &new_action, NULL);
428
372
        if(ret == -1){
429
 
          error_plus(EX_OSERR, errno, "sigaction");
 
373
          error(EX_OSERR, errno, "sigaction");
430
374
        }
431
375
      }
432
376
    }
451
395
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
452
396
  free(prompt);
453
397
  if(ret == -1){
454
 
    error_plus(EX_OSERR, errno, "asprintf");
 
398
    error(EX_OSERR, errno, "asprintf");
455
399
  }
456
400
  
457
401
  /* plymouth ask-for-password --prompt="$prompt" */
470
414
  }
471
415
  kill_and_wait(plymouth_command_pid);
472
416
  
473
 
  char **plymouthd_argv = NULL;
 
417
  const char **plymouthd_argv;
474
418
  pid_t pid = get_pid();
475
419
  if(pid == 0){
476
 
    error_plus(0, 0, "plymouthd pid not found");
 
420
    error(0, 0, "plymouthd pid not found");
 
421
    plymouthd_argv = plymouthd_default_argv;
477
422
  } else {
478
423
    plymouthd_argv = getargv(pid);
479
424
  }
482
427
                       { plymouth_path, "quit", NULL },
483
428
                       false, false);
484
429
  if(not bret){
485
 
    if(plymouthd_argv != NULL){
486
 
      free(*plymouthd_argv);
487
 
      free(plymouthd_argv);
488
 
    }
489
430
    exit(EXIT_FAILURE);
490
431
  }
491
 
  bret = exec_and_wait(NULL, plymouthd_path,
492
 
                       (plymouthd_argv != NULL)
493
 
                       ? (const char * const *)plymouthd_argv
494
 
                       : plymouthd_default_argv,
 
432
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
495
433
                       false, true);
496
 
  if(plymouthd_argv != NULL){
497
 
    free(*plymouthd_argv);
498
 
    free(plymouthd_argv);
499
 
  }
500
434
  if(not bret){
501
435
    exit(EXIT_FAILURE);
502
436
  }