/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: 2010-09-26 17:36:30 UTC
  • Revision ID: teddy@fukt.bsnet.se-20100926173630-zk7pe17fp2bv6zr7
* DBUS-API: Document new "LastApprovalRequest" client property.

* mandos (Client.last_approval_request): New attribute.
  (Client.need_approval): New method.
  (ClientDBus.need_approval): - '' -
  (ClientDBus.NeedApproval): Call self.need_approval().
  (ClientDBus.LastApprovalRequest_dbus_property): New D-Bus property.

* mandos-monitor: Show timeout counter during approval delay.
  (MandosClientWidget._update_timer_callback_lock): New.
  (MandosClientWidget.property_changed): Override to also call
                                         using_timer if
                                         ApprovalPending property is
                                         changed.
  (MandosClientWidget.using_timer): New method.
  (MandosClientWidget.checker_completed): Use "using_timer".
  (MandosClientWidget.need_approval): - '' -
  (MandosClientWidget.update): Show approval delay timer.

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
 
 
26
1
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
27
2
#include <signal.h>             /* sig_atomic_t, struct sigaction,
28
3
                                   sigemptyset(), sigaddset(), SIGINT,
37
12
#include <stddef.h>             /* NULL */
38
13
#include <string.h>             /* strchr(), memcmp() */
39
14
#include <stdio.h>              /* asprintf(), perror(), fopen(),
40
 
                                   fscanf(), vasprintf(), fprintf(),
41
 
                                   vfprintf() */
 
15
                                   fscanf() */
42
16
#include <unistd.h>             /* close(), readlink(), read(),
43
17
                                   fork(), setsid(), chdir(), dup2(),
44
18
                                   STDERR_FILENO, execv(), access() */
52
26
#include <error.h>              /* error() */
53
27
#include <errno.h>              /* TEMP_FAILURE_RETRY */
54
28
#include <argz.h>               /* argz_count(), argz_extract() */
55
 
#include <stdarg.h>             /* va_list, va_start(), ... */
56
29
 
57
30
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
 
 
 
31
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
64
32
const char plymouth_path[] = "/bin/plymouth";
65
33
const char plymouthd_path[] = "/sbin/plymouthd";
66
34
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
67
35
                                        "--mode=boot",
68
36
                                        "--attach-to-session",
 
37
                                        "--pid-file="
 
38
                                        "/dev/.initramfs/"
 
39
                                        "plymouth.pid",
69
40
                                        NULL };
70
41
 
71
42
static void termination_handler(__attribute__((unused))int signum){
75
46
  interrupted_by_signal = 1;
76
47
}
77
48
 
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
49
/* Create prompt string */
103
50
char *makeprompt(void){
104
51
  int ret = 0;
105
52
  char *prompt;
106
53
  const char *const cryptsource = getenv("cryptsource");
107
54
  const char *const crypttarget = getenv("crypttarget");
108
 
  const char prompt_start[] = "Unlocking the disk";
109
 
  const char prompt_end[] = "Enter passphrase";
 
55
  const char prompt_start[] = "Enter passphrase to unlock the disk";
110
56
  
111
57
  if(cryptsource == NULL){
112
58
    if(crypttarget == NULL){
113
 
      ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
 
59
      ret = asprintf(&prompt, "%s: ", prompt_start);
114
60
    } else {
115
 
      ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
116
 
                     crypttarget, prompt_end);
 
61
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
62
                     crypttarget);
117
63
    }
118
64
  } else {
119
65
    if(crypttarget == NULL){
120
 
      ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
121
 
                     prompt_end);
 
66
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
122
67
    } else {
123
 
      ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
124
 
                     cryptsource, crypttarget, prompt_end);
 
68
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
69
                     cryptsource, crypttarget);
125
70
    }
126
71
  }
