/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/usplash.c

  • Committer: Teddy Hogeborn
  • Date: 2009-01-18 06:41:57 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090118064157-8o4oia1y0t8di0xj
* debian/mandos-client.lintian-overrides: Remove override for
                                          unbreakable line in
                                          plugin-runner manual page.
* plugin-runner.xml (EXAMPLES): Make long command line more breakable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * along with this program.  If not, see
20
20
 * <http://www.gnu.org/licenses/>.
21
21
 * 
22
 
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
22
 * Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
 
23
 * <https://www.fukt.bsnet.se/~teddy/>.
23
24
 */
24
25
 
25
 
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
 
26
#define _GNU_SOURCE             /* asprintf() */
26
27
#include <signal.h>             /* sig_atomic_t, struct sigaction,
27
28
                                   sigemptyset(), sigaddset(), SIGINT,
28
29
                                   SIGHUP, SIGTERM, sigaction(),
31
32
#include <fcntl.h>              /* open(), O_WRONLY, O_RDONLY */
32
33
#include <iso646.h>             /* and, or, not*/
33
34
#include <errno.h>              /* errno, EINTR */
34
 
#include <error.h>
35
35
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR, struct
36
36
                                   dirent */
37
37
#include <stddef.h>             /* NULL */
38
38
#include <string.h>             /* strlen(), memcmp() */
39
 
#include <stdio.h>              /* asprintf()*/
 
39
#include <stdio.h>              /* asprintf(), perror(), sscanf() */
40
40
#include <unistd.h>             /* close(), write(), readlink(),
41
41
                                   read(), STDOUT_FILENO, sleep(),
42
42
                                   fork(), setuid(), geteuid(),
43
43
                                   setsid(), chdir(), dup2(),
44
44
                                   STDERR_FILENO, execv() */
45
45
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
46
 
                                   EXIT_SUCCESS, malloc(), _exit(),
47
 
                                   getenv() */
 
46
                                   EXIT_SUCCESS, malloc(), _exit() */
 
47
#include <stdlib.h>             /* getenv() */
48
48
#include <dirent.h>             /* opendir(), readdir(), closedir() */
49
 
#include <inttypes.h>           /* intmax_t, strtoimax() */
 
49
#include <inttypes.h>           /* intmax_t, SCNdMAX */
50
50
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
51
 
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
52
51
 
53
52
sig_atomic_t interrupted_by_signal = 0;
54
 
int signal_received;
55
 
const char usplash_name[] = "/sbin/usplash";
56
53
 
57
 
