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 594 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 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
|
/*
* server.c -- nsd(8) network input/output
*
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
*
* See LICENSE for the license.
*
*/
#include <config.h>
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <fcntl.h>
#include <netdb.h>
#include "axfr.h"
#include "namedb.h"
#include "netio.h"
#include "plugins.h"
/*
* Data for the UDP handlers.
*/
struct udp_handler_data
{
struct nsd *nsd;
struct nsd_socket *socket;
query_type *query;
};
/*
* Data for the TCP accept handlers. Most data is simply passed along
* to the TCP connection handler.
*/
struct tcp_accept_handler_data {
struct nsd *nsd;
struct nsd_socket *socket;
size_t tcp_accept_handler_count;
netio_handler_type *tcp_accept_handlers;
};
/*
* Data for the TCP connection handlers.
*
* The TCP handlers use non-blocking I/O. This is necessary to avoid
* blocking the entire server on a slow TCP connection, but does make
* reading from and writing to the socket more complicated.
*
* Basically, whenever a read/write would block (indicated by the
* EAGAIN errno variable) we remember the position we were reading
* from/writing to and return from the TCP reading/writing event
* handler. When the socket becomes readable/writable again we
* continue from the same position.
*/
struct tcp_handler_data
{
/*
* The region used to allocate all TCP connection related
* data, including this structure. This region is destroyed
* when the connection is closed.
*/
region_type *region;
/*
* The global nsd structure.
*/
struct nsd *nsd;
/*
* The current query data for this TCP connection.
*/
query_type *query;
/*
* These fields are used to enable the TCP accept handlers
* when the number of TCP connection drops below the maximum
* number of TCP connections.
*/
size_t tcp_accept_handler_count;
netio_handler_type *tcp_accept_handlers;
/*
* The query_state is used to remember if we are performing an
* AXFR, if we're done processing, or if we should discard the
* query and connection.
*/
query_state_type query_state;
/*
* The bytes_transmitted field is used to remember the number
* of bytes transmitted when receiving or sending a DNS
* packet. The count includes the two additional bytes used
* to specify the packet length on a TCP connection.
*/
size_t bytes_transmitted;
};
/*
* Handle incoming queries on the UDP server sockets.
*/
static void handle_udp(netio_type *netio,
netio_handler_type *handler,
netio_event_types_type event_types);
/*
* Handle incoming connections on the TCP sockets. These handlers
* usually wait for the NETIO_EVENT_READ event (indicating an incoming
* connection) but are disabled when the number of current TCP
* connections is equal to the maximum number of TCP connections.
* Disabling is done by changing the handler to wait for the
* NETIO_EVENT_NONE type. This is done using the function
* configure_tcp_accept_handlers.
*/
static void handle_tcp_accept(netio_type *netio,
netio_handler_type *handler,
netio_event_types_type event_types);
/*
* Handle incoming queries on a TCP connection. The TCP connections
* are configured to be non-blocking and the handler may be called
* multiple times before a complete query is received.
*/
static void handle_tcp_reading(netio_type *netio,
netio_handler_type *handler,
netio_event_types_type event_types);
/*
* Handle outgoing responses on a TCP connection. The TCP connections
* are configured to be non-blocking and the handler may be called
* multiple times before a complete response is sent.
*/
static void handle_tcp_writing(netio_type *netio,
netio_handler_type *handler,
netio_event_types_type event_types);
/*
* Change the event types the HANDLERS are interested in to
* EVENT_TYPES.
*/
static void configure_handler_event_types(size_t count,
netio_handler_type *handlers,
netio_event_types_type event_types);
static uint16_t *compressed_dname_offsets;
/*
* Remove the specified pid from the list of child pids. Returns 0 if
* the pid is not in the list, 1 otherwise. The field is set to 0.
*/
static int
delete_child_pid(struct nsd *nsd, pid_t pid)
{
size_t i;
for (i = 0; i < nsd->child_count; ++i) {
if (nsd->children[i].pid == pid) {
nsd->children[i].pid = 0;
return 1;
}
}
return 0;
}
/*
* Restart child servers if necessary.
*/
static int
restart_child_servers(struct nsd *nsd)
{
size_t i;
/* Fork the child processes... */
for (i = 0; i < nsd->child_count; ++i) {
if (nsd->children[i].pid <= 0) {
nsd->children[i].pid = fork();
switch (nsd->children[i].pid) {
case 0: /* CHILD */
nsd->server_kind = nsd->children[i].kind;
nsd->mode = NSD_RUN;
nsd->pid = 0;
nsd->child_count = 0;
server_child(nsd);
/* NOTREACH */
exit(0);
case -1:
log_msg(LOG_ERR, "fork failed: %s",
strerror(errno));
return -1;
}
}
}
return 0;
}
static void
initialize_dname_compression_tables(struct nsd *nsd)
{
compressed_dname_offsets = (uint16_t *) xalloc(
(domain_table_count(nsd->db->domains) + 1) * sizeof(uint16_t));
memset(compressed_dname_offsets, 0,
(domain_table_count(nsd->db->domains) + 1) * sizeof(uint16_t));
compressed_dname_offsets[0] = QHEADERSZ; /* The original query name */
region_add_cleanup(nsd->db->region, free, compressed_dname_offsets);
}
/*
* Initialize the server, create and bind the sockets.
* Drop the priviledges and chroot if requested.
*
*/
int
server_init(struct nsd *nsd)
{
size_t i;
#if defined(SO_REUSEADDR) || (defined(INET6) && (defined(IPV6_V6ONLY) || defined(IPV6_USE_MIN_MTU)))
int on = 1;
#endif
/* UDP */
/* Make a socket... */
for (i = 0; i < nsd->ifs; i++) {
if ((nsd->udp[i].s = socket(nsd->udp[i].addr->ai_family, nsd->udp[i].addr->ai_socktype, 0)) == -1) {
#if defined(INET6)
if (nsd->udp[i].addr->ai_family == AF_INET6 &&
errno == EAFNOSUPPORT && nsd->grab_ip6_optional) {
log_msg(LOG_WARNING, "fallback to UDP4, no IPv6: not supported");
continue;
}
#endif /* INET6 */
log_msg(LOG_ERR, "can't create a socket: %s", strerror(errno));
return -1;
}
#if defined(INET6)
if (nsd->udp[i].addr->ai_family == AF_INET6) {
# if defined(IPV6_V6ONLY)
if (setsockopt(nsd->udp[i].s,
IPPROTO_IPV6, IPV6_V6ONLY,
&on, sizeof(on)) < 0)
{
log_msg(LOG_ERR, "setsockopt(..., IPV6_V6ONLY, ...) failed: %s",
strerror(errno));
return -1;
}
# endif
# if defined(IPV6_USE_MIN_MTU)
/*
* There is no fragmentation of IPv6 datagrams
* during forwarding in the network. Therefore
* we do not send UDP datagrams larger than
* the minimum IPv6 MTU of 1280 octets. The
* EDNS0 message length can be larger if the
* network stack supports IPV6_USE_MIN_MTU.
*/
if (setsockopt(nsd->udp[i].s,
IPPROTO_IPV6, IPV6_USE_MIN_MTU,
&on, sizeof(on)) < 0)
{
log_msg(LOG_ERR, "setsockopt(..., IPV6_USE_MIN_MTU, ...) failed: %s",
strerror(errno));
return -1;
}
# endif
}
#endif
/* Bind it... */
if (bind(nsd->udp[i].s, (struct sockaddr *) nsd->udp[i].addr->ai_addr, nsd->udp[i].addr->ai_addrlen) != 0) {
log_msg(LOG_ERR, "can't bind the socket: %s", strerror(errno));
return -1;
}
}
/* TCP */
/* Make a socket... */
for (i = 0; i < nsd->ifs; i++) {
if ((nsd->tcp[i].s = socket(nsd->tcp[i].addr->ai_family, nsd->tcp[i].addr->ai_socktype, 0)) == -1) {
#if defined(INET6)
if (nsd->tcp[i].addr->ai_family == AF_INET6 &&
errno == EAFNOSUPPORT && nsd->grab_ip6_optional) {
log_msg(LOG_WARNING, "fallback to TCP4, no IPv6: not supported");
continue;
}
#endif /* INET6 */
log_msg(LOG_ERR, "can't create a socket: %s", strerror(errno));
return -1;
}
#ifdef SO_REUSEADDR
if (setsockopt(nsd->tcp[i].s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) < 0) {
log_msg(LOG_ERR, "setsockopt(..., SO_REUSEADDR, ...) failed: %s", strerror(errno));
return -1;
}
#endif /* SO_REUSEADDR */
#if defined(INET6) && defined(IPV6_V6ONLY)
if (nsd->tcp[i].addr->ai_family == AF_INET6 &&
setsockopt(nsd->tcp[i].s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
{
log_msg(LOG_ERR, "setsockopt(..., IPV6_V6ONLY, ...) failed: %s", strerror(errno));
return -1;
}
#endif
/* Bind it... */
if (bind(nsd->tcp[i].s, (struct sockaddr *) nsd->tcp[i].addr->ai_addr, nsd->tcp[i].addr->ai_addrlen) != 0) {
log_msg(LOG_ERR, "can't bind the socket: %s", strerror(errno));
return -1;
}
/* Listen to it... */
if (listen(nsd->tcp[i].s, TCP_BACKLOG) == -1) {
log_msg(LOG_ERR, "can't listen: %s", strerror(errno));
return -1;
}
}
#ifdef HAVE_CHROOT
/* Chroot */
if (nsd->chrootdir) {
int l = strlen(nsd->chrootdir);
nsd->dbfile += l;
nsd->pidfile += l;
if (chroot(nsd->chrootdir)) {
log_msg(LOG_ERR, "unable to chroot: %s", strerror(errno));
return -1;
}
}
#endif
/* Drop the permissions */
if (setgid(nsd->gid) != 0 || setuid(nsd->uid) !=0) {
log_msg(LOG_ERR, "unable to drop user priviledges: %s", strerror(errno));
return -1;
}
/* Open the database... */
if ((nsd->db = namedb_open(nsd->dbfile)) == NULL) {
return -1;
}
initialize_dname_compression_tables(nsd);
#ifdef BIND8_STATS
/* Initialize times... */
time(&nsd->st.boot);
if(nsd->st.period > 0)
alarm(nsd->st.period - (time(NULL) % nsd->st.period));
#endif /* BIND8_STATS */
return 0;
}
/*
* Fork the required number of servers.
*/
static int
server_start_children(struct nsd *nsd)
{
size_t i;
/* Start all child servers initially. */
for (i = 0; i < nsd->child_count; ++i) {
nsd->children[i].pid = 0;
}
return restart_child_servers(nsd);
}
static void
close_all_sockets(struct nsd_socket sockets[], size_t n)
{
size_t i;
/* Close all the sockets... */
for (i = 0; i < n; ++i) {
if (sockets[i].s != -1) {
close(sockets[i].s);
sockets[i].s = -1;
}
}
}
/*
* Close the sockets, shutdown the server and exit.
* Does not return.
*
*/
static void
server_shutdown(struct nsd *nsd)
{
close_all_sockets(nsd->udp, nsd->ifs);
close_all_sockets(nsd->tcp, nsd->ifs);
exit(0);
}
/*
* The main server simply waits for signals and child processes to
* terminate. Child processes are restarted as necessary.
*/
void
server_main(struct nsd *nsd)
{
int fd;
int status;
pid_t child_pid;
pid_t reload_pid = -1;
pid_t old_pid;
sig_atomic_t mode;
assert(nsd->server_kind == NSD_SERVER_MAIN);
if (server_start_children(nsd) != 0) {
kill(nsd->pid, SIGTERM);
exit(1);
}
while ((mode = nsd->mode) != NSD_SHUTDOWN) {
switch (mode) {
case NSD_RUN:
child_pid = waitpid(0, &status, 0);
if (child_pid == -1) {
if (errno == EINTR) {
continue;
}
log_msg(LOG_WARNING, "wait failed: %s", strerror(errno));
} else {
int is_child = delete_child_pid(nsd, child_pid);
if (is_child) {
log_msg(LOG_WARNING,
"server %d died unexpectedly with status %d, restarting",
(int) child_pid, status);
restart_child_servers(nsd);
} else if (child_pid == reload_pid) {
log_msg(LOG_WARNING,
"Reload process %d failed with status %d, continuing with old database",
(int) child_pid, status);
reload_pid = -1;
} else {
log_msg(LOG_WARNING,
"Unknown child %d terminated with status %d",
(int) child_pid, status);
}
}
break;
case NSD_RELOAD:
nsd->mode = NSD_RUN;
if (reload_pid != -1) {
log_msg(LOG_WARNING, "Reload already in progress (pid = %d)",
(int) reload_pid);
break;
}
log_msg(LOG_WARNING, "signal received, reloading...");
reload_pid = fork();
switch (reload_pid) {
case -1:
log_msg(LOG_ERR, "fork failed: %s", strerror(errno));
break;
case 0:
/* CHILD */
namedb_close(nsd->db);
if ((nsd->db = namedb_open(nsd->dbfile)) == NULL) {
log_msg(LOG_ERR, "unable to reload the database: %s", strerror(errno));
exit(1);
}
initialize_dname_compression_tables(nsd);
#ifdef PLUGINS
if (plugin_database_reloaded() != NSD_PLUGIN_CONTINUE) {
log_msg(LOG_ERR, "plugin reload failed");
exit(1);
}
#endif /* PLUGINS */
old_pid = nsd->pid;
nsd->pid = getpid();
reload_pid = -1;
#ifdef BIND8_STATS
/* Restart dumping stats if required. */
time(&nsd->st.boot);
if(nsd->st.period > 0)
alarm(nsd->st.period - (time(NULL) % nsd->st.period));
#endif
if (server_start_children(nsd) != 0) {
kill(nsd->pid, SIGTERM);
exit(1);
}
/* Send SIGINT to terminate the parent quitely... */
if (kill(old_pid, SIGINT) != 0) {
log_msg(LOG_ERR, "cannot kill %d: %s",
(int) old_pid, strerror(errno));
exit(1);
}
/* Overwrite pid... */
if (writepid(nsd) == -1) {
log_msg(LOG_ERR, "cannot overwrite the pidfile %s: %s", nsd->pidfile, strerror(errno));
}
break;
default:
/* PARENT */
break;
}
break;
case NSD_QUIT:
server_shutdown(nsd);
break;
case NSD_SHUTDOWN:
log_msg(LOG_WARNING, "signal received, shutting down...");
break;
default:
log_msg(LOG_WARNING, "NSD main server mode invalid: %d", nsd->mode);
nsd->mode = NSD_RUN;
break;
}
}
#ifdef PLUGINS
plugin_finalize_all();
#endif /* PLUGINS */
/* Truncate the pid file. */
if ((fd = open(nsd->pidfile, O_WRONLY | O_TRUNC, 0644)) == -1) {
log_msg(LOG_ERR, "can not truncate the pid file %s: %s", nsd->pidfile, strerror(errno));
}
close(fd);
/* Unlink it if possible... */
unlink(nsd->pidfile);
server_shutdown(nsd);
}
static query_state_type
process_query(struct nsd *nsd, struct query *query)
{
#ifdef PLUGINS
query_state_type rc;
nsd_plugin_callback_args_type callback_args;
nsd_plugin_callback_result_type callback_result;
callback_args.query = query;
callback_args.data = NULL;
callback_args.result_code = NSD_RC_OK;
callback_result = query_received_callbacks(&callback_args, NULL);
if (callback_result != NSD_PLUGIN_CONTINUE) {
return handle_callback_result(callback_result, &callback_args);
}
rc = query_process(query, nsd);
if (rc == QUERY_PROCESSED) {
callback_args.data = NULL;
callback_args.result_code = NSD_RC_OK;
callback_result = query_processed_callbacks(
&callback_args,
query->domain ? query->domain->plugin_data : NULL);
if (callback_result != NSD_PLUGIN_CONTINUE) {
return handle_callback_result(callback_result, &callback_args);
}
}
return rc;
#else /* !PLUGINS */
return query_process(query, nsd);
#endif /* !PLUGINS */
}
/*
* Serve DNS requests.
*/
void
server_child(struct nsd *nsd)
{
size_t i;
region_type *server_region = region_create(xalloc, free);
netio_type *netio = netio_create(server_region);
netio_handler_type *tcp_accept_handlers;
sig_atomic_t mode;
assert(nsd->server_kind != NSD_SERVER_MAIN);
if (!(nsd->server_kind & NSD_SERVER_TCP)) {
close_all_sockets(nsd->tcp, nsd->ifs);
}
if (!(nsd->server_kind & NSD_SERVER_UDP)) {
close_all_sockets(nsd->udp, nsd->ifs);
}
if (nsd->server_kind & NSD_SERVER_UDP) {
for (i = 0; i < nsd->ifs; ++i) {
struct udp_handler_data *data;
netio_handler_type *handler;
data = (struct udp_handler_data *) region_alloc(
server_region,
sizeof(struct udp_handler_data));
data->query = query_create(
server_region, compressed_dname_offsets);
data->nsd = nsd;
data->socket = &nsd->udp[i];
handler = (netio_handler_type *) region_alloc(
server_region, sizeof(netio_handler_type));
handler->fd = nsd->udp[i].s;
handler->timeout = NULL;
handler->user_data = data;
handler->event_types = NETIO_EVENT_READ;
handler->event_handler = handle_udp;
netio_add_handler(netio, handler);
}
}
/*
* Keep track of all the TCP accept handlers so we can enable
* and disable them based on the current number of active TCP
* connections.
*/
tcp_accept_handlers = (netio_handler_type *) region_alloc(
server_region, nsd->ifs * sizeof(netio_handler_type));
if (nsd->server_kind & NSD_SERVER_TCP) {
for (i = 0; i < nsd->ifs; ++i) {
struct tcp_accept_handler_data *data;
netio_handler_type *handler;
data = (struct tcp_accept_handler_data *) region_alloc(
server_region,
sizeof(struct tcp_accept_handler_data));
data->nsd = nsd;
data->socket = &nsd->tcp[i];
data->tcp_accept_handler_count = nsd->ifs;
data->tcp_accept_handlers = tcp_accept_handlers;
handler = &tcp_accept_handlers[i];
handler->fd = nsd->tcp[i].s;
handler->timeout = NULL;
handler->user_data = data;
handler->event_types = NETIO_EVENT_READ;
handler->event_handler = handle_tcp_accept;
netio_add_handler(netio, handler);
}
}
/* The main loop... */
while ((mode = nsd->mode) != NSD_QUIT) {
/* Do we need to do the statistics... */
if (mode == NSD_STATS) {
#ifdef BIND8_STATS
/* Dump the statistics */
bind8_stats(nsd);
#else /* BIND8_STATS */
log_msg(LOG_NOTICE, "Statistics support not enabled at compile time.");
#endif /* BIND8_STATS */
nsd->mode = NSD_RUN;
}
/* Wait for a query... */
if (netio_dispatch(netio, NULL, NULL) == -1) {
if (errno != EINTR) {
log_msg(LOG_ERR, "netio_dispatch failed: %s", strerror(errno));
break;
}
}
}
#ifdef BIND8_STATS
bind8_stats(nsd);
#endif /* BIND8_STATS */
region_destroy(server_region);
server_shutdown(nsd);
}
static void
handle_udp(netio_type *ATTR_UNUSED(netio),
netio_handler_type *handler,
netio_event_types_type event_types)
{
struct udp_handler_data *data
= (struct udp_handler_data *) handler->user_data;
int received, sent;
struct query *q = data->query;
if (!(event_types & NETIO_EVENT_READ)) {
return;
}
/* Account... */
if (data->socket->addr->ai_family == AF_INET) {
STATUP(data->nsd, qudp);
} else if (data->socket->addr->ai_family == AF_INET6) {
STATUP(data->nsd, qudp6);
}
/* Initialize the query... */
query_reset(q, UDP_MAX_MESSAGE_LEN, 0);
received = recvfrom(handler->fd,
buffer_begin(q->packet),
buffer_remaining(q->packet),
0,
(struct sockaddr *)&q->addr,
&q->addrlen);
if (received == -1) {
if (errno != EAGAIN && errno != EINTR) {
log_msg(LOG_ERR, "recvfrom failed: %s", strerror(errno));
STATUP(data->nsd, rxerr);
}
} else {
buffer_skip(q->packet, received);
buffer_flip(q->packet);
/* Process and answer the query... */
if (process_query(data->nsd, q) != QUERY_DISCARDED) {
if (RCODE(q->packet) == RCODE_OK && !AA(q->packet))
STATUP(data->nsd, nona);
/* Add EDNS0 and TSIG info if necessary. */
query_add_optional(q, data->nsd);
buffer_flip(q->packet);
sent = sendto(handler->fd,
buffer_begin(q->packet),
buffer_remaining(q->packet),
0,
(struct sockaddr *) &q->addr,
q->addrlen);
if (sent == -1) {
log_msg(LOG_ERR, "sendto failed: %s", strerror(errno));
STATUP(data->nsd, txerr);
} else if ((size_t) sent != buffer_remaining(q->packet)) {
log_msg(LOG_ERR, "sent %d in place of %d bytes", sent, (int) buffer_remaining(q->packet));
} else {
#ifdef BIND8_STATS
/* Account the rcode & TC... */
STATUP2(data->nsd, rcode, RCODE(q->packet));
if (TC(q->packet))
STATUP(data->nsd, truncated);
#endif /* BIND8_STATS */
}
} else {
STATUP(data->nsd, dropped);
}
}
}
static void
cleanup_tcp_handler(netio_type *netio, netio_handler_type *handler)
{
struct tcp_handler_data *data
= (struct tcp_handler_data *) handler->user_data;
netio_remove_handler(netio, handler);
close(handler->fd);
/*
* Enable the TCP accept handlers when the current number of
* TCP connections is about to drop below the maximum number
* of TCP connections.
*/
if (data->nsd->current_tcp_count == data->nsd->maximum_tcp_count) {
configure_handler_event_types(data->tcp_accept_handler_count,
data->tcp_accept_handlers,
NETIO_EVENT_READ);
}
--data->nsd->current_tcp_count;
assert(data->nsd->current_tcp_count >= 0);
region_destroy(data->region);
}
static void
handle_tcp_reading(netio_type *netio,
netio_handler_type *handler,
netio_event_types_type event_types)
{
struct tcp_handler_data *data
= (struct tcp_handler_data *) handler->user_data;
ssize_t received;
if (event_types & NETIO_EVENT_TIMEOUT) {
/* Connection timed out. */
cleanup_tcp_handler(netio, handler);
return;
}
assert(event_types & NETIO_EVENT_READ);
if (data->bytes_transmitted == 0) {
query_reset(data->query, TCP_MAX_MESSAGE_LEN, 1);
}
/*
* Check if we received the leading packet length bytes yet.
*/
if (data->bytes_transmitted < sizeof(uint16_t)) {
received = read(handler->fd,
(char *) &data->query->tcplen
+ data->bytes_transmitted,
sizeof(uint16_t) - data->bytes_transmitted);
if (received == -1) {
if (errno == EAGAIN || errno == EINTR) {
/*
* Read would block, wait until more
* data is available.
*/
return;
} else {
log_msg(LOG_ERR, "failed reading from tcp: %s", strerror(errno));
cleanup_tcp_handler(netio, handler);
return;
}
} else if (received == 0) {
/* EOF */
cleanup_tcp_handler(netio, handler);
return;
}
data->bytes_transmitted += received;
if (data->bytes_transmitted < sizeof(uint16_t)) {
/*
* Not done with the tcplen yet, wait for more
* data to become available.
*/
return;
}
assert(data->bytes_transmitted == sizeof(uint16_t));
data->query->tcplen = ntohs(data->query->tcplen);
/*
* Minimum query size is:
*
* Size of the header (12)
* + Root domain name (1)
* + Query class (2)
* + Query type (2)
*/
if (data->query->tcplen < QHEADERSZ + 1 + sizeof(uint16_t) + sizeof(uint16_t)) {
log_msg(LOG_WARNING, "dropping bogus tcp connection");
cleanup_tcp_handler(netio, handler);
return;
}
if (data->query->tcplen > data->query->maxlen) {
log_msg(LOG_ERR, "insufficient tcp buffer, dropping connection");
cleanup_tcp_handler(netio, handler);
return;
}
buffer_set_limit(data->query->packet, data->query->tcplen);
}
assert(buffer_remaining(data->query->packet) > 0);
/* Read the (remaining) query data. */
received = read(handler->fd,
buffer_current(data->query->packet),
buffer_remaining(data->query->packet));
if (received == -1) {
if (errno == EAGAIN || errno == EINTR) {
/*
* Read would block, wait until more data is
* available.
*/
return;
} else {
log_msg(LOG_ERR, "failed reading from tcp: %s", strerror(errno));
cleanup_tcp_handler(netio, handler);
return;
}
} else if (received == 0) {
/* EOF */
cleanup_tcp_handler(netio, handler);
return;
}
data->bytes_transmitted += received;
buffer_skip(data->query->packet, received);
if (buffer_remaining(data->query->packet) > 0) {
/*
* Message not yet complete, wait for more data to
* become available.
*/
return;
}
assert(buffer_position(data->query->packet) == data->query->tcplen);
/* Account... */
#ifndef INET6
STATUP(data->nsd, ctcp);
#else
if (data->query->addr.ss_family == AF_INET) {
STATUP(data->nsd, ctcp);
} else if (data->query->addr.ss_family == AF_INET6) {
STATUP(data->nsd, ctcp6);
}
#endif
/* We have a complete query, process it. */
buffer_flip(data->query->packet);
data->query_state = process_query(data->nsd, data->query);
if (data->query_state == QUERY_DISCARDED) {
/* Drop the packet and the entire connection... */
STATUP(data->nsd, dropped);
cleanup_tcp_handler(netio, handler);
return;
}
if (RCODE(data->query->packet) == RCODE_OK
&& !AA(data->query->packet))
{
STATUP(data->nsd, nona);
}
query_add_optional(data->query, data->nsd);
/* Switch to the tcp write handler. */
buffer_flip(data->query->packet);
data->query->tcplen = buffer_remaining(data->query->packet);
data->bytes_transmitted = 0;
handler->timeout->tv_sec = TCP_TIMEOUT;
handler->timeout->tv_nsec = 0L;
timespec_add(handler->timeout, netio_current_time(netio));
handler->event_types = NETIO_EVENT_WRITE | NETIO_EVENT_TIMEOUT;
handler->event_handler = handle_tcp_writing;
}
static void
handle_tcp_writing(netio_type *netio,
netio_handler_type *handler,
netio_event_types_type event_types)
{
struct tcp_handler_data *data
= (struct tcp_handler_data *) handler->user_data;
ssize_t sent;
struct query *q = data->query;
if (event_types & NETIO_EVENT_TIMEOUT) {
/* Connection timed out. */
cleanup_tcp_handler(netio, handler);
return;
}
assert(event_types & NETIO_EVENT_WRITE);
if (data->bytes_transmitted < sizeof(q->tcplen)) {
/* Writing the response packet length. */
uint16_t n_tcplen = htons(q->tcplen);
sent = write(handler->fd,
(const char *) &n_tcplen + data->bytes_transmitted,
sizeof(n_tcplen) - data->bytes_transmitted);
if (sent == -1) {
if (errno == EAGAIN || errno == EINTR) {
/*
* Write would block, wait until
* socket becomes writable again.
*/
return;
} else {
log_msg(LOG_ERR, "failed writing to tcp: %s", strerror(errno));
cleanup_tcp_handler(netio, handler);
return;
}
}
data->bytes_transmitted += sent;
if (data->bytes_transmitted < sizeof(q->tcplen)) {
/*
* Writing not complete, wait until socket
* becomes writable again.
*/
return;
}
assert(data->bytes_transmitted == sizeof(q->tcplen));
}
assert(data->bytes_transmitted < q->tcplen + sizeof(q->tcplen));
sent = write(handler->fd,
buffer_current(q->packet),
buffer_remaining(q->packet));
if (sent == -1) {
if (errno == EAGAIN || errno == EINTR) {
/*
* Write would block, wait until
* socket becomes writable again.
*/
return;
} else {
log_msg(LOG_ERR, "failed writing to tcp: %s", strerror(errno));
cleanup_tcp_handler(netio, handler);
return;
}
}
buffer_skip(q->packet, sent);
data->bytes_transmitted += sent;
if (data->bytes_transmitted < q->tcplen + sizeof(q->tcplen)) {
/*
* Still more data to write when socket becomes
* writable again.
*/
return;
}
assert(data->bytes_transmitted == q->tcplen + sizeof(q->tcplen));
if (data->query_state == QUERY_IN_AXFR) {
/* Continue processing AXFR and writing back results. */
buffer_clear(q->packet);
data->query_state = query_axfr(data->nsd, q);
if (data->query_state != QUERY_PROCESSED) {
query_add_optional(data->query, data->nsd);
/* Reset data. */
buffer_flip(q->packet);
q->tcplen = buffer_remaining(q->packet);
data->bytes_transmitted = 0;
/* Reset timeout. */
handler->timeout->tv_sec = TCP_TIMEOUT;
handler->timeout->tv_nsec = 0;
timespec_add(handler->timeout, netio_current_time(netio));
/*
* Write data if/when the socket is writable
* again.
*/
return;
}
}
/*
* Done sending, wait for the next request to arrive on the
* TCP socket by installing the TCP read handler.
*/
data->bytes_transmitted = 0;
handler->timeout->tv_sec = TCP_TIMEOUT;
handler->timeout->tv_nsec = 0;
timespec_add(handler->timeout, netio_current_time(netio));
handler->event_types = NETIO_EVENT_READ | NETIO_EVENT_TIMEOUT;
handler->event_handler = handle_tcp_reading;
}
/*
* Handle an incoming TCP connection. The connection is accepted and
* a new TCP reader event handler is added to NETIO. The TCP handler
* is responsible for cleanup when the connection is closed.
*/
static void
handle_tcp_accept(netio_type *netio,
netio_handler_type *handler,
netio_event_types_type event_types)
{
struct tcp_accept_handler_data *data
= (struct tcp_accept_handler_data *) handler->user_data;
int s;
struct tcp_handler_data *tcp_data;
region_type *tcp_region;
netio_handler_type *tcp_handler;
#ifdef INET6
struct sockaddr_storage addr;
#else
struct sockaddr_in addr;
#endif
socklen_t addrlen;
if (!(event_types & NETIO_EVENT_READ)) {
return;
}
if (data->nsd->current_tcp_count >= data->nsd->maximum_tcp_count) {
return;
}
/* Accept it... */
addrlen = sizeof(addr);
s = accept(handler->fd, (struct sockaddr *) &addr, &addrlen);
if (s == -1) {
if (errno != EINTR) {
log_msg(LOG_ERR, "accept failed: %s", strerror(errno));
}
return;
}
if (fcntl(s, F_SETFL, O_NONBLOCK) == -1) {
log_msg(LOG_ERR, "fcntl failed: %s", strerror(errno));
close(s);
return;
}
/*
* This region is deallocated when the TCP connection is
* closed by the TCP handler.
*/
tcp_region = region_create(xalloc, free);
tcp_data = (struct tcp_handler_data *) region_alloc(
tcp_region, sizeof(struct tcp_handler_data));
tcp_data->region = tcp_region;
tcp_data->query = query_create(tcp_region, compressed_dname_offsets);
tcp_data->nsd = data->nsd;
tcp_data->tcp_accept_handler_count = data->tcp_accept_handler_count;
tcp_data->tcp_accept_handlers = data->tcp_accept_handlers;
tcp_data->query_state = QUERY_PROCESSED;
tcp_data->bytes_transmitted = 0;
memcpy(&tcp_data->query->addr, &addr, addrlen);
tcp_data->query->addrlen = addrlen;
tcp_handler = (netio_handler_type *) region_alloc(
tcp_region, sizeof(netio_handler_type));
tcp_handler->fd = s;
tcp_handler->timeout = (struct timespec *) region_alloc(
tcp_region, sizeof(struct timespec));
tcp_handler->timeout->tv_sec = TCP_TIMEOUT;
tcp_handler->timeout->tv_nsec = 0L;
timespec_add(tcp_handler->timeout, netio_current_time(netio));
tcp_handler->user_data = tcp_data;
tcp_handler->event_types = NETIO_EVENT_READ | NETIO_EVENT_TIMEOUT;
tcp_handler->event_handler = handle_tcp_reading;
netio_add_handler(netio, tcp_handler);
/*
* Keep track of the total number of TCP handlers installed so
* we can stop accepting connections when the maximum number
* of simultaneous TCP connections is reached.
*/
++data->nsd->current_tcp_count;
if (data->nsd->current_tcp_count == data->nsd->maximum_tcp_count) {
configure_handler_event_types(data->tcp_accept_handler_count,
data->tcp_accept_handlers,
NETIO_EVENT_NONE);
}
}
static void
configure_handler_event_types(size_t count,
netio_handler_type *handlers,
netio_event_types_type event_types)
{
size_t i;
assert(handlers);
for (i = 0; i < count; ++i) {
handlers[i].event_types = event_types;
}
}
|