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

  • Committer: Teddy Hogeborn
  • Date: 2012-06-07 21:00:57 UTC
  • mto: (237.7.144 trunk)
  • mto: This revision was merged to the branch mainline in revision 302.
  • Revision ID: teddy@recompile.se-20120607210057-9k4mou58uht7sj2m
* plugins.d/mandos-client.c (bring_up_interface): Bug fix: Return
                                                  errno code.  Don't
                                                  modify errno.

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-2011 Teddy Hogeborn
13
 
 * Copyright © 2008-2011 Björn Påhlsson
 
12
 * Copyright © 2008-2012 Teddy Hogeborn
 
13
 * Copyright © 2008-2012 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
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() */
73
73
                                */
74
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
75
75
                                   getuid(), getgid(), seteuid(),
76
 
                                   setgid(), pause() */
 
76
                                   setgid(), pause(), _exit() */
77
77
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
78
78
#include <iso646.h>             /* not, or, and */
79
79
#include <argp.h>               /* struct argp_option, error_t, struct
87
87
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
88
88
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
89
89
                                   WEXITSTATUS(), WTERMSIG() */
 
90
#include <grp.h>                /* setgroups() */
90
91
 
91
92
#ifdef __linux__
92
93
#include <sys/klog.h>           /* klogctl() */
134
135
static const char sys_class_net[] = "/sys/class/net";
135
136
char *connect_to = NULL;
136
137
const char *hookdir = HOOKDIR;
 
138
uid_t uid = 65534;
 
139
gid_t gid = 65534;
137
140
 
138
141
/* Doubly linked list that need to be circularly linked when used */
139
142
typedef struct server{
169
172
 
170
173
/* Function to use when printing errors */
171
174
void perror_plus(const char *print_text){
 
175
  int e = errno;
172
176
  fprintf(stderr, "Mandos plugin %s: ",
173
177
          program_invocation_short_name);
 
178
  errno = e;
174
179
  perror(print_text);
175
180
}
176
181
 
 
182
__attribute__((format (gnu_printf, 2, 3)))
177
183
int fprintf_plus(FILE *stream, const char *format, ...){
178
184
  va_list ap;
179
185
  va_start (ap, format);
201
207
}
202
208
 
203
209
/* Add server to set of servers to retry periodically */
204
 
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
205
 
               int af){
 
210
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
211
                int af){
206
212
  int ret;
207
213
  server *new_server = malloc(sizeof(server));
208
214
  if(new_server == NULL){
209
215
    perror_plus("malloc");
210
 
    return -1;
 
216
    return false;
211
217
  }
212
218
  *new_server = (server){ .ip = strdup(ip),
213
219
                          .port = port,
215
221
                          .af = af };
216
222
  if(new_server->ip == NULL){
217
223
    perror_plus("strdup");
218
 
    return -1;
 
224
    return false;
219
225
  }
220
226
  /* Special case of first server */
221
227
  if (mc.current_server == NULL){
232
238
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
233
239
  if(ret == -1){
234
240
    perror_plus("clock_gettime");
235
 
    return -1;
 
241
    return false;
236
242
  }
237
 
  return 0;
 
243
  return true;
238
244
}
239
245
 
240
246
/* 
817
823
    goto mandos_end;
818
824
  }
819
825
  
820
 
  /* Spurious warning from -Wint-to-pointer-cast */
821
 
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
826
  /* This casting via intptr_t is to eliminate warning about casting
 
827
     an int to a pointer type.  This is exactly how the GnuTLS Guile
 
828
     function "set-session-transport-fd!" does it. */
 
829
  gnutls_transport_set_ptr(session,
 
830
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
822
831
  
823
832
  if(quit_now){
824
833
    errno = EINTR;
1029
1038
      if(ret == 0){
1030
1039
        avahi_simple_poll_quit(mc.simple_poll);
1031
1040
      } else {
1032
 
        ret = add_server(ip, port, interface,
1033
 
                         avahi_proto_to_af(proto));
 
1041
        if(not add_server(ip, port, interface,
 
1042
                          avahi_proto_to_af(proto))){
 
1043
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
 
1044
                       " list\n", name);
 
1045
        }
1034
1046
      }
1035
1047
    }
1036
1048
  }
