/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

* network-hooks.d: New directory.
* network-hooks.d/bridge: New example hook.
* network-hooks.d/bridge.conf: Config file for bridge example hook.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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() */
202
201
}
203
202
 
204
203
/* Add server to set of servers to retry periodically */
205
 
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
206
 
                int af){
 
204
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
205
               int af){
207
206
  int ret;
208
207
  server *new_server = malloc(sizeof(server));
209
208
  if(new_server == NULL){
210
209
    perror_plus("malloc");
211
 
    return false;
 
210
    return -1;
212
211
  }
213
212
  *new_server = (server){ .ip = strdup(ip),
214
213
                          .port = port,
216
215
                          .af = af };
217
216
  if(new_server->ip == NULL){
218
217
    perror_plus("strdup");
219
 
    return false;
 
218
    return -1;
220
219
  }
221
220
  /* Special case of first server */
222
221
  if (mc.current_server == NULL){
233
232
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
234
233
  if(ret == -1){
235
234
    perror_plus("clock_gettime");
236
 
    return false;
 
235
    return -1;
237
236
  }
238
 
  return true;
 
237
  return 0;
239
238
}
240
239
 
241
240
/* 
1030
1029
      if(ret == 0){
1031
1030
        avahi_simple_poll_quit(mc.simple_poll);
1032
1031
      } else {
1033
 
        if(not add_server(ip, port, interface,
1034
 
                          avahi_proto_to_af(proto))){
1035
 
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1036
 
                       " list\n", name);
1037
 
        }
 
1032
        ret = add_server(ip, port, interface,
 
1033
                         avahi_proto_to_af(proto));
1038
1034
      }
1039
1035
    }
1040
1036
  }
1305
1301
    }
1306
1302
    return 0;
1307
1303
  }
1308
 
  if(debug){
1309
 
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1310
 
                 direntry->d_name);
1311
 
  }
1312
1304
  return 1;
1313
1305
}
1314
1306
 
1396
1388
  } else {
1397
1389
    int devnull = open("/dev/null", O_RDONLY);
1398
1390
    for(int i = 0; i < numhooks; i++){
1399
 
      direntry = direntries[i];
 
1391
      direntry = direntries[0];
1400
1392
      char *fullname = NULL;
1401
1393
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1402
1394
      if(ret < 0){
1403
1395
        perror_plus("asprintf");
1404
1396
        continue;
1405
1397
      }
1406
 
      if(debug){
1407
 
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
1408
 
                     direntry->d_name);
1409
 
      }
1410
1398
      pid_t hook_pid = fork();
1411
1399
      if(hook_pid == 0){
1412
1400
        /* Child */
1413
 
        /* Raise privileges */
1414
 
        errno = 0;
1415
 
        ret = seteuid(0);
1416
 
        if(ret == -1){
1417
 
          perror_plus("seteuid");
1418
 
        }
1419
 
        /* Raise privileges even more */
1420
 
        errno = 0;
1421
 
        ret = setuid(0);
1422
 
        if(ret == -1){
1423
 
          perror_plus("setuid");
1424
 
        }
1425
 
        /* Set group */
1426
 
        errno = 0;
1427
 
        ret = setgid(0);
1428
 
        if(ret == -1){
1429
 
          perror_plus("setgid");
1430
 
        }
1431
 
        /* Reset supplementary groups */
1432
 
        errno = 0;
1433
 
        ret = setgroups(0, NULL);
1434
 
        if(ret == -1){
1435
 
          perror_plus("setgroups");
1436
 
        }
1437
1401
        dup2(devnull, STDIN_FILENO);
1438
1402
        close(devnull);
1439
1403
        dup2(STDERR_FILENO, STDOUT_FILENO);
1440
1404
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1441
1405
        if(ret == -1){
1442
1406
          perror_plus("setenv");
1443
 
          _exit(EX_OSERR);
 
1407
          return false;
1444
1408
        }
1445
1409
        ret = setenv("DEVICE", interface, 1);
1446
1410
        if(ret == -1){
1447
1411
          perror_plus("setenv");
1448
 
          _exit(EX_OSERR);
 
1412
          return false;
1449
1413
        }
1450
1414
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1451
1415
        if(ret == -1){
1452
1416
          perror_plus("setenv");
1453
 
          _exit(EX_OSERR);
 
1417
          return false;
1454
1418
        }
1455
1419
        ret = setenv("MODE", mode, 1);
1456
1420
        if(ret == -1){
1457
1421
          perror_plus("setenv");
1458
 
          _exit(EX_OSERR);
 
1422
          return false;
1459
1423
        }
1460
1424
        char *delaystring;
1461
1425
        ret = asprintf(&delaystring, "%f", delay);
1462
1426
        if(ret == -1){
1463
1427
          perror_plus("asprintf");
1464
 
          _exit(EX_OSERR);
 
1428
          return false;
1465
1429
        }
1466
1430
        ret = setenv("DELAY", delaystring, 1);
1467
1431
        if(ret == -1){
1468
1432
          free(delaystring);
1469
1433
          perror_plus("setenv");
1470
 
          _exit(EX_OSERR);
 
1434
          return false;
1471
1435
        }
1472
1436
        free(delaystring);
1473
1437
        ret = execl(fullname, direntry->d_name, mode, NULL);
1501
1465
        }
