/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

* Makefile (run-client): Add "--network-hook-dir" option.
* plugin-runner.c (main): Only try to work around Debian bug #633582
                          if started as root.
* plugins.d/mandos-client.c (run_network_hooks): Bug fix: Run all
                                                 network hooks, not
                                                 just the first one.
                                                 Also add debug output.
  (main): Only try to work around Debian bug #633582 or run network
          hooks as root if started as root.

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() */
1302
1301
    }
1303
1302
    return 0;
1304
1303
  }
1305
 
  if(debug){
1306
 
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1307
 
                 direntry->d_name);
1308
 
  }
1309
1304
  return 1;
1310
1305
}
1311
1306
 
1407
1402
      pid_t hook_pid = fork();
1408
1403
      if(hook_pid == 0){
1409
1404
        /* 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
 
        }
1434
1405
        dup2(devnull, STDIN_FILENO);
1435
1406
        close(devnull);
1436
1407
        dup2(STDERR_FILENO, STDOUT_FILENO);
1437
1408
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1438
1409
        if(ret == -1){
1439
1410
          perror_plus("setenv");
1440
 
          _exit(EX_OSERR);
 
1411
          return false;
1441
1412
        }
1442
1413
        ret = setenv("DEVICE", interface, 1);
1443
1414
        if(ret == -1){
1444
1415
          perror_plus("setenv");
1445
 
          _exit(EX_OSERR);
 
1416
          return false;
1446
1417
        }
1447
1418
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1448
1419
        if(ret == -1){
1449
1420
          perror_plus("setenv");
1450
 
          _exit(EX_OSERR);
 
1421
          return false;
1451
1422
        }
1452
1423
        ret = setenv("MODE", mode, 1);
1453
1424
        if(ret == -1){
1454
1425
          perror_plus("setenv");
1455
 
          _exit(EX_OSERR);
 
1426
          return false;
1456
1427
        }
1457
1428
        char *delaystring;
1458
1429
        ret = asprintf(&delaystring, "%f", delay);
1459
1430
        if(ret == -1){
1460
1431
          perror_plus("asprintf");
1461
 
          _exit(EX_OSERR);
 
1432
          return false;
1462
1433
        }
1463
1434
        ret = setenv("DELAY", delaystring, 1);
1464
1435
        if(ret == -1){
1465
1436
          free(delaystring);
1466
1437
          perror_plus("setenv");
1467
 
          _exit(EX_OSERR);
 
1438
          return false;
1468
1439
        }
1469
1440
        free(delaystring);
1470
1441
        ret = execl(fullname, direntry->d_name, mode, NULL);
1498
1469
        }
1499
1470
      }
1500
1471
      free(fullname);
1501
 
      if(debug){
1502
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1503
 
                     direntry->d_name);
 
1472
      if(quit_now){
 
1473
        break;
1504
1474
      }
1505
1475
    }
1506
1476
    close(devnull);
1703
1673
    }
1704
1674
  }
1705
1675
    
1706
 
  {
 
1676
  if(getuid() == 0){
1707
1677
    /* Work around Debian bug #633582:
1708
1678
       <http://bugs.debian.org/633582> */
 
1679
    struct stat st;
1709
1680
    
1710
1681
    /* Re-raise priviliges */
1711
1682
    errno = 0;
1712
1683
    ret = seteuid(0);
1713
1684
    if(ret == -1){
1714
1685
      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
 
    
 
1686
    }
 
1687
    
 
1688
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1689
      int seckey_fd = open(seckey, O_RDONLY);
 
1690
      if(seckey_fd == -1){
 
1691
        perror_plus("open");
 
1692
      } else {
 
1693
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1694
        if(ret == -1){
 
1695
          perror_plus("fstat");
 
1696
        } else {
 
1697
          if(S_ISREG(st.st_mode)
 
1698
             and st.st_uid == 0 and st.st_gid == 0){
 
1699
            ret = fchown(seckey_fd, uid, gid);
 
1700
            if(ret == -1){
 
1701
              perror_plus("fchown");
 
1702
            }
 
1703
          }
 
1704
        }
 
1705
        TEMP_FAILURE_RETRY(close(seckey_fd));
 
1706
      }
 
1707
    }
 
