/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

* 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() */
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
 
1410
1402
      pid_t hook_pid = fork();
1411
1403
      if(hook_pid == 0){
1412
1404
        /* 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
1405
        dup2(devnull, STDIN_FILENO);
1438
1406
        close(devnull);
1439
1407
        dup2(STDERR_FILENO, STDOUT_FILENO);
1440
1408
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1441
1409
        if(ret == -1){
1442
1410
          perror_plus("setenv");
1443
 
          _exit(EX_OSERR);
 
1411
          return false;
1444
1412
        }
1445
1413
        ret = setenv("DEVICE", interface, 1);
1446
1414
        if(ret == -1){
1447
1415
          perror_plus("setenv");
1448
 
          _exit(EX_OSERR);
 
1416
          return false;
1449
1417
        }
1450
1418
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1451
1419
        if(ret == -1){
1452
1420
          perror_plus("setenv");
1453
 
          _exit(EX_OSERR);
 
1421
          return false;
1454
1422
        }
1455
1423
        ret = setenv("MODE", mode, 1);
1456
1424
        if(ret == -1){
1457
1425
          perror_plus("setenv");
1458
 
          _exit(EX_OSERR);
 
1426
          return false;
1459
1427
        }
1460
1428
        char *delaystring;
1461
1429
        ret = asprintf(&delaystring, "%f", delay);
1462
1430
        if(ret == -1){
1463
1431
          perror_plus("asprintf");
1464
 
          _exit(EX_OSERR);
 
1432
          return false;
1465
1433
        }
1466
1434
        ret = setenv("DELAY", delaystring, 1);
1467
1435
        if(ret == -1){
1468
1436
          free(delaystring);
1469
1437
          perror_plus("setenv");
1470
 
          _exit(EX_OSERR);
 
1438
          return false;
1471
1439
        }
1472
1440
        free(delaystring);
1473
1441
        ret = execl(fullname, direntry->d_name, mode, NULL);
1501
1469
        }
1502
1470
      }
1503
1471
      free(fullname);
1504
 
      if(debug){
1505
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1506
 
                     direntry->d_name);
 
1472
      if(quit_now){
 
1473
        break;
1507
1474
      }
1508
1475
    }
1509
1476
    close(devnull);
1674
1641
        argp_state_help(state, state->out_stream,
1675
1642
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1676
1643
      case 'V':                 /* --version */
 
1644
        fprintf_plus(state->out_stream,
 
1645
                     "Mandos plugin mandos-client: ");
1677
1646
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1678
1647
        exit(argp_err_exit_status);
1679
1648
        break;
1704
1673
    }
1705
1674
  }
1706
1675
    
1707
 
  {
 
1676
  if(getuid() == 0){
1708
1677
    /* Work around Debian bug #633582:
1709
1678
       <http://bugs.debian.org/633582> */
 
1679
    struct stat st;
1710
1680
    
1711
1681
    /* Re-raise priviliges */
1712
1682
    errno = 0;
1713
1683
    ret = seteuid(0);
1714
1684
    if(ret == -1){
1715
1685
      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
 
    
 
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){
1761
1752
      /* Lower privileges */
1762
1753
      errno = 0;
1763
1754
      ret = seteuid(uid);
1767
1758
    }
1768
1759
  }
1769
1760
  
1770
 
  /* Run network hooks */
1771
 
  if(not run_network_hooks("start", interface, delay)){
1772
 
    goto end;
1773
 
  }
1774
 
  
1775
1761
  if(not debug){
1776
1762
    avahi_set_log_function(empty_log);
1777
1763
  }
2214
2200
  if(gpgme_initialized){
2215
2201
    gpgme_release(mc.ctx);
2216
2202
  }
2217
 
  
 
2203
 
2218
2204
  /* Cleans up the circular linked list of Mandos servers the client
2219
2205
     has seen */
2220
2206
  if(mc.current_server != NULL){
2226
2212
    }
2227
2213
  }
2228
2214
  
2229
 
  /* Run network hooks */
2230
 
  run_network_hooks("stop", interface, delay);
2231
 
  
2232
2215
  /* Re-raise priviliges */
2233
2216
  {
2234
 
    errno = 0;
2235
 
    ret = seteuid(0);
2236
 
    if(ret == -1){
2237
 
      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;
2238
2227
    }
2239
2228
    
2240
2229
    /* Take down the network interface */
2255
2244
      }
2256
2245
    }
2257
2246
  }
2258
 
  /* Lower privileges permanently */
2259
 
  errno = 0;
2260
 
  ret = setuid(uid);
2261
 
  if(ret == -1){
2262
 
    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
    }
2263
2254
  }
2264
2255
  
2265
2256
  /* Removes the GPGME temp directory and all files inside */