/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 23:17:02 UTC
  • Revision ID: teddy@fukt.bsnet.se-20111224231702-1ffgu6r02p0bz9co
* plugins.d/splashy.c (error_plus): Check format string.
* plugins.d/askpass-fifo.c (error_plus): - '' -
* plugins.d/plymouth.c (error_plus): - '' -
* plugins.d/password-prompt.c (error_plus): - '' -
* plugins.d/usplash.c (error_plus): - '' -

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() */
174
175
  perror(print_text);
175
176
}
176
177
 
 
178
__attribute__((format (gnu_printf, 2, 3)))
177
179
int fprintf_plus(FILE *stream, const char *format, ...){
178
180
  va_list ap;
179
181
  va_start (ap, format);
201
203
}
202
204
 
203
205
/* 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){
 
206
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
207
                int af){
206
208
  int ret;
207
209
  server *new_server = malloc(sizeof(server));
208
210
  if(new_server == NULL){
209
211
    perror_plus("malloc");
210
 
    return -1;
 
212
    return false;
211
213
  }
212
214
  *new_server = (server){ .ip = strdup(ip),
213
215
                          .port = port,
215
217
                          .af = af };
216
218
  if(new_server->ip == NULL){
217
219
    perror_plus("strdup");
218
 
    return -1;
 
220
    return false;
219
221
  }
220
222
  /* Special case of first server */
221
223
  if (mc.current_server == NULL){
232
234
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
233
235
  if(ret == -1){
234
236
    perror_plus("clock_gettime");
235
 
    return -1;
 
237
    return false;
236
238
  }
237
 
  return 0;
 
239
  return true;
238
240
}
239
241
 
240
242
/* 
1029
1031
      if(ret == 0){
1030
1032
        avahi_simple_poll_quit(mc.simple_poll);
1031
1033
      } else {
1032
 
        ret = add_server(ip, port, interface,
1033
 
                         avahi_proto_to_af(proto));
 
1034
        if(not add_server(ip, port, interface,
 
1035
                          avahi_proto_to_af(proto))){
 
1036
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
 
1037
                       " list\n", name);
 
1038
        }
1034
1039
      }
1035
1040
    }
1036
1041
  }
1301
1306
    }
1302
1307
    return 0;
1303
1308
  }
 
1309
  if(debug){
 
1310
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
 
1311
                 direntry->d_name);
 
1312
  }
1304
1313
  return 1;
1305
1314
}
1306
1315
 
1388
1397
  } else {
1389
1398
    int devnull = open("/dev/null", O_RDONLY);
1390
1399
    for(int i = 0; i < numhooks; i++){
1391
 
      direntry = direntries[0];
 
1400
      direntry = direntries[i];
1392
1401
      char *fullname = NULL;
1393
1402
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1394
1403
      if(ret < 0){
1395
1404
        perror_plus("asprintf");
1396
1405
        continue;
1397
1406
      }
 
1407
      if(debug){
 
1408
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1409
                     direntry->d_name);
 
1410
      }
1398
1411
      pid_t hook_pid = fork();
1399
1412
      if(hook_pid == 0){
1400
1413
        /* Child */
 
1414
        /* Raise privileges */
 
1415
        errno = 0;
 
1416
        ret = seteuid(0);
 
1417
        if(ret == -1){
 
1418
          perror_plus("seteuid");
 
1419
        }
 
1420
        /* Raise privileges even more */
 
1421
        errno = 0;
 
1422
        ret = setuid(0);
 
1423
        if(ret == -1){
 
1424
          perror_plus("setuid");
 
1425
        }
 
1426
        /* Set group */
 
1427
        errno = 0;
 
1428
        ret = setgid(0);
 
1429
        if(ret == -1){
 
1430
          perror_plus("setgid");
 
1431
        }
 
1432
        /* Reset supplementary groups */
 
1433
        errno = 0;
 
1434
        ret = setgroups(0, NULL);
 
1435
        if(ret == -1){
 
1436
          perror_plus("setgroups");
 
1437
        }
1401
1438
        dup2(devnull, STDIN_FILENO);
1402
1439
        close(devnull);
1403
1440
        dup2(STDERR_FILENO, STDOUT_FILENO);