static void termination_handler(int signum){
58
 
  if(interrupted_by_signal){
59
 
    return;
60
 
  }
 
54
static void termination_handler(__attribute__((unused))int signum){
61
55
  interrupted_by_signal = 1;
62
 
  signal_received = signum;
63
56
}
64
57
 
65
 
static bool usplash_write(int *fifo_fd_r,
66
 
                          const char *cmd, const char *arg){
 
58
static bool usplash_write(const char *cmd, const char *arg){
67
59
  /* 
68
 
   * usplash_write(&fd, "TIMEOUT", "15") will write "TIMEOUT 15\0"
69
 
   * usplash_write(&fd, "PULSATE", NULL) will write "PULSATE\0"
 
60
   * usplash_write("TIMEOUT", "15") will write "TIMEOUT 15\0"
 
61
   * usplash_write("PULSATE", NULL) will write "PULSATE\0"
70
62
   * SEE ALSO
71
63
   *         usplash_write(8)
72
64
   */
73
65
  int ret;
74
 
  if(*fifo_fd_r == -1){
75
 
    ret = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
76
 
    if(ret == -1){
 
66
  int fifo_fd;
 
67
  do{
 
68
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
 
69
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
77
70
      return false;
78
71
    }
79
 
    *fifo_fd_r = ret;
80
 
  }
 
72
  }while(fifo_fd == -1);
81
73
  
82
74
  const char *cmd_line;
83
75
  size_t cmd_line_len;
84
76
  char *cmd_line_alloc = NULL;
85
77
  if(arg == NULL){
86
78
    cmd_line = cmd;
87
 
    cmd_line_len = strlen(cmd) + 1;
88
 
  } else {
89
 
    do {
 
79
    cmd_line_len = strlen(cmd);
 
80
  }else{
 
81
    do{
90
82
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
91
 
      if(ret == -1){
 
83
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
92
84
        int e = errno;
93
 
        TEMP_FAILURE_RETRY(close(*fifo_fd_r));
 
85
        close(fifo_fd);
94
86
        errno = e;
95
87
        return false;
96
88
      }
97
 
    } while(ret == -1);
 
89
    }while(ret == -1);
98
90
    cmd_line = cmd_line_alloc;
99
91
    cmd_line_len = (size_t)ret + 1;
100
92
  }
101
93
  
102
94
  size_t written = 0;
103
95
  ssize_t sret = 0;
104
 
  while(written < cmd_line_len){
105
 
    sret = write(*fifo_fd_r, cmd_line + written,
 
96
  while(not interrupted_by_signal and written < cmd_line_len){
 
97
    sret = write(fifo_fd, cmd_line + written,
106
98
                 cmd_line_len - written);
107
99
    if(sret == -1){
108
 
      int e = errno;
109
 
      TEMP_FAILURE_RETRY(close(*fifo_fd_r));
110
 
      free(cmd_line_alloc);
111
 
      errno = e;
112
 
      return false;
 
100
      if(errno != EINTR or interrupted_by_signal){
 
101
        int e = errno;
 
102
        close(fifo_fd);
 
103
        free(cmd_line_alloc);
 
104
        errno = e;
 
105
        return false;
 
106
      } else {
 
107
        continue;
 
108
      }
113
109
    }
114
110
    written += (size_t)sret;
115
111
  }
116
112
  free(cmd_line_alloc);
117
 
  
 
113
  do{
 
114
    ret = close(fifo_fd);
 
115
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
116
      return false;
 
117
    }
 
118
  }while(ret == -1);
 
119
  if(interrupted_by_signal){
 
120
    return false;
 
121
  }
118
122
  return true;
119
123
}
120
124
 
121
 
/* Create prompt string */
122
 
char *makeprompt(void){
123
 
  int ret = 0;
124
 
  char *prompt;
125
 
  const char *const cryptsource = getenv("cryptsource");
126
 
  const char *const crypttarget = getenv("crypttarget");
127
 
  const char prompt_start[] = "Enter passphrase to unlock the disk";
128
 
  
129
 
  if(cryptsource == NULL){
130
 
    if(crypttarget == NULL){
131
 
      ret = asprintf(&prompt, "%s: ", prompt_start);
132
 
    } else {
133
 
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
134
 
                     crypttarget);
135
 
    }
136
 
  } else {
137
 
    if(crypttarget == NULL){
138
 
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
139
 
    } else {
140
 
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
141
 
                     cryptsource, crypttarget);
142
 
    }
143
 
  }
144
 
  if(ret == -1){
145
 
    return NULL;
146
 
  }
147
 
  return prompt;
148
 
}
149
 
 
150
 
pid_t find_usplash(char **cmdline_r, size_t *cmdline_len_r){
151
 
  int ret = 0;
152
 
  ssize_t sret = 0;
153
 
  char *cmdline = NULL;
154
 
  size_t cmdline_len = 0;
155
 
  DIR *proc_dir = opendir("/proc");
156
 
  if(proc_dir == NULL){
157
 
    error(0, errno, "opendir");
158
 
    return -1;
159
 
  }
160
 
  errno = 0;
161
 
  for(struct dirent *proc_ent = readdir(proc_dir);
162
 
      proc_ent != NULL;
163
 
      proc_ent = readdir(proc_dir)){
164
 
    pid_t pid;
165
 
    {
166
 
      intmax_t tmpmax;
167
 
      char *tmp;
168
 
      tmpmax = strtoimax(proc_ent->d_name, &tmp, 10);
169
 
      if(errno != 0 or tmp == proc_ent->d_name or *tmp != '\0'
170
 
         or tmpmax != (pid_t)tmpmax){
171
 
        /* Not a process */
172
 
        errno = 0;
173
 
        continue;
174
 
      }
175
 
      pid = (pid_t)tmpmax;
176
 
    }
177
 
    /* Find the executable name by doing readlink() on the
178
 
       /proc/<pid>/exe link */
179
 
    char exe_target[sizeof(usplash_name)];
180
 
    {
181
 
      /* create file name string */
182
 
      char *exe_link;
183
 
      ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
184
 
      if(ret == -1){
185
 
        error(0, errno, "asprintf");
186
 
        goto fail_find_usplash;
187
 
      }
188
 
      
189
 
      /* Check that it refers to a symlink owned by root:root */
190
 
      struct stat exe_stat;
191
 
      ret = lstat(exe_link, &exe_stat);
192
 
      if(ret == -1){
193
 
        if(errno == ENOENT){
194
 
          free(exe_link);
195
 
          continue;
196
 
        }
197
 
        error(0, errno, "lstat");
198
 
        free(exe_link);
199
 
        goto fail_find_usplash;
200
 
      }
201
 
      if(not S_ISLNK(exe_stat.st_mode)
202
 
         or exe_stat.st_uid != 0
203
 
         or exe_stat.st_gid != 0){
204
 
        free(exe_link);
205
 
        continue;
206
 
      }
207
 
        
208
 
      sret = readlink(exe_link, exe_target, sizeof(exe_target));
209
 
      free(exe_link);
210
 
    }
211
 
    /* Compare executable name */
212
 
    if((sret != ((ssize_t)sizeof(exe_target)-1))
213
 
       or (memcmp(usplash_name, exe_target,
214
 
                  sizeof(exe_target)-1) != 0)){
215
 
      /* Not it */
216
 
      continue;
217
 
    }
218
 
    /* Found usplash */
219
 
    /* Read and save the command line of usplash in "cmdline" */
220
 
    {
221
 
      /* Open /proc/<pid>/cmdline  */
222
 
      int cl_fd;
223
 
      {
224
 
        char *cmdline_filename;
225
 
        ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
226
 
                       proc_ent->d_name);
227
 
        if(ret == -1){
228
 
          error(0, errno, "asprintf");
229
 
          goto fail_find_usplash;
230
 
        }
231
 
        cl_fd = open(cmdline_filename, O_RDONLY);
232
 
        free(cmdline_filename);
233
 
        if(cl_fd == -1){
234
 
          error(0, errno, "open");
235
 
          goto fail_find_usplash;
236
 
        }
237
 
      }
238
 
      size_t cmdline_allocated = 0;
239
 
      char *tmp;
240
 
      const size_t blocksize = 1024;
241
 
      do {
242
 
        /* Allocate more space? */
243
 
        if(cmdline_len + blocksize > cmdline_allocated){
244
 
          tmp = realloc(cmdline, cmdline_allocated + blocksize);
245
 
          if(tmp == NULL){
246
 
            error(0, errno, "realloc");
247
 
            close(cl_fd);
248
 
            goto fail_find_usplash;
249
 
          }
250
 
          cmdline = tmp;
251
 
          cmdline_allocated += blocksize;
252
 
        }
253
 
        /* Read data */
254
 
        sret = read(cl_fd, cmdline + cmdline_len,
255
 
                    cmdline_allocated - cmdline_len);
256
 
        if(sret == -1){
257
 
          error(0, errno, "read");
258
 
          close(cl_fd);
259
 
          goto fail_find_usplash;
260
 
        }
261
 
        cmdline_len += (size_t)sret;
262
 
      } while(sret != 0);
263
 
      ret = close(cl_fd);
264
 
      if(ret == -1){
265
 
        error(0, errno, "close");
266
 
        goto fail_find_usplash;
267
 
      }
268
 
    }
269
 
    /* Close directory */
270
 
    ret = closedir(proc_dir);
271
 
    if(ret == -1){
272
 
      error(0, errno, "closedir");
273
 
      goto fail_find_usplash;
274
 
    }
275
 
    /* Success */
276
 
    *cmdline_r = cmdline;
277
 
    *cmdline_len_r = cmdline_len;
278
 
    return pid;
279
 
  }
280
 
  
281
 
 fail_find_usplash:
282
 
  
283
 
  free(cmdline);
284
 
  if(proc_dir != NULL){
285
 
    int e = errno;
286
 
    closedir(proc_dir);
287
 
    errno = e;
288
 
  }
289
 
  return 0;
290
 
}
291
 
 
292
125
int main(__attribute__((unused))int argc,
293
126
         __attribute__((unused))char **argv){
294
127
  int ret = 0;
295
128
  ssize_t sret;
296
 
  int fifo_fd = -1;
297
 
  int outfifo_fd = -1;
298
 
  char *buf = NULL;
299
 
  size_t buf_len = 0;
300
 
  pid_t usplash_pid = -1;
301
 
  bool usplash_accessed = false;
302
 
  int status = EXIT_FAILURE;    /* Default failure exit status */
 
129
  bool an_error_occured = false;
303
130
  
304
 
  char *prompt = makeprompt();
305
 
  if(prompt == NULL){
306
 
    status = EX_OSERR;
307
 
    goto failure;
 
131
  /* Create prompt string */
 
132
  char *prompt = NULL;
 
133
  {
 
134
    const char *const cryptsource = getenv("cryptsource");
 
135
    const char *const crypttarget = getenv("crypttarget");
 
136
    const char prompt_start[] = "Enter passphrase to unlock the disk";
 
137
    
 
138
    if(cryptsource == NULL){
 
139
      if(crypttarget == NULL){
 
140
        ret = asprintf(&prompt, "%s: ", prompt_start);
 
141
      } else {
 
142
        ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
143
                       crypttarget);
 
144
      }
 
145
    } else {
 
146
      if(crypttarget == NULL){
 
147
        ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
148
      } else {
 
149
        ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
150
                       cryptsource, crypttarget);
 
151
      }
 
152
    }
 
153
    if(ret == -1){
 
154
      return EXIT_FAILURE;
 
155
    }
308
156
  }
