/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

* debian/mandos-client.README.Debian: Document network hook facility.
* debian/mandos-client.docs (network-hooks.d): Added.
* initramfs-tools-hook: Also pass VERBOSITY to network hook.
* plugins.d/mandos-client.xml (DESCRIPTION): Document network
                                             interface selection
                                             algorithm.
  (OPTIONS/--interface): Refer to NETWORK HOOKS section.
  (OVERVIEW): Refer to password-prompt(8mandos) explicitly.
  (NETWORK HOOKS): New section.
  (FILES): Add "/lib/mandos/network-hooks.d".

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() */
170
169
 
171
170
/* Function to use when printing errors */
172
171
void perror_plus(const char *print_text){
173
 
  int e = errno;
174
172
  fprintf(stderr, "Mandos plugin %s: ",
175
173
          program_invocation_short_name);
176
 
  errno = e;
177
174
  perror(print_text);
178
175
}
179
176
 
180
 
__attribute__((format (gnu_printf, 2, 3)))
181
177
int fprintf_plus(FILE *stream, const char *format, ...){
182
178
  va_list ap;
183
179
  va_start (ap, format);
205
201
}
206
202
 
207
203
/* Add server to set of servers to retry periodically */
208
 
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
209
 
                int af){
 
204
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
205
               int af){
210
206
  int ret;
211
207
  server *new_server = malloc(sizeof(server));
212
208
  if(new_server == NULL){
213
209
    perror_plus("malloc");
214
 
    return false;
 
210
    return -1;
215
211
  }
216
212
  *new_server = (server){ .ip = strdup(ip),
217
213
                          .port = port,
219
215
                          .af = af };
220
216
  if(new_server->ip == NULL){
221
217
    perror_plus("strdup");
222
 
    return false;
 
218
    return -1;
223
219
  }
224
220
  /* Special case of first server */
225
221
  if (mc.current_server == NULL){
236
232
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
237
233
  if(ret == -1){
238
234
    perror_plus("clock_gettime");
239
 
    return false;
 
235
    return -1;
240
236
  }
241
 
  return true;
 
237
  return 0;
242
238
}
243
239
 
244
240
/* 
1033
1029
      if(ret == 0){
1034
1030
        avahi_simple_poll_quit(mc.simple_poll);
1035
1031
      } else {
1036
 
        if(not add_server(ip, port, interface,
1037
 
                          avahi_proto_to_af(proto))){
1038
 
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1039
 
                       " list\n", name);
1040
 
        }
 
1032
        ret = add_server(ip, port, interface,
 
1033
                         avahi_proto_to_af(proto));
1041
1034
      }
1042
1035
    }
1043
1036
  }
1413
1406
      pid_t hook_pid = fork();
1414
1407
      if(hook_pid == 0){
1415
1408
        /* Child */
1416
 
        /* Raise privileges */
1417
 
        errno = 0;
1418
 
        ret = seteuid(0);
1419
 
        if(ret == -1){
1420
 
          perror_plus("seteuid");
1421
 
        }
1422
 
        /* Raise privileges even more */
1423
 
        errno = 0;
1424
 
        ret = setuid(0);
1425
 
        if(ret == -1){
1426
 
          perror_plus("setuid");
1427
 
        }
1428
 
        /* Set group */
1429
 
        errno = 0;
1430
 
        ret = setgid(0);
1431
 
        if(ret == -1){
1432
 
          perror_plus("setgid");
1433
 
        }
1434
 
        /* Reset supplementary groups */
1435
 
        errno = 0;
1436
 
        ret = setgroups(0, NULL);
1437
 
        if(ret == -1){
1438
 
          perror_plus("setgroups");
1439
 
        }
1440
1409
        dup2(devnull, STDIN_FILENO);
1441
1410
        close(devnull);
1442
1411
        dup2(STDERR_FILENO, STDOUT_FILENO);
1443
1412
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1444
1413
        if(ret == -1){
1445
1414
          perror_plus("setenv");
1446
 
          _exit(EX_OSERR);
 
1415
          return false;
1447
1416
        }
1448
1417
        ret = setenv("DEVICE", interface, 1);
1449
1418
        if(ret == -1){
1450
1419
          perror_plus("setenv");
1451
 
          _exit(EX_OSERR);
 
1420
          return false;
1452
1421
        }
1453
1422
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1454
1423
        if(ret == -1){
1455
1424
          perror_plus("setenv");
1456
 
          _exit(EX_OSERR);
 
1425
          return false;
1457
1426
        }
1458
1427
        ret = setenv("MODE", mode, 1);
1459
1428
        if(ret == -1){
1460
1429
          perror_plus("setenv");
1461
 
          _exit(EX_OSERR);
 
1430
          return false;
1462
1431
        }
1463
1432
        char *delaystring;
1464
1433
        ret = asprintf(&delaystring, "%f", delay);
1465
1434
        if(ret == -1){
1466
1435
          perror_plus("asprintf");
1467
 
          _exit(EX_OSERR);
 
1436
          return false;
1468
1437
        }
1469
1438
        ret = setenv("DELAY", delaystring, 1);
1470
1439
        if(ret == -1){
1471
1440
          free(delaystring);
1472
1441
          perror_plus("setenv");
1473
 
          _exit(EX_OSERR);
 
1442
          return false;
1474
1443
        }
1475
1444
        free(delaystring);
1476
 
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1477
 
          perror_plus("execl");
1478
 
          _exit(EXIT_FAILURE);
1479
 
        }
 