1404
1441
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1405
1442
        if(ret == -1){
1406
1443
          perror_plus("setenv");
1407
 
          return false;
 
1444
          _exit(EX_OSERR);
1408
1445
        }
1409
1446
        ret = setenv("DEVICE", interface, 1);
1410
1447
        if(ret == -1){
1411
1448
          perror_plus("setenv");
1412
 
          return false;
 
1449
          _exit(EX_OSERR);
1413
1450
        }
1414
1451
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1415
1452
        if(ret == -1){
1416
1453
          perror_plus("setenv");
1417
 
          return false;
 
1454
          _exit(EX_OSERR);
1418
1455
        }
1419
1456
        ret = setenv("MODE", mode, 1);
1420
1457
        if(ret == -1){
1421
1458
          perror_plus("setenv");
1422
 
          return false;
 
1459
          _exit(EX_OSERR);
1423
1460
        }
1424
1461
        char *delaystring;
1425
1462
        ret = asprintf(&delaystring, "%f", delay);
1426
1463
        if(ret == -1){
1427
1464
          perror_plus("asprintf");
1428
 
          return false;
 
1465
          _exit(EX_OSERR);
1429
1466
        }
1430
1467
        ret = setenv("DELAY", delaystring, 1);
1431
1468
        if(ret == -1){
1432
1469
          free(delaystring);
1433
1470
          perror_plus("setenv");
1434
 
          return false;
 
1471
          _exit(EX_OSERR);
1435
1472
        }
1436
1473
        free(delaystring);
1437
 
        ret = execl(fullname, direntry->d_name, mode, NULL);
1438
 
        perror_plus("execl");
 
1474
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1475
          perror_plus("execl");
 
1476
          _exit(EXIT_FAILURE);
 
1477
        }
1439
1478
      } else {
1440
1479
        int status;
1441
1480
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1465
1504
        }
1466
1505
      }
1467
1506
      free(fullname);
1468
 
      if(quit_now){
1469
 
        break;
 
1507
      if(debug){
 
1508
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1509
                     direntry->d_name);
1470
1510
      }
1471
1511
    }
1472
1512
    close(devnull);
1637
1677
        argp_state_help(state, state->out_stream,
1638
1678
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1639
1679
      case 'V':                 /* --version */
1640
 
        fprintf_plus(state->out_stream,
1641
 
                     "Mandos plugin mandos-client: ");
1642
1680
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1643
1681
        exit(argp_err_exit_status);
1644
1682
        break;
1672
1710
  {
1673
1711
    /* Work around Debian bug #633582:
1674
1712
       <http://bugs.debian.org/633582> */
1675
 
    struct stat st;
1676
1713
    
1677
1714
    /* Re-raise priviliges */
1678
1715
    errno = 0;
1679
1716
    ret = seteuid(0);
1680
1717
    if(ret == -1){
1681
1718
      perror_plus("seteuid");
1682
 
    }
1683
 
    
1684
 
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1685
 
      int seckey_fd = open(seckey, O_RDONLY);
1686
 
      if(seckey_fd == -1){
1687
 
        perror_plus("open");
1688
 
      } else {
1689
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1690
 
        if(ret == -1){
1691
 
          perror_plus("fstat");
1692
 
        } else {
1693
 
          if(S_ISREG(st.st_mode)
1694
 
             and st.st_uid == 0 and st.st_gid == 0){
1695
 
            ret = fchown(seckey_fd, uid, gid);
1696
 
            if(ret == -1){
1697
 
              perror_plus("fchown");
1698
 
            }
1699
 
          }
1700
 
        }
1701
 
        TEMP_FAILURE_RETRY(close(seckey_fd));
1702
 
      }
1703
 
    }
1704
 
    
1705
 
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1706
 
      int pubkey_fd = open(pubkey, O_RDONLY);
1707
 
      if(pubkey_fd == -1){
1708
 
        perror_plus("open");
1709
 
      } else {
1710
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1711
 
        if(ret == -1){
1712
 
          perror_plus("fstat");
1713
 
        } else {
1714
 
          if(S_ISREG(st.st_mode)
1715
 
             and st.st_uid == 0 and st.st_gid == 0){
1716
 
            ret = fchown(pubkey_fd, uid, gid);
1717
 
            if(ret == -1){
1718
 
              perror_plus("fchown");
1719
 
            }
1720
 
          }
1721
 
        }
1722
 
        TEMP_FAILURE_RETRY(close(pubkey_fd));
1723
 
      }
1724
 
    }
