/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

merge

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
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
43
                                   stdout, ferror(), remove() */
44
 
#include <stdint.h>             /* uint16_t, uint32_t, intptr_t */
 
44
#include <stdint.h>             /* uint16_t, uint32_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(), _exit() */
 
76
                                   setgid(), pause() */
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() */
91
90
 
92
91
#ifdef __linux__
93
92
#include <sys/klog.h>           /* klogctl() */
135
134
static const char sys_class_net[] = "/sys/class/net";
136
135
char *connect_to = NULL;
137
136
const char *hookdir = HOOKDIR;
138
 
uid_t uid = 65534;
139
 
gid_t gid = 65534;
140
137
 
141
138
/* Doubly linked list that need to be circularly linked when used */
142
139
typedef struct server{
172
169
 
173
170
/* Function to use when printing errors */
174
171
void perror_plus(const char *print_text){
175
 
  int e = errno;
176
172
  fprintf(stderr, "Mandos plugin %s: ",
177
173
          program_invocation_short_name);
178
 
  errno = e;
179
174
  perror(print_text);
180
175
}
181
176
 
182
 
__attribute__((format (gnu_printf, 2, 3)))
183
177
int fprintf_plus(FILE *stream, const char *format, ...){
184
178
  va_list ap;
185
179
  va_start (ap, format);
207
201
}
208
202
 
209
203
/* Add server to set of servers to retry periodically */
210
 
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
211
 
                int af){
 
204
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
205
               int af){
212
206
  int ret;
213
207
  server *new_server = malloc(sizeof(server));
214
208
  if(new_server == NULL){
215
209
    perror_plus("malloc");
216
 
    return false;
 
210
    return -1;
217
211
  }
218
212
  *new_server = (server){ .ip = strdup(ip),
219
213
                          .port = port,
221
215
                          .af = af };
222
216
  if(new_server->ip == NULL){
223
217
    perror_plus("strdup");
224
 
    return false;
 
218
    return -1;
225
219
  }
226
220
  /* Special case of first server */
227
221
  if (mc.current_server == NULL){
238
232
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
239
233
  if(ret == -1){
240
234
    perror_plus("clock_gettime");
241
 
    return false;
 
235
    return -1;
242
236
  }
243
 
  return true;
 
237
  return 0;
244
238
}
245
239
 
246
240
/* 
823
817
    goto mandos_end;
824
818
  }
825
819
  
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);
 
820
  /* Spurious warning from -Wint-to-pointer-cast */
 
821
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
831
822
  
832
823
  if(quit_now){
833
824
    errno = EINTR;
1038
1029
      if(ret == 0){
1039
1030
        avahi_simple_poll_quit(mc.simple_poll);
1040
1031
      } else {
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
 
        }
 
1032
        ret = add_server(ip, port, interface,
 
1033
                         avahi_proto_to_af(proto));
1046
1034
      }
1047
1035
    }
1048
1036
  }
1313
1301
    }
1314
1302
    return 0;
1315
1303
  }
1316
 
  if(debug){
1317
 
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1318
 
                 direntry->d_name);
1319
 
  }
1320
1304
  return 1;
1321
1305
}
1322
1306
 
1392
1376
  }
