/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 at bsnet
  • Date: 2010-09-23 20:14:08 UTC
  • Revision ID: teddy@fukt.bsnet.se-20100923201408-4vcvjmml000fr8y5
* Makefile (DOCS): Added "plymouth.8mandos".
  (install-server): Also install "mandos-monitor.8" and
                    "mandos-ctl.8".
  (install-client-nokey): Also install "plymouth.8mandos".
  (uninstall-server): Also remove "mandos-monitor.8" and
                      "mandos-ctl.8".
  (uninstall-client): Also remove "plymouth.8mandos".
* plugins.d/plymouth.xml: New.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8 -*- */
2
 
/*
3
 
 * Usplash - Read a password from usplash and output it
4
 
 * 
5
 
 * Copyright © 2010 Teddy Hogeborn
6
 
 * Copyright © 2010 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() */
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
27
#include <argz.h>               /* argz_count(), argz_extract() */
55
30
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
56
31
const char plymouth_path[] = "/bin/plymouth";
57
32
const char plymouthd_path[] = "/sbin/plymouthd";
58
 
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
59
 
                                        "--mode=boot",
 
33
const char *plymouthd_default_argv[] = {"/sbin/plymouthd", "--mode=boot",
60
34
                                        "--attach-to-session",
61
 
                                        "--pid-file="
62
 
                                        "/dev/.initramfs/"
63
 
                                        "plymouth.pid",
 
35
                                        "--pid-file=/dev/.initramfs/plymouth.pid",
64
36
                                        NULL };
65
37
 
66
38
static void termination_handler(__attribute__((unused))int signum){
151
123
      if (tmp == NULL){
152
124
        error(0, errno, "realloc");
153
125
        free(new_argv);
154
 
        _exit(EX_OSERR);
 
126
        _exit(EXIT_FAILURE);
155
127
      }
156
128
      new_argv = (char **)tmp;
157
129
      new_argv[i] = strdup(argv[i]);
177
149
    error(0, errno, "waitpid");
178
150
    return false;
179
151
  }
180
 
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
 
152
  if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
181
153
    return true;
182
154
  }
183
155
  return false;
191
163
    errno = 0;
192
164
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
193
165
 
194
 
    if(errno != 0 or *tmp != '\0'
195
 
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
166
    if(errno != 0 or *tmp != '\0' or maxvalue != (uintmax_t)((pid_t)maxvalue)){
196
167
      return 0;
197
168
    }
198
169
  }
199
 
  char exe_target[sizeof(plymouthd_path)];
 
170
  char exe_target[sizeof(plymouth_path)];
200
171
  char *exe_link;
201
172
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
202
173
  if(ret == -1){
203
174
    error(0, errno, "asprintf");
204
175
    return 0;
205
176
  }
206
 
  
 
177
 
207
178
  struct stat exe_stat;
208
179
  ret = lstat(exe_link, &exe_stat);
209
180
  if(ret == -1){
220
191
    free(exe_link);
221
192
    return 0;
222
193
  }
223
 
  
 
194
 
224
195
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
225
196
  free(exe_link);
226
 
  if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
227
 
      (memcmp(plymouthd_path, exe_target,
228
 
              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)){
229
200
    return 0;
230
201
  }
231
202
  return 1;
245
216
  if(maxvalue == 0){
246
217
    struct dirent **direntries;
247
218
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
248
 
    if (ret == -1){
249
 
      error(0, errno, "scandir");
250
 
    }
251
 
    if (ret > 0){
252
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
253
 
      if (ret < 0){
254
 
        error(0, errno, "sscanf");
255
 
      }
256
 
    }
 
219
    sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
257
220
  }
258
221
  pid_t pid;
259
222
  pid = (pid_t)maxvalue;
345
308
  /* test -x /bin/plymouth */
346
309
  ret = access(plymouth_path, X_OK);
347
310
  if(ret == -1){
348
 
    /* Plymouth is probably not installed.  Don't print an error
349
 
       message, just exit. */
350
 
    exit(EX_UNAVAILABLE);
 
311
    exit(EXIT_FAILURE);
351
312
  }
352
 
  
 
313
 