309
157
  
310
158
  /* Find usplash process */
 
159
  pid_t usplash_pid = 0;
311
160
  char *cmdline = NULL;
312
161
  size_t cmdline_len = 0;
313
 
  usplash_pid = find_usplash(&cmdline, &cmdline_len);
 
162
  const char usplash_name[] = "/sbin/usplash";
 
163
  {
 
164
    DIR *proc_dir = opendir("/proc");
 
165
    if(proc_dir == NULL){
 
166
      free(prompt);
 
167
      perror("opendir");
 
168
      return EXIT_FAILURE;
 
169
    }
 
170
    for(struct dirent *proc_ent = readdir(proc_dir);
 
171
        proc_ent != NULL;
 
172
        proc_ent = readdir(proc_dir)){
 
173
      pid_t pid;
 
174
      {
 
175
        intmax_t tmpmax;
 
176
        int numchars;
 
177
        ret = sscanf(proc_ent->d_name, "%" SCNdMAX "%n", &tmpmax,
 
178
                     &numchars);
 
179
        if(ret < 1 or tmpmax != (pid_t)tmpmax
 
180
           or proc_ent->d_name[numchars] != '\0'){
 
181
          /* Not a process */
 
182
          continue;
 
183
        }
 
184
        pid = (pid_t)tmpmax;
 
185
      }
 
186
      /* Find the executable name by doing readlink() on the
 
187
         /proc/<pid>/exe link */
 
188
      char exe_target[sizeof(usplash_name)];
 
189
      {
 
190
        /* create file name string */
 
191
        char *exe_link;
 
192
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
 
193
        if(ret == -1){
 
194
          perror("asprintf");
 
195
          free(prompt);
 
196
          closedir(proc_dir);
 
197
          return EXIT_FAILURE;
 
198
        }
 
199
        
 
200
        /* Check that it refers to a symlink owned by root:root */
 
201
        struct stat exe_stat;
 
202
        ret = lstat(exe_link, &exe_stat);
 
203
        if(ret == -1){
 
204
          if(errno == ENOENT){
 
205
            free(exe_link);
 
206
            continue;
 
207
          }
 
208
          perror("lstat");
 
209
          free(exe_link);
 
210
          free(prompt);
 
211
          closedir(proc_dir);
 
212
          return EXIT_FAILURE;
 
213
        }
 
214
        if(not S_ISLNK(exe_stat.st_mode)
 
215
           or exe_stat.st_uid != 0
 
216
           or exe_stat.st_gid != 0){
 
217
          free(exe_link);
 
218
          continue;
 
219
        }
 
220
        
 
221
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
222
        free(exe_link);
 
223
      }
 
224
      if((sret == ((ssize_t)sizeof(exe_target)-1))
 
225
         and (memcmp(usplash_name, exe_target,
 
226
                     sizeof(exe_target)-1) == 0)){
 
227
        usplash_pid = pid;
 
228
        /* Read and save the command line of usplash in "cmdline" */
 
229
        {
 
230
          /* Open /proc/<pid>/cmdline  */
 
231
          int cl_fd;
 
232
          {
 
233
            char *cmdline_filename;
 
234
            ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
235
                           proc_ent->d_name);
 
236
            if(ret == -1){
 
237
              perror("asprintf");
 
238
              free(prompt);
 
239
              closedir(proc_dir);
 
240
              return EXIT_FAILURE;
 
241
            }
 
242
            cl_fd = open(cmdline_filename, O_RDONLY);
 
243
            if(cl_fd == -1){
 
244
              perror("open");
 
245
              free(cmdline_filename);
 
246
              free(prompt);
 
247
              closedir(proc_dir);
 
248
              return EXIT_FAILURE;
 
249
            }
 
250
            free(cmdline_filename);
 
251
          }
 
252
          size_t cmdline_allocated = 0;
 
253
          char *tmp;
 
254
          const size_t blocksize = 1024;
 
255
          do{
 
256
            if(cmdline_len + blocksize > cmdline_allocated){
 
257
              tmp = realloc(cmdline, cmdline_allocated + blocksize);
 
258
              if(tmp == NULL){
 
259
                perror("realloc");
 
260
                free(cmdline);
 
261
                free(prompt);
 
262
                closedir(proc_dir);
 
263
                return EXIT_FAILURE;
 
264
              }
 
265
              cmdline = tmp;
 
266
              cmdline_allocated += blocksize;
 
267
            }
 
268
            sret = read(cl_fd, cmdline + cmdline_len,
 
269
                        cmdline_allocated - cmdline_len);
 
270
            if(sret == -1){
 
271
              perror("read");
 
272
              free(cmdline);
 
273
              free(prompt);
 
274
              closedir(proc_dir);
 
275
              return EXIT_FAILURE;
 
276
            }
 
277
            cmdline_len += (size_t)sret;
 
278
          } while(sret != 0);
 
279
          close(cl_fd);
 
280
        }
 
281
        break;
 
282
      }
 
283
    }
 