127
72
  if(ret == -1){
138
83
bool become_a_daemon(void){
139
84
  int ret = setuid(geteuid());
140
85
  if(ret == -1){
141
 
    error_plus(0, errno, "setuid");
 
86
    error(0, errno, "setuid");
142
87
  }
143
88
    
144
89
  setsid();
145
90
  ret = chdir("/");
146
91
  if(ret == -1){
147
 
    error_plus(0, errno, "chdir");
 
92
    error(0, errno, "chdir");
148
93
    return false;
149
94
  }
150
95
  ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
151
96
  if(ret == -1){
152
 
    error_plus(0, errno, "dup2");
 
97
    error(0, errno, "dup2");
153
98
    return false;
154
99
  }
155
100
  return true;
156
101
}
157
102
 
158
 
__attribute__((nonnull (2, 3)))
159
103
bool exec_and_wait(pid_t *pid_return, const char *path,
160
 
                   const char * const *argv, bool interruptable,
 
104
                   const char **argv, bool interruptable,
161
105
                   bool daemonize){
162
106
  int status;
163
107
  int ret;
164
108
  pid_t pid;
165
109
  pid = fork();
166
110
  if(pid == -1){
167
 
    error_plus(0, errno, "fork");
 
111
    error(0, errno, "fork");
168
112
    return false;
169
113
  }
170
114
  if(pid == 0){
174
118
        _exit(EX_OSERR);
175
119
      }
176
120
    }
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;
 
121
 
 
122
    char **new_argv = NULL;
 
123
    char *tmp;
184
124
    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");
 
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");
189
129
        free(new_argv);
190
130
        _exit(EX_OSERR);
191
131
      }
192
 
      new_argv = tmp;
 
132
      new_argv = (char **)tmp;
193
133
      new_argv[i] = strdup(argv[i]);
194
134
    }
195
 
    new_argv[i] = NULL;
 
135
    new_argv[i] = (char *) NULL;
196
136
    
197
137
    execv(path, (char *const *)new_argv);
198
 
    error_plus(0, errno, "execv");
 
138
    error(0, errno, "execv");
199
139
    _exit(EXIT_FAILURE);
200
140
  }
201
141
  if(pid_return != NULL){
210
150
    return false;
211
151
  }
212
152
  if(ret == -1){
213
 
    error_plus(0, errno, "waitpid");
 
153
    error(0, errno, "waitpid");
214
154
    return false;
215
155
  }
216
156
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
219
159
  return false;
220
160
}
221
161
 
222
 
