/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: 2010-09-27 17:39:03 UTC
  • Revision ID: teddy@fukt.bsnet.se-20100927173903-9s5e6a3hl5iswmp7
* mandos: Fixed "--help" output.
* mandos.xml (SYNOPSIS, OPTIONS): Document new option "--debuglevel".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  -*- coding: utf-8 -*- */
2
2
/*
3
 
 * Plymouth - Read a password from Plymouth and output it
 
3
 * Usplash - Read a password from usplash and output it
4
4
 * 
5
5
 * Copyright © 2010 Teddy Hogeborn
6
6
 * Copyright © 2010 Björn Påhlsson
76
76
  char *prompt;
77
77
  const char *const cryptsource = getenv("cryptsource");
78
78
  const char *const crypttarget = getenv("crypttarget");
79
 
  const char prompt_start[] = "Unlocking the disk";
80
 
  const char prompt_end[] = "Enter passphrase";
 
79
  const char prompt_start[] = "Enter passphrase to unlock the disk";
81
80
  
82
81
  if(cryptsource == NULL){
83
82
    if(crypttarget == NULL){
84
 
      ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
 
83
      ret = asprintf(&prompt, "%s: ", prompt_start);
85
84
    } else {
86
 
      ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
87
 
                     crypttarget, prompt_end);
 
85
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
86
                     crypttarget);
88
87
    }
89
88
  } else {
90
89
    if(crypttarget == NULL){
91
 
      ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
92
 
                     prompt_end);
 
90
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
93
91
    } else {
94
 
      ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
95
 
                     cryptsource, crypttarget, prompt_end);
 
92
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
93
                     cryptsource, crypttarget);
96
94
    }
97
95
  }
98
96
  if(ret == -1){
144
142
        _exit(EX_OSERR);
145
143
      }
146
144
    }
147
 
    
 
145
 
148
146
    char **new_argv = NULL;
149
 
    char **tmp;
 
147
    char *tmp;
150
148
    int i = 0;
151
 
    for (; argv[i]!=NULL; i++){
 
149
    for (; argv[i]!=(char *)NULL; i++){
152
150
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
153
151
      if (tmp == NULL){
154
152
        error(0, errno, "realloc");
155
153
        free(new_argv);
156
154
        _exit(EX_OSERR);
157
155
      }
158
 
      new_argv = tmp;
 
156
      new_argv = (char **)tmp;
159
157
      new_argv[i] = strdup(argv[i]);
160
158
    }
161
 
    new_argv[i] = NULL;
 
159
    new_argv[i] = (char *) NULL;
162
160
    
163
161
    execv(path, (char *const *)new_argv);
164
162
    error(0, errno, "execv");
198
196
      return 0;
199
197
    }
200
198
  }
201
 
  char exe_target[sizeof(plymouthd_path)];
 
199
  char exe_target[sizeof(plymouth_path)];
202
200
  char *exe_link;
203
201
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
204
202
  if(ret == -1){
225
223
  
226
224
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
227
225
  free(exe_link);
228
 
  if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
229
 
      (memcmp(plymouthd_path, exe_target,
230
 
              sizeof(plymouthd_path)-1) != 0)){
 
226
  if((sret != (ssize_t)sizeof(plymouth_path)-1) or
 
227
      (memcmp(plymouth_path, exe_target,
 
228
              sizeof(plymouth_path)-1) != 0)){
231
229
    return 0;
232
230
  }
233
231
  return 1;
247
245
  if(maxvalue == 0){
248
246
    struct dirent **direntries;
249
247
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
250
 
    if (ret == -1){
251
 
      error(0, errno, "scandir");
252
 
    }
253
 
    if (ret > 0){
254
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
255
 
      if (ret < 0){
256
 
        error(0, errno, "sscanf");
257
 
      }
258
 
    }
 
248
    sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
259
249
  }
260
250
  pid_t pid;
261
251
  pid = (pid_t)maxvalue;