/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: 2008-09-26 04:54:35 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080926045435-0thnnqops1kzclag
* debian/mandos-client.postinst: Change home directory to
                                 "/nonexistent".
* debian/mandos.postinst: - '' -

* plugin-runner.c (main): Bug fix: Block signals while modifying
                          "plugin_list".

* plugins.d/usplash.c (usplash_write): New function.
  (main): Use "usplash_write" to write "INPUTQUIET" command.  Also
          write "TIMEOUT 0" before it, and write "TIMEOUT 15" and
          "PULSATE" if starting a new usplash process.  Kill old
          usplash before forking.  Bug fix: do setuid(geteuid()) to
          preserve genuine rootness.  Better interrupted/error logic
          overall.

* debian/mandos-client.lintian-overrides: Ignore setuid
                                          "plugins.d/usplash".

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
  interrupted_by_signal = 1;
28
28
}
29
29
 
 
30
static bool usplash_write(const char *cmd, const char *arg){
 
31
  /* 
 
32
   * usplash_write("TIMEOUT", "15"); -> "TIMEOUT 15\0"
 
33
   * usplash_write("PULSATE", NULL); -> "PULSATE\0"
 
34
   * SEE ALSO
 
35
   *         usplash_write(8)
 
36
   */
 
37
  int ret;
 
38
  int fifo_fd;
 
39
  do{
 
40
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
 
41
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
 
42
      return false;
 
43
    }
 
44
  }while(fifo_fd == -1);
 
45
  
 
46
  const char *cmd_line;
 
47
  char *cmd_line_alloc = NULL;
 
48
  if(arg == NULL){
 
49
    cmd_line = cmd;
 
50
    ret = (int)strlen(cmd);
 
51
  }else{
 
52
    do{
 
53
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
 
54
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
55
        int e = errno;
 
56
        close(fifo_fd);
 
57
        errno = e;
 
58
        return false;
 
59
      }
 
60
    }while(ret == -1);
 
61
    cmd_line = cmd_line_alloc;
 
62
  }
 
63
  
 
64
  size_t cmd_line_len = (size_t)ret + 1;
 
65
  size_t written = 0;
 
66
  while(not interrupted_by_signal and written < cmd_line_len){
 
67
    ret = write(fifo_fd, cmd_line + written,
 
68
                cmd_line_len - written);
 
69
    if(ret == -1){
 
70
      if(errno != EINTR or interrupted_by_signal){
 
71
        int e = errno;
 
72
        close(fifo_fd);
 
73
        free(cmd_line_alloc);
 
74
        errno = e;
 
75
        return false;
 
76
      } else {
 
77
        continue;
 
78
      }
 
79
    }
 
80
    written += (size_t)ret;
 
81
  }
 
82
  free(cmd_line_alloc);
 
83
  do{
 
84
    ret = close(fifo_fd);
 
85
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
86
      return false;
 
87
    }
 
88
  }while(ret == -1);
 
89
  if(interrupted_by_signal){
 
90
    return false;
 
91
  }
 
92
  return true;
 
93
}
 
94
 
