/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 at bsnet
  • Date: 2011-12-24 23:17:02 UTC
  • Revision ID: teddy@fukt.bsnet.se-20111224231702-1ffgu6r02p0bz9co
* plugins.d/splashy.c (error_plus): Check format string.
* plugins.d/askpass-fifo.c (error_plus): - '' -
* plugins.d/plymouth.c (error_plus): - '' -
* plugins.d/password-prompt.c (error_plus): - '' -
* plugins.d/usplash.c (error_plus): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Password-prompt - Read a password from the terminal and print it
4
4
 * 
5
 
 * Copyright © 2008-2018 Teddy Hogeborn
6
 
 * Copyright © 2008-2018 Björn Påhlsson
7
 
 * 
8
 
 * This file is part of Mandos.
9
 
 * 
10
 
 * Mandos is free software: you can redistribute it and/or modify it
11
 
 * under the terms of the GNU General Public License as published by
12
 
 * the Free Software Foundation, either version 3 of the License, or
13
 
 * (at your option) any later version.
14
 
 * 
15
 
 * Mandos is distributed in the hope that it will be useful, but
 
5
 * Copyright © 2008-2011 Teddy Hogeborn
 
6
 * Copyright © 2008-2011 Björn Påhlsson
 
7
 * 
 
8
 * This program is free software: you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License as
 
10
 * published by the Free Software Foundation, either version 3 of the
 
11
 * License, or (at your option) any later version.
 
12
 * 
 
13
 * This program is distributed in the hope that it will be useful, but
16
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
17
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
16
 * General Public License for more details.
19
17
 * 
20
18
 * You should have received a copy of the GNU General Public License
21
 
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
19
 * along with this program.  If not, see
 
20
 * <http://www.gnu.org/licenses/>.
22
21
 * 
23
22
 * Contact the authors at <mandos@recompile.se>.
24
23
 */
83
82
  
84
83
  va_start(ap, formatstring);
85
84
  ret = vasprintf(&text, formatstring, ap);
