blob: 8e840f58b766a3a0c1cfbedef2a5f06ba4116dca [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * nanohttp.c: minimalist HTTP GET implementation to fetch external subsets.
3 * focuses on size, streamability, reentrancy and portability
4 *
5 * This is clearly not a general purpose HTTP implementation
6 * If you look for one, check:
7 * http://www.w3.org/Library/
8 *
9 * See Copyright for the status of this software.
10 *
Daniel Veillardc5d64342001-06-24 12:13:24 +000011 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +000012 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +080013
Daniel Veillard34ce8be2002-03-18 19:37:11 +000014#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000015#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000016
17#ifdef LIBXML_HTTP_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +000018#include <string.h>
19
20#ifdef HAVE_STDLIB_H
21#include <stdlib.h>
22#endif
23#ifdef HAVE_UNISTD_H
24#include <unistd.h>
25#endif
Daniel Veillard75eb1ad2003-07-07 14:42:44 +000026#ifdef HAVE_SYS_TYPES_H
27#include <sys/types.h>
28#endif
Owen Taylor3473f882001-02-23 17:55:21 +000029#ifdef HAVE_SYS_SOCKET_H
30#include <sys/socket.h>
31#endif
32#ifdef HAVE_NETINET_IN_H
33#include <netinet/in.h>
34#endif
35#ifdef HAVE_ARPA_INET_H
36#include <arpa/inet.h>
37#endif
38#ifdef HAVE_NETDB_H
39#include <netdb.h>
40#endif
Daniel Veillardd85f4f42002-03-25 10:48:46 +000041#ifdef HAVE_RESOLV_H
Daniel Veillard9b731d72002-04-14 12:56:08 +000042#ifdef HAVE_ARPA_NAMESER_H
43#include <arpa/nameser.h>
44#endif
Daniel Veillardd85f4f42002-03-25 10:48:46 +000045#include <resolv.h>
46#endif
Owen Taylor3473f882001-02-23 17:55:21 +000047#ifdef HAVE_FCNTL_H
Daniel Veillardf8e3db02012-09-11 13:26:36 +080048#include <fcntl.h>
Owen Taylor3473f882001-02-23 17:55:21 +000049#endif
50#ifdef HAVE_ERRNO_H
51#include <errno.h>
52#endif
53#ifdef HAVE_SYS_TIME_H
54#include <sys/time.h>
55#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +020056#ifndef HAVE_POLL_H
Owen Taylor3473f882001-02-23 17:55:21 +000057#ifdef HAVE_SYS_SELECT_H
58#include <sys/select.h>
59#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +020060#else
61#include <poll.h>
62#endif
Owen Taylor3473f882001-02-23 17:55:21 +000063#ifdef HAVE_STRINGS_H
64#include <strings.h>
65#endif
Nick Wellnhofercb5541c2017-11-13 17:08:38 +010066#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9a2724d2005-12-15 11:12:26 +000067#include <zlib.h>
68#endif
69
Owen Taylor3473f882001-02-23 17:55:21 +000070
71#ifdef VMS
72#include <stropts>
Daniel Veillardc284c642005-03-31 10:24:24 +000073#define XML_SOCKLEN_T unsigned int
Owen Taylor3473f882001-02-23 17:55:21 +000074#endif
75
Nick Wellnhofere3890542017-10-09 00:20:01 +020076#if defined(_WIN32) && !defined(__CYGWIN__)
Daniel Veillard1638a472003-08-14 01:23:25 +000077#include <wsockcompat.h>
Daniel Veillard1638a472003-08-14 01:23:25 +000078#endif
79
Daniel Veillardd0463562001-10-13 09:15:48 +000080#include <libxml/globals.h>
Daniel Veillardf012a642001-07-23 19:10:52 +000081#include <libxml/xmlerror.h>
Owen Taylor3473f882001-02-23 17:55:21 +000082#include <libxml/xmlmemory.h>
83#include <libxml/parser.h> /* for xmlStr(n)casecmp() */
84#include <libxml/nanohttp.h>
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000085#include <libxml/globals.h>
Daniel Veillard8efff672002-12-04 11:44:48 +000086#include <libxml/uri.h>
Owen Taylor3473f882001-02-23 17:55:21 +000087
88/**
89 * A couple portability macros
90 */
91#ifndef _WINSOCKAPI_
Daniel Veillardcba68392008-08-29 12:43:40 +000092#if !defined(__BEOS__) || defined(__HAIKU__)
Owen Taylor3473f882001-02-23 17:55:21 +000093#define closesocket(s) close(s)
Daniel Veillarda9cce9c2003-09-29 13:20:24 +000094#endif
Owen Taylor3473f882001-02-23 17:55:21 +000095#define SOCKET int
Ozkan Sezerf99d2222010-11-04 12:08:08 +010096#define INVALID_SOCKET (-1)
Owen Taylor3473f882001-02-23 17:55:21 +000097#endif
98
Daniel Veillard89f7f272003-09-29 13:29:09 +000099#ifdef __BEOS__
100#ifndef PF_INET
101#define PF_INET AF_INET
102#endif
103#endif
104
Daniel Veillardc284c642005-03-31 10:24:24 +0000105#ifndef XML_SOCKLEN_T
106#define XML_SOCKLEN_T unsigned int
Daniel Veillard75be0132002-03-13 10:03:35 +0000107#endif
Daniel Veillardf012a642001-07-23 19:10:52 +0000108
Owen Taylor3473f882001-02-23 17:55:21 +0000109#ifdef STANDALONE
110#define DEBUG_HTTP
111#define xmlStrncasecmp(a, b, n) strncasecmp((char *)a, (char *)b, n)
112#define xmlStrcasecmpi(a, b) strcasecmp((char *)a, (char *)b)
113#endif
114
115#define XML_NANO_HTTP_MAX_REDIR 10
116
117#define XML_NANO_HTTP_CHUNK 4096
118
119#define XML_NANO_HTTP_CLOSED 0
120#define XML_NANO_HTTP_WRITE 1
121#define XML_NANO_HTTP_READ 2
122#define XML_NANO_HTTP_NONE 4
123
124typedef struct xmlNanoHTTPCtxt {
125 char *protocol; /* the protocol name */
126 char *hostname; /* the host name */
127 int port; /* the port */
128 char *path; /* the path within the URL */
Daniel Veillard351f2d62005-04-13 02:55:12 +0000129 char *query; /* the query string */
Owen Taylor3473f882001-02-23 17:55:21 +0000130 SOCKET fd; /* the file descriptor for the socket */
131 int state; /* WRITE / READ / CLOSED */
132 char *out; /* buffer sent (zero terminated) */
133 char *outptr; /* index within the buffer sent */
134 char *in; /* the receiving buffer */
135 char *content; /* the start of the content */
136 char *inptr; /* the next byte to read from network */
137 char *inrptr; /* the next byte to give back to the client */
138 int inlen; /* len of the input buffer */
139 int last; /* return code for last operation */
140 int returnValue; /* the protocol return value */
Daniel Veillard13cee4e2009-09-05 14:52:55 +0200141 int version; /* the protocol version */
Daniel Veillardf012a642001-07-23 19:10:52 +0000142 int ContentLength; /* specified content length from HTTP header */
Owen Taylor3473f882001-02-23 17:55:21 +0000143 char *contentType; /* the MIME type for the input */
144 char *location; /* the new URL in case of redirect */
145 char *authHeader; /* contents of {WWW,Proxy}-Authenticate header */
Daniel Veillard847332a2003-10-18 11:29:40 +0000146 char *encoding; /* encoding extracted from the contentType */
Daniel Veillarda840b692003-10-19 13:35:37 +0000147 char *mimeType; /* Mime-Type extracted from the contentType */
Nick Wellnhofercb5541c2017-11-13 17:08:38 +0100148#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9a2724d2005-12-15 11:12:26 +0000149 z_stream *strm; /* Zlib stream object */
150 int usesGzip; /* "Content-Encoding: gzip" was detected */
151#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000152} xmlNanoHTTPCtxt, *xmlNanoHTTPCtxtPtr;
153
154static int initialized = 0;
155static char *proxy = NULL; /* the proxy name if any */
156static int proxyPort; /* the proxy port if any */
157static unsigned int timeout = 60;/* the select() timeout in seconds */
158
Daniel Veillarda2351322004-06-27 12:08:10 +0000159static int xmlNanoHTTPFetchContent( void * ctx, char ** ptr, int * len );
Daniel Veillardf012a642001-07-23 19:10:52 +0000160
Owen Taylor3473f882001-02-23 17:55:21 +0000161/**
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000162 * xmlHTTPErrMemory:
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700163 * @extra: extra information
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000164 *
165 * Handle an out of memory condition
166 */
167static void
168xmlHTTPErrMemory(const char *extra)
169{
170 __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra);
171}
172
173/**
Owen Taylor3473f882001-02-23 17:55:21 +0000174 * A portability function
175 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000176static int socket_errno(void) {
Owen Taylor3473f882001-02-23 17:55:21 +0000177#ifdef _WINSOCKAPI_
Nick Wellnhofer5b2324b2017-10-09 00:05:04 +0200178 int err = WSAGetLastError();
179 switch(err) {
180 case WSAECONNRESET:
181 return(ECONNRESET);
182 case WSAEINPROGRESS:
183 return(EINPROGRESS);
184 case WSAEINTR:
185 return(EINTR);
186 case WSAESHUTDOWN:
187 return(ESHUTDOWN);
188 case WSAEWOULDBLOCK:
189 return(EWOULDBLOCK);
190 default:
191 return(err);
192 }
Owen Taylor3473f882001-02-23 17:55:21 +0000193#else
194 return(errno);
195#endif
196}
197
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000198#ifdef SUPPORT_IP6
Daniel Veillard2db8c122003-07-08 12:16:59 +0000199static
200int have_ipv6(void) {
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100201 SOCKET s;
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000202
203 s = socket (AF_INET6, SOCK_STREAM, 0);
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100204 if (s != INVALID_SOCKET) {
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000205 close (s);
206 return (1);
207 }
208 return (0);
209}
210#endif
211
Owen Taylor3473f882001-02-23 17:55:21 +0000212/**
213 * xmlNanoHTTPInit:
214 *
215 * Initialize the HTTP protocol layer.
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700216 * Currently it just checks for proxy information
Owen Taylor3473f882001-02-23 17:55:21 +0000217 */
218
219void
220xmlNanoHTTPInit(void) {
221 const char *env;
222#ifdef _WINSOCKAPI_
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800223 WSADATA wsaData;
Owen Taylor3473f882001-02-23 17:55:21 +0000224#endif
225
226 if (initialized)
227 return;
228
229#ifdef _WINSOCKAPI_
230 if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0)
231 return;
232#endif
233
234 if (proxy == NULL) {
235 proxyPort = 80;
236 env = getenv("no_proxy");
Daniel Veillard29b17482004-08-16 00:39:03 +0000237 if (env && ((env[0] == '*') && (env[1] == 0)))
Owen Taylor3473f882001-02-23 17:55:21 +0000238 goto done;
239 env = getenv("http_proxy");
240 if (env != NULL) {
241 xmlNanoHTTPScanProxy(env);
242 goto done;
243 }
244 env = getenv("HTTP_PROXY");
245 if (env != NULL) {
246 xmlNanoHTTPScanProxy(env);
247 goto done;
248 }
249 }
250done:
251 initialized = 1;
252}
253
254/**
Daniel Veillard5e2dace2001-07-18 19:30:27 +0000255 * xmlNanoHTTPCleanup:
Owen Taylor3473f882001-02-23 17:55:21 +0000256 *
257 * Cleanup the HTTP protocol layer.
258 */
259
260void
261xmlNanoHTTPCleanup(void) {
Daniel Veillard744acff2005-07-12 15:09:53 +0000262 if (proxy != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000263 xmlFree(proxy);
Daniel Veillard744acff2005-07-12 15:09:53 +0000264 proxy = NULL;
265 }
Owen Taylor3473f882001-02-23 17:55:21 +0000266#ifdef _WINSOCKAPI_
267 if (initialized)
268 WSACleanup();
269#endif
270 initialized = 0;
271 return;
272}
273
274/**
Owen Taylor3473f882001-02-23 17:55:21 +0000275 * xmlNanoHTTPScanURL:
276 * @ctxt: an HTTP context
277 * @URL: The URL used to initialize the context
278 *
279 * (Re)Initialize an HTTP context by parsing the URL and finding
280 * the protocol host port and path it indicates.
281 */
282
283static void
284xmlNanoHTTPScanURL(xmlNanoHTTPCtxtPtr ctxt, const char *URL) {
William M. Brack015ccb22005-02-13 08:18:52 +0000285 xmlURIPtr uri;
Steve Wolf19d785b2013-02-28 18:22:46 +0800286 int len;
287
William M. Brack015ccb22005-02-13 08:18:52 +0000288 /*
289 * Clear any existing data from the context
290 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800291 if (ctxt->protocol != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000292 xmlFree(ctxt->protocol);
293 ctxt->protocol = NULL;
294 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800295 if (ctxt->hostname != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000296 xmlFree(ctxt->hostname);
297 ctxt->hostname = NULL;
298 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800299 if (ctxt->path != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000300 xmlFree(ctxt->path);
301 ctxt->path = NULL;
302 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800303 if (ctxt->query != NULL) {
Daniel Veillard351f2d62005-04-13 02:55:12 +0000304 xmlFree(ctxt->query);
305 ctxt->query = NULL;
306 }
Owen Taylor3473f882001-02-23 17:55:21 +0000307 if (URL == NULL) return;
William M. Brack015ccb22005-02-13 08:18:52 +0000308
Daniel Veillard336a8e12005-08-07 10:46:19 +0000309 uri = xmlParseURIRaw(URL, 1);
William M. Brack015ccb22005-02-13 08:18:52 +0000310 if (uri == NULL)
311 return;
312
313 if ((uri->scheme == NULL) || (uri->server == NULL)) {
314 xmlFreeURI(uri);
315 return;
Owen Taylor3473f882001-02-23 17:55:21 +0000316 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800317
William M. Brack015ccb22005-02-13 08:18:52 +0000318 ctxt->protocol = xmlMemStrdup(uri->scheme);
Steve Wolf19d785b2013-02-28 18:22:46 +0800319 /* special case of IPv6 addresses, the [] need to be removed */
320 if ((uri->server != NULL) && (*uri->server == '[')) {
321 len = strlen(uri->server);
322 if ((len > 2) && (uri->server[len - 1] == ']')) {
323 ctxt->hostname = (char *) xmlCharStrndup(uri->server + 1, len -2);
324 } else
325 ctxt->hostname = xmlMemStrdup(uri->server);
326 } else
327 ctxt->hostname = xmlMemStrdup(uri->server);
William M. Brack015ccb22005-02-13 08:18:52 +0000328 if (uri->path != NULL)
329 ctxt->path = xmlMemStrdup(uri->path);
330 else
331 ctxt->path = xmlMemStrdup("/");
Daniel Veillard351f2d62005-04-13 02:55:12 +0000332 if (uri->query != NULL)
333 ctxt->query = xmlMemStrdup(uri->query);
William M. Brack015ccb22005-02-13 08:18:52 +0000334 if (uri->port != 0)
335 ctxt->port = uri->port;
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000336
William M. Brack015ccb22005-02-13 08:18:52 +0000337 xmlFreeURI(uri);
Owen Taylor3473f882001-02-23 17:55:21 +0000338}
339
340/**
341 * xmlNanoHTTPScanProxy:
342 * @URL: The proxy URL used to initialize the proxy context
343 *
344 * (Re)Initialize the HTTP Proxy context by parsing the URL and finding
345 * the protocol host port it indicates.
346 * Should be like http://myproxy/ or http://myproxy:3128/
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700347 * A NULL URL cleans up proxy information.
Owen Taylor3473f882001-02-23 17:55:21 +0000348 */
349
350void
351xmlNanoHTTPScanProxy(const char *URL) {
William M. Brack015ccb22005-02-13 08:18:52 +0000352 xmlURIPtr uri;
Owen Taylor3473f882001-02-23 17:55:21 +0000353
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800354 if (proxy != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000355 xmlFree(proxy);
356 proxy = NULL;
357 }
William M. Brack015ccb22005-02-13 08:18:52 +0000358 proxyPort = 0;
359
Owen Taylor3473f882001-02-23 17:55:21 +0000360#ifdef DEBUG_HTTP
361 if (URL == NULL)
362 xmlGenericError(xmlGenericErrorContext,
363 "Removing HTTP proxy info\n");
364 else
365 xmlGenericError(xmlGenericErrorContext,
366 "Using HTTP proxy %s\n", URL);
367#endif
368 if (URL == NULL) return;
William M. Brack015ccb22005-02-13 08:18:52 +0000369
Daniel Veillard336a8e12005-08-07 10:46:19 +0000370 uri = xmlParseURIRaw(URL, 1);
William M. Brack015ccb22005-02-13 08:18:52 +0000371 if ((uri == NULL) || (uri->scheme == NULL) ||
372 (strcmp(uri->scheme, "http")) || (uri->server == NULL)) {
373 __xmlIOErr(XML_FROM_HTTP, XML_HTTP_URL_SYNTAX, "Syntax Error\n");
374 if (uri != NULL)
375 xmlFreeURI(uri);
376 return;
Owen Taylor3473f882001-02-23 17:55:21 +0000377 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800378
William M. Brack015ccb22005-02-13 08:18:52 +0000379 proxy = xmlMemStrdup(uri->server);
380 if (uri->port != 0)
381 proxyPort = uri->port;
Owen Taylor3473f882001-02-23 17:55:21 +0000382
William M. Brack015ccb22005-02-13 08:18:52 +0000383 xmlFreeURI(uri);
Owen Taylor3473f882001-02-23 17:55:21 +0000384}
385
386/**
387 * xmlNanoHTTPNewCtxt:
388 * @URL: The URL used to initialize the context
389 *
390 * Allocate and initialize a new HTTP context.
391 *
392 * Returns an HTTP context or NULL in case of error.
393 */
394
395static xmlNanoHTTPCtxtPtr
396xmlNanoHTTPNewCtxt(const char *URL) {
397 xmlNanoHTTPCtxtPtr ret;
398
399 ret = (xmlNanoHTTPCtxtPtr) xmlMalloc(sizeof(xmlNanoHTTPCtxt));
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000400 if (ret == NULL) {
401 xmlHTTPErrMemory("allocating context");
402 return(NULL);
403 }
Owen Taylor3473f882001-02-23 17:55:21 +0000404
405 memset(ret, 0, sizeof(xmlNanoHTTPCtxt));
406 ret->port = 80;
407 ret->returnValue = 0;
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100408 ret->fd = INVALID_SOCKET;
Daniel Veillardf012a642001-07-23 19:10:52 +0000409 ret->ContentLength = -1;
Owen Taylor3473f882001-02-23 17:55:21 +0000410
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000411 xmlNanoHTTPScanURL(ret, URL);
Owen Taylor3473f882001-02-23 17:55:21 +0000412
413 return(ret);
414}
415
416/**
417 * xmlNanoHTTPFreeCtxt:
418 * @ctxt: an HTTP context
419 *
420 * Frees the context after closing the connection.
421 */
422
423static void
424xmlNanoHTTPFreeCtxt(xmlNanoHTTPCtxtPtr ctxt) {
425 if (ctxt == NULL) return;
426 if (ctxt->hostname != NULL) xmlFree(ctxt->hostname);
427 if (ctxt->protocol != NULL) xmlFree(ctxt->protocol);
428 if (ctxt->path != NULL) xmlFree(ctxt->path);
Daniel Veillard351f2d62005-04-13 02:55:12 +0000429 if (ctxt->query != NULL) xmlFree(ctxt->query);
Owen Taylor3473f882001-02-23 17:55:21 +0000430 if (ctxt->out != NULL) xmlFree(ctxt->out);
431 if (ctxt->in != NULL) xmlFree(ctxt->in);
432 if (ctxt->contentType != NULL) xmlFree(ctxt->contentType);
Daniel Veillard847332a2003-10-18 11:29:40 +0000433 if (ctxt->encoding != NULL) xmlFree(ctxt->encoding);
Daniel Veillarda840b692003-10-19 13:35:37 +0000434 if (ctxt->mimeType != NULL) xmlFree(ctxt->mimeType);
Owen Taylor3473f882001-02-23 17:55:21 +0000435 if (ctxt->location != NULL) xmlFree(ctxt->location);
436 if (ctxt->authHeader != NULL) xmlFree(ctxt->authHeader);
Nick Wellnhofercb5541c2017-11-13 17:08:38 +0100437#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9a2724d2005-12-15 11:12:26 +0000438 if (ctxt->strm != NULL) {
439 inflateEnd(ctxt->strm);
440 xmlFree(ctxt->strm);
441 }
442#endif
443
Owen Taylor3473f882001-02-23 17:55:21 +0000444 ctxt->state = XML_NANO_HTTP_NONE;
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100445 if (ctxt->fd != INVALID_SOCKET) closesocket(ctxt->fd);
446 ctxt->fd = INVALID_SOCKET;
Owen Taylor3473f882001-02-23 17:55:21 +0000447 xmlFree(ctxt);
448}
449
450/**
451 * xmlNanoHTTPSend:
452 * @ctxt: an HTTP context
453 *
454 * Send the input needed to initiate the processing on the server side
Daniel Veillardf012a642001-07-23 19:10:52 +0000455 * Returns number of bytes sent or -1 on error.
Owen Taylor3473f882001-02-23 17:55:21 +0000456 */
457
Daniel Veillardf012a642001-07-23 19:10:52 +0000458static int
Raphael Prevost48b60c32009-08-23 13:11:01 +0200459xmlNanoHTTPSend(xmlNanoHTTPCtxtPtr ctxt, const char *xmt_ptr, int outlen)
460{
461 int total_sent = 0;
462#ifdef HAVE_POLL_H
463 struct pollfd p;
464#else
465 struct timeval tv;
466 fd_set wfd;
467#endif
Daniel Veillardf012a642001-07-23 19:10:52 +0000468
Raphael Prevost48b60c32009-08-23 13:11:01 +0200469 if ((ctxt->state & XML_NANO_HTTP_WRITE) && (xmt_ptr != NULL)) {
Daniel Veillardf012a642001-07-23 19:10:52 +0000470 while (total_sent < outlen) {
Patrick Monnerat437f4f52013-12-12 15:23:09 +0800471 int nsent = send(ctxt->fd, SEND_ARG2_CAST (xmt_ptr + total_sent),
Raphael Prevost48b60c32009-08-23 13:11:01 +0200472 outlen - total_sent, 0);
473
474 if (nsent > 0)
Owen Taylor3473f882001-02-23 17:55:21 +0000475 total_sent += nsent;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200476 else if ((nsent == -1) &&
Daniel Veillardba6db032001-07-31 16:25:45 +0000477#if defined(EAGAIN) && EAGAIN != EWOULDBLOCK
Raphael Prevost48b60c32009-08-23 13:11:01 +0200478 (socket_errno() != EAGAIN) &&
Daniel Veillardba6db032001-07-31 16:25:45 +0000479#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200480 (socket_errno() != EWOULDBLOCK)) {
481 __xmlIOErr(XML_FROM_HTTP, 0, "send failed\n");
482 if (total_sent == 0)
483 total_sent = -1;
484 break;
485 } else {
486 /*
487 * No data sent
488 * Since non-blocking sockets are used, wait for
489 * socket to be writable or default timeout prior
490 * to retrying.
491 */
492#ifndef HAVE_POLL_H
spadixd29a5c82009-10-19 14:03:25 +0200493#ifndef _WINSOCKAPI_
Raphael Prevost48b60c32009-08-23 13:11:01 +0200494 if (ctxt->fd > FD_SETSIZE)
495 return -1;
spadixd29a5c82009-10-19 14:03:25 +0200496#endif
Daniel Veillardf012a642001-07-23 19:10:52 +0000497
Raphael Prevost48b60c32009-08-23 13:11:01 +0200498 tv.tv_sec = timeout;
499 tv.tv_usec = 0;
500 FD_ZERO(&wfd);
Daniel Veillard9e2110b2005-08-08 20:33:54 +0000501#ifdef _MSC_VER
502#pragma warning(push)
503#pragma warning(disable: 4018)
504#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200505 FD_SET(ctxt->fd, &wfd);
Daniel Veillard9e2110b2005-08-08 20:33:54 +0000506#ifdef _MSC_VER
507#pragma warning(pop)
508#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200509 (void) select(ctxt->fd + 1, NULL, &wfd, NULL, &tv);
510#else
511 p.fd = ctxt->fd;
512 p.events = POLLOUT;
513 (void) poll(&p, 1, timeout * 1000);
514#endif /* !HAVE_POLL_H */
515 }
516 }
Owen Taylor3473f882001-02-23 17:55:21 +0000517 }
Daniel Veillardf012a642001-07-23 19:10:52 +0000518
519 return total_sent;
Owen Taylor3473f882001-02-23 17:55:21 +0000520}
521
522/**
523 * xmlNanoHTTPRecv:
524 * @ctxt: an HTTP context
525 *
526 * Read information coming from the HTTP connection.
527 * This is a blocking call (but it blocks in select(), not read()).
528 *
529 * Returns the number of byte read or -1 in case of error.
530 */
531
532static int
Raphael Prevost48b60c32009-08-23 13:11:01 +0200533xmlNanoHTTPRecv(xmlNanoHTTPCtxtPtr ctxt)
534{
535#ifdef HAVE_POLL_H
536 struct pollfd p;
537#else
Owen Taylor3473f882001-02-23 17:55:21 +0000538 fd_set rfd;
539 struct timeval tv;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200540#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000541
542
543 while (ctxt->state & XML_NANO_HTTP_READ) {
Raphael Prevost48b60c32009-08-23 13:11:01 +0200544 if (ctxt->in == NULL) {
545 ctxt->in = (char *) xmlMallocAtomic(65000 * sizeof(char));
546 if (ctxt->in == NULL) {
547 xmlHTTPErrMemory("allocating input");
548 ctxt->last = -1;
549 return (-1);
550 }
551 ctxt->inlen = 65000;
552 ctxt->inptr = ctxt->content = ctxt->inrptr = ctxt->in;
553 }
554 if (ctxt->inrptr > ctxt->in + XML_NANO_HTTP_CHUNK) {
555 int delta = ctxt->inrptr - ctxt->in;
556 int len = ctxt->inptr - ctxt->inrptr;
Owen Taylor3473f882001-02-23 17:55:21 +0000557
Raphael Prevost48b60c32009-08-23 13:11:01 +0200558 memmove(ctxt->in, ctxt->inrptr, len);
559 ctxt->inrptr -= delta;
560 ctxt->content -= delta;
561 ctxt->inptr -= delta;
562 }
563 if ((ctxt->in + ctxt->inlen) < (ctxt->inptr + XML_NANO_HTTP_CHUNK)) {
564 int d_inptr = ctxt->inptr - ctxt->in;
565 int d_content = ctxt->content - ctxt->in;
566 int d_inrptr = ctxt->inrptr - ctxt->in;
567 char *tmp_ptr = ctxt->in;
568
569 ctxt->inlen *= 2;
Daniel Veillardf012a642001-07-23 19:10:52 +0000570 ctxt->in = (char *) xmlRealloc(tmp_ptr, ctxt->inlen);
Raphael Prevost48b60c32009-08-23 13:11:01 +0200571 if (ctxt->in == NULL) {
572 xmlHTTPErrMemory("allocating input buffer");
573 xmlFree(tmp_ptr);
574 ctxt->last = -1;
575 return (-1);
576 }
Owen Taylor3473f882001-02-23 17:55:21 +0000577 ctxt->inptr = ctxt->in + d_inptr;
578 ctxt->content = ctxt->in + d_content;
579 ctxt->inrptr = ctxt->in + d_inrptr;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200580 }
581 ctxt->last = recv(ctxt->fd, ctxt->inptr, XML_NANO_HTTP_CHUNK, 0);
582 if (ctxt->last > 0) {
583 ctxt->inptr += ctxt->last;
584 return (ctxt->last);
585 }
586 if (ctxt->last == 0) {
587 return (0);
588 }
589 if (ctxt->last == -1) {
590 switch (socket_errno()) {
591 case EINPROGRESS:
592 case EWOULDBLOCK:
Owen Taylor3473f882001-02-23 17:55:21 +0000593#if defined(EAGAIN) && EAGAIN != EWOULDBLOCK
Raphael Prevost48b60c32009-08-23 13:11:01 +0200594 case EAGAIN:
Owen Taylor3473f882001-02-23 17:55:21 +0000595#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200596 break;
Daniel Veillardf012a642001-07-23 19:10:52 +0000597
Raphael Prevost48b60c32009-08-23 13:11:01 +0200598 case ECONNRESET:
599 case ESHUTDOWN:
600 return (0);
Daniel Veillardf012a642001-07-23 19:10:52 +0000601
Raphael Prevost48b60c32009-08-23 13:11:01 +0200602 default:
603 __xmlIOErr(XML_FROM_HTTP, 0, "recv failed\n");
604 return (-1);
605 }
606 }
607#ifdef HAVE_POLL_H
608 p.fd = ctxt->fd;
609 p.events = POLLIN;
610 if ((poll(&p, 1, timeout * 1000) < 1)
611#if defined(EINTR)
612 && (errno != EINTR)
613#endif
614 )
615 return (0);
616#else /* !HAVE_POLL_H */
spadixd29a5c82009-10-19 14:03:25 +0200617#ifndef _WINSOCKAPI_
Raphael Prevost48b60c32009-08-23 13:11:01 +0200618 if (ctxt->fd > FD_SETSIZE)
619 return 0;
spadixd29a5c82009-10-19 14:03:25 +0200620#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000621
Raphael Prevost48b60c32009-08-23 13:11:01 +0200622 tv.tv_sec = timeout;
623 tv.tv_usec = 0;
624 FD_ZERO(&rfd);
625
Daniel Veillard9e2110b2005-08-08 20:33:54 +0000626#ifdef _MSC_VER
627#pragma warning(push)
628#pragma warning(disable: 4018)
629#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200630
631 FD_SET(ctxt->fd, &rfd);
632
Daniel Veillard9e2110b2005-08-08 20:33:54 +0000633#ifdef _MSC_VER
634#pragma warning(pop)
635#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200636
637 if ((select(ctxt->fd + 1, &rfd, NULL, NULL, &tv) < 1)
Daniel Veillard50f34372001-08-03 12:06:36 +0000638#if defined(EINTR)
Nick Wellnhofer5b2324b2017-10-09 00:05:04 +0200639 && (socket_errno() != EINTR)
Daniel Veillard50f34372001-08-03 12:06:36 +0000640#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200641 )
642 return (0);
643#endif /* !HAVE_POLL_H */
Owen Taylor3473f882001-02-23 17:55:21 +0000644 }
Raphael Prevost48b60c32009-08-23 13:11:01 +0200645 return (0);
Owen Taylor3473f882001-02-23 17:55:21 +0000646}
647
648/**
649 * xmlNanoHTTPReadLine:
650 * @ctxt: an HTTP context
651 *
652 * Read one line in the HTTP server output, usually for extracting
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700653 * the HTTP protocol information from the answer header.
Owen Taylor3473f882001-02-23 17:55:21 +0000654 *
655 * Returns a newly allocated string with a copy of the line, or NULL
656 * which indicate the end of the input.
657 */
658
659static char *
660xmlNanoHTTPReadLine(xmlNanoHTTPCtxtPtr ctxt) {
661 char buf[4096];
662 char *bp = buf;
Daniel Veillardf012a642001-07-23 19:10:52 +0000663 int rc;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800664
Owen Taylor3473f882001-02-23 17:55:21 +0000665 while (bp - buf < 4095) {
666 if (ctxt->inrptr == ctxt->inptr) {
Daniel Veillardf012a642001-07-23 19:10:52 +0000667 if ( (rc = xmlNanoHTTPRecv(ctxt)) == 0) {
Owen Taylor3473f882001-02-23 17:55:21 +0000668 if (bp == buf)
669 return(NULL);
670 else
671 *bp = 0;
672 return(xmlMemStrdup(buf));
673 }
Daniel Veillardf012a642001-07-23 19:10:52 +0000674 else if ( rc == -1 ) {
675 return ( NULL );
676 }
Owen Taylor3473f882001-02-23 17:55:21 +0000677 }
678 *bp = *ctxt->inrptr++;
679 if (*bp == '\n') {
680 *bp = 0;
681 return(xmlMemStrdup(buf));
682 }
683 if (*bp != '\r')
684 bp++;
685 }
686 buf[4095] = 0;
687 return(xmlMemStrdup(buf));
688}
689
690
691/**
692 * xmlNanoHTTPScanAnswer:
693 * @ctxt: an HTTP context
694 * @line: an HTTP header line
695 *
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700696 * Try to extract useful information from the server answer.
Owen Taylor3473f882001-02-23 17:55:21 +0000697 * We currently parse and process:
698 * - The HTTP revision/ return code
Daniel Veillarda840b692003-10-19 13:35:37 +0000699 * - The Content-Type, Mime-Type and charset used
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000700 * - The Location for redirect processing.
Owen Taylor3473f882001-02-23 17:55:21 +0000701 *
702 * Returns -1 in case of failure, the file descriptor number otherwise
703 */
704
705static void
706xmlNanoHTTPScanAnswer(xmlNanoHTTPCtxtPtr ctxt, const char *line) {
707 const char *cur = line;
708
709 if (line == NULL) return;
710
711 if (!strncmp(line, "HTTP/", 5)) {
712 int version = 0;
713 int ret = 0;
714
715 cur += 5;
716 while ((*cur >= '0') && (*cur <= '9')) {
717 version *= 10;
718 version += *cur - '0';
719 cur++;
720 }
721 if (*cur == '.') {
722 cur++;
723 if ((*cur >= '0') && (*cur <= '9')) {
724 version *= 10;
725 version += *cur - '0';
726 cur++;
727 }
728 while ((*cur >= '0') && (*cur <= '9'))
729 cur++;
730 } else
731 version *= 10;
732 if ((*cur != ' ') && (*cur != '\t')) return;
733 while ((*cur == ' ') || (*cur == '\t')) cur++;
734 if ((*cur < '0') || (*cur > '9')) return;
735 while ((*cur >= '0') && (*cur <= '9')) {
736 ret *= 10;
737 ret += *cur - '0';
738 cur++;
739 }
740 if ((*cur != 0) && (*cur != ' ') && (*cur != '\t')) return;
741 ctxt->returnValue = ret;
Daniel Veillard13cee4e2009-09-05 14:52:55 +0200742 ctxt->version = version;
Owen Taylor3473f882001-02-23 17:55:21 +0000743 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Content-Type:", 13)) {
Daniel Veillarda840b692003-10-19 13:35:37 +0000744 const xmlChar *charset, *last, *mime;
Owen Taylor3473f882001-02-23 17:55:21 +0000745 cur += 13;
746 while ((*cur == ' ') || (*cur == '\t')) cur++;
747 if (ctxt->contentType != NULL)
748 xmlFree(ctxt->contentType);
749 ctxt->contentType = xmlMemStrdup(cur);
Daniel Veillarda840b692003-10-19 13:35:37 +0000750 mime = (const xmlChar *) cur;
751 last = mime;
752 while ((*last != 0) && (*last != ' ') && (*last != '\t') &&
753 (*last != ';') && (*last != ','))
754 last++;
755 if (ctxt->mimeType != NULL)
756 xmlFree(ctxt->mimeType);
757 ctxt->mimeType = (char *) xmlStrndup(mime, last - mime);
758 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset=");
759 if (charset != NULL) {
760 charset += 8;
761 last = charset;
762 while ((*last != 0) && (*last != ' ') && (*last != '\t') &&
763 (*last != ';') && (*last != ','))
764 last++;
765 if (ctxt->encoding != NULL)
766 xmlFree(ctxt->encoding);
767 ctxt->encoding = (char *) xmlStrndup(charset, last - charset);
768 }
Owen Taylor3473f882001-02-23 17:55:21 +0000769 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"ContentType:", 12)) {
Daniel Veillarda840b692003-10-19 13:35:37 +0000770 const xmlChar *charset, *last, *mime;
Owen Taylor3473f882001-02-23 17:55:21 +0000771 cur += 12;
772 if (ctxt->contentType != NULL) return;
773 while ((*cur == ' ') || (*cur == '\t')) cur++;
774 ctxt->contentType = xmlMemStrdup(cur);
Daniel Veillarda840b692003-10-19 13:35:37 +0000775 mime = (const xmlChar *) cur;
776 last = mime;
777 while ((*last != 0) && (*last != ' ') && (*last != '\t') &&
778 (*last != ';') && (*last != ','))
779 last++;
780 if (ctxt->mimeType != NULL)
781 xmlFree(ctxt->mimeType);
782 ctxt->mimeType = (char *) xmlStrndup(mime, last - mime);
783 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset=");
784 if (charset != NULL) {
785 charset += 8;
786 last = charset;
787 while ((*last != 0) && (*last != ' ') && (*last != '\t') &&
788 (*last != ';') && (*last != ','))
789 last++;
790 if (ctxt->encoding != NULL)
791 xmlFree(ctxt->encoding);
792 ctxt->encoding = (char *) xmlStrndup(charset, last - charset);
793 }
Owen Taylor3473f882001-02-23 17:55:21 +0000794 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Location:", 9)) {
795 cur += 9;
796 while ((*cur == ' ') || (*cur == '\t')) cur++;
797 if (ctxt->location != NULL)
798 xmlFree(ctxt->location);
William M. Brack7e29c0a2004-04-02 09:07:22 +0000799 if (*cur == '/') {
800 xmlChar *tmp_http = xmlStrdup(BAD_CAST "http://");
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800801 xmlChar *tmp_loc =
William M. Brack7e29c0a2004-04-02 09:07:22 +0000802 xmlStrcat(tmp_http, (const xmlChar *) ctxt->hostname);
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800803 ctxt->location =
William M. Brack7e29c0a2004-04-02 09:07:22 +0000804 (char *) xmlStrcat (tmp_loc, (const xmlChar *) cur);
805 } else {
806 ctxt->location = xmlMemStrdup(cur);
807 }
Owen Taylor3473f882001-02-23 17:55:21 +0000808 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"WWW-Authenticate:", 17)) {
809 cur += 17;
810 while ((*cur == ' ') || (*cur == '\t')) cur++;
811 if (ctxt->authHeader != NULL)
812 xmlFree(ctxt->authHeader);
813 ctxt->authHeader = xmlMemStrdup(cur);
814 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Proxy-Authenticate:", 19)) {
815 cur += 19;
816 while ((*cur == ' ') || (*cur == '\t')) cur++;
817 if (ctxt->authHeader != NULL)
818 xmlFree(ctxt->authHeader);
819 ctxt->authHeader = xmlMemStrdup(cur);
Nick Wellnhofercb5541c2017-11-13 17:08:38 +0100820#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9a2724d2005-12-15 11:12:26 +0000821 } else if ( !xmlStrncasecmp( BAD_CAST line, BAD_CAST"Content-Encoding:", 17) ) {
822 cur += 17;
823 while ((*cur == ' ') || (*cur == '\t')) cur++;
824 if ( !xmlStrncasecmp( BAD_CAST cur, BAD_CAST"gzip", 4) ) {
825 ctxt->usesGzip = 1;
826
827 ctxt->strm = xmlMalloc(sizeof(z_stream));
828
829 if (ctxt->strm != NULL) {
830 ctxt->strm->zalloc = Z_NULL;
831 ctxt->strm->zfree = Z_NULL;
832 ctxt->strm->opaque = Z_NULL;
833 ctxt->strm->avail_in = 0;
834 ctxt->strm->next_in = Z_NULL;
835
836 inflateInit2( ctxt->strm, 31 );
837 }
838 }
839#endif
Daniel Veillardf012a642001-07-23 19:10:52 +0000840 } else if ( !xmlStrncasecmp( BAD_CAST line, BAD_CAST"Content-Length:", 15) ) {
841 cur += 15;
842 ctxt->ContentLength = strtol( cur, NULL, 10 );
Owen Taylor3473f882001-02-23 17:55:21 +0000843 }
844}
845
846/**
847 * xmlNanoHTTPConnectAttempt:
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000848 * @addr: a socket address structure
Owen Taylor3473f882001-02-23 17:55:21 +0000849 *
850 * Attempt a connection to the given IP:port endpoint. It forces
851 * non-blocking semantic on the socket, and allow 60 seconds for
852 * the host to answer.
853 *
854 * Returns -1 in case of failure, the file descriptor number otherwise
855 */
856
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100857static SOCKET
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000858xmlNanoHTTPConnectAttempt(struct sockaddr *addr)
Owen Taylor3473f882001-02-23 17:55:21 +0000859{
Raphael Prevost48b60c32009-08-23 13:11:01 +0200860#ifndef HAVE_POLL_H
Owen Taylor3473f882001-02-23 17:55:21 +0000861 fd_set wfd;
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +0000862#ifdef _WINSOCKAPI_
863 fd_set xfd;
864#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000865 struct timeval tv;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200866#else /* !HAVE_POLL_H */
867 struct pollfd p;
868#endif /* !HAVE_POLL_H */
Owen Taylor3473f882001-02-23 17:55:21 +0000869 int status;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200870
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000871 int addrlen;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200872
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000873 SOCKET s;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200874
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000875#ifdef SUPPORT_IP6
876 if (addr->sa_family == AF_INET6) {
Raphael Prevost48b60c32009-08-23 13:11:01 +0200877 s = socket(PF_INET6, SOCK_STREAM, IPPROTO_TCP);
878 addrlen = sizeof(struct sockaddr_in6);
879 } else
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000880#endif
881 {
Raphael Prevost48b60c32009-08-23 13:11:01 +0200882 s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
883 addrlen = sizeof(struct sockaddr_in);
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000884 }
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100885 if (s == INVALID_SOCKET) {
Owen Taylor3473f882001-02-23 17:55:21 +0000886#ifdef DEBUG_HTTP
Raphael Prevost48b60c32009-08-23 13:11:01 +0200887 perror("socket");
Owen Taylor3473f882001-02-23 17:55:21 +0000888#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200889 __xmlIOErr(XML_FROM_HTTP, 0, "socket failed\n");
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100890 return INVALID_SOCKET;
Owen Taylor3473f882001-02-23 17:55:21 +0000891 }
Owen Taylor3473f882001-02-23 17:55:21 +0000892#ifdef _WINSOCKAPI_
893 {
Raphael Prevost48b60c32009-08-23 13:11:01 +0200894 u_long one = 1;
Owen Taylor3473f882001-02-23 17:55:21 +0000895
Raphael Prevost48b60c32009-08-23 13:11:01 +0200896 status = ioctlsocket(s, FIONBIO, &one) == SOCKET_ERROR ? -1 : 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000897 }
898#else /* _WINSOCKAPI_ */
899#if defined(VMS)
900 {
Raphael Prevost48b60c32009-08-23 13:11:01 +0200901 int enable = 1;
902
903 status = ioctl(s, FIONBIO, &enable);
Owen Taylor3473f882001-02-23 17:55:21 +0000904 }
905#else /* VMS */
Daniel Veillardcba68392008-08-29 12:43:40 +0000906#if defined(__BEOS__) && !defined(__HAIKU__)
Raphael Prevost48b60c32009-08-23 13:11:01 +0200907 {
908 bool noblock = true;
909
910 status =
911 setsockopt(s, SOL_SOCKET, SO_NONBLOCK, &noblock,
912 sizeof(noblock));
913 }
Daniel Veillard254b1262003-11-01 17:04:58 +0000914#else /* __BEOS__ */
Owen Taylor3473f882001-02-23 17:55:21 +0000915 if ((status = fcntl(s, F_GETFL, 0)) != -1) {
916#ifdef O_NONBLOCK
Raphael Prevost48b60c32009-08-23 13:11:01 +0200917 status |= O_NONBLOCK;
Owen Taylor3473f882001-02-23 17:55:21 +0000918#else /* O_NONBLOCK */
919#ifdef F_NDELAY
Raphael Prevost48b60c32009-08-23 13:11:01 +0200920 status |= F_NDELAY;
Owen Taylor3473f882001-02-23 17:55:21 +0000921#endif /* F_NDELAY */
922#endif /* !O_NONBLOCK */
Raphael Prevost48b60c32009-08-23 13:11:01 +0200923 status = fcntl(s, F_SETFL, status);
Owen Taylor3473f882001-02-23 17:55:21 +0000924 }
925 if (status < 0) {
926#ifdef DEBUG_HTTP
Raphael Prevost48b60c32009-08-23 13:11:01 +0200927 perror("nonblocking");
Owen Taylor3473f882001-02-23 17:55:21 +0000928#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200929 __xmlIOErr(XML_FROM_HTTP, 0, "error setting non-blocking IO\n");
930 closesocket(s);
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100931 return INVALID_SOCKET;
Owen Taylor3473f882001-02-23 17:55:21 +0000932 }
Daniel Veillard254b1262003-11-01 17:04:58 +0000933#endif /* !__BEOS__ */
Owen Taylor3473f882001-02-23 17:55:21 +0000934#endif /* !VMS */
935#endif /* !_WINSOCKAPI_ */
936
Raphael Prevost48b60c32009-08-23 13:11:01 +0200937 if (connect(s, addr, addrlen) == -1) {
938 switch (socket_errno()) {
939 case EINPROGRESS:
940 case EWOULDBLOCK:
941 break;
942 default:
943 __xmlIOErr(XML_FROM_HTTP, 0,
944 "error connecting to HTTP server");
945 closesocket(s);
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100946 return INVALID_SOCKET;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200947 }
948 }
949#ifndef HAVE_POLL_H
Owen Taylor3473f882001-02-23 17:55:21 +0000950 tv.tv_sec = timeout;
951 tv.tv_usec = 0;
Daniel Veillard9e2110b2005-08-08 20:33:54 +0000952
953#ifdef _MSC_VER
954#pragma warning(push)
955#pragma warning(disable: 4018)
956#endif
spadixd29a5c82009-10-19 14:03:25 +0200957#ifndef _WINSOCKAPI_
Raphael Prevost48b60c32009-08-23 13:11:01 +0200958 if (s > FD_SETSIZE)
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100959 return INVALID_SOCKET;
spadixd29a5c82009-10-19 14:03:25 +0200960#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000961 FD_ZERO(&wfd);
962 FD_SET(s, &wfd);
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +0000963
Raphael Prevost48b60c32009-08-23 13:11:01 +0200964#ifdef _WINSOCKAPI_
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +0000965 FD_ZERO(&xfd);
966 FD_SET(s, &xfd);
Raphael Prevost48b60c32009-08-23 13:11:01 +0200967
968 switch (select(s + 1, NULL, &wfd, &xfd, &tv))
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +0000969#else
Raphael Prevost48b60c32009-08-23 13:11:01 +0200970 switch (select(s + 1, NULL, &wfd, NULL, &tv))
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +0000971#endif
Daniel Veillard9e2110b2005-08-08 20:33:54 +0000972#ifdef _MSC_VER
973#pragma warning(pop)
974#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +0200975
976#else /* !HAVE_POLL_H */
977 p.fd = s;
978 p.events = POLLOUT;
979 switch (poll(&p, 1, timeout * 1000))
980#endif /* !HAVE_POLL_H */
981
Owen Taylor3473f882001-02-23 17:55:21 +0000982 {
Raphael Prevost48b60c32009-08-23 13:11:01 +0200983 case 0:
984 /* Time out */
985 __xmlIOErr(XML_FROM_HTTP, 0, "Connect attempt timed out");
986 closesocket(s);
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100987 return INVALID_SOCKET;
Raphael Prevost48b60c32009-08-23 13:11:01 +0200988 case -1:
989 /* Ermm.. ?? */
990 __xmlIOErr(XML_FROM_HTTP, 0, "Connect failed");
991 closesocket(s);
Ozkan Sezerf99d2222010-11-04 12:08:08 +0100992 return INVALID_SOCKET;
Owen Taylor3473f882001-02-23 17:55:21 +0000993 }
994
Raphael Prevost48b60c32009-08-23 13:11:01 +0200995#ifndef HAVE_POLL_H
996 if (FD_ISSET(s, &wfd)
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +0000997#ifdef _WINSOCKAPI_
Raphael Prevost48b60c32009-08-23 13:11:01 +0200998 || FD_ISSET(s, &xfd)
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +0000999#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +02001000 )
1001#else /* !HAVE_POLL_H */
1002 if (p.revents == POLLOUT)
1003#endif /* !HAVE_POLL_H */
1004 {
1005 XML_SOCKLEN_T len;
1006
1007 len = sizeof(status);
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001008#ifdef SO_ERROR
Raphael Prevost48b60c32009-08-23 13:11:01 +02001009 if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) <
1010 0) {
1011 /* Solaris error code */
1012 __xmlIOErr(XML_FROM_HTTP, 0, "getsockopt failed\n");
Denis Pauk283c83e2013-08-06 09:49:42 +03001013 closesocket(s);
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001014 return INVALID_SOCKET;
Raphael Prevost48b60c32009-08-23 13:11:01 +02001015 }
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001016#endif
Raphael Prevost48b60c32009-08-23 13:11:01 +02001017 if (status) {
1018 __xmlIOErr(XML_FROM_HTTP, 0,
1019 "Error connecting to remote host");
1020 closesocket(s);
1021 errno = status;
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001022 return INVALID_SOCKET;
Raphael Prevost48b60c32009-08-23 13:11:01 +02001023 }
Owen Taylor3473f882001-02-23 17:55:21 +00001024 } else {
Raphael Prevost48b60c32009-08-23 13:11:01 +02001025 /* pbm */
1026 __xmlIOErr(XML_FROM_HTTP, 0, "select failed\n");
1027 closesocket(s);
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001028 return INVALID_SOCKET;
Owen Taylor3473f882001-02-23 17:55:21 +00001029 }
Raphael Prevost48b60c32009-08-23 13:11:01 +02001030
1031 return (s);
Owen Taylor3473f882001-02-23 17:55:21 +00001032}
Raphael Prevost48b60c32009-08-23 13:11:01 +02001033
Owen Taylor3473f882001-02-23 17:55:21 +00001034/**
1035 * xmlNanoHTTPConnectHost:
1036 * @host: the host name
1037 * @port: the port number
1038 *
1039 * Attempt a connection to the given host:port endpoint. It tries
1040 * the multiple IP provided by the DNS if available.
1041 *
1042 * Returns -1 in case of failure, the file descriptor number otherwise
1043 */
1044
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001045static SOCKET
Owen Taylor3473f882001-02-23 17:55:21 +00001046xmlNanoHTTPConnectHost(const char *host, int port)
1047{
Daniel Veillard2db8c122003-07-08 12:16:59 +00001048 struct sockaddr *addr = NULL;
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001049 struct sockaddr_in sockin;
Daniel Veillard5c396542002-03-15 07:57:50 +00001050
Owen Taylor3473f882001-02-23 17:55:21 +00001051#ifdef SUPPORT_IP6
1052 struct in6_addr ia6;
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001053 struct sockaddr_in6 sockin6;
Owen Taylor3473f882001-02-23 17:55:21 +00001054#endif
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001055 SOCKET s;
Daniel Veillard5c396542002-03-15 07:57:50 +00001056
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001057 memset (&sockin, 0, sizeof(sockin));
1058#ifdef SUPPORT_IP6
1059 memset (&sockin6, 0, sizeof(sockin6));
Rob Richardscb418de2005-10-13 23:12:42 +00001060#endif
1061
1062#if !defined(HAVE_GETADDRINFO) && defined(SUPPORT_IP6) && defined(RES_USE_INET6)
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001063 if (have_ipv6 ())
Daniel Veillard560c2a42003-07-06 21:13:49 +00001064 {
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001065 if (!(_res.options & RES_INIT))
1066 res_init();
1067 _res.options |= RES_USE_INET6;
1068 }
Rob Richardscb418de2005-10-13 23:12:42 +00001069#endif
1070
1071#if defined(HAVE_GETADDRINFO) && defined(SUPPORT_IP6) && !defined(_WIN32)
1072 if (have_ipv6 ())
1073#endif
1074#if defined(HAVE_GETADDRINFO) && (defined(SUPPORT_IP6) || defined(_WIN32))
Daniel Veillard560c2a42003-07-06 21:13:49 +00001075 {
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001076 int status;
1077 struct addrinfo hints, *res, *result;
1078
1079 result = NULL;
1080 memset (&hints, 0,sizeof(hints));
1081 hints.ai_socktype = SOCK_STREAM;
1082
1083 status = getaddrinfo (host, NULL, &hints, &result);
1084 if (status) {
Daniel Veillard2b0f8792003-10-10 19:36:36 +00001085 __xmlIOErr(XML_FROM_HTTP, 0, "getaddrinfo failed\n");
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001086 return INVALID_SOCKET;
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001087 }
1088
1089 for (res = result; res; res = res->ai_next) {
Rob Richardscb418de2005-10-13 23:12:42 +00001090 if (res->ai_family == AF_INET) {
J. Peter Mugaasa4864c22017-10-21 14:01:10 +02001091 if ((size_t)res->ai_addrlen > sizeof(sockin)) {
Rob Richardscb418de2005-10-13 23:12:42 +00001092 __xmlIOErr(XML_FROM_HTTP, 0, "address size mismatch\n");
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001093 freeaddrinfo (result);
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001094 return INVALID_SOCKET;
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001095 }
Rob Richardscb418de2005-10-13 23:12:42 +00001096 memcpy (&sockin, res->ai_addr, res->ai_addrlen);
1097 sockin.sin_port = htons (port);
1098 addr = (struct sockaddr *)&sockin;
1099#ifdef SUPPORT_IP6
1100 } else if (have_ipv6 () && (res->ai_family == AF_INET6)) {
J. Peter Mugaasa4864c22017-10-21 14:01:10 +02001101 if ((size_t)res->ai_addrlen > sizeof(sockin6)) {
Rob Richardscb418de2005-10-13 23:12:42 +00001102 __xmlIOErr(XML_FROM_HTTP, 0, "address size mismatch\n");
1103 freeaddrinfo (result);
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001104 return INVALID_SOCKET;
Rob Richardscb418de2005-10-13 23:12:42 +00001105 }
1106 memcpy (&sockin6, res->ai_addr, res->ai_addrlen);
1107 sockin6.sin6_port = htons (port);
1108 addr = (struct sockaddr *)&sockin6;
1109#endif
1110 } else
1111 continue; /* for */
1112
1113 s = xmlNanoHTTPConnectAttempt (addr);
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001114 if (s != INVALID_SOCKET) {
Rob Richardscb418de2005-10-13 23:12:42 +00001115 freeaddrinfo (result);
1116 return (s);
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001117 }
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001118 }
Rob Richardscb418de2005-10-13 23:12:42 +00001119
Daniel Veillard3dc93a42003-07-10 14:04:33 +00001120 if (result)
1121 freeaddrinfo (result);
Rob Richardscb418de2005-10-13 23:12:42 +00001122 }
Owen Taylor3473f882001-02-23 17:55:21 +00001123#endif
Rob Richardscb418de2005-10-13 23:12:42 +00001124#if defined(HAVE_GETADDRINFO) && defined(SUPPORT_IP6) && !defined(_WIN32)
1125 else
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001126#endif
Rob Richardscb418de2005-10-13 23:12:42 +00001127#if !defined(HAVE_GETADDRINFO) || !defined(_WIN32)
1128 {
Nick Wellnhoferecbdfa92017-10-09 02:01:00 +02001129 struct hostent *h;
1130 struct in_addr ia;
1131 int i;
1132
Patrick Monnerat437f4f52013-12-12 15:23:09 +08001133 h = gethostbyname (GETHOSTBYNAME_ARG_CAST host);
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001134 if (h == NULL) {
Daniel Veillard56b2db72002-03-25 16:35:28 +00001135
1136/*
1137 * Okay, I got fed up by the non-portability of this error message
1138 * extraction code. it work on Linux, if it work on your platform
1139 * and one want to enable it, send me the defined(foobar) needed
1140 */
Nick Wellnhofer2cdaaab2017-09-14 21:30:51 +02001141#if defined(HAVE_NETDB_H) && defined(HOST_NOT_FOUND) && defined(__linux__)
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001142 const char *h_err_txt = "";
Daniel Veillardf012a642001-07-23 19:10:52 +00001143
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001144 switch (h_errno) {
1145 case HOST_NOT_FOUND:
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001146 h_err_txt = "Authoritative host not found";
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001147 break;
Daniel Veillardf012a642001-07-23 19:10:52 +00001148
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001149 case TRY_AGAIN:
1150 h_err_txt =
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001151 "Non-authoritative host not found or server failure.";
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001152 break;
Daniel Veillardf012a642001-07-23 19:10:52 +00001153
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001154 case NO_RECOVERY:
1155 h_err_txt =
1156 "Non-recoverable errors: FORMERR, REFUSED, or NOTIMP.";
1157 break;
Daniel Veillard5c396542002-03-15 07:57:50 +00001158
Daniel Veillardd95b6892012-04-02 17:48:53 +08001159#ifdef NO_ADDRESS
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001160 case NO_ADDRESS:
1161 h_err_txt =
1162 "Valid name, no data record of requested type.";
1163 break;
Daniel Veillardd95b6892012-04-02 17:48:53 +08001164#endif
Daniel Veillard5c396542002-03-15 07:57:50 +00001165
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001166 default:
1167 h_err_txt = "No error text defined.";
1168 break;
1169 }
Daniel Veillard2b0f8792003-10-10 19:36:36 +00001170 __xmlIOErr(XML_FROM_HTTP, 0, h_err_txt);
Daniel Veillard5c396542002-03-15 07:57:50 +00001171#else
Daniel Veillard2b0f8792003-10-10 19:36:36 +00001172 __xmlIOErr(XML_FROM_HTTP, 0, "Failed to resolve host");
Owen Taylor3473f882001-02-23 17:55:21 +00001173#endif
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001174 return INVALID_SOCKET;
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001175 }
Daniel Veillard5c396542002-03-15 07:57:50 +00001176
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001177 for (i = 0; h->h_addr_list[i]; i++) {
1178 if (h->h_addrtype == AF_INET) {
1179 /* A records (IPv4) */
Daniel Veillard8e2c9792004-10-27 09:39:50 +00001180 if ((unsigned int) h->h_length > sizeof(ia)) {
1181 __xmlIOErr(XML_FROM_HTTP, 0, "address size mismatch\n");
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001182 return INVALID_SOCKET;
Daniel Veillard8e2c9792004-10-27 09:39:50 +00001183 }
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001184 memcpy (&ia, h->h_addr_list[i], h->h_length);
1185 sockin.sin_family = h->h_addrtype;
1186 sockin.sin_addr = ia;
Daniel Veillardac17e592012-04-02 15:45:13 +08001187 sockin.sin_port = (unsigned short)htons ((unsigned short)port);
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001188 addr = (struct sockaddr *) &sockin;
Daniel Veillard5c396542002-03-15 07:57:50 +00001189#ifdef SUPPORT_IP6
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001190 } else if (have_ipv6 () && (h->h_addrtype == AF_INET6)) {
1191 /* AAAA records (IPv6) */
Daniel Veillard8e2c9792004-10-27 09:39:50 +00001192 if ((unsigned int) h->h_length > sizeof(ia6)) {
1193 __xmlIOErr(XML_FROM_HTTP, 0, "address size mismatch\n");
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001194 return INVALID_SOCKET;
Daniel Veillard8e2c9792004-10-27 09:39:50 +00001195 }
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001196 memcpy (&ia6, h->h_addr_list[i], h->h_length);
1197 sockin6.sin6_family = h->h_addrtype;
1198 sockin6.sin6_addr = ia6;
1199 sockin6.sin6_port = htons (port);
1200 addr = (struct sockaddr *) &sockin6;
Daniel Veillard5c396542002-03-15 07:57:50 +00001201#endif
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001202 } else
1203 break; /* for */
Daniel Veillard5c396542002-03-15 07:57:50 +00001204
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001205 s = xmlNanoHTTPConnectAttempt (addr);
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001206 if (s != INVALID_SOCKET)
Daniel Veillardde2a67b2003-06-21 14:20:04 +00001207 return (s);
1208 }
Owen Taylor3473f882001-02-23 17:55:21 +00001209 }
Rob Richardscb418de2005-10-13 23:12:42 +00001210#endif
1211
Owen Taylor3473f882001-02-23 17:55:21 +00001212#ifdef DEBUG_HTTP
1213 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard5c396542002-03-15 07:57:50 +00001214 "xmlNanoHTTPConnectHost: unable to connect to '%s'.\n",
1215 host);
Owen Taylor3473f882001-02-23 17:55:21 +00001216#endif
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001217 return INVALID_SOCKET;
Owen Taylor3473f882001-02-23 17:55:21 +00001218}
1219
1220
1221/**
1222 * xmlNanoHTTPOpen:
1223 * @URL: The URL to load
1224 * @contentType: if available the Content-Type information will be
1225 * returned at that location
1226 *
1227 * This function try to open a connection to the indicated resource
1228 * via HTTP GET.
1229 *
1230 * Returns NULL in case of failure, otherwise a request handler.
1231 * The contentType, if provided must be freed by the caller
1232 */
1233
1234void*
1235xmlNanoHTTPOpen(const char *URL, char **contentType) {
1236 if (contentType != NULL) *contentType = NULL;
Daniel Veillardf012a642001-07-23 19:10:52 +00001237 return(xmlNanoHTTPMethod(URL, NULL, NULL, contentType, NULL, 0));
Daniel Veillard9403a042001-05-28 11:00:53 +00001238}
1239
1240/**
1241 * xmlNanoHTTPOpenRedir:
1242 * @URL: The URL to load
1243 * @contentType: if available the Content-Type information will be
1244 * returned at that location
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001245 * @redir: if available the redirected URL will be returned
Daniel Veillard9403a042001-05-28 11:00:53 +00001246 *
1247 * This function try to open a connection to the indicated resource
1248 * via HTTP GET.
1249 *
1250 * Returns NULL in case of failure, otherwise a request handler.
1251 * The contentType, if provided must be freed by the caller
1252 */
1253
1254void*
1255xmlNanoHTTPOpenRedir(const char *URL, char **contentType, char **redir) {
1256 if (contentType != NULL) *contentType = NULL;
1257 if (redir != NULL) *redir = NULL;
Daniel Veillardf012a642001-07-23 19:10:52 +00001258 return(xmlNanoHTTPMethodRedir(URL, NULL, NULL, contentType, redir, NULL,0));
Owen Taylor3473f882001-02-23 17:55:21 +00001259}
1260
1261/**
1262 * xmlNanoHTTPRead:
1263 * @ctx: the HTTP context
1264 * @dest: a buffer
1265 * @len: the buffer length
1266 *
1267 * This function tries to read @len bytes from the existing HTTP connection
1268 * and saves them in @dest. This is a blocking call.
1269 *
1270 * Returns the number of byte read. 0 is an indication of an end of connection.
1271 * -1 indicates a parameter error.
1272 */
1273int
1274xmlNanoHTTPRead(void *ctx, void *dest, int len) {
1275 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr) ctx;
Nick Wellnhofercb5541c2017-11-13 17:08:38 +01001276#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001277 int bytes_read = 0;
1278 int orig_avail_in;
1279 int z_ret;
1280#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001281
1282 if (ctx == NULL) return(-1);
1283 if (dest == NULL) return(-1);
1284 if (len <= 0) return(0);
1285
Nick Wellnhofercb5541c2017-11-13 17:08:38 +01001286#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001287 if (ctxt->usesGzip == 1) {
1288 if (ctxt->strm == NULL) return(0);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001289
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001290 ctxt->strm->next_out = dest;
1291 ctxt->strm->avail_out = len;
William M. Bracke8827652007-05-16 05:19:13 +00001292 ctxt->strm->avail_in = ctxt->inptr - ctxt->inrptr;
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001293
William M. Bracke8827652007-05-16 05:19:13 +00001294 while (ctxt->strm->avail_out > 0 &&
1295 (ctxt->strm->avail_in > 0 || xmlNanoHTTPRecv(ctxt) > 0)) {
William M. Brackd2f682a2007-05-15 19:42:08 +00001296 orig_avail_in = ctxt->strm->avail_in =
1297 ctxt->inptr - ctxt->inrptr - bytes_read;
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001298 ctxt->strm->next_in = BAD_CAST (ctxt->inrptr + bytes_read);
1299
1300 z_ret = inflate(ctxt->strm, Z_NO_FLUSH);
1301 bytes_read += orig_avail_in - ctxt->strm->avail_in;
1302
1303 if (z_ret != Z_OK) break;
William M. Brackd2f682a2007-05-15 19:42:08 +00001304 }
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001305
1306 ctxt->inrptr += bytes_read;
1307 return(len - ctxt->strm->avail_out);
1308 }
1309#endif
1310
Owen Taylor3473f882001-02-23 17:55:21 +00001311 while (ctxt->inptr - ctxt->inrptr < len) {
Daniel Veillardf012a642001-07-23 19:10:52 +00001312 if (xmlNanoHTTPRecv(ctxt) <= 0) break;
Owen Taylor3473f882001-02-23 17:55:21 +00001313 }
1314 if (ctxt->inptr - ctxt->inrptr < len)
1315 len = ctxt->inptr - ctxt->inrptr;
1316 memcpy(dest, ctxt->inrptr, len);
1317 ctxt->inrptr += len;
1318 return(len);
1319}
1320
1321/**
1322 * xmlNanoHTTPClose:
1323 * @ctx: the HTTP context
1324 *
1325 * This function closes an HTTP context, it ends up the connection and
1326 * free all data related to it.
1327 */
1328void
1329xmlNanoHTTPClose(void *ctx) {
1330 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr) ctx;
1331
1332 if (ctx == NULL) return;
1333
1334 xmlNanoHTTPFreeCtxt(ctxt);
1335}
1336
1337/**
Daniel Veillard9403a042001-05-28 11:00:53 +00001338 * xmlNanoHTTPMethodRedir:
Owen Taylor3473f882001-02-23 17:55:21 +00001339 * @URL: The URL to load
1340 * @method: the HTTP method to use
1341 * @input: the input string if any
1342 * @contentType: the Content-Type information IN and OUT
Daniel Veillard9403a042001-05-28 11:00:53 +00001343 * @redir: the redirected URL OUT
Owen Taylor3473f882001-02-23 17:55:21 +00001344 * @headers: the extra headers
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001345 * @ilen: input length
Owen Taylor3473f882001-02-23 17:55:21 +00001346 *
1347 * This function try to open a connection to the indicated resource
1348 * via HTTP using the given @method, adding the given extra headers
1349 * and the input buffer for the request content.
1350 *
1351 * Returns NULL in case of failure, otherwise a request handler.
Daniel Veillard9403a042001-05-28 11:00:53 +00001352 * The contentType, or redir, if provided must be freed by the caller
Owen Taylor3473f882001-02-23 17:55:21 +00001353 */
1354
1355void*
Daniel Veillard9403a042001-05-28 11:00:53 +00001356xmlNanoHTTPMethodRedir(const char *URL, const char *method, const char *input,
Daniel Veillardf012a642001-07-23 19:10:52 +00001357 char **contentType, char **redir,
1358 const char *headers, int ilen ) {
Owen Taylor3473f882001-02-23 17:55:21 +00001359 xmlNanoHTTPCtxtPtr ctxt;
1360 char *bp, *p;
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001361 int blen;
1362 SOCKET ret;
Owen Taylor3473f882001-02-23 17:55:21 +00001363 int nbRedirects = 0;
1364 char *redirURL = NULL;
William M. Brack78637da2003-07-31 14:47:38 +00001365#ifdef DEBUG_HTTP
1366 int xmt_bytes;
1367#endif
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001368
Owen Taylor3473f882001-02-23 17:55:21 +00001369 if (URL == NULL) return(NULL);
1370 if (method == NULL) method = "GET";
1371 xmlNanoHTTPInit();
1372
1373retry:
Gaurav Gupta1811add2014-07-14 17:50:27 +08001374 if (redirURL == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001375 ctxt = xmlNanoHTTPNewCtxt(URL);
Gaurav Gupta1811add2014-07-14 17:50:27 +08001376 if (ctxt == NULL)
1377 return(NULL);
1378 } else {
Owen Taylor3473f882001-02-23 17:55:21 +00001379 ctxt = xmlNanoHTTPNewCtxt(redirURL);
Gaurav Gupta1811add2014-07-14 17:50:27 +08001380 if (ctxt == NULL)
1381 return(NULL);
Daniel Veillarda840b692003-10-19 13:35:37 +00001382 ctxt->location = xmlMemStrdup(redirURL);
Owen Taylor3473f882001-02-23 17:55:21 +00001383 }
1384
1385 if ((ctxt->protocol == NULL) || (strcmp(ctxt->protocol, "http"))) {
Daniel Veillard2b0f8792003-10-10 19:36:36 +00001386 __xmlIOErr(XML_FROM_HTTP, XML_HTTP_URL_SYNTAX, "Not a valid HTTP URI");
Owen Taylor3473f882001-02-23 17:55:21 +00001387 xmlNanoHTTPFreeCtxt(ctxt);
1388 if (redirURL != NULL) xmlFree(redirURL);
1389 return(NULL);
1390 }
1391 if (ctxt->hostname == NULL) {
Daniel Veillard2b0f8792003-10-10 19:36:36 +00001392 __xmlIOErr(XML_FROM_HTTP, XML_HTTP_UNKNOWN_HOST,
1393 "Failed to identify host in URI");
Owen Taylor3473f882001-02-23 17:55:21 +00001394 xmlNanoHTTPFreeCtxt(ctxt);
Daniel Veillard9403a042001-05-28 11:00:53 +00001395 if (redirURL != NULL) xmlFree(redirURL);
Owen Taylor3473f882001-02-23 17:55:21 +00001396 return(NULL);
1397 }
1398 if (proxy) {
1399 blen = strlen(ctxt->hostname) * 2 + 16;
1400 ret = xmlNanoHTTPConnectHost(proxy, proxyPort);
1401 }
1402 else {
1403 blen = strlen(ctxt->hostname);
1404 ret = xmlNanoHTTPConnectHost(ctxt->hostname, ctxt->port);
1405 }
Ozkan Sezerf99d2222010-11-04 12:08:08 +01001406 if (ret == INVALID_SOCKET) {
Owen Taylor3473f882001-02-23 17:55:21 +00001407 xmlNanoHTTPFreeCtxt(ctxt);
Daniel Veillard9403a042001-05-28 11:00:53 +00001408 if (redirURL != NULL) xmlFree(redirURL);
Owen Taylor3473f882001-02-23 17:55:21 +00001409 return(NULL);
1410 }
1411 ctxt->fd = ret;
1412
Daniel Veillardf012a642001-07-23 19:10:52 +00001413 if (input == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00001414 ilen = 0;
Daniel Veillardf012a642001-07-23 19:10:52 +00001415 else
1416 blen += 36;
1417
Owen Taylor3473f882001-02-23 17:55:21 +00001418 if (headers != NULL)
Daniel Veillardf012a642001-07-23 19:10:52 +00001419 blen += strlen(headers) + 2;
Owen Taylor3473f882001-02-23 17:55:21 +00001420 if (contentType && *contentType)
William M. Brackead35832008-02-06 04:12:46 +00001421 /* reserve for string plus 'Content-Type: \r\n" */
Owen Taylor3473f882001-02-23 17:55:21 +00001422 blen += strlen(*contentType) + 16;
Daniel Veillard351f2d62005-04-13 02:55:12 +00001423 if (ctxt->query != NULL)
William M. Brackead35832008-02-06 04:12:46 +00001424 /* 1 for '?' */
Daniel Veillard351f2d62005-04-13 02:55:12 +00001425 blen += strlen(ctxt->query) + 1;
Daniel Veillardf012a642001-07-23 19:10:52 +00001426 blen += strlen(method) + strlen(ctxt->path) + 24;
Nick Wellnhofercb5541c2017-11-13 17:08:38 +01001427#ifdef LIBXML_ZLIB_ENABLED
William M. Brackead35832008-02-06 04:12:46 +00001428 /* reserve for possible 'Accept-Encoding: gzip' string */
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001429 blen += 23;
1430#endif
William M. Brackead35832008-02-06 04:12:46 +00001431 if (ctxt->port != 80) {
1432 /* reserve space for ':xxxxx', incl. potential proxy */
1433 if (proxy)
Daniel Veillard5dca9ee2017-04-07 17:13:28 +02001434 blen += 17;
William M. Brackead35832008-02-06 04:12:46 +00001435 else
Daniel Veillard5dca9ee2017-04-07 17:13:28 +02001436 blen += 11;
William M. Brackead35832008-02-06 04:12:46 +00001437 }
Daniel Veillard82cb3192003-10-29 13:39:15 +00001438 bp = (char*)xmlMallocAtomic(blen);
Daniel Veillardf012a642001-07-23 19:10:52 +00001439 if ( bp == NULL ) {
1440 xmlNanoHTTPFreeCtxt( ctxt );
Daniel Veillard2b0f8792003-10-10 19:36:36 +00001441 xmlHTTPErrMemory("allocating header buffer");
Daniel Veillardf012a642001-07-23 19:10:52 +00001442 return ( NULL );
1443 }
1444
1445 p = bp;
1446
Owen Taylor3473f882001-02-23 17:55:21 +00001447 if (proxy) {
1448 if (ctxt->port != 80) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001449 p += snprintf( p, blen - (p - bp), "%s http://%s:%d%s",
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001450 method, ctxt->hostname,
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001451 ctxt->port, ctxt->path );
Owen Taylor3473f882001-02-23 17:55:21 +00001452 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001453 else
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001454 p += snprintf( p, blen - (p - bp), "%s http://%s%s", method,
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001455 ctxt->hostname, ctxt->path);
Owen Taylor3473f882001-02-23 17:55:21 +00001456 }
1457 else
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001458 p += snprintf( p, blen - (p - bp), "%s %s", method, ctxt->path);
Daniel Veillardf012a642001-07-23 19:10:52 +00001459
Daniel Veillard351f2d62005-04-13 02:55:12 +00001460 if (ctxt->query != NULL)
1461 p += snprintf( p, blen - (p - bp), "?%s", ctxt->query);
1462
William M. Brackec720082007-08-24 02:57:38 +00001463 if (ctxt->port == 80) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001464 p += snprintf( p, blen - (p - bp), " HTTP/1.0\r\nHost: %s\r\n",
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001465 ctxt->hostname);
William M. Brackec720082007-08-24 02:57:38 +00001466 } else {
1467 p += snprintf( p, blen - (p - bp), " HTTP/1.0\r\nHost: %s:%d\r\n",
1468 ctxt->hostname, ctxt->port);
1469 }
Daniel Veillardf012a642001-07-23 19:10:52 +00001470
Nick Wellnhofercb5541c2017-11-13 17:08:38 +01001471#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9a2724d2005-12-15 11:12:26 +00001472 p += snprintf(p, blen - (p - bp), "Accept-Encoding: gzip\r\n");
1473#endif
1474
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001475 if (contentType != NULL && *contentType)
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001476 p += snprintf(p, blen - (p - bp), "Content-Type: %s\r\n", *contentType);
Daniel Veillardf012a642001-07-23 19:10:52 +00001477
1478 if (headers != NULL)
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001479 p += snprintf( p, blen - (p - bp), "%s", headers );
Daniel Veillardf012a642001-07-23 19:10:52 +00001480
Owen Taylor3473f882001-02-23 17:55:21 +00001481 if (input != NULL)
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001482 snprintf(p, blen - (p - bp), "Content-Length: %d\r\n\r\n", ilen );
Owen Taylor3473f882001-02-23 17:55:21 +00001483 else
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001484 snprintf(p, blen - (p - bp), "\r\n");
Daniel Veillardf012a642001-07-23 19:10:52 +00001485
Owen Taylor3473f882001-02-23 17:55:21 +00001486#ifdef DEBUG_HTTP
1487 xmlGenericError(xmlGenericErrorContext,
1488 "-> %s%s", proxy? "(Proxy) " : "", bp);
1489 if ((blen -= strlen(bp)+1) < 0)
1490 xmlGenericError(xmlGenericErrorContext,
1491 "ERROR: overflowed buffer by %d bytes\n", -blen);
1492#endif
1493 ctxt->outptr = ctxt->out = bp;
1494 ctxt->state = XML_NANO_HTTP_WRITE;
Daniel Veillardf012a642001-07-23 19:10:52 +00001495 blen = strlen( ctxt->out );
Daniel Veillardf012a642001-07-23 19:10:52 +00001496#ifdef DEBUG_HTTP
William M. Brack78637da2003-07-31 14:47:38 +00001497 xmt_bytes = xmlNanoHTTPSend(ctxt, ctxt->out, blen );
Daniel Veillardf012a642001-07-23 19:10:52 +00001498 if ( xmt_bytes != blen )
1499 xmlGenericError( xmlGenericErrorContext,
1500 "xmlNanoHTTPMethodRedir: Only %d of %d %s %s\n",
1501 xmt_bytes, blen,
1502 "bytes of HTTP headers sent to host",
1503 ctxt->hostname );
William M. Brack78637da2003-07-31 14:47:38 +00001504#else
1505 xmlNanoHTTPSend(ctxt, ctxt->out, blen );
Daniel Veillardf012a642001-07-23 19:10:52 +00001506#endif
1507
1508 if ( input != NULL ) {
William M. Brack78637da2003-07-31 14:47:38 +00001509#ifdef DEBUG_HTTP
Daniel Veillardf012a642001-07-23 19:10:52 +00001510 xmt_bytes = xmlNanoHTTPSend( ctxt, input, ilen );
1511
Daniel Veillardf012a642001-07-23 19:10:52 +00001512 if ( xmt_bytes != ilen )
1513 xmlGenericError( xmlGenericErrorContext,
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001514 "xmlNanoHTTPMethodRedir: Only %d of %d %s %s\n",
Daniel Veillardf012a642001-07-23 19:10:52 +00001515 xmt_bytes, ilen,
1516 "bytes of HTTP content sent to host",
1517 ctxt->hostname );
William M. Brack78637da2003-07-31 14:47:38 +00001518#else
1519 xmlNanoHTTPSend( ctxt, input, ilen );
Daniel Veillardf012a642001-07-23 19:10:52 +00001520#endif
1521 }
1522
Owen Taylor3473f882001-02-23 17:55:21 +00001523 ctxt->state = XML_NANO_HTTP_READ;
Owen Taylor3473f882001-02-23 17:55:21 +00001524
1525 while ((p = xmlNanoHTTPReadLine(ctxt)) != NULL) {
Daniel Veillard594e5df2009-09-07 14:58:47 +02001526 if (*p == 0) {
Owen Taylor3473f882001-02-23 17:55:21 +00001527 ctxt->content = ctxt->inrptr;
1528 xmlFree(p);
1529 break;
1530 }
1531 xmlNanoHTTPScanAnswer(ctxt, p);
1532
1533#ifdef DEBUG_HTTP
1534 xmlGenericError(xmlGenericErrorContext, "<- %s\n", p);
1535#endif
1536 xmlFree(p);
1537 }
1538
1539 if ((ctxt->location != NULL) && (ctxt->returnValue >= 300) &&
1540 (ctxt->returnValue < 400)) {
1541#ifdef DEBUG_HTTP
1542 xmlGenericError(xmlGenericErrorContext,
1543 "\nRedirect to: %s\n", ctxt->location);
1544#endif
Nick Wellnhofer629e47e2017-06-17 14:51:10 +02001545 while ( xmlNanoHTTPRecv(ctxt) > 0 )
1546 ;
Owen Taylor3473f882001-02-23 17:55:21 +00001547 if (nbRedirects < XML_NANO_HTTP_MAX_REDIR) {
1548 nbRedirects++;
Daniel Veillard9403a042001-05-28 11:00:53 +00001549 if (redirURL != NULL)
1550 xmlFree(redirURL);
Owen Taylor3473f882001-02-23 17:55:21 +00001551 redirURL = xmlMemStrdup(ctxt->location);
1552 xmlNanoHTTPFreeCtxt(ctxt);
1553 goto retry;
1554 }
1555 xmlNanoHTTPFreeCtxt(ctxt);
Daniel Veillard9403a042001-05-28 11:00:53 +00001556 if (redirURL != NULL) xmlFree(redirURL);
Owen Taylor3473f882001-02-23 17:55:21 +00001557#ifdef DEBUG_HTTP
1558 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardf012a642001-07-23 19:10:52 +00001559 "xmlNanoHTTPMethodRedir: Too many redirects, aborting ...\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001560#endif
1561 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001562 }
1563
1564 if (contentType != NULL) {
1565 if (ctxt->contentType != NULL)
1566 *contentType = xmlMemStrdup(ctxt->contentType);
1567 else
1568 *contentType = NULL;
1569 }
1570
Daniel Veillard9403a042001-05-28 11:00:53 +00001571 if ((redir != NULL) && (redirURL != NULL)) {
1572 *redir = redirURL;
1573 } else {
1574 if (redirURL != NULL)
1575 xmlFree(redirURL);
1576 if (redir != NULL)
1577 *redir = NULL;
1578 }
1579
Owen Taylor3473f882001-02-23 17:55:21 +00001580#ifdef DEBUG_HTTP
1581 if (ctxt->contentType != NULL)
1582 xmlGenericError(xmlGenericErrorContext,
1583 "\nCode %d, content-type '%s'\n\n",
1584 ctxt->returnValue, ctxt->contentType);
1585 else
1586 xmlGenericError(xmlGenericErrorContext,
1587 "\nCode %d, no content-type\n\n",
1588 ctxt->returnValue);
1589#endif
1590
1591 return((void *) ctxt);
1592}
1593
1594/**
Daniel Veillard9403a042001-05-28 11:00:53 +00001595 * xmlNanoHTTPMethod:
1596 * @URL: The URL to load
1597 * @method: the HTTP method to use
1598 * @input: the input string if any
1599 * @contentType: the Content-Type information IN and OUT
1600 * @headers: the extra headers
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001601 * @ilen: input length
Daniel Veillard9403a042001-05-28 11:00:53 +00001602 *
1603 * This function try to open a connection to the indicated resource
1604 * via HTTP using the given @method, adding the given extra headers
1605 * and the input buffer for the request content.
1606 *
1607 * Returns NULL in case of failure, otherwise a request handler.
1608 * The contentType, if provided must be freed by the caller
1609 */
1610
1611void*
1612xmlNanoHTTPMethod(const char *URL, const char *method, const char *input,
Daniel Veillardf012a642001-07-23 19:10:52 +00001613 char **contentType, const char *headers, int ilen) {
Daniel Veillard9403a042001-05-28 11:00:53 +00001614 return(xmlNanoHTTPMethodRedir(URL, method, input, contentType,
Daniel Veillardf012a642001-07-23 19:10:52 +00001615 NULL, headers, ilen));
Daniel Veillard9403a042001-05-28 11:00:53 +00001616}
1617
1618/**
Owen Taylor3473f882001-02-23 17:55:21 +00001619 * xmlNanoHTTPFetch:
1620 * @URL: The URL to load
1621 * @filename: the filename where the content should be saved
1622 * @contentType: if available the Content-Type information will be
1623 * returned at that location
1624 *
1625 * This function try to fetch the indicated resource via HTTP GET
1626 * and save it's content in the file.
1627 *
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001628 * Returns -1 in case of failure, 0 in case of success. The contentType,
Owen Taylor3473f882001-02-23 17:55:21 +00001629 * if provided must be freed by the caller
1630 */
1631int
1632xmlNanoHTTPFetch(const char *URL, const char *filename, char **contentType) {
Daniel Veillardf012a642001-07-23 19:10:52 +00001633 void *ctxt = NULL;
1634 char *buf = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001635 int fd;
1636 int len;
Stefan Kostdff8d0f2011-05-09 12:14:59 +03001637 int ret = 0;
1638
William M. Brack015ccb22005-02-13 08:18:52 +00001639 if (filename == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001640 ctxt = xmlNanoHTTPOpen(URL, contentType);
1641 if (ctxt == NULL) return(-1);
1642
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001643 if (!strcmp(filename, "-"))
Owen Taylor3473f882001-02-23 17:55:21 +00001644 fd = 0;
1645 else {
1646 fd = open(filename, O_CREAT | O_WRONLY, 00644);
1647 if (fd < 0) {
1648 xmlNanoHTTPClose(ctxt);
1649 if ((contentType != NULL) && (*contentType != NULL)) {
1650 xmlFree(*contentType);
1651 *contentType = NULL;
1652 }
1653 return(-1);
1654 }
1655 }
1656
Daniel Veillardf012a642001-07-23 19:10:52 +00001657 xmlNanoHTTPFetchContent( ctxt, &buf, &len );
1658 if ( len > 0 ) {
Stefan Kostdff8d0f2011-05-09 12:14:59 +03001659 if (write(fd, buf, len) == -1) {
1660 ret = -1;
1661 }
Owen Taylor3473f882001-02-23 17:55:21 +00001662 }
1663
1664 xmlNanoHTTPClose(ctxt);
1665 close(fd);
Stefan Kostdff8d0f2011-05-09 12:14:59 +03001666 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001667}
1668
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001669#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001670/**
1671 * xmlNanoHTTPSave:
1672 * @ctxt: the HTTP context
1673 * @filename: the filename where the content should be saved
1674 *
1675 * This function saves the output of the HTTP transaction to a file
1676 * It closes and free the context at the end
1677 *
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001678 * Returns -1 in case of failure, 0 in case of success.
Owen Taylor3473f882001-02-23 17:55:21 +00001679 */
1680int
1681xmlNanoHTTPSave(void *ctxt, const char *filename) {
Daniel Veillarde3924972001-07-25 20:25:21 +00001682 char *buf = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001683 int fd;
1684 int len;
Stefan Kostdff8d0f2011-05-09 12:14:59 +03001685 int ret = 0;
1686
William M. Brack015ccb22005-02-13 08:18:52 +00001687 if ((ctxt == NULL) || (filename == NULL)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001688
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001689 if (!strcmp(filename, "-"))
Owen Taylor3473f882001-02-23 17:55:21 +00001690 fd = 0;
1691 else {
Daniel Veillardcd2ebab2007-08-23 20:47:33 +00001692 fd = open(filename, O_CREAT | O_WRONLY, 0666);
Owen Taylor3473f882001-02-23 17:55:21 +00001693 if (fd < 0) {
1694 xmlNanoHTTPClose(ctxt);
1695 return(-1);
1696 }
1697 }
1698
Daniel Veillardf012a642001-07-23 19:10:52 +00001699 xmlNanoHTTPFetchContent( ctxt, &buf, &len );
1700 if ( len > 0 ) {
Stefan Kostdff8d0f2011-05-09 12:14:59 +03001701 if (write(fd, buf, len) == -1) {
1702 ret = -1;
1703 }
Owen Taylor3473f882001-02-23 17:55:21 +00001704 }
1705
1706 xmlNanoHTTPClose(ctxt);
William M. Brack20d82362004-03-17 08:44:46 +00001707 close(fd);
Stefan Kostdff8d0f2011-05-09 12:14:59 +03001708 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001709}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001710#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001711
1712/**
1713 * xmlNanoHTTPReturnCode:
1714 * @ctx: the HTTP context
1715 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001716 * Get the latest HTTP return code received
1717 *
Owen Taylor3473f882001-02-23 17:55:21 +00001718 * Returns the HTTP return code for the request.
1719 */
1720int
1721xmlNanoHTTPReturnCode(void *ctx) {
1722 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr) ctx;
1723
1724 if (ctxt == NULL) return(-1);
1725
1726 return(ctxt->returnValue);
1727}
1728
1729/**
1730 * xmlNanoHTTPAuthHeader:
1731 * @ctx: the HTTP context
1732 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001733 * Get the authentication header of an HTTP context
1734 *
Owen Taylor3473f882001-02-23 17:55:21 +00001735 * Returns the stashed value of the WWW-Authenticate or Proxy-Authenticate
1736 * header.
1737 */
1738const char *
1739xmlNanoHTTPAuthHeader(void *ctx) {
1740 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr) ctx;
1741
1742 if (ctxt == NULL) return(NULL);
1743
1744 return(ctxt->authHeader);
1745}
1746
Daniel Veillardf012a642001-07-23 19:10:52 +00001747/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00001748 * xmlNanoHTTPContentLength:
Daniel Veillardf012a642001-07-23 19:10:52 +00001749 * @ctx: the HTTP context
1750 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001751 * Provides the specified content length from the HTTP header.
1752 *
Daniel Veillardf012a642001-07-23 19:10:52 +00001753 * Return the specified content length from the HTTP header. Note that
1754 * a value of -1 indicates that the content length element was not included in
1755 * the response header.
1756 */
1757int
1758xmlNanoHTTPContentLength( void * ctx ) {
Daniel Veillard82cb3192003-10-29 13:39:15 +00001759 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr)ctx;
Daniel Veillardf012a642001-07-23 19:10:52 +00001760
1761 return ( ( ctxt == NULL ) ? -1 : ctxt->ContentLength );
1762}
1763
1764/**
Daniel Veillard847332a2003-10-18 11:29:40 +00001765 * xmlNanoHTTPRedir:
1766 * @ctx: the HTTP context
1767 *
1768 * Provides the specified redirection URL if available from the HTTP header.
1769 *
1770 * Return the specified redirection URL or NULL if not redirected.
1771 */
1772const char *
1773xmlNanoHTTPRedir( void * ctx ) {
Daniel Veillard82cb3192003-10-29 13:39:15 +00001774 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr)ctx;
Daniel Veillard847332a2003-10-18 11:29:40 +00001775
1776 return ( ( ctxt == NULL ) ? NULL : ctxt->location );
1777}
1778
1779/**
1780 * xmlNanoHTTPEncoding:
1781 * @ctx: the HTTP context
1782 *
1783 * Provides the specified encoding if specified in the HTTP headers.
1784 *
1785 * Return the specified encoding or NULL if not available
1786 */
1787const char *
1788xmlNanoHTTPEncoding( void * ctx ) {
Daniel Veillard82cb3192003-10-29 13:39:15 +00001789 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr)ctx;
Daniel Veillard847332a2003-10-18 11:29:40 +00001790
1791 return ( ( ctxt == NULL ) ? NULL : ctxt->encoding );
1792}
1793
1794/**
Daniel Veillarda840b692003-10-19 13:35:37 +00001795 * xmlNanoHTTPMimeType:
1796 * @ctx: the HTTP context
1797 *
1798 * Provides the specified Mime-Type if specified in the HTTP headers.
1799 *
1800 * Return the specified Mime-Type or NULL if not available
1801 */
1802const char *
1803xmlNanoHTTPMimeType( void * ctx ) {
Daniel Veillard82cb3192003-10-29 13:39:15 +00001804 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr)ctx;
Daniel Veillarda840b692003-10-19 13:35:37 +00001805
1806 return ( ( ctxt == NULL ) ? NULL : ctxt->mimeType );
1807}
1808
1809/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00001810 * xmlNanoHTTPFetchContent:
Daniel Veillardf012a642001-07-23 19:10:52 +00001811 * @ctx: the HTTP context
1812 * @ptr: pointer to set to the content buffer.
1813 * @len: integer pointer to hold the length of the content
1814 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001815 * Check if all the content was read
1816 *
Daniel Veillardf012a642001-07-23 19:10:52 +00001817 * Returns 0 if all the content was read and available, returns
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001818 * -1 if received content length was less than specified or an error
Daniel Veillardf012a642001-07-23 19:10:52 +00001819 * occurred.
1820 */
Daniel Veillarda2351322004-06-27 12:08:10 +00001821static int
Daniel Veillardf012a642001-07-23 19:10:52 +00001822xmlNanoHTTPFetchContent( void * ctx, char ** ptr, int * len ) {
Daniel Veillard82cb3192003-10-29 13:39:15 +00001823 xmlNanoHTTPCtxtPtr ctxt = (xmlNanoHTTPCtxtPtr)ctx;
Daniel Veillardf012a642001-07-23 19:10:52 +00001824
1825 int rc = 0;
1826 int cur_lgth;
1827 int rcvd_lgth;
1828 int dummy_int;
1829 char * dummy_ptr = NULL;
1830
1831 /* Dummy up return input parameters if not provided */
1832
1833 if ( len == NULL )
1834 len = &dummy_int;
1835
1836 if ( ptr == NULL )
1837 ptr = &dummy_ptr;
1838
1839 /* But can't work without the context pointer */
1840
1841 if ( ( ctxt == NULL ) || ( ctxt->content == NULL ) ) {
1842 *len = 0;
1843 *ptr = NULL;
1844 return ( -1 );
1845 }
1846
1847 rcvd_lgth = ctxt->inptr - ctxt->content;
1848
1849 while ( (cur_lgth = xmlNanoHTTPRecv( ctxt )) > 0 ) {
1850
1851 rcvd_lgth += cur_lgth;
1852 if ( (ctxt->ContentLength > 0) && (rcvd_lgth >= ctxt->ContentLength) )
1853 break;
1854 }
1855
1856 *ptr = ctxt->content;
1857 *len = rcvd_lgth;
1858
1859 if ( ( ctxt->ContentLength > 0 ) && ( rcvd_lgth < ctxt->ContentLength ) )
1860 rc = -1;
1861 else if ( rcvd_lgth == 0 )
1862 rc = -1;
1863
1864 return ( rc );
1865}
1866
Owen Taylor3473f882001-02-23 17:55:21 +00001867#ifdef STANDALONE
1868int main(int argc, char **argv) {
1869 char *contentType = NULL;
1870
1871 if (argv[1] != NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001872 if (argv[2] != NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00001873 xmlNanoHTTPFetch(argv[1], argv[2], &contentType);
1874 else
1875 xmlNanoHTTPFetch(argv[1], "-", &contentType);
1876 if (contentType != NULL) xmlFree(contentType);
1877 } else {
1878 xmlGenericError(xmlGenericErrorContext,
1879 "%s: minimal HTTP GET implementation\n", argv[0]);
1880 xmlGenericError(xmlGenericErrorContext,
1881 "\tusage %s [ URL [ filename ] ]\n", argv[0]);
1882 }
1883 xmlNanoHTTPCleanup();
1884 xmlMemoryDump();
1885 return(0);
1886}
1887#endif /* STANDALONE */
1888#else /* !LIBXML_HTTP_ENABLED */
1889#ifdef STANDALONE
1890#include <stdio.h>
1891int main(int argc, char **argv) {
1892 xmlGenericError(xmlGenericErrorContext,
1893 "%s : HTTP support not compiled in\n", argv[0]);
1894 return(0);
1895}
1896#endif /* STANDALONE */
1897#endif /* LIBXML_HTTP_ENABLED */
Daniel Veillard5d4644e2005-04-01 13:11:58 +00001898#define bottom_nanohttp
1899#include "elfgcchack.h"