/* Code and variables that is common to both fork and select-based * servers. * * No code here should assume whether sockets are blocking or not. **/ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "common.h" /* Added to make the code compilable under CYGWIN * */ #ifndef SA_NOCLDWAIT #define SA_NOCLDWAIT 0 #endif int is_ssh_protocol(const char *p, int len); int is_openvpn_protocol(const char *p, int len); int is_tinc_protocol(const char *p, int len); int is_xmpp_protocol(const char *p, int len); int is_true(const char *p, int len) { return 1; } /* Table of all the protocols we know how to connect to. * * The first protocol in the table is where we connect in case of timeout * (client didn't speak: typically this is SSH.) * * The last protocol in the table is where we connect if client spoke but we * couldn't probe what it's saying. */ struct proto protocols[] = { /* affected description service saddr probe */ { 0, "ssh", "sshd", {0}, is_ssh_protocol }, { 0, "openvpn", NULL, {0}, is_openvpn_protocol }, { 0, "tinc", NULL, {0}, is_tinc_protocol }, { 0, "xmpp", NULL, {0}, is_xmpp_protocol }, /* probe for SSL always successes: it's the default, and must be tried last **/ { 0, "ssl", NULL, {0}, is_true } }; int num_known_protocols = ARRAY_SIZE(protocols); /* * Settings that depend on the command line. They're set in main(), but also * used in other places in common.c, and it'd be heavy-handed to pass it all as * parameters */ int verbose = 0; int probing_timeout = 2; int inetd = 0; int foreground = 0; int numeric = 0; char *user_name, *pid_file; struct addrinfo *addr_listen = NULL; /* what addresses do we listen to? */ #ifdef LIBWRAP #include int allow_severity =0, deny_severity = 0; #endif /* check result and die, printing the offending address and error */ void check_res_dumpdie(int res, struct addrinfo *addr, char* syscall) { char buf[NI_MAXHOST]; if (res == -1) { fprintf(stderr, "%s:%s: %s\n", sprintaddr(buf, sizeof(buf), addr), syscall, strerror(errno)); exit(1); } } /* Starts listening sockets on specified addresses. * IN: addr[], num_addr * OUT: *sockfd[] pointer to newly-allocated array of file descriptors * Returns number of addresses bound * Bound file descriptors are returned in newly-allocated *sockfd pointer */ int start_listen_sockets(int *sockfd[], struct addrinfo *addr_list) { struct sockaddr_storage *saddr; struct addrinfo *addr; int i, res, reuse; int num_addr = 0; for (addr = addr_list; addr; addr = addr->ai_next) num_addr++; if (verbose) fprintf(stderr, "listening to %d addresses\n", num_addr); *sockfd = malloc(num_addr * sizeof(*sockfd[0])); for (i = 0, addr = addr_list; i < num_addr && addr; i++, addr = addr->ai_next) { if (!addr) { fprintf(stderr, "FATAL: Inconsistent listen number. This should not happen.\n"); exit(1); } saddr = (struct sockaddr_storage*)addr->ai_addr; (*sockfd)[i] = socket(saddr->ss_family, SOCK_STREAM, 0); check_res_dumpdie((*sockfd)[i], addr, "socket"); reuse = 1; res = setsockopt((*sockfd)[i], SOL_SOCKET, SO_REUSEADDR, (char*)&reuse, sizeof(reuse)); check_res_dumpdie(res, addr, "setsockopt"); res = bind((*sockfd)[i], addr->ai_addr, addr->ai_addrlen); check_res_dumpdie(res, addr, "bind"); res = listen ((*sockfd)[i], 50); check_res_dumpdie(res, addr, "listen"); } return num_addr; } /* Connect to first address that works and returns a file descriptor, or -1 if * none work. cnx_name points to the name of the service (for logging) */ int connect_addr(struct addrinfo *addr, char* cnx_name) { struct addrinfo *a; char buf[NI_MAXHOST]; int fd, res; for (a = addr; a; a = a->ai_next) { if (verbose) fprintf(stderr, "connecting to %s family %d len %d\n", sprintaddr(buf, sizeof(buf), a), a->ai_addr->sa_family, a->ai_addrlen); fd = socket(a->ai_family, SOCK_STREAM, 0); if (fd == -1) { log_message(LOG_ERR, "forward to %s failed:socket: %s\n", cnx_name, strerror(errno)); } else { res = connect(fd, a->ai_addr, a->ai_addrlen); if (res == -1) { log_message(LOG_ERR, "forward to %s failed:connect: %s\n", cnx_name, strerror(errno)); } else { return fd; } } } return -1; } /* Store some data to write to the queue later */ int defer_write(struct queue *q, void* data, int data_size) { if (verbose) fprintf(stderr, "**** writing defered on fd %d\n", q->fd); q->defered_data = malloc(data_size); q->begin_defered_data = q->defered_data; q->defered_data_size = data_size; memcpy(q->defered_data, data, data_size); return 0; } /* tries to flush some of the data for specified queue * Upon success, the number of bytes written is returned. * Upon failure, -1 returned (e.g. connexion closed) * */ int flush_defered(struct queue *q) { int n; if (verbose) fprintf(stderr, "flushing defered data to fd %d\n", q->fd); n = write(q->fd, q->defered_data, q->defered_data_size); if (n == -1) return n; if (n == q->defered_data_size) { /* All has been written -- release the memory */ free(q->begin_defered_data); q->begin_defered_data = NULL; q->defered_data = NULL; q->defered_data_size = 0; } else { /* There is data left */ q->defered_data += n; q->defered_data_size -= n; } return n; } void init_cnx(struct connection *cnx) { memset(cnx, 0, sizeof(*cnx)); cnx->q[0].fd = -1; cnx->q[1].fd = -1; } void dump_connection(struct connection *cnx) { printf("state: %d\n", cnx->state); printf("fd %d, %d defered\n", cnx->q[0].fd, cnx->q[0].defered_data_size); printf("fd %d, %d defered\n", cnx->q[1].fd, cnx->q[1].defered_data_size); } /* * moves data from one fd to other * * retuns number of bytes copied if success * returns 0 (FD_CNXCLOSED) if incoming socket closed * returns FD_NODATA if no data was available * returns FD_STALLED if data was read, could not be written, and has been * stored in temporary buffer. * * slot for debug only and may go away at some point */ int fd2fd(struct queue *target_q, struct queue *from_q) { char buffer[BUFSIZ]; int target, from, size_r, size_w; target = target_q->fd; from = from_q->fd; size_r = read(from, buffer, sizeof(buffer)); if (size_r == -1) { switch (errno) { case EAGAIN: if (verbose) fprintf(stderr, "reading 0 from %d\n", from); return FD_NODATA; case ECONNRESET: case EPIPE: return FD_CNXCLOSED; } } CHECK_RES_RETURN(size_r, "read"); if (size_r == 0) return FD_CNXCLOSED; size_w = write(target, buffer, size_r); /* process -1 when we know how to deal with it */ if ((size_w == -1)) { switch (errno) { case EAGAIN: /* write blocked: Defer data */ defer_write(target_q, buffer, size_r); return FD_STALLED; case ECONNRESET: case EPIPE: /* remove end closed -- drop the connection */ return FD_CNXCLOSED; } } else if (size_w < size_r) { /* incomplete write -- defer the rest of the data */ defer_write(target_q, buffer + size_w, size_r - size_w); return FD_STALLED; } CHECK_RES_RETURN(size_w, "write"); return size_w; } /* If the client wrote something first, read it and check if it's a SSH banner. * Data is left in appropriate defered write buffer. */ int is_ssh_protocol(const char *p, int len) { if (!strncmp(p, "SSH-", 4)) { return 1; } return 0; } /* Is the buffer the beginning of an OpenVPN connection? * (code lifted from OpenVPN port-share option) */ int is_openvpn_protocol (const char*p,int len) { #define P_OPCODE_SHIFT 3 #define P_CONTROL_HARD_RESET_CLIENT_V2 7 if (len >= 3) { return p[0] == 0 && p[1] >= 14 && p[2] == (P_CONTROL_HARD_RESET_CLIENT_V2<= 2) { return p[0] == 0 && p[1] >= 14; } else return 0; } /* Is the buffer the beginning of a tinc connections? * (protocol is undocumented, but starts with "0 " in 1.0.15) * */ int is_tinc_protocol( const char *p, int len) { return !strncmp(p, "0 ", 2); } /* Is the buffer the beginning of a jabber (XMPP) connections? * (Protocol is documented (http://tools.ietf.org/html/rfc6120) but for lazy * clients, just checking first frame containing "jabber" in xml entity) * */ int is_xmpp_protocol( const char *p, int len) { return strstr(p, "jabber") ? 1 : 0; } /* * Read the beginning of data coming from the client connection and check if * it's a known protocol. Then leave the data on the defered * write buffer of the connection and returns the protocol index in the * protocols[] array * */ T_PROTO_ID probe_client_protocol(struct connection *cnx) { char buffer[BUFSIZ]; int n, i; n = read(cnx->q[0].fd, buffer, sizeof(buffer)); /* It's possible that read() returns an error, e.g. if the client * disconnected between the previous call to select() and now. If that * happens, we just connect to the default protocol so the caller of this * function does not have to deal with a specific failure condition (the * connection will just fail later normally). */ if (n > 0) { defer_write(&cnx->q[1], buffer, n); for (i = 0; i < ARRAY_SIZE(protocols); i++) { if (protocols[i].affected) { if (protocols[i].probe(buffer, n)) { return i; } } } } /* If none worked, return the first one affected (that's completely * arbitrary) */ for (i = 0; i < ARRAY_SIZE(protocols); i++) if (protocols[i].affected) return i; /* At this stage... nothing is affected. This shouldn't happen as we check * at least one target exists when we parse the commnand line */ fprintf(stderr, "FATAL: No protocol affected. This should not happen.\n"); exit(1); } /* returns a string that prints the IP and port of the sockaddr */ char* sprintaddr(char* buf, size_t size, struct addrinfo *a) { char host[NI_MAXHOST], serv[NI_MAXSERV]; int res; res = getnameinfo(a->ai_addr, a->ai_addrlen, host, sizeof(host), serv, sizeof(serv), numeric ? NI_NUMERICHOST | NI_NUMERICSERV : 0 ); if (res) { fprintf(stderr, "sprintaddr:getnameinfo: %s\n", gai_strerror(res)); exit(1); } snprintf(buf, size, "%s:%s", host, serv); return buf; } /* turns a "hostname:port" string into a list of struct addrinfo; out: list of newly allocated addrinfo (see getaddrinfo(3)); freeaddrinfo(3) when done fullname: input string -- it gets clobbered */ void resolve_name(struct addrinfo **out, char* fullname) { struct addrinfo hint; char *serv, *host; int res; char *sep = strrchr(fullname, ':'); if (!sep) /* No separator: parameter is just a port */ { fprintf(stderr, "names must be fully specified as hostname:port\n"); exit(1); } host = fullname; serv = sep+1; *sep = 0; memset(&hint, 0, sizeof(hint)); hint.ai_family = PF_UNSPEC; hint.ai_socktype = SOCK_STREAM; res = getaddrinfo(host, serv, &hint, out); if (res) { fprintf(stderr, "%s `%s'\n", gai_strerror(res), fullname); if (res == EAI_SERVICE) fprintf(stderr, "(Check you have specified all ports)\n"); exit(4); } } /* Log to syslog, and to stderr if foreground */ void log_message(int type, char* msg, ...) { va_list ap; va_start(ap, msg); vsyslog(type, msg, ap); va_end(ap); va_start(ap, msg); if (foreground) vfprintf(stderr, msg, ap); va_end(ap); } /* syslogs who connected to where */ void log_connection(struct connection *cnx) { struct addrinfo addr; struct sockaddr_storage ss; #define MAX_NAMELENGTH (NI_MAXHOST + NI_MAXSERV + 1) char peer[MAX_NAMELENGTH], service[MAX_NAMELENGTH], local[MAX_NAMELENGTH], target[MAX_NAMELENGTH]; int res; addr.ai_addr = (struct sockaddr*)&ss; addr.ai_addrlen = sizeof(ss); res = getpeername(cnx->q[0].fd, addr.ai_addr, &addr.ai_addrlen); if (res == -1) return; /* that should never happen, right? */ sprintaddr(peer, sizeof(peer), &addr); addr.ai_addrlen = sizeof(ss); res = getsockname(cnx->q[0].fd, addr.ai_addr, &addr.ai_addrlen); if (res == -1) return; sprintaddr(service, sizeof(service), &addr); addr.ai_addrlen = sizeof(ss); res = getpeername(cnx->q[1].fd, addr.ai_addr, &addr.ai_addrlen); if (res == -1) return; sprintaddr(target, sizeof(target), &addr); addr.ai_addrlen = sizeof(ss); res = getsockname(cnx->q[1].fd, addr.ai_addr, &addr.ai_addrlen); if (res == -1) return; sprintaddr(local, sizeof(local), &addr); log_message(LOG_INFO, "connection from %s to %s forwarded from %s to %s\n", peer, service, local, target); } /* libwrap (tcpd): check the connection is legal. This is necessary because * the actual server will only see a connection coming from localhost and can't * apply the rules itself. * * Returns -1 if access is denied, 0 otherwise */ int check_access_rights(int in_socket, char* service) { #ifdef LIBWRAP struct sockaddr peeraddr; socklen_t size = sizeof(peeraddr); char addr_str[NI_MAXHOST], host[NI_MAXHOST]; int res; res = getpeername(in_socket, &peeraddr, &size); CHECK_RES_DIE(res, "getpeername"); /* extract peer address */ res = getnameinfo(&peeraddr, size, addr_str, sizeof(addr_str), NULL, 0, NI_NUMERICHOST); if (res) { if (verbose) fprintf(stderr, "getnameinfo(NI_NUMERICHOST):%s\n", gai_strerror(res)); strcpy(addr_str, STRING_UNKNOWN); } /* extract peer name */ strcpy(host, STRING_UNKNOWN); if (!numeric) { res = getnameinfo(&peeraddr, size, host, sizeof(host), NULL, 0, NI_NAMEREQD); if (res) { if (verbose) fprintf(stderr, "getnameinfo(NI_NAMEREQD):%s\n", gai_strerror(res)); } } if (!hosts_ctl(service, host, addr_str, STRING_UNKNOWN)) { if (verbose) fprintf(stderr, "access denied\n"); log_message(LOG_INFO, "connection from %s(%s): access denied", host, addr_str); close(in_socket); return -1; } #endif return 0; } void setup_signals(void) { int res; struct sigaction action; /* Request no SIGCHLD is sent upon termination of * the children */ memset(&action, 0, sizeof(action)); action.sa_handler = NULL; action.sa_flags = SA_NOCLDWAIT; res = sigaction(SIGCHLD, &action, NULL); CHECK_RES_DIE(res, "sigaction"); /* Set SIGTERM to exit. For some reason if it's not set explicitely, * coverage information is lost when killing the process */ memset(&action, 0, sizeof(action)); action.sa_handler = exit; res = sigaction(SIGTERM, &action, NULL); CHECK_RES_DIE(res, "sigaction"); } /* Open syslog connection with appropriate banner; * banner is made up of basename(bin_name)+"[pid]" */ void setup_syslog(char* bin_name) { char *name1, *name2; name1 = strdup(bin_name); asprintf(&name2, "%s[%d]", basename(name1), getpid()); openlog(name2, LOG_CONS, LOG_AUTH); free(name1); /* Don't free name2, as openlog(3) uses it (at least in glibc) */ log_message(LOG_INFO, "%s %s started\n", server_type, VERSION); } /* We don't want to run as root -- drop priviledges if required */ void drop_privileges(char* user_name) { int res; struct passwd *pw = getpwnam(user_name); if (!pw) { fprintf(stderr, "%s: not found\n", user_name); exit(2); } if (verbose) fprintf(stderr, "turning into %s\n", user_name); res = setgid(pw->pw_gid); CHECK_RES_DIE(res, "setgid"); setuid(pw->pw_uid); CHECK_RES_DIE(res, "setuid"); } /* Writes my PID */ void write_pid_file(char* pidfile) { FILE *f; f = fopen(pidfile, "w"); if (!f) { perror(pidfile); exit(3); } fprintf(f, "%d\n", getpid()); fclose(f); } void printsettings(void) { char buf[NI_MAXHOST]; struct addrinfo *a; int i; for (i = 0; i < ARRAY_SIZE(protocols); i++) { if (protocols[i].affected) fprintf(stderr, "%s addr: %s. libwrap service: %s family %d %d\n", protocols[i].description, sprintaddr(buf, sizeof(buf), &protocols[i].saddr), protocols[i].service, protocols[i].saddr.ai_family, protocols[i].saddr.ai_addr->sa_family); } fprintf(stderr, "listening on:\n"); for (a = addr_listen; a; a = a->ai_next) { fprintf(stderr, "\t%s\n", sprintaddr(buf, sizeof(buf), a)); } fprintf(stderr, "timeout to ssh: %d\n", probing_timeout); } /* Adds protocols to the list of options, so command-line parsing uses the * protocol definition array * options: array of options to add to; must be big enough * n_opts: number of options in *options before calling (i.e. where to append) * prot: array of protocols * n_prots: number of protocols in *prot * */ void append_protocols(struct option *options, int n_opts, struct proto *prot, int n_prots) { int o, p; for (o = n_opts, p = 0; p < n_prots; o++, p++) { options[o].name = prot[p].description; options[o].has_arg = required_argument; options[o].flag = 0; options[o].val = p + PROT_SHIFT; } }