/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 plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2009-10-30 16:23:43 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091030162343-1p2a8bf3gc084kc9
* plugins.d/password-prompt.c: Use environment variables and prompt
                               text from cryptsetup 1.1.
* plugins.d/password-prompt.xml (ENVIRONMENT): Document change in
                                               environment variables
                                               used.

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-2013 Teddy Hogeborn
6
 
 * Copyright © 2008-2013 Björn Påhlsson
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
7
7
 * 
8
8
 * This program is free software: you can redistribute it and/or
9
9
 * modify it under the terms of the GNU General Public License as
19
19
 * along with this program.  If not, see
20
20
 * <http://www.gnu.org/licenses/>.
21
21
 * 
22
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
23
 */
24
24
 
25
25
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), getline(),
26
26
                                   asprintf(), O_CLOEXEC */
27
27
#include <stddef.h>             /* size_t, NULL */
28
 
#include <stdlib.h>             /* malloc(), exit(), EXIT_SUCCESS,
29
 
                                   realloc() */
 
28
#include <stdlib.h>             /* malloc(), exit(), EXIT_FAILURE,
 
29
                                   EXIT_SUCCESS, realloc() */
30
30
#include <stdbool.h>            /* bool, true, false */
31
 
#include <stdio.h>              /* fileno(), fprintf(),
 
31
#include <stdio.h>              /* perror, fileno(), fprintf(),
32
32
                                   stderr, STDOUT_FILENO */
33
33
#include <sys/types.h>          /* DIR, fdopendir(), stat(), struct
34
34
                                   stat, waitpid(), WIFEXITED(),
54
54
#include <fcntl.h>              /* fcntl(), F_GETFD, F_SETFD,
55
55
                                   FD_CLOEXEC */
56
56
#include <string.h>             /* strsep, strlen(), asprintf(),
57
 
                                   strsignal(), strcmp(), strncmp() */
 
57
                                   strsignal() */
58
58
#include <errno.h>              /* errno */
59
59
#include <argp.h>               /* struct argp_option, struct
60
60
                                   argp_state, struct argp,
68
68
                                */
69
69
#include <errno.h>              /* errno, EBADF */
70
70
#include <inttypes.h>           /* intmax_t, PRIdMAX, strtoimax() */
71
 
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_IOERR,
72
 
                                   EX_CONFIG, EX_UNAVAILABLE, EX_OK */
73
 
#include <errno.h>              /* errno */
74
 
#include <error.h>              /* error() */
 
71
#include <sysexits.h>           /* EX_OSERR, EX_USAGE */
75
72
 
76
73
#define BUFFER_SIZE 256
77
74
 
79
76
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
80
77
 
81
78
const char *argp_program_version = "plugin-runner " VERSION;
82
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
79
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
83
80
 
84
81
typedef struct plugin{
85
82
  char *name;                   /* can be NULL or any plugin name */
171
168
}
172
169
 
173
170
/* Helper function for add_argument and add_environment */
174
 
__attribute__((nonnull))
175
171
static bool add_to_char_array(const char *new, char ***array,
176
172
                              int *len){
177
173
  /* Resize the pointed-to array to hold one more pointer */
200
196
}
201
197
 
202
198
/* Add to a plugin's argument vector */
203
 
__attribute__((nonnull(2)))
204
199
static bool add_argument(plugin *p, const char *arg){
205
200
  if(p == NULL){
206
201
    return false;
209
204
}
210
205
 
211
206
/* Add to a plugin's environment */
212
 
__attribute__((nonnull(2)))
213
207
static bool add_environment(plugin *p, const char *def, bool replace){
214
208
  if(p == NULL){
215
209
    return false;
271
265
        /* No child processes */
272
266
        break;
273
267
      }
274
 
      error(0, errno, "waitpid");
 
268
      perror("waitpid");
275
269
    }
276
270
    
277
271
    /* A child exited, find it in process_list */
289
283
}
290
284
 
291
285
/* Prints out a password to stdout */
292
 