284
    closedir(proc_dir);
 
285
  }
314
286
  if(usplash_pid == 0){
315
 
    status = EX_UNAVAILABLE;
316
 
    goto failure;
 
287
    free(prompt);
 
288
    return EXIT_FAILURE;
317
289
  }
318
290
  
319
291
  /* Set up the signal handler */
322
294
      new_action = { .sa_handler = termination_handler,
323
295
                     .sa_flags = 0 };
324
296
    sigemptyset(&new_action.sa_mask);
325
 
    ret = sigaddset(&new_action.sa_mask, SIGINT);
326
 
    if(ret == -1){
327
 
      error(0, errno, "sigaddset");
328
 
      status = EX_OSERR;
329
 
      goto failure;
330
 
    }
331
 
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
332
 
    if(ret == -1){
333
 
      error(0, errno, "sigaddset");
334
 
      status = EX_OSERR;
335
 
      goto failure;
336
 
    }
337
 
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
338
 
    if(ret == -1){
339
 
      error(0, errno, "sigaddset");
340
 
      status = EX_OSERR;
341
 
      goto failure;
342
 
    }
 
297
    sigaddset(&new_action.sa_mask, SIGINT);
 
298
    sigaddset(&new_action.sa_mask, SIGHUP);
 
299
    sigaddset(&new_action.sa_mask, SIGTERM);
