1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 863 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
|
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
#include "blocking.h"
#include "pipe.h"
#include "log.h"
#include "e.h"
#include "jail.h"
#include "strtonum.h"
#include "randombytes.h"
#include "alloc.h"
#include "connectioninfo.h"
#include "proxyprotocol.h"
#include "iptostr.h"
#include "writeall.h"
#include "fixname.h"
#include "fixpath.h"
#include "str.h"
#include "tls.h"
#include "open.h"
#include "main.h"
/* clang-format off */
static struct tls_context ctx = {
.flags = (tls_flags_ENFORCE_SERVER_PREFERENCES | tls_flags_NO_RENEGOTIATION),
.flaghandshakedone = 0,
.flagdelayedenc = 0,
.flagnojail = 0,
.jailaccount = 0,
.jaildir = EMPTYDIR,
.version_min = tls_version_TLS12,
.version_max = tls_version_TLS12,
.ecdhe_enabled = ((uint32_t) 1 << tls_ecdhe_X25519) | ((uint32_t) 1 << tls_ecdhe_SECP256R1),
.cipher_enabled_len = 6,
.certfiles_len = 0,
.anchorfn = 0,
.clientcrtbuf = {0},
.clientcrt.oid = 0,
.cipher_enabled = {
BR_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,
BR_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256,
BR_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
BR_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
BR_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
BR_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
/* space for ECDSA AES_256_CBC_SHA384 */ 0,
/* space for RSA AES_256_CBC_SHA384 */ 0,
/* space for ECDSA AES_128_CBC_SHA256 */ 0,
/* space for RSA AES_128_CBC_SHA256 */ 0,
/* space for ECDSA AES_256_CBC_SHA */ 0,
/* space for RSA AES_256_CBC_SHA */ 0,
/* space for ECDSA AES_128_CBC_SHA */ 0,
/* space for RSA AES_128_CBC_SHA */ 0,
},
};
#define CONTROLPIPEFD 5
static const char *hstimeoutstr = "30";
static const char *timeoutstr = "60";
static const char *user = 0;
static const char *userfromcert = 0;
static long long starttimeout = 3;
static long long hstimeout;
static long long timeout;
static int flagverbose = 1;
static int fromchildcontrol[2] = {-1, -1};
static int fromchild[2] = {-1, -1};
static int tochild[2] = {-1, -1};
static pid_t child = -1;
static int status;
static int fromkeyjail[2] = {-1, -1};
static int tokeyjail[2] = {-1, -1};
static pid_t keyjailchild = -1;
static int selfpipe[2] = {-1, -1};
static unsigned char localip[16] = {0};
static unsigned char localport[2] = {0};
static unsigned char remoteip[16] = {0};
static unsigned char remoteport[2] = {0};
static char remoteipstr[IPTOSTR_LEN] = {0};
static void signalhandler(int signum) {
int w;
log_t3("signal ", lognum(signum), " received");
if (signum == SIGCHLD) {
alarm(1);
return;
}
w = write(selfpipe[1], "", 1);
(void) w;
}
static void cleanup(void) {
randombytes(&ctx, sizeof ctx);
randombytes(localip, sizeof localip);
randombytes(localport, sizeof localport);
randombytes(remoteip, sizeof remoteip);
randombytes(remoteip, sizeof remoteip);
randombytes(remoteipstr, sizeof remoteipstr);
alloc_freeall();
{
unsigned char stack[4096];
randombytes(stack, sizeof stack);
}
}
#define die(x) { cleanup(); _exit(x); }
#define die_pipe() { log_f1("unable to create pipe"); die(111); }
#define die_controlpipe() { log_f3("unable to create control pipe on filedescriptor ", lognum(CONTROLPIPEFD), ": filedescriptor exits"); die(111); }
#define die_devnull() { log_f1("unable to open /dev/null"); die(111); }
#define die_writetopipe() { log_f1("unable to write to pipe"); die(111); }
#define die_fork() { log_f1("unable to fork"); die(111); }
#define die_dup() { log_f1("unable to dup"); die(111); }
#define die_droppriv(x) { log_f3("unable to drop privileges to '", (x), "'"); die(111); }
#define die_jail() { log_f1("unable to create jail"); die(111); }
#define die_readanchorpem(x) { log_f3("unable to read anchor PEM file '", (x), "'"); die(111); }
#define die_parseanchorpem(x) { log_f3("unable to parse anchor PEM file '", (x), "'"); die(111); }
#define die_extractcn(x) { log_f3("unable to extract ASN.1 object ", (x), " from client certificate: object not found"); die(111); }
#define die_optionUa() { log_f1("option -U must be used with -a"); die(100); }
#define die_optionUn() { log_f1("option -U is not compatible with -u"); die(100); }
#define die_ppin(x) { log_f3("unable to receive incoming proxy-protocol v", (x), " string");; die(100); }
/* proxy-protocol */
static int (*ppin)(int, unsigned char *, unsigned char *, unsigned char *, unsigned char *) = 0;
static const char *ppinver = 0;
static void pp_incoming(const char *x) {
if (str_equal("0", x)) {
/* disable incoming proxy-protocol*/
return;
}
else if (str_equal("1", x)) {
ppin = proxyprotocol_v1_get;
ppinver = x;
}
else {
log_f3("unable to parse incoming proxy-protocol version from the string '", x, "'");
log_f1("available: 1");
die(100);
}
}
static void certuser_add(const char *x) {
userfromcert = x;
if (str_equal("commonName", x)) {
ctx.clientcrt.oid = (unsigned char *)"\003\125\004\003";
}
else if (str_equal("emailAddress", x)) {
ctx.clientcrt.oid = (unsigned char *)"\011\052\206\110\206\367\015\001\011\001";
}
else {
log_f3("unable to parse ASN.1 object from the string '", x, "'");
log_f1("available: commonName");
log_f1("available: emailAddress");
die(100);
}
}
static void version_setmax(const char *x) {
long long i;
if (!tls_version_setmax(&ctx, x)) {
log_f3("unable to parse TLS max. version from the string '", x, "'");
for (i = 0; tls_versions[i].name; ++i) {
log_f2("available: ", tls_versions[i].name);
}
die(100);
}
}
static void version_setmin(const char *x) {
long long i;
if (!tls_version_setmin(&ctx, x)) {
log_f3("unable to parse TLS min. version from the string '", x, "'");
for (i = 0; tls_versions[i].name; ++i) {
log_f2("available: ", tls_versions[i].name);
}
die(100);
}
}
static void certfile_add_dir(const char *x) {
struct stat st;
if (stat(x, &st) == -1) {
log_f3("unable to stat certdir '", x, "'");
die(100)
}
if ((st.st_mode & S_IFMT) != S_IFDIR) {
errno = ENOTDIR;
log_f3("unable to add certdir '", x, "'");
die(100)
}
if (!tls_certfile_add_dir(&ctx, x)) {
log_f3("unable to add more than ", lognum(tls_CERTFILES), " certdirs+certfiles");
die(100);
}
}
static void certfile_add_file(const char *x) {
struct stat st;
if (stat(x, &st) == -1) {
log_f3("unable to stat certfile '", x, "'");
die(100);
}
if ((st.st_mode & S_IFMT) != S_IFREG) {
errno = 0;
log_f3("unable to add certfile '", x, "': not a regular file");
die(100);
}
if (!tls_certfile_add_file(&ctx, x)) {
log_f3("unable to add more than ", lognum(tls_CERTFILES), " certdirs+certfiles");
die(100);
}
}
static void anchor_add(char *x) {
struct stat st;
if (stat(x, &st) == -1) {
log_f3("unable to add anchor file '", x, "'");
die(100);
}
if ((st.st_mode & S_IFMT) != S_IFREG) {
errno = 0;
log_f3("unable to add anchor file '", x, "': not a regular file");
die(100);
}
if (!tls_anchor_add(&ctx, x)) {
log_f1("unable to add more than one anchor file");
die(100);
}
}
static void ecdhe_add(const char *x) {
long long i;
if (!tls_ecdhe_add(&ctx, x)) {
log_f3("unable to parse ephemeral algorithm from the string '", x, "'");
for (i = 0; tls_ecdhes[i].name; ++i) {
log_f2("available: ", tls_ecdhes[i].name);
}
die(100);
}
}
static void cipher_add(const char *x) {
long long i;
if (!tls_cipher_add(&ctx, x)) {
log_f3("unable to parse cipher from the string '", x, "'");
for (i = 0; tls_ciphers[i].name; ++i) {
log_f2("available: ", tls_ciphers[i].name);
}
die(100);
}
}
static long long timeout_parse(const char *x) {
long long ret;
if (!strtonum(&ret, x)) {
log_f3("unable to parse timeout from the string '", x, "'");
die(100);
}
if (ret < 1) {
log_f3("timeout must be a number > 0, not '", x, "'");
die(100);
}
if (ret > 86400) {
log_f3("timeout must be a number < 86400, not '", x, "'");
die(100);
}
return ret;
}
static void usage(void) {
log_u1("tlswrapper [options] [ -d certdir ] [ -f certfile ] prog");
die(100);
}
int main_tlswrapper(int argc, char **argv, int flagnojail) {
char *x;
int flaguser = 0;
long long r;
errno = 0;
signal(SIGPIPE, SIG_IGN);
signal(SIGCHLD, signalhandler);
signal(SIGTERM, signalhandler);
alarm(starttimeout);
log_name("tlswrapper");
log_id(0);
(void) argc;
if (!argv[0]) usage();
for (;;) {
if (!argv[1]) break;
if (argv[1][0] != '-') break;
x = *++argv;
if (x[0] == '-' && x[1] == 0) break;
if (x[0] == '-' && x[1] == '-' && x[2] == 0) break;
while (*++x) {
if (*x == 'q') { flagverbose = 0; log_level(flagverbose); continue; }
if (*x == 'Q') { flagverbose = 1; log_level(flagverbose); continue; }
if (*x == 'v') { log_level(++flagverbose); continue; }
/* server preferences */
if (*x == 's') { ctx.flags |= tls_flags_ENFORCE_SERVER_PREFERENCES; continue; }
if (*x == 'S') { ctx.flags &= ~tls_flags_ENFORCE_SERVER_PREFERENCES; continue; }
/* proxy-protocol */
if (*x == 'p') {
if (x[1]) { pp_incoming(x + 1); break; }
if (argv[1]) { pp_incoming(*++argv); break; }
}
/* run child under user */
if (*x == 'U') {
if (x[1]) { certuser_add(x + 1); break; }
if (argv[1]) { certuser_add(*++argv); break; }
}
if (*x == 'u') {
if (x[1]) { user = x + 1; break; }
if (argv[1]) { user = *++argv; break; }
}
/* TLS version */
if (*x == 'm') {
if (x[1]) { version_setmin(x + 1); break; }
if (argv[1]) { version_setmin(*++argv); break; }
}
if (*x == 'M') {
if (x[1]) { version_setmax(x + 1); break; }
if (argv[1]) { version_setmax(*++argv); break; }
}
/* timeouts */
if (*x == 'T') {
if (x[1]) { hstimeoutstr = x + 1; break; }
if (argv[1]) { hstimeoutstr = *++argv; break; }
}
if (*x == 't') {
if (x[1]) { timeoutstr = x + 1; break; }
if (argv[1]) { timeoutstr = *++argv; break; }
}
/* certificates */
if (*x == 'd') {
if (x[1]) { certfile_add_dir(x + 1); break; }
if (argv[1]) { certfile_add_dir(*++argv); break; }
}
if (*x == 'f') {
if (x[1]) { certfile_add_file(x + 1); break; }
if (argv[1]) { certfile_add_file(*++argv); break; }
}
/* anchor - client certificates */
if (*x == 'a') {
ctx.flags &= ~tls_flags_TOLERATE_NO_CLIENT_AUTH;
if (x[1]) { anchor_add(x + 1); break; }
if (argv[1]) { anchor_add(*++argv); break; }
}
/* ephemeral */
if (*x == 'e') {
if (x[1]) { ecdhe_add(x + 1); break; }
if (argv[1]) { ecdhe_add(*++argv); break; }
}
/* ciphers */
if (*x == 'c') {
if (x[1]) { cipher_add(x + 1); break; }
if (argv[1]) { cipher_add(*++argv); break; }
}
/* jail */
if (*x == 'J') {
if (x[1]) { ctx.jaildir = (x + 1); break; }
if (argv[1]) { ctx.jaildir = (*++argv); break; }
}
if (*x == 'j') {
if (x[1]) { ctx.jailaccount = (x + 1); break; }
if (argv[1]) { ctx.jailaccount = (*++argv); break; }
}
/* delayed encryption */
if (*x == 'n') { ctx.flagdelayedenc = 1; continue; }
if (*x == 'N') { ctx.flagdelayedenc = 0; continue; }
usage();
}
}
if (!*++argv) usage();
if (!ctx.certfiles_len) usage();
if (userfromcert && !ctx.anchorfn) die_optionUa();
if (userfromcert && ctx.flagdelayedenc) die_optionUn();
timeout = timeout_parse(timeoutstr);
hstimeout = timeout_parse(hstimeoutstr);
/* set flagnojail */
ctx.flagnojail = flagnojail;
/* create control pipe */
if (ctx.flagdelayedenc) {
struct stat st;
if (fstat(CONTROLPIPEFD, &st) != -1) die_controlpipe();
for (;;) {
r = open_read("/dev/null");
if (r == -1) die_devnull();
if (r > CONTROLPIPEFD) { close(r); break; }
}
}
/* run child process */
if (open_pipe(tochild) == -1) die_pipe();
if (open_pipe(fromchild) == -1) die_pipe();
if (open_pipe(fromchildcontrol) == -1) die_pipe();
child = fork();
switch (child) {
case -1:
die_fork();
case 0:
alarm(0);
close(tochild[1]);
close(0);
if (dup(tochild[0]) != 0) die_dup();
blocking_enable(0);
close(fromchild[0]);
close(1);
if (dup(fromchild[1]) != 1) die_dup();
blocking_enable(1);
close(fromchildcontrol[0]);
close(CONTROLPIPEFD);
if (ctx.flagdelayedenc) {
if (dup(fromchildcontrol[1]) != CONTROLPIPEFD) die_dup();
blocking_enable(CONTROLPIPEFD);
}
/* read connection info from net-process */
if (pipe_readall(0, localip, sizeof localip) == -1) die(111);
if (pipe_readall(0, localport, sizeof localport) == -1) die(111);
if (pipe_readall(0, remoteip, sizeof remoteip) == -1) die(111);
if (pipe_readall(0, remoteport, sizeof remoteport) == -1) die(111);
connectioninfo_set(localip, localport, remoteip, remoteport);
/* drop root to account from client certificate ASN.1 object */
do {
char account[256];
size_t accountlen = sizeof account;
if (pipe_readmax(0, account, &accountlen) == -1) die(111);
if (accountlen <= 1) break;
account[accountlen - 1] = 0;
if (!userfromcert) break;
if (jail_droppriv(account) == -1) die_droppriv(account);
} while (0);
/* drop root */
if (user) if (jail_droppriv(user) == -1) die_droppriv(user);
signal(SIGPIPE, SIG_DFL);
signal(SIGCHLD, SIG_DFL);
signal(SIGTERM, SIG_DFL);
log_t3("running '", argv[0], "'");
execvp(*argv, argv);
log_f2("unable to run ", *argv);
die(111);
}
close(fromchildcontrol[1]);
close(fromchild[1]);
close(tochild[0]);
blocking_disable(fromchildcontrol[0]);
blocking_disable(fromchild[0]);
blocking_disable(tochild[1]);
/* initialize randombytes */
{
char ch[1];
randombytes(ch, sizeof ch);
}
/* run service process for loading keys and secret-key operations */
if (open_pipe(fromkeyjail) == -1) die_pipe();
if (open_pipe(tokeyjail) == -1) die_pipe();
keyjailchild = fork();
switch (keyjailchild) {
case -1:
die_fork();
case 0:
alarm(0);
close(fromkeyjail[0]);
close(tokeyjail[1]);
close(fromchildcontrol[0]);
close(fromchild[0]);
close(tochild[1]);
close(0);
if (dup(tokeyjail[0]) != 0) die_dup();
close(1);
if (dup(fromkeyjail[1]) != 1) die_dup();
blocking_enable(0);
blocking_enable(1);
signal(SIGPIPE, SIG_IGN);
signal(SIGCHLD, SIG_DFL);
signal(SIGTERM, SIG_DFL);
log_ip(0);
tls_keyjail(&ctx);
die(0);
}
close(fromkeyjail[1]);
close(tokeyjail[0]);
blocking_enable(fromkeyjail[0]);
blocking_enable(tokeyjail[1]);
tls_pipe_fromchild = fromkeyjail[0];
tls_pipe_tochild = tokeyjail[1];
tls_pipe_eng = &ctx.cc.eng;
/* create selfpipe */
if (open_pipe(selfpipe) == -1) die_pipe();
blocking_enable(selfpipe[1]);
/* handshake timeout */
signal(SIGALRM, signalhandler);
alarm(hstimeout);
/* drop privileges, chroot, set limits, ... NETJAIL starts here */
if (!ctx.flagnojail) {
if (jail(ctx.jailaccount, ctx.jaildir, 1) == -1) die_jail();
}
if (ctx.anchorfn) {
char *pubpem;
size_t pubpemlen;
/* get anchor PEM file, and parse it */
fixpath(ctx.anchorfn);
if (pipe_write(tls_pipe_tochild, ctx.anchorfn, str_len(ctx.anchorfn) + 1) == -1) die_writetopipe();
pubpem = pipe_readalloc(tls_pipe_fromchild, &pubpemlen);
if (!pubpem) die_readanchorpem(ctx.anchorfn);
if (!tls_pubcrt_parse(&ctx.anchorcrt, pubpem, pubpemlen, ctx.anchorfn)) die_parseanchorpem(ctx.anchorfn);
alloc_free(pubpem);
}
/* receive proxy-protocol string */
if (ppin) {
if (!ppin(0, localip, localport, remoteip, remoteport)) {
die_ppin(ppinver);
}
}
else {
/* get connection info */
(void) connectioninfo_get(localip, localport, remoteip, remoteport);
}
log_ip(iptostr(remoteipstr, remoteip));
/* non-blockning stdin/stdout */
blocking_disable(0);
blocking_disable(1);
log_d1("start");
/* write connection info to the child */
if (pipe_write(tochild[1], localip, sizeof localip) == -1) die_writetopipe();
if (pipe_write(tochild[1], localport, sizeof localport) == -1) die_writetopipe();
if (pipe_write(tochild[1], remoteip, sizeof remoteip) == -1) die_writetopipe();
if (pipe_write(tochild[1], remoteport, sizeof remoteport) == -1) die_writetopipe();
if (ctx.flagdelayedenc) {
if (pipe_write(tochild[1], "", 1) == -1) die_writetopipe();
flaguser = 1;
}
else {
close(fromchildcontrol[0]);
}
/* TLS init */
tls_profile(&ctx);
/* main loop */
for (;;) {
unsigned int st;
struct pollfd p[6];
struct pollfd *q;
struct pollfd *watch0;
struct pollfd *watch1;
struct pollfd *watchfromchild;
struct pollfd *watchtochild;
struct pollfd *watchfromselfpipe;
struct pollfd *watchfromcontrol;
unsigned char *buf;
size_t len;
st = tls_engine_current_state(&ctx);
if (st & BR_SSL_CLOSED) break;
if (tls_engine_handshakedone(&ctx)) {
/* CN from anchor certificate */
if (!flaguser) {
ctx.clientcrtbuf[sizeof ctx.clientcrtbuf - 1] = 0;
if (userfromcert) {
if (!ctx.clientcrt.status) die_extractcn(userfromcert);
log_d4(userfromcert, " from the client certificate '", ctx.clientcrtbuf, "'");
fixname(ctx.clientcrtbuf);
}
if (pipe_write(tochild[1], ctx.clientcrtbuf, str_len(ctx.clientcrtbuf) + 1) == -1) die_writetopipe();
flaguser = 1;
}
log_i9("SSL connection: ", tls_version_str(br_ssl_engine_get_version(&ctx.cc.eng)), ", ",
tls_cipher_str(ctx.cc.eng.session.cipher_suite), ", ", tls_ecdhe_str(br_ssl_engine_get_ecdhe_curve(&ctx.cc.eng)),
", sni='", br_ssl_engine_get_server_name(&ctx.cc.eng), "'");
alarm(timeout);
}
watch0 = watch1 = watchfromchild = watchtochild = watchfromselfpipe = watchfromcontrol = 0;
q = p;
if (st & BR_SSL_SENDREC) { watch1 = q; q->fd = 1; q->events = POLLOUT; ++q; }
if (st & BR_SSL_RECVREC) { watch0 = q; q->fd = 0; q->events = POLLIN; ++q; }
if (st & BR_SSL_RECVAPP) { watchtochild = q; q->fd = tochild[1]; q->events = POLLOUT; ++q; }
if (st & BR_SSL_SENDAPP) { watchfromchild = q; q->fd = fromchild[0]; q->events = POLLIN; ++q; }
watchfromselfpipe = q; q->fd = selfpipe[0]; q->events = POLLIN; ++q;
if (ctx.flagdelayedenc) { watchfromcontrol = q; q->fd = fromchildcontrol[0]; q->events = POLLIN; ++q; }
if (jail_poll(p, q - p, -1) < 0) {
watch0 = watch1 = watchfromchild = watchtochild = watchfromselfpipe = watchfromcontrol = 0;
}
else {
if (watch1) if (!watch1->revents) watch1 = 0;
if (watch0) if (!watch0->revents) watch0 = 0;
if (watchtochild) if (!watchtochild->revents) watchtochild = 0;
if (watchfromchild) if (!watchfromchild->revents) watchfromchild = 0;
if (watchfromselfpipe) if (!watchfromselfpipe->revents) watchfromselfpipe = 0;
if (watchfromcontrol) if (!watchfromcontrol->revents) watchfromcontrol = 0;
}
/* recvapp */
if (watchtochild) {
buf = tls_engine_recvapp_buf(&ctx, &len);
r = write(tochild[1], buf, len);
if (r == -1) if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) continue;
if (r <= 0) { log_d1("write to child failed"); break; }
log_t4("write(tochild[1], buf, len=", lognum(len), ") = ", lognum(r));
tls_engine_recvapp_ack(&ctx, r);
continue;
}
/* sendrec */
if (watch1) {
buf = tls_engine_sendrec_buf(&ctx, &len);
r = write(1, buf, len);
if (r == -1) if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) continue;
if (r <= 0) { log_d1("write to standard output failed"); break; }
log_t4("write(1, buf, len=", lognum(len), ") = ", lognum(r));
tls_engine_sendrec_ack(&ctx, r);
continue;
}
/* recvrec */
if (watch0) {
buf = tls_engine_recvrec_buf(&ctx, &len);
r = read(0, buf, len);
if (r == -1) if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) continue;
if (r <= 0) {
if (r < 0) log_d1("read from standard input failed");
if (r == 0) log_t1("read from standard input failed, connection closed");
ctx.netclosed = 1;
break;
}
log_t4("read(0, buf, len=", lognum(len), ") = ", lognum(r));
tls_engine_recvrec_ack(&ctx, r);
alarm(timeout); /* refresh timeout */
continue;
}
/* sendapp */
if (watchfromchild) {
buf = tls_engine_sendapp_buf(&ctx, &len);
r = read(fromchild[0], buf, len);
if (r == -1) if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) continue;
if (r <= 0) {
if (r < 0) log_d1("read from child failed");
if (r == 0) log_t1("read from child failed, connection closed");
tls_engine_close(&ctx);
tls_engine_flush(&ctx, 0);
continue;
}
log_t4("read(fromchild[0], buf, len=", lognum(len), ") = ", lognum(r));
tls_engine_sendapp_ack(&ctx, r);
tls_engine_flush(&ctx, 0);
alarm(timeout); /* refresh timeout */
continue;
}
/* controlpipe */
if (watchfromcontrol) {
buf = tls_engine_sendapp5_buf(&ctx, &len);
r = read(fromchildcontrol[0], buf, len);
if (r == -1) if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) continue;
if (r == -1) {
log_d1("read from child failed");
break;
}
tls_engine_sendapp5_ack(&ctx, r);
if (r == 0 && ctx.tonet5buflen) {
if (writeall(1, ctx.tonet5buf, ctx.tonet5buflen) == -1) {
log_d1("write to standard output failed");
break;
}
ctx.flagdelayedenc = 0;
log_d1("child requested encryption(STARTTLS), start TLS");
close(fromchildcontrol[0]);
alarm(hstimeout);
}
continue;
}
/* signal received */
if (watchfromselfpipe) {
log_d1("signal received");
break;
}
}
signal(SIGCHLD, SIG_DFL);
signal(SIGALRM, SIG_DFL);
/* wait for keyjail child */
close(fromkeyjail[0]);
close(tokeyjail[1]);
do {
r = waitpid(keyjailchild, &status, 0);
} while (r == -1 && errno == EINTR);
if (!WIFEXITED(status)) {
log_t2("keyjail process killed by signal ", lognum(WTERMSIG(status)));
}
else {
log_t2("keyjail exited with status ", lognum(WEXITSTATUS(status)));
}
/* wait for child */
close(fromchild[0]);
close(tochild[1]);
do {
r = waitpid(child, &status, 0);
} while (r == -1 && errno == EINTR);
errno = 0;
if (!WIFEXITED(status)) {
log_f2("child process killed by signal ", lognum(WTERMSIG(status)));
die(111);
}
log_d2("child exited with status ", lognum(WEXITSTATUS(status)));
die(WEXITSTATUS(status));
}
/* clang-format on */
|