1725
 
    
1726
 
    /* Lower privileges */
1727
 
    errno = 0;
1728
 
    ret = seteuid(uid);
1729
 
    if(ret == -1){
1730
 
      perror_plus("seteuid");
 
1719
    } else {
 
1720
      struct stat st;
 
1721
      
 
1722
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1723
        int seckey_fd = open(seckey, O_RDONLY);
 
1724
        if(seckey_fd == -1){
 
1725
          perror_plus("open");
 
1726
        } else {
 
1727
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1728
          if(ret == -1){
 
1729
            perror_plus("fstat");
 
1730
          } else {
 
1731
            if(S_ISREG(st.st_mode)
 
1732
               and st.st_uid == 0 and st.st_gid == 0){
 
1733
              ret = fchown(seckey_fd, uid, gid);
 
1734
              if(ret == -1){
 
1735
                perror_plus("fchown");
 
1736
              }
 
1737
            }
 
1738
          }
 
1739
          TEMP_FAILURE_RETRY(close(seckey_fd));
 
1740
        }
 
1741
      }
 
1742
    
 
1743
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1744
        int pubkey_fd = open(pubkey, O_RDONLY);
 
1745
        if(pubkey_fd == -1){
 
1746
          perror_plus("open");
 
1747
        } else {
 
1748
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1749
          if(ret == -1){
 
1750
            perror_plus("fstat");
 
1751
          } else {
 
1752
            if(S_ISREG(st.st_mode)
 
1753
               and st.st_uid == 0 and st.st_gid == 0){
 
1754
              ret = fchown(pubkey_fd, uid, gid);
 
1755
              if(ret == -1){
 
1756
                perror_plus("fchown");
 
1757
              }
 
1758
            }
 
1759
          }
 
1760
          TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1761
        }
 
1762
      }
 
1763
    
 
1764
      /* Lower privileges */
 
1765
      errno = 0;
 
1766
      ret = seteuid(uid);
 
1767
      if(ret == -1){
 
1768
        perror_plus("seteuid");
 
1769
      }
1731
1770
    }
1732
1771
  }
1733
1772
  
1734
1773
  /* Run network hooks */
1735
 
  {
1736
 
    /* Re-raise priviliges */
1737
 
    errno = 0;
1738
 
    ret = seteuid(0);
1739
 
    if(ret == -1){
1740
 
      perror_plus("seteuid");
1741
 
    }
1742
 
    if(not run_network_hooks("start", interface, delay)){
1743
 
      goto end;
1744
 
    }
1745
 
    /* Lower privileges */
1746
 
    errno = 0;
1747
 
    ret = seteuid(uid);
1748
 
    if(ret == -1){
1749
 
      perror_plus("seteuid");
1750
 
    }
 
1774
  if(not run_network_hooks("start", interface, delay)){
 
1775
    goto end;
1751
1776
  }
1752
1777
  
1753
1778
  if(not debug){
2192
2217
  if(gpgme_initialized){
2193
2218
    gpgme_release(mc.ctx);
2194
2219
  }
2195
 
 
 
2220
  
2196
2221
  /* Cleans up the circular linked list of Mandos servers the client
2197
2222
     has seen */
2198
2223
  if(mc.current_server != NULL){
2204
2229
    }
2205
2230
  }
2206
2231
  
 
2232
  /* Run network hooks */
 
2233
  run_network_hooks("stop", interface, delay);
 
2234
  
2207
2235
  /* Re-raise priviliges */
2208
2236
  {
2209
2237
    errno = 0;
2211
2239
    if(ret == -1){
2212
2240
      perror_plus("seteuid");
2213
2241
    }
2214
 
    /* Run network hooks */
2215
 
    if(not run_network_hooks("stop", interface, delay)){
2216
 
      goto end;
2217
 
    }
2218
2242
    
2219
2243
    /* Take down the network interface */
2220
2244
    if(take_down_interface and geteuid() == 0){