common.c revision 280630
1/*-
2 * Copyright (c) 1998-2014 Dag-Erling Sm��rgrav
3 * Copyright (c) 2013 Michael Gmelin <freebsd@grem.de>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer
11 *    in this position and unchanged.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 *    derived from this software without specific prior written permission
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/lib/libfetch/common.c 280630 2015-03-25 18:56:36Z jkim $");
32
33#include <sys/param.h>
34#include <sys/socket.h>
35#include <sys/time.h>
36#include <sys/uio.h>
37
38#include <netinet/in.h>
39
40#include <ctype.h>
41#include <errno.h>
42#include <fcntl.h>
43#include <netdb.h>
44#include <poll.h>
45#include <pwd.h>
46#include <stdarg.h>
47#include <stdlib.h>
48#include <stdio.h>
49#include <string.h>
50#include <unistd.h>
51
52#ifdef WITH_SSL
53#include <openssl/x509v3.h>
54#endif
55
56#include "fetch.h"
57#include "common.h"
58
59
60/*** Local data **************************************************************/
61
62/*
63 * Error messages for resolver errors
64 */
65static struct fetcherr netdb_errlist[] = {
66#ifdef EAI_NODATA
67	{ EAI_NODATA,	FETCH_RESOLV,	"Host not found" },
68#endif
69	{ EAI_AGAIN,	FETCH_TEMP,	"Transient resolver failure" },
70	{ EAI_FAIL,	FETCH_RESOLV,	"Non-recoverable resolver failure" },
71	{ EAI_NONAME,	FETCH_RESOLV,	"No address record" },
72	{ -1,		FETCH_UNKNOWN,	"Unknown resolver error" }
73};
74
75/* End-of-Line */
76static const char ENDL[2] = "\r\n";
77
78
79/*** Error-reporting functions ***********************************************/
80
81/*
82 * Map error code to string
83 */
84static struct fetcherr *
85fetch_finderr(struct fetcherr *p, int e)
86{
87	while (p->num != -1 && p->num != e)
88		p++;
89	return (p);
90}
91
92/*
93 * Set error code
94 */
95void
96fetch_seterr(struct fetcherr *p, int e)
97{
98	p = fetch_finderr(p, e);
99	fetchLastErrCode = p->cat;
100	snprintf(fetchLastErrString, MAXERRSTRING, "%s", p->string);
101}
102
103/*
104 * Set error code according to errno
105 */
106void
107fetch_syserr(void)
108{
109	switch (errno) {
110	case 0:
111		fetchLastErrCode = FETCH_OK;
112		break;
113	case EPERM:
114	case EACCES:
115	case EROFS:
116	case EAUTH:
117	case ENEEDAUTH:
118		fetchLastErrCode = FETCH_AUTH;
119		break;
120	case ENOENT:
121	case EISDIR: /* XXX */
122		fetchLastErrCode = FETCH_UNAVAIL;
123		break;
124	case ENOMEM:
125		fetchLastErrCode = FETCH_MEMORY;
126		break;
127	case EBUSY:
128	case EAGAIN:
129		fetchLastErrCode = FETCH_TEMP;
130		break;
131	case EEXIST:
132		fetchLastErrCode = FETCH_EXISTS;
133		break;
134	case ENOSPC:
135		fetchLastErrCode = FETCH_FULL;
136		break;
137	case EADDRINUSE:
138	case EADDRNOTAVAIL:
139	case ENETDOWN:
140	case ENETUNREACH:
141	case ENETRESET:
142	case EHOSTUNREACH:
143		fetchLastErrCode = FETCH_NETWORK;
144		break;
145	case ECONNABORTED:
146	case ECONNRESET:
147		fetchLastErrCode = FETCH_ABORT;
148		break;
149	case ETIMEDOUT:
150		fetchLastErrCode = FETCH_TIMEOUT;
151		break;
152	case ECONNREFUSED:
153	case EHOSTDOWN:
154		fetchLastErrCode = FETCH_DOWN;
155		break;
156default:
157		fetchLastErrCode = FETCH_UNKNOWN;
158	}
159	snprintf(fetchLastErrString, MAXERRSTRING, "%s", strerror(errno));
160}
161
162
163/*
164 * Emit status message
165 */
166void
167fetch_info(const char *fmt, ...)
168{
169	va_list ap;
170
171	va_start(ap, fmt);
172	vfprintf(stderr, fmt, ap);
173	va_end(ap);
174	fputc('\n', stderr);
175}
176
177
178/*** Network-related utility functions ***************************************/
179
180/*
181 * Return the default port for a scheme
182 */
183int
184fetch_default_port(const char *scheme)
185{
186	struct servent *se;
187
188	if ((se = getservbyname(scheme, "tcp")) != NULL)
189		return (ntohs(se->s_port));
190	if (strcasecmp(scheme, SCHEME_FTP) == 0)
191		return (FTP_DEFAULT_PORT);
192	if (strcasecmp(scheme, SCHEME_HTTP) == 0)
193		return (HTTP_DEFAULT_PORT);
194	return (0);
195}
196
197/*
198 * Return the default proxy port for a scheme
199 */
200int
201fetch_default_proxy_port(const char *scheme)
202{
203	if (strcasecmp(scheme, SCHEME_FTP) == 0)
204		return (FTP_DEFAULT_PROXY_PORT);
205	if (strcasecmp(scheme, SCHEME_HTTP) == 0)
206		return (HTTP_DEFAULT_PROXY_PORT);
207	return (0);
208}
209
210
211/*
212 * Create a connection for an existing descriptor.
213 */
214conn_t *
215fetch_reopen(int sd)
216{
217	conn_t *conn;
218	int opt = 1;
219
220	/* allocate and fill connection structure */
221	if ((conn = calloc(1, sizeof(*conn))) == NULL)
222		return (NULL);
223	fcntl(sd, F_SETFD, FD_CLOEXEC);
224	setsockopt(sd, SOL_SOCKET, SO_NOSIGPIPE, &opt, sizeof opt);
225	conn->sd = sd;
226	++conn->ref;
227	return (conn);
228}
229
230
231/*
232 * Bump a connection's reference count.
233 */
234conn_t *
235fetch_ref(conn_t *conn)
236{
237
238	++conn->ref;
239	return (conn);
240}
241
242
243/*
244 * Bind a socket to a specific local address
245 */
246int
247fetch_bind(int sd, int af, const char *addr)
248{
249	struct addrinfo hints, *res, *res0;
250	int err;
251
252	memset(&hints, 0, sizeof(hints));
253	hints.ai_family = af;
254	hints.ai_socktype = SOCK_STREAM;
255	hints.ai_protocol = 0;
256	if ((err = getaddrinfo(addr, NULL, &hints, &res0)) != 0)
257		return (-1);
258	for (res = res0; res; res = res->ai_next)
259		if (bind(sd, res->ai_addr, res->ai_addrlen) == 0)
260			return (0);
261	return (-1);
262}
263
264
265/*
266 * Establish a TCP connection to the specified port on the specified host.
267 */
268conn_t *
269fetch_connect(const char *host, int port, int af, int verbose)
270{
271	conn_t *conn;
272	char pbuf[10];
273	const char *bindaddr;
274	struct addrinfo hints, *res, *res0;
275	int sd, err;
276
277	DEBUG(fprintf(stderr, "---> %s:%d\n", host, port));
278
279	if (verbose)
280		fetch_info("looking up %s", host);
281
282	/* look up host name and set up socket address structure */
283	snprintf(pbuf, sizeof(pbuf), "%d", port);
284	memset(&hints, 0, sizeof(hints));
285	hints.ai_family = af;
286	hints.ai_socktype = SOCK_STREAM;
287	hints.ai_protocol = 0;
288	if ((err = getaddrinfo(host, pbuf, &hints, &res0)) != 0) {
289		netdb_seterr(err);
290		return (NULL);
291	}
292	bindaddr = getenv("FETCH_BIND_ADDRESS");
293
294	if (verbose)
295		fetch_info("connecting to %s:%d", host, port);
296
297	/* try to connect */
298	for (sd = -1, res = res0; res; sd = -1, res = res->ai_next) {
299		if ((sd = socket(res->ai_family, res->ai_socktype,
300			 res->ai_protocol)) == -1)
301			continue;
302		if (bindaddr != NULL && *bindaddr != '\0' &&
303		    fetch_bind(sd, res->ai_family, bindaddr) != 0) {
304			fetch_info("failed to bind to '%s'", bindaddr);
305			close(sd);
306			continue;
307		}
308		if (connect(sd, res->ai_addr, res->ai_addrlen) == 0 &&
309		    fcntl(sd, F_SETFL, O_NONBLOCK) == 0)
310			break;
311		close(sd);
312	}
313	freeaddrinfo(res0);
314	if (sd == -1) {
315		fetch_syserr();
316		return (NULL);
317	}
318
319	if ((conn = fetch_reopen(sd)) == NULL) {
320		fetch_syserr();
321		close(sd);
322	}
323	return (conn);
324}
325
326#ifdef WITH_SSL
327/*
328 * Convert characters A-Z to lowercase (intentionally avoid any locale
329 * specific conversions).
330 */
331static char
332fetch_ssl_tolower(char in)
333{
334	if (in >= 'A' && in <= 'Z')
335		return (in + 32);
336	else
337		return (in);
338}
339
340/*
341 * isalpha implementation that intentionally avoids any locale specific
342 * conversions.
343 */
344static int
345fetch_ssl_isalpha(char in)
346{
347	return ((in >= 'A' && in <= 'Z') || (in >= 'a' && in <= 'z'));
348}
349
350/*
351 * Check if passed hostnames a and b are equal.
352 */
353static int
354fetch_ssl_hname_equal(const char *a, size_t alen, const char *b,
355    size_t blen)
356{
357	size_t i;
358
359	if (alen != blen)
360		return (0);
361	for (i = 0; i < alen; ++i) {
362		if (fetch_ssl_tolower(a[i]) != fetch_ssl_tolower(b[i]))
363			return (0);
364	}
365	return (1);
366}
367
368/*
369 * Check if domain label is traditional, meaning that only A-Z, a-z, 0-9
370 * and '-' (hyphen) are allowed. Hyphens have to be surrounded by alpha-
371 * numeric characters. Double hyphens (like they're found in IDN a-labels
372 * 'xn--') are not allowed. Empty labels are invalid.
373 */
374static int
375fetch_ssl_is_trad_domain_label(const char *l, size_t len, int wcok)
376{
377	size_t i;
378
379	if (!len || l[0] == '-' || l[len-1] == '-')
380		return (0);
381	for (i = 0; i < len; ++i) {
382		if (!isdigit(l[i]) &&
383		    !fetch_ssl_isalpha(l[i]) &&
384		    !(l[i] == '*' && wcok) &&
385		    !(l[i] == '-' && l[i - 1] != '-'))
386			return (0);
387	}
388	return (1);
389}
390
391/*
392 * Check if host name consists only of numbers. This might indicate an IP
393 * address, which is not a good idea for CN wildcard comparison.
394 */
395static int
396fetch_ssl_hname_is_only_numbers(const char *hostname, size_t len)
397{
398	size_t i;
399
400	for (i = 0; i < len; ++i) {
401		if (!((hostname[i] >= '0' && hostname[i] <= '9') ||
402		    hostname[i] == '.'))
403			return (0);
404	}
405	return (1);
406}
407
408/*
409 * Check if the host name h passed matches the pattern passed in m which
410 * is usually part of subjectAltName or CN of a certificate presented to
411 * the client. This includes wildcard matching. The algorithm is based on
412 * RFC6125, sections 6.4.3 and 7.2, which clarifies RFC2818 and RFC3280.
413 */
414static int
415fetch_ssl_hname_match(const char *h, size_t hlen, const char *m,
416    size_t mlen)
417{
418	int delta, hdotidx, mdot1idx, wcidx;
419	const char *hdot, *mdot1, *mdot2;
420	const char *wc; /* wildcard */
421
422	if (!(h && *h && m && *m))
423		return (0);
424	if ((wc = strnstr(m, "*", mlen)) == NULL)
425		return (fetch_ssl_hname_equal(h, hlen, m, mlen));
426	wcidx = wc - m;
427	/* hostname should not be just dots and numbers */
428	if (fetch_ssl_hname_is_only_numbers(h, hlen))
429		return (0);
430	/* only one wildcard allowed in pattern */
431	if (strnstr(wc + 1, "*", mlen - wcidx - 1) != NULL)
432		return (0);
433	/*
434	 * there must be at least two more domain labels and
435	 * wildcard has to be in the leftmost label (RFC6125)
436	 */
437	mdot1 = strnstr(m, ".", mlen);
438	if (mdot1 == NULL || mdot1 < wc || (mlen - (mdot1 - m)) < 4)
439		return (0);
440	mdot1idx = mdot1 - m;
441	mdot2 = strnstr(mdot1 + 1, ".", mlen - mdot1idx - 1);
442	if (mdot2 == NULL || (mlen - (mdot2 - m)) < 2)
443		return (0);
444	/* hostname must contain a dot and not be the 1st char */
445	hdot = strnstr(h, ".", hlen);
446	if (hdot == NULL || hdot == h)
447		return (0);
448	hdotidx = hdot - h;
449	/*
450	 * host part of hostname must be at least as long as
451	 * pattern it's supposed to match
452	 */
453	if (hdotidx < mdot1idx)
454		return (0);
455	/*
456	 * don't allow wildcards in non-traditional domain names
457	 * (IDN, A-label, U-label...)
458	 */
459	if (!fetch_ssl_is_trad_domain_label(h, hdotidx, 0) ||
460	    !fetch_ssl_is_trad_domain_label(m, mdot1idx, 1))
461		return (0);
462	/* match domain part (part after first dot) */
463	if (!fetch_ssl_hname_equal(hdot, hlen - hdotidx, mdot1,
464	    mlen - mdot1idx))
465		return (0);
466	/* match part left of wildcard */
467	if (!fetch_ssl_hname_equal(h, wcidx, m, wcidx))
468		return (0);
469	/* match part right of wildcard */
470	delta = mdot1idx - wcidx - 1;
471	if (!fetch_ssl_hname_equal(hdot - delta, delta,
472	    mdot1 - delta, delta))
473		return (0);
474	/* all tests succeded, it's a match */
475	return (1);
476}
477
478/*
479 * Get numeric host address info - returns NULL if host was not an IP
480 * address. The caller is responsible for deallocation using
481 * freeaddrinfo(3).
482 */
483static struct addrinfo *
484fetch_ssl_get_numeric_addrinfo(const char *hostname, size_t len)
485{
486	struct addrinfo hints, *res;
487	char *host;
488
489	host = (char *)malloc(len + 1);
490	memcpy(host, hostname, len);
491	host[len] = '\0';
492	memset(&hints, 0, sizeof(hints));
493	hints.ai_family = PF_UNSPEC;
494	hints.ai_socktype = SOCK_STREAM;
495	hints.ai_protocol = 0;
496	hints.ai_flags = AI_NUMERICHOST;
497	/* port is not relevant for this purpose */
498	getaddrinfo(host, "443", &hints, &res);
499	free(host);
500	return res;
501}
502
503/*
504 * Compare ip address in addrinfo with address passes.
505 */
506static int
507fetch_ssl_ipaddr_match_bin(const struct addrinfo *lhost, const char *rhost,
508    size_t rhostlen)
509{
510	const void *left;
511
512	if (lhost->ai_family == AF_INET && rhostlen == 4) {
513		left = (void *)&((struct sockaddr_in*)(void *)
514		    lhost->ai_addr)->sin_addr.s_addr;
515#ifdef INET6
516	} else if (lhost->ai_family == AF_INET6 && rhostlen == 16) {
517		left = (void *)&((struct sockaddr_in6 *)(void *)
518		    lhost->ai_addr)->sin6_addr;
519#endif
520	} else
521		return (0);
522	return (!memcmp(left, (const void *)rhost, rhostlen) ? 1 : 0);
523}
524
525/*
526 * Compare ip address in addrinfo with host passed. If host is not an IP
527 * address, comparison will fail.
528 */
529static int
530fetch_ssl_ipaddr_match(const struct addrinfo *laddr, const char *r,
531    size_t rlen)
532{
533	struct addrinfo *raddr;
534	int ret;
535	char *rip;
536
537	ret = 0;
538	if ((raddr = fetch_ssl_get_numeric_addrinfo(r, rlen)) == NULL)
539		return 0; /* not a numeric host */
540
541	if (laddr->ai_family == raddr->ai_family) {
542		if (laddr->ai_family == AF_INET) {
543			rip = (char *)&((struct sockaddr_in *)(void *)
544			    raddr->ai_addr)->sin_addr.s_addr;
545			ret = fetch_ssl_ipaddr_match_bin(laddr, rip, 4);
546#ifdef INET6
547		} else if (laddr->ai_family == AF_INET6) {
548			rip = (char *)&((struct sockaddr_in6 *)(void *)
549			    raddr->ai_addr)->sin6_addr;
550			ret = fetch_ssl_ipaddr_match_bin(laddr, rip, 16);
551#endif
552		}
553
554	}
555	freeaddrinfo(raddr);
556	return (ret);
557}
558
559/*
560 * Verify server certificate by subjectAltName.
561 */
562static int
563fetch_ssl_verify_altname(STACK_OF(GENERAL_NAME) *altnames,
564    const char *host, struct addrinfo *ip)
565{
566	const GENERAL_NAME *name;
567	size_t nslen;
568	int i;
569	const char *ns;
570
571	for (i = 0; i < sk_GENERAL_NAME_num(altnames); ++i) {
572#if OPENSSL_VERSION_NUMBER < 0x10000000L
573		/*
574		 * This is a workaround, since the following line causes
575		 * alignment issues in clang:
576		 * name = sk_GENERAL_NAME_value(altnames, i);
577		 * OpenSSL explicitly warns not to use those macros
578		 * directly, but there isn't much choice (and there
579		 * shouldn't be any ill side effects)
580		 */
581		name = (GENERAL_NAME *)SKM_sk_value(void, altnames, i);
582#else
583		name = sk_GENERAL_NAME_value(altnames, i);
584#endif
585		ns = (const char *)ASN1_STRING_data(name->d.ia5);
586		nslen = (size_t)ASN1_STRING_length(name->d.ia5);
587
588		if (name->type == GEN_DNS && ip == NULL &&
589		    fetch_ssl_hname_match(host, strlen(host), ns, nslen))
590			return (1);
591		else if (name->type == GEN_IPADD && ip != NULL &&
592		    fetch_ssl_ipaddr_match_bin(ip, ns, nslen))
593			return (1);
594	}
595	return (0);
596}
597
598/*
599 * Verify server certificate by CN.
600 */
601static int
602fetch_ssl_verify_cn(X509_NAME *subject, const char *host,
603    struct addrinfo *ip)
604{
605	ASN1_STRING *namedata;
606	X509_NAME_ENTRY *nameentry;
607	int cnlen, lastpos, loc, ret;
608	unsigned char *cn;
609
610	ret = 0;
611	lastpos = -1;
612	loc = -1;
613	cn = NULL;
614	/* get most specific CN (last entry in list) and compare */
615	while ((lastpos = X509_NAME_get_index_by_NID(subject,
616	    NID_commonName, lastpos)) != -1)
617		loc = lastpos;
618
619	if (loc > -1) {
620		nameentry = X509_NAME_get_entry(subject, loc);
621		namedata = X509_NAME_ENTRY_get_data(nameentry);
622		cnlen = ASN1_STRING_to_UTF8(&cn, namedata);
623		if (ip == NULL &&
624		    fetch_ssl_hname_match(host, strlen(host), cn, cnlen))
625			ret = 1;
626		else if (ip != NULL && fetch_ssl_ipaddr_match(ip, cn, cnlen))
627			ret = 1;
628		OPENSSL_free(cn);
629	}
630	return (ret);
631}
632
633/*
634 * Verify that server certificate subjectAltName/CN matches
635 * hostname. First check, if there are alternative subject names. If yes,
636 * those have to match. Only if those don't exist it falls back to
637 * checking the subject's CN.
638 */
639static int
640fetch_ssl_verify_hname(X509 *cert, const char *host)
641{
642	struct addrinfo *ip;
643	STACK_OF(GENERAL_NAME) *altnames;
644	X509_NAME *subject;
645	int ret;
646
647	ret = 0;
648	ip = fetch_ssl_get_numeric_addrinfo(host, strlen(host));
649	altnames = X509_get_ext_d2i(cert, NID_subject_alt_name,
650	    NULL, NULL);
651
652	if (altnames != NULL) {
653		ret = fetch_ssl_verify_altname(altnames, host, ip);
654	} else {
655		subject = X509_get_subject_name(cert);
656		if (subject != NULL)
657			ret = fetch_ssl_verify_cn(subject, host, ip);
658	}
659
660	if (ip != NULL)
661		freeaddrinfo(ip);
662	if (altnames != NULL)
663		GENERAL_NAMES_free(altnames);
664	return (ret);
665}
666
667/*
668 * Configure transport security layer based on environment.
669 */
670static void
671fetch_ssl_setup_transport_layer(SSL_CTX *ctx, int verbose)
672{
673	long ssl_ctx_options;
674
675	ssl_ctx_options = SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_TICKET;
676	if (getenv("SSL_ALLOW_SSL3") == NULL)
677		ssl_ctx_options |= SSL_OP_NO_SSLv3;
678	if (getenv("SSL_NO_TLS1") != NULL)
679		ssl_ctx_options |= SSL_OP_NO_TLSv1;
680	if (getenv("SSL_NO_TLS1_1") != NULL)
681		ssl_ctx_options |= SSL_OP_NO_TLSv1_1;
682	if (getenv("SSL_NO_TLS1_2") != NULL)
683		ssl_ctx_options |= SSL_OP_NO_TLSv1_2;
684	if (verbose)
685		fetch_info("SSL options: %lx", ssl_ctx_options);
686	SSL_CTX_set_options(ctx, ssl_ctx_options);
687}
688
689
690/*
691 * Configure peer verification based on environment.
692 */
693#define LOCAL_CERT_FILE	"/usr/local/etc/ssl/cert.pem"
694#define BASE_CERT_FILE	"/etc/ssl/cert.pem"
695static int
696fetch_ssl_setup_peer_verification(SSL_CTX *ctx, int verbose)
697{
698	X509_LOOKUP *crl_lookup;
699	X509_STORE *crl_store;
700	const char *ca_cert_file, *ca_cert_path, *crl_file;
701
702	if (getenv("SSL_NO_VERIFY_PEER") == NULL) {
703		ca_cert_file = getenv("SSL_CA_CERT_FILE");
704		if (ca_cert_file == NULL &&
705		    access(LOCAL_CERT_FILE, R_OK) == 0)
706			ca_cert_file = LOCAL_CERT_FILE;
707		if (ca_cert_file == NULL)
708			ca_cert_file = BASE_CERT_FILE;
709		ca_cert_path = getenv("SSL_CA_CERT_PATH");
710		if (verbose) {
711			fetch_info("Peer verification enabled");
712			if (ca_cert_file != NULL)
713				fetch_info("Using CA cert file: %s",
714				    ca_cert_file);
715			if (ca_cert_path != NULL)
716				fetch_info("Using CA cert path: %s",
717				    ca_cert_path);
718		}
719		SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER,
720		    fetch_ssl_cb_verify_crt);
721		SSL_CTX_load_verify_locations(ctx, ca_cert_file,
722		    ca_cert_path);
723		if ((crl_file = getenv("SSL_CRL_FILE")) != NULL) {
724			if (verbose)
725				fetch_info("Using CRL file: %s", crl_file);
726			crl_store = SSL_CTX_get_cert_store(ctx);
727			crl_lookup = X509_STORE_add_lookup(crl_store,
728			    X509_LOOKUP_file());
729			if (crl_lookup == NULL ||
730			    !X509_load_crl_file(crl_lookup, crl_file,
731				X509_FILETYPE_PEM)) {
732				fprintf(stderr,
733				    "Could not load CRL file %s\n",
734				    crl_file);
735				return (0);
736			}
737			X509_STORE_set_flags(crl_store,
738			    X509_V_FLAG_CRL_CHECK |
739			    X509_V_FLAG_CRL_CHECK_ALL);
740		}
741	}
742	return (1);
743}
744
745/*
746 * Configure client certificate based on environment.
747 */
748static int
749fetch_ssl_setup_client_certificate(SSL_CTX *ctx, int verbose)
750{
751	const char *client_cert_file, *client_key_file;
752
753	if ((client_cert_file = getenv("SSL_CLIENT_CERT_FILE")) != NULL) {
754		client_key_file = getenv("SSL_CLIENT_KEY_FILE") != NULL ?
755		    getenv("SSL_CLIENT_KEY_FILE") : client_cert_file;
756		if (verbose) {
757			fetch_info("Using client cert file: %s",
758			    client_cert_file);
759			fetch_info("Using client key file: %s",
760			    client_key_file);
761		}
762		if (SSL_CTX_use_certificate_chain_file(ctx,
763			client_cert_file) != 1) {
764			fprintf(stderr,
765			    "Could not load client certificate %s\n",
766			    client_cert_file);
767			return (0);
768		}
769		if (SSL_CTX_use_PrivateKey_file(ctx, client_key_file,
770			SSL_FILETYPE_PEM) != 1) {
771			fprintf(stderr,
772			    "Could not load client key %s\n",
773			    client_key_file);
774			return (0);
775		}
776	}
777	return (1);
778}
779
780/*
781 * Callback for SSL certificate verification, this is called on server
782 * cert verification. It takes no decision, but informs the user in case
783 * verification failed.
784 */
785int
786fetch_ssl_cb_verify_crt(int verified, X509_STORE_CTX *ctx)
787{
788	X509 *crt;
789	X509_NAME *name;
790	char *str;
791
792	str = NULL;
793	if (!verified) {
794		if ((crt = X509_STORE_CTX_get_current_cert(ctx)) != NULL &&
795		    (name = X509_get_subject_name(crt)) != NULL)
796			str = X509_NAME_oneline(name, 0, 0);
797		fprintf(stderr, "Certificate verification failed for %s\n",
798		    str != NULL ? str : "no relevant certificate");
799		OPENSSL_free(str);
800	}
801	return (verified);
802}
803
804#endif
805
806/*
807 * Enable SSL on a connection.
808 */
809int
810fetch_ssl(conn_t *conn, const struct url *URL, int verbose)
811{
812#ifdef WITH_SSL
813	int ret, ssl_err;
814	X509_NAME *name;
815	char *str;
816
817	/* Init the SSL library and context */
818	if (!SSL_library_init()){
819		fprintf(stderr, "SSL library init failed\n");
820		return (-1);
821	}
822
823	SSL_load_error_strings();
824
825	conn->ssl_meth = SSLv23_client_method();
826	conn->ssl_ctx = SSL_CTX_new(conn->ssl_meth);
827	SSL_CTX_set_mode(conn->ssl_ctx, SSL_MODE_AUTO_RETRY);
828
829	fetch_ssl_setup_transport_layer(conn->ssl_ctx, verbose);
830	if (!fetch_ssl_setup_peer_verification(conn->ssl_ctx, verbose))
831		return (-1);
832	if (!fetch_ssl_setup_client_certificate(conn->ssl_ctx, verbose))
833		return (-1);
834
835	conn->ssl = SSL_new(conn->ssl_ctx);
836	if (conn->ssl == NULL) {
837		fprintf(stderr, "SSL context creation failed\n");
838		return (-1);
839	}
840	SSL_set_fd(conn->ssl, conn->sd);
841
842#if OPENSSL_VERSION_NUMBER >= 0x0090806fL && !defined(OPENSSL_NO_TLSEXT)
843	if (!SSL_set_tlsext_host_name(conn->ssl,
844	    __DECONST(struct url *, URL)->host)) {
845		fprintf(stderr,
846		    "TLS server name indication extension failed for host %s\n",
847		    URL->host);
848		return (-1);
849	}
850#endif
851	while ((ret = SSL_connect(conn->ssl)) == -1) {
852		ssl_err = SSL_get_error(conn->ssl, ret);
853		if (ssl_err != SSL_ERROR_WANT_READ &&
854		    ssl_err != SSL_ERROR_WANT_WRITE) {
855			ERR_print_errors_fp(stderr);
856			return (-1);
857		}
858	}
859	conn->ssl_cert = SSL_get_peer_certificate(conn->ssl);
860
861	if (conn->ssl_cert == NULL) {
862		fprintf(stderr, "No server SSL certificate\n");
863		return (-1);
864	}
865
866	if (getenv("SSL_NO_VERIFY_HOSTNAME") == NULL) {
867		if (verbose)
868			fetch_info("Verify hostname");
869		if (!fetch_ssl_verify_hname(conn->ssl_cert, URL->host)) {
870			fprintf(stderr,
871			    "SSL certificate subject doesn't match host %s\n",
872			    URL->host);
873			return (-1);
874		}
875	}
876
877	if (verbose) {
878		fetch_info("%s connection established using %s",
879		    SSL_get_version(conn->ssl), SSL_get_cipher(conn->ssl));
880		name = X509_get_subject_name(conn->ssl_cert);
881		str = X509_NAME_oneline(name, 0, 0);
882		fetch_info("Certificate subject: %s", str);
883		OPENSSL_free(str);
884		name = X509_get_issuer_name(conn->ssl_cert);
885		str = X509_NAME_oneline(name, 0, 0);
886		fetch_info("Certificate issuer: %s", str);
887		OPENSSL_free(str);
888	}
889
890	return (0);
891#else
892	(void)conn;
893	(void)verbose;
894	fprintf(stderr, "SSL support disabled\n");
895	return (-1);
896#endif
897}
898
899#define FETCH_READ_WAIT		-2
900#define FETCH_READ_ERROR	-1
901#define FETCH_READ_DONE		 0
902
903#ifdef WITH_SSL
904static ssize_t
905fetch_ssl_read(SSL *ssl, char *buf, size_t len)
906{
907	ssize_t rlen;
908	int ssl_err;
909
910	rlen = SSL_read(ssl, buf, len);
911	if (rlen < 0) {
912		ssl_err = SSL_get_error(ssl, rlen);
913		if (ssl_err == SSL_ERROR_WANT_READ ||
914		    ssl_err == SSL_ERROR_WANT_WRITE) {
915			return (FETCH_READ_WAIT);
916		} else {
917			ERR_print_errors_fp(stderr);
918			return (FETCH_READ_ERROR);
919		}
920	}
921	return (rlen);
922}
923#endif
924
925static ssize_t
926fetch_socket_read(int sd, char *buf, size_t len)
927{
928	ssize_t rlen;
929
930	rlen = read(sd, buf, len);
931	if (rlen < 0) {
932		if (errno == EAGAIN || (errno == EINTR && fetchRestartCalls))
933			return (FETCH_READ_WAIT);
934		else
935			return (FETCH_READ_ERROR);
936	}
937	return (rlen);
938}
939
940/*
941 * Read a character from a connection w/ timeout
942 */
943ssize_t
944fetch_read(conn_t *conn, char *buf, size_t len)
945{
946	struct timeval now, timeout, delta;
947	struct pollfd pfd;
948	ssize_t rlen;
949	int deltams;
950
951	if (fetchTimeout > 0) {
952		gettimeofday(&timeout, NULL);
953		timeout.tv_sec += fetchTimeout;
954	}
955
956	deltams = INFTIM;
957	memset(&pfd, 0, sizeof pfd);
958	pfd.fd = conn->sd;
959	pfd.events = POLLIN | POLLERR;
960
961	for (;;) {
962		/*
963		 * The socket is non-blocking.  Instead of the canonical
964		 * poll() -> read(), we do the following:
965		 *
966		 * 1) call read() or SSL_read().
967		 * 2) if we received some data, return it.
968		 * 3) if an error occurred, return -1.
969		 * 4) if read() or SSL_read() signaled EOF, return.
970		 * 5) if we did not receive any data but we're not at EOF,
971		 *    call poll().
972		 *
973		 * In the SSL case, this is necessary because if we
974		 * receive a close notification, we have to call
975		 * SSL_read() one additional time after we've read
976		 * everything we received.
977		 *
978		 * In the non-SSL case, it may improve performance (very
979		 * slightly) when reading small amounts of data.
980		 */
981#ifdef WITH_SSL
982		if (conn->ssl != NULL)
983			rlen = fetch_ssl_read(conn->ssl, buf, len);
984		else
985#endif
986			rlen = fetch_socket_read(conn->sd, buf, len);
987		if (rlen >= 0) {
988			break;
989		} else if (rlen == FETCH_READ_ERROR) {
990			fetch_syserr();
991			return (-1);
992		}
993		// assert(rlen == FETCH_READ_WAIT);
994		if (fetchTimeout > 0) {
995			gettimeofday(&now, NULL);
996			if (!timercmp(&timeout, &now, >)) {
997				errno = ETIMEDOUT;
998				fetch_syserr();
999				return (-1);
1000			}
1001			timersub(&timeout, &now, &delta);
1002			deltams = delta.tv_sec * 1000 +
1003			    delta.tv_usec / 1000;;
1004		}
1005		errno = 0;
1006		pfd.revents = 0;
1007		if (poll(&pfd, 1, deltams) < 0) {
1008			if (errno == EINTR && fetchRestartCalls)
1009				continue;
1010			fetch_syserr();
1011			return (-1);
1012		}
1013	}
1014	return (rlen);
1015}
1016
1017
1018/*
1019 * Read a line of text from a connection w/ timeout
1020 */
1021#define MIN_BUF_SIZE 1024
1022
1023int
1024fetch_getln(conn_t *conn)
1025{
1026	char *tmp;
1027	size_t tmpsize;
1028	ssize_t len;
1029	char c;
1030
1031	if (conn->buf == NULL) {
1032		if ((conn->buf = malloc(MIN_BUF_SIZE)) == NULL) {
1033			errno = ENOMEM;
1034			return (-1);
1035		}
1036		conn->bufsize = MIN_BUF_SIZE;
1037	}
1038
1039	conn->buf[0] = '\0';
1040	conn->buflen = 0;
1041
1042	do {
1043		len = fetch_read(conn, &c, 1);
1044		if (len == -1)
1045			return (-1);
1046		if (len == 0)
1047			break;
1048		conn->buf[conn->buflen++] = c;
1049		if (conn->buflen == conn->bufsize) {
1050			tmp = conn->buf;
1051			tmpsize = conn->bufsize * 2 + 1;
1052			if ((tmp = realloc(tmp, tmpsize)) == NULL) {
1053				errno = ENOMEM;
1054				return (-1);
1055			}
1056			conn->buf = tmp;
1057			conn->bufsize = tmpsize;
1058		}
1059	} while (c != '\n');
1060
1061	conn->buf[conn->buflen] = '\0';
1062	DEBUG(fprintf(stderr, "<<< %s", conn->buf));
1063	return (0);
1064}
1065
1066
1067/*
1068 * Write to a connection w/ timeout
1069 */
1070ssize_t
1071fetch_write(conn_t *conn, const char *buf, size_t len)
1072{
1073	struct iovec iov;
1074
1075	iov.iov_base = __DECONST(char *, buf);
1076	iov.iov_len = len;
1077	return fetch_writev(conn, &iov, 1);
1078}
1079
1080/*
1081 * Write a vector to a connection w/ timeout
1082 * Note: can modify the iovec.
1083 */
1084ssize_t
1085fetch_writev(conn_t *conn, struct iovec *iov, int iovcnt)
1086{
1087	struct timeval now, timeout, delta;
1088	struct pollfd pfd;
1089	ssize_t wlen, total;
1090	int deltams;
1091
1092	memset(&pfd, 0, sizeof pfd);
1093	if (fetchTimeout) {
1094		pfd.fd = conn->sd;
1095		pfd.events = POLLOUT | POLLERR;
1096		gettimeofday(&timeout, NULL);
1097		timeout.tv_sec += fetchTimeout;
1098	}
1099
1100	total = 0;
1101	while (iovcnt > 0) {
1102		while (fetchTimeout && pfd.revents == 0) {
1103			gettimeofday(&now, NULL);
1104			if (!timercmp(&timeout, &now, >)) {
1105				errno = ETIMEDOUT;
1106				fetch_syserr();
1107				return (-1);
1108			}
1109			timersub(&timeout, &now, &delta);
1110			deltams = delta.tv_sec * 1000 +
1111			    delta.tv_usec / 1000;
1112			errno = 0;
1113			pfd.revents = 0;
1114			if (poll(&pfd, 1, deltams) < 0) {
1115				/* POSIX compliance */
1116				if (errno == EAGAIN)
1117					continue;
1118				if (errno == EINTR && fetchRestartCalls)
1119					continue;
1120				return (-1);
1121			}
1122		}
1123		errno = 0;
1124#ifdef WITH_SSL
1125		if (conn->ssl != NULL)
1126			wlen = SSL_write(conn->ssl,
1127			    iov->iov_base, iov->iov_len);
1128		else
1129#endif
1130			wlen = writev(conn->sd, iov, iovcnt);
1131		if (wlen == 0) {
1132			/* we consider a short write a failure */
1133			/* XXX perhaps we shouldn't in the SSL case */
1134			errno = EPIPE;
1135			fetch_syserr();
1136			return (-1);
1137		}
1138		if (wlen < 0) {
1139			if (errno == EINTR && fetchRestartCalls)
1140				continue;
1141			return (-1);
1142		}
1143		total += wlen;
1144		while (iovcnt > 0 && wlen >= (ssize_t)iov->iov_len) {
1145			wlen -= iov->iov_len;
1146			iov++;
1147			iovcnt--;
1148		}
1149		if (iovcnt > 0) {
1150			iov->iov_len -= wlen;
1151			iov->iov_base = __DECONST(char *, iov->iov_base) + wlen;
1152		}
1153	}
1154	return (total);
1155}
1156
1157
1158/*
1159 * Write a line of text to a connection w/ timeout
1160 */
1161int
1162fetch_putln(conn_t *conn, const char *str, size_t len)
1163{
1164	struct iovec iov[2];
1165	int ret;
1166
1167	DEBUG(fprintf(stderr, ">>> %s\n", str));
1168	iov[0].iov_base = __DECONST(char *, str);
1169	iov[0].iov_len = len;
1170	iov[1].iov_base = __DECONST(char *, ENDL);
1171	iov[1].iov_len = sizeof(ENDL);
1172	if (len == 0)
1173		ret = fetch_writev(conn, &iov[1], 1);
1174	else
1175		ret = fetch_writev(conn, iov, 2);
1176	if (ret == -1)
1177		return (-1);
1178	return (0);
1179}
1180
1181
1182/*
1183 * Close connection
1184 */
1185int
1186fetch_close(conn_t *conn)
1187{
1188	int ret;
1189
1190	if (--conn->ref > 0)
1191		return (0);
1192#ifdef WITH_SSL
1193	if (conn->ssl) {
1194		SSL_shutdown(conn->ssl);
1195		SSL_set_connect_state(conn->ssl);
1196		SSL_free(conn->ssl);
1197		conn->ssl = NULL;
1198	}
1199	if (conn->ssl_ctx) {
1200		SSL_CTX_free(conn->ssl_ctx);
1201		conn->ssl_ctx = NULL;
1202	}
1203	if (conn->ssl_cert) {
1204		X509_free(conn->ssl_cert);
1205		conn->ssl_cert = NULL;
1206	}
1207#endif
1208	ret = close(conn->sd);
1209	free(conn->buf);
1210	free(conn);
1211	return (ret);
1212}
1213
1214
1215/*** Directory-related utility functions *************************************/
1216
1217int
1218fetch_add_entry(struct url_ent **p, int *size, int *len,
1219    const char *name, struct url_stat *us)
1220{
1221	struct url_ent *tmp;
1222
1223	if (*p == NULL) {
1224		*size = 0;
1225		*len = 0;
1226	}
1227
1228	if (*len >= *size - 1) {
1229		tmp = realloc(*p, (*size * 2 + 1) * sizeof(**p));
1230		if (tmp == NULL) {
1231			errno = ENOMEM;
1232			fetch_syserr();
1233			return (-1);
1234		}
1235		*size = (*size * 2 + 1);
1236		*p = tmp;
1237	}
1238
1239	tmp = *p + *len;
1240	snprintf(tmp->name, PATH_MAX, "%s", name);
1241	memcpy(&tmp->stat, us, sizeof(*us));
1242
1243	(*len)++;
1244	(++tmp)->name[0] = 0;
1245
1246	return (0);
1247}
1248
1249
1250/*** Authentication-related utility functions ********************************/
1251
1252static const char *
1253fetch_read_word(FILE *f)
1254{
1255	static char word[1024];
1256
1257	if (fscanf(f, " %1023s ", word) != 1)
1258		return (NULL);
1259	return (word);
1260}
1261
1262/*
1263 * Get authentication data for a URL from .netrc
1264 */
1265int
1266fetch_netrc_auth(struct url *url)
1267{
1268	char fn[PATH_MAX];
1269	const char *word;
1270	char *p;
1271	FILE *f;
1272
1273	if ((p = getenv("NETRC")) != NULL) {
1274		if (snprintf(fn, sizeof(fn), "%s", p) >= (int)sizeof(fn)) {
1275			fetch_info("$NETRC specifies a file name "
1276			    "longer than PATH_MAX");
1277			return (-1);
1278		}
1279	} else {
1280		if ((p = getenv("HOME")) != NULL) {
1281			struct passwd *pwd;
1282
1283			if ((pwd = getpwuid(getuid())) == NULL ||
1284			    (p = pwd->pw_dir) == NULL)
1285				return (-1);
1286		}
1287		if (snprintf(fn, sizeof(fn), "%s/.netrc", p) >= (int)sizeof(fn))
1288			return (-1);
1289	}
1290
1291	if ((f = fopen(fn, "r")) == NULL)
1292		return (-1);
1293	while ((word = fetch_read_word(f)) != NULL) {
1294		if (strcmp(word, "default") == 0) {
1295			DEBUG(fetch_info("Using default .netrc settings"));
1296			break;
1297		}
1298		if (strcmp(word, "machine") == 0 &&
1299		    (word = fetch_read_word(f)) != NULL &&
1300		    strcasecmp(word, url->host) == 0) {
1301			DEBUG(fetch_info("Using .netrc settings for %s", word));
1302			break;
1303		}
1304	}
1305	if (word == NULL)
1306		goto ferr;
1307	while ((word = fetch_read_word(f)) != NULL) {
1308		if (strcmp(word, "login") == 0) {
1309			if ((word = fetch_read_word(f)) == NULL)
1310				goto ferr;
1311			if (snprintf(url->user, sizeof(url->user),
1312				"%s", word) > (int)sizeof(url->user)) {
1313				fetch_info("login name in .netrc is too long");
1314				url->user[0] = '\0';
1315			}
1316		} else if (strcmp(word, "password") == 0) {
1317			if ((word = fetch_read_word(f)) == NULL)
1318				goto ferr;
1319			if (snprintf(url->pwd, sizeof(url->pwd),
1320				"%s", word) > (int)sizeof(url->pwd)) {
1321				fetch_info("password in .netrc is too long");
1322				url->pwd[0] = '\0';
1323			}
1324		} else if (strcmp(word, "account") == 0) {
1325			if ((word = fetch_read_word(f)) == NULL)
1326				goto ferr;
1327			/* XXX not supported! */
1328		} else {
1329			break;
1330		}
1331	}
1332	fclose(f);
1333	return (0);
1334 ferr:
1335	fclose(f);
1336	return (-1);
1337}
1338
1339/*
1340 * The no_proxy environment variable specifies a set of domains for
1341 * which the proxy should not be consulted; the contents is a comma-,
1342 * or space-separated list of domain names.  A single asterisk will
1343 * override all proxy variables and no transactions will be proxied
1344 * (for compatability with lynx and curl, see the discussion at
1345 * <http://curl.haxx.se/mail/archive_pre_oct_99/0009.html>).
1346 */
1347int
1348fetch_no_proxy_match(const char *host)
1349{
1350	const char *no_proxy, *p, *q;
1351	size_t h_len, d_len;
1352
1353	if ((no_proxy = getenv("NO_PROXY")) == NULL &&
1354	    (no_proxy = getenv("no_proxy")) == NULL)
1355		return (0);
1356
1357	/* asterisk matches any hostname */
1358	if (strcmp(no_proxy, "*") == 0)
1359		return (1);
1360
1361	h_len = strlen(host);
1362	p = no_proxy;
1363	do {
1364		/* position p at the beginning of a domain suffix */
1365		while (*p == ',' || isspace((unsigned char)*p))
1366			p++;
1367
1368		/* position q at the first separator character */
1369		for (q = p; *q; ++q)
1370			if (*q == ',' || isspace((unsigned char)*q))
1371				break;
1372
1373		d_len = q - p;
1374		if (d_len > 0 && h_len >= d_len &&
1375		    strncasecmp(host + h_len - d_len,
1376			p, d_len) == 0) {
1377			/* domain name matches */
1378			return (1);
1379		}
1380
1381		p = q + 1;
1382	} while (*q);
1383
1384	return (0);
1385}
1386