/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-12-24 23:17:02 UTC
  • Revision ID: teddy@fukt.bsnet.se-20111224231702-1ffgu6r02p0bz9co
* plugins.d/splashy.c (error_plus): Check format string.
* plugins.d/askpass-fifo.c (error_plus): - '' -
* plugins.d/plymouth.c (error_plus): - '' -
* plugins.d/password-prompt.c (error_plus): - '' -
* plugins.d/usplash.c (error_plus): - '' -

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-2014 Teddy Hogeborn
6
 
 * Copyright © 2010-2014 Björn Påhlsson
 
5
 * Copyright © 2010-2011 Teddy Hogeborn
 
6
 * Copyright © 2010-2011 Björn Påhlsson
7
7
 * 
8
8
 * This program is free software: you can redistribute it and/or
9
9
 * modify it under the terms of the GNU General Public License as
84
84
  
85
85
  va_start(ap, formatstring);
86
86
  ret = vasprintf(&text, formatstring, ap);
87
 
  if(ret == -1){
 
87
  if (ret == -1){
88
88
    fprintf(stderr, "Mandos plugin %s: ",
89
89
            program_invocation_short_name);
90
90
    vfprintf(stderr, formatstring, ap);
154
154
  return true;
155
155
}
156
156
 
157
 
__attribute__((nonnull (2, 3)))
158
157
bool exec_and_wait(pid_t *pid_return, const char *path,
159
 
                   const char * const *argv, bool interruptable,
 
158
                   const char **argv, bool interruptable,
160
159
                   bool daemonize){
161
160
  int status;
162
161
  int ret;
179
178
    int i = 0;
180
179
    for (; argv[i]!=NULL; i++){
181
180
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
182
 
      if(tmp == NULL){
 
181
      if (tmp == NULL){
183
182
        error_plus(0, errno, "realloc");
184
183
        free(new_argv);
185
184
        _exit(EX_OSERR);
214
213
  return false;
215
214
}
216
215
 
217
 
__attribute__((nonnull))
218
216
int is_plymouth(const struct dirent *proc_entry){
219
217
  int ret;
220
218
  {
221
 
    uintmax_t proc_id;
 
219
    uintmax_t maxvalue;
222
220
    char *tmp;
223
221
    errno = 0;
224
 
    proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
222
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
225
223
 
226
224
    if(errno != 0 or *tmp != '\0'
227
 
       or proc_id != (uintmax_t)((pid_t)proc_id)){
 
225
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
228
226
      return 0;
229
227
    }
230
228
  }
265
263
 
266
264
pid_t get_pid(void){
267
265
  int ret;
268
 
  uintmax_t proc_id = 0;
 
266
  uintmax_t maxvalue = 0;
269
267
  FILE *pidfile = fopen(plymouth_pid, "r");
270
268
  /* Try the new pid file location */
271
269
  if(pidfile != NULL){
272
 
    ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
270
    ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
273
271
    if(ret != 1){
274
 
      proc_id = 0;
 
272
      maxvalue = 0;
275
273
    }
276
274
    fclose(pidfile);
277
275
  }
278
276
  /* Try the old pid file location */
279
 
  if(proc_id == 0){
 
277
  if(maxvalue == 0){
280
278
    pidfile = fopen(plymouth_pid, "r");
281
279
    if(pidfile != NULL){
282
 
      ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
280
      ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
283
281
      if(ret != 1){
284
 
        proc_id = 0;
 
282
        maxvalue = 0;
285
283
      }
286
284
      fclose(pidfile);
287
285
    }
288
286
  }
289
287
  /* Look for a plymouth process */
290
 
  if(proc_id == 0){
 
288
  if(maxvalue == 0){
291
289
    struct dirent **direntries = NULL;
292
290
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
293
 
    if(ret == -1){
 
291
    if (ret == -1){
294
292
      error_plus(0, errno, "scandir");
295
293
    }
296
 
    if(ret > 0){
297
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id);
298
 
      if(ret < 0){
 
294
    if (ret > 0){
 
295
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
296
      if (ret < 0){
299
297
        error_plus(0, errno, "sscanf");
300
298
      }
301
299
    }
304
302
    free(direntries);
305
303
  }
306
304
  pid_t pid;
307
 
  pid = (pid_t)proc_id;
308
 
  if((uintmax_t)pid == proc_id){
 
305
  pid = (pid_t)maxvalue;
 
306
  if((uintmax_t)pid == maxvalue){
309
307
    return pid;
310
308
  }
311
309
  
312
310
  return 0;
313
311
}
314
312
 
315
 
const char * const * getargv(pid_t pid){
 
313
const char **getargv(pid_t pid){
316
314
  int cl_fd;
317
315
  char *cmdline_filename;
318
316
  ssize_t sret;
379
377
    return NULL;
380
378
  }
381
379
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
382
 
  return (const char * const *)argv;
 
380
  return (const char **)argv;
383
381
}
384
382
 
385
383
int main(__attribute__((unused))int argc,
460
458
  }
461
459
  kill_and_wait(plymouth_command_pid);
462
460
  
463
 
  const char * const *plymouthd_argv;
 
461
  const char **plymouthd_argv;
464
462
  pid_t pid = get_pid();
465
463
  if(pid == 0){
466
464
    error_plus(0, 0, "plymouthd pid not found");