86
 
  if(ret == -1){
 
85
  if (ret == -1){
87
86
    fprintf(stderr, "Mandos plugin %s: ",
88
87
            program_invocation_short_name);
89
88
    vfprintf(stderr, formatstring, ap);
90
 
    fprintf(stderr, ": %s\n", strerror(errnum));
 
89
    fprintf(stderr, ": ");
 
90
    fprintf(stderr, "%s\n", strerror(errnum));
91
91
    error(status, errno, "vasprintf while printing error");
92
92
    return;
93
93
  }
110
110
     from the terminal.  Password-prompt will exit if it detects
111
111
     plymouth since plymouth performs the same functionality.
112
112
   */
113
 
  __attribute__((nonnull))
114
113
  int is_plymouth(const struct dirent *proc_entry){
115
114
    int ret;
116
115
    int cl_fd;
117
116
    {
118
 
      uintmax_t proc_id;
 
117
      uintmax_t maxvalue;
119
118
      char *tmp;
120
119
      errno = 0;
121
 
      proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
 
120
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
122
121
      
123
122
      if(errno != 0 or *tmp != '\0'
124
 
         or proc_id != (uintmax_t)((pid_t)proc_id)){
 
123
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
125
124
        return 0;
126
125
      }
127
126
    }
130
129
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
131
130
                   proc_entry->d_name);
132
131
    if(ret == -1){
133
 
      error_plus(0, errno, "asprintf");
 
132
      error(0, errno, "asprintf");
134
133
      return 0;
135
134
    }
136
135
    
139
138
    free(cmdline_filename);
140
139
    if(cl_fd == -1){
141
140
      if(errno != ENOENT){
142
 
        error_plus(0, errno, "open");
 
141
        error(0, errno, "open");
143
142
      }
144
143
      return 0;
145
144
    }
156
155
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
157
156
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
158
157
          if(tmp == NULL){
159
 
            error_plus(0, errno, "realloc");
 
158
            error(0, errno, "realloc");
160
159
            free(cmdline);
161
160
            close(cl_fd);
162
161
            return 0;
169
168
        sret = read(cl_fd, cmdline + cmdline_len,
170
169
                    cmdline_allocated - cmdline_len);
171
170
        if(sret == -1){
172
 
          error_plus(0, errno, "read");
 
171
          error(0, errno, "read");
173
172
          free(cmdline);
174
173
          close(cl_fd);
175
174
          return 0;
178
177
      } while(sret != 0);
179
178
      ret = close(cl_fd);
180
179
      if(ret == -1){
181
 
        error_plus(0, errno, "close");
 
180
        error(0, errno, "close");
182
181
        free(cmdline);
183
182
        return 0;
184
183
      }
213
212
  struct dirent **direntries = NULL;
214
213
  int ret;
215
214
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
216
 
  if(ret == -1){
217
 
    error_plus(1, errno, "scandir");
218
 
  }
219
 
  {
220
 
    int i = ret;
221
 
    while(i--){
222
 
      free(direntries[i]);
223
 
    }
 
215
  if (ret == -1){
 
216
    error(1, errno, "scandir");
224
217
  }
225
218
  free(direntries);
226
219
  return ret > 0;
257
250
      { .name = NULL }
258
251
    };
259
252
    
260
 
    __attribute__((nonnull(3)))
261
253
    error_t parse_opt (int key, char *arg, struct argp_state *state){
262
254
      errno = 0;
263
255
      switch (key){
299
291
    case ENOMEM:
300
292
    default:
301
293
      errno = ret;
302
 
      error_plus(0, errno, "argp_parse");
 
294
      error(0, errno, "argp_parse");
303
295
      return EX_OSERR;
304
296
    case EINVAL:
305
297
      return EX_USAGE;
310
302
    fprintf(stderr, "Starting %s\n", argv[0]);
311
303
  }
312
304
 
313
 
  if(conflict_detection()){
 
305
  if (conflict_detection()){
314
306
    if(debug){
315
307
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
316
308
    }
323
315
  
324
316
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
325
317
    int e = errno;
326
 
    error_plus(0, errno, "tcgetattr");
 
318
    error(0, errno, "tcgetattr");
327
319
    switch(e){
328
320
    case EBADF:
329
321
    case ENOTTY:
336
328
  sigemptyset(&new_action.sa_mask);
337
329
  ret = sigaddset(&new_action.sa_mask, SIGINT);
338
330
  if(ret == -1){
339
 
    error_plus(0, errno, "sigaddset");
 
331
    error(0, errno, "sigaddset");
340
332
    return EX_OSERR;
341
333
  }
342
334
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
343
335
  if(ret == -1){
344
 
    error_plus(0, errno, "sigaddset");
 
336
    error(0, errno, "sigaddset");
345
337
    return EX_OSERR;
346
338
  }
347
339
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
348
340
  if(ret == -1){
349
 
    error_plus(0, errno, "sigaddset");
 
341
    error(0, errno, "sigaddset");
350
342
    return EX_OSERR;
351
343
  }
352
344
  /* Need to check if the handler is SIG_IGN before handling:
355
347
  */
356
348
  ret = sigaction(SIGINT, NULL, &old_action);
357
349
  if(ret == -1){
358
 
    error_plus(0, errno, "sigaction");
 
350
    error(0, errno, "sigaction");
359
351
    return EX_OSERR;
360
352
  }
361
353
  if(old_action.sa_handler != SIG_IGN){
362
354
    ret = sigaction(SIGINT, &new_action, NULL);
363
355
    if(ret == -1){
364
 
      error_plus(0, errno, "sigaction");
 
356
      error(0, errno, "sigaction");
365
357
      return EX_OSERR;
366
358
    }
367
359
  }
368
360
  ret = sigaction(SIGHUP, NULL, &old_action);
369
361
  if(ret == -1){
370
 
    error_plus(0, errno, "sigaction");
 
362
    error(0, errno, "sigaction");
371
363
    return EX_OSERR;
372
364
  }
373
365
  if(old_action.sa_handler != SIG_IGN){
374
366
    ret = sigaction(SIGHUP, &new_action, NULL);
375
367
    if(ret == -1){
376
 
      error_plus(0, errno, "sigaction");
 
368
      error(0, errno, "sigaction");
377
369
      return EX_OSERR;
378
370
    }
379
371
  }
380
372
  ret = sigaction(SIGTERM, NULL, &old_action);
381
373
  if(ret == -1){
382
 
    error_plus(0, errno, "sigaction");
 
374
    error(0, errno, "sigaction");
383
375
    return EX_OSERR;
384
376
  }
385
377
  if(old_action.sa_handler != SIG_IGN){
386
378
    ret = sigaction(SIGTERM, &new_action, NULL);
387
379
    if(ret == -1){
388
 
      error_plus(0, errno, "sigaction");
 
380
      error(0, errno, "sigaction");
389
381
      return EX_OSERR;
390
382
    }
391
383
  }
399
391
  t_new.c_lflag &= ~(tcflag_t)ECHO;
400
392
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
401
393
    int e = errno;
402
 
    error_plus(0, errno, "tcsetattr-echo");
 
394
    error(0, errno, "tcsetattr-echo");
403
395
    switch(e){
404
396
    case EBADF:
405
397
    case ENOTTY:
469
461
        sret = write(STDOUT_FILENO, buffer + written, n - written);
470
462
        if(sret < 0){
471
463
          int e = errno;
472
 
          error_plus(0, errno, "write");
 
464
          error(0, errno, "write");
473
465
          switch(e){
474
466
          case EBADF:
475
467
          case EFAULT:
491
483
      sret = close(STDOUT_FILENO);
492
484
      if(sret == -1){
493
485
        int e = errno;
494
 
        error_plus(0, errno, "close");
 
486
        error(0, errno, "close");
495
487
        switch(e){
496
488
        case EBADF:
497
489
          status = EX_OSFILE;
507
499
    if(sret < 0){
508
500
      int e = errno;
509
501
      if(errno != EINTR and not feof(stdin)){
510
 
        error_plus(0, errno, "getline");
 
502
        error(0, errno, "getline");
511
503
        switch(e){
512
504
        case EBADF:
513
505
          status = EX_UNAVAILABLE;
514
 
          break;
515
506
        case EIO:
516
507
        case EINVAL:
517
508
        default:
537
528
    fprintf(stderr, "Restoring terminal attributes\n");
538
529
  }
539
530
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
540
 
    error_plus(0, errno, "tcsetattr+echo");
 
531
    error(0, errno, "tcsetattr+echo");
541
532
  }
542
533
  
543
534
  if(quit_now){
545
536
    old_action.sa_handler = SIG_DFL;
546
537
    ret = sigaction(signal_received, &old_action, NULL);
547
538
    if(ret == -1){
548
 
      error_plus(0, errno, "sigaction");
 
539
      error(0, errno, "sigaction");
549
540
    }
550
541
    raise(signal_received);
551
542
  }