343
300
    ret = sigaction(SIGINT, NULL, &old_action);
344
301
    if(ret == -1){
345
 
      if(errno != EINTR){
346
 
        error(0, errno, "sigaction");
347
 
        status = EX_OSERR;
348
 
      }
349
 
      goto failure;
 
302
      perror("sigaction");
 
303
      free(prompt);
 
304
      return EXIT_FAILURE;
350
305
    }
351
306
    if(old_action.sa_handler != SIG_IGN){
352
307
      ret = sigaction(SIGINT, &new_action, NULL);
353
308
      if(ret == -1){
354
 
        if(errno != EINTR){
355
 
          error(0, errno, "sigaction");
356
 
          status = EX_OSERR;
357
 
        }
358
 
        goto failure;
 
309
        perror("sigaction");
 
310
        free(prompt);
 
311
        return EXIT_FAILURE;
359
312
      }
360
313
    }
361
314
    ret = sigaction(SIGHUP, NULL, &old_action);
362
315
    if(ret == -1){
363
 
      if(errno != EINTR){
364
 
        error(0, errno, "sigaction");
365
 
        status = EX_OSERR;
366
 
      }
367
 
      goto failure;
 
316
      perror("sigaction");
 
317
      free(prompt);
 
318
      return EXIT_FAILURE;
368
319
    }
369
320
    if(old_action.sa_handler != SIG_IGN){
370
321
      ret = sigaction(SIGHUP, &new_action, NULL);
371
322
      if(ret == -1){
372
 
        if(errno != EINTR){
373
 
          error(0, errno, "sigaction");
374
 
          status = EX_OSERR;
375
 
        }
376
 
        goto failure;
 
323
        perror("sigaction");
 
324
        free(prompt);
 
325
        return EXIT_FAILURE;
377
326
      }
378
327
    }
379
328
    ret = sigaction(SIGTERM, NULL, &old_action);
380
329
    if(ret == -1){
381
 
      if(errno != EINTR){
382
 
        error(0, errno, "sigaction");
383
 
        status = EX_OSERR;
384
 
      }
385
 
      goto failure;
 
330
      perror("sigaction");
 
331
      free(prompt);
 
332
      return EXIT_FAILURE;
386
333
    }