1708
    
 
1709
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1710
      int pubkey_fd = open(pubkey, O_RDONLY);
 
1711
      if(pubkey_fd == -1){
 
1712
        perror_plus("open");
 
1713
      } else {
 
1714
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1715
        if(ret == -1){
 
1716
          perror_plus("fstat");
 
1717
        } else {
 
1718
          if(S_ISREG(st.st_mode)
 
1719
             and st.st_uid == 0 and st.st_gid == 0){
 
1720
            ret = fchown(pubkey_fd, uid, gid);
 
1721
            if(ret == -1){
 
1722
              perror_plus("fchown");
 
1723
            }
 
1724
          }
 
1725
        }
 
1726
        TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1727
      }
 
1728
    }
 
1729
    
 
1730
    /* Lower privileges */
 
1731
    errno = 0;
 
1732
    ret = seteuid(uid);
 
1733
    if(ret == -1){
 
1734
      perror_plus("seteuid");
 
1735
    }
 
1736
  }
 
1737
  
 
1738
  /* Run network hooks */
 
1739
  {
 
1740
    if(getuid() == 0){
 
1741
      /* Re-raise priviliges */
 
1742
      errno = 0;
 
1743
      ret = seteuid(0);
 
1744
      if(ret == -1){
 
1745
        perror_plus("seteuid");
 
1746
      }
 
1747
    }
 
1748
    if(not run_network_hooks("start", interface, delay)){
 
1749
      goto end;
 
1750
    }
 
1751
    if(getuid() == 0){
1760
1752
      /* Lower privileges */
1761
1753
      errno = 0;
1762
1754
      ret = seteuid(uid);
1766
1758
    }
1767
1759
  }
1768
1760
  
1769
 
  /* Run network hooks */
1770
 
  if(not run_network_hooks("start", interface, delay)){
1771
 
    goto end;
1772
 
  }
1773
 
  
1774
1761
  if(not debug){
1775
1762
    avahi_set_log_function(empty_log);
1776
1763
  }
2213
2200
  if(gpgme_initialized){
2214
2201
    gpgme_release(mc.ctx);
2215
2202
  }
2216
 
  
 
2203
 
2217
2204
  /* Cleans up the circular linked list of Mandos servers the client
2218
2205
     has seen */
2219
2206
  if(mc.current_server != NULL){
2225
2212
    }
2226
2213
  }
2227
2214
  
2228
 
  /* Run network hooks */
2229
 
  run_network_hooks("stop", interface, delay);
2230
 
  
2231
2215
  /* Re-raise priviliges */
2232
2216
  {
2233
 
    errno = 0;
2234
 
    ret = seteuid(0);
2235
 
    if(ret == -1){
2236
 
      perror_plus("seteuid");
 
2217
    if(getuid() == 0){
 
2218
      errno = 0;
 
2219
      ret = seteuid(0);
 
2220
      if(ret == -1){
 
2221
        perror_plus("seteuid");
 
2222
      }
 
2223
    }
 
2224
    /* Run network hooks */
 
2225
    if(not run_network_hooks("stop", interface, delay)){
 
2226
      goto end;
2237
2227
    }
2238
2228
    
2239
2229
    /* Take down the network interface */
2254
2244
      }
2255
2245
    }
2256
2246
  }
2257
 
  /* Lower privileges permanently */
2258
 
  errno = 0;
2259
 
  ret = setuid(uid);
2260
 
  if(ret == -1){
2261
 
    perror_plus("setuid");
 
2247
  if(getuid() == 0){
 
2248
    /* Lower privileges permanently */
 
2249
    errno = 0;
 
2250
    ret = setuid(uid);
 
2251
    if(ret == -1){
 
2252
      perror_plus("setuid");
 
2253
    }
2262
2254
  }
2263
2255
  
2264
2256
  /* Removes the GPGME temp directory and all files inside */