/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/password-prompt.c

  • Committer: Teddy Hogeborn
  • Date: 2011-02-27 17:33:28 UTC
  • mfrom: (237.5.2 mandos-release)
  • Revision ID: teddy@fukt.bsnet.se-20110227173328-iobho8fi50761460
Merge fix for password-prompt/plymouth conflict from Björn.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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             /* getline(), asprintf() */
26
26
 
27
 
#include <termios.h>            /* struct termios, tcsetattr(),
 
27
#include <termios.h>            /* struct termios, tcsetattr(),
28
28
                                   TCSAFLUSH, tcgetattr(), ECHO */
29
29
#include <unistd.h>             /* struct termios, tcsetattr(),
30
30
                                   STDIN_FILENO, TCSAFLUSH,
41
41
                                   getenv(), free() */
42
42
#include <dirent.h>             /* scandir(), alphasort() */
43
43
#include <stdio.h>              /* fprintf(), stderr, getline(),
44
 
                                   stdin, feof(), fputc(), vfprintf(),
45
 
                                   vasprintf() */
 
44
                                   stdin, feof(), fputc()
 
45
                                */
46
46
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
47
47
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
48
48
                                */
50
50
#include <iso646.h>             /* or, not */
51
51
#include <stdbool.h>            /* bool, false, true */
52
52
#include <inttypes.h>           /* strtoumax() */
53
 
#include <sys/stat.h>           /* struct stat, lstat(), open() */
54
 
#include <string.h>             /* strlen, rindex, memcmp, strerror()
55
 
                                 */
 
53
#include <sys/stat.h>           /* struct stat, lstat(), open() */
 
54
#include <string.h>             /* strlen, rindex, memcmp */
56
55
#include <argp.h>               /* struct argp_option, struct
57
56
                                   argp_state, struct argp,
58
57
                                   argp_parse(), error_t,
61
60
#include <sysexits.h>           /* EX_SOFTWARE, EX_OSERR,
62
61
                                   EX_UNAVAILABLE, EX_IOERR, EX_OK */
63
62
#include <fcntl.h>              /* open() */
64
 
#include <stdarg.h>             /* va_list, va_start(), ... */
65
63
 
66
64
volatile sig_atomic_t quit_now = 0;
67
65
int signal_received;
68
66
bool debug = false;
69
67
const char *argp_program_version = "password-prompt " VERSION;
70
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
71
 
 
72
 
/* Needed for conflict resolution */
73
 
const char plymouth_name[] = "plymouthd";
74
 
 
75
 
/* Function to use when printing errors */
76
 
void error_plus(int status, int errnum, const char *formatstring,
77
 
                ...){
78
 
  va_list ap;
79
 
  char *text;
80
 
  int ret;
81
 
  
82
 
  va_start(ap, formatstring);
83
 
  ret = vasprintf(&text, formatstring, ap);
84
 
  if (ret == -1){
85
 
    fprintf(stderr, "Mandos plugin %s: ",
86
 
            program_invocation_short_name);
87
 
    vfprintf(stderr, formatstring, ap);
88
 
    fprintf(stderr, ": ");
89
 
    fprintf(stderr, "%s\n", strerror(errnum));
90
 
    error(status, errno, "vasprintf while printing error");
91
 
    return;
92
 
  }
93
 
  fprintf(stderr, "Mandos plugin ");
94
 
  error(status, errnum, "%s", text);
95
 
  free(text);
96
 
}
 
68
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
69
 
 
70
/* Needed for conflic resolution */
 
71
const char plymouthd_name[] = "plymouthd";
 
72
 
97
73
 
98
74
static void termination_handler(int signum){
99
75
  if(quit_now){
125
101
    }
126
102
    
127
103
    char *cmdline_filename;
128
 
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
129
 
                   proc_entry->d_name);
 
104
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline", proc_entry->d_name);
130
105
    if(ret == -1){
131
106
      error(0, errno, "asprintf");
132
107
      return 0;
133
108
    }
134
109
    
135
 
    /* Open /proc/<pid>/cmdline */
 
110
    /* Open /proc/<pid>/cmdline  */
136
111
    cl_fd = open(cmdline_filename, O_RDONLY);
137
112
    free(cmdline_filename);
138
113
    if(cl_fd == -1){
139
 
      if(errno != ENOENT){
140
 
        error(0, errno, "open");
141
 
      }
 
114
      error(0, errno, "open");
142
115
      return 0;
143
116
    }
144
117
    
192
165
      cmdline_base = cmdline;
193
166
    }
194
167
    
195
 
    if(strcmp(cmdline_base, plymouth_name) != 0){
196
 
      if(debug){
197
 
        fprintf(stderr, "\"%s\" is not \"%s\"\n", cmdline_base,
198
 
                plymouth_name);
199
 
      }
 
168
    if(strcmp(cmdline_base, plymouthd_name) != 0){
200
169
      free(cmdline);
201
170
      return 0;
202
171
    }
203
 
    if(debug){
204
 
      fprintf(stderr, "\"%s\" equals \"%s\"\n", cmdline_base,
205
 
              plymouth_name);
206
 
    }
207
172
    free(cmdline);
208
173
    return 1;
209
174
  }
210
 
  
211
 
  struct dirent **direntries = NULL;
 
175
 
 
176
  struct dirent **direntries;
212
177
  int ret;
213
178
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
214
179
  if (ret == -1){
215
180
    error(1, errno, "scandir");
216
181
  }
217
 
  free(direntries);
218
182
  return ret > 0;
219
183
}
220
184
 
303
267
 
304
268
  if (conflict_detection()){
305
269
    if(debug){
306
 
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
 
270
      fprintf(stderr, "Stopping %s because of conflict", argv[0]);
307
271
    }
308
272
    return EXIT_FAILURE;
309
273
  }
511
475
        break;
512
476
      }
513
477
    }
514
 
    /* if(sret == 0), then the only sensible thing to do is to retry
515
 
       to read from stdin */
 
478
    /* if(sret == 0), then the only sensible thing to do is to retry to
 
479
       read from stdin */
516
480
    fputc('\n', stderr);
517
481
    if(debug and not quit_now){
518
482
      /* If quit_now is nonzero, we were interrupted by a signal, and