__attribute__((nonnull))
293
286
static bool print_out_password(const char *buffer, size_t length){
294
287
  ssize_t ret;
295
288
  for(size_t written = 0; written < length; written += (size_t)ret){
303
296
}
304
297
 
305
298
/* Removes and free a plugin from the plugin list */
306
 
__attribute__((nonnull))
307
299
static void free_plugin(plugin *plugin_node){
308
300
  
309
301
  for(char **arg = plugin_node->argv; *arg != NULL; arg++){
364
356
  sigemptyset(&sigchld_action.sa_mask);
365
357
  ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
366
358
  if(ret == -1){
367
 
    error(0, errno, "sigaddset");
368
 
    exitstatus = EX_OSERR;
 
359
    perror("sigaddset");
 
360
    exitstatus = EXIT_FAILURE;
369
361
    goto fallback;
370
362
  }
371
363
  ret = sigaction(SIGCHLD, &sigchld_action, &old_sigchld_action);
372
364
  if(ret == -1){
373
 
    error(0, errno, "sigaction");
374
 
    exitstatus = EX_OSERR;
 
365
    perror("sigaction");
 
366
    exitstatus = EXIT_FAILURE;
375
367
    goto fallback;
376
368
  }
377
369
  
421
413
    { .name = NULL }
422
414
  };
423
415
  
424
 
  __attribute__((nonnull(3)))
425
416
  error_t parse_opt(int key, char *arg, struct argp_state *state){
426
417
    errno = 0;
427
418
    switch(key){
428
419
      char *tmp;
429
 
      intmax_t tmp_id;
 
420
      intmax_t tmpmax;
430
421
    case 'g':                   /* --global-options */
431
422
      {
432
423
        char *plugin_option;
505
496
      /* This is already done by parse_opt_config_file() */
506
497
      break;
507
498
    case 130:                   /* --userid */
508
 
      tmp_id = strtoimax(arg, &tmp, 10);
 
499
      tmpmax = strtoimax(arg, &tmp, 10);
509
500
      if(errno != 0 or tmp == arg or *tmp != '\0'
510
 
         or tmp_id != (uid_t)tmp_id){
 
501
         or tmpmax != (uid_t)tmpmax){
511
502
        argp_error(state, "Bad user ID number: \"%s\", using %"
512
503
                   PRIdMAX, arg, (intmax_t)uid);
513
504
        break;
514
505
      }
515
 
      uid = (uid_t)tmp_id;
 
506
      uid = (uid_t)tmpmax;
516
507
      break;
517
508
    case 131:                   /* --groupid */
518
 
      tmp_id = strtoimax(arg, &tmp, 10);
 
509
      tmpmax = strtoimax(arg, &tmp, 10);
519
510
      if(errno != 0 or tmp == arg or *tmp != '\0'
520
 
         or tmp_id != (gid_t)tmp_id){
 
511
         or tmpmax != (gid_t)tmpmax){
521
512
        argp_error(state, "Bad group ID number: \"%s\", using %"
522
513
                   PRIdMAX, arg, (intmax_t)gid);
523
514
        break;
524
515
      }
525
 
      gid = (gid_t)tmp_id;
 
516
      gid = (gid_t)tmpmax;
526
517
      break;
527
518
    case 132:                   /* --debug */
528
519
      debug = true;
607
598
  case ENOMEM:
608
599
  default:
609
600
    errno = ret;
610
 
    error(0, errno, "argp_parse");
 
601
    perror("argp_parse");
611
602
    exitstatus = EX_OSERR;
612
603
    goto fallback;
613
604
  case EINVAL:
634
625
    custom_argc = 1;
635
626
    custom_argv = malloc(sizeof(char*) * 2);
636
627
    if(custom_argv == NULL){
637
 
      error(0, errno, "malloc");
638
 
      exitstatus = EX_OSERR;
 
628
      perror("malloc");
 
629
      exitstatus = EXIT_FAILURE;
639
630
      goto fallback;
640
631
    }
641
632
    custom_argv[0] = argv[0];
657
648
        }
658
649
        new_arg = strdup(p);
659
650
        if(new_arg == NULL){
660
 
          error(0, errno, "strdup");
661
 
          exitstatus = EX_OSERR;
 
651
          perror("strdup");
 
652
          exitstatus = EXIT_FAILURE;
662
653
          free(org_line);
663
654
          goto fallback;
664
655
        }
667
658
        custom_argv = realloc(custom_argv, sizeof(char *)
668
659
                              * ((unsigned int) custom_argc + 1));
669
660
        if(custom_argv == NULL){
670
 
          error(0, errno, "realloc");
671
 
          exitstatus = EX_OSERR;
 
661
          perror("realloc");
 
662
          exitstatus = EXIT_FAILURE;
672
663
          free(org_line);
673
664
          goto fallback;
674
665
        }
680
671
      ret = fclose(conffp);
681
672
    } while(ret == EOF and errno == EINTR);
682
673
    if(ret == EOF){
683
 
      error(0, errno, "fclose");
684
 
      exitstatus = EX_IOERR;
 
674
      perror("fclose");
 
675
      exitstatus = EXIT_FAILURE;
685
676
      goto fallback;
686
677
    }
687
678
    free(org_line);
689
680
    /* Check for harmful errors and go to fallback. Other errors might
690
681
       not affect opening plugins */
691
682
    if(errno == EMFILE or errno == ENFILE or errno == ENOMEM){
692
 
      error(0, errno, "fopen");
693
 
      exitstatus = EX_OSERR;
 
683
      perror("fopen");
 
684
      exitstatus = EXIT_FAILURE;
694
685
      goto fallback;
695
686
    }
696
687
  }
706
697
    case ENOMEM:
707
698
    default:
708
699
      errno = ret;
709
 
      error(0, errno, "argp_parse");
 
700
      perror("argp_parse");
710
701
      exitstatus = EX_OSERR;
711
702
      goto fallback;
712
703
    case EINVAL:
726
717
  case ENOMEM:
727
718
  default:
728
719
    errno = ret;
729
 
    error(0, errno, "argp_parse");
 
720
    perror("argp_parse");
730
721
    exitstatus = EX_OSERR;
731
722
    goto fallback;
732
723
  case EINVAL:
748
739
    }
749
740
  }
