/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/passprompt.c

  • Committer: Teddy Hogeborn
  • Date: 2008-08-04 20:43:31 UTC
  • mfrom: (24.1.17 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080804204331-zgu42g8ii997h1l2
* ca.pem: Removed.
* cert.pem: - '' -
* client-cert.pem: - '' -
* client-key.pem: - '' -
* crl.pem: - '' -
* key.pem: - '' -

* plugins.d/mandosclient.c (start_mandos_communication): Change "to"
                                    to be a union.  All users changed.

* server.py: Changed log severity for many log messages.
  (Client.__init__): Take all config file settins as a dict instead of
                     as keyword arguments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#include <iso646.h>             /* or, not */
45
45
#include <stdbool.h>            /* bool, false, true */
46
46
#include <string.h>             /* strlen, rindex, strncmp, strcmp */
47
 
#include <getopt.h>             /* getopt_long */
 
47
#include <argp.h>               /* struct argp_option,
 
48
                                   struct argp_state, struct argp,
 
49
                                   argp_parse() */
48
50
 
49
51
volatile bool quit_now = false;
50
52
bool debug = false;
 
53
const char *argp_program_version = "passprompt 0.9";
 
54
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
51
55
 
52
56
static void termination_handler(__attribute__((unused))int signum){
53
57
  quit_now = true;
63
67
  struct sigaction old_action,
64
68
    new_action = { .sa_handler = termination_handler,
65
69
                   .sa_flags = 0 };
66
 
 
67
 
  while (true){
68
 
    static struct option long_options[] = {
69
 
      {"debug", no_argument, (int *)&debug, 1},
70
 
      {"prefix", required_argument, 0, 'p'},
71
 
      {0, 0, 0, 0} };
72
 
 
73
 
    int option_index = 0;
74
 
    ret = getopt_long (argc, argv, "p:", long_options, &option_index);
75
 
 
76
 
    if (ret == -1){
77
 
      break;
78
 
    }
79
 
      
80
 
    switch(ret){
81
 
    case 0:
82
 
      break;
83
 
    case 'p':
84
 
      prefix = optarg;
85
 
      break;
86
 
    default:
87
 
      fprintf(stderr, "bad arguments\n");
88
 
      exit(EXIT_FAILURE);
89
 
    }
 
70
  {
 
71
    struct argp_option options[] = {
 
72
      { .name = "prefix", .key = 'p',
 
73
        .arg = "PREFIX", .flags = 0,
 
74
        .doc = "Prefix used before the passprompt", .group = 2 },
 
75
      { .name = "debug", .key = 128,
 
76
        .doc = "Debug mode", .group = 3 },
 
77
      { .name = NULL }
 
78
    };
 
79
  
 
80
    error_t parse_opt (int key, char *arg, struct argp_state *state) {
 
81
      /* Get the INPUT argument from `argp_parse', which we know is a
 
82
         pointer to our plugin list pointer. */
 
83
      switch (key) {
 
84
      case 'p':
 
85
        prefix = arg;
 
86
        break;
 
87
      case 128:
 
88
        debug = true;
 
89
        break;
 
90
      case ARGP_KEY_ARG:
 
91
        argp_usage (state);
 
92
        break;
 
93
      case ARGP_KEY_END:
 
94
        break;
 
95
      default:
 
96
        return ARGP_ERR_UNKNOWN;
 
97
      }
 
98
      return 0;
 
99
    }
 
100
  
 
101
    struct argp argp = { .options = options, .parser = parse_opt,
 
102
                         .args_doc = "",
 
103
                         .doc = "Mandos Passprompt -- Provides a passprompt" };
 
104
    argp_parse (&argp, argc, argv, 0, 0, NULL);
90
105
  }
91
 
      
 
106
    
92
107
  if (debug){
93
108
    fprintf(stderr, "Starting %s\n", argv[0]);
94
109
  }