1301
1313
    }
1302
1314
    return 0;
1303
1315
  }
 
1316
  if(debug){
 
1317
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
 
1318
                 direntry->d_name);
 
1319
  }
1304
1320
  return 1;
1305
1321
}
1306
1322
 
1376
1392
  }
1377
1393
}
1378
1394
 
 
1395
/* Set effective uid to 0, return errno */
 
1396
int raise_privileges(void){
 
1397
  int old_errno = errno;
 
1398
  int ret_errno = 0;
 
1399
  errno = 0;
 
1400
  if(seteuid(0) == -1){
 
1401
    perror_plus("seteuid");
 
1402
  }
 
1403
  ret_errno = errno;
 
1404
  errno = old_errno;
 
1405
  return ret_errno;
 
1406
}
 
1407
 
 
1408
/* Set effective and real user ID to 0.  Return errno. */
 
1409
int raise_privileges_permanently(void){
 
1410
  int old_errno = errno;
 
1411
  int ret_errno = raise_privileges();
 
1412
  if(ret_errno != 0){
 
1413
    errno = old_errno;
 
1414
    return ret_errno;
 
1415
  }
 
1416
  errno = 0;
 
1417
  if(setuid(0) == -1){
 
1418
    perror_plus("seteuid");
 
1419
  }
 
1420
  ret_errno = errno;
 
1421
  errno = old_errno;
 
1422
  return ret_errno;
 
1423
}
 
1424
 
 
1425
/* Set effective user ID to unprivileged saved user ID */
 
1426
int lower_privileges(void){
 
1427
  int old_errno = errno;
 
1428
  int ret_errno = 0;
 
1429
  errno = 0;
 
1430
  if(seteuid(uid) == -1){
 
1431
    perror_plus("seteuid");
 
1432
  }
 
1433
  ret_errno = errno;
 
1434
  errno = old_errno;
 
1435
  return ret_errno;
 
1436
}
 
1437
 
