/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

  • Committer: teddy at bsnet
  • Date: 2011-12-24 19:43:48 UTC
  • mfrom: (505.1.27 teddy)
  • Revision ID: teddy@fukt.bsnet.se-20111224194348-0buonmve2dnwcnzw
Merge from Teddy

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() */
201
202
}
202
203
 
203
204
/* Add server to set of servers to retry periodically */
204
 
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
205
 
               int af){
 
205
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
206
                int af){
206
207
  int ret;
207
208
  server *new_server = malloc(sizeof(server));
208
209
  if(new_server == NULL){
209
210
    perror_plus("malloc");
210
 
    return -1;
 
211
    return false;
211
212
  }
212
213
  *new_server = (server){ .ip = strdup(ip),
213
214
                          .port = port,
215
216
                          .af = af };
216
217
  if(new_server->ip == NULL){
217
218
    perror_plus("strdup");
218
 
    return -1;
 
219
    return false;
219
220
  }
220
221
  /* Special case of first server */
221
222
  if (mc.current_server == NULL){
232
233
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
233
234
  if(ret == -1){
234
235
    perror_plus("clock_gettime");
235
 
    return -1;
 
236
    return false;
236
237
  }
237
 
  return 0;
 
238
  return true;
238
239
}
239
240
 
240
241
/* 
1029
1030
      if(ret == 0){
1030
1031
        avahi_simple_poll_quit(mc.simple_poll);
1031
1032
      } else {
1032
 
        ret = add_server(ip, port, interface,
1033
 
                         avahi_proto_to_af(proto));
 
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
        }
1034
1038
      }
1035
1039
    }
1036
1040
  }
1406
1410
      pid_t hook_pid = fork();
1407
1411
      if(hook_pid == 0){
1408
1412
        /* 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
        }
1409
1437
        dup2(devnull, STDIN_FILENO);
1410
1438
        close(devnull);
1411
1439
        dup2(STDERR_FILENO, STDOUT_FILENO);
1412
1440
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1413
1441
        if(ret == -1){
1414
1442
          perror_plus("setenv");
1415
 
          return false;
 
1443
          _exit(EX_OSERR);
1416
1444
        }
1417
1445
        ret = setenv("DEVICE", interface, 1);
1418
1446
        if(ret == -1){
1419
1447
          perror_plus("setenv");
1420
 
          return false;
 
1448
          _exit(EX_OSERR);
1421
1449
        }
1422
1450
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1423
1451
        if(ret == -1){
1424
1452
          perror_plus("setenv");
1425
 
          return false;
 
1453
          _exit(EX_OSERR);
1426
1454
        }
1427
1455
        ret = setenv("MODE", mode, 1);
1428
1456
        if(ret == -1){
1429
1457
          perror_plus("setenv");
1430
 
          return false;
 
1458
          _exit(EX_OSERR);
1431
1459
        }
1432
1460
        char *delaystring;
1433
1461
        ret = asprintf(&delaystring, "%f", delay);
1434
1462
        if(ret == -1){
1435
1463
          perror_plus("asprintf");
1436
 
          return false;
 
1464
          _exit(EX_OSERR);
1437
1465
        }
1438
1466
        ret = setenv("DELAY", delaystring, 1);
1439
1467
        if(ret == -1){
1440
1468
          free(delaystring);
1441
1469
          perror_plus("setenv");
1442
 
          return false;
 
1470
          _exit(EX_OSERR);
1443
1471
        }
1444
1472
        free(delaystring);
1445
1473
        ret = execl(fullname, direntry->d_name, mode, NULL);
1646
1674
        argp_state_help(state, state->out_stream,
1647
1675
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1648
1676
      case 'V':                 /* --version */
1649
 
        fprintf_plus(state->out_stream,
1650
 
                     "Mandos plugin mandos-client: ");
1651
1677
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1652
1678
        exit(argp_err_exit_status);
1653
1679
        break;
1678
1704
    }
1679
1705
  }
1680
1706
    
