/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

  • Committer: Teddy Hogeborn
  • Date: 2012-06-16 22:38:54 UTC
  • Revision ID: teddy@recompile.se-20120616223854-mfxkg6fgqr56sma5
* plugins.d/mandos-client (mandos_context): Removed "simple_poll"
                                            member.
  (simple_poll): New global variable.  All users changed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
43
                                   stdout, ferror(), remove() */
44
 
#include <stdint.h>             /* uint16_t, uint32_t */
 
44
#include <stdint.h>             /* uint16_t, uint32_t, intptr_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
47
47
                                   strtof(), abort() */
61
61
                                 */
62
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
63
                                   strtoimax() */
64
 
#include <assert.h>             /* assert() */
65
64
#include <errno.h>              /* perror(), errno,
66
65
                                   program_invocation_short_name */
67
66
#include <time.h>               /* nanosleep(), time(), sleep() */
88
87
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
89
88
                                   WEXITSTATUS(), WTERMSIG() */
90
89
#include <grp.h>                /* setgroups() */
 
90
#include <argz.h>               /* argz_add_sep(), argz_next(),
 
91
                                   argz_delete(), argz_append(),
 
92
                                   argz_stringify(), argz_add(),
 
93
                                   argz_count() */
91
94
 
92
95
#ifdef __linux__
93
96
#include <sys/klog.h>           /* klogctl() */
135
138
static const char sys_class_net[] = "/sys/class/net";
136
139
char *connect_to = NULL;
137
140
const char *hookdir = HOOKDIR;
 
141
uid_t uid = 65534;
 
142
gid_t gid = 65534;
138
143
 
139
144
/* Doubly linked list that need to be circularly linked when used */
140
145
typedef struct server{
141
146
  const char *ip;
142
 
  uint16_t port;
 
147
  in_port_t port;
143
148
  AvahiIfIndex if_index;
144
149
  int af;
145
150
  struct timespec last_seen;
149
154
 
150
155
/* Used for passing in values through the Avahi callback functions */
151
156
typedef struct {
152
 
  AvahiSimplePoll *simple_poll;
153
157
  AvahiServer *server;
154
158
  gnutls_certificate_credentials_t cred;
155
159
  unsigned int dh_bits;
159
163
  server *current_server;
160
164
} mandos_context;
161
165
 
162
 
/* global context so signal handler can reach it*/
163
 
mandos_context mc = { .simple_poll = NULL, .server = NULL,
164
 
                      .dh_bits = 1024, .priority = "SECURE256"
165
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP",
166
 
                      .current_server = NULL };
 
166
/* global so signal handler can reach it*/
 
167
AvahiSimplePoll *simple_poll;
 
168
mandos_context mc = { .server = NULL, .dh_bits = 1024,
 
169
                      .priority = "SECURE256:!CTYPE-X.509:"
 
170
                      "+CTYPE-OPENPGP", .current_server = NULL };
167
171
 
168
172
sig_atomic_t quit_now = 0;
169
173
int signal_received = 0;
205
209
}
206
210
 
207
211
/* Add server to set of servers to retry periodically */
208
 
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
212
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
209
213
                int af){
210
214
  int ret;
211
215
  server *new_server = malloc(sizeof(server));
249
253
  gpgme_error_t rc;
250
254
  gpgme_engine_info_t engine_info;
251
255
  
252
 
  
253
256
  /*
254
257
   * Helper function to insert pub and seckey to the engine keyring.
255
258
   */
465
468
}
466
469
 
467
470
static const char * safer_gnutls_strerror(int value){
468
 
  const char *ret = gnutls_strerror(value); /* Spurious warning from
469
 
                                               -Wunreachable-code */
 
471
  const char *ret = gnutls_strerror(value);
470
472
  if(ret == NULL)
471
473
    ret = "(unknown)";
472
474
  return ret;
617
619
                      __attribute__((unused)) const char *txt){}
618
620
 
619
621
/* Called when a Mandos server is found */
620
 
static int start_mandos_communication(const char *ip, uint16_t port,
 
622
static int start_mandos_communication(const char *ip, in_port_t port,
621
623
                                      AvahiIfIndex if_index,
622
624
                                      int af){
623
625
  int ret, tcp_sd = -1;
662
664
  
663
665
  if(debug){
664
666
    fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
665
 
                 PRIu16 "\n", ip, port);
 
667
                 PRIuMAX "\n", ip, (uintmax_t)port);
666
668
  }
667
669
  
668
670
  tcp_sd = socket(pf, SOCK_STREAM, 0);
699
701
    goto mandos_end;
700
702
  }
701
703
  if(af == AF_INET6){
702
 
    to.in6.sin6_port = htons(port); /* Spurious warnings from
703
 
                                       -Wconversion and
704
 
                                       -Wunreachable-code */
705
 
    
 
704
    to.in6.sin6_port = htons(port);    
706
705
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
707
706
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
708
707
                                -Wunreachable-code*/
732
731
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
733
732
        perror_plus("if_indextoname");
734
733
      } else {
735
 
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
736
 
                     "\n", ip, interface, port);
 
734
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
 