1379
1438
bool run_network_hooks(const char *mode, const char *interface,
1380
1439
                       const float delay){
1381
1440
  struct dirent **direntries;
1388
1447
  } else {
1389
1448
    int devnull = open("/dev/null", O_RDONLY);
1390
1449
    for(int i = 0; i < numhooks; i++){
1391
 
      direntry = direntries[0];
 
1450
      direntry = direntries[i];
1392
1451
      char *fullname = NULL;
1393
1452
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1394
1453
      if(ret < 0){
1395
1454
        perror_plus("asprintf");
1396
1455
        continue;
1397
1456
      }
 
1457
      if(debug){
 
1458
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1459
                     direntry->d_name);
 
1460
      }
1398
1461
      pid_t hook_pid = fork();
1399
1462
      if(hook_pid == 0){
1400
1463
        /* Child */
 
1464
        /* Raise privileges */
 
1465
        raise_privileges_permanently();
 
1466
        /* Set group */
 
1467
        errno = 0;
 
1468
        ret = setgid(0);
 
1469
        if(ret == -1){
 
1470
          perror_plus("setgid");
 
1471
        }
 
1472
        /* Reset supplementary groups */
 
1473
        errno = 0;
 
1474
        ret = setgroups(0, NULL);
 
1475
        if(ret == -1){
 
1476
          perror_plus("setgroups");
 
1477
        }
1401
1478
        dup2(devnull, STDIN_FILENO);
1402
1479
        close(devnull);
1403
1480
        dup2(STDERR_FILENO, STDOUT_FILENO);
1404
1481
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1405
1482
        if(ret == -1){
1406
1483
          perror_plus("setenv");
1407
 
          return false;
 
1484
          _exit(EX_OSERR);
1408
1485
        }
1409
1486
        ret = setenv("DEVICE", interface, 1);
1410
1487
        if(ret == -1){
1411
1488
          perror_plus("setenv");
1412
 
          return false;
 
1489
          _exit(EX_OSERR);
1413
1490
        }
1414
 
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
 
1491
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1415
1492
        if(ret == -1){
1416
1493
          perror_plus("setenv");
1417
 
          return false;
 
1494
          _exit(EX_OSERR);
1418
1495
        }
1419
1496
        ret = setenv("MODE", mode, 1);
1420
1497
        if(ret == -1){
1421
1498
          perror_plus("setenv");
1422
 
          return false;
 
1499
          _exit(EX_OSERR);
1423
1500
        }
1424
1501
        char *delaystring;
1425
1502
        ret = asprintf(&delaystring, "%f", delay);
1426
1503
        if(ret == -1){
1427
1504
          perror_plus("asprintf");
1428
 
          return false;
 
1505
          _exit(EX_OSERR);
1429
1506
        }
1430
1507
        ret = setenv("DELAY", delaystring, 1);
1431
1508
        if(ret == -1){
1432
1509
          free(delaystring);
1433
1510
          perror_plus("setenv");
1434
 
          return false;
 
1511
          _exit(EX_OSERR);
1435
1512
        }
1436
1513
        free(delaystring);
1437
 
        ret = execl(fullname, direntry->d_name, mode, NULL);
1438
 
        perror_plus("execl");
 
1514
        if(connect_to != NULL){
 
1515
          ret = setenv("CONNECT", connect_to, 1);
 
1516
          if(ret == -1){
 
1517
            perror_plus("setenv");
 
1518
            _exit(EX_OSERR);
 
1519
          }
 
1520
        }
 
1521
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1522
          perror_plus("execl");
 
1523
          _exit(EXIT_FAILURE);
 
1524
        }
1439
1525
      } else {
1440
1526
        int status;
1441
1527
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1465
1551
        }
1466
1552
      }
1467
1553
      free(fullname);
1468
 
      if(quit_now){
1469
 
        break;
 
1554
      if(debug){
 
1555
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1556
                     direntry->d_name);
1470
1557
      }
1471
1558
    }
1472
1559
    close(devnull);
1474
1561
  return true;