1445
        ret = execl(fullname, direntry->d_name, mode, NULL);
 
1446
        perror_plus("execl");
1480
1447
      } else {
1481
1448
        int status;
1482
1449
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1679
1646
        argp_state_help(state, state->out_stream,
1680
1647
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1681
1648
      case 'V':                 /* --version */
 
1649
        fprintf_plus(state->out_stream,
 
1650
                     "Mandos plugin mandos-client: ");
1682
1651
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1683
1652
        exit(argp_err_exit_status);
1684
1653
        break;
1709
1678
    }
1710
1679
  }
1711
1680
    
1712
 
  {
 
1681
  if(getuid() == 0){
1713
1682
    /* Work around Debian bug #633582:
1714
1683
       <http://bugs.debian.org/633582> */
 
1684
    struct stat st;
1715
1685
    
1716
1686
    /* Re-raise priviliges */
1717
1687
    errno = 0;
1718
1688
    ret = seteuid(0);
1719
1689
    if(ret == -1){
1720
1690
      perror_plus("seteuid");
1721
 
    } else {
1722
 
      struct stat st;
1723
 
      
1724
 
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1725
 
        int seckey_fd = open(seckey, O_RDONLY);
1726
 
        if(seckey_fd == -1){
1727
 
          perror_plus("open");
1728
 
        } else {
1729
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1730
 
          if(ret == -1){
1731
 
            perror_plus("fstat");
1732
 
          } else {
1733
 
            if(S_ISREG(st.st_mode)
1734
 
               and st.st_uid == 0 and st.st_gid == 0){
1735
 
              ret = fchown(seckey_fd, uid, gid);
1736
 
              if(ret == -1){
1737
 
                perror_plus("fchown");
1738
 
              }
1739
 
            }
1740
 
          }
1741
 
          TEMP_FAILURE_RETRY(close(seckey_fd));
1742
 
        }
1743
 
      }
1744
 
    
1745
 
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1746
 
        int pubkey_fd = open(pubkey, O_RDONLY);
1747
 
        if(pubkey_fd == -1){
1748
 
          perror_plus("open");
1749
 
        } else {
1750
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1751
 
          if(ret == -1){
1752
 
            perror_plus("fstat");
1753
 
          } else {
1754
 
            if(S_ISREG(st.st_mode)
1755
 
               and st.st_uid == 0 and st.st_gid == 0){
1756
 
              ret = fchown(pubkey_fd, uid, gid);
1757
 
              if(ret == -1){
1758
 
                perror_plus("fchown");
1759
 
              }
1760
 
            }
1761
 
          }
1762
 
          TEMP_FAILURE_RETRY(close(pubkey_fd));
1763
 
        }
1764
 
      }
1765
 
    
 
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){
1766
1757
      /* Lower privileges */
1767
1758
      errno = 0;
1768
1759
      ret = seteuid(uid);
1772
1763
    }
1773
1764
  }
1774
1765
  
1775
 
  /* Run network hooks */
1776
 
  if(not run_network_hooks("start", interface, delay)){
1777
 
    goto end;
1778
 
  }
1779
 
  
1780
1766
  if(not debug){
1781
1767
    avahi_set_log_function(empty_log);
1782
1768
  }
2231
2217
    }
2232
2218
  }
2233
2219
  
2234
 
  /* Run network hooks */
2235
 
  run_network_hooks("stop", interface, delay);
2236
 
  
2237
2220
  /* Re-raise priviliges */
2238
2221
  {
2239
 
    errno = 0;
2240
 
    ret = seteuid(0);
2241
 
    if(ret == -1){
2242
 
      perror_plus("seteuid");
 
2222
    if(getuid() == 0){
 
2223
      errno = 0;
 
2224
      ret = seteuid(0);
 
2225
      if(ret == -1){
 
2226
        perror_plus("seteuid");
 
2227
      }
2243
2228
    }
2244
2229
    
 
2230
    /* Run network hooks */
 
2231
    run_network_hooks("stop", interface, delay);
 
2232
    
2245
2233
    /* Take down the network interface */
2246
2234
    if(take_down_interface and geteuid() == 0){
2247
2235
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
2260
2248
      }
2261
2249
    }
2262
2250
  }
2263
 
  /* Lower privileges permanently */
2264
 
  errno = 0;
2265
 
  ret = setuid(uid);
2266
 
  if(ret == -1){
2267
 
    perror_plus("setuid");
 
2251
  if(getuid() == 0){
 
2252
    /* Lower privileges permanently */
 
2253
    errno = 0;
 
2254
    ret = setuid(uid);
 
2255
    if(ret == -1){
 
2256
      perror_plus("setuid");
 
2257
    }
2268
2258
  }
2269
2259
  
2270
2260
  /* Removes the GPGME temp directory and all files inside */