__attribute__((nonnull))
223
162
int is_plymouth(const struct dirent *proc_entry){
224
163
  int ret;
225
164
  {
226
 
    uintmax_t proc_id;
 
165
    uintmax_t maxvalue;
227
166
    char *tmp;
228
167
    errno = 0;
229
 
    proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
168
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
230
169
 
231
170
    if(errno != 0 or *tmp != '\0'
232
 
       or proc_id != (uintmax_t)((pid_t)proc_id)){
 
171
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
233
172
      return 0;
234
173
    }
235
174
  }
236
 
  char exe_target[sizeof(plymouthd_path)];
 
175
  char exe_target[sizeof(plymouth_path)];
237
176
  char *exe_link;
238
177
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
239
178
  if(ret == -1){
240
 
    error_plus(0, errno, "asprintf");
 
179
    error(0, errno, "asprintf");
241
180
    return 0;
242
181
  }
243
182
  
246
185
  if(ret == -1){
247
186
    free(exe_link);
248
187
    if(errno != ENOENT){
249
 
      error_plus(0, errno, "lstat");
 
188
      error(0, errno, "lstat");
250
189
    }
251
190
    return 0;
252
191
  }
260
199
  
261
200
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
262
201
  free(exe_link);
263
 
  if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
264
 
      (memcmp(plymouthd_path, exe_target,
265
 
              sizeof(plymouthd_path)-1) != 0)){
 
202
  if((sret != (ssize_t)sizeof(plymouth_path)-1) or
 
203
      (memcmp(plymouth_path, exe_target,
 
204
              sizeof(plymouth_path)-1) != 0)){
266
205
    return 0;
267
206
  }
268
207
  return 1;
270
209
 
271
210
pid_t get_pid(void){
272
211
  int ret;
273
 
  uintmax_t proc_id = 0;
274
212
  FILE *pidfile = fopen(plymouth_pid, "r");
275
 
  /* Try the new pid file location */
 
213
  uintmax_t maxvalue = 0;
276
214
  if(pidfile != NULL){
277
 
    ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
215
    ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
278
216
    if(ret != 1){
279
 
      proc_id = 0;
 
217
      maxvalue = 0;
280
218
    }
281
219
    fclose(pidfile);
282
220
  }
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;
 
221
  if(maxvalue == 0){
 
222
    struct dirent **direntries;
297
223
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
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);
 
224
    sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
310
225
  }
311
226
  pid_t pid;
312
 
  pid = (pid_t)proc_id;
313
 
  if((uintmax_t)pid == proc_id){
 
227
  pid = (pid_t)maxvalue;
 
228
  if((uintmax_t)pid == maxvalue){
314
229
    return pid;
315
230
  }
316
231
  
317
232
  return 0;
318
233
}
319
234
 
320
 
const char * const * getargv(pid_t pid){
 
235
const char **getargv(pid_t pid){
321
236
  int cl_fd;
322
237
  char *cmdline_filename;
323
238
  ssize_t sret;
326
241
  ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
327
242
                 (uintmax_t)pid);
328
243
  if(ret == -1){
329
 
    error_plus(0, errno, "asprintf");
 
244
    error(0, errno, "asprintf");
330
245
    return NULL;
331
246
  }
332
247
  
334
249
  cl_fd = open(cmdline_filename, O_RDONLY);
335
250
  free(cmdline_filename);
336
251
  if(cl_fd == -1){
337
 
    error_plus(0, errno, "open");
 
252
    error(0, errno, "open");
338
253
    return NULL;
339
254
  }
340
255
  
348
263
    if(cmdline_len + blocksize > cmdline_allocated){
349
264
      tmp = realloc(cmdline, cmdline_allocated + blocksize);
350
265
      if(tmp == NULL){
351
 
        error_plus(0, errno, "realloc");
 
266
        error(0, errno, "realloc");
352
267
        free(cmdline);
353
268
        close(cl_fd);
354
269
        return NULL;
361
276
    sret = read(cl_fd, cmdline + cmdline_len,
362
277
                cmdline_allocated - cmdline_len);
363
278
    if(sret == -1){
364
 
      error_plus(0, errno, "read");
 
279
      error(0, errno, "read");
365
280
      free(cmdline);
366
281
      close(cl_fd);
367
282
      return NULL;
370
285
  } while(sret != 0);
371
286
  ret = close(cl_fd);
372
287
  if(ret == -1){
373
 
    error_plus(0, errno, "close");
 
288
    error(0, errno, "close");
374
289
    free(cmdline);
375
290
    return NULL;
376
291
  }
379
294
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
380
295
                       * sizeof(char *)); /* Get number of args */
381
296
  if(argv == NULL){
382
 
    error_plus(0, errno, "argv = malloc()");
 
297
    error(0, errno, "argv = malloc()");
383
298
    free(cmdline);
384
299
    return NULL;
385
300
  }
386
301
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
387
 
  return (const char * const *)argv;
 
302
  return (const char **)argv;
388
303
}
389
304
 
390
305
int main(__attribute__((unused))int argc,
412
327
        *sig != 0; sig++){
413
328
      ret = sigaddset(&new_action.sa_mask, *sig);
414
329
      if(ret == -1){
415
 
        error_plus(EX_OSERR, errno, "sigaddset");
 
330
        error(EX_OSERR, errno, "sigaddset");
416
331
      }
417
332
      ret = sigaction(*sig, NULL, &old_action);
418
333
      if(ret == -1){
419
 
        error_plus(EX_OSERR, errno, "sigaction");
 
334
        error(EX_OSERR, errno, "sigaction");
420
335
      }
421
336
      if(old_action.sa_handler != SIG_IGN){
422
337
        ret = sigaction(*sig, &new_action, NULL);
423
338
        if(ret == -1){
424
 
          error_plus(EX_OSERR, errno, "sigaction");
 
339
          error(EX_OSERR, errno, "sigaction");
425
340
        }
426
341
      }
427
342
    }
446
361
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
447
362
  free(prompt);
448
363
  if(ret == -1){
449
 
    error_plus(EX_OSERR, errno, "asprintf");
 
364
    error(EX_OSERR, errno, "asprintf");
450
365
  }
451
366
  
452
367
  /* plymouth ask-for-password --prompt="$prompt" */
465
380
  }
466
381
  kill_and_wait(plymouth_command_pid);
467
382
  
468
 
  const char * const *plymouthd_argv;
 
383
  const char **plymouthd_argv;
469
384
  pid_t pid = get_pid();
470
385
  if(pid == 0){
471
 
    error_plus(0, 0, "plymouthd pid not found");
 
386
    error(0, 0, "plymouthd pid not found");
472
387
    plymouthd_argv = plymouthd_default_argv;
473
388
  } else {
474
389
    plymouthd_argv = getargv(pid);