1475
1562
}
1476
1563
 
 
1564
int bring_up_interface(const char * const interface, const float delay){
 
1565
  int sd = -1;
 
1566
  int old_errno = errno;
 
1567
  int ret_errno = 0;
 
1568
  int ret;
 
1569
  struct ifreq network;
 
1570
  AvahiIfIndex if_index = (AvahiIfIndex)if_nametoindex(interface);
 
1571
  if(if_index == 0){
 
1572
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1573
    errno = old_errno;
 
1574
    return ENXIO;
 
1575
  }
 
1576
  
 
1577
  if(quit_now){
 
1578
    errno = old_errno;
 
1579
    return EINTR;
 
1580
  }
 
1581
  
 
1582
  /* Re-raise priviliges */
 
1583
  raise_privileges();
 
1584
  
 
1585
#ifdef __linux__
 
1586
  /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1587
     messages about the network interface to mess up the prompt */
 
1588
  ret = klogctl(8, NULL, 5);
 
1589
  bool restore_loglevel = true;
 
1590
  if(ret == -1){
 
1591
    restore_loglevel = false;
 
1592
    perror_plus("klogctl");
 
1593
  }
 
1594
#endif  /* __linux__ */
 
1595
    
 
1596
  sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1597
  if(sd < 0){
 
1598
    ret_errno = errno;
 
1599
    perror_plus("socket");
 
1600
#ifdef __linux__
 
1601
    if(restore_loglevel){
 
1602
      ret = klogctl(7, NULL, 0);
 
1603
      if(ret == -1){
 
1604
        perror_plus("klogctl");
 
1605
      }
 
1606
    }
 
1607
#endif  /* __linux__ */
 
1608
    /* Lower privileges */
 
1609
    lower_privileges();
 
1610
    errno = old_errno;
 
1611
    return ret_errno;
 
1612
  }
 
1613
  strcpy(network.ifr_name, interface);
 
1614
  ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1615
  if(ret == -1){
 
1616
    ret_errno = errno;
 
1617
    perror_plus("ioctl SIOCGIFFLAGS");
 
1618
#ifdef __linux__
 
1619
    if(restore_loglevel){
 
1620
      ret = klogctl(7, NULL, 0);
 
1621
      if(ret == -1){
 
1622
        perror_plus("klogctl");
 
1623
      }
 
1624
    }
 
1625
#endif  /* __linux__ */
 
1626
    /* Lower privileges */
 
1627
    lower_privileges();
 
1628
    errno = old_errno;
 
1629
    return ret_errno;
 
1630
  }
 
1631
  if((network.ifr_flags & IFF_UP) == 0){
 
1632
    network.ifr_flags |= IFF_UP;
 
1633
    ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1634
    if(ret == -1){
 
1635
      ret_errno = errno;
 
1636
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1637
#ifdef __linux__
 
1638
      if(restore_loglevel){
 
1639
        ret = klogctl(7, NULL, 0);
 
1640
        if(ret == -1){
 
1641
          perror_plus("klogctl");
 
1642
        }
 
1643
      }
 
1644
#endif  /* __linux__ */
 
1645
        /* Lower privileges */
 
1646
      lower_privileges();
 
1647
      errno = old_errno;
 
1648
      return ret_errno;
 
1649
    }
 
1650
  }
 
1651
  /* Sleep checking until interface is running.
 
1652
     Check every 0.25s, up to total time of delay */
 
1653
  for(int i=0; i < delay * 4; i++){
 
1654
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1655
    if(ret == -1){
 
1656
      perror_plus("ioctl SIOCGIFFLAGS");
 
1657
    } else if(network.ifr_flags & IFF_RUNNING){
 
1658
      break;
 
1659
    }
 
1660
    struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1661
    ret = nanosleep(&sleeptime, NULL);
 
1662
    if(ret == -1 and errno != EINTR){
 
1663
      perror_plus("nanosleep");
 
1664
    }
 
1665
  }
 
1666
  /* Close the socket */
 
1667
  ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1668
  if(ret == -1){
 
1669
    perror_plus("close");
 
1670
  }
 
1671
#ifdef __linux__
 
1672
  if(restore_loglevel){
 
1673
    /* Restores kernel loglevel to default */
 
1674
    ret = klogctl(7, NULL, 0);
 
1675
    if(ret == -1){
 
1676
      perror_plus("klogctl");
 
1677
    }
 
1678
  }
 
1679
#endif  /* __linux__ */
 
1680
  /* Lower privileges */
 
1681
  lower_privileges();
 
1682
  errno = old_errno;
 
1683
  return 0;
 
1684
}
 
1685
 
1477
1686
int main(int argc, char *argv[]){
1478
1687
  AvahiSServiceBrowser *sb = NULL;
1479
1688
  int error;
1485
1694
  struct ifreq network;
1486
1695
  int sd = -1;
1487
1696
  bool take_down_interface = false;
1488
 
  uid_t uid;
1489
 
  gid_t gid;
1490
1697
  char tempdir[] = "/tmp/mandosXXXXXX";
1491
1698
  bool tempdir_created = false;
1492
1699
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1559
1766
        .group = 2 },
1560
1767
      { .name = "retry", .key = 132,
1561
1768
        .arg = "SECONDS",
1562
 
        .doc = "Retry interval used when denied by the mandos server",
 
1769
        .doc = "Retry interval used when denied by the Mandos server",
1563
1770
        .group = 2 },