1681
 
  if(getuid() == 0){
 
1707
  {
1682
1708
    /* Work around Debian bug #633582:
1683
1709
       <http://bugs.debian.org/633582> */
1684
 
    struct stat st;
1685
1710
    
1686
1711
    /* Re-raise priviliges */
1687
1712
    errno = 0;
1688
1713
    ret = seteuid(0);
1689
1714
    if(ret == -1){
1690
1715
      perror_plus("seteuid");
1691
 
    }
1692
 
    
1693
 
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1694
 
      int seckey_fd = open(seckey, O_RDONLY);
1695
 
      if(seckey_fd == -1){
1696
 
        perror_plus("open");
1697
 
      } else {
1698
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1699
 
        if(ret == -1){
1700
 
          perror_plus("fstat");
1701
 
        } else {
1702
 
          if(S_ISREG(st.st_mode)
1703
 
             and st.st_uid == 0 and st.st_gid == 0){
1704
 
            ret = fchown(seckey_fd, uid, gid);
1705
 
            if(ret == -1){
1706
 
              perror_plus("fchown");
1707
 
            }
1708
 
          }
1709
 
        }
1710
 
        TEMP_FAILURE_RETRY(close(seckey_fd));
1711
 
      }
1712
 
    }
1713
 
    
1714
 
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1715
 
      int pubkey_fd = open(pubkey, O_RDONLY);
1716
 
      if(pubkey_fd == -1){
1717
 
        perror_plus("open");
1718
 
      } else {
1719
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1720
 
        if(ret == -1){
1721
 
          perror_plus("fstat");
1722
 
        } else {
1723
 
          if(S_ISREG(st.st_mode)
1724
 
             and st.st_uid == 0 and st.st_gid == 0){
1725
 
            ret = fchown(pubkey_fd, uid, gid);
1726
 
            if(ret == -1){
1727
 
              perror_plus("fchown");
1728
 
            }
1729
 
          }
1730
 
        }
1731
 
        TEMP_FAILURE_RETRY(close(pubkey_fd));
1732
 
      }
1733
 
    }
1734
 
    
1735
 
    /* Lower privileges */
1736
 
    errno = 0;
1737
 
    ret = seteuid(uid);
1738
 
    if(ret == -1){
1739
 
      perror_plus("seteuid");
1740
 
    }
1741
 
  }
1742
 
  
1743
 
  /* Run network hooks */
1744
 
  {
1745
 
    if(getuid() == 0){
1746
 
      /* Re-raise priviliges */
1747
 
      errno = 0;
1748
 
      ret = seteuid(0);
1749
 
      if(ret == -1){
1750
 
        perror_plus("seteuid");
1751
 
      }
1752
 
    }
1753
 
    if(not run_network_hooks("start", interface, delay)){
1754
 
      goto end;
1755
 
    }
1756
 
    if(getuid() == 0){
 
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
    
1757
1761
      /* Lower privileges */
1758
1762
      errno = 0;
1759
1763
      ret = seteuid(uid);
1763
1767
    }
1764
1768
  }
1765
1769
  
 
1770
  /* Run network hooks */
 
1771
  if(not run_network_hooks("start", interface, delay)){
 
1772
    goto end;
 
1773
  }
 
1774
  
1766
1775
  if(not debug){
1767
1776
    avahi_set_log_function(empty_log);
1768
1777
  }
2217
2226
    }
2218
2227
  }
2219
2228
  
 
2229
  /* Run network hooks */
 
2230
  run_network_hooks("stop", interface, delay);
 
2231
  
2220
2232
  /* Re-raise priviliges */
2221
2233
  {
2222
 
    if(getuid() == 0){
2223
 
      errno = 0;
2224
 
      ret = seteuid(0);
2225
 
      if(ret == -1){
2226
 
        perror_plus("seteuid");
2227
 
      }
 
2234
    errno = 0;
 
2235
    ret = seteuid(0);
 
2236
    if(ret == -1){
 
2237
      perror_plus("seteuid");
2228
2238
    }
2229
2239
    
2230
 
    /* Run network hooks */
2231
 
    run_network_hooks("stop", interface, delay);
2232
 
    
2233
2240
    /* Take down the network interface */
2234
2241
    if(take_down_interface and geteuid() == 0){
2235
2242
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
2248
2255
      }
2249
2256
    }
2250
2257
  }
2251
 
  if(getuid() == 0){
2252
 
    /* Lower privileges permanently */
2253
 
    errno = 0;
2254
 
    ret = setuid(uid);
2255
 
    if(ret == -1){
2256
 
      perror_plus("setuid");
2257
 
    }
 
2258
  /* Lower privileges permanently */
 
2259
  errno = 0;
 
2260
  ret = setuid(uid);
 
2261
  if(ret == -1){
 
2262
    perror_plus("setuid");
2258
2263
  }
2259
2264
  
2260
2265
  /* Removes the GPGME temp directory and all files inside */