/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-24 23:12:49 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080924231249-0xhjl5ydrbcjvce7
* 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
 
 
95
30
int main(__attribute__((unused))int argc,
96
31
         __attribute__((unused))char **argv){
97
32
  int ret = 0;
129
64
  pid_t usplash_pid = 0;
130
65
  char *cmdline = NULL;
131
66
  size_t cmdline_len = 0;
132
 
  const char usplash_name[] = "/sbin/usplash";
133
67
  {
 
68
    const char usplash_name[] = "/sbin/usplash";
134
69
    DIR *proc_dir = opendir("/proc");
135
70
    if(proc_dir == NULL){
136
71
      free(prompt);
282
217
  
283
218
  /* Write command to FIFO */
284
219
  if(not interrupted_by_signal){
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);
 
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
  }
299
261
  
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){
 
262
  {
303
263
    char *buf = NULL;
304
264
    size_t buf_len = 0;
305
265
    
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
 
    
325
266
    /* Read from FIFO */
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;
 
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;
338
272
      }
 
273
      size_t buf_allocated = 0;
 
274
      const int blocksize = 1024;
339
275
      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
        }
340
286
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
341
287
        if(sret == -1){
342
 
          if(errno != EINTR){
343
 
            perror("read");
344
 
            an_error_occured = true;
345
 
            break;
346
 
          }
347
 
          if(interrupted_by_signal){
348
 
            break;
349
 
          }
 
288
          perror("read");
 
289
          an_error_occured = true;
 
290
          break;
350
291
        }
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
 
    
 
292
        buf_len += (size_t)sret;
 
293
      }while(not interrupted_by_signal and sret != 0);
 
294
      close(fifo_fd);
 
295
    }
 
296
  
372
297
    /* Print password to stdout */
373
 
    size_t written = 0;
374
 
    do{
 
298
    if(not interrupted_by_signal and not an_error_occured){
 
299
      size_t written = 0;
375
300
      do{
376
301
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
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
 
          }
 
302
        if(sret == -1 and not interrupted_by_signal){
 
303
          perror("write");
 
304
          an_error_occured = true;
 
305
          break;
386
306
        }
387
 
      }while(sret == -1);
388
 
      if(interrupted_by_signal or an_error_occured){
389
 
        break;
 
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;
390
311
      }
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;
396
312
    }
397
 
    break;                      /* Big */
398
313
  }
399
314
  
400
 
  /* If we got here, an error or interrupt must have happened */
 
315
  kill(usplash_pid, SIGTERM);
401
316
  
402
317
  int cmdline_argc = 0;
403
318
  char **cmdline_argv = malloc(sizeof(char *));
404
319
  /* Create argv and argc for new usplash*/
405
320
  {
406
 
    size_t position = 0;
407
 
    while(position < cmdline_len){
 
321
    ptrdiff_t position = 0;
 
322
    while((size_t)position < cmdline_len){
408
323
      char **tmp = realloc(cmdline_argv,
409
324
                           (sizeof(char *) * (size_t)(cmdline_argc + 2)));
410
325
      if(tmp == NULL){
415
330
      cmdline_argv = tmp;
416
331
      cmdline_argv[cmdline_argc] = cmdline + position;
417
332
      cmdline_argc++;
418
 
      position += strlen(cmdline + position) + 1;
 
333
      position = (char *)rawmemchr(cmdline + position, '\0')
 
334
        - cmdline + 1;
419
335
    }
420
336
    cmdline_argv[cmdline_argc] = NULL;
421
337
  }
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
 
  }
429
338
  pid_t new_usplash_pid = fork();
430
339
  if(new_usplash_pid == 0){
431
340
    /* Child; will become new usplash process */
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");
 
341
    while(kill(usplash_pid, 0)){
 
342
      sleep(2);
 
343
      kill(usplash_pid, SIGKILL);
 
344
      sleep(1);
438
345
    }
439
 
    
440
 
    setsid();
441
 
    ret = chdir("/");
442
 
/*     if(fork() != 0){ */
443
 
/*       _exit(EXIT_SUCCESS); */
444
 
/*     } */
445
346
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
446
347
    if(ret == -1){
447
348
      perror("dup2");
448
349
      _exit(EXIT_FAILURE);
449
350
    }
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");
 
351
    execv("/sbin/usplash", cmdline_argv);
457
352
  }
458
353
  
459
354
  return EXIT_FAILURE;