750
741
  
751
 
  if(getuid() == 0){
752
 
    /* Work around Debian bug #633582:
753
 
       <http://bugs.debian.org/633582> */
754
 
    int plugindir_fd = open(/* plugindir or */ PDIR, O_RDONLY);
755
 
    if(plugindir_fd == -1){
756
 
      error(0, errno, "open");
757
 
    } else {
758
 
      ret = (int)TEMP_FAILURE_RETRY(fstat(plugindir_fd, &st));
759
 
      if(ret == -1){
760
 
        error(0, errno, "fstat");
761
 
      } else {
762
 
        if(S_ISDIR(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
763
 
          ret = fchown(plugindir_fd, uid, gid);
764
 
          if(ret == -1){
765
 
            error(0, errno, "fchown");
766
 
          }
767
 
        }
768
 
      }
769
 
      TEMP_FAILURE_RETRY(close(plugindir_fd));
770
 
    }
771
 
  }
772
 
  
773
 
  /* Lower permissions */
774
 
  ret = setgid(gid);
 
742
  /* Strip permissions down to nobody */
 
743
  setgid(gid);
775
744
  if(ret == -1){
776
 
    error(0, errno, "setgid");
 
745
    perror("setgid");
777
746
  }
778
747
  ret = setuid(uid);
779
748
  if(ret == -1){
780
 
    error(0, errno, "setuid");
 
749
    perror("setuid");
781
750
  }
782
751
  
783
752
  /* Open plugin directory with close_on_exec flag */
801
770
                    );
802
771
    }
803
772
    if(dir_fd == -1){
804
 
      error(0, errno, "Could not open plugin dir");
805
 
      exitstatus = EX_UNAVAILABLE;
 
773
      perror("Could not open plugin dir");
 
774
      exitstatus = EXIT_FAILURE;
806
775
      goto fallback;
807
776
    }
808
777
    
810
779
  /* Set the FD_CLOEXEC flag on the directory */
811
780
    ret = set_cloexec_flag(dir_fd);