387
334
    if(old_action.sa_handler != SIG_IGN){
388
335
      ret = sigaction(SIGTERM, &new_action, NULL);
389
336
      if(ret == -1){
390
 
        if(errno != EINTR){
391
 
          error(0, errno, "sigaction");
392
 
          status = EX_OSERR;
393
 
        }
394
 
        goto failure;
 
337
        perror("sigaction");
 
338
        free(prompt);
 
339
        return EXIT_FAILURE;
395
340
      }
396
341
    }
397
342
  }
398
343
  
399
 
  usplash_accessed = true;
400
344
  /* Write command to FIFO */
401
 
  if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
402
 
    if(errno != EINTR){
403
 
      error(0, errno, "usplash_write");
404
 
      status = EX_OSERR;
405
 
    }
406
 
    goto failure;
407
 
  }
408
 
  
409
 
  if(interrupted_by_signal){
410
 
    goto failure;
411
 
  }
412
 
  
413
 
  if(not usplash_write(&fifo_fd, "INPUTQUIET", prompt)){
414
 
    if(errno != EINTR){
415
 
      error(0, errno, "usplash_write");
416
 
      status = EX_OSERR;
417
 
    }
418
 
    goto failure;
419
 
  }
420
 
  
421
 
  if(interrupted_by_signal){
422
 
    goto failure;
423
 
  }
424
 
  
425
 
  free(prompt);
426
 
  prompt = NULL;
427
 
  
428
 
  /* Read reply from usplash */
429
 
  /* Open FIFO */
430
 
  outfifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
431
 
  if(outfifo_fd == -1){
432
 
    if(errno != EINTR){
433
 
      error(0, errno, "open");
434
 
      status = EX_OSERR;
435
 
    }
436
 
    goto failure;
437
 
  }
438
 
  
439
 
  if(interrupted_by_signal){
440
 
    goto failure;
441
 
  }
442
 
  
443
 
  /* Read from FIFO */
444
 
  size_t buf_allocated = 0;
445
 
  const size_t blocksize = 1024;
446
 
  do {
447
 
    /* Allocate more space */
448
 
    if(buf_len + blocksize > buf_allocated){
449
 
      char *tmp = realloc(buf, buf_allocated + blocksize);
450
 
      if(tmp == NULL){
451
 
        if(errno != EINTR){
452
 
          error(0, errno, "realloc");
453
 
          status = EX_OSERR;
454
 
        }
455
 
        goto failure;
456
 
      }
457
 
      buf = tmp;
458
 
      buf_allocated += blocksize;
459
 
    }
460
 
    sret = read(outfifo_fd, buf + buf_len,
461
 
                buf_allocated - buf_len);
462
 
    if(sret == -1){
463
 
      if(errno != EINTR){
464
 
        error(0, errno, "read");
465
 
        status = EX_OSERR;
466
 
      }
467
 
      TEMP_FAILURE_RETRY(close(outfifo_fd));
468
 
      goto failure;
469
 
    }
470
 
    if(interrupted_by_signal){
471
 
      break;
472
 
    }
473
 
    
474
 
    buf_len += (size_t)sret;
475
 
  } while(sret != 0);
476
 
  ret = close(outfifo_fd);
477
 
  if(ret == -1){
478
 
    if(errno != EINTR){
479
 
      error(0, errno, "close");
480
 
      status = EX_OSERR;
481
 
    }
482
 
    goto failure;
483
 
  }
484
 
  outfifo_fd = -1;
485
 
  
486
 
  if(interrupted_by_signal){
487
 
    goto failure;
488
 
  }
489
 
  
490
 
  if(not usplash_write(&fifo_fd, "TIMEOUT", "15")){
491
 
    if(errno != EINTR){
492
 
      error(0, errno, "usplash_write");
493
 
      status = EX_OSERR;
494
 
    }
495
 
    goto failure;
496
 
  }
497
 
  
498
 
  if(interrupted_by_signal){
499
 
    goto failure;
500
 
  }
501
 
  
502
 
  ret = close(fifo_fd);
503
 
  if(ret == -1){
504
 
    if(errno != EINTR){
505
 
      error(0, errno, "close");
506
 
      status = EX_OSERR;
507
 
    }
508
 
    goto failure;
509
 
  }
510
 
  fifo_fd = -1;
511
 
  
512
 
  /* Print password to stdout */
513
 
  size_t written = 0;
