1 /***************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ***************************************************************************/
23 #include "curl_setup.h"
26 #define _MPRINTF_REPLACE
27 #include <curl/mprintf.h>
29 #include <nghttp2/nghttp2.h>
34 #include "curl_base64.h"
35 #include "curl_memory.h"
37 /* include memdebug.h last */
40 #if (NGHTTP2_VERSION_NUM < 0x000300)
41 #error too old nghttp2 version, upgrade!
45 * HTTP2 handler interface. This isn't added to the general list of protocols
46 * but will be used at run-time when the protocol is dynamically switched from
49 const struct Curl_handler Curl_handler_http2 = {
51 ZERO_NULL, /* setup_connection */
52 ZERO_NULL, /* do_it */
53 ZERO_NULL , /* done */
54 ZERO_NULL, /* do_more */
55 ZERO_NULL, /* connect_it */
56 ZERO_NULL, /* connecting */
57 ZERO_NULL, /* doing */
58 ZERO_NULL, /* proto_getsock */
59 ZERO_NULL, /* doing_getsock */
60 ZERO_NULL, /* domore_getsock */
61 ZERO_NULL, /* perform_getsock */
62 ZERO_NULL, /* disconnect */
63 ZERO_NULL, /* readwrite */
64 PORT_HTTP, /* defport */
66 PROTOPT_NONE /* flags */
71 * Store nghttp2 version info in this buffer, Prefix with a space. Return
72 * total length written.
74 int Curl_http2_ver(char *p, size_t len)
76 nghttp2_info *h2 = nghttp2_version(0);
77 return snprintf(p, len, " nghttp2/%s", h2->version_str);
81 * The implementation of nghttp2_send_callback type. Here we write |data| with
82 * size |length| to the network and return the number of bytes actually
83 * written. See the documentation of nghttp2_send_callback for the details.
85 static ssize_t send_callback(nghttp2_session *h2,
86 const uint8_t *data, size_t length, int flags,
89 struct connectdata *conn = (struct connectdata *)userp;
92 Curl_write(conn, conn->sock[0], data, length, &written);
97 failf(conn->data, "Failed sending HTTP2 data");
98 return NGHTTP2_ERR_CALLBACK_FAILURE;
101 return NGHTTP2_ERR_WOULDBLOCK;
107 * The implementation of nghttp2_recv_callback type. Here we read data from
108 * the network and write them in |buf|. The capacity of |buf| is |length|
109 * bytes. Returns the number of bytes stored in |buf|. See the documentation
110 * of nghttp2_recv_callback for the details.
112 static ssize_t recv_callback(nghttp2_session *h2,
113 uint8_t *buf, size_t length, int flags,
116 struct connectdata *conn = (struct connectdata *)userp;
118 CURLcode rc = Curl_read_plain(conn->sock[FIRSTSOCKET], (char *)buf, length,
124 failf(conn->data, "Failed receiving HTTP2 data");
125 return NGHTTP2_ERR_CALLBACK_FAILURE;
128 return NGHTTP2_ERR_WOULDBLOCK;
134 * This is all callbacks nghttp2 calls
136 static const nghttp2_session_callbacks callbacks = {
152 * The HTTP2 settings we send in the Upgrade request
154 static nghttp2_settings_entry settings[] = {
155 { NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, 100 },
156 { NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE, NGHTTP2_INITIAL_WINDOW_SIZE },
160 * Append headers to ask for a HTTP1.1 to HTTP2 upgrade.
162 CURLcode Curl_http2_request(Curl_send_buffer *req,
163 struct connectdata *conn)
165 uint8_t binsettings[80];
170 struct SingleRequest *k = &conn->data->req;
172 if(!conn->proto.httpc.h2) {
173 /* The nghttp2 session is not yet setup, do it */
174 int rc = nghttp2_session_client_new(&conn->proto.httpc.h2,
177 failf(conn->data, "Couldn't initialize nghttp2!");
178 return CURLE_OUT_OF_MEMORY; /* most likely at least */
182 /* As long as we have a fixed set of settings, we don't have to dynamically
183 * figure out the base64 strings since it'll always be the same. However,
184 * the settings will likely not be fixed every time in the future.
187 /* this returns number of bytes it wrote */
188 binlen = nghttp2_pack_settings_payload(binsettings,
191 sizeof(settings)/sizeof(settings[0]));
193 failf(conn->data, "nghttp2 unexpectedly failed on pack_settings_payload");
194 return CURLE_FAILED_INIT;
197 result = Curl_base64_encode(conn->data, (const char *)binsettings, binlen,
202 result = Curl_add_bufferf(req,
203 "Connection: Upgrade, HTTP2-Settings\r\n"
205 "HTTP2-Settings: %s\r\n",
206 NGHTTP2_PROTO_VERSION_ID, base64);
209 k->upgr101 = UPGR101_REQUESTED;
215 * If the read would block (EWOULDBLOCK) we return -1. Otherwise we return
216 * a regular CURLcode value.
218 static ssize_t http2_recv(struct connectdata *conn, int sockindex,
219 char *mem, size_t len, CURLcode *err)
222 (void)sockindex; /* we always do HTTP2 on sockindex 0 */
224 conn->proto.httpc.mem = mem;
225 conn->proto.httpc.size = len;
227 rc = nghttp2_session_recv(conn->proto.httpc.h2);
230 *err = CURLE_RECV_ERROR;
235 /* return number of received (decrypted) bytes */
236 static ssize_t http2_send(struct connectdata *conn, int sockindex,
237 const void *mem, size_t len, CURLcode *err)
239 /* TODO: proper implementation */
248 void Curl_http2_switched(struct connectdata *conn)
250 /* we are switched! */
251 conn->handler = &Curl_handler_http2;
252 conn->recv[FIRSTSOCKET] = http2_recv;
253 conn->send[FIRSTSOCKET] = http2_send;
254 infof(conn->data, "We have switched to HTTP2\n");