/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: Björn Påhlsson
  • Date: 2010-09-07 16:48:58 UTC
  • mto: (237.4.3 mandos-release)
  • mto: This revision was merged to the branch mainline in revision 421.
  • Revision ID: belorn@fukt.bsnet.se-20100907164858-tcg8hkxdj41zizac
mandos server: Added debuglevel that adjust at what level information
               should be reported.
plugin-runner, askpass-fifo, password-prompt, splasy, usplash:
               Using error instead of perror

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#define _GNU_SOURCE             /* asprintf() */
 
1
/*  -*- coding: utf-8 -*- */
 
2
/*
 
3
 * Usplash - Read a password from usplash and output it
 
4
 * 
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
 
7
 * 
 
8
 * This program is free software: you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License as
 
10
 * published by the Free Software Foundation, either version 3 of the
 
11
 * License, or (at your option) any later version.
 
12
 * 
 
13
 * This program is distributed in the hope that it will be useful, but
 
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * General Public License for more details.
 
17
 * 
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program.  If not, see
 
20
 * <http://www.gnu.org/licenses/>.
 
21
 * 
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
23
 */
 
24
 
 
25
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
2
26
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
27
                                   sigemptyset(), sigaddset(), SIGINT,
4
28
                                   SIGHUP, SIGTERM, sigaction(),
5
29
                                   SIG_IGN, kill(), SIGKILL */
6
30
#include <stdbool.h>            /* bool, false, true */
7
31
#include <fcntl.h>              /* open(), O_WRONLY, O_RDONLY */
 
32
#include <iso646.h>             /* and, or, not*/
8
33
#include <errno.h>              /* errno, EINTR */
9
 
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR,
10
 
                                   struct dirent */
 
34
#include <error.h>
 
35
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR, struct
 
36
                                   dirent */
11
37
#include <stddef.h>             /* NULL */
12
38
#include <string.h>             /* strlen(), memcmp() */
13
 
#include <stdio.h>              /* asprintf(), perror() */
 
39
#include <stdio.h>              /* asprintf()*/
14
40
#include <unistd.h>             /* close(), write(), readlink(),
15
41
                                   read(), STDOUT_FILENO, sleep(),
16
42
                                   fork(), setuid(), geteuid(),
17
43
                                   setsid(), chdir(), dup2(),
18
44
                                   STDERR_FILENO, execv() */
19
 
#include <stdlib.h>             /* free(), EXIT_FAILURE, strtoul(),
20
 
                                   realloc(), EXIT_SUCCESS, malloc(),
21
 
                                   _exit() */
22
 
#include <stdlib.h>             /* getenv() */
 
45
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
 
46
                                   EXIT_SUCCESS, malloc(), _exit(),
 
47
                                   getenv() */
23
48
#include <dirent.h>             /* opendir(), readdir(), closedir() */
24
 
 
25
 
 
26
 
 
27
 
#include <iso646.h>             /* and */
28
 
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
29
 
                                   WEXITSTATUS() */
 
49
#include <inttypes.h>           /* intmax_t, strtoimax() */
 
50
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
 
51
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
30
52
 
31
53
sig_atomic_t interrupted_by_signal = 0;
 
54
int signal_received;
 
55
const char usplash_name[] = "/sbin/usplash";
32
56
 
33
 