514
 
  while(written < buf_len){
515
 
    do {
516
 
      sret = write(STDOUT_FILENO, buf + written, buf_len - written);
517
 
      if(sret == -1){
518
 
        if(errno != EINTR){
519
 
          error(0, errno, "write");
520
 
          status = EX_OSERR;
521
 
        }
522
 
        goto failure;
523
 
      }
524
 
    } while(sret == -1);
525
 
    
526
 
    if(interrupted_by_signal){
527
 
      goto failure;
528
 
    }
529
 
    written += (size_t)sret;
530
 
  }
531
 
  free(buf);
532
 
  buf = NULL;
533
 
  
534
 
  if(interrupted_by_signal){
535
 
    goto failure;
536
 
  }
537
 
  
538
 
  free(cmdline);
539
 
  return EXIT_SUCCESS;
540
 
  
541
 
 failure:
542
 
  
543
 
  free(buf);
544
 
  
545
 
  free(prompt);
546
 
  
547
 
  /* If usplash was never accessed, we can stop now */
548
 
  if(not usplash_accessed){
549
 
    return status;
550
 
  }
551
 
  
552
 
  /* Close FIFO */
553
 
  if(fifo_fd != -1){
554
 
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
555
 
    if(ret == -1 and errno != EINTR){
556
 
      error(0, errno, "close");
557
 
    }
558
 
    fifo_fd = -1;
559
 
  }
560
 
  
561
 
  /* Close output FIFO */
562
 
  if(outfifo_fd != -1){
563
 
    ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
564
 
    if(ret == -1){
565
 
      error(0, errno, "close");
566
 
    }
567
 
  }
 
345
  if(not interrupted_by_signal){
 
346
    if(not usplash_write("TIMEOUT", "0")
 
347
       and (errno != EINTR)){
 
348
      perror("usplash_write");
 
349
      an_error_occured = true;
 
350
    }
 
351
  }
 
352
  if(not interrupted_by_signal and not an_error_occured){
 
353
    if(not usplash_write("INPUTQUIET", prompt)
 
354
       and (errno != EINTR)){
 
355
      perror("usplash_write");
 
356
      an_error_occured = true;
 
357
    }
 
358
  }
 
359
  free(prompt);
 
360
  
 
361
  /* This is not really a loop; while() is used to be able to "break"
 
362
     out of it; those breaks are marked "Big" */
 
363
  while(not interrupted_by_signal and not an_error_occured){
 
364
    char *buf = NULL;
 
365
    size_t buf_len = 0;
 
366
    
 
367
    /* Open FIFO */
 
368
    int fifo_fd;
 
369
    do{
 
370
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
 
371
      if(fifo_fd == -1){
 
372
        if(errno != EINTR){
 
373
          perror("open");
 
374
          an_error_occured = true;
 
375
          break;
 
376
        }
 
377
        if(interrupted_by_signal){
 
378
          break;
 
379
        }
 
380
      }
 
381
    }while(fifo_fd == -1);
 
382
    if(interrupted_by_signal or an_error_occured){
 
383
      break;                    /* Big */
 
384
    }
 
385
    
 
386
    /* Read from FIFO */
 
387
    size_t buf_allocated = 0;
 
388
    const size_t blocksize = 1024;
 
389
    do{
 
390
      if(buf_len + blocksize > buf_allocated){
 
391
        char *tmp = realloc(buf, buf_allocated + blocksize);
 
392
        if(tmp == NULL){
 
393
          perror("realloc");
 
394
          an_error_occured = true;
 
395
          break;
 
396
        }
 
397
        buf = tmp;
 
398
        buf_allocated += blocksize;
 
399
      }
 
400
      do{
 
401
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
 
402
        if(sret == -1){
 
403
          if(errno != EINTR){
 
404
            perror("read");
 
405
            an_error_occured = true;
 
406
            break;
 
407
          }
 
408
          if(interrupted_by_signal){
 
409
            break;
 
410
          }
 
411
        }
 
412
      }while(sret == -1);
 
413
      if(interrupted_by_signal or an_error_occured){
 
414
        break;
 
415
      }
 
416
      
 
417
      buf_len += (size_t)sret;
 
418
    }while(sret != 0);
 
419
    close(fifo_fd);
 
420
    if(interrupted_by_signal or an_error_occured){
 
421
      break;                    /* Big */
 
422
    }
 
423
    
 
424
    if(not usplash_write("TIMEOUT", "15")
 
425
       and (errno != EINTR)){
 
426
        perror("usplash_write");
 
427
        an_error_occured = true;
 
428
    }
 
429
    if(interrupted_by_signal or an_error_occured){
 
430
      break;                    /* Big */
 
431
    }
 
432
    
 
433
    /* Print password to stdout */
 
434
    size_t written = 0;
 
435
    while(written < buf_len){
 
436
      do{
 
437
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
 
438
        if(sret == -1){
 
439
          if(errno != EINTR){
 
440
            perror("write");
 
441
            an_error_occured = true;
 
442
            break;
 
443
          }
 
444
          if(interrupted_by_signal){
 
445
            break;
 
446
          }
 
447
        }
 
448
      }while(sret == -1);
 
449
      if(interrupted_by_signal or an_error_occured){
 
450
        break;
 
451
      }
 
452
      written += (size_t)sret;
 
453
    }
 
454
    free(buf);
 
455
    if(not interrupted_by_signal and not an_error_occured){
 
456
      free(cmdline);
 
457
      return EXIT_SUCCESS;
 
458
    }
 
459
    break;                      /* Big */
 
460
  }                             /* end of non-loop while() */
 
