/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-2016 Teddy Hogeborn
6
 
 * Copyright © 2010-2016 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;
174
173
      }
175
174
    }
176
175
    
177
 
    char **new_argv = malloc(sizeof(const char *));
178
 
    if(new_argv == NULL){
179
 
      error_plus(0, errno, "malloc");
180
 
      _exit(EX_OSERR);
181
 
    }
 
176
    char **new_argv = NULL;
182
177
    char **tmp;
183
178
    int i = 0;
184
179
    for (; argv[i]!=NULL; i++){
185
 
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 2));
186
 
      if(tmp == NULL){
 
180
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
 
181
      if (tmp == NULL){
187
182
        error_plus(0, errno, "realloc");
188
183
        free(new_argv);
189
184
        _exit(EX_OSERR);
218
213
  return false;
219
214
}
220
215
 
221
 
__attribute__((nonnull))
222
216
int is_plymouth(const struct dirent *proc_entry){
223
217
  int ret;
224
218
  {
225
 
    uintmax_t proc_id;
 
219
    uintmax_t maxvalue;
226
220
    char *tmp;
227
221
    errno = 0;
228
 
    proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
222
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
229
223
 
230
224
    if(errno != 0 or *tmp != '\0'
231
 
       or proc_id != (uintmax_t)((pid_t)proc_id)){
 
225
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
232
226
      return 0;
233
227
    }
234
228
  }
269
263
 
270
264
pid_t get_pid(void){
271
265
  int ret;
272
 
  uintmax_t proc_id = 0;
 
266
  uintmax_t maxvalue = 0;
273
267
  FILE *pidfile = fopen(plymouth_pid, "r");
274
268
  /* Try the new pid file location */
275
269
  if(pidfile != NULL){
276
 
    ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
270
    ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
277
271
    if(ret != 1){
278
 
      proc_id = 0;
 
272
      maxvalue = 0;
279
273
    }
280
274
    fclose(pidfile);
281
275
  }
282
276
  /* Try the old pid file location */
283
 
  if(proc_id == 0){
 
277
  if(maxvalue == 0){
284
278
    pidfile = fopen(plymouth_pid, "r");
285
279
    if(pidfile != NULL){
286
 
      ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
280
      ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
287
281
      if(ret != 1){
288
 
        proc_id = 0;
 
282
        maxvalue = 0;
289
283
      }
290
284
      fclose(pidfile);
291
285
    }
292
286
  }
293
287
  /* Look for a plymouth process */
294
 
  if(proc_id == 0){
 
288
  if(maxvalue == 0){
295
289
    struct dirent **direntries = NULL;
296
290
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
297
 
    if(ret == -1){
 
291
    if (ret == -1){
298
292
      error_plus(0, errno, "scandir");
299
293
    }
300
 
    if(ret > 0){
301
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id);
302
 
      if(ret < 0){
 
294
    if (ret > 0){
 
295
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
296
      if (ret < 0){
303
297
        error_plus(0, errno, "sscanf");
304
298
      }
305
299
    }
308
302
    free(direntries);
309
303
  }
310
304
  pid_t pid;
311
 
  pid = (pid_t)proc_id;
312
 
  if((uintmax_t)pid == proc_id){
 
305
  pid = (pid_t)maxvalue;
 
306
  if((uintmax_t)pid == maxvalue){
313
307
    return pid;
314
308
  }
315
309
  
316
310
  return 0;
317
311
}
318
312
 
319
 
const char * const * getargv(pid_t pid){
 
313
const char **getargv(pid_t pid){
320
314
  int cl_fd;
321
315
  char *cmdline_filename;
322
316
  ssize_t sret;
383
377
    return NULL;
384
378
  }
385
379
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
386
 
  return (const char * const *)argv;
 
380
  return (const char **)argv;
387
381
}
388
382
 
389
383
int main(__attribute__((unused))int argc,
464
458
  }
465
459
  kill_and_wait(plymouth_command_pid);
466
460
  
467
 
  const char * const *plymouthd_argv;
 
461
  const char **plymouthd_argv;
468
462
  pid_t pid = get_pid();
469
463
  if(pid == 0){
470
464
    error_plus(0, 0, "plymouthd pid not found");