4 * Copyright (C) 2011-2013 Simon Ruderich
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "connection.h"
30 /* Maximum length of a HTTP request line. Longer request lines are aborted
31 * with an error. The standard doesn't specify a maximum line length but this
32 * should be a good limit to make processing simpler. As HTTPS is used this
33 * doesn't limit long GET requests. */
34 #define MAX_REQUEST_LINE 4096
36 /* Format string used to send HTTP/1.0 error responses to the client.
38 * %s is used 4 times, first three are the error code (no %n$s!), the last is
40 #define HTTP_RESPONSE_FORMAT "HTTP/1.0 %s\r\n\
41 Content-Type: text/html; charset=US-ASCII\r\n\
43 <!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n\
45 <head><title>%s</title></head>\n\
53 static int initialize_tls_session_client(int peer_socket,
55 gnutls_session_t *session,
56 gnutls_certificate_credentials_t *x509_cred);
57 static int initialize_tls_session_server(int peer_socket,
58 gnutls_session_t *session,
59 gnutls_certificate_credentials_t *x509_cred);
61 static int read_http_request(FILE *client_fd, char *request, size_t length);
62 static void send_bad_request(FILE *client_fd);
63 static void send_forwarding_failure(FILE *client_fd);
64 static void tls_send_invalid_cert_message(gnutls_session_t session);
66 static void transfer_data(int client, int server);
67 static int read_from_write_to(int from, int to);
68 static void transfer_data_tls(int client, int server,
69 gnutls_session_t client_session,
70 gnutls_session_t server_session);
71 static int read_from_write_to_tls(gnutls_session_t from, gnutls_session_t to,
74 static int connect_to_host(const char *hostname, const char *port);
76 static int parse_request(const char *buffer, char *host, char *port,
80 void handle_connection(int client_socket) {
82 FILE *client_fd, *server_fd;
84 char buffer[MAX_REQUEST_LINE];
85 char host[MAX_REQUEST_LINE];
88 int version_minor; /* x in HTTP/1.x */
91 /* client_x509_cred is used when talking to the client (acting as a TSL
92 * server), server_x509_cred is used when talking to the server (acting as
94 gnutls_certificate_credentials_t client_x509_cred, server_x509_cred;
96 gnutls_session_t client_session, server_session;
97 /* initialize_tls_session_*() called? - used for goto out */
98 int client_session_init, server_session_init;
99 /* gnutls_handshake() called? - used for goto out */
100 int client_session_started, server_session_started;
101 /* Validation failed? If yes we need to send the special "invalid"
103 int validation_failed;
105 LOG(LOG_DEBUG, "new connection");
110 client_session_init = 0;
111 server_session_init = 0;
112 client_session_started = 0;
113 server_session_started = 0;
114 validation_failed = 0;
116 client_fd = fdopen(client_socket, "a+");
117 if (client_fd == NULL) {
118 LOG_PERROR(LOG_WARNING, "fdopen(): client failed");
122 /* Read request line (CONNECT ..) and headers (they are discarded). */
123 result = read_http_request(client_fd, buffer, sizeof(buffer));
125 LOG(LOG_WARNING, "read_http_request(): client read error");
127 } else if (result == -2) {
128 LOG(LOG_WARNING, "read_http_request(): client EOF");
129 send_bad_request(client_fd);
133 if (parse_request(buffer, host, port, &version_minor) != 0) {
134 LOG(LOG_WARNING, "bad request: %s", buffer);
135 send_bad_request(client_fd);
139 LOG(LOG_DEBUG, "target: %s:%s (HTTP 1.%d)", host, port, version_minor);
141 /* Connect to proxy server or directly to server. */
142 if (global_proxy_host != NULL && global_proxy_port != NULL) {
143 LOG(LOG_DEBUG, "connecting to %s:%s", global_proxy_host,
145 server_socket = connect_to_host(global_proxy_host, global_proxy_port);
147 LOG(LOG_DEBUG, "connecting to %s:%s", host, port);
148 server_socket = connect_to_host(host, port);
151 if (server_socket == -1) {
152 LOG(LOG_WARNING, "failed to connect to server");
153 send_forwarding_failure(client_fd);
156 server_fd = fdopen(server_socket, "a+");
157 if (server_fd == NULL) {
158 LOG_PERROR(LOG_WARNING, "fdopen(): server failed");
159 send_forwarding_failure(client_fd);
163 /* Connect to proxy if requested (command line option). */
164 if (global_proxy_host != NULL && global_proxy_port != NULL) {
165 fprintf(server_fd, "CONNECT %s:%s HTTP/1.0\r\n", host, port);
166 fprintf(server_fd, "\r\n");
168 /* Read response line from proxy server. */
169 result = read_http_request(server_fd, buffer, sizeof(buffer));
171 LOG(LOG_WARNING, "read_http_request(): proxy read error");
172 send_forwarding_failure(client_fd);
174 } else if (result == -2) {
175 LOG(LOG_WARNING, "read_http_request(): proxy EOF");
176 send_forwarding_failure(client_fd);
180 /* Check response of proxy server. */
181 if (strncmp(buffer, "HTTP/1.0 200", 12)) {
182 LOG(LOG_WARNING, "bad proxy response: %s", buffer);
183 send_forwarding_failure(client_fd);
188 LOG(LOG_DEBUG, "connection to server established");
190 /* If the -u option is used and we don't know this hostname's server
191 * certificate then just pass through the connection and let the client
192 * verify the server certificate. */
193 if (global_passthrough_unknown) {
194 char path[TLSPROXY_MAX_PATH_LENGTH];
197 if (server_certificate_file(&file, host, path, sizeof(path)) == -2) {
198 /* We've established a connection, tell the client. */
199 fprintf(client_fd, "HTTP/1.0 200 Connection established\r\n");
200 fprintf(client_fd, "\r\n");
203 LOG(LOG_DEBUG, "transferring data");
205 /* Proxy data between client and server until one side is done
207 transfer_data(client_socket, server_socket);
209 LOG(LOG_DEBUG, "finished transferring data");
213 /* server_certificate_file() may have opened the file, close it. */
219 /* Initialize TLS client credentials to talk to the server. */
220 result = initialize_tls_session_server(server_socket, &server_session,
223 LOG(LOG_WARNING, "initialize_tls_session_server() failed");
224 send_forwarding_failure(client_fd);
227 server_session_init = 1;
229 LOG(LOG_DEBUG, "starting server TLS handshake");
231 /* Try to establish TLS handshake between us and server. */
232 result = gnutls_handshake(server_session);
233 if (result != GNUTLS_E_SUCCESS) {
234 LOG(LOG_WARNING, "server TLS handshake failed: %s",
235 gnutls_strerror(result));
236 send_forwarding_failure(client_fd);
239 server_session_started = 1;
241 LOG(LOG_DEBUG, "server TLS handshake finished");
243 /* Make sure the server certificate is valid and known. */
244 if (verify_tls_connection(server_session, host) != 0) {
245 LOG(LOG_ERROR, "server certificate validation failed!");
246 /* We'll send the error message over our TLS connection to the client,
247 * but with an invalid certificate. No data is transfered from/to the
249 validation_failed = 1;
252 /* Initialize TLS server credentials to talk to the client. */
253 result = initialize_tls_session_client(client_socket,
254 /* use a special host if the server
255 * certificate was invalid */
256 (validation_failed) ? "invalid"
261 LOG(LOG_WARNING, "initialize_tls_session_client() failed");
262 send_forwarding_failure(client_fd);
265 client_session_init = 1;
267 /* We've established a connection, tell the client. */
268 fprintf(client_fd, "HTTP/1.0 200 Connection established\r\n");
269 fprintf(client_fd, "\r\n");
272 LOG(LOG_DEBUG, "starting client TLS handshake");
274 /* Try to establish TLS handshake between client and us. */
275 result = gnutls_handshake(client_session);
276 if (result != GNUTLS_E_SUCCESS) {
277 LOG(LOG_WARNING, "client TLS handshake failed: %s",
278 gnutls_strerror(result));
279 send_forwarding_failure(client_fd);
282 client_session_started = 1;
284 LOG(LOG_DEBUG, "client TLS handshake finished");
286 /* Tell the client that the verification failed. Shouldn't be necessary as
287 * the client should terminate the connection because he received the
288 * invalid certificate but better be sure. */
289 if (validation_failed) {
290 tls_send_invalid_cert_message(client_session);
294 LOG(LOG_DEBUG, "transferring TLS data");
296 /* Proxy data between client and server until one side is done (EOF or
298 transfer_data_tls(client_socket, server_socket,
299 client_session, server_session);
301 LOG(LOG_DEBUG, "finished transferring TLS data");
304 /* Close TLS sessions if necessary. Use GNUTLS_SHUT_RDWR so the data is
305 * reliable transmitted. */
306 if (server_session_started) {
307 gnutls_bye(server_session, GNUTLS_SHUT_RDWR);
309 if (client_session_started) {
310 gnutls_bye(client_session, GNUTLS_SHUT_RDWR);
312 if (server_session_init) {
313 gnutls_deinit(server_session);
314 gnutls_certificate_free_credentials(server_x509_cred);
316 if (client_session_init) {
317 gnutls_deinit(client_session);
318 gnutls_certificate_free_cas(client_x509_cred);
319 gnutls_certificate_free_keys(client_x509_cred);
320 gnutls_certificate_free_credentials(client_x509_cred);
323 /* Close connection to server/proxy. */
324 if (server_fd != NULL) {
326 } else if (server_socket != -1) {
327 close(server_socket);
329 LOG(LOG_DEBUG, "connection to server closed");
330 /* Close connection to client. */
331 if (client_fd != NULL) {
334 close(client_socket);
336 LOG(LOG_DEBUG, "connection to client closed");
338 LOG(LOG_DEBUG, "connection finished");
342 static int initialize_tls_session_client(int peer_socket,
343 const char *hostname,
344 gnutls_session_t *session,
345 gnutls_certificate_credentials_t *x509_cred) {
347 int use_invalid_cert;
348 char path[TLSPROXY_MAX_PATH_LENGTH];
350 /* The "invalid" hostname is special. If it's used we send an invalid
351 * certificate to let the client know something is wrong. */
352 use_invalid_cert = (!strcmp(hostname, "invalid"));
354 if (proxy_certificate_path(hostname, path, sizeof(path)) != 0) {
356 "initialize_tls_session_client(): \
357 failed to get proxy certificate path");
361 result = gnutls_certificate_allocate_credentials(x509_cred);
362 if (result != GNUTLS_E_SUCCESS) {
364 "initialize_tls_session_client(): \
365 gnutls_certificate_allocate_credentials(): %s",
366 gnutls_strerror(result));
370 /* Load proxy CA file, this CA "list" is send to the client. */
371 if (!use_invalid_cert) {
372 result = gnutls_certificate_set_x509_trust_file(*x509_cred,
374 GNUTLS_X509_FMT_PEM);
377 "initialize_tls_session_client(): can't read CA file: '%s'",
379 gnutls_certificate_free_credentials(*x509_cred);
383 /* If the invalid hostname was specified do nothing, we use a self-signed
384 * certificate in this case. */
386 /* And certificate for this website and proxy's private key. */
387 if (!use_invalid_cert) {
388 result = gnutls_certificate_set_x509_key_file(*x509_cred,
389 path, PROXY_KEY_FILE,
390 GNUTLS_X509_FMT_PEM);
391 /* If the invalid hostname was specified load our special "invalid"
394 result = gnutls_certificate_set_x509_key_file(*x509_cred,
395 PROXY_INVALID_CERT_FILE,
397 GNUTLS_X509_FMT_PEM);
399 if (result != GNUTLS_E_SUCCESS) {
401 "initialize_tls_session_client(): \
402 can't read server certificate ('%s') or key file ('%s'): %s",
403 path, PROXY_KEY_FILE, gnutls_strerror(result));
404 gnutls_certificate_free_credentials(*x509_cred);
405 /* Could be a missing certificate. */
409 gnutls_certificate_set_dh_params(*x509_cred, global_tls_dh_params);
411 result = gnutls_init(session, GNUTLS_SERVER);
412 if (result != GNUTLS_E_SUCCESS) {
414 "initialize_tls_session_client(): gnutls_init(): %s",
415 gnutls_strerror(result));
416 gnutls_certificate_free_credentials(*x509_cred);
419 result = gnutls_priority_set(*session, global_tls_priority_cache);
420 if (result != GNUTLS_E_SUCCESS) {
422 "initialize_tls_session_client(): gnutls_priority_set(): %s",
423 gnutls_strerror(result));
424 gnutls_deinit(*session);
425 gnutls_certificate_free_credentials(*x509_cred);
428 result = gnutls_credentials_set(*session,
429 GNUTLS_CRD_CERTIFICATE, *x509_cred);
430 if (result != GNUTLS_E_SUCCESS) {
432 "initialize_tls_session_client(): gnutls_credentials_set(): %s",
433 gnutls_strerror(result));
434 gnutls_deinit(*session);
435 gnutls_certificate_free_credentials(*x509_cred);
439 gnutls_transport_set_ptr(*session, (gnutls_transport_ptr_t)peer_socket);
443 static int initialize_tls_session_server(int peer_socket,
444 gnutls_session_t *session,
445 gnutls_certificate_credentials_t *x509_cred) {
448 result = gnutls_certificate_allocate_credentials(x509_cred);
449 if (result != GNUTLS_E_SUCCESS) {
451 "initialize_tls_session_server(): \
452 gnutls_certificate_allocate_credentials(): %s",
453 gnutls_strerror(result));
457 result = gnutls_init(session, GNUTLS_CLIENT);
458 if (result != GNUTLS_E_SUCCESS) {
460 "initialize_tls_session_server(): gnutls_init(): %s",
461 gnutls_strerror(result));
462 gnutls_certificate_free_credentials(*x509_cred);
465 result = gnutls_priority_set(*session, global_tls_priority_cache);
466 if (result != GNUTLS_E_SUCCESS) {
468 "initialize_tls_session_server(): gnutls_priority_set(): %s",
469 gnutls_strerror(result));
470 gnutls_deinit(*session);
471 gnutls_certificate_free_credentials(*x509_cred);
474 result = gnutls_credentials_set(*session,
475 GNUTLS_CRD_CERTIFICATE, *x509_cred);
476 if (result != GNUTLS_E_SUCCESS) {
478 "initialize_tls_session_server(): gnutls_credentials_set(): %s",
479 gnutls_strerror(result));
480 gnutls_deinit(*session);
481 gnutls_certificate_free_credentials(*x509_cred);
485 gnutls_transport_set_ptr(*session, (gnutls_transport_ptr_t)peer_socket);
491 /* Read HTTP request line and headers (ignored).
493 * On success 0 is returned, -1 on client error, -2 on unexpected EOF.
495 static int read_http_request(FILE *client_fd, char *request, size_t length) {
496 char buffer[MAX_REQUEST_LINE];
498 if (fgets(request, (int)length, client_fd) == NULL) {
499 if (ferror(client_fd)) {
500 LOG_PERROR(LOG_WARNING, "read_http_request(): fgets()");
507 while (fgets(buffer, sizeof(buffer), client_fd) != NULL) {
509 if (!strcmp(buffer, "\n") || !strcmp(buffer, "\r\n")) {
513 if (ferror(client_fd)) {
514 LOG_PERROR(LOG_WARNING, "read_http_request(): fgets()");
521 static void send_bad_request(FILE *client_fd) {
522 #define RESPONSE_ERROR "400 Bad Request"
523 #define RESPONSE_MSG "Your browser sent an invalid request."
524 fprintf(client_fd, HTTP_RESPONSE_FORMAT,
525 RESPONSE_ERROR, RESPONSE_ERROR, RESPONSE_ERROR,
527 #undef RESPONSE_ERROR
530 static void send_forwarding_failure(FILE *client_fd) {
531 #define RESPONSE_ERROR "503 Forwarding failure"
532 #define RESPONSE_MSG "Failed to connect to server, check logs."
533 fprintf(client_fd, HTTP_RESPONSE_FORMAT,
534 RESPONSE_ERROR, RESPONSE_ERROR, RESPONSE_ERROR,
536 #undef RESPONSE_ERROR
539 static void tls_send_invalid_cert_message(gnutls_session_t session) {
540 #define RESPONSE_ERROR "500 Internal Server Error"
541 #define RESPONSE_MSG "Server certificate validation failed, check logs."
544 char buffer[sizeof(HTTP_RESPONSE_FORMAT) - 1 /* '\0' */
545 - 4 * 2 /* four %s */
546 + (sizeof(RESPONSE_ERROR) - 1 /* '\0' */) * 3
547 + sizeof(RESPONSE_MSG) - 1 /* '\0' */
550 result = snprintf(buffer, sizeof(buffer),
551 HTTP_RESPONSE_FORMAT,
552 RESPONSE_ERROR, RESPONSE_ERROR, RESPONSE_ERROR,
555 LOG_PERROR(LOG_ERROR,
556 "tls_send_invalid_cert_message(): snprintf failed");
558 } else if ((size_t)result >= sizeof(buffer)) {
560 "tls_send_invalid_cert_message(): snprintf buffer too short");
564 gnutls_record_send(session, buffer, sizeof(buffer) - 1);
565 /* don't send trailing '\0' */
566 #undef RESPONSE_ERROR
571 /* Transfer data between client and server sockets until one closes the
573 static void transfer_data(int client, int server) {
574 struct pollfd fds[2];
576 fds[0].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
579 fds[1].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
583 int result = poll(fds, 2 /* fd count */, -1 /* no timeout */);
585 LOG_PERROR(LOG_ERROR, "transfer_data(): poll()");
589 /* Data available from client. */
590 if (fds[0].revents & POLLIN || fds[0].revents & POLLPRI) {
591 if (read_from_write_to(client, server) != 0) {
592 /* EOF (or other error) */
596 /* Data available from server. */
597 if (fds[1].revents & POLLIN || fds[1].revents & POLLPRI) {
598 if (read_from_write_to(server, client) != 0) {
599 /* EOF (or other error) */
604 /* Client closed connection. */
605 if (fds[0].revents & POLLERR || fds[0].revents & POLLHUP) {
608 /* Server closed connection. */
609 if (fds[1].revents & POLLERR || fds[1].revents & POLLHUP) {
615 /* Read available data from socket from and write it to socket to. At maximum
616 * 4096 bytes are read/written. */
617 static int read_from_write_to(int from, int to) {
619 ssize_t size_written;
622 LOG(LOG_DEBUG, "read_from_write_to(): %d -> %d", from, to);
624 size_read = read(from, buffer, sizeof(buffer));
626 LOG_PERROR(LOG_WARNING, "read_from_write_to(): read()");
629 } else if (size_read == 0) {
633 size_written = write(to, buffer, (size_t)size_read);
634 if (size_written < 0) {
635 LOG_PERROR(LOG_WARNING, "read_from_write_to(): write()");
638 if (size_read != size_written) {
639 LOG(LOG_ERROR, "read_from_write_to(): only written %ld of %ld bytes!",
640 (long int)size_written, (long int)size_read);
647 /* Transfer data between client and server TLS connection until one closes the
649 static void transfer_data_tls(int client, int server,
650 gnutls_session_t client_session,
651 gnutls_session_t server_session) {
654 struct pollfd fds[2];
656 fds[0].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
659 fds[1].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
662 /* Get maximum possible buffer size. */
663 buffer_size = gnutls_record_get_max_size(client_session);
664 if (gnutls_record_get_max_size(server_session) < buffer_size) {
665 buffer_size = gnutls_record_get_max_size(server_session);
667 LOG(LOG_DEBUG, "transfer_data_tls(): suggested buffer size: %ld",
668 (long int)buffer_size);
671 int result = poll(fds, 2 /* fd count */, -1 /* no timeout */);
673 LOG_PERROR(LOG_ERROR, "transfer_data(): poll()");
677 /* Data available from client. */
678 if (fds[0].revents & POLLIN || fds[0].revents & POLLPRI) {
679 if (read_from_write_to_tls(client_session, server_session,
681 /* EOF (or other error) */
685 /* Data available from server. */
686 if (fds[1].revents & POLLIN || fds[1].revents & POLLPRI) {
687 if (read_from_write_to_tls(server_session, client_session,
689 /* EOF (or other error) */
694 /* Client closed connection. */
695 if (fds[0].revents & POLLERR || fds[0].revents & POLLHUP) {
698 /* Server closed connection. */
699 if (fds[1].revents & POLLERR || fds[1].revents & POLLHUP) {
705 /* Read available data from session from and write to session to. */
706 static int read_from_write_to_tls(gnutls_session_t from,
708 size_t buffer_size) {
710 ssize_t size_written;
713 if (buffer_size > sizeof(buffer)) {
714 buffer_size = sizeof(buffer);
716 LOG(LOG_DEBUG, "read_from_write_to_tls(): used buffer size: %ld",
717 (long int)buffer_size);
719 size_read = gnutls_record_recv(from, buffer, buffer_size);
721 LOG(LOG_WARNING, "read_from_write_to_tls(): gnutls_record_recv(): %s",
722 gnutls_strerror((int)size_read));
725 } else if (size_read == 0) {
729 size_written = gnutls_record_send(to, buffer, (size_t)size_read);
730 if (size_written < 0) {
731 LOG(LOG_WARNING, "read_from_write_to_tls(): gnutls_record_send(): %s",
732 gnutls_strerror((int)size_written));
735 if (size_read != size_written) {
736 LOG(LOG_ERROR, "read_from_write_to_tls(): only written %ld of %ld bytes!",
737 (long int)size_written, (long int)size_read);
745 static int connect_to_host(const char *hostname, const char *port) {
746 struct addrinfo gai_hints;
747 struct addrinfo *gai_result;
751 struct addrinfo *server;
753 if (hostname == NULL || port == NULL) {
757 /* Get IP of hostname server. */
758 memset(&gai_hints, 0, sizeof(gai_hints));
759 gai_hints.ai_family = AF_UNSPEC;
760 gai_hints.ai_socktype = SOCK_STREAM;
761 gai_hints.ai_protocol = 0;
762 gai_hints.ai_flags = AI_NUMERICSERV /* given port is numeric */
763 | AI_ADDRCONFIG /* supported by this computer */
764 | AI_V4MAPPED; /* support IPv4 through IPv6 */
765 gai_return = getaddrinfo(hostname, port, &gai_hints, &gai_result);
766 if (gai_return != 0) {
767 if (gai_return == EAI_SYSTEM) {
768 LOG_PERROR(LOG_WARNING, "connect_to_host(): getaddrinfo()");
770 LOG(LOG_WARNING, "connect_to_host(): getaddrinfo(): %s",
771 gai_strerror(gai_return));
776 /* Now try to connect to each server returned by getaddrinfo(), use the
777 * first successful connect. */
778 for (server = gai_result; server != NULL; server = server->ai_next) {
779 server_socket = socket(server->ai_family,
781 server->ai_protocol);
782 if (server_socket == -1) {
783 LOG_PERROR(LOG_DEBUG, "connect_to_host(): socket(), trying next");
787 if (connect(server_socket, server->ai_addr, server->ai_addrlen) != -1) {
790 LOG_PERROR(LOG_DEBUG, "connect_to_host(): connect(), trying next");
792 close(server_socket);
794 /* Make sure we free the result from getaddrinfo(). */
795 freeaddrinfo(gai_result);
797 if (server == NULL) {
798 LOG_PERROR(LOG_WARNING, "connect_to_host(): no server found, abort");
802 return server_socket;
806 /* Parse HTTP CONNECT request string and save its parameters.
808 * The following format is expected: "CONNECT host:port HTTP/1.x".
810 * request and host must have the same size! port must be at least 6 bytes
813 static int parse_request(const char *request, char *host, char *port,
814 int *version_minor) {
815 int port_unused; /* just used to verify the port is numeric */
818 /* scanf() doesn't check spaces. */
819 if (strncmp(request, "CONNECT ", 8)) {
822 /* Check request and extract data, "host:port" is not yet separated. */
823 if (sscanf(request, "CONNECT %s HTTP/1.%d", host, version_minor) != 2) {
826 /* Make sure ":port" is there. */
827 if ((position = strchr(host, ':')) == NULL) {
830 /* Make sure port is numeric. */
831 if (sscanf(position + 1, "%d", &port_unused) != 1) {
834 /* Store it in *port. */
835 strncpy(port, position + 1, 5);
837 /* And remove port from host. */