http2-serverpush.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  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 https://curl.se/docs/copyright.html.
  13. *
  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.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. /* <DESC>
  25. * HTTP/2 server push
  26. * </DESC>
  27. */
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. /* curl stuff */
  32. #include <curl/curl.h>
  33. #include <curl/mprintf.h>
  34. #ifndef CURLPIPE_MULTIPLEX
  35. #error "too old libcurl, cannot do HTTP/2 server push!"
  36. #endif
  37. static
  38. void dump(const char *text, unsigned char *ptr, size_t size,
  39. char nohex)
  40. {
  41. size_t i;
  42. size_t c;
  43. unsigned int width = 0x10;
  44. if(nohex)
  45. /* without the hex output, we can fit more on screen */
  46. width = 0x40;
  47. fprintf(stderr, "%s, %lu bytes (0x%lx)\n",
  48. text, (unsigned long)size, (unsigned long)size);
  49. for(i = 0; i < size; i += width) {
  50. fprintf(stderr, "%4.4lx: ", (unsigned long)i);
  51. if(!nohex) {
  52. /* hex not disabled, show it */
  53. for(c = 0; c < width; c++)
  54. if(i + c < size)
  55. fprintf(stderr, "%02x ", ptr[i + c]);
  56. else
  57. fputs(" ", stderr);
  58. }
  59. for(c = 0; (c < width) && (i + c < size); c++) {
  60. /* check for 0D0A; if found, skip past and start a new line of output */
  61. if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D &&
  62. ptr[i + c + 1] == 0x0A) {
  63. i += (c + 2 - width);
  64. break;
  65. }
  66. fprintf(stderr, "%c",
  67. (ptr[i + c] >= 0x20) && (ptr[i + c] < 0x80) ? ptr[i + c] : '.');
  68. /* check again for 0D0A, to avoid an extra \n if it's at width */
  69. if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D &&
  70. ptr[i + c + 2] == 0x0A) {
  71. i += (c + 3 - width);
  72. break;
  73. }
  74. }
  75. fputc('\n', stderr); /* newline */
  76. }
  77. }
  78. static
  79. int my_trace(CURL *handle, curl_infotype type,
  80. char *data, size_t size,
  81. void *userp)
  82. {
  83. const char *text;
  84. (void)handle; /* prevent compiler warning */
  85. (void)userp;
  86. switch(type) {
  87. case CURLINFO_TEXT:
  88. fprintf(stderr, "== Info: %s", data);
  89. return 0;
  90. case CURLINFO_HEADER_OUT:
  91. text = "=> Send header";
  92. break;
  93. case CURLINFO_DATA_OUT:
  94. text = "=> Send data";
  95. break;
  96. case CURLINFO_SSL_DATA_OUT:
  97. text = "=> Send SSL data";
  98. break;
  99. case CURLINFO_HEADER_IN:
  100. text = "<= Recv header";
  101. break;
  102. case CURLINFO_DATA_IN:
  103. text = "<= Recv data";
  104. break;
  105. case CURLINFO_SSL_DATA_IN:
  106. text = "<= Recv SSL data";
  107. break;
  108. default: /* in case a new one is introduced to shock us */
  109. return 0;
  110. }
  111. dump(text, (unsigned char *)data, size, 1);
  112. return 0;
  113. }
  114. #define OUTPUTFILE "dl"
  115. static int setup(CURL *hnd, const char *url)
  116. {
  117. FILE *out = fopen(OUTPUTFILE, "wb");
  118. if(!out)
  119. /* failed */
  120. return 1;
  121. /* write to this file */
  122. curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out);
  123. /* set the same URL */
  124. curl_easy_setopt(hnd, CURLOPT_URL, url);
  125. /* please be verbose */
  126. curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
  127. curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace);
  128. /* HTTP/2 please */
  129. curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
  130. /* we use a self-signed test server, skip verification during debugging */
  131. curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L);
  132. curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L);
  133. #if (CURLPIPE_MULTIPLEX > 0)
  134. /* wait for pipe connection to confirm */
  135. curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L);
  136. #endif
  137. return 0; /* all is good */
  138. }
  139. /* called when there is an incoming push */
  140. static int server_push_callback(CURL *parent,
  141. CURL *easy,
  142. size_t num_headers,
  143. struct curl_pushheaders *headers,
  144. void *userp)
  145. {
  146. char *headp;
  147. size_t i;
  148. int *transfers = (int *)userp;
  149. char filename[128];
  150. FILE *out;
  151. static unsigned int count = 0;
  152. (void)parent; /* we have no use for this */
  153. curl_msnprintf(filename, 128, "push%u", count++);
  154. /* here's a new stream, save it in a new file for each new push */
  155. out = fopen(filename, "wb");
  156. if(!out) {
  157. /* if we cannot save it, deny it */
  158. fprintf(stderr, "Failed to create output file for push\n");
  159. return CURL_PUSH_DENY;
  160. }
  161. /* write to this file */
  162. curl_easy_setopt(easy, CURLOPT_WRITEDATA, out);
  163. fprintf(stderr, "**** push callback approves stream %u, got %lu headers!\n",
  164. count, (unsigned long)num_headers);
  165. for(i = 0; i < num_headers; i++) {
  166. headp = curl_pushheader_bynum(headers, i);
  167. fprintf(stderr, "**** header %lu: %s\n", (unsigned long)i, headp);
  168. }
  169. headp = curl_pushheader_byname(headers, ":path");
  170. if(headp) {
  171. fprintf(stderr, "**** The PATH is %s\n", headp /* skip :path + colon */);
  172. }
  173. (*transfers)++; /* one more */
  174. return CURL_PUSH_OK;
  175. }
  176. /*
  177. * Download a file over HTTP/2, take care of server push.
  178. */
  179. int main(int argc, char *argv[])
  180. {
  181. CURL *easy;
  182. CURLM *multi_handle;
  183. int transfers = 1; /* we start with one */
  184. struct CURLMsg *m;
  185. const char *url = "https://localhost:8443/index.html";
  186. if(argc == 2)
  187. url = argv[1];
  188. /* init a multi stack */
  189. multi_handle = curl_multi_init();
  190. easy = curl_easy_init();
  191. /* set options */
  192. if(setup(easy, url)) {
  193. fprintf(stderr, "failed\n");
  194. return 1;
  195. }
  196. /* add the easy transfer */
  197. curl_multi_add_handle(multi_handle, easy);
  198. curl_multi_setopt(multi_handle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);
  199. curl_multi_setopt(multi_handle, CURLMOPT_PUSHFUNCTION, server_push_callback);
  200. curl_multi_setopt(multi_handle, CURLMOPT_PUSHDATA, &transfers);
  201. do {
  202. int still_running; /* keep number of running handles */
  203. CURLMcode mc = curl_multi_perform(multi_handle, &still_running);
  204. if(still_running)
  205. /* wait for activity, timeout or "nothing" */
  206. mc = curl_multi_poll(multi_handle, NULL, 0, 1000, NULL);
  207. if(mc)
  208. break;
  209. /*
  210. * A little caution when doing server push is that libcurl itself has
  211. * created and added one or more easy handles but we need to clean them up
  212. * when we are done.
  213. */
  214. do {
  215. int msgq = 0;
  216. m = curl_multi_info_read(multi_handle, &msgq);
  217. if(m && (m->msg == CURLMSG_DONE)) {
  218. CURL *e = m->easy_handle;
  219. transfers--;
  220. curl_multi_remove_handle(multi_handle, e);
  221. curl_easy_cleanup(e);
  222. }
  223. } while(m);
  224. } while(transfers); /* as long as we have transfers going */
  225. curl_multi_cleanup(multi_handle);
  226. return 0;
  227. }