/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2008-10-17 18:56:25 UTC
  • Revision ID: teddy@fukt.bsnet.se-20081017185625-xrfv8oevzm7lyvl6
Tags: version-1.0.2-1
* Makefile (version): Changed to "1.0.2".
* NEWS (Version 1.0.2): New entry.
* debian/changelog (1.0.2-1): New entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
5
 
 * Copyright © 2008,2009 Teddy Hogeborn
6
 
 * Copyright © 2008,2009 Björn Påhlsson
 
5
 * Copyright © 2008 Teddy Hogeborn & Björn Påhlsson
7
6
 * 
8
7
 * This program is free software: you can redistribute it and/or
9
8
 * modify it under the terms of the GNU General Public License as
309
308
  struct stat st;
310
309
  fd_set rfds_all;
311
310
  int ret, maxfd = 0;
312
 
  ssize_t sret;
313
311
  uid_t uid = 65534;
314
312
  gid_t gid = 65534;
315
313
  bool debug = false;
463
461
      /* This is already done by parse_opt_config_file() */
464
462
      break;
465
463
    case 130:                   /* --userid */
466
 
      /* In the GNU C library, uid_t is always unsigned int */
467
 
      ret = sscanf(arg, "%ud", &uid);
468
 
      if(ret != 1){
469
 
        fprintf(stderr, "Bad user ID number: \"%s\", using %ud\n",
470
 
                arg, uid);
471
 
      }
 
464
      uid = (uid_t)strtol(arg, NULL, 10);
472
465
      break;
473
466
    case 131:                   /* --groupid */
474
 
      /* In the GNU C library, gid_t is always unsigned int */
475
 
      ret = sscanf(arg, "%ud", &gid);
476
 
      if(ret != 1){
477
 
        fprintf(stderr, "Bad group ID number: \"%s\", using %ud\n",
478
 
                arg, gid);
479
 
      }
 
467
      gid = (gid_t)strtol(arg, NULL, 10);
480
468
      break;
481
469
    case 132:                   /* --debug */
482
470
      debug = true;
483
471
      break;
484
 
/*
485
 
 * When adding more options before this line, remember to also add a
486
 
 * "case" to the "parse_opt_config_file" function below.
487
 
 */
488
472
    case ARGP_KEY_ARG:
489
473
      /* Cryptsetup always passes an argument, which is an empty
490
474
         string if "none" was specified in /etc/crypttab.  So if
561
545
    char *org_line = NULL;
562
546
    char *p, *arg, *new_arg, *line;
563
547
    size_t size = 0;
 
548
    ssize_t sret;
564
549
    const char whitespace_delims[] = " \r\t\f\v\n";
565
550
    const char comment_delim[] = "#";
566
551
 
715
700
      
716
701
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
717
702
                                           ".dpkg-old",
718
 
                                           ".dpkg-bak",
719
703
                                           ".dpkg-divert", NULL };
720
704
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
721
705
        size_t pre_len = strlen(*pre);
1033
1017
        proc->buffer_size += BUFFER_SIZE;
1034
1018
      }
1035
1019
      /* Read from the process */
1036
 
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
1037
 
                  BUFFER_SIZE);
1038
 
      if(sret < 0){
 
1020
      ret = read(proc->fd, proc->buffer + proc->buffer_length,
 
1021
                 BUFFER_SIZE);
 
1022
      if(ret < 0){
1039
1023
        /* Read error from this process; ignore the error */
1040
1024
        proc = proc->next;
1041
1025
        continue;
1042
1026
      }
1043
 
      if(sret == 0){
 
1027
      if(ret == 0){
1044
1028
        /* got EOF */
1045
1029
        proc->eof = true;
1046
1030
      } else {
1047
 
        proc->buffer_length += (size_t) sret;
 
1031
        proc->buffer_length += (size_t) ret;
1048
1032
      }
1049
1033
    }
1050
1034
  }