/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/mandos-client.c

* network-hooks.d/openvpn: Tolerate relative MANDOSNETHOOKDIR path.
  (stop): Bug fix: Fix quote escapes.
* network-hooks.d/openvpn.conf: Remove compression.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008-2012 Teddy Hogeborn
13
 
 * Copyright © 2008-2012 Björn Påhlsson
 
12
 * Copyright © 2008-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 Björn Påhlsson
14
14
 * 
15
15
 * This program is free software: you can redistribute it and/or
16
16
 * modify it under the terms of the GNU General Public License as
170
170
 
171
171
/* Function to use when printing errors */
172
172
void perror_plus(const char *print_text){
173
 
  int e = errno;
174
173
  fprintf(stderr, "Mandos plugin %s: ",
175
174
          program_invocation_short_name);
176
 
  errno = e;
177
175
  perror(print_text);
178
176
}
179
177
 
180
 
__attribute__((format (gnu_printf, 2, 3)))
181
178
int fprintf_plus(FILE *stream, const char *format, ...){
182
179
  va_list ap;
183
180
  va_start (ap, format);
205
202
}
206
203
 
207
204
/* Add server to set of servers to retry periodically */
208
 
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
209
 
                int af){
 
205
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
206
               int af){
210
207
  int ret;
211
208
  server *new_server = malloc(sizeof(server));
212
209
  if(new_server == NULL){
213
210
    perror_plus("malloc");
214
 
    return false;
 
211
    return -1;
215
212
  }
216
213
  *new_server = (server){ .ip = strdup(ip),
217
214
                          .port = port,
219
216
                          .af = af };
220
217
  if(new_server->ip == NULL){
221
218
    perror_plus("strdup");
222
 
    return false;
 
219
    return -1;
223
220
  }
224
221
  /* Special case of first server */
225
222
  if (mc.current_server == NULL){
236
233
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
237
234
  if(ret == -1){
238
235
    perror_plus("clock_gettime");
239
 
    return false;
 
236
    return -1;
240
237
  }
241
 
  return true;
 
238
  return 0;
242
239
}
243
240
 
244
241
/* 
1033
1030
      if(ret == 0){
1034
1031
        avahi_simple_poll_quit(mc.simple_poll);
1035
1032
      } else {
1036
 
        if(not add_server(ip, port, interface,
1037
 
                          avahi_proto_to_af(proto))){
1038
 
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1039
 
                       " list\n", name);
1040
 
        }
 
1033
        ret = add_server(ip, port, interface,
 
1034
                         avahi_proto_to_af(proto));
1041
1035
      }
1042
1036
    }
1043
1037
  }
1450
1444
          perror_plus("setenv");
1451
1445
          _exit(EX_OSERR);
1452
1446
        }
1453
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1447
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1454
1448
        if(ret == -1){
1455
1449
          perror_plus("setenv");
1456
1450
          _exit(EX_OSERR);
1473
1467
          _exit(EX_OSERR);
1474
1468
        }
1475
1469
        free(delaystring);
1476
 
        if(connect_to != NULL){
1477
 
          ret = setenv("CONNECT", connect_to, 1);
1478
 
          if(ret == -1){
1479
 
            perror_plus("setenv");
1480
 
            _exit(EX_OSERR);
1481
 
          }
1482
 
        }
1483
 
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1484
 
          perror_plus("execl");
1485
 
          _exit(EXIT_FAILURE);
1486
 
        }
 
1470
        ret = execl(fullname, direntry->d_name, mode, NULL);
 
1471
        perror_plus("execl");
1487
1472
      } else {
1488
1473
        int status;
1489
1474
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1608
1593
        .group = 2 },
1609
1594
      { .name = "retry", .key = 132,
1610
1595
        .arg = "SECONDS",
1611
 
        .doc = "Retry interval used when denied by the Mandos server",
 
1596
        .doc = "Retry interval used when denied by the mandos server",
1612
1597
        .group = 2 },
1613
1598
      { .name = "network-hook-dir", .key = 133,
1614
1599
        .arg = "DIR",
1686
1671
        argp_state_help(state, state->out_stream,
1687
1672
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1688
1673
      case 'V':                 /* --version */
 
1674
        fprintf_plus(state->out_stream,
 
1675
                     "Mandos plugin mandos-client: ");
1689
1676
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1690
1677
        exit(argp_err_exit_status);
1691
1678
        break;