static void termination_handler(__attribute__((unused))int signum){
 
57
static void termination_handler(int signum){
 
58
  if(interrupted_by_signal){
 
59
    return;
 
60
  }
34
61
  interrupted_by_signal = 1;
 
62
  signal_received = signum;
35
63
}
36
64
 
37
 
static bool usplash_write(const char *cmd, const char *arg){
 
65
static bool usplash_write(int *fifo_fd_r,
 
66
                          const char *cmd, const char *arg){
38
67
  /* 
39
 
   * usplash_write("TIMEOUT", "15"); -> "TIMEOUT 15\0"
40
 
   * usplash_write("PULSATE", NULL); -> "PULSATE\0"
 
68
   * usplash_write(&fd, "TIMEOUT", "15") will write "TIMEOUT 15\0"
 
69
   * usplash_write(&fd, "PULSATE", NULL) will write "PULSATE\0"
41
70
   * SEE ALSO
42
71
   *         usplash_write(8)
43
72
   */
44
73
  int ret;
45
 
  int fifo_fd;
46
 
  do{
47
 
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
48
 
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
 
74
  if(*fifo_fd_r == -1){
 
75
    ret = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
 
76
    if(ret == -1){
49
77
      return false;
50
78
    }
51
 
  }while(fifo_fd == -1);
 
79
    *fifo_fd_r = ret;
 
80
  }
52
81
  
53
82
  const char *cmd_line;
54
83
  size_t cmd_line_len;
55
84
  char *cmd_line_alloc = NULL;
56
85
  if(arg == NULL){
57
86
    cmd_line = cmd;
58
 
    cmd_line_len = strlen(cmd);
59
 
  }else{
60
 
    do{
 
87
    cmd_line_len = strlen(cmd) + 1;
 
88
  } else {
 
89
    do {
61
90
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
62
 
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
91
      if(ret == -1){
63
92
        int e = errno;
64
 
        close(fifo_fd);
 
93
        TEMP_FAILURE_RETRY(close(*fifo_fd_r));
65
94
        errno = e;
66
95
        return false;
67
96
      }
68
 
    }while(ret == -1);
 
97
    } while(ret == -1);
69
98
    cmd_line = cmd_line_alloc;
70
99
    cmd_line_len = (size_t)ret + 1;
71
100
  }
72
101
  
73
102
  size_t written = 0;
74
 
  while(not interrupted_by_signal and written < cmd_line_len){
75
 
    ret = write(fifo_fd, cmd_line + written,
76
 
                cmd_line_len - written);
77
 
    if(ret == -1){
78
 
      if(errno != EINTR or interrupted_by_signal){
79
 
        int e = errno;
80
 
        close(fifo_fd);
81
 
        free(cmd_line_alloc);
82
 
        errno = e;
83
 
        return false;
84
 
      } else {
85
 
        continue;
86
 
      }
 
103
  ssize_t sret = 0;
 
104
  while(written < cmd_line_len){
 
105
    sret = write(*fifo_fd_r, cmd_line + written,
 
106
                 cmd_line_len - written);
 
107
    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;
87
113
    }
88
 
    written += (size_t)ret;
 
114
    written += (size_t)sret;
89
115
  }
90
116
  free(cmd_line_alloc);
91
 
  do{
92
 
    ret = close(fifo_fd);
93
 
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
94
 
      return false;
95
 
    }
96
 
  }while(ret == -1);
97
 
  if(interrupted_by_signal){
98
 
    return false;
99
 
  }
 
117
  
100
118
  return true;
101
119
}
102
120
 
103
 
int main(__attribute__((unused))int argc,
104
 
         __attribute__((unused))char **argv){
105
 
  int ret = 0;
106
 
  ssize_t sret;
107
 
  bool an_error_occured = false;
108
 
  
109
 
  /* Create prompt string */
110
 
  char *prompt = NULL;
111
 
  {
112
 
    const char *const cryptsource = getenv("cryptsource");
113
 
    const char *const crypttarget = getenv("crypttarget");
114
 
    const char prompt_start[] = "Enter passphrase to unlock the disk";
115
 
    
116
 
    if(cryptsource == NULL){
117
 
      if(crypttarget == NULL){
118
 
        ret = asprintf(&prompt, "%s: ", prompt_start);
119
 
      } else {
120
 
        ret = asprintf(&prompt, "%s (%s): ", prompt_start,
121
 
                       crypttarget);
122
 
      }
123
 
    } else {
124
 
      if(crypttarget == NULL){
125
 
        ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
126
 
      } else {
127
 
        ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
128
 
                       cryptsource, crypttarget);
129
 
      }
130
 
    }
131
 
    if(ret == -1){
132
 
      return EXIT_FAILURE;
133
 
    }
134
 
  }
135
 
  
136
 
  /* Find usplash process */
137
 
  pid_t usplash_pid = 0;
 
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;
138
153
  char *cmdline = NULL;
139
154
  size_t cmdline_len = 0;
140
 
  const char usplash_name[] = "/sbin/usplash";
141
 
  {
142
 
    DIR *proc_dir = opendir("/proc");
143
 
    if(proc_dir == NULL){
144
 
      free(prompt);
145
 
      perror("opendir");
146
 
      return EXIT_FAILURE;
147
 
    }
148
 
    for(struct dirent *proc_ent = readdir(proc_dir);
149
 
        proc_ent != NULL;
150
 
        proc_ent = readdir(proc_dir)){
151
 
      pid_t pid = (pid_t) strtoul(proc_ent->d_name, NULL, 10);
152
 
      if(pid == 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){
153
171
        /* Not a process */
154
 
        continue;
155
 
      }
156
 
      /* Find the executable name by doing readlink() on the
157
 
         /proc/<pid>/exe link */
158
 
      char exe_target[sizeof(usplash_name)];
 
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;
159
223
      {
160
 
        char *exe_link;
161
 
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
 
224
        char *cmdline_filename;
 
225
        ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
226
                       proc_ent->d_name);
162
227
        if(ret == -1){
163
 
          perror("asprintf");
164
 
          free(prompt);
165
 
          closedir(proc_dir);
166
 
          return EXIT_FAILURE;
 
228
          error(0, errno, "asprintf");
 
229
          goto fail_find_usplash;
167
230
        }
168
 
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
169
 
        free(exe_link);
170
 
        if(sret == -1){
171
 
          continue;
 
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;
172
236
        }
173
237
      }
174
 
      if((sret == ((ssize_t)sizeof(exe_target)-1))
175
 
         and (memcmp(usplash_name, exe_target,
176
 
                     sizeof(exe_target)-1) == 0)){
177
 
        usplash_pid = pid;
178
 
        /* Read and save the command line of usplash in "cmdline" */
179
 
        {
180
 
          /* Open /proc/<pid>/cmdline  */
181
 
          int cl_fd;
182
 
          {
183
 
            char *cmdline_filename;
184
 
            ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
185
 
                           proc_ent->d_name);
186
 
            if(ret == -1){
187
 
              perror("asprintf");
188
 
              free(prompt);
189
 
              closedir(proc_dir);
190
 
              return EXIT_FAILURE;
191
 
            }
192
 
            cl_fd = open(cmdline_filename, O_RDONLY);
193
 
            if(cl_fd == -1){
194
 
              perror("open");
195
 
              free(cmdline_filename);
196
 
              free(prompt);
197
 
              closedir(proc_dir);
198
 
              return EXIT_FAILURE;
199
 
            }
200
 
            free(cmdline_filename);
 
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;
201
249
          }
202
 
          size_t cmdline_allocated = 0;
203
 
          char *tmp;
204
 
          const size_t blocksize = 1024;
205
 
          do{
206
 
            if(cmdline_len + blocksize > cmdline_allocated){
207
 
              tmp = realloc(cmdline, cmdline_allocated + blocksize);
208
 
              if(tmp == NULL){
209
 
                perror("realloc");
210
 
                free(cmdline);
211
 
                free(prompt);
212
 
                closedir(proc_dir);
213
 
                return EXIT_FAILURE;
214
 
              }
215
 
              cmdline = tmp;
216
 
              cmdline_allocated += blocksize;
217
 
            }
218
 
            sret = read(cl_fd, cmdline + cmdline_len,
219
 
                        cmdline_allocated - cmdline_len);
220
 
            if(sret == -1){
221
 
              perror("read");
222
 
              free(cmdline);
223
 
              free(prompt);
224
 
              closedir(proc_dir);
225
 
              return EXIT_FAILURE;
226
 
            }
227
 
            cmdline_len += (size_t)sret;
228
 
          } while(sret != 0);
 
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");
229
258
          close(cl_fd);
 
259
          goto fail_find_usplash;
230
260
        }
231
 
        break;
 
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;
232
267
      }
233
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;
234
286
    closedir(proc_dir);
235
 
  }
 
287
    errno = e;
 
288
  }
 