1502
1466
      }
1503
1467
      free(fullname);
1504
 
      if(debug){
1505
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1506
 
                     direntry->d_name);
 
1468
      if(quit_now){
 
1469
        break;
1507
1470
      }
1508
1471
    }
1509
1472
    close(devnull);
1674
1637
        argp_state_help(state, state->out_stream,
1675
1638
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1676
1639
      case 'V':                 /* --version */
 
1640
        fprintf_plus(state->out_stream,
 
1641
                     "Mandos plugin mandos-client: ");
1677
1642
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1678
1643
        exit(argp_err_exit_status);
1679
1644
        break;
1707
1672
  {
1708
1673
    /* Work around Debian bug #633582:
1709
1674
       <http://bugs.debian.org/633582> */
 
1675
    struct stat st;
1710
1676
    
1711
1677
    /* Re-raise priviliges */
1712
1678
    errno = 0;
1713
1679
    ret = seteuid(0);
1714
1680
    if(ret == -1){
1715
1681
      perror_plus("seteuid");
1716
 
    } else {
1717
 
      struct stat st;
1718
 
      
1719
 
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1720
 
        int seckey_fd = open(seckey, O_RDONLY);
1721
 
        if(seckey_fd == -1){
1722
 
          perror_plus("open");
1723
 
        } else {
1724
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1725
 
          if(ret == -1){
1726
 
            perror_plus("fstat");
1727
 
          } else {
1728
 
            if(S_ISREG(st.st_mode)
1729
 
               and st.st_uid == 0 and st.st_gid == 0){
1730
 
              ret = fchown(seckey_fd, uid, gid);
1731
 
              if(ret == -1){
1732
 
                perror_plus("fchown");
1733
 
              }
1734
 
            }
1735
 
          }
1736
 
          TEMP_FAILURE_RETRY(close(seckey_fd));
1737
 
        }
1738
 
      }
1739
 
    
1740
 
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1741
 
        int pubkey_fd = open(pubkey, O_RDONLY);
1742
 
        if(pubkey_fd == -1){
1743
 
          perror_plus("open");
1744
 
        } else {
1745
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1746
 
          if(ret == -1){
1747
 
            perror_plus("fstat");
1748
 
          } else {
1749
 
            if(S_ISREG(st.st_mode)
1750
 
               and st.st_uid == 0 and st.st_gid == 0){
1751
 
              ret = fchown(pubkey_fd, uid, gid);
1752
 
              if(ret == -1){
1753
 
                perror_plus("fchown");
1754
 
              }
1755
 
            }
1756
 
          }
1757
 
          TEMP_FAILURE_RETRY(close(pubkey_fd));
1758
 
        }
1759
 
      }
1760
 
    
1761
 
      /* Lower privileges */
1762
 
      errno = 0;
1763
 
      ret = seteuid(uid);
1764
 
      if(ret == -1){
1765
 
        perror_plus("seteuid");
1766
 
      }
 
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");
1767
1731
    }
1768
1732
  }
1769
1733
  
1770
1734
  /* Run network hooks */
1771
 
  if(not run_network_hooks("start", interface, delay)){
1772
 
    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
    }
1773
1751
  }
1774
1752
  
1775
1753
  if(not debug){
2214
2192
  if(gpgme_initialized){
2215
2193
    gpgme_release(mc.ctx);
2216
2194
  }
2217
 
  
 
2195
 
2218
2196
  /* Cleans up the circular linked list of Mandos servers the client
2219
2197
     has seen */
2220
2198
  if(mc.current_server != NULL){
2226
2204
    }
2227
2205
  }
2228
2206
  
2229
 
  /* Run network hooks */
2230
 
  run_network_hooks("stop", interface, delay);
2231
 
  
2232
2207
  /* Re-raise priviliges */
2233
2208
  {
2234
2209
    errno = 0;
2236
2211
    if(ret == -1){
2237
2212
      perror_plus("seteuid");
2238
2213
    }
 
2214
    /* Run network hooks */
 
2215
    if(not run_network_hooks("stop", interface, delay)){
 
2216
      goto end;
 
2217
    }
2239
2218
    
2240
2219
    /* Take down the network interface */
2241
2220
    if(take_down_interface and geteuid() == 0){