/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-2012 Teddy Hogeborn
6
 
 * Copyright © 2010-2012 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
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
158
                   const char **argv, bool interruptable,
160
159
                   bool daemonize){
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
291
    if (ret == -1){
294
292
      error_plus(0, errno, "scandir");
295
293
    }
296
294
    if (ret > 0){
297
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id);
 
295
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
298
296
      if (ret < 0){
299
297
        error_plus(0, errno, "sscanf");
300
298
      }
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