289
  return 0;
 
290
}
 
291
 
 
292
int main(__attribute__((unused))int argc,
 
293
         __attribute__((unused))char **argv){
 
294
  int ret = 0;
 
295
  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 */
 
303
  
 
304
  char *prompt = makeprompt();
 
305
  if(prompt == NULL){
 
306
    status = EX_OSERR;
 
307
    goto failure;
 
308
  }
 
309
  
 
310
  /* Find usplash process */
 
311
  char *cmdline = NULL;
 
312
  size_t cmdline_len = 0;
 
313
  usplash_pid = find_usplash(&cmdline, &cmdline_len);
236
314
  if(usplash_pid == 0){
237
 
    free(prompt);
238
 
    return EXIT_FAILURE;
 
315
    status = EX_UNAVAILABLE;
 
316
    goto failure;
239
317
  }
240
318
  
241
319
  /* Set up the signal handler */
244
322
      new_action = { .sa_handler = termination_handler,
245
323
                     .sa_flags = 0 };
246
324
    sigemptyset(&new_action.sa_mask);
247
 
    sigaddset(&new_action.sa_mask, SIGINT);
248
 
    sigaddset(&new_action.sa_mask, SIGHUP);
249
 
    sigaddset(&new_action.sa_mask, SIGTERM);
 
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
    }