735
                     "\n", ip, interface, (uintmax_t)port);
737
736
      }
738
737
    } else {
739
 
      fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
740
 
                   ip, port);
 
738
      fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
 
739
                   ip, (uintmax_t)port);
741
740
    }
742
741
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
743
742
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
821
820
    goto mandos_end;
822
821
  }
823
822
  
824
 
  /* Spurious warning from -Wint-to-pointer-cast */
825
 
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
823
  /* This casting via intptr_t is to eliminate warning about casting
 
824
     an int to a pointer type.  This is exactly how the GnuTLS Guile
 
825
     function "set-session-transport-fd!" does it. */
 
826
  gnutls_transport_set_ptr(session,
 
827
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
826
828
  
827
829
  if(quit_now){
828
830
    errno = EINTR;
1001
1003
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
1002
1004
                             flags,
1003
1005
                             AVAHI_GCC_UNUSED void* userdata){
1004
 
  assert(r);
 
1006
  if(r == NULL){
 
1007
    return;
 
1008
  }
1005
1009
  
1006
1010
  /* Called whenever a service has been resolved successfully or
1007
1011
     timed out */
1028
1032
                     PRIdMAX ") on port %" PRIu16 "\n", name,
1029
1033
                     host_name, ip, (intmax_t)interface, port);
1030
1034
      }
