xref: /freebsd/contrib/ntp/sntp/libevent/sample/https-client.c (revision 788ca347b816afd83b2885e0c79aeeb88649b2ab)
1 /*
2   This is an example of how to hook up evhttp with bufferevent_ssl
3 
4   It just GETs an https URL given on the command-line and prints the response
5   body to stdout.
6 
7   Actually, it also accepts plain http URLs to make it easy to compare http vs
8   https code paths.
9 
10   Loosely based on le-proxy.c.
11  */
12 
13 // Get rid of OSX 10.7 and greater deprecation warnings.
14 #if defined(__APPLE__) && defined(__clang__)
15 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
16 #endif
17 
18 #include <stdio.h>
19 #include <assert.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <errno.h>
23 
24 #ifdef _WIN32
25 #include <winsock2.h>
26 #include <ws2tcpip.h>
27 
28 #define snprintf _snprintf
29 #define strcasecmp _stricmp
30 #else
31 #include <sys/socket.h>
32 #include <netinet/in.h>
33 #endif
34 
35 #include <event2/bufferevent_ssl.h>
36 #include <event2/bufferevent.h>
37 #include <event2/buffer.h>
38 #include <event2/listener.h>
39 #include <event2/util.h>
40 #include <event2/http.h>
41 
42 #include <openssl/ssl.h>
43 #include <openssl/err.h>
44 #include <openssl/rand.h>
45 
46 #include "openssl_hostname_validation.h"
47 
48 static struct event_base *base;
49 static int ignore_cert = 0;
50 
51 static void
52 http_request_done(struct evhttp_request *req, void *ctx)
53 {
54 	char buffer[256];
55 	int nread;
56 
57 	if (req == NULL) {
58 		/* If req is NULL, it means an error occurred, but
59 		 * sadly we are mostly left guessing what the error
60 		 * might have been.  We'll do our best... */
61 		struct bufferevent *bev = (struct bufferevent *) ctx;
62 		unsigned long oslerr;
63 		int printed_err = 0;
64 		int errcode = EVUTIL_SOCKET_ERROR();
65 		fprintf(stderr, "some request failed - no idea which one though!\n");
66 		/* Print out the OpenSSL error queue that libevent
67 		 * squirreled away for us, if any. */
68 		while ((oslerr = bufferevent_get_openssl_error(bev))) {
69 			ERR_error_string_n(oslerr, buffer, sizeof(buffer));
70 			fprintf(stderr, "%s\n", buffer);
71 			printed_err = 1;
72 		}
73 		/* If the OpenSSL error queue was empty, maybe it was a
74 		 * socket error; let's try printing that. */
75 		if (! printed_err)
76 			fprintf(stderr, "socket error = %s (%d)\n",
77 				evutil_socket_error_to_string(errcode),
78 				errcode);
79 		return;
80 	}
81 
82 	fprintf(stderr, "Response line: %d %s\n",
83 	    evhttp_request_get_response_code(req),
84 	    evhttp_request_get_response_code_line(req));
85 
86 	while ((nread = evbuffer_remove(evhttp_request_get_input_buffer(req),
87 		    buffer, sizeof(buffer)))
88 	       > 0) {
89 		/* These are just arbitrary chunks of 256 bytes.
90 		 * They are not lines, so we can't treat them as such. */
91 		fwrite(buffer, nread, 1, stdout);
92 	}
93 }
94 
95 static void
96 syntax(void)
97 {
98 	fputs("Syntax:\n", stderr);
99 	fputs("   https-client -url <https-url> [-data data-file.bin] [-ignore-cert]\n", stderr);
100 	fputs("Example:\n", stderr);
101 	fputs("   https-client -url https://ip.appspot.com/\n", stderr);
102 
103 	exit(1);
104 }
105 
106 static void
107 die(const char *msg)
108 {
109 	fputs(msg, stderr);
110 	exit(1);
111 }
112 
113 static void
114 die_openssl(const char *func)
115 {
116 	fprintf (stderr, "%s failed:\n", func);
117 
118 	/* This is the OpenSSL function that prints the contents of the
119 	 * error stack to the specified file handle. */
120 	ERR_print_errors_fp (stderr);
121 
122 	exit(1);
123 }
124 
125 /* See http://archives.seul.org/libevent/users/Jan-2013/msg00039.html */
126 static int cert_verify_callback(X509_STORE_CTX *x509_ctx, void *arg)
127 {
128 	char cert_str[256];
129 	const char *host = (const char *) arg;
130 	const char *res_str = "X509_verify_cert failed";
131 	HostnameValidationResult res = Error;
132 
133 	/* This is the function that OpenSSL would call if we hadn't called
134 	 * SSL_CTX_set_cert_verify_callback().  Therefore, we are "wrapping"
135 	 * the default functionality, rather than replacing it. */
136 	int ok_so_far = 0;
137 
138 	X509 *server_cert = NULL;
139 
140 	if (ignore_cert) {
141 		return 1;
142 	}
143 
144 	ok_so_far = X509_verify_cert(x509_ctx);
145 
146 	server_cert = X509_STORE_CTX_get_current_cert(x509_ctx);
147 
148 	if (ok_so_far) {
149 		res = validate_hostname(host, server_cert);
150 
151 		switch (res) {
152 		case MatchFound:
153 			res_str = "MatchFound";
154 			break;
155 		case MatchNotFound:
156 			res_str = "MatchNotFound";
157 			break;
158 		case NoSANPresent:
159 			res_str = "NoSANPresent";
160 			break;
161 		case MalformedCertificate:
162 			res_str = "MalformedCertificate";
163 			break;
164 		case Error:
165 			res_str = "Error";
166 			break;
167 		default:
168 			res_str = "WTF!";
169 			break;
170 		}
171 	}
172 
173 	X509_NAME_oneline(X509_get_subject_name (server_cert),
174 			  cert_str, sizeof (cert_str));
175 
176 	if (res == MatchFound) {
177 		printf("https server '%s' has this certificate, "
178 		       "which looks good to me:\n%s\n",
179 		       host, cert_str);
180 		return 1;
181 	} else {
182 		printf("Got '%s' for hostname '%s' and certificate:\n%s\n",
183 		       res_str, host, cert_str);
184 		return 0;
185 	}
186 }
187 
188 int
189 main(int argc, char **argv)
190 {
191 	int r;
192 
193 	struct evhttp_uri *http_uri;
194 	const char *url = NULL, *data_file = NULL;
195 	const char *scheme, *host, *path, *query;
196 	char uri[256];
197 	int port;
198 
199 	SSL_CTX *ssl_ctx;
200 	SSL *ssl;
201 	struct bufferevent *bev;
202 	struct evhttp_connection *evcon;
203 	struct evhttp_request *req;
204 	struct evkeyvalq *output_headers;
205 	struct evbuffer * output_buffer;
206 
207 	int i;
208 
209 	for (i = 1; i < argc; i++) {
210 		if (!strcmp("-url", argv[i])) {
211 			if (i < argc - 1) {
212 				url = argv[i + 1];
213 			} else {
214 				syntax();
215 			}
216 		} else if (!strcmp("-ignore-cert", argv[i])) {
217 			ignore_cert = 1;
218 		} else if (!strcmp("-data", argv[i])) {
219 			if (i < argc - 1) {
220 				data_file = argv[i + 1];
221 			} else {
222 				syntax();
223 			}
224 		} else if (!strcmp("-help", argv[i])) {
225 			syntax();
226 		}
227 	}
228 
229 	if (!url) {
230 		syntax();
231 	}
232 
233 #ifdef _WIN32
234 	{
235 		WORD wVersionRequested;
236 		WSADATA wsaData;
237 		int err;
238 
239 		wVersionRequested = MAKEWORD(2, 2);
240 
241 		err = WSAStartup(wVersionRequested, &wsaData);
242 		if (err != 0) {
243 			printf("WSAStartup failed with error: %d\n", err);
244 			return 1;
245 		}
246 	}
247 #endif // _WIN32
248 
249 	http_uri = evhttp_uri_parse(url);
250 	if (http_uri == NULL) {
251 		die("malformed url");
252 	}
253 
254 	scheme = evhttp_uri_get_scheme(http_uri);
255 	if (scheme == NULL || (strcasecmp(scheme, "https") != 0 &&
256 	                       strcasecmp(scheme, "http") != 0)) {
257 		die("url must be http or https");
258 	}
259 
260 	host = evhttp_uri_get_host(http_uri);
261 	if (host == NULL) {
262 		die("url must have a host");
263 	}
264 
265 	port = evhttp_uri_get_port(http_uri);
266 	if (port == -1) {
267 		port = (strcasecmp(scheme, "http") == 0) ? 80 : 443;
268 	}
269 
270 	path = evhttp_uri_get_path(http_uri);
271 	if (path == NULL) {
272 		path = "/";
273 	}
274 
275 	query = evhttp_uri_get_query(http_uri);
276 	if (query == NULL) {
277 		snprintf(uri, sizeof(uri) - 1, "%s", path);
278 	} else {
279 		snprintf(uri, sizeof(uri) - 1, "%s?%s", path, query);
280 	}
281 	uri[sizeof(uri) - 1] = '\0';
282 
283 	// Initialize OpenSSL
284 	SSL_library_init();
285 	ERR_load_crypto_strings();
286 	SSL_load_error_strings();
287 	OpenSSL_add_all_algorithms();
288 
289 	/* This isn't strictly necessary... OpenSSL performs RAND_poll
290 	 * automatically on first use of random number generator. */
291 	r = RAND_poll();
292 	if (r == 0) {
293 		die_openssl("RAND_poll");
294 	}
295 
296 	/* Create a new OpenSSL context */
297 	ssl_ctx = SSL_CTX_new(SSLv23_method());
298 	if (!ssl_ctx)
299 		die_openssl("SSL_CTX_new");
300 
301 	#ifndef _WIN32
302 	/* TODO: Add certificate loading on Windows as well */
303 
304 	/* Attempt to use the system's trusted root certificates.
305 	 * (This path is only valid for Debian-based systems.) */
306 	if (1 != SSL_CTX_load_verify_locations(ssl_ctx,
307 					       "/etc/ssl/certs/ca-certificates.crt",
308 					       NULL))
309 		die_openssl("SSL_CTX_load_verify_locations");
310 	/* Ask OpenSSL to verify the server certificate.  Note that this
311 	 * does NOT include verifying that the hostname is correct.
312 	 * So, by itself, this means anyone with any legitimate
313 	 * CA-issued certificate for any website, can impersonate any
314 	 * other website in the world.  This is not good.  See "The
315 	 * Most Dangerous Code in the World" article at
316 	 * https://crypto.stanford.edu/~dabo/pubs/abstracts/ssl-client-bugs.html
317 	 */
318 	SSL_CTX_set_verify(ssl_ctx, SSL_VERIFY_PEER, NULL);
319 	/* This is how we solve the problem mentioned in the previous
320 	 * comment.  We "wrap" OpenSSL's validation routine in our
321 	 * own routine, which also validates the hostname by calling
322 	 * the code provided by iSECPartners.  Note that even though
323 	 * the "Everything You've Always Wanted to Know About
324 	 * Certificate Validation With OpenSSL (But Were Afraid to
325 	 * Ask)" paper from iSECPartners says very explicitly not to
326 	 * call SSL_CTX_set_cert_verify_callback (at the bottom of
327 	 * page 2), what we're doing here is safe because our
328 	 * cert_verify_callback() calls X509_verify_cert(), which is
329 	 * OpenSSL's built-in routine which would have been called if
330 	 * we hadn't set the callback.  Therefore, we're just
331 	 * "wrapping" OpenSSL's routine, not replacing it. */
332 	SSL_CTX_set_cert_verify_callback (ssl_ctx, cert_verify_callback,
333 					  (void *) host);
334 	#endif // not _WIN32
335 
336 	// Create event base
337 	base = event_base_new();
338 	if (!base) {
339 		perror("event_base_new()");
340 		return 1;
341 	}
342 
343 	// Create OpenSSL bufferevent and stack evhttp on top of it
344 	ssl = SSL_new(ssl_ctx);
345 	if (ssl == NULL) {
346 		die_openssl("SSL_new()");
347 	}
348 
349 	// Set hostname for SNI extension
350 	SSL_set_tlsext_host_name(ssl, host);
351 
352 	if (strcasecmp(scheme, "http") == 0) {
353 		bev = bufferevent_socket_new(base, -1, BEV_OPT_CLOSE_ON_FREE);
354 	} else {
355 		bev = bufferevent_openssl_socket_new(base, -1, ssl,
356 			BUFFEREVENT_SSL_CONNECTING,
357 			BEV_OPT_CLOSE_ON_FREE|BEV_OPT_DEFER_CALLBACKS);
358 	}
359 
360 	if (bev == NULL) {
361 		fprintf(stderr, "bufferevent_openssl_socket_new() failed\n");
362 		return 1;
363 	}
364 
365 	bufferevent_openssl_set_allow_dirty_shutdown(bev, 1);
366 
367 	// For simplicity, we let DNS resolution block. Everything else should be
368 	// asynchronous though.
369 	evcon = evhttp_connection_base_bufferevent_new(base, NULL, bev,
370 		host, port);
371 	if (evcon == NULL) {
372 		fprintf(stderr, "evhttp_connection_base_bufferevent_new() failed\n");
373 		return 1;
374 	}
375 
376 	// Fire off the request
377 	req = evhttp_request_new(http_request_done, bev);
378 	if (req == NULL) {
379 		fprintf(stderr, "evhttp_request_new() failed\n");
380 		return 1;
381 	}
382 
383 	output_headers = evhttp_request_get_output_headers(req);
384 	evhttp_add_header(output_headers, "Host", host);
385 	evhttp_add_header(output_headers, "Connection", "close");
386 
387 	if (data_file) {
388 		/* NOTE: In production code, you'd probably want to use
389 		 * evbuffer_add_file() or evbuffer_add_file_segment(), to
390 		 * avoid needless copying. */
391 		FILE * f = fopen(data_file, "rb");
392 		char buf[1024];
393 		size_t s;
394 		size_t bytes = 0;
395 
396 		if (!f) {
397 			syntax();
398 		}
399 
400 		output_buffer = evhttp_request_get_output_buffer(req);
401 		while ((s = fread(buf, 1, sizeof(buf), f)) > 0) {
402 			evbuffer_add(output_buffer, buf, s);
403 			bytes += s;
404 		}
405 		evutil_snprintf(buf, sizeof(buf)-1, "%lu", bytes);
406 		evhttp_add_header(output_headers, "Content-Length", buf);
407 		fclose(f);
408 	}
409 
410 	r = evhttp_make_request(evcon, req, data_file ? EVHTTP_REQ_POST : EVHTTP_REQ_GET, uri);
411 	if (r != 0) {
412 		fprintf(stderr, "evhttp_make_request() failed\n");
413 		return 1;
414 	}
415 
416 	event_base_dispatch(base);
417 
418 	evhttp_connection_free(evcon);
419 	event_base_free(base);
420 
421 #ifdef _WIN32
422 	WSACleanup();
423 #endif
424 
425 	return 0;
426 }
427