/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: 2011-02-11 18:54:14 UTC
  • mto: This revision was merged to the branch mainline in revision 465.
  • Revision ID: teddy@fukt.bsnet.se-20110211185414-cjmw3hppv9i3h9wh
* mandos-monitor: Use only unicode string literals.
  (MandosClientWidget.rows, MandosClientWidget.render,
  MandosClientWidget.keypress, ConstrainedListBox.keypress) Don't use
                                                            argument
                                                            tuple
                                                            unpacking.

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 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
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
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id);
303
 
      if(ret < 0){
304
 
        error_plus(0, errno, "sscanf");
 
253
    if (ret > 0){
 
254
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
255
      if (ret < 0){
 
256
        error(0, errno, "sscanf");
305
257
      }
306
258
    }
307
 
    /* scandir might preallocate for this variable (man page unclear).
308
 
       even if ret == 0, therefore we need to free it. */
309
 
    free(direntries);
310
259
  }
311
260
  pid_t pid;
312
 
  pid = (pid_t)proc_id;
313
 
  if((uintmax_t)pid == proc_id){
 
261
  pid = (pid_t)maxvalue;
 
262
  if((uintmax_t)pid == maxvalue){
314
263
    return pid;
315
264
  }
316
265
  
317
266
  return 0;
318
267
}
319
268
 
320
 
const char * const * getargv(pid_t pid){
 
269
const char **getargv(pid_t pid){
321
270
  int cl_fd;
322
271
  char *cmdline_filename;
323
272
  ssize_t sret;
326
275
  ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
327
276
                 (uintmax_t)pid);
328
277
  if(ret == -1){
329
 
    error_plus(0, errno, "asprintf");
 
278
    error(0, errno, "asprintf");
330
279
    return NULL;
331
280
  }
332
281
  
334
283
  cl_fd = open(cmdline_filename, O_RDONLY);
335
284
  free(cmdline_filename);
336
285
  if(cl_fd == -1){
337
 
    error_plus(0, errno, "open");
 
286
    error(0, errno, "open");
338
287
    return NULL;
339
288
  }
340
289
  
348
297
    if(cmdline_len + blocksize > cmdline_allocated){
349
298
      tmp = realloc(cmdline, cmdline_allocated + blocksize);
350
299
      if(tmp == NULL){
351
 
        error_plus(0, errno, "realloc");
 
300
        error(0, errno, "realloc");
352
301
        free(cmdline);
353
302
        close(cl_fd);
354
303
        return NULL;
361
310
    sret = read(cl_fd, cmdline + cmdline_len,
362
311
                cmdline_allocated - cmdline_len);
363
312
    if(sret == -1){
364
 
      error_plus(0, errno, "read");
 
313
      error(0, errno, "read");
365
314
      free(cmdline);
366
315
      close(cl_fd);
367
316
      return NULL;
370
319
  } while(sret != 0);
371
320
  ret = close(cl_fd);
372
321
  if(ret == -1){
373
 
    error_plus(0, errno, "close");
 
322
    error(0, errno, "close");
374
323
    free(cmdline);
375
324
    return NULL;
376
325
  }
379
328
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
380
329
                       * sizeof(char *)); /* Get number of args */
381
330
  if(argv == NULL){
382
 
    error_plus(0, errno, "argv = malloc()");
 
331
    error(0, errno, "argv = malloc()");
383
332
    free(cmdline);
384
333
    return NULL;
385
334
  }
386
335
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
387
 
  return (const char * const *)argv;
 
336
  return (const char **)argv;
388
337
}
389
338
 
390
339
int main(__attribute__((unused))int argc,
412
361
        *sig != 0; sig++){
413
362
      ret = sigaddset(&new_action.sa_mask, *sig);
414
363
      if(ret == -1){
415
 
        error_plus(EX_OSERR, errno, "sigaddset");
 
364
        error(EX_OSERR, errno, "sigaddset");
416
365
      }
417
366
      ret = sigaction(*sig, NULL, &old_action);
418
367
      if(ret == -1){
419
 
        error_plus(EX_OSERR, errno, "sigaction");
 
368
        error(EX_OSERR, errno, "sigaction");
420
369
      }
421
370
      if(old_action.sa_handler != SIG_IGN){
422
371
        ret = sigaction(*sig, &new_action, NULL);
423
372
        if(ret == -1){
424
 
          error_plus(EX_OSERR, errno, "sigaction");
 
373
          error(EX_OSERR, errno, "sigaction");
425
374
        }
426
375
      }
427
376
    }
446
395
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
447
396
  free(prompt);
448
397
  if(ret == -1){
449
 
    error_plus(EX_OSERR, errno, "asprintf");
 
398
    error(EX_OSERR, errno, "asprintf");
450
399
  }
451
400
  
452
401
  /* plymouth ask-for-password --prompt="$prompt" */
465
414
  }
466
415
  kill_and_wait(plymouth_command_pid);
467
416
  
468
 
  const char * const *plymouthd_argv;
 
417
  const char **plymouthd_argv;
469
418
  pid_t pid = get_pid();
470
419
  if(pid == 0){
471
 
    error_plus(0, 0, "plymouthd pid not found");
 
420
    error(0, 0, "plymouthd pid not found");
472
421
    plymouthd_argv = plymouthd_default_argv;
473
422
  } else {
474
423
    plymouthd_argv = getargv(pid);