1031
 
      int ret = start_mandos_communication(ip, port, interface,
 
1035
      int ret = start_mandos_communication(ip, (in_port_t)port,
 
1036
                                           interface,
1032
1037
                                           avahi_proto_to_af(proto));
1033
1038
      if(ret == 0){
1034
 
        avahi_simple_poll_quit(mc.simple_poll);
 
1039
        avahi_simple_poll_quit(simple_poll);
1035
1040
      } else {
1036
 
        if(not add_server(ip, port, interface,
 
1041
        if(not add_server(ip, (in_port_t)port, interface,
1037
1042
                          avahi_proto_to_af(proto))){
1038
1043
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1039
1044
                       " list\n", name);
1054
1059
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
1055
1060
                            flags,
1056
1061
                            AVAHI_GCC_UNUSED void* userdata){
1057
 
  assert(b);
 
1062
  if(b == NULL){
 
1063
    return;
 
1064
  }
1058
1065
  
1059
1066
  /* Called whenever a new services becomes available on the LAN or
1060
1067
     is removed from the LAN */
1069
1076
    
1070
1077
    fprintf_plus(stderr, "(Avahi browser) %s\n",
1071
1078
                 avahi_strerror(avahi_server_errno(mc.server)));
1072
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1079
    avahi_simple_poll_quit(simple_poll);
1073
1080
    return;
1074
1081
    
1075
1082
  case AVAHI_BROWSER_NEW:
1108
1115
  signal_received = sig;
1109
1116
  int old_errno = errno;
1110
1117
  /* set main loop to exit */
1111
 
  if(mc.simple_poll != NULL){
1112
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1118
  if(simple_poll != NULL){
 
1119
    avahi_simple_poll_quit(simple_poll);
1113
1120
  }
1114
1121
  errno = old_errno;
1115
1122
}
1116
1123
 
1117
1124
bool get_flags(const char *ifname, struct ifreq *ifr){
1118
1125
  int ret;
 
1126
  error_t ret_errno;
1119
1127
  
1120
1128
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1121
1129
  if(s < 0){
 
1130
    ret_errno = errno;
1122
1131
    perror_plus("socket");
 
1132
    errno = ret_errno;
1123
1133
    return false;
1124
1134
  }
1125
1135
  strcpy(ifr->ifr_name, ifname);
1126
1136
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
1127
1137
  if(ret == -1){
1128
1138
    if(debug){
 
1139
      ret_errno = errno;
1129
1140
      perror_plus("ioctl SIOCGIFFLAGS");
 
1141
      errno = ret_errno;
1130
1142
    }
1131
1143
    return false;
1132
1144
  }
1201
1213
}
1202
1214
 
1203
1215
/* 
1204
 
 * This function determines if a directory entry in /sys/class/net
1205
 
 * corresponds to an acceptable network device which is up.
1206
 
 * (This function is passed to scandir(3) as a filter function.)
1207
 
 */
1208
 
int up_interface(const struct dirent *if_entry){
1209
 
  if(if_entry->d_name[0] == '.'){
1210
 
    return 0;
1211
 
  }
1212
 
  
1213
 
  struct ifreq ifr;
1214
 
  if(not get_flags(if_entry->d_name, &ifr)){
1215
 
    if(debug){
1216
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1217
 
                   "\"%s\"\n", if_entry->d_name);
1218
 
    }
1219
 
    return 0;
1220
 
  }
1221
 
  
1222
 
  /* Reject down interfaces */
1223
 
  if(not (ifr.ifr_flags & IFF_UP)){
1224
 
    if(debug){
1225
 
      fprintf_plus(stderr, "Rejecting down interface \"%s\"\n",
1226
 
                   if_entry->d_name);
1227
 
    }
1228
 
    return 0;
1229
 
  }
1230
 
  
1231
 
  /* Reject non-running interfaces */
1232
 
  if(not (ifr.ifr_flags & IFF_RUNNING)){
1233
 
    if(debug){
1234
 
      fprintf_plus(stderr, "Rejecting non-running interface \"%s\"\n",
1235
 
                   if_entry->d_name);
1236
 
    }
1237
 
    return 0;
1238
 
  }
1239
 
  
1240
 
  if(not good_flags(if_entry->d_name, &ifr)){
1241
 
    return 0;
1242
 
  }
1243
 
  return 1;
 
1216
 * This function determines if a network interface is up.
 
1217
 */
 
1218
bool interface_is_up(const char *interface){
 
1219
  struct ifreq ifr;
 
1220
  if(not get_flags(interface, &ifr)){
 
1221
    if(debug){
 
1222
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1223
                   "\"%s\"\n", interface);
 
1224
    }
 
1225
    return false;
 
1226
  }
 
1227
  
 
1228
  return (bool)(ifr.ifr_flags & IFF_UP);
 
1229
}
 
1230
 
 
1231
/* 
 
1232
 * This function determines if a network interface is running
 
1233
 */
 
1234
bool interface_is_running(const char *interface){
 
1235
  struct ifreq ifr;
 
1236
  if(not get_flags(interface, &ifr)){
 
1237
    if(debug){
 
1238
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1239
                   "\"%s\"\n", interface);
 
1240
    }
 
1241
    return false;
 
1242
  }
 
1243
  
 
1244
  return (bool)(ifr.ifr_flags & IFF_RUNNING);
1244
1245
}
1245
1246
 
1246
1247
int notdotentries(const struct dirent *direntry){
1363
1364
                                         mc.current_server->if_index,
1364
1365
                                         mc.current_server->af);
1365
1366
        if(ret == 0){
1366
 
          avahi_simple_poll_quit(mc.simple_poll);
 
1367
          avahi_simple_poll_quit(simple_poll);
1367
1368
          return 0;
1368
1369
        }
1369
1370
        ret = clock_gettime(CLOCK_MONOTONIC,
1387
1388
  }
1388
1389
}
1389
1390
 
 
1391
/* Set effective uid to 0, return errno */
 
1392
error_t raise_privileges(void){
 
1393
  error_t old_errno = errno;
 
1394
  error_t ret_errno = 0;
 
1395
  if(seteuid(0) == -1){
 
1396
    ret_errno = errno;
 
1397
    perror_plus("seteuid");
 
1398
  }
 
1399
  errno = old_errno;
 
1400
  return ret_errno;
 
1401
}
 
1402
 
 
1403
/* Set effective and real user ID to 0.  Return errno. */
 
1404
error_t raise_privileges_permanently(void){
 
1405
  error_t old_errno = errno;
 
1406
  error_t ret_errno = raise_privileges();
 
1407
  if(ret_errno != 0){
 
1408
    errno = old_errno;
 
1409
    return ret_errno;
 
1410
  }
 
1411
  if(setuid(0) == -1){
 
1412
    ret_errno = errno;
 
1413
    perror_plus("seteuid");
 
1414
  }
 
1415
  errno = old_errno;
 
1416
  return ret_errno;
 
1417
}
 
1418
 
 
1419
/* Set effective user ID to unprivileged saved user ID */
 
1420
error_t lower_privileges(void){
 
1421
  error_t old_errno = errno;
 
1422
  error_t ret_errno = 0;
 
1423
  if(seteuid(uid) == -1){
 
1424
    ret_errno = errno;
 
1425
    perror_plus("seteuid");
 
1426
  }
 
1427
  errno = old_errno;
 
1428
  return ret_errno;
 
1429
}
 
1430
 
 
1431
/* Lower privileges permanently */
 
1432
error_t lower_privileges_permanently(void){
 
1433
  error_t old_errno = errno;
 
1434
  error_t ret_errno = 0;
 
1435
  if(setuid(uid) == -1){
 
1436
    ret_errno = errno;
 
1437
    perror_plus("setuid");
 
1438
  }
 
1439
  errno = old_errno;
 
1440
  return ret_errno;
 
1441
}
 
1442
 
1390
1443
bool run_network_hooks(const char *mode, const char *interface,
1391
1444
                       const float delay){
1392
1445
  struct dirent **direntries;
1395
1448
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1396
1449
                         alphasort);
1397
1450
  if(numhooks == -1){
1398
 
    perror_plus("scandir");
 
1451
    if(errno == ENOENT){
 
1452
      if(debug){
 
1453
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1454
                     " found\n", hookdir);
 
1455
      }
 
1456
    } else {
 
1457
      perror_plus("scandir");
 
1458
    }
1399
1459
  } else {
1400
1460
    int devnull = open("/dev/null", O_RDONLY);
1401
1461
    for(int i = 0; i < numhooks; i++){
1414
1474
      if(hook_pid == 0){
1415
1475
        /* Child */
1416
1476
        /* Raise privileges */
1417
 
        errno = 0;
1418
 
        ret = seteuid(0);
1419
 
        if(ret == -1){
1420
 
          perror_plus("seteuid");
1421
 
        }
1422
 
        /* Raise privileges even more */
1423
 
        errno = 0;
1424
 
        ret = setuid(0);
1425
 
        if(ret == -1){
1426
 
          perror_plus("setuid");
1427
 
        }
 
1477
        raise_privileges_permanently();
1428
1478
        /* Set group */
1429
1479
        errno = 0;
1430
1480
        ret = setgid(0);
1523
1573
  return true;
1524
1574
}
1525
1575
 
 
1576
error_t bring_up_interface(const char *const interface,
 
1577
                           const float delay){
 
1578
  int sd = -1;
 
1579
  error_t old_errno = errno;
 
1580
  error_t ret_errno = 0;
 
1581
  int ret, ret_setflags;
 
1582
  struct ifreq network;
 
1583
  unsigned int if_index = if_nametoindex(interface);
 
1584
  if(if_index == 0){
 
1585
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1586
    errno = old_errno;
 
1587
    return ENXIO;
 
1588
  }
 
1589
  
 
1590
  if(quit_now){
 
1591
    errno = old_errno;
 
1592
    return EINTR;
 
1593
  }
 
1594
  
 
1595
  if(not interface_is_up(interface)){
 
1596
    if(not get_flags(interface, &network) and debug){
 
1597
      ret_errno = errno;
 
1598
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1599
                   "\"%s\"\n", interface);
 
1600
      return ret_errno;
 
1601
    }
 
1602
    network.ifr_flags |= IFF_UP;
 
1603
    
 
1604
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1605
    if(sd < 0){
 
1606
      ret_errno = errno;
 
1607
      perror_plus("socket");
 
1608
      errno = old_errno;
 
1609
      return ret_errno;
 
1610
    }
 
1611
  
 
1612
    if(quit_now){
 
1613
      close(sd);
 
1614
      errno = old_errno;
 
1615
      return EINTR;
 
1616
    }
 
1617
    
 
1618
    if(debug){
 
1619
      fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
 
1620
                   interface);
 
1621
    }
 
1622
    
 
1623
    /* Raise priviliges */
 
1624
    raise_privileges();
 
1625
    
 
1626
#ifdef __linux__
 
1627
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1628
       messages about the network interface to mess up the prompt */
 
1629
    int ret_linux = klogctl(8, NULL, 5);
 
1630
    bool restore_loglevel = true;
 
1631
    if(ret_linux == -1){
 
1632
      restore_loglevel = false;
 
1633
      perror_plus("klogctl");
 
1634
    }
 
1635
#endif  /* __linux__ */
 
1636
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1637
    ret_errno = errno;
 
1638
#ifdef __linux__
 
1639
    if(restore_loglevel){
 
1640
      ret_linux = klogctl(7, NULL, 0);
 
1641
      if(ret_linux == -1){
 
1642
        perror_plus("klogctl");
 
1643
      }
 
1644
    }
 
1645
#endif  /* __linux__ */
 
1646
    
 
1647
    /* Lower privileges */
 
1648
    lower_privileges();
 
1649
    
 
1650
    /* Close the socket */
 
1651
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1652
    if(ret == -1){
 
1653
      perror_plus("close");
 
1654
    }
 
1655
    
 
1656
    if(ret_setflags == -1){
 
1657
      errno = ret_errno;
 
1658
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1659
      errno = old_errno;
 
1660
      return ret_errno;
 
1661
    }
 
1662
  } else if(debug){
 
1663
    fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
 
1664
                 interface);
 
1665
  }
 