353
314
  { /* Add signal handlers */
354
315
    struct sigaction old_action,
355
316
      new_action = { .sa_handler = termination_handler,
356
317
                     .sa_flags = 0 };
357
318
    sigemptyset(&new_action.sa_mask);
358
 
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
359
 
        *sig != 0; sig++){
 
319
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
360
320
      ret = sigaddset(&new_action.sa_mask, *sig);
361
321
      if(ret == -1){
362
 
        error(EX_OSERR, errno, "sigaddset");
 
322
        error(0, errno, "sigaddset");
 
323
        exit(EX_OSERR);
363
324
      }
364
325
      ret = sigaction(*sig, NULL, &old_action);
365
326
      if(ret == -1){
366
 
        error(EX_OSERR, errno, "sigaction");
 
327
        error(0, errno, "sigaction");
 
328
        exit(EX_OSERR);
367
329
      }
368
330
      if(old_action.sa_handler != SIG_IGN){
369
331
        ret = sigaction(*sig, &new_action, NULL);
370
332
        if(ret == -1){
371
 
          error(EX_OSERR, errno, "sigaction");
 
333
          error(0, errno, "sigaction");
 
334
          exit(EX_OSERR);
372
335
        }
373
336
      }
374
337
    }
375
338
  }
376
 
  
 
339
    
377
340
  /* plymouth --ping */
378
341
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
379
 
                       (const char *[])
380
 
                       { plymouth_path, "--ping", NULL },
 
342
                       (const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
381
343
                       true, false);
382
344
  if(not bret){
383
345
    if(interrupted_by_signal){
384
346
      kill_and_wait(plymouth_command_pid);
385
 
      exit(EXIT_FAILURE);
386
347
    }
387
 
    /* Plymouth is probably not running.  Don't print an error
388
 
       message, just exit. */
389
 
    exit(EX_UNAVAILABLE);
 
348
    exit(EXIT_FAILURE);
390
349
  }
391
350
  
392
351
  prompt = makeprompt();
393
352
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
394
353
  free(prompt);
395
354
  if(ret == -1){
396
 
    error(EX_OSERR, errno, "asprintf");
 
355
    error(0, errno, "asprintf");
 
356
    exit(EXIT_FAILURE);
397
357
  }
398
358
  
399
359
  /* plymouth ask-for-password --prompt="$prompt" */
400
 
  bret = exec_and_wait(&plymouth_command_pid,
401
 
                       plymouth_path, (const char *[])
402
 
                       { plymouth_path, "ask-for-password",
403
 
                           prompt_arg, NULL },
 
360
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
 
361
                       (const char *[]){plymouth_path, "ask-for-password", prompt_arg, NULL},
404
362
                       true, false);
405
363
  free(prompt_arg);
 
364
  if(not bret){
 
365
    if(interrupted_by_signal){
 
366
      kill_and_wait(plymouth_command_pid);
 
367
    } else {
 
368
      exit(EXIT_FAILURE);
 
369
    }
 
370
  }
 
371
  
406
372
  if(bret){
407
373
    exit(EXIT_SUCCESS);
408
374
  }
409
 
  if(not interrupted_by_signal){
410
 
    /* exec_and_wait failed for some other reason */
411
 
    exit(EXIT_FAILURE);
412
 
  }
413
 
  kill_and_wait(plymouth_command_pid);
414
375
  
415
 
  const char **plymouthd_argv;
 
376
  const char **plymouthd_argv = NULL;
416
377
  pid_t pid = get_pid();
417
378
  if(pid == 0){
418
379
    error(0, 0, "plymouthd pid not found");
 
380
  } else {
 
381
    plymouthd_argv = getargv(pid);
 
382
  }
 
383
  if(plymouthd_argv == NULL){
419
384
    plymouthd_argv = plymouthd_default_argv;
420
 
  } else {
421
 
    plymouthd_argv = getargv(pid);
422
385
  }
423
386
  
424
 
  bret = exec_and_wait(NULL, plymouth_path, (const char *[])
425
 
                       { plymouth_path, "quit", NULL },
426
 
                       false, false);
427
 
  if(not bret){
428
 
    exit(EXIT_FAILURE);
429
 
  }
430
 
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
431
 
                       false, true);
432
 
  if(not bret){
433
 
    exit(EXIT_FAILURE);
434
 
  }
435
 
  exec_and_wait(NULL, plymouth_path, (const char *[])
436
 
                { plymouth_path, "show-splash", NULL },
437
 
                false, false);
 
387
  bret = exec_and_wait(NULL, plymouth_path,
 
388
                       (const char *[]){plymouth_path, "quit", NULL}, false, false);
 
389
  if(not bret){
 
390
    exit(EXIT_FAILURE);
 
391
  }
 
392
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv, false, true);
 
393
  if(not bret){
 
394
    exit(EXIT_FAILURE);
 
395
  }
 
396
  exec_and_wait(NULL, plymouth_path,
 
397
                (const char *[]){ plymouth_path, "show-splash", NULL }, false, false);
438
398
  exit(EXIT_FAILURE);
439
399
}