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

* plugin-runner.c (main): Move variables "tmpmax" and "tmp" into
                          the innermost scope possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8 -*- */
 
1
/*  -*- coding: utf-8; mode: c; mode: orgtbl -*- */
2
2
/*
3
3
 * Password-prompt - Read a password from the terminal and print it
4
4
 * 
33
33
#include <signal.h>             /* sig_atomic_t, raise(), struct
34
34
                                   sigaction, sigemptyset(),
35
35
                                   sigaction(), sigaddset(), SIGINT,
36
 
                                   SIGQUIT, SIGHUP, SIGTERM */
 
36
                                   SIGQUIT, SIGHUP, SIGTERM,
 
37
                                   raise() */
37
38
#include <stddef.h>             /* NULL, size_t, ssize_t */
38
39
#include <sys/types.h>          /* ssize_t */
39
40
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
51
52
                                   ARGP_KEY_ARG, ARGP_KEY_END,
52
53
                                   ARGP_ERR_UNKNOWN */
53
54
 
54
 
volatile bool quit_now = false;
 
55
volatile sig_atomic_t quit_now = 0;
 
56
int signal_received;
55
57
bool debug = false;
56
58
const char *argp_program_version = "password-prompt " VERSION;
57
59
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
58
60
 
59
 
static void termination_handler(__attribute__((unused))int signum){
60
 
  quit_now = true;
 
61
static void termination_handler(int signum){
 
62
  if(quit_now){
 
63
    return;
 
64
  }
 
65
  quit_now = 1;
 
66
  signal_received = signum;
61
67
}
62
68
 
63
69
int main(int argc, char **argv){
80
86
      { .name = NULL }
81
87
    };
82
88
    
83
 
    error_t parse_opt (int key, char *arg, struct argp_state *state) {
84
 
      switch (key) {
 
89
    error_t parse_opt (int key, char *arg, struct argp_state *state){
 
90
      switch (key){
85
91
      case 'p':
86
92
        prefix = arg;
87
93
        break;
89
95
        debug = true;
90
96
        break;
91
97
      case ARGP_KEY_ARG:
92
 
        argp_usage (state);
 
98
        argp_usage(state);
93
99
        break;
94
100
      case ARGP_KEY_END:
95
101
        break;
103
109
                         .args_doc = "",
104
110
                         .doc = "Mandos password-prompt -- Read and"
105
111
                         " output a password" };
106
 
    ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
107
 
    if (ret == ARGP_ERR_UNKNOWN){
 
112
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
113
    if(ret == ARGP_ERR_UNKNOWN){
108
114
      fprintf(stderr, "Unknown error while parsing arguments\n");
109
115
      return EXIT_FAILURE;
110
116
    }
111
117
  }
112
118
  
113
 
  if (debug){
 
119
  if(debug){
114
120
    fprintf(stderr, "Starting %s\n", argv[0]);
115
121
  }
116
 
  if (debug){
 
122
  if(debug){
117
123
    fprintf(stderr, "Storing current terminal attributes\n");
118
124
  }
119
125
  
120
 
  if (tcgetattr(STDIN_FILENO, &t_old) != 0){
 
126
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
121
127
    perror("tcgetattr");
122
128
    return EXIT_FAILURE;
123
129
  }
124
130
  
125
131
  sigemptyset(&new_action.sa_mask);
126
 
  sigaddset(&new_action.sa_mask, SIGINT);
127
 
  sigaddset(&new_action.sa_mask, SIGHUP);
128
 
  sigaddset(&new_action.sa_mask, SIGTERM);
 
132
  ret = sigaddset(&new_action.sa_mask, SIGINT);
 
133
  if(ret == -1){
 
134
    perror("sigaddset");
 
135
    return EXIT_FAILURE;
 
136
  }
 
137
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
138
  if(ret == -1){
 
139
    perror("sigaddset");
 
140
    return EXIT_FAILURE;
 
141
  }
 
142
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
143
  if(ret == -1){
 
144
    perror("sigaddset");
 
145
    return EXIT_FAILURE;
 
146
  }
 
147
  /* Need to check if the handler is SIG_IGN before handling:
 
148
     | [[info:libc:Initial Signal Actions]] |
 
149
     | [[info:libc:Basic Signal Handling]]  |
 
150
  */
129
151
  ret = sigaction(SIGINT, NULL, &old_action);
130
152
  if(ret == -1){
131
153
    perror("sigaction");
132
154
    return EXIT_FAILURE;
133
155
  }
134
 
  if (old_action.sa_handler != SIG_IGN){
 
156
  if(old_action.sa_handler != SIG_IGN){
135
157
    ret = sigaction(SIGINT, &new_action, NULL);
136
158
    if(ret == -1){
137
159
      perror("sigaction");
143
165
    perror("sigaction");
144
166
    return EXIT_FAILURE;
145
167
  }
146
 
  if (old_action.sa_handler != SIG_IGN){
 
168
  if(old_action.sa_handler != SIG_IGN){
147
169
    ret = sigaction(SIGHUP, &new_action, NULL);
148
170
    if(ret == -1){
149
171
      perror("sigaction");
155
177
    perror("sigaction");
156
178
    return EXIT_FAILURE;
157
179
  }
158
 
  if (old_action.sa_handler != SIG_IGN){
 
180
  if(old_action.sa_handler != SIG_IGN){
159
181
    ret = sigaction(SIGTERM, &new_action, NULL);
160
182
    if(ret == -1){
161
183
      perror("sigaction");
164
186
  }
165
187
  
166
188
  
167
 
  if (debug){
 
189
  if(debug){
168
190
    fprintf(stderr, "Removing echo flag from terminal attributes\n");
169
191
  }
170
192
  
171
193
  t_new = t_old;
172
194
  t_new.c_lflag &= ~ECHO;
173
 
  if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
 
195
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
174
196
    perror("tcsetattr-echo");
175
197
    return EXIT_FAILURE;
176
198
  }
177
199
 
178
 
  if (debug){
 
200
  if(debug){
179
201
    fprintf(stderr, "Waiting for input from stdin \n");
180
202
  }
181
203
  while(true){
182
 
    if (quit_now){
 
204
    if(quit_now){
183
205
      if(debug){
184
206
        fprintf(stderr, "Interrupted by signal, exiting.\n");
185
207
      }
211
233
      }
212
234
    }
213
235
    ret = getline(&buffer, &n, stdin);
214
 
    if (ret > 0){
 
236
    if(ret > 0){
215
237
      status = EXIT_SUCCESS;
216
238
      /* Make n = data size instead of allocated buffer size */
217
239
      n = (size_t)ret;
232
254
      }
233
255
      break;
234
256
    }
235
 
    if (ret < 0){
236
 
      if (errno != EINTR and not feof(stdin)){
 
257
    if(ret < 0){
 
258
      if(errno != EINTR and not feof(stdin)){
237
259
        perror("getline");
238
260
        status = EXIT_FAILURE;
239
261
        break;
243
265
       read from stdin */
244
266
    fputc('\n', stderr);
245
267
    if(debug and not quit_now){
246
 
      /* If quit_now is true, we were interrupted by a signal, and
 
268
      /* If quit_now is nonzero, we were interrupted by a signal, and
247
269
         will print that later, so no need to show this too. */
248
270
      fprintf(stderr, "getline() returned 0, retrying.\n");
249
271
    }
251
273
  
252
274
  free(buffer);
253
275
  
254
 
  if (debug){
 
276
  if(debug){
255
277
    fprintf(stderr, "Restoring terminal attributes\n");
256
278
  }
257
 
  if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
 
279
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
258
280
    perror("tcsetattr+echo");
259
281
  }
260
282
  
261
 
  if (debug){
 
283
  if(quit_now){
 
284
    sigemptyset(&old_action.sa_mask);
 
285
    old_action.sa_handler = SIG_DFL;
 
286
    ret = sigaction(signal_received, &old_action, NULL);
 
287
    if(ret == -1){
 
288
      perror("sigaction");
 
289
    }
 
290
    raise(signal_received);
 
291
  }
 
292
  
 
293
  if(debug){
262
294
    fprintf(stderr, "%s is exiting with status %d\n", argv[0],
263
295
            status);
264
296
  }