1393
1377
}
1394
1378
 
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
 
 
1438
1379
bool run_network_hooks(const char *mode, const char *interface,
1439
1380
                       const float delay){
1440
1381
  struct dirent **direntries;
1447
1388
  } else {
1448
1389
    int devnull = open("/dev/null", O_RDONLY);
1449
1390
    for(int i = 0; i < numhooks; i++){
1450
 
      direntry = direntries[i];
 
1391
      direntry = direntries[0];
1451
1392
      char *fullname = NULL;
1452
1393
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1453
1394
      if(ret < 0){
1454
1395
        perror_plus("asprintf");
1455
1396
        continue;
1456
1397
      }
1457
 
      if(debug){
1458
 
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
1459
 
                     direntry->d_name);
1460
 
      }
1461
1398
      pid_t hook_pid = fork();
1462
1399
      if(hook_pid == 0){
1463
1400
        /* 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
 
        }
1478
1401
        dup2(devnull, STDIN_FILENO);
1479
1402
        close(devnull);
1480
1403
        dup2(STDERR_FILENO, STDOUT_FILENO);
1481
1404
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1482
1405
        if(ret == -1){
1483
1406
          perror_plus("setenv");
1484
 
          _exit(EX_OSERR);
 
1407
          return false;
1485
1408
        }
1486
1409
        ret = setenv("DEVICE", interface, 1);
1487
1410
        if(ret == -1){
1488
1411
          perror_plus("setenv");
1489
 
          _exit(EX_OSERR);
 
1412
          return false;
1490
1413
        }
1491
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1414
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1492
1415
        if(ret == -1){
1493
1416
          perror_plus("setenv");
1494
 
          _exit(EX_OSERR);
 
1417
          return false;
1495
1418
        }
1496
1419
        ret = setenv("MODE", mode, 1);
1497
1420
        if(ret == -1){
1498
1421
          perror_plus("setenv");
1499
 
          _exit(EX_OSERR);
 
1422
          return false;
1500
1423
        }
1501
1424
        char *delaystring;
1502
1425
        ret = asprintf(&delaystring, "%f", delay);
1503
1426
        if(ret == -1){
1504
1427
          perror_plus("asprintf");
1505
 
          _exit(EX_OSERR);
 
1428
          return false;
1506
1429
        }
1507
1430
        ret = setenv("DELAY", delaystring, 1);
1508
1431
        if(ret == -1){
1509
1432
          free(delaystring);
1510
1433
          perror_plus("setenv");
1511
 
          _exit(EX_OSERR);
 
1434
          return false;
1512
1435
        }
1513
1436
        free(delaystring);
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
 
        }
 
1437
        ret = execl(fullname, direntry->d_name, mode, NULL);
 
1438
        perror_plus("execl");
1525
1439
      } else {
1526
1440
        int status;
1527
1441
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1551
1465
        }
1552
1466
      }
1553
1467
      free(fullname);
1554
 
      if(debug){
1555
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1556
 
                     direntry->d_name);
 
1468
      if(quit_now){
 
1469
        break;
1557
1470
      }
1558
1471
    }
1559
1472
    close(devnull);
1561
1474
  return true;
1562
1475
}
1563
1476
 
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
 
 
1686
1477
int main(int argc, char *argv[]){
1687
1478
  AvahiSServiceBrowser *sb = NULL;
1688
1479
  int error;
1694
1485
  struct ifreq network;
1695
1486
  int sd = -1;
1696
1487
  bool take_down_interface = false;
 
1488
  uid_t uid;
 
1489
  gid_t gid;
1697
1490
  char tempdir[] = "/tmp/mandosXXXXXX";
1698
1491
  bool tempdir_created = false;
1699
1492
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1766
1559
        .group = 2 },
1767
1560
      { .name = "retry", .key = 132,
1768
1561
        .arg = "SECONDS",
1769
 
        .doc = "Retry interval used when denied by the Mandos server",
 
1562
        .doc = "Retry interval used when denied by the mandos server",
1770
1563
        .group = 2 },
1771
1564
      { .name = "network-hook-dir", .key = 133,
1772
1565
        .arg = "DIR",
1844
1637
        argp_state_help(state, state->out_stream,
1845
1638
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1846
1639
      case 'V':                 /* --version */
 
1640
        fprintf_plus(state->out_stream,
 
1641
                     "Mandos plugin mandos-client: ");
1847
1642
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1848
1643
        exit(argp_err_exit_status);
1849
1644
        break;
1877
1672
  {
1878
1673
    /* Work around Debian bug #633582:
1879
1674
       <http://bugs.debian.org/633582> */
 
1675
    struct stat st;
1880
1676
    
1881
1677
    /* Re-raise priviliges */
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
 
      }
 
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");
1933
1731
    }
1934
1732
  }
1935
1733
  
1936
1734
  /* Run network hooks */
1937
 
  if(not run_network_hooks("start", interface, delay)){
1938
 
    goto end;
 
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
    }
1939
1751
  }
1940
1752
  
1941
1753
  if(not debug){
2050
1862
  }
2051
1863
  
2052
1864
  /* If the interface is down, bring it up */
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");
 
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");
2058
1998
    }
2059
1999
  }
2060
2000
  
2101
2041
    /* Connect directly, do not use Zeroconf */
2102
2042
    /* (Mainly meant for debugging) */
2103
2043
    char *address = strrchr(connect_to, ':');
2104
 
    
2105
2044
    if(address == NULL){
2106
2045
      fprintf_plus(stderr, "No colon in address\n");
2107
2046
      exitcode = EX_USAGE;
2253
2192
  if(gpgme_initialized){
2254
2193
    gpgme_release(mc.ctx);
2255
2194
  }
2256
 
  
 
2195
 
2257
2196
  /* Cleans up the circular linked list of Mandos servers the client
2258
2197
     has seen */
2259
2198
  if(mc.current_server != NULL){
2265
2204
    }
2266
2205
  }
2267
2206
  
2268
 
  /* Run network hooks */
2269
 
  run_network_hooks("stop", interface, delay);
2270
 
  
2271
2207
  /* Re-raise priviliges */
2272
2208
  {
2273
 
    raise_privileges();
 
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
    }
2274
2218
    
2275
2219
    /* Take down the network interface */
2276
2220
    if(take_down_interface and geteuid() == 0){