1666
  
 
1667
  /* Sleep checking until interface is running.
 
1668
     Check every 0.25s, up to total time of delay */
 
1669
  for(int i=0; i < delay * 4; i++){
 
1670
    if(interface_is_running(interface)){
 
1671
      break;
 
1672
    }
 
1673
    struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1674
    ret = nanosleep(&sleeptime, NULL);
 
1675
    if(ret == -1 and errno != EINTR){
 
1676
      perror_plus("nanosleep");
 
1677
    }
 
1678
  }
 
1679
  
 
1680
  errno = old_errno;
 
1681
  return 0;
 
1682
}
 
1683
 
 
1684
error_t take_down_interface(const char *const interface){
 
1685
  int sd = -1;
 
1686
  error_t old_errno = errno;
 
1687
  error_t ret_errno = 0;
 
1688
  int ret, ret_setflags;
 
1689
  struct ifreq network;
 
1690
  unsigned int if_index = if_nametoindex(interface);
 
1691
  if(if_index == 0){
 
1692
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1693
    errno = old_errno;
 
1694
    return ENXIO;
 
1695
  }
 
1696
  if(interface_is_up(interface)){
 
1697
    if(not get_flags(interface, &network) and debug){
 
1698
      ret_errno = errno;
 
1699
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1700
                   "\"%s\"\n", interface);
 
1701
      return ret_errno;
 
1702
    }
 
1703
    network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1704
    
 
1705
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1706
    if(sd < 0){
 
1707
      ret_errno = errno;
 
1708
      perror_plus("socket");
 
1709
      errno = old_errno;
 
1710
      return ret_errno;
 
1711
    }
 
1712
    
 
1713
    if(debug){
 
1714
      fprintf_plus(stderr, "Taking down interface \"%s\"\n",
 
1715
                   interface);
 
1716
    }
 
1717
    
 
1718
    /* Raise priviliges */
 
1719
    raise_privileges();
 
1720
    
 
1721
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1722
    ret_errno = errno;
 
1723
    
 
1724
    /* Lower privileges */
 
1725
    lower_privileges();
 
1726
    
 
1727
    /* Close the socket */
 
1728
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1729
    if(ret == -1){
 
1730
      perror_plus("close");
 
1731
    }
 
1732
    
 
1733
    if(ret_setflags == -1){
 
1734
      errno = ret_errno;
 
1735
      perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
1736
      errno = old_errno;
 
1737
      return ret_errno;
 
1738
    }
 
1739
  } else if(debug){
 
1740
    fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
 
1741
                 interface);
 