1564
1771
      { .name = "network-hook-dir", .key = 133,
1565
1772
        .arg = "DIR",
1637
1844
        argp_state_help(state, state->out_stream,
1638
1845
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1639
1846
      case 'V':                 /* --version */
1640
 
        fprintf_plus(state->out_stream,
1641
 
                     "Mandos plugin mandos-client: ");
1642
1847
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1643
1848
        exit(argp_err_exit_status);
1644
1849
        break;
1672
1877
  {
1673
1878
    /* Work around Debian bug #633582:
1674
1879
       <http://bugs.debian.org/633582> */
1675
 
    struct stat st;
1676
1880
    
1677
1881
    /* Re-raise priviliges */
1678
 
    errno = 0;
1679
 
    ret = seteuid(0);
1680
 
    if(ret == -1){
1681
 
      perror_plus("seteuid");
1682
 
    }
1683
 
    
1684
 
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1685
 
      int seckey_fd = open(seckey, O_RDONLY);
1686
 
      if(seckey_fd == -1){
1687
 
        perror_plus("open");
1688
 
      } else {
1689
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1690
 
        if(ret == -1){
1691
 
          perror_plus("fstat");
1692
 
        } else {
1693
 
          if(S_ISREG(st.st_mode)
1694
 
             and st.st_uid == 0 and st.st_gid == 0){
1695
 
            ret = fchown(seckey_fd, uid, gid);
1696
 
            if(ret == -1){
1697
 
              perror_plus("fchown");
1698
 
            }
1699
 
          }
1700
 
        }
1701
 
        TEMP_FAILURE_RETRY(close(seckey_fd));
1702
 
      }
1703
 
    }
1704
 
    
1705
 
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1706
 
      int pubkey_fd = open(pubkey, O_RDONLY);
1707
 
      if(pubkey_fd == -1){
1708
 
        perror_plus("open");
1709
 
      } else {
1710
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1711
 
        if(ret == -1){
1712
 
          perror_plus("fstat");
1713
 
        } else {
1714
 
          if(S_ISREG(st.st_mode)
1715
 
             and st.st_uid == 0 and st.st_gid == 0){
1716
 
            ret = fchown(pubkey_fd, uid, gid);
1717
 
            if(ret == -1){
1718
 
              perror_plus("fchown");
1719
 
            }
1720
 
          }
1721
 
        }
1722
 
        TEMP_FAILURE_RETRY(close(pubkey_fd));
1723
 
      }
1724
 
    }
1725
 
    
1726
 
    /* Lower privileges */
1727
 
    errno = 0;
1728
 
    ret = seteuid(uid);
1729
 
    if(ret == -1){
1730
 
      perror_plus("seteuid");
 
1882
    if(raise_privileges() == 0){
 
1883
      struct stat st;
 
1884
      
 
1885
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1886
        int seckey_fd = open(seckey, O_RDONLY);
 
1887
        if(seckey_fd == -1){
 
1888
          perror_plus("open");
 
1889
        } else {
 
1890
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1891
          if(ret == -1){
 
1892
            perror_plus("fstat");
 
1893
          } else {
 
1894
            if(S_ISREG(st.st_mode)
 
1895
               and st.st_uid == 0 and st.st_gid == 0){
 
1896
              ret = fchown(seckey_fd, uid, gid);
 
1897
              if(ret == -1){
 
1898
                perror_plus("fchown");
 
1899
              }
 
1900
            }
 
1901
          }
 
1902
          TEMP_FAILURE_RETRY(close(seckey_fd));
 
1903
        }
 
1904
      }
 
1905
    
 
1906
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1907
        int pubkey_fd = open(pubkey, O_RDONLY);
 
1908
        if(pubkey_fd == -1){
 
1909
          perror_plus("open");
 
1910
        } else {
 
1911
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1912
          if(ret == -1){
 
1913
            perror_plus("fstat");
 
1914
          } else {
 
1915
            if(S_ISREG(st.st_mode)
 
1916
               and st.st_uid == 0 and st.st_gid == 0){
 
1917
              ret = fchown(pubkey_fd, uid, gid);
 
1918
              if(ret == -1){
 
1919
                perror_plus("fchown");
 
1920
              }
 
1921
            }
 
1922
          }
 
1923
          TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1924
        }
 
1925
      }
 
1926
    
 
1927
      /* Lower privileges */
 
1928
      errno = 0;
 
1929
      ret = seteuid(uid);
 
1930
      if(ret == -1){
 
1931
        perror_plus("seteuid");
 
1932
      }
1731
1933
    }
