/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

working new feature: network-hooks - Enables user-scripts to take up
                     interfaces during bootup

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() */
 
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() */
1301
1302
    }
1302
1303
    return 0;
1303
1304
  }
 
1305
  if(debug){
 
1306
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
 
1307
                 direntry->d_name);
 
1308
  }
1304
1309
  return 1;
1305
1310
}
1306
1311
 
1388
1393
  } else {
1389
1394
    int devnull = open("/dev/null", O_RDONLY);
1390
1395
    for(int i = 0; i < numhooks; i++){
1391
 
      direntry = direntries[0];
 
1396
      direntry = direntries[i];
1392
1397
      char *fullname = NULL;
1393
1398
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1394
1399
      if(ret < 0){
1395
1400
        perror_plus("asprintf");
1396
1401
        continue;
1397
1402
      }
 
1403
      if(debug){
 
1404
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1405
                     direntry->d_name);
 
1406
      }
1398
1407
      pid_t hook_pid = fork();
1399
1408
      if(hook_pid == 0){
1400
1409
        /* Child */
 
1410
        /* Raise privileges */
 
1411
        errno = 0;
 
1412
        ret = seteuid(0);
 
1413
        if(ret == -1){
 
1414
          perror_plus("seteuid");
 
1415
        }
 
1416
        /* Raise privileges even more */
 
1417
        errno = 0;
 
1418
        ret = setuid(0);
 
1419
        if(ret == -1){
 
1420
          perror_plus("setuid");
 
1421
        }
 
1422
        /* Set group */
 
1423
        errno = 0;
 
1424
        ret = setgid(0);
 
1425
        if(ret == -1){
 
1426
          perror_plus("setgid");
 
1427
        }
 
1428
        /* Reset supplementary groups */
 
1429
        errno = 0;
 
1430
        ret = setgroups(0, NULL);
 
1431
        if(ret == -1){
 
1432
          perror_plus("setgroups");
 
1433
        }
1401
1434
        dup2(devnull, STDIN_FILENO);
1402
1435
        close(devnull);
1403
1436
        dup2(STDERR_FILENO, STDOUT_FILENO);
1404
1437
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1405
1438
        if(ret == -1){
1406
1439
          perror_plus("setenv");
1407
 
          return false;
 
1440
          _exit(EX_OSERR);
1408
1441
        }
1409
1442
        ret = setenv("DEVICE", interface, 1);
1410
1443
        if(ret == -1){
1411
1444
          perror_plus("setenv");
1412
 
          return false;
 
1445
          _exit(EX_OSERR);
1413
1446
        }
1414
1447
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1415
1448
        if(ret == -1){
1416
1449
          perror_plus("setenv");
1417
 
          return false;
 
1450
          _exit(EX_OSERR);
1418
1451
        }
1419
1452
        ret = setenv("MODE", mode, 1);
1420
1453
        if(ret == -1){
1421
1454
          perror_plus("setenv");
1422
 
          return false;
 
1455
          _exit(EX_OSERR);
1423
1456
        }
1424
1457
        char *delaystring;
1425
1458
        ret = asprintf(&delaystring, "%f", delay);
1426
1459
        if(ret == -1){
1427
1460
          perror_plus("asprintf");
1428
 
          return false;
 
1461
          _exit(EX_OSERR);
1429
1462
        }
1430
1463
        ret = setenv("DELAY", delaystring, 1);
1431
1464
        if(ret == -1){
1432
1465
          free(delaystring);
1433
1466
          perror_plus("setenv");
1434
 
          return false;
 
1467
          _exit(EX_OSERR);
1435
1468
        }
1436
1469
        free(delaystring);
1437
1470
        ret = execl(fullname, direntry->d_name, mode, NULL);
1465
1498
        }
1466
1499
      }
1467
1500
      free(fullname);
1468
 
      if(quit_now){
1469
 
        break;
 
1501
      if(debug){
 
1502
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1503
                     direntry->d_name);
1470
1504
      }
1471
1505
    }
1472
1506
    close(devnull);
1672
1706
  {
1673
1707
    /* Work around Debian bug #633582:
1674
1708
       <http://bugs.debian.org/633582> */
1675
 
    struct stat st;
1676
1709
    
1677
1710
    /* Re-raise priviliges */
1678
1711
    errno = 0;
1679
1712
    ret = seteuid(0);
1680
1713
    if(ret == -1){
1681
1714
      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");
 
1715
    } else {
 
1716
      struct stat st;
 
1717
      
 
1718
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1719
        int seckey_fd = open(seckey, O_RDONLY);
 
1720
        if(seckey_fd == -1){
 
1721
          perror_plus("open");
 
1722
        } else {
 
1723
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1724
          if(ret == -1){
 
1725
            perror_plus("fstat");
 
1726
          } else {
 
1727
            if(S_ISREG(st.st_mode)
 
1728
               and st.st_uid == 0 and st.st_gid == 0){
 
1729
              ret = fchown(seckey_fd, uid, gid);
 
1730
              if(ret == -1){
 
1731
                perror_plus("fchown");
 
1732
              }
 
1733
            }
 
1734
          }
 
1735
          TEMP_FAILURE_RETRY(close(seckey_fd));
 
1736
        }
 
1737
      }
 
1738
    
 
1739
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1740
        int pubkey_fd = open(pubkey, O_RDONLY);
 
1741
        if(pubkey_fd == -1){
 
1742
          perror_plus("open");
 
1743
        } else {
 
1744
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1745
          if(ret == -1){
 
1746
            perror_plus("fstat");
 
1747
          } else {
 
1748
            if(S_ISREG(st.st_mode)
 
1749
               and st.st_uid == 0 and st.st_gid == 0){
 
1750
              ret = fchown(pubkey_fd, uid, gid);
 
1751
              if(ret == -1){
 
1752
                perror_plus("fchown");
 
1753
              }
 
1754
            }
 
1755
          }
 
1756
          TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1757
        }
 
1758
      }
 
1759
    
 
1760
      /* Lower privileges */
 
1761
      errno = 0;
 
1762
      ret = seteuid(uid);
 
1763
      if(ret == -1){
 
1764
        perror_plus("seteuid");
 
1765
      }
1731
1766
    }
1732
1767
  }
1733
1768
  
1734
1769
  /* 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
 
    }
 
1770
  if(not run_network_hooks("start", interface, delay)){
 
1771
    goto end;
1751
1772
  }
1752
1773
  
1753
1774
  if(not debug){
2192
2213
  if(gpgme_initialized){
2193
2214
    gpgme_release(mc.ctx);
2194
2215
  }
2195
 
 
 
2216
  
2196
2217
  /* Cleans up the circular linked list of Mandos servers the client
2197
2218
     has seen */
2198
2219
  if(mc.current_server != NULL){
2204
2225
    }
2205
2226
  }
2206
2227
  
 
2228
  /* Run network hooks */
 
2229
  run_network_hooks("stop", interface, delay);
 
2230
  
2207
2231
  /* Re-raise priviliges */
2208
2232
  {
2209
2233
    errno = 0;
2211
2235
    if(ret == -1){
2212
2236
      perror_plus("seteuid");
2213
2237
    }
2214
 
    /* Run network hooks */
2215
 
    if(not run_network_hooks("stop", interface, delay)){
2216
 
      goto end;
2217
 
    }
2218
2238
    
2219
2239
    /* Take down the network interface */
2220
2240
    if(take_down_interface and geteuid() == 0){