1742
  }
 
1743
  
 
1744
  errno = old_errno;
 
1745
  return 0;
 
1746
}
 
1747
 
1526
1748
int main(int argc, char *argv[]){
1527
1749
  AvahiSServiceBrowser *sb = NULL;
1528
 
  int error;
 
1750
  error_t ret_errno;
1529
1751
  int ret;
1530
1752
  intmax_t tmpmax;
1531
1753
  char *tmp;
1532
1754
  int exitcode = EXIT_SUCCESS;
1533
 
  const char *interface = "";
1534
 
  struct ifreq network;
1535
 
  int sd = -1;
1536
 
  bool take_down_interface = false;
1537
 
  uid_t uid;
1538
 
  gid_t gid;
 
1755
  char *interfaces = NULL;
 
1756
  size_t interfaces_size = 0;
 
1757
  char *interfaces_to_take_down = NULL;
 
1758
  size_t interfaces_to_take_down_size = 0;
1539
1759
  char tempdir[] = "/tmp/mandosXXXXXX";
1540
1760
  bool tempdir_created = false;
1541
1761
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1542
1762
  const char *seckey = PATHDIR "/" SECKEY;
1543
1763
  const char *pubkey = PATHDIR "/" PUBKEY;
 
1764
  char *interfaces_hooks = NULL;
 
1765
  size_t interfaces_hooks_size = 0;
1544
1766
  
1545
1767
  bool gnutls_initialized = false;
1546
1768
  bool gpgme_initialized = false;
1637
1859
        connect_to = arg;
1638
1860
        break;
1639
1861
      case 'i':                 /* --interface */
1640
 
        interface = arg;
 
1862
        ret_errno = argz_add_sep(&interfaces, &interfaces_size, arg,
 
1863
                                 (int)',');
 
1864
        if(ret_errno != 0){
 
1865
          argp_error(state, "%s", strerror(ret_errno));
 
1866
        }
1641
1867
        break;
1642
1868
      case 's':                 /* --seckey */
1643
1869
        seckey = arg;
1721
1947
       <http://bugs.debian.org/633582> */
1722
1948
    
1723
1949
    /* Re-raise priviliges */
1724
 
    errno = 0;
1725
 
    ret = seteuid(0);
1726
 
    if(ret == -1){
1727
 
      perror_plus("seteuid");
1728
 
    } else {
 
1950
    if(raise_privileges() == 0){
1729
1951
      struct stat st;
1730
1952
      
1731
1953
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1779
2001
    }
1780
2002
  }
1781
2003
  
 
2004
  /* Remove empty interface names */
 
2005
  {
 
2006
    char *interface = NULL;
 
2007
    while((interface = argz_next(interfaces, interfaces_size,
 
2008
                                 interface))){
 
2009
      if(if_nametoindex(interface) == 0){
 
2010
        if(interface[0] != '\0' and strcmp(interface, "none") != 0){
 
2011
          fprintf_plus(stderr, "Not using nonexisting interface"
 
2012
                       " \"%s\"\n", interface);
 
2013
        }
 
2014
        argz_delete(&interfaces, &interfaces_size, interface);
 
2015
        interface = NULL;
 
2016
      }
 
2017
    }
 
2018
  }
 
2019
  
1782
2020
  /* Run network hooks */
1783
 
  if(not run_network_hooks("start", interface, delay)){
1784
 
    goto end;
 
2021
  {
 
2022
    
 
2023
    if(interfaces != NULL){
 
2024
      interfaces_hooks = malloc(interfaces_size);
 
2025
      if(interfaces_hooks == NULL){
 
2026
        perror_plus("malloc");
 
2027
        goto end;
 
2028
      }
 
2029
      memcpy(interfaces_hooks, interfaces, interfaces_size);
 
2030
      interfaces_hooks_size = interfaces_size;
 
2031
      argz_stringify(interfaces_hooks, interfaces_hooks_size,
 
2032
                     (int)',');
 
2033
    }
 
2034
    if(not run_network_hooks("start", interfaces_hooks != NULL ?
 
2035
                             interfaces_hooks : "", delay)){
 
2036
      goto end;
 
2037
    }
1785
2038
  }
1786
2039
  
1787
2040
  if(not debug){
1788
2041
    avahi_set_log_function(empty_log);
1789
2042
  }
1790
2043
  
1791
 
  if(interface[0] == '\0'){
1792
 
    struct dirent **direntries;
1793
 
    /* First look for interfaces that are up */
1794
 
    ret = scandir(sys_class_net, &direntries, up_interface,
1795
 
                  alphasort);
1796
 
    if(ret == 0){
1797
 
      /* No up interfaces, look for any good interfaces */
1798
 
      free(direntries);
1799
 
      ret = scandir(sys_class_net, &direntries, good_interface,
1800
 
                    alphasort);
1801
 
    }
1802
 
    if(ret >= 1){
1803
 
      /* Pick the first interface returned */
1804
 
      interface = strdup(direntries[0]->d_name);
1805
 
      if(debug){
1806
 
        fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
1807
 
      }
1808
 
      if(interface == NULL){
1809
 
        perror_plus("malloc");
1810
 
        free(direntries);
1811
 
        exitcode = EXIT_FAILURE;
1812
 
        goto end;
1813
 
      }
1814
 
      free(direntries);
1815
 
    } else {
1816
 
      free(direntries);
1817
 
      fprintf_plus(stderr, "Could not find a network interface\n");
1818
 
      exitcode = EXIT_FAILURE;
1819
 
      goto end;
1820
 
    }
1821
 
  }
1822
 
  
1823
2044
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1824
2045
     from the signal handler */
1825
2046
  /* Initialize the pseudo-RNG for Avahi */
1826
2047
  srand((unsigned int) time(NULL));
1827
 
  mc.simple_poll = avahi_simple_poll_new();
1828
 
  if(mc.simple_poll == NULL){
 
2048
  simple_poll = avahi_simple_poll_new();
 
2049
  if(simple_poll == NULL){
1829
2050
    fprintf_plus(stderr,
1830
2051
                 "Avahi: Failed to create simple poll object.\n");
1831
2052
    exitcode = EX_UNAVAILABLE;
1895
2116
    }
1896
2117
  }
1897
2118
  
1898
 
  /* If the interface is down, bring it up */
1899
 
  if(strcmp(interface, "none") != 0){
1900
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1901
 
    if(if_index == 0){
1902
 
      fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1903
 
      exitcode = EX_UNAVAILABLE;
1904
 
      goto end;
1905
 
    }
1906
 
    
1907
 
    if(quit_now){
1908
 
      goto end;
1909
 
    }
1910
 
    
1911
 
    /* Re-raise priviliges */
1912
 
    errno = 0;
1913
 
    ret = seteuid(0);
1914
 
    if(ret == -1){
1915
 
      perror_plus("seteuid");
1916
 
    }
1917
 
    
1918
 
#ifdef __linux__
1919
 
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1920
 
       messages about the network interface to mess up the prompt */
1921
 
    ret = klogctl(8, NULL, 5);
1922
 
    bool restore_loglevel = true;
1923
 
    if(ret == -1){
1924
 
      restore_loglevel = false;
1925
 
      perror_plus("klogctl");
1926
 
    }
1927
 
#endif  /* __linux__ */
1928
 
    
1929
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1930
 
    if(sd < 0){
1931
 
      perror_plus("socket");
1932
 
      exitcode = EX_OSERR;
1933
 
#ifdef __linux__
1934
 
      if(restore_loglevel){
1935
 
        ret = klogctl(7, NULL, 0);
1936
 
        if(ret == -1){
1937
 
          perror_plus("klogctl");
1938
 
        }
1939
 
      }
1940
 
#endif  /* __linux__ */
1941
 
      /* Lower privileges */
1942
 
      errno = 0;
1943
 
      ret = seteuid(uid);
1944
 
      if(ret == -1){
1945
 
        perror_plus("seteuid");
1946
 
      }
1947
 
      goto end;
1948
 
    }
1949
 
    strcpy(network.ifr_name, interface);
1950
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1951
 
    if(ret == -1){
1952
 
      perror_plus("ioctl SIOCGIFFLAGS");
1953
 
#ifdef __linux__
1954
 
      if(restore_loglevel){
1955
 
        ret = klogctl(7, NULL, 0);
1956
 
        if(ret == -1){
1957
 
          perror_plus("klogctl");
1958
 
        }
1959
 
      }
1960
 
#endif  /* __linux__ */
1961
 
      exitcode = EX_OSERR;
1962
 
      /* Lower privileges */
1963
 
      errno = 0;
1964
 
      ret = seteuid(uid);
1965
 
      if(ret == -1){
1966
 
        perror_plus("seteuid");
1967
 
      }
1968
 
      goto end;
1969
 
    }
1970
 
    if((network.ifr_flags & IFF_UP) == 0){
1971
 
      network.ifr_flags |= IFF_UP;
1972
 
      take_down_interface = true;
1973
 
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1974
 
      if(ret == -1){
1975
 
        take_down_interface = false;
1976
 
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1977
 
        exitcode = EX_OSERR;
1978
 
#ifdef __linux__
1979
 
        if(restore_loglevel){
1980
 
          ret = klogctl(7, NULL, 0);
1981
 
          if(ret == -1){
1982
 
            perror_plus("klogctl");
1983
 
          }
1984
 
        }
1985
 
#endif  /* __linux__ */
1986
 
        /* Lower privileges */
1987
 
        errno = 0;
1988
 
        ret = seteuid(uid);
1989
 
        if(ret == -1){
1990
 
          perror_plus("seteuid");
1991
 
        }
1992
 
        goto end;
1993
 
      }
1994
 
    }
1995
 
    /* Sleep checking until interface is running.
1996
 
       Check every 0.25s, up to total time of delay */
1997
 
    for(int i=0; i < delay * 4; i++){
1998
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1999
 
      if(ret == -1){
2000
 
        perror_plus("ioctl SIOCGIFFLAGS");
2001
 
      } else if(network.ifr_flags & IFF_RUNNING){
2002
 
        break;
2003
 
      }
2004
 
      struct timespec sleeptime = { .tv_nsec = 250000000 };
2005
 
      ret = nanosleep(&sleeptime, NULL);
2006
 
      if(ret == -1 and errno != EINTR){
2007
 
        perror_plus("nanosleep");
2008
 
      }
2009
 
    }
2010
 
    if(not take_down_interface){
2011
 
      /* We won't need the socket anymore */
2012
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
2013
 
      if(ret == -1){
2014
 
        perror_plus("close");
2015
 
      }
2016
 
    }
2017
 
#ifdef __linux__
2018
 
    if(restore_loglevel){
2019
 
      /* Restores kernel loglevel to default */
2020
 
      ret = klogctl(7, NULL, 0);
2021
 
      if(ret == -1){
2022
 
        perror_plus("klogctl");
2023
 
      }
2024
 
    }
2025
 
#endif  /* __linux__ */
2026
 
    /* Lower privileges */
2027
 
    errno = 0;
2028
 
    /* Lower privileges */
2029
 
    ret = seteuid(uid);
2030
 
    if(ret == -1){
2031
 
      perror_plus("seteuid");
 
2119
  /* If no interfaces were specified, make a list */
 
2120
  if(interfaces == NULL){
 
2121
    struct dirent **direntries;
 
2122
    /* Look for any good interfaces */
 
2123
    ret = scandir(sys_class_net, &direntries, good_interface,
 
2124
                  alphasort);
 
2125
    if(ret >= 1){
 
2126
      /* Add all found interfaces to interfaces list */
 
2127
      for(int i = 0; i < ret; ++i){
 
2128
        ret_errno = argz_add(&interfaces, &interfaces_size,
 
2129
                             direntries[i]->d_name);
 
2130
        if(ret_errno != 0){
 
2131
          perror_plus("argz_add");
 
2132
          continue;
 
2133
        }
 
2134
        if(debug){
 
2135
          fprintf_plus(stderr, "Will use interface \"%s\"\n",
 
2136
                       direntries[i]->d_name);
 
2137
        }
 
2138
      }
 
2139
      free(direntries);
 
2140
    } else {
 
2141
      free(direntries);
 
2142
      fprintf_plus(stderr, "Could not find a network interface\n");
 
2143
      exitcode = EXIT_FAILURE;
 
2144
      goto end;
 
2145
    }
 
2146
  }
 
2147
  
 
2148
  /* If we only got one interface, explicitly use only that one */
 
2149
  if(argz_count(interfaces, interfaces_size) == 1){
 
2150
    if(debug){
 
2151
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2152
                   interfaces);
 
2153
    }
 
2154
    if_index = (AvahiIfIndex)if_nametoindex(interfaces);
 
2155
  }
 
2156
  
 
2157
  /* Bring up interfaces which are down */
 
2158
  if(not (argz_count(interfaces, interfaces_size) == 1
 
2159
          and strcmp(interfaces, "none") == 0)){
 
2160
    char *interface = NULL;
 
2161
    while((interface = argz_next(interfaces, interfaces_size,
 
2162
                                 interface))){
 
2163
      bool interface_was_up = interface_is_up(interface);
 
2164
      ret = bring_up_interface(interface, delay);
 
2165
      if(not interface_was_up){
 
2166
        if(ret != 0){
 
2167
          errno = ret;
 
2168
          perror_plus("Failed to bring up interface");
 
2169
        } else {
 
2170
          ret_errno = argz_add(&interfaces_to_take_down,
 
2171
                               &interfaces_to_take_down_size,
 
2172
                               interface);
 
2173
        }
 
2174
      }
 
2175
    }
 
2176
    free(interfaces);
 
2177
    interfaces = NULL;
 
2178
    interfaces_size = 0;
 
2179
    if(debug and (interfaces_to_take_down == NULL)){
 
2180
      fprintf_plus(stderr, "No interfaces were brought up\n");
2032
2181
    }
2033
2182
  }
2034
2183
  
2075
2224
    /* Connect directly, do not use Zeroconf */
2076
2225
    /* (Mainly meant for debugging) */
2077
2226
    char *address = strrchr(connect_to, ':');
 
2227
    
2078
2228
    if(address == NULL){
2079
2229
      fprintf_plus(stderr, "No colon in address\n");
2080
2230
      exitcode = EX_USAGE;
2085
2235
      goto end;
2086
2236
    }
2087
2237
    
2088
 
    uint16_t port;
 
2238
    in_port_t port;
2089
2239
    errno = 0;
2090
2240
    tmpmax = strtoimax(address+1, &tmp, 10);
2091
2241
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
2092
 
       or tmpmax != (uint16_t)tmpmax){
 
2242
       or tmpmax != (in_port_t)tmpmax){
2093
2243
      fprintf_plus(stderr, "Bad port number\n");
2094
2244
      exitcode = EX_USAGE;
2095
2245
      goto end;
2099
2249
      goto end;
2100
2250
    }
2101
2251
    
2102
 
    port = (uint16_t)tmpmax;
 
2252
    port = (in_port_t)tmpmax;
2103
2253
    *address = '\0';
2104
2254
    /* Colon in address indicates IPv6 */
2105
2255
    int af;
2153
2303
    config.publish_domain = 0;
2154
2304
    
2155
2305
    /* Allocate a new server */
2156
 
    mc.server = avahi_server_new(avahi_simple_poll_get
2157
 
                                 (mc.simple_poll), &config, NULL,
2158
 
                                 NULL, &error);
 
2306
    mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
 
2307
                                 &config, NULL, NULL, &ret_errno);
2159
2308
    
2160
2309
    /* Free the Avahi configuration data */
2161
2310
    avahi_server_config_free(&config);
2164
2313
  /* Check if creating the Avahi server object succeeded */
2165
2314
  if(mc.server == NULL){
2166
2315
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
2167
 
                 avahi_strerror(error));
 
2316
                 avahi_strerror(ret_errno));
