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