461
  
 
462
  /* If we got here, an error or interrupt must have happened */
568
463
  
569
464
  /* Create argc and argv for new usplash*/
570
465
  int cmdline_argc = 0;
576
471
                           (sizeof(char *)
577
472
                            * (size_t)(cmdline_argc + 2)));
578
473
      if(tmp == NULL){
579
 
        error(0, errno, "realloc");
 
474
        perror("realloc");
580
475
        free(cmdline_argv);
581
 
        return status;
 
476
        return EXIT_FAILURE;
582
477
      }
583
478
      cmdline_argv = tmp;
584
479
      cmdline_argv[cmdline_argc] = cmdline + position;
594
489
    kill(usplash_pid, SIGKILL);
595
490
    sleep(1);
596
491
  }
597
 
  
598
492
  pid_t new_usplash_pid = fork();
599
493
  if(new_usplash_pid == 0){
600
494
    /* Child; will become new usplash process */
603
497
       the real user ID (_mandos) */
604
498
    ret = setuid(geteuid());
605
499
    if(ret == -1){
606
 
      error(0, errno, "setuid");
 
500
      perror("setuid");
607
501
    }
608
502
    
609
503
    setsid();
610
504
    ret = chdir("/");
611
 
    if(ret == -1){
612
 
      error(0, errno, "chdir");
613
 
      _exit(EX_OSERR);
614
 
    }
615
505
/*     if(fork() != 0){ */
616
506
/*       _exit(EXIT_SUCCESS); */
617
507
/*     } */
618
508
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
619
509
    if(ret == -1){
620
 
      error(0, errno, "dup2");
621
 
      _exit(EX_OSERR);
 
510
      perror("dup2");
 
511
      _exit(EXIT_FAILURE);
622
512
    }
623
513
    
624
514
    execv(usplash_name, cmdline_argv);
625
515
    if(not interrupted_by_signal){
626
 
      error(0, errno, "execv");
 
516
      perror("execv");
627
517
    }
628
518
    free(cmdline);
629
519
    free(cmdline_argv);
630
 
    _exit(EX_OSERR);
 
520
    _exit(EXIT_FAILURE);
631
521
  }
632
522
  free(cmdline);
633
523
  free(cmdline_argv);
634
524
  sleep(2);
635
 
  if(not usplash_write(&fifo_fd, "PULSATE", NULL)){
636
 
    if(errno != EINTR){
637
 
      error(0, errno, "usplash_write");
638
 
    }
639
 
  }
640
 
  
641
 
  /* Close FIFO (again) */
642
 
  if(fifo_fd != -1){
643
 
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
644
 
    if(ret == -1 and errno != EINTR){
645
 
      error(0, errno, "close");
646
 
    }
647
 
    fifo_fd = -1;
648
 
  }
649
 
  
650
 
  if(interrupted_by_signal){
651
 
    struct sigaction signal_action = { .sa_handler = SIG_DFL };
652
 
    sigemptyset(&signal_action.sa_mask);
653
 
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
654
 
                                            &signal_action, NULL));
655
 
    if(ret == -1){
656
 
      error(0, errno, "sigaction");
657
 
    }
658
 
    do {
659
 
      ret = raise(signal_received);
660
 
    } while(ret != 0 and errno == EINTR);
661
 
    if(ret != 0){
662
 
      error(0, errno, "raise");
663
 
      abort();
664
 
    }
665
 
    TEMP_FAILURE_RETRY(pause());
666
 
  }
667
 
  
668
 
  return status;
 
525
  if(not usplash_write("PULSATE", NULL)
 
526
     and (errno != EINTR)){
 
527
    perror("usplash_write");
 
528
  }
 
529
  
 
530
  return EXIT_FAILURE;
669
531
}