1732
1934
  }
1733
1935
  
1734
1936
  /* Run network hooks */
1735
 
  {
1736
 
    /* Re-raise priviliges */
1737
 
    errno = 0;
1738
 
    ret = seteuid(0);
1739
 
    if(ret == -1){
1740
 
      perror_plus("seteuid");
1741
 
    }
1742
 
    if(not run_network_hooks("start", interface, delay)){
1743
 
      goto end;
1744
 
    }
1745
 
    /* Lower privileges */
1746
 
    errno = 0;
1747
 
    ret = seteuid(uid);
1748
 
    if(ret == -1){
1749
 
      perror_plus("seteuid");
1750
 
    }
 
1937
  if(not run_network_hooks("start", interface, delay)){
 
1938
    goto end;
1751
1939
  }
1752
1940
  
1753
1941
  if(not debug){
1862
2050
  }
1863
2051
  
1864
2052
  /* If the interface is down, bring it up */
1865
 
  if(strcmp(interface, "none") != 0){
1866
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1867
 
    if(if_index == 0){
1868
 
      fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1869
 
      exitcode = EX_UNAVAILABLE;
1870
 
      goto end;
1871
 
    }
1872
 
    
1873
 
    if(quit_now){
1874
 
      goto end;
1875
 
    }
1876
 
    
1877
 
    /* Re-raise priviliges */
1878
 
    errno = 0;
1879
 
    ret = seteuid(0);
1880
 
    if(ret == -1){
1881
 
      perror_plus("seteuid");
1882
 
    }
1883
 
    
1884
 
#ifdef __linux__
1885
 
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1886
 
       messages about the network interface to mess up the prompt */
1887
 
    ret = klogctl(8, NULL, 5);
1888
 
    bool restore_loglevel = true;
1889
 
    if(ret == -1){
1890
 
      restore_loglevel = false;
1891
 
      perror_plus("klogctl");
1892
 
    }
1893
 
#endif  /* __linux__ */
1894
 
    
1895
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1896
 
    if(sd < 0){
1897
 
      perror_plus("socket");
1898
 
      exitcode = EX_OSERR;
1899
 
#ifdef __linux__
1900
 
      if(restore_loglevel){
1901
 
        ret = klogctl(7, NULL, 0);
1902
 
        if(ret == -1){
1903
 
          perror_plus("klogctl");
1904
 
        }
1905
 
      }
1906
 
#endif  /* __linux__ */
1907
 
      /* Lower privileges */
1908
 
      errno = 0;
1909
 
      ret = seteuid(uid);
1910
 
      if(ret == -1){
1911
 
        perror_plus("seteuid");
1912
 
      }
1913
 
      goto end;
1914
 
    }
1915
 
    strcpy(network.ifr_name, interface);
1916
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1917
 
    if(ret == -1){
1918
 
      perror_plus("ioctl SIOCGIFFLAGS");
1919
 
#ifdef __linux__
1920
 
      if(restore_loglevel){
1921
 
        ret = klogctl(7, NULL, 0);
1922
 
        if(ret == -1){
1923
 
          perror_plus("klogctl");
1924
 
        }
1925
 
      }
1926
 
#endif  /* __linux__ */
1927
 
      exitcode = EX_OSERR;
1928
 
      /* Lower privileges */
1929
 
      errno = 0;
1930
 
      ret = seteuid(uid);
1931
 
      if(ret == -1){
1932
 
        perror_plus("seteuid");
1933
 
      }
1934
 
      goto end;
1935
 
    }
1936
 
    if((network.ifr_flags & IFF_UP) == 0){
1937
 
      network.ifr_flags |= IFF_UP;
1938
 
      take_down_interface = true;
1939
 
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1940
 
      if(ret == -1){
1941
 
        take_down_interface = false;
1942
 
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1943
 
        exitcode = EX_OSERR;
1944
 
#ifdef __linux__
1945
 
        if(restore_loglevel){
1946
 
          ret = klogctl(7, NULL, 0);
1947
 
          if(ret == -1){
1948
 
            perror_plus("klogctl");
1949
 
          }
1950
 
        }
1951
 
#endif  /* __linux__ */
1952
 
        /* Lower privileges */
1953
 
        errno = 0;
1954
 
        ret = seteuid(uid);
1955
 
        if(ret == -1){
1956
 
          perror_plus("seteuid");
1957
 
        }
1958
 
        goto end;
1959
 
      }
1960
 
    }
1961
 
    /* Sleep checking until interface is running.
1962
 
       Check every 0.25s, up to total time of delay */
1963
 
    for(int i=0; i < delay * 4; i++){
1964
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1965
 
      if(ret == -1){
1966
 
        perror_plus("ioctl SIOCGIFFLAGS");
1967
 
      } else if(network.ifr_flags & IFF_RUNNING){
1968
 
        break;
1969
 
      }
1970
 
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1971
 
      ret = nanosleep(&sleeptime, NULL);
1972
 
      if(ret == -1 and errno != EINTR){
1973
 
        perror_plus("nanosleep");
1974
 
      }
1975
 
    }
1976
 
    if(not take_down_interface){
1977
 
      /* We won't need the socket anymore */
1978
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1979
 
      if(ret == -1){
1980
 
        perror_plus("close");
1981
 
      }
1982
 
    }
1983
 
#ifdef __linux__
1984
 
    if(restore_loglevel){
1985
 
      /* Restores kernel loglevel to default */
1986
 
      ret = klogctl(7, NULL, 0);
1987
 
      if(ret == -1){
1988
 
        perror_plus("klogctl");
1989
 
      }
1990
 
    }
1991
 
#endif  /* __linux__ */
1992
 
    /* Lower privileges */
1993
 
    errno = 0;
1994
 
    /* Lower privileges */
1995
 
    ret = seteuid(uid);
1996
 
    if(ret == -1){
1997
 
      perror_plus("seteuid");
 
2053
  if((interface[0] != '\0') and (strcmp(interface, "none") != 0)){
 
2054
    ret = bring_up_interface(interface, delay);
 
2055
    if(ret != 0){
 
2056
      errno = ret;
 
2057
      perror_plus("Failed to bring up interface");
1998
2058
    }
1999
2059
  }
2000
2060
  
2041
2101
    /* Connect directly, do not use Zeroconf */
2042
2102
    /* (Mainly meant for debugging) */
2043
2103
    char *address = strrchr(connect_to, ':');
 
2104
    
2044
2105
    if(address == NULL){
2045
2106
      fprintf_plus(stderr, "No colon in address\n");
2046
2107
      exitcode = EX_USAGE;
2192
2253
  if(gpgme_initialized){
2193
2254
    gpgme_release(mc.ctx);
2194
2255
  }
2195
 
 
 
2256
  
2196
2257
  /* Cleans up the circular linked list of Mandos servers the client
2197
2258
     has seen */
2198
2259
  if(mc.current_server != NULL){
2204
2265
    }
2205
2266
  }
2206
2267
  
 
2268
  /* Run network hooks */
 
2269
  run_network_hooks("stop", interface, delay);
 
2270
  
2207
2271
  /* Re-raise priviliges */
2208
2272
  {
2209
 
    errno = 0;
2210
 
    ret = seteuid(0);
2211
 
    if(ret == -1){
2212
 
      perror_plus("seteuid");
2213
 
    }
2214
 
    /* Run network hooks */
2215
 
    if(not run_network_hooks("stop", interface, delay)){
2216
 
      goto end;
2217
 
    }
 
2273
    raise_privileges();
2218
2274
    
2219
2275
    /* Take down the network interface */
2220
2276
    if(take_down_interface and geteuid() == 0){