812
781
    if(ret < 0){
813
 
      error(0, errno, "set_cloexec_flag");
 
782
      perror("set_cloexec_flag");
814
783
      TEMP_FAILURE_RETRY(close(dir_fd));
815
 
      exitstatus = EX_OSERR;
 
784
      exitstatus = EXIT_FAILURE;
816
785
      goto fallback;
817
786
    }
818
787
#endif  /* O_CLOEXEC */
819
788
    
820
789
    dir = fdopendir(dir_fd);
821
790
    if(dir == NULL){
822
 
      error(0, errno, "Could not open plugin dir");
 
791
      perror("Could not open plugin dir");
823
792
      TEMP_FAILURE_RETRY(close(dir_fd));
824
 
      exitstatus = EX_OSERR;
 
793
      exitstatus = EXIT_FAILURE;
825
794
      goto fallback;
826
795
    }
827
796
  }
837
806
    /* All directory entries have been processed */
838
807
    if(dirst == NULL){
839
808
      if(errno == EBADF){
840
 
        error(0, errno, "readdir");
841
 
        exitstatus = EX_IOERR;
 
809
        perror("readdir");
 
810
        exitstatus = EXIT_FAILURE;
842
811
        goto fallback;
843
812
      }
844
813
      break;
850
819
    {
851
820
      bool bad_name = false;
852
821
      
853
 
      const char * const bad_prefixes[] = { ".", "#", NULL };
 
822
      const char const *bad_prefixes[] = { ".", "#", NULL };
854
823
      
855
 
      const char * const bad_suffixes[] = { "~", "#", ".dpkg-new",
 
824
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
856
825
                                           ".dpkg-old",
857
826
                                           ".dpkg-bak",
858
827
                                           ".dpkg-divert", NULL };
859
 
#pragma GCC diagnostic push
860
 
#pragma GCC diagnostic ignored "-Wcast-qual"
861
 
      for(const char **pre = (const char **)bad_prefixes;
862
 
          *pre != NULL; pre++){
863
 
#pragma GCC diagnostic pop
 
828
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
864
829
        size_t pre_len = strlen(*pre);
865
830
        if((d_name_len >= pre_len)
866
831
           and strncmp((dirst->d_name), *pre, pre_len) == 0){
875
840
      if(bad_name){
876
841
        continue;
877
842
      }
878
 
#pragma GCC diagnostic push
879
 
#pragma GCC diagnostic ignored "-Wcast-qual"
880
 
      for(const char **suf = (const char **)bad_suffixes;
881
 
          *suf != NULL; suf++){
882
 
#pragma GCC diagnostic pop
 
843
      for(const char **suf = bad_suffixes; *suf != NULL; suf++){
883
844
        size_t suf_len = strlen(*suf);
884
845
        if((d_name_len >= suf_len)
885
 
           and (strcmp((dirst->d_name) + d_name_len-suf_len, *suf)
 
846
           and (strcmp((dirst->d_name)+d_name_len-suf_len, *suf)
886
847
                == 0)){
887
848
          if(debug){
888
849
            fprintf(stderr, "Ignoring plugin dir entry \"%s\""
908
869
                                             dirst->d_name));
909
870
    }
910
871
    if(ret < 0){
911
 
      error(0, errno, "asprintf");
 
872
      perror("asprintf");
912
873
      continue;
913
874
    }
914
875
    
915
876
    ret = (int)TEMP_FAILURE_RETRY(stat(filename, &st));
916
877
    if(ret == -1){
917
 
      error(0, errno, "stat");
 
878
      perror("stat");
918
879
      free(filename);
919
880
      continue;
920
881
    }
932
893
    
933
894
    plugin *p = getplugin(dirst->d_name);
934
895
    if(p == NULL){
935
 
      error(0, errno, "getplugin");
 
896
      perror("getplugin");
936
897
      free(filename);
937
898
      continue;
938
899
    }
950
911
      if(g != NULL){
951
912
        for(char **a = g->argv + 1; *a != NULL; a++){
952
913
          if(not add_argument(p, *a)){
953
 
            error(0, errno, "add_argument");
 
914
            perror("add_argument");
954
915
          }
955
916
        }
956
917
        /* Add global environment variables */
957
918
        for(char **e = g->environ; *e != NULL; e++){
958
919
          if(not add_environment(p, *e, false)){
959
 
            error(0, errno, "add_environment");
 
920
            perror("add_environment");
960
921
          }
961
922
        }
962
923
      }
967
928
    if(p->environ[0] != NULL){
968
929
      for(char **e = environ; *e != NULL; e++){
969
930
        if(not add_environment(p, *e, false)){
970
 
          error(0, errno, "add_environment");
 
931
          perror("add_environment");
971
932
        }
972
933
      }
973
934
    }
975
936
    int pipefd[2];
976
937
    ret = (int)TEMP_FAILURE_RETRY(pipe(pipefd));
977
938
    if(ret == -1){
978
 
      error(0, errno, "pipe");
979
 
      exitstatus = EX_OSERR;
 
939
      perror("pipe");
 
940
      exitstatus = EXIT_FAILURE;
980
941
      goto fallback;
981
942
    }
982
943
    /* Ask OS to automatic close the pipe on exec */
983
944
    ret = set_cloexec_flag(pipefd[0]);
984
945
    if(ret < 0){
985
 
      error(0, errno, "set_cloexec_flag");
986
 
      exitstatus = EX_OSERR;
 
946
      perror("set_cloexec_flag");
 
947
      exitstatus = EXIT_FAILURE;
987
948
      goto fallback;
988
949
    }
989
950
    ret = set_cloexec_flag(pipefd[1]);
990
951
    if(ret < 0){
991
 
      error(0, errno, "set_cloexec_flag");
992
 
      exitstatus = EX_OSERR;
 
952
      perror("set_cloexec_flag");
 
953
      exitstatus = EXIT_FAILURE;
993
954
      goto fallback;
994
955
    }
995
956
    /* Block SIGCHLD until process is safely in process list */
997
958
                                              &sigchld_action.sa_mask,
998
959
                                              NULL));
999
960
    if(ret < 0){
1000
 
      error(0, errno, "sigprocmask");
1001
 
      exitstatus = EX_OSERR;
 
961
      perror("sigprocmask");
 
962
      exitstatus = EXIT_FAILURE;
1002
963
      goto fallback;
1003
964
    }
1004
965
    /* Starting a new process to be watched */
1007
968
      pid = fork();
1008
969
    } while(pid == -1 and errno == EINTR);
1009
970
    if(pid == -1){
1010
 
      error(0, errno, "fork");
1011
 
      exitstatus = EX_OSERR;
 
971
      perror("fork");
 
972
      exitstatus = EXIT_FAILURE;
1012
973
      goto fallback;
1013
974
    }
1014
975
    if(pid == 0){
1015
976
      /* this is the child process */
1016
977
      ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
1017
978
      if(ret < 0){
1018
 
        error(0, errno, "sigaction");
1019
 
        _exit(EX_OSERR);
 
979
        perror("sigaction");
 
980
        _exit(EXIT_FAILURE);
1020
981
      }
1021
982
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
1022
983
      if(ret < 0){
1023
 
        error(0, errno, "sigprocmask");
1024
 
        _exit(EX_OSERR);
 
984
        perror("sigprocmask");
 
985
        _exit(EXIT_FAILURE);
1025
986
      }
1026
987
      
1027
988
      ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
1028
989
      if(ret == -1){
1029
 
        error(0, errno, "dup2");
1030
 
        _exit(EX_OSERR);
 
990
        perror("dup2");
 
991
        _exit(EXIT_FAILURE);
1031
992
      }
1032
993
      
1033
994
      if(dirfd(dir) < 0){
1037
998
      }
1038
999
      if(p->environ[0] == NULL){
1039
1000
        if(execv(filename, p->argv) < 0){
1040
 
          error(0, errno, "execv for %s", filename);
1041
 
          _exit(EX_OSERR);
 
1001
          perror("execv");
 
1002
          _exit(EXIT_FAILURE);
1042
1003
        }
1043
1004
      } else {
1044
1005
        if(execve(filename, p->argv, p->environ) < 0){
1045
 
          error(0, errno, "execve for %s", filename);
1046
 
          _exit(EX_OSERR);
 
1006
          perror("execve");
 
1007
          _exit(EXIT_FAILURE);
1047
1008
        }
1048
1009
      }
1049
1010
      /* no return */
1054
1015
    free(filename);
1055
1016
    plugin *new_plugin = getplugin(dirst->d_name);
1056
1017
    if(new_plugin == NULL){
1057
 
      error(0, errno, "getplugin");
 
1018
      perror("getplugin");
1058
1019
      ret = (int)(TEMP_FAILURE_RETRY
1059
1020
                  (sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
1060
1021
                               NULL)));
1061
1022
      if(ret < 0){
1062
 
        error(0, errno, "sigprocmask");
 
1023
        perror("sigprocmask");
1063
1024
      }
1064
 
      exitstatus = EX_OSERR;
 
1025
      exitstatus = EXIT_FAILURE;
1065
1026
      goto fallback;
1066
1027
    }
1067
1028
    
1074
1035
                                              &sigchld_action.sa_mask,
1075
1036
                                              NULL));
1076
1037
    if(ret < 0){
1077
 
      error(0, errno, "sigprocmask");
1078
 
      exitstatus = EX_OSERR;
 
1038
      perror("sigprocmask");
 
1039
      exitstatus = EXIT_FAILURE;
1079
1040
      goto fallback;
1080
1041
    }
1081
1042
    
1082
 
#if defined (__GNUC__) and defined (__GLIBC__)
1083
 
#if not __GLIBC_PREREQ(2, 16)
1084
 
#pragma GCC diagnostic push
1085
 
#pragma GCC diagnostic ignored "-Wsign-conversion"
1086
 
#endif
1087
 
#endif
1088
1043
    FD_SET(new_plugin->fd, &rfds_all); /* Spurious warning from
1089
 
                                          -Wconversion in GNU libc
1090
 
                                          before 2.16 */
1091
 
#if defined (__GNUC__) and defined (__GLIBC__)
1092
 
#if not __GLIBC_PREREQ(2, 16)
1093
 
#pragma GCC diagnostic pop
1094
 
#endif
1095
 
#endif
 
1044
                                          -Wconversion */
1096
1045
    
1097
1046
    if(maxfd < new_plugin->fd){
1098
1047
      maxfd = new_plugin->fd;
1119
1068
    fd_set rfds = rfds_all;
1120
1069
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
1121
1070
    if(select_ret == -1 and errno != EINTR){
1122
 
      error(0, errno, "select");
1123
 
      exitstatus = EX_OSERR;
 
1071
      perror("select");
 
1072
      exitstatus = EXIT_FAILURE;
1124
1073
      goto fallback;
1125
1074
    }
1126
1075
    /* OK, now either a process completed, or something can be read
1152
1101
          }
1153
1102
          
1154
1103
          /* Remove the plugin */
1155
 
#if defined (__GNUC__) and defined (__GLIBC__)
1156
 
#if not __GLIBC_PREREQ(2, 16)
1157
 
#pragma GCC diagnostic push
1158
 
#pragma GCC diagnostic ignored "-Wsign-conversion"
1159
 
#endif
1160
 
#endif
1161
1104
          FD_CLR(proc->fd, &rfds_all); /* Spurious warning from
1162
 
                                          -Wconversion in GNU libc
1163
 
                                          before 2.16 */
1164
 
#if defined (__GNUC__) and defined (__GLIBC__)
1165
 
#if not __GLIBC_PREREQ(2, 16)
1166
 
#pragma GCC diagnostic pop
1167
 
#endif
1168
 
#endif
 
1105
                                          -Wconversion */
1169
1106
          
1170
1107
          /* Block signal while modifying process_list */
1171
1108
          ret = (int)TEMP_FAILURE_RETRY(sigprocmask
1173
1110
                                         &sigchld_action.sa_mask,
1174
1111
                                         NULL));
1175
1112
          if(ret < 0){
1176
 
            error(0, errno, "sigprocmask");
1177
 
            exitstatus = EX_OSERR;
 
1113
            perror("sigprocmask");
 
1114
            exitstatus = EXIT_FAILURE;
1178
1115
            goto fallback;
1179
1116
          }
1180
1117
          
1187
1124
                      (sigprocmask(SIG_UNBLOCK,
1188
1125
                                   &sigchld_action.sa_mask, NULL)));
1189
1126
          if(ret < 0){
1190
 
            error(0, errno, "sigprocmask");
1191
 
            exitstatus = EX_OSERR;
 
1127
            perror("sigprocmask");
 
1128
            exitstatus = EXIT_FAILURE;
1192
1129
            goto fallback;
1193
1130
          }
1194
1131
          
1204
1141
        bool bret = print_out_password(proc->buffer,
1205
1142
                                       proc->buffer_length);
1206
1143
        if(not bret){
1207
 
          error(0, errno, "print_out_password");
1208
 
          exitstatus = EX_IOERR;
 
1144
          perror("print_out_password");
 
1145
          exitstatus = EXIT_FAILURE;
1209
1146
        }
1210
1147
        goto fallback;
1211
1148
      }