30
95
int main(__attribute__((unused))int argc,
31
96
         __attribute__((unused))char **argv){
32
97
  int ret = 0;
64
129
  pid_t usplash_pid = 0;
65
130
  char *cmdline = NULL;
66
131
  size_t cmdline_len = 0;
 
132
  const char usplash_name[] = "/sbin/usplash";
67
133
  {
68
 
    const char usplash_name[] = "/sbin/usplash";
69
134
    DIR *proc_dir = opendir("/proc");
70
135
    if(proc_dir == NULL){
71
136
      free(prompt);
217
282
  
218
283
  /* Write command to FIFO */
219
284
  if(not interrupted_by_signal){
220
 
    int fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
221
 
    if(fifo_fd == -1){
222
 
      perror("open");
223
 
      free(prompt);
224
 
      return EXIT_FAILURE;
225
 
    }
226
 
    char *command;
227
 
    ret = asprintf(&command, "INPUTQUIET %s", prompt);
228
 
    if(ret == -1){
229
 
      perror("asprintf");
230
 
      free(prompt);
231
 
      return EXIT_FAILURE;
232
 
    }
233
 
    free(prompt);
234
 
    
235
 
    size_t command_len = (size_t)ret + 1;
236
 
    size_t written = 0;
237
 
    while(not interrupted_by_signal and written < command_len){
238
 
      ret = write(fifo_fd, command + written, command_len - written);
239
 
      if(ret == -1){
240
 
        if(interrupted_by_signal){
241
 
          break;
242
 
        }
243
 
        perror("write");
244
 
        if(written == 0){
245
 
          free(command);
246
 
          return EXIT_FAILURE;
247
 
        }
248
 
        an_error_occured = true;
249
 
        break;
250
 
      }
251
 
      written += (size_t)ret;
252
 
    }
253
 
    ret = close(fifo_fd);
254
 
    if(ret == -1 and not interrupted_by_signal){
255
 
      an_error_occured = true;
256
 
    }
257
 
    free(command);
258
 
  }else{
259
 
    free(prompt);
260
 
  }
 
285
    if(not usplash_write("TIMEOUT", "0")
 
286
       and (errno != EINTR)){
 
287
      perror("usplash_write");
 
288
      an_error_occured = true;
 
289
    }
 
290
  }
 
291
  if(not interrupted_by_signal and not an_error_occured){
 
292
    if(not usplash_write("INPUTQUIET", prompt)
 
293
       and (errno != EINTR)){
 
294
      perror("usplash_write");
 
295
      an_error_occured = true;
 
296
    }
 
297
  }
 
298
  free(prompt);
261
299
  
262
 
  {
 
300
  /* This is not really a loop; while() is used to be able to "break"
 
301
     out of it; those breaks are marked "Big" */
 
302
  while(not interrupted_by_signal and not an_error_occured){
263
303
    char *buf = NULL;
264
304
    size_t buf_len = 0;
265
305
    
 
306
    /* Open FIFO */
 
307
    int fifo_fd;
 
308
    do{
 
309
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
 
310
      if(fifo_fd == -1){
 
311
        if(errno != EINTR){
 
312
          perror("open");
 
313
          an_error_occured = true;
 
314
          break;
 
315
        }
 
316
        if(interrupted_by_signal){
 
317
          break;
 
318
        }
 
319
      }
 
320
    }while(fifo_fd == -1);
 
321
    if(interrupted_by_signal or an_error_occured){
 
322
      break;                    /* Big */
 
323
    }
 
324
    
266
325
    /* Read from FIFO */
267
 
    if(not interrupted_by_signal and not an_error_occured){
268
 
      int fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
269
 
      if(fifo_fd == -1 and not interrupted_by_signal){
270
 
        perror("open");
271
 
        return EXIT_FAILURE;
 
326
    size_t buf_allocated = 0;
 
327
    const size_t blocksize = 1024;
 
328
    do{
 
329
      if(buf_len + blocksize > buf_allocated){
 
330
        char *tmp = realloc(buf, buf_allocated + blocksize);
 
331
        if(tmp == NULL){
 
332
          perror("realloc");
 
333
          an_error_occured = true;
 
334
          break;
 
335
        }
 
336
        buf = tmp;
 
337
        buf_allocated += blocksize;
272
338
      }
273
 
      size_t buf_allocated = 0;
274
 
      const int blocksize = 1024;
275
339
      do{
276
 
        if(buf_len + blocksize > buf_allocated){
277
 
          char *tmp = realloc(buf, buf_allocated + blocksize);
278
 
          if(tmp == NULL){
279
 
            perror("realloc");
280
 
            an_error_occured = true;
281
 
            break;
282
 
          }
283
 
          buf = tmp;
284
 
          buf_allocated += blocksize;
285
 
        }
286
340
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
287
341
        if(sret == -1){
288
 
          perror("read");
289
 
          an_error_occured = true;
290
 
          break;
 
342
          if(errno != EINTR){
 
343
            perror("read");
 
344
            an_error_occured = true;
 
345
            break;
 
346
          }
 
347
          if(interrupted_by_signal){
 
348
            break;
 
349
          }
291
350
        }
292
 
        buf_len += (size_t)sret;
293
 
      }while(not interrupted_by_signal and sret != 0);
294
 
      close(fifo_fd);
295
 
    }
296
 
  
 
351
      }while(sret == -1);
 
352
      if(interrupted_by_signal or an_error_occured){
 
353
        break;
 
354
      }
 
355
      
 
356
      buf_len += (size_t)sret;
 
357
    }while(sret != 0);
 
358
    close(fifo_fd);
 
359
    if(interrupted_by_signal or an_error_occured){
 
360
      break;                    /* Big */
 
361
    }
 
362
    
 
363
    if(not usplash_write("TIMEOUT", "15")
 
364
       and (errno != EINTR)){
 
365
        perror("usplash_write");
 
366
        an_error_occured = true;
 
367
    }
 
368
    if(interrupted_by_signal or an_error_occured){
 
369
      break;                    /* Big */
 
370
    }
 
371
    
297
372
    /* Print password to stdout */
298
 
    if(not interrupted_by_signal and not an_error_occured){
299
 
      size_t written = 0;
 
373
    size_t written = 0;
 
374
    do{
300
375
      do{
301
376
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
302
 
        if(sret == -1 and not interrupted_by_signal){
303
 
          perror("write");
304
 
          an_error_occured = true;
305
 
          break;
 
377
        if(sret == -1){
 
378
          if(errno != EINTR){
 
379
            perror("write");
 
380
            an_error_occured = true;
 
381
            break;
 
382
          }
 
383
          if(interrupted_by_signal){
 
384
            break;
 
385
          }
306
386
        }
307
 
        written += (size_t)sret;
308
 
      }while(written < buf_len);
309
 
      if(not interrupted_by_signal and not an_error_occured){
310
 
        return EXIT_SUCCESS;
 
387
      }while(sret == -1);
 
388
      if(interrupted_by_signal or an_error_occured){
 
389
        break;
311
390
      }
 
391
      
 
392
      written += (size_t)sret;
 
393
    }while(written < buf_len);
 
394
    if(not interrupted_by_signal and not an_error_occured){
 
395
      return EXIT_SUCCESS;
312
396
    }
 
397
    break;                      /* Big */
313
398
  }
314
399
  
315
 
  kill(usplash_pid, SIGTERM);
 
400
  /* If we got here, an error or interrupt must have happened */
316
401
  
317
402
  int cmdline_argc = 0;
318
403
  char **cmdline_argv = malloc(sizeof(char *));
319
404
  /* Create argv and argc for new usplash*/
320
405
  {
321
 
    ptrdiff_t position = 0;
322
 
    while((size_t)position < cmdline_len){
 
406
    size_t position = 0;
 
407
    while(position < cmdline_len){
323
408
      char **tmp = realloc(cmdline_argv,
324
409
                           (sizeof(char *) * (size_t)(cmdline_argc + 2)));
325
410
      if(tmp == NULL){
330
415
      cmdline_argv = tmp;
331
416
      cmdline_argv[cmdline_argc] = cmdline + position;
332
417
      cmdline_argc++;
333
 
      position = (char *)rawmemchr(cmdline + position, '\0')
334
 
        - cmdline + 1;
 
418
      position += strlen(cmdline + position) + 1;
335
419
    }
336
420
    cmdline_argv[cmdline_argc] = NULL;
337
421
  }
 
422
  /* Kill old usplash */
 
423
    kill(usplash_pid, SIGTERM);
 
424
    sleep(2);
 
425
  while(kill(usplash_pid, 0) == 0){
 
426
    kill(usplash_pid, SIGKILL);
 
427
    sleep(1);
 
428
  }
338
429
  pid_t new_usplash_pid = fork();
339
430
  if(new_usplash_pid == 0){
340
431
    /* Child; will become new usplash process */
341
 
    while(kill(usplash_pid, 0)){
342
 
      sleep(2);
343
 
      kill(usplash_pid, SIGKILL);
344
 
      sleep(1);
 
432
    
 
433
    /* Make the effective user ID (root) the only user ID instead of
 
434
       the real user ID (mandos) */
 
435
    ret = setuid(geteuid());
 
436
    if (ret == -1){
 
437
      perror("setuid");
345
438
    }
 
439
    
 
440
    setsid();
 
441
    ret = chdir("/");
 
442
/*     if(fork() != 0){ */
 
443
/*       _exit(EXIT_SUCCESS); */
 
444
/*     } */
346
445
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
347
446
    if(ret == -1){
348
447
      perror("dup2");
349
448
      _exit(EXIT_FAILURE);
350
449
    }
351
 
    execv("/sbin/usplash", cmdline_argv);
 
450
    
 
451
    execv(usplash_name, cmdline_argv);
 
452
  }
 
453
  sleep(2);
 
454
  if(not usplash_write("PULSATE", NULL)
 
455
     and (errno != EINTR)){
 
456
    perror("usplash_write");
352
457
  }
353
458
  
354
459
  return EXIT_FAILURE;