2168
2317
    exitcode = EX_UNAVAILABLE;
2169
2318
    goto end;
2170
2319
  }
2194
2343
    fprintf_plus(stderr, "Starting Avahi loop search\n");
2195
2344
  }
2196
2345
 
2197
 
  ret = avahi_loop_with_timeout(mc.simple_poll,
 
2346
  ret = avahi_loop_with_timeout(simple_poll,
2198
2347
                                (int)(retry_interval * 1000));
2199
2348
  if(debug){
2200
2349
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2214
2363
  if(mc.server != NULL)
2215
2364
    avahi_server_free(mc.server);
2216
2365
  
2217
 
  if(mc.simple_poll != NULL)
2218
 
    avahi_simple_poll_free(mc.simple_poll);
 
2366
  if(simple_poll != NULL)
 
2367
    avahi_simple_poll_free(simple_poll);
2219
2368
  
2220
2369
  if(gnutls_initialized){
2221
2370
    gnutls_certificate_free_credentials(mc.cred);
2238
2387
    }
2239
2388
  }
2240
2389
  
2241
 
  /* Run network hooks */
2242
 
  run_network_hooks("stop", interface, delay);
2243
 
  
2244
2390
  /* Re-raise priviliges */
2245
2391
  {
2246
 
    errno = 0;
2247
 
    ret = seteuid(0);
2248
 
    if(ret == -1){
2249
 
      perror_plus("seteuid");
2250
 
    }
2251
 
    
2252
 
    /* Take down the network interface */
2253
 
    if(take_down_interface and geteuid() == 0){
2254
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
2255
 
      if(ret == -1){
2256
 
        perror_plus("ioctl SIOCGIFFLAGS");
2257
 
      } else if(network.ifr_flags & IFF_UP){
2258
 
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2259
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
2260
 
        if(ret == -1){
2261
 
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
2392
    raise_privileges();
 
2393
    
 
2394
    /* Run network hooks */
 
2395
    run_network_hooks("stop", interfaces_hooks != NULL ?
 
2396
                      interfaces_hooks : "", delay);
 
2397
    
 
2398
    /* Take down the network interfaces which were brought up */
 
2399
    {
 
2400
      char *interface = NULL;
 
2401
      while((interface=argz_next(interfaces_to_take_down,
 
2402
                                 interfaces_to_take_down_size,
 
2403
                                 interface))){
 
2404
        ret_errno = take_down_interface(interface);
 
2405
        if(ret_errno != 0){
 
2406
          errno = ret_errno;
 
2407
          perror_plus("Failed to take down interface");
2262
2408
        }
2263
2409
      }
2264
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
2265
 
      if(ret == -1){
2266
 
        perror_plus("close");
 
2410
      if(debug and (interfaces_to_take_down == NULL)){
 
2411
        fprintf_plus(stderr, "No interfaces needed to be taken"
 
2412
                     " down\n");
2267
2413
      }
2268
2414
    }
2269
 
  }
2270
 
  /* Lower privileges permanently */
2271
 
  errno = 0;
2272
 
  ret = setuid(uid);
2273
 
  if(ret == -1){
2274
 
    perror_plus("setuid");
2275
 
  }
 
2415
    
 
2416
    lower_privileges_permanently();
 
2417
  }
 
2418
  
 
2419
  free(interfaces_to_take_down);
 
2420
  free(interfaces_hooks);
2276
2421
  
2277
2422
  /* Removes the GPGME temp directory and all files inside */
2278
2423
  if(tempdir_created){