1212
1149
      
1213
1150
      /* This process has not completed.  Does it have any output? */
1214
 
#if defined (__GNUC__) and defined (__GLIBC__)
1215
 
#if not __GLIBC_PREREQ(2, 16)
1216
 
#pragma GCC diagnostic push
1217
 
#pragma GCC diagnostic ignored "-Wsign-conversion"
1218
 
#endif
1219
 
#endif
1220
1151
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){ /* Spurious
1221
1152
                                                         warning from
1222
 
                                                         -Wconversion
1223
 
                                                         in GNU libc
1224
 
                                                         before
1225
 
                                                         2.16 */
1226
 
#if defined (__GNUC__) and defined (__GLIBC__)
1227
 
#if not __GLIBC_PREREQ(2, 16)
1228
 
#pragma GCC diagnostic pop
1229
 
#endif
1230
 
#endif
 
1153
                                                         -Wconversion */
1231
1154
        /* This process had nothing to say at this time */
1232
1155
        proc = proc->next;
1233
1156
        continue;
1237
1160
        proc->buffer = realloc(proc->buffer, proc->buffer_size
1238
1161
                               + (size_t) BUFFER_SIZE);
1239
1162
        if(proc->buffer == NULL){
1240
 
          error(0, errno, "malloc");
1241
 
          exitstatus = EX_OSERR;
 
1163
          perror("malloc");
 
1164
          exitstatus = EXIT_FAILURE;
1242
1165
          goto fallback;
1243
1166
        }
1244
1167
        proc->buffer_size += BUFFER_SIZE;
1265
1188
  
1266
1189
 fallback:
1267
1190
  
1268
 
  if(plugin_list == NULL or (exitstatus != EXIT_SUCCESS
1269
 
                             and exitstatus != EX_OK)){
 
1191
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){
1270
1192
    /* Fallback if all plugins failed, none are found or an error
1271
1193
       occured */
1272
1194
    bool bret;
1280
1202
    }
1281
1203
    bret = print_out_password(passwordbuffer, len);
1282
1204
    if(not bret){
1283
 
      error(0, errno, "print_out_password");
1284
 
      exitstatus = EX_IOERR;
 
1205
      perror("print_out_password");
 
1206
      exitstatus = EXIT_FAILURE;
1285
1207
    }
1286
1208
  }
1287
1209
  
1288
1210
  /* Restore old signal handler */
1289
1211
  ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
1290
1212
  if(ret == -1){
1291
 
    error(0, errno, "sigaction");
1292
 
    exitstatus = EX_OSERR;
 
1213
    perror("sigaction");
 
1214
    exitstatus = EXIT_FAILURE;
1293
1215
  }
1294
1216
  
1295
1217
  if(custom_argv != NULL){
1310
1232
      ret = kill(p->pid, SIGTERM);
1311
1233
      if(ret == -1 and errno != ESRCH){
1312
1234
        /* Set-uid proccesses might not get closed */
1313
 
        error(0, errno, "kill");
 
1235
        perror("kill");
1314
1236
      }
1315
1237
    }
1316
1238
  }
1320
1242
    ret = wait(NULL);
1321
1243
  } while(ret >= 0);
1322
1244
  if(errno != ECHILD){
1323
 
    error(0, errno, "wait");
 
1245
    perror("wait");
1324
1246
  }
1325
1247
  
1326
1248
  free_plugin_list();