250
343
    ret = sigaction(SIGINT, NULL, &old_action);
251
344
    if(ret == -1){
252
 
      perror("sigaction");
253
 
      free(prompt);
254
 
      return EXIT_FAILURE;
 
345
      if(errno != EINTR){
 
346
        error(0, errno, "sigaction");
 
347
        status = EX_OSERR;
 
348
      }
 
349
      goto failure;
255
350
    }
256
 
    if (old_action.sa_handler != SIG_IGN){
 
351
    if(old_action.sa_handler != SIG_IGN){
257
352
      ret = sigaction(SIGINT, &new_action, NULL);
258
353
      if(ret == -1){
259
 
        perror("sigaction");
260
 
        free(prompt);
261
 
        return EXIT_FAILURE;
 
354
        if(errno != EINTR){
 
355
          error(0, errno, "sigaction");
 
356
          status = EX_OSERR;
 
357
        }
 
358
        goto failure;
262
359
      }
263
360
    }
264
361
    ret = sigaction(SIGHUP, NULL, &old_action);
265
362
    if(ret == -1){
266
 
      perror("sigaction");
267
 
      free(prompt);
268
 
      return EXIT_FAILURE;
 
363
      if(errno != EINTR){
 
364
        error(0, errno, "sigaction");
 
365
        status = EX_OSERR;
 
366
      }
 
367
      goto failure;
269
368
    }
270
 
    if (old_action.sa_handler != SIG_IGN){
 
369
    if(old_action.sa_handler != SIG_IGN){
271
370
      ret = sigaction(SIGHUP, &new_action, NULL);
272
371
      if(ret == -1){
273
 
        perror("sigaction");
274
 
        free(prompt);
275
 
        return EXIT_FAILURE;
 
372
        if(errno != EINTR){
 
373
          error(0, errno, "sigaction");
 
374
          status = EX_OSERR;
 
375
        }
 
376
        goto failure;
276
377
      }
277
378
    }
278
379
    ret = sigaction(SIGTERM, NULL, &old_action);
279
380
    if(ret == -1){
280
 
      perror("sigaction");
281
 
      free(prompt);
282
 
      return EXIT_FAILURE;
 
381
      if(errno != EINTR){
 
382
        error(0, errno, "sigaction");
 
383
        status = EX_OSERR;
 
384
      }
 
385
      goto failure;
283
386
    }
284
 
    if (old_action.sa_handler != SIG_IGN){
 
387
    if(old_action.sa_handler != SIG_IGN){
285
388
      ret = sigaction(SIGTERM, &new_action, NULL);
286
389
      if(ret == -1){
287
 
        perror("sigaction");
288
 
        free(prompt);
289
 
        return EXIT_FAILURE;
 
390
        if(errno != EINTR){
 
391
          error(0, errno, "sigaction");
 
392
          status = EX_OSERR;
 
393
        }
 
394
        goto failure;
290
395
      }
291
396
    }
292
397
  }
293
398
  
 
399
  usplash_accessed = true;
294
400
  /* Write command to FIFO */
295
 
  if(not interrupted_by_signal){
296
 
    if(not usplash_write("TIMEOUT", "0")
297
 
       and (errno != EINTR)){
298
 
      perror("usplash_write");
299
 
      an_error_occured = true;
300
 
    }
301
 
  }
302
 
  if(not interrupted_by_signal and not an_error_occured){
303
 
    if(not usplash_write("INPUTQUIET", prompt)
304
 
       and (errno != EINTR)){
305
 
      perror("usplash_write");
306
 
      an_error_occured = true;
307
 
    }
308
 
  }
309
 
  free(prompt);
310
 
  
311
 
  /* This is not really a loop; while() is used to be able to "break"
312
 
     out of it; those breaks are marked "Big" */
313
 
  while(not interrupted_by_signal and not an_error_occured){
314
 
    char *buf = NULL;
315
 
    size_t buf_len = 0;
316
 
    
317
 
    /* Open FIFO */
318
 
    int fifo_fd;
319
 
    do{
320
 
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
321
 
      if(fifo_fd == -1){
322
 
        if(errno != EINTR){
323
 
          perror("open");
324
 
          an_error_occured = true;
325
 
          break;
326
 
        }
327
 
        if(interrupted_by_signal){
328
 
          break;
329
 
        }
330
 
      }
331
 
    }while(fifo_fd == -1);
332
 
    if(interrupted_by_signal or an_error_occured){
333
 
      break;                    /* Big */
334
 
    }
335
 
    
336
 
    /* Read from FIFO */
337
 
    size_t buf_allocated = 0;
338
 
    const size_t blocksize = 1024;
339
 
    do{
340
 
      if(buf_len + blocksize > buf_allocated){
341
 
        char *tmp = realloc(buf, buf_allocated + blocksize);
342
 
        if(tmp == NULL){
343
 
          perror("realloc");
344
 
          an_error_occured = true;
345
 
          break;
346
 
        }
347
 
        buf = tmp;
348
 
        buf_allocated += blocksize;
349
 
      }
350
 
      do{
351
 
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
352
 
        if(sret == -1){
353
 
          if(errno != EINTR){
354
 
            perror("read");
355
 
            an_error_occured = true;
356
 
            break;
357
 
          }
358
 
          if(interrupted_by_signal){
359
 
            break;
360
 
          }
361
 
        }
362
 
      }while(sret == -1);
363
 
      if(interrupted_by_signal or an_error_occured){
364
 
        break;
365
 
      }
366
 
      
367
 
      buf_len += (size_t)sret;
368
 
    }while(sret != 0);
369
 
    close(fifo_fd);
370
 
    if(interrupted_by_signal or an_error_occured){
371
 
      break;                    /* Big */
372
 
    }
373
 
    
374
 
    if(not usplash_write("TIMEOUT", "15")
375
 
       and (errno != EINTR)){
376
 
        perror("usplash_write");
377
 
        an_error_occured = true;
378
 
    }
379
 
    if(interrupted_by_signal or an_error_occured){
380
 
      break;                    /* Big */
381
 
    }
382
 
    
383
 
    /* Print password to stdout */
384
 
    size_t written = 0;
385
 
    while(written < buf_len){
386
 
      do{
387
 
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
388
 
        if(sret == -1){
389
 
          if(errno != EINTR){
390
 
            perror("write");
391
 
            an_error_occured = true;
392
 
            break;
393
 
          }
394
 
          if(interrupted_by_signal){
395
 
            break;
396
 
          }
397
 
        }
398
 
      }while(sret == -1);
399
 
      if(interrupted_by_signal or an_error_occured){
400
 
        break;
401
 
      }
402
 
      written += (size_t)sret;
403
 
    }
404
 
    free(buf);
405
 
    if(not interrupted_by_signal and not an_error_occured){
406
 
      free(cmdline);
407
 
      return EXIT_SUCCESS;
408
 
    }
409
 
    break;                      /* Big */
410
 
  }
411
 
  
412
 
  /* If we got here, an error or interrupt must have happened */
413
 
  
 
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
  }
 
568
  
 
569
  /* Create argc and argv for new usplash*/
414
570
  int cmdline_argc = 0;
415
571
  char **cmdline_argv = malloc(sizeof(char *));
416
 
  /* Create argv and argc for new usplash*/
417
572
  {
418
573
    size_t position = 0;
419
574
    while(position < cmdline_len){
421
576
                           (sizeof(char *)
422
577
                            * (size_t)(cmdline_argc + 2)));
423
578
      if(tmp == NULL){
424
 
        perror("realloc");
 
579
        error(0, errno, "realloc");
425
580
        free(cmdline_argv);
426
 
        return EXIT_FAILURE;
 
581
        return status;
427
582
      }
428
583
      cmdline_argv = tmp;
429
584
      cmdline_argv[cmdline_argc] = cmdline + position;
433
588
    cmdline_argv[cmdline_argc] = NULL;
434
589
  }
435
590
  /* Kill old usplash */
436
 
    kill(usplash_pid, SIGTERM);
437
 
    sleep(2);
 
591
  kill(usplash_pid, SIGTERM);
 
592
  sleep(2);
438
593
  while(kill(usplash_pid, 0) == 0){
439
594
    kill(usplash_pid, SIGKILL);
440
595
    sleep(1);
441
596
  }
 
597
  
442
598
  pid_t new_usplash_pid = fork();
443
599
  if(new_usplash_pid == 0){
444
600
    /* Child; will become new usplash process */
445
601
    
446
602
    /* Make the effective user ID (root) the only user ID instead of
447
 
       the real user ID (mandos) */
 
603
       the real user ID (_mandos) */
448
604
    ret = setuid(geteuid());
449
 
    if (ret == -1){
450
 
      perror("setuid");
 
605
    if(ret == -1){
 
606
      error(0, errno, "setuid");
451
607
    }
452
608
    
453
609
    setsid();
454
610
    ret = chdir("/");
 
611
    if(ret == -1){
 
612
      error(0, errno, "chdir");
 
613
      _exit(EX_OSERR);
 
614
    }
455
615
/*     if(fork() != 0){ */
456
616
/*       _exit(EXIT_SUCCESS); */
457
617
/*     } */
458
618
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
459
619
    if(ret == -1){
460
 
      perror("dup2");
461
 
      _exit(EXIT_FAILURE);
 
620
      error(0, errno, "dup2");
 
621
      _exit(EX_OSERR);
462
622
    }
463
623
    
464
624
    execv(usplash_name, cmdline_argv);
465
 
    perror("execv");
 
625
    if(not interrupted_by_signal){
 
626
      error(0, errno, "execv");
 
627
    }
466
628
    free(cmdline);
467
629
    free(cmdline_argv);
468
 
    _exit(EXIT_FAILURE);
 
630
    _exit(EX_OSERR);
469
631
  }
470
632
  free(cmdline);
471
633
  free(cmdline_argv);
472
634
  sleep(2);
473
 
  if(not usplash_write("PULSATE", NULL)
474
 
     and (errno != EINTR)){
475
 
    perror("usplash_write");
476
 
  }
477
 
  
478
 
  return EXIT_FAILURE;
 
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;
479
669
}