blob: 970fa6e84b03f00862a0bb8adbb51fb117da9359 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * xmlIO.c : implementation of the I/O interfaces used by the parser
3 *
4 * See Copyright for the status of this software.
5 *
Daniel Veillard344cee72001-08-20 00:08:40 +00006 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +00007 *
8 * 14 Nov 2000 ht - for VMS, truncated name of long functions to under 32 char
9 */
10
Daniel Veillard34ce8be2002-03-18 19:37:11 +000011#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000012#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000013
Owen Taylor3473f882001-02-23 17:55:21 +000014#include <string.h>
Daniel Veillard92727042002-09-17 17:59:20 +000015#ifdef HAVE_ERRNO_H
Owen Taylor3473f882001-02-23 17:55:21 +000016#include <errno.h>
Daniel Veillard92727042002-09-17 17:59:20 +000017#endif
18
Owen Taylor3473f882001-02-23 17:55:21 +000019
20#ifdef HAVE_SYS_TYPES_H
21#include <sys/types.h>
22#endif
23#ifdef HAVE_SYS_STAT_H
24#include <sys/stat.h>
25#endif
26#ifdef HAVE_FCNTL_H
27#include <fcntl.h>
28#endif
29#ifdef HAVE_UNISTD_H
30#include <unistd.h>
31#endif
32#ifdef HAVE_STDLIB_H
33#include <stdlib.h>
34#endif
35#ifdef HAVE_ZLIB_H
36#include <zlib.h>
37#endif
38
39/* Figure a portable way to know if a file is a directory. */
40#ifndef HAVE_STAT
41# ifdef HAVE__STAT
Daniel Veillard50f34372001-08-03 12:06:36 +000042 /* MS C library seems to define stat and _stat. The definition
43 is identical. Still, mapping them to each other causes a warning. */
44# ifndef _MSC_VER
45# define stat(x,y) _stat(x,y)
46# endif
Owen Taylor3473f882001-02-23 17:55:21 +000047# define HAVE_STAT
48# endif
49#endif
50#ifdef HAVE_STAT
51# ifndef S_ISDIR
52# ifdef _S_ISDIR
53# define S_ISDIR(x) _S_ISDIR(x)
54# else
55# ifdef S_IFDIR
56# ifndef S_IFMT
57# ifdef _S_IFMT
58# define S_IFMT _S_IFMT
59# endif
60# endif
61# ifdef S_IFMT
62# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
63# endif
64# endif
65# endif
66# endif
67#endif
68
69#include <libxml/xmlmemory.h>
70#include <libxml/parser.h>
71#include <libxml/parserInternals.h>
72#include <libxml/xmlIO.h>
Daniel Veillard388236f2001-07-08 18:35:48 +000073#include <libxml/uri.h>
Owen Taylor3473f882001-02-23 17:55:21 +000074#include <libxml/nanohttp.h>
75#include <libxml/nanoftp.h>
76#include <libxml/xmlerror.h>
Daniel Veillard7d6fd212001-05-10 15:34:11 +000077#ifdef LIBXML_CATALOG_ENABLED
78#include <libxml/catalog.h>
79#endif
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000080#include <libxml/globals.h>
Owen Taylor3473f882001-02-23 17:55:21 +000081
Daniel Veillardf012a642001-07-23 19:10:52 +000082/* #define VERBOSE_FAILURE */
Daniel Veillard1fd36d22001-07-04 22:54:28 +000083/* #define DEBUG_EXTERNAL_ENTITIES */
Owen Taylor3473f882001-02-23 17:55:21 +000084/* #define DEBUG_INPUT */
85
86#ifdef DEBUG_INPUT
87#define MINLEN 40
88#else
89#define MINLEN 4000
90#endif
91
92/*
93 * Input I/O callback sets
94 */
95typedef struct _xmlInputCallback {
96 xmlInputMatchCallback matchcallback;
97 xmlInputOpenCallback opencallback;
98 xmlInputReadCallback readcallback;
99 xmlInputCloseCallback closecallback;
100} xmlInputCallback;
101
102#define MAX_INPUT_CALLBACK 15
103
Daniel Veillard22090732001-07-16 00:06:07 +0000104static xmlInputCallback xmlInputCallbackTable[MAX_INPUT_CALLBACK];
105static int xmlInputCallbackNr = 0;
106static int xmlInputCallbackInitialized = 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000107
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000108#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000109/*
110 * Output I/O callback sets
111 */
112typedef struct _xmlOutputCallback {
113 xmlOutputMatchCallback matchcallback;
114 xmlOutputOpenCallback opencallback;
115 xmlOutputWriteCallback writecallback;
116 xmlOutputCloseCallback closecallback;
117} xmlOutputCallback;
118
119#define MAX_OUTPUT_CALLBACK 15
120
Daniel Veillard22090732001-07-16 00:06:07 +0000121static xmlOutputCallback xmlOutputCallbackTable[MAX_OUTPUT_CALLBACK];
122static int xmlOutputCallbackNr = 0;
123static int xmlOutputCallbackInitialized = 0;
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000124#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000125
Daniel Veillard05d987b2003-10-08 11:54:57 +0000126/************************************************************************
127 * *
128 * Tree memory error handler *
129 * *
130 ************************************************************************/
Daniel Veillardf4862f02002-09-10 11:13:43 +0000131
Daniel Veillard05d987b2003-10-08 11:54:57 +0000132static const char *IOerr[] = {
Daniel Veillarda8856222003-10-08 19:26:03 +0000133 "Unknown IO error", /* UNKNOWN */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000134 "Permission denied", /* EACCES */
135 "Resource temporarily unavailable",/* EAGAIN */
136 "Bad file descriptor", /* EBADF */
137 "Bad message", /* EBADMSG */
138 "Resource busy", /* EBUSY */
139 "Operation canceled", /* ECANCELED */
140 "No child processes", /* ECHILD */
141 "Resource deadlock avoided",/* EDEADLK */
142 "Domain error", /* EDOM */
143 "File exists", /* EEXIST */
144 "Bad address", /* EFAULT */
145 "File too large", /* EFBIG */
146 "Operation in progress", /* EINPROGRESS */
147 "Interrupted function call",/* EINTR */
148 "Invalid argument", /* EINVAL */
149 "Input/output error", /* EIO */
150 "Is a directory", /* EISDIR */
151 "Too many open files", /* EMFILE */
152 "Too many links", /* EMLINK */
153 "Inappropriate message buffer length",/* EMSGSIZE */
154 "Filename too long", /* ENAMETOOLONG */
155 "Too many open files in system",/* ENFILE */
156 "No such device", /* ENODEV */
157 "No such file or directory",/* ENOENT */
158 "Exec format error", /* ENOEXEC */
159 "No locks available", /* ENOLCK */
160 "Not enough space", /* ENOMEM */
161 "No space left on device", /* ENOSPC */
162 "Function not implemented", /* ENOSYS */
163 "Not a directory", /* ENOTDIR */
164 "Directory not empty", /* ENOTEMPTY */
165 "Not supported", /* ENOTSUP */
166 "Inappropriate I/O control operation",/* ENOTTY */
167 "No such device or address",/* ENXIO */
168 "Operation not permitted", /* EPERM */
169 "Broken pipe", /* EPIPE */
170 "Result too large", /* ERANGE */
171 "Read-only file system", /* EROFS */
172 "Invalid seek", /* ESPIPE */
173 "No such process", /* ESRCH */
174 "Operation timed out", /* ETIMEDOUT */
175 "Improper link", /* EXDEV */
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000176 "Attempt to load network entity %s", /* XML_IO_NETWORK_ATTEMPT */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000177 "encoder error", /* XML_IO_ENCODER */
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000178 "flush error",
179 "write error",
180 "no input",
181 "buffer full",
182 "loading error",
183 "not a socket", /* ENOTSOCK */
184 "already connected", /* EISCONN */
185 "connection refuxed", /* ECONNREFUSED */
186 "unreachable network", /* ENETUNREACH */
187 "adddress in use", /* EADDRINUSE */
188 "already in use", /* EALREADY */
189 "unknown address familly", /* EAFNOSUPPORT */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000190};
191
192/**
193 * xmlIOErrMemory:
194 * @extra: extra informations
195 *
196 * Handle an out of memory condition
197 */
198static void
199xmlIOErrMemory(const char *extra)
200{
201 __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra);
202}
203
204/**
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000205 * __xmlIOErr:
Daniel Veillard05d987b2003-10-08 11:54:57 +0000206 * @code: the error number
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000207 * @
Daniel Veillard05d987b2003-10-08 11:54:57 +0000208 * @extra: extra informations
209 *
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000210 * Handle an I/O error
Daniel Veillard05d987b2003-10-08 11:54:57 +0000211 */
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000212void
213__xmlIOErr(int domain, int code, const char *extra)
Daniel Veillard05d987b2003-10-08 11:54:57 +0000214{
215 unsigned int idx;
216
217 if (code == 0) {
218#ifdef HAVE_ERRNO_H
219 if (errno == 0) code = 0;
220#ifdef EACCES
221 else if (errno == EACCES) code = XML_IO_EACCES;
222#endif
223#ifdef EAGAIN
224 else if (errno == EAGAIN) code = XML_IO_EAGAIN;
225#endif
226#ifdef EBADF
227 else if (errno == EBADF) code = XML_IO_EBADF;
228#endif
229#ifdef EBADMSG
230 else if (errno == EBADMSG) code = XML_IO_EBADMSG;
231#endif
232#ifdef EBUSY
233 else if (errno == EBUSY) code = XML_IO_EBUSY;
234#endif
235#ifdef ECANCELED
236 else if (errno == ECANCELED) code = XML_IO_ECANCELED;
237#endif
238#ifdef ECHILD
239 else if (errno == ECHILD) code = XML_IO_ECHILD;
240#endif
241#ifdef EDEADLK
242 else if (errno == EDEADLK) code = XML_IO_EDEADLK;
243#endif
244#ifdef EDOM
245 else if (errno == EDOM) code = XML_IO_EDOM;
246#endif
247#ifdef EEXIST
248 else if (errno == EEXIST) code = XML_IO_EEXIST;
249#endif
250#ifdef EFAULT
251 else if (errno == EFAULT) code = XML_IO_EFAULT;
252#endif
253#ifdef EFBIG
254 else if (errno == EFBIG) code = XML_IO_EFBIG;
255#endif
256#ifdef EINPROGRESS
257 else if (errno == EINPROGRESS) code = XML_IO_EINPROGRESS;
258#endif
259#ifdef EINTR
260 else if (errno == EINTR) code = XML_IO_EINTR;
261#endif
262#ifdef EINVAL
263 else if (errno == EINVAL) code = XML_IO_EINVAL;
264#endif
265#ifdef EIO
266 else if (errno == EIO) code = XML_IO_EIO;
267#endif
268#ifdef EISDIR
269 else if (errno == EISDIR) code = XML_IO_EISDIR;
270#endif
271#ifdef EMFILE
272 else if (errno == EMFILE) code = XML_IO_EMFILE;
273#endif
274#ifdef EMLINK
275 else if (errno == EMLINK) code = XML_IO_EMLINK;
276#endif
277#ifdef EMSGSIZE
278 else if (errno == EMSGSIZE) code = XML_IO_EMSGSIZE;
279#endif
280#ifdef ENAMETOOLONG
281 else if (errno == ENAMETOOLONG) code = XML_IO_ENAMETOOLONG;
282#endif
283#ifdef ENFILE
284 else if (errno == ENFILE) code = XML_IO_ENFILE;
285#endif
286#ifdef ENODEV
287 else if (errno == ENODEV) code = XML_IO_ENODEV;
288#endif
289#ifdef ENOENT
290 else if (errno == ENOENT) code = XML_IO_ENOENT;
291#endif
292#ifdef ENOEXEC
293 else if (errno == ENOEXEC) code = XML_IO_ENOEXEC;
294#endif
295#ifdef ENOLCK
296 else if (errno == ENOLCK) code = XML_IO_ENOLCK;
297#endif
298#ifdef ENOMEM
299 else if (errno == ENOMEM) code = XML_IO_ENOMEM;
300#endif
301#ifdef ENOSPC
302 else if (errno == ENOSPC) code = XML_IO_ENOSPC;
303#endif
304#ifdef ENOSYS
305 else if (errno == ENOSYS) code = XML_IO_ENOSYS;
306#endif
307#ifdef ENOTDIR
308 else if (errno == ENOTDIR) code = XML_IO_ENOTDIR;
309#endif
310#ifdef ENOTEMPTY
311 else if (errno == ENOTEMPTY) code = XML_IO_ENOTEMPTY;
312#endif
313#ifdef ENOTSUP
314 else if (errno == ENOTSUP) code = XML_IO_ENOTSUP;
315#endif
316#ifdef ENOTTY
317 else if (errno == ENOTTY) code = XML_IO_ENOTTY;
318#endif
319#ifdef ENXIO
320 else if (errno == ENXIO) code = XML_IO_ENXIO;
321#endif
322#ifdef EPERM
323 else if (errno == EPERM) code = XML_IO_EPERM;
324#endif
325#ifdef EPIPE
326 else if (errno == EPIPE) code = XML_IO_EPIPE;
327#endif
328#ifdef ERANGE
329 else if (errno == ERANGE) code = XML_IO_ERANGE;
330#endif
331#ifdef EROFS
332 else if (errno == EROFS) code = XML_IO_EROFS;
333#endif
334#ifdef ESPIPE
335 else if (errno == ESPIPE) code = XML_IO_ESPIPE;
336#endif
337#ifdef ESRCH
338 else if (errno == ESRCH) code = XML_IO_ESRCH;
339#endif
340#ifdef ETIMEDOUT
341 else if (errno == ETIMEDOUT) code = XML_IO_ETIMEDOUT;
342#endif
343#ifdef EXDEV
344 else if (errno == EXDEV) code = XML_IO_EXDEV;
345#endif
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000346#ifdef ENOTSOCK
347 else if (errno == ENOTSOCK) code = XML_IO_ENOTSOCK;
348#endif
349#ifdef EISCONN
350 else if (errno == EISCONN) code = XML_IO_EISCONN;
351#endif
352#ifdef ECONNREFUSED
353 else if (errno == ECONNREFUSED) code = XML_IO_ECONNREFUSED;
354#endif
355#ifdef ETIMEDOUT
356 else if (errno == ETIMEDOUT) code = XML_IO_ETIMEDOUT;
357#endif
358#ifdef ENETUNREACH
359 else if (errno == ENETUNREACH) code = XML_IO_ENETUNREACH;
360#endif
361#ifdef EADDRINUSE
362 else if (errno == EADDRINUSE) code = XML_IO_EADDRINUSE;
363#endif
364#ifdef EINPROGRESS
365 else if (errno == EINPROGRESS) code = XML_IO_EINPROGRESS;
366#endif
367#ifdef EALREADY
368 else if (errno == EALREADY) code = XML_IO_EALREADY;
369#endif
370#ifdef EAFNOSUPPORT
371 else if (errno == EAFNOSUPPORT) code = XML_IO_EAFNOSUPPORT;
372#endif
Daniel Veillard05d987b2003-10-08 11:54:57 +0000373 else code = XML_IO_UNKNOWN;
374#endif /* HAVE_ERRNO_H */
375 }
376 idx = 0;
377 if (code >= XML_IO_UNKNOWN) idx = code - XML_IO_UNKNOWN;
378 if (idx >= (sizeof(IOerr) / sizeof(IOerr[0]))) idx = 0;
379
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000380 __xmlSimpleError(domain, code, NULL, IOerr[idx], extra);
381}
382
383/**
384 * xmlIOErr:
385 * @code: the error number
386 * @extra: extra informations
387 *
388 * Handle an I/O error
389 */
390static void
391xmlIOErr(int code, const char *extra)
392{
393 __xmlIOErr(XML_FROM_IO, code, extra);
Daniel Veillard05d987b2003-10-08 11:54:57 +0000394}
395
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000396/**
Daniel Veillarde8039df2003-10-27 11:25:13 +0000397 * __xmlLoaderErr:
398 * @ctx: the parser context
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000399 * @extra: extra informations
400 *
401 * Handle a resource access error
402 */
Daniel Veillarde8039df2003-10-27 11:25:13 +0000403void
404__xmlLoaderErr(void *ctx, const char *msg, const char *filename)
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000405{
Daniel Veillarde8039df2003-10-27 11:25:13 +0000406 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000407 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000408 xmlGenericErrorFunc channel = NULL;
409 void *data = NULL;
410 xmlErrorLevel level = XML_ERR_ERROR;
411
Daniel Veillard157fee02003-10-31 10:36:03 +0000412 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
413 (ctxt->instate == XML_PARSER_EOF))
414 return;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000415 if ((ctxt != NULL) && (ctxt->sax != NULL)) {
416 if (ctxt->validate) {
417 channel = ctxt->sax->error;
418 level = XML_ERR_ERROR;
419 } else {
420 channel = ctxt->sax->warning;
421 level = XML_ERR_WARNING;
422 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000423 schannel = ctxt->sax->serror;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000424 data = ctxt->userData;
425 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000426 __xmlRaiseError(schannel, channel, data, ctxt, NULL, XML_FROM_IO,
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000427 XML_IO_LOAD_ERROR, level, NULL, 0,
428 filename, NULL, NULL, 0, 0,
429 msg, filename);
430
431}
432
Daniel Veillard05d987b2003-10-08 11:54:57 +0000433/************************************************************************
434 * *
435 * Tree memory error handler *
436 * *
437 ************************************************************************/
Daniel Veillardf4862f02002-09-10 11:13:43 +0000438/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000439 * xmlNormalizeWindowsPath:
Daniel Veillard33300b42003-04-17 09:09:19 +0000440 * @path: the input file path
Daniel Veillardf4862f02002-09-10 11:13:43 +0000441 *
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +0000442 * This function is obsolete. Please see xmlURIFromPath in uri.c for
443 * a better solution.
Daniel Veillard33300b42003-04-17 09:09:19 +0000444 *
445 * Returns a canonicalized version of the path
Daniel Veillardf4862f02002-09-10 11:13:43 +0000446 */
447xmlChar *
448xmlNormalizeWindowsPath(const xmlChar *path)
449{
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +0000450 return xmlCanonicPath(path);
Daniel Veillardf4862f02002-09-10 11:13:43 +0000451}
452
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000453/**
454 * xmlCleanupInputCallbacks:
455 *
456 * clears the entire input callback table. this includes the
457 * compiled-in I/O.
458 */
459void
460xmlCleanupInputCallbacks(void)
461{
462 int i;
463
464 if (!xmlInputCallbackInitialized)
465 return;
466
Daniel Veillard107ccaa2001-11-27 16:23:50 +0000467 for (i = xmlInputCallbackNr - 1; i >= 0; i--) {
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000468 xmlInputCallbackTable[i].matchcallback = NULL;
469 xmlInputCallbackTable[i].opencallback = NULL;
470 xmlInputCallbackTable[i].readcallback = NULL;
471 xmlInputCallbackTable[i].closecallback = NULL;
472 }
473
474 xmlInputCallbackNr = 0;
Aleksey Sanin9c45ba82002-06-06 21:46:13 +0000475 xmlInputCallbackInitialized = 0;
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000476}
477
Daniel Veillardaecc0dc2004-05-08 02:32:07 +0000478/**
479 * xmlPopInputCallback:
480 *
481 * Clear the top input callback from the input stack. this includes the
482 * compiled-in I/O.
483 *
484 * Returns the number of input callback registered or -1 in case of error.
485 */
486int
487xmlPopInputCallbacks(void)
488{
489 if (!xmlInputCallbackInitialized)
490 return(-1);
491
492 if (xmlInputCallbackNr <= 0)
493 return(-1);
494
495 xmlInputCallbackNr--;
496 xmlInputCallbackTable[xmlInputCallbackNr].matchcallback = NULL;
497 xmlInputCallbackTable[xmlInputCallbackNr].opencallback = NULL;
498 xmlInputCallbackTable[xmlInputCallbackNr].readcallback = NULL;
499 xmlInputCallbackTable[xmlInputCallbackNr].closecallback = NULL;
500
501 return(xmlInputCallbackNr);
502}
503
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000504#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000505/**
506 * xmlCleanupOutputCallbacks:
507 *
508 * clears the entire output callback table. this includes the
509 * compiled-in I/O callbacks.
510 */
511void
512xmlCleanupOutputCallbacks(void)
513{
514 int i;
515
516 if (!xmlOutputCallbackInitialized)
517 return;
518
Daniel Veillard107ccaa2001-11-27 16:23:50 +0000519 for (i = xmlOutputCallbackNr - 1; i >= 0; i--) {
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000520 xmlOutputCallbackTable[i].matchcallback = NULL;
521 xmlOutputCallbackTable[i].opencallback = NULL;
522 xmlOutputCallbackTable[i].writecallback = NULL;
523 xmlOutputCallbackTable[i].closecallback = NULL;
524 }
525
526 xmlOutputCallbackNr = 0;
Aleksey Sanin9c45ba82002-06-06 21:46:13 +0000527 xmlOutputCallbackInitialized = 0;
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000528}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000529#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000530
Owen Taylor3473f882001-02-23 17:55:21 +0000531/************************************************************************
532 * *
533 * Standard I/O for file accesses *
534 * *
535 ************************************************************************/
536
537/**
Daniel Veillarda9b66d02002-12-11 14:23:49 +0000538 * xmlCheckFilename:
Owen Taylor3473f882001-02-23 17:55:21 +0000539 * @path: the path to check
540 *
541 * function checks to see if @path is a valid source
542 * (file, socket...) for XML.
543 *
544 * if stat is not available on the target machine,
545 * returns 1. if stat fails, returns 0 (if calling
546 * stat on the filename fails, it can't be right).
547 * if stat succeeds and the file is a directory,
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000548 * returns 2. otherwise returns 1.
Owen Taylor3473f882001-02-23 17:55:21 +0000549 */
550
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000551int
Owen Taylor3473f882001-02-23 17:55:21 +0000552xmlCheckFilename (const char *path)
553{
554#ifdef HAVE_STAT
Owen Taylor3473f882001-02-23 17:55:21 +0000555 struct stat stat_buffer;
556
557 if (stat(path, &stat_buffer) == -1)
558 return 0;
559
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000560#ifdef S_ISDIR
Owen Taylor3473f882001-02-23 17:55:21 +0000561 if (S_ISDIR(stat_buffer.st_mode)) {
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000562 return 2;
Owen Taylor3473f882001-02-23 17:55:21 +0000563 }
Owen Taylor3473f882001-02-23 17:55:21 +0000564#endif
565#endif
566 return 1;
567}
568
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000569static int
Owen Taylor3473f882001-02-23 17:55:21 +0000570xmlNop(void) {
571 return(0);
572}
573
574/**
Owen Taylor3473f882001-02-23 17:55:21 +0000575 * xmlFdRead:
576 * @context: the I/O context
577 * @buffer: where to drop data
578 * @len: number of bytes to read
579 *
580 * Read @len bytes to @buffer from the I/O channel.
581 *
582 * Returns the number of bytes written
583 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000584static int
Owen Taylor3473f882001-02-23 17:55:21 +0000585xmlFdRead (void * context, char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000586 int ret;
587
588 ret = read((int) (long) context, &buffer[0], len);
589 if (ret < 0) xmlIOErr(0, "read()");
590 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000591}
592
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000593#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000594/**
595 * xmlFdWrite:
596 * @context: the I/O context
597 * @buffer: where to get data
598 * @len: number of bytes to write
599 *
600 * Write @len bytes from @buffer to the I/O channel.
601 *
602 * Returns the number of bytes written
603 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000604static int
Owen Taylor3473f882001-02-23 17:55:21 +0000605xmlFdWrite (void * context, const char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000606 int ret;
607
608 ret = write((int) (long) context, &buffer[0], len);
609 if (ret < 0) xmlIOErr(0, "write()");
610 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000611}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000612#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000613
614/**
615 * xmlFdClose:
616 * @context: the I/O context
617 *
618 * Close an I/O channel
Daniel Veillardf012a642001-07-23 19:10:52 +0000619 *
620 * Returns 0 in case of success and error code otherwise
Owen Taylor3473f882001-02-23 17:55:21 +0000621 */
Daniel Veillardf012a642001-07-23 19:10:52 +0000622static int
Owen Taylor3473f882001-02-23 17:55:21 +0000623xmlFdClose (void * context) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000624 int ret;
625 ret = close((int) (long) context);
626 if (ret < 0) xmlIOErr(0, "close()");
627 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000628}
629
630/**
631 * xmlFileMatch:
632 * @filename: the URI for matching
633 *
634 * input from FILE *
635 *
636 * Returns 1 if matches, 0 otherwise
637 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000638int
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000639xmlFileMatch (const char *filename ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +0000640 return(1);
641}
642
643/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000644 * xmlFileOpen_real:
Owen Taylor3473f882001-02-23 17:55:21 +0000645 * @filename: the URI for matching
646 *
647 * input from FILE *, supports compressed input
648 * if @filename is " " then the standard input is used
649 *
650 * Returns an I/O context or NULL in case of error
651 */
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000652static void *
653xmlFileOpen_real (const char *filename) {
Owen Taylor3473f882001-02-23 17:55:21 +0000654 const char *path = NULL;
655 FILE *fd;
656
657 if (!strcmp(filename, "-")) {
658 fd = stdin;
659 return((void *) fd);
660 }
661
Daniel Veillardf4862f02002-09-10 11:13:43 +0000662 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000663#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardb212bbb2002-08-25 14:39:16 +0000664 path = &filename[17];
665#else
Owen Taylor3473f882001-02-23 17:55:21 +0000666 path = &filename[16];
Daniel Veillardb212bbb2002-08-25 14:39:16 +0000667#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000668 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000669#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000670 path = &filename[8];
671#else
Daniel Veillard3c2758d2001-05-31 18:43:43 +0000672 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000673#endif
674 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000675 path = filename;
676
677 if (path == NULL)
678 return(NULL);
679 if (!xmlCheckFilename(path))
680 return(NULL);
681
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000682#if defined(WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)
Owen Taylor3473f882001-02-23 17:55:21 +0000683 fd = fopen(path, "rb");
684#else
685 fd = fopen(path, "r");
686#endif /* WIN32 */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000687 if (fd == NULL) xmlIOErr(0, path);
Owen Taylor3473f882001-02-23 17:55:21 +0000688 return((void *) fd);
689}
690
691/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000692 * xmlFileOpen:
693 * @filename: the URI for matching
694 *
695 * Wrapper around xmlFileOpen_real that try it with an unescaped
696 * version of @filename, if this fails fallback to @filename
Daniel Veillard71531f32003-02-05 13:19:53 +0000697 *
698 * Returns a handler or NULL in case or failure
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000699 */
700void *
701xmlFileOpen (const char *filename) {
702 char *unescaped;
703 void *retval;
704 unescaped = xmlURIUnescapeString(filename, 0, NULL);
705 if (unescaped != NULL) {
706 retval = xmlFileOpen_real(unescaped);
707 } else {
708 retval = xmlFileOpen_real(filename);
709 }
710 xmlFree(unescaped);
711 return retval;
712}
713
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000714#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000715/**
Owen Taylor3473f882001-02-23 17:55:21 +0000716 * xmlFileOpenW:
717 * @filename: the URI for matching
718 *
719 * output to from FILE *,
720 * if @filename is "-" then the standard output is used
721 *
722 * Returns an I/O context or NULL in case of error
723 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000724static void *
Owen Taylor3473f882001-02-23 17:55:21 +0000725xmlFileOpenW (const char *filename) {
726 const char *path = NULL;
727 FILE *fd;
728
729 if (!strcmp(filename, "-")) {
730 fd = stdout;
731 return((void *) fd);
732 }
733
Daniel Veillardf4862f02002-09-10 11:13:43 +0000734 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000735#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +0000736 path = &filename[17];
737#else
Owen Taylor3473f882001-02-23 17:55:21 +0000738 path = &filename[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +0000739#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000740 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000741#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000742 path = &filename[8];
743#else
Daniel Veillard3c2758d2001-05-31 18:43:43 +0000744 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000745#endif
746 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000747 path = filename;
748
749 if (path == NULL)
750 return(NULL);
751
Daniel Veillardcbbd78d2003-07-20 15:21:30 +0000752 fd = fopen(path, "wb");
Daniel Veillard05d987b2003-10-08 11:54:57 +0000753 if (fd == NULL) xmlIOErr(0, path);
Owen Taylor3473f882001-02-23 17:55:21 +0000754 return((void *) fd);
755}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000756#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000757
758/**
759 * xmlFileRead:
760 * @context: the I/O context
761 * @buffer: where to drop data
762 * @len: number of bytes to write
763 *
764 * Read @len bytes to @buffer from the I/O channel.
765 *
766 * Returns the number of bytes written
767 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000768int
Owen Taylor3473f882001-02-23 17:55:21 +0000769xmlFileRead (void * context, char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000770 int ret;
771 ret = fread(&buffer[0], 1, len, (FILE *) context);
772 if (ret < 0) xmlIOErr(0, "fread()");
773 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000774}
775
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000776#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000777/**
778 * xmlFileWrite:
779 * @context: the I/O context
780 * @buffer: where to drop data
781 * @len: number of bytes to write
782 *
783 * Write @len bytes from @buffer to the I/O channel.
784 *
785 * Returns the number of bytes written
786 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000787static int
Owen Taylor3473f882001-02-23 17:55:21 +0000788xmlFileWrite (void * context, const char * buffer, int len) {
Daniel Veillard4a6d39b2002-12-17 18:33:01 +0000789 int items;
790
791 items = fwrite(&buffer[0], len, 1, (FILE *) context);
Daniel Veillard97bf4d02003-10-08 18:58:28 +0000792 if ((items == 0) && (ferror((FILE *) context))) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000793 xmlIOErr(0, "fwrite()");
Daniel Veillard97bf4d02003-10-08 18:58:28 +0000794 return(-1);
795 }
Daniel Veillard4a6d39b2002-12-17 18:33:01 +0000796 return(items * len);
Owen Taylor3473f882001-02-23 17:55:21 +0000797}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000798#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000799
800/**
801 * xmlFileClose:
802 * @context: the I/O context
803 *
804 * Close an I/O channel
Daniel Veillarda9b66d02002-12-11 14:23:49 +0000805 *
806 * Returns 0 or -1 in case of error
Owen Taylor3473f882001-02-23 17:55:21 +0000807 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000808int
Owen Taylor3473f882001-02-23 17:55:21 +0000809xmlFileClose (void * context) {
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000810 FILE *fil;
Daniel Veillard05d987b2003-10-08 11:54:57 +0000811 int ret;
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000812
813 fil = (FILE *) context;
Daniel Veillard500a1de2004-03-22 15:22:58 +0000814 if ((fil == stdout) || (fil == stderr)) {
815 ret = fflush(fil);
816 if (ret < 0)
817 xmlIOErr(0, "fflush()");
818 return(0);
819 }
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000820 if (fil == stdin)
821 return(0);
Daniel Veillard05d987b2003-10-08 11:54:57 +0000822 ret = ( fclose((FILE *) context) == EOF ) ? -1 : 0;
823 if (ret < 0)
824 xmlIOErr(0, "fclose()");
825 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000826}
827
828/**
829 * xmlFileFlush:
830 * @context: the I/O context
831 *
832 * Flush an I/O channel
833 */
Daniel Veillardf012a642001-07-23 19:10:52 +0000834static int
Owen Taylor3473f882001-02-23 17:55:21 +0000835xmlFileFlush (void * context) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000836 int ret;
837 ret = ( fflush((FILE *) context) == EOF ) ? -1 : 0;
838 if (ret < 0)
839 xmlIOErr(0, "fflush()");
840 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000841}
842
843#ifdef HAVE_ZLIB_H
844/************************************************************************
845 * *
846 * I/O for compressed file accesses *
847 * *
848 ************************************************************************/
849/**
850 * xmlGzfileMatch:
851 * @filename: the URI for matching
852 *
853 * input from compressed file test
854 *
855 * Returns 1 if matches, 0 otherwise
856 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000857static int
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000858xmlGzfileMatch (const char *filename ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +0000859 return(1);
860}
861
862/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000863 * xmlGzfileOpen_real:
Owen Taylor3473f882001-02-23 17:55:21 +0000864 * @filename: the URI for matching
865 *
866 * input from compressed file open
867 * if @filename is " " then the standard input is used
868 *
869 * Returns an I/O context or NULL in case of error
870 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000871static void *
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000872xmlGzfileOpen_real (const char *filename) {
Owen Taylor3473f882001-02-23 17:55:21 +0000873 const char *path = NULL;
874 gzFile fd;
875
876 if (!strcmp(filename, "-")) {
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000877 fd = gzdopen(dup(0), "rb");
Owen Taylor3473f882001-02-23 17:55:21 +0000878 return((void *) fd);
879 }
880
Daniel Veillardf4862f02002-09-10 11:13:43 +0000881 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000882#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +0000883 path = &filename[17];
884#else
Owen Taylor3473f882001-02-23 17:55:21 +0000885 path = &filename[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +0000886#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000887 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000888#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000889 path = &filename[8];
890#else
Owen Taylor3473f882001-02-23 17:55:21 +0000891 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000892#endif
893 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000894 path = filename;
895
896 if (path == NULL)
897 return(NULL);
898 if (!xmlCheckFilename(path))
899 return(NULL);
900
901 fd = gzopen(path, "rb");
902 return((void *) fd);
903}
904
905/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000906 * xmlGzfileOpen:
907 * @filename: the URI for matching
908 *
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +0000909 * Wrapper around xmlGzfileOpen if the open fais, it will
910 * try to unescape @filename
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000911 */
912static void *
913xmlGzfileOpen (const char *filename) {
914 char *unescaped;
915 void *retval;
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +0000916
917 retval = xmlGzfileOpen_real(filename);
918 if (retval == NULL) {
919 unescaped = xmlURIUnescapeString(filename, 0, NULL);
920 if (unescaped != NULL) {
921 retval = xmlGzfileOpen_real(unescaped);
922 }
923 xmlFree(unescaped);
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000924 }
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000925 return retval;
926}
927
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000928#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000929/**
Owen Taylor3473f882001-02-23 17:55:21 +0000930 * xmlGzfileOpenW:
931 * @filename: the URI for matching
932 * @compression: the compression factor (0 - 9 included)
933 *
934 * input from compressed file open
935 * if @filename is " " then the standard input is used
936 *
937 * Returns an I/O context or NULL in case of error
938 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000939static void *
Owen Taylor3473f882001-02-23 17:55:21 +0000940xmlGzfileOpenW (const char *filename, int compression) {
941 const char *path = NULL;
942 char mode[15];
943 gzFile fd;
944
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000945 snprintf(mode, sizeof(mode), "wb%d", compression);
Owen Taylor3473f882001-02-23 17:55:21 +0000946 if (!strcmp(filename, "-")) {
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000947 fd = gzdopen(dup(1), mode);
Owen Taylor3473f882001-02-23 17:55:21 +0000948 return((void *) fd);
949 }
950
Daniel Veillardf4862f02002-09-10 11:13:43 +0000951 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000952#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +0000953 path = &filename[17];
954#else
Owen Taylor3473f882001-02-23 17:55:21 +0000955 path = &filename[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +0000956#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000957 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000958#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000959 path = &filename[8];
960#else
Daniel Veillard3c2758d2001-05-31 18:43:43 +0000961 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000962#endif
963 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000964 path = filename;
965
966 if (path == NULL)
967 return(NULL);
968
969 fd = gzopen(path, mode);
970 return((void *) fd);
971}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000972#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000973
974/**
975 * xmlGzfileRead:
976 * @context: the I/O context
977 * @buffer: where to drop data
978 * @len: number of bytes to write
979 *
980 * Read @len bytes to @buffer from the compressed I/O channel.
981 *
982 * Returns the number of bytes written
983 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000984static int
Owen Taylor3473f882001-02-23 17:55:21 +0000985xmlGzfileRead (void * context, char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000986 int ret;
987
988 ret = gzread((gzFile) context, &buffer[0], len);
989 if (ret < 0) xmlIOErr(0, "gzread()");
990 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000991}
992
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000993#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000994/**
995 * xmlGzfileWrite:
996 * @context: the I/O context
997 * @buffer: where to drop data
998 * @len: number of bytes to write
999 *
1000 * Write @len bytes from @buffer to the compressed I/O channel.
1001 *
1002 * Returns the number of bytes written
1003 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001004static int
Owen Taylor3473f882001-02-23 17:55:21 +00001005xmlGzfileWrite (void * context, const char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001006 int ret;
1007
1008 ret = gzwrite((gzFile) context, (char *) &buffer[0], len);
1009 if (ret < 0) xmlIOErr(0, "gzwrite()");
1010 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001011}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001012#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001013
1014/**
1015 * xmlGzfileClose:
1016 * @context: the I/O context
1017 *
1018 * Close a compressed I/O channel
1019 */
Daniel Veillardf012a642001-07-23 19:10:52 +00001020static int
Owen Taylor3473f882001-02-23 17:55:21 +00001021xmlGzfileClose (void * context) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001022 int ret;
1023
1024 ret = (gzclose((gzFile) context) == Z_OK ) ? 0 : -1;
1025 if (ret < 0) xmlIOErr(0, "gzclose()");
1026 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001027}
1028#endif /* HAVE_ZLIB_H */
1029
1030#ifdef LIBXML_HTTP_ENABLED
1031/************************************************************************
1032 * *
1033 * I/O for HTTP file accesses *
1034 * *
1035 ************************************************************************/
Daniel Veillardf012a642001-07-23 19:10:52 +00001036
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001037#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001038typedef struct xmlIOHTTPWriteCtxt_
1039{
1040 int compression;
1041
1042 char * uri;
1043
1044 void * doc_buff;
1045
1046} xmlIOHTTPWriteCtxt, *xmlIOHTTPWriteCtxtPtr;
1047
1048#ifdef HAVE_ZLIB_H
1049
1050#define DFLT_WBITS ( -15 )
1051#define DFLT_MEM_LVL ( 8 )
1052#define GZ_MAGIC1 ( 0x1f )
1053#define GZ_MAGIC2 ( 0x8b )
1054#define LXML_ZLIB_OS_CODE ( 0x03 )
1055#define INIT_HTTP_BUFF_SIZE ( 32768 )
1056#define DFLT_ZLIB_RATIO ( 5 )
1057
1058/*
1059** Data structure and functions to work with sending compressed data
1060** via HTTP.
1061*/
1062
1063typedef struct xmlZMemBuff_
1064{
1065 unsigned long size;
1066 unsigned long crc;
1067
1068 unsigned char * zbuff;
1069 z_stream zctrl;
1070
1071} xmlZMemBuff, *xmlZMemBuffPtr;
1072
1073/**
1074 * append_reverse_ulong
1075 * @buff: Compressed memory buffer
1076 * @data: Unsigned long to append
1077 *
1078 * Append a unsigned long in reverse byte order to the end of the
1079 * memory buffer.
1080 */
1081static void
1082append_reverse_ulong( xmlZMemBuff * buff, unsigned long data ) {
1083
1084 int idx;
1085
1086 if ( buff == NULL )
1087 return;
1088
1089 /*
1090 ** This is plagiarized from putLong in gzio.c (zlib source) where
1091 ** the number "4" is hardcoded. If zlib is ever patched to
1092 ** support 64 bit file sizes, this code would need to be patched
1093 ** as well.
1094 */
1095
1096 for ( idx = 0; idx < 4; idx++ ) {
1097 *buff->zctrl.next_out = ( data & 0xff );
1098 data >>= 8;
1099 buff->zctrl.next_out++;
1100 }
1101
1102 return;
1103}
1104
1105/**
1106 *
1107 * xmlFreeZMemBuff
1108 * @buff: The memory buffer context to clear
1109 *
1110 * Release all the resources associated with the compressed memory buffer.
1111 */
1112static void
1113xmlFreeZMemBuff( xmlZMemBuffPtr buff ) {
William M. Brack78637da2003-07-31 14:47:38 +00001114
1115#ifdef DEBUG_HTTP
Daniel Veillardf012a642001-07-23 19:10:52 +00001116 int z_err;
William M. Brack78637da2003-07-31 14:47:38 +00001117#endif
Daniel Veillardf012a642001-07-23 19:10:52 +00001118
1119 if ( buff == NULL )
1120 return;
1121
1122 xmlFree( buff->zbuff );
Daniel Veillardf012a642001-07-23 19:10:52 +00001123#ifdef DEBUG_HTTP
William M. Brack78637da2003-07-31 14:47:38 +00001124 z_err = deflateEnd( &buff->zctrl );
Daniel Veillardf012a642001-07-23 19:10:52 +00001125 if ( z_err != Z_OK )
1126 xmlGenericError( xmlGenericErrorContext,
1127 "xmlFreeZMemBuff: Error releasing zlib context: %d\n",
1128 z_err );
William M. Brack78637da2003-07-31 14:47:38 +00001129#else
1130 deflateEnd( &buff->zctrl );
William M. Brack779af002003-08-01 15:55:39 +00001131#endif
Daniel Veillardf012a642001-07-23 19:10:52 +00001132
1133 xmlFree( buff );
1134 return;
1135}
1136
1137/**
1138 * xmlCreateZMemBuff
1139 *@compression: Compression value to use
1140 *
1141 * Create a memory buffer to hold the compressed XML document. The
1142 * compressed document in memory will end up being identical to what
1143 * would be created if gzopen/gzwrite/gzclose were being used to
1144 * write the document to disk. The code for the header/trailer data to
1145 * the compression is plagiarized from the zlib source files.
1146 */
1147static void *
1148xmlCreateZMemBuff( int compression ) {
1149
1150 int z_err;
1151 int hdr_lgth;
1152 xmlZMemBuffPtr buff = NULL;
1153
1154 if ( ( compression < 1 ) || ( compression > 9 ) )
1155 return ( NULL );
1156
1157 /* Create the control and data areas */
1158
1159 buff = xmlMalloc( sizeof( xmlZMemBuff ) );
1160 if ( buff == NULL ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001161 xmlIOErrMemory("creating buffer context");
Daniel Veillardf012a642001-07-23 19:10:52 +00001162 return ( NULL );
1163 }
1164
1165 (void)memset( buff, 0, sizeof( xmlZMemBuff ) );
1166 buff->size = INIT_HTTP_BUFF_SIZE;
1167 buff->zbuff = xmlMalloc( buff->size );
1168 if ( buff->zbuff == NULL ) {
1169 xmlFreeZMemBuff( buff );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001170 xmlIOErrMemory("creating buffer");
Daniel Veillardf012a642001-07-23 19:10:52 +00001171 return ( NULL );
1172 }
1173
1174 z_err = deflateInit2( &buff->zctrl, compression, Z_DEFLATED,
1175 DFLT_WBITS, DFLT_MEM_LVL, Z_DEFAULT_STRATEGY );
1176 if ( z_err != Z_OK ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001177 xmlChar msg[500];
Daniel Veillardf012a642001-07-23 19:10:52 +00001178 xmlFreeZMemBuff( buff );
1179 buff = NULL;
Daniel Veillard05d987b2003-10-08 11:54:57 +00001180 xmlStrPrintf(msg, 500,
1181 (const xmlChar *) "xmlCreateZMemBuff: %s %d\n",
1182 "Error initializing compression context. ZLIB error:",
1183 z_err );
1184 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001185 return ( NULL );
1186 }
1187
1188 /* Set the header data. The CRC will be needed for the trailer */
Daniel Veillardf012a642001-07-23 19:10:52 +00001189 buff->crc = crc32( 0L, Z_NULL, 0 );
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001190 hdr_lgth = snprintf( (char *)buff->zbuff, buff->size,
1191 "%c%c%c%c%c%c%c%c%c%c",
Daniel Veillardf012a642001-07-23 19:10:52 +00001192 GZ_MAGIC1, GZ_MAGIC2, Z_DEFLATED,
1193 0, 0, 0, 0, 0, 0, LXML_ZLIB_OS_CODE );
1194 buff->zctrl.next_out = buff->zbuff + hdr_lgth;
1195 buff->zctrl.avail_out = buff->size - hdr_lgth;
1196
1197 return ( buff );
1198}
1199
1200/**
1201 * xmlZMemBuffExtend
1202 * @buff: Buffer used to compress and consolidate data.
1203 * @ext_amt: Number of bytes to extend the buffer.
1204 *
1205 * Extend the internal buffer used to store the compressed data by the
1206 * specified amount.
1207 *
1208 * Returns 0 on success or -1 on failure to extend the buffer. On failure
1209 * the original buffer still exists at the original size.
1210 */
1211static int
1212xmlZMemBuffExtend( xmlZMemBuffPtr buff, size_t ext_amt ) {
1213
1214 int rc = -1;
1215 size_t new_size;
1216 size_t cur_used;
1217
1218 unsigned char * tmp_ptr = NULL;
1219
1220 if ( buff == NULL )
1221 return ( -1 );
1222
1223 else if ( ext_amt == 0 )
1224 return ( 0 );
1225
1226 cur_used = buff->zctrl.next_out - buff->zbuff;
1227 new_size = buff->size + ext_amt;
1228
1229#ifdef DEBUG_HTTP
1230 if ( cur_used > new_size )
1231 xmlGenericError( xmlGenericErrorContext,
1232 "xmlZMemBuffExtend: %s\n%s %d bytes.\n",
1233 "Buffer overwrite detected during compressed memory",
1234 "buffer extension. Overflowed by",
1235 (cur_used - new_size ) );
1236#endif
1237
1238 tmp_ptr = xmlRealloc( buff->zbuff, new_size );
1239 if ( tmp_ptr != NULL ) {
1240 rc = 0;
1241 buff->size = new_size;
1242 buff->zbuff = tmp_ptr;
1243 buff->zctrl.next_out = tmp_ptr + cur_used;
1244 buff->zctrl.avail_out = new_size - cur_used;
1245 }
1246 else {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001247 xmlChar msg[500];
1248 xmlStrPrintf(msg, 500,
1249 (const xmlChar *) "xmlZMemBuffExtend: %s %lu bytes.\n",
1250 "Allocation failure extending output buffer to",
1251 new_size );
1252 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001253 }
1254
1255 return ( rc );
1256}
1257
1258/**
1259 * xmlZMemBuffAppend
1260 * @buff: Buffer used to compress and consolidate data
1261 * @src: Uncompressed source content to append to buffer
1262 * @len: Length of source data to append to buffer
1263 *
1264 * Compress and append data to the internal buffer. The data buffer
1265 * will be expanded if needed to store the additional data.
1266 *
1267 * Returns the number of bytes appended to the buffer or -1 on error.
1268 */
1269static int
1270xmlZMemBuffAppend( xmlZMemBuffPtr buff, const char * src, int len ) {
1271
1272 int z_err;
1273 size_t min_accept;
1274
1275 if ( ( buff == NULL ) || ( src == NULL ) )
1276 return ( -1 );
1277
1278 buff->zctrl.avail_in = len;
1279 buff->zctrl.next_in = (unsigned char *)src;
1280 while ( buff->zctrl.avail_in > 0 ) {
1281 /*
1282 ** Extend the buffer prior to deflate call if a reasonable amount
1283 ** of output buffer space is not available.
1284 */
1285 min_accept = buff->zctrl.avail_in / DFLT_ZLIB_RATIO;
1286 if ( buff->zctrl.avail_out <= min_accept ) {
1287 if ( xmlZMemBuffExtend( buff, buff->size ) == -1 )
1288 return ( -1 );
1289 }
1290
1291 z_err = deflate( &buff->zctrl, Z_NO_FLUSH );
1292 if ( z_err != Z_OK ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001293 xmlChar msg[500];
1294 xmlStrPrintf(msg, 500,
1295 (const xmlChar *) "xmlZMemBuffAppend: %s %d %s - %d",
Daniel Veillardf012a642001-07-23 19:10:52 +00001296 "Compression error while appending",
1297 len, "bytes to buffer. ZLIB error", z_err );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001298 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001299 return ( -1 );
1300 }
1301 }
1302
1303 buff->crc = crc32( buff->crc, (unsigned char *)src, len );
1304
1305 return ( len );
1306}
1307
1308/**
1309 * xmlZMemBuffGetContent
1310 * @buff: Compressed memory content buffer
1311 * @data_ref: Pointer reference to point to compressed content
1312 *
1313 * Flushes the compression buffers, appends gzip file trailers and
1314 * returns the compressed content and length of the compressed data.
1315 * NOTE: The gzip trailer code here is plagiarized from zlib source.
1316 *
1317 * Returns the length of the compressed data or -1 on error.
1318 */
1319static int
1320xmlZMemBuffGetContent( xmlZMemBuffPtr buff, char ** data_ref ) {
1321
1322 int zlgth = -1;
1323 int z_err;
1324
1325 if ( ( buff == NULL ) || ( data_ref == NULL ) )
1326 return ( -1 );
1327
1328 /* Need to loop until compression output buffers are flushed */
1329
1330 do
1331 {
1332 z_err = deflate( &buff->zctrl, Z_FINISH );
1333 if ( z_err == Z_OK ) {
1334 /* In this case Z_OK means more buffer space needed */
1335
1336 if ( xmlZMemBuffExtend( buff, buff->size ) == -1 )
1337 return ( -1 );
1338 }
1339 }
1340 while ( z_err == Z_OK );
1341
1342 /* If the compression state is not Z_STREAM_END, some error occurred */
1343
1344 if ( z_err == Z_STREAM_END ) {
1345
1346 /* Need to append the gzip data trailer */
1347
1348 if ( buff->zctrl.avail_out < ( 2 * sizeof( unsigned long ) ) ) {
1349 if ( xmlZMemBuffExtend(buff, (2 * sizeof(unsigned long))) == -1 )
1350 return ( -1 );
1351 }
1352
1353 /*
1354 ** For whatever reason, the CRC and length data are pushed out
1355 ** in reverse byte order. So a memcpy can't be used here.
1356 */
1357
1358 append_reverse_ulong( buff, buff->crc );
1359 append_reverse_ulong( buff, buff->zctrl.total_in );
1360
1361 zlgth = buff->zctrl.next_out - buff->zbuff;
1362 *data_ref = (char *)buff->zbuff;
1363 }
1364
Daniel Veillard05d987b2003-10-08 11:54:57 +00001365 else {
1366 xmlChar msg[500];
1367 xmlStrPrintf(msg, 500,
1368 (const xmlChar *) "xmlZMemBuffGetContent: %s - %d\n",
1369 "Error flushing zlib buffers. Error code", z_err );
1370 xmlIOErr(XML_IO_WRITE, (const char *) msg);
1371 }
Daniel Veillardf012a642001-07-23 19:10:52 +00001372
1373 return ( zlgth );
1374}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001375#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001376#endif /* HAVE_ZLIB_H */
1377
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001378#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001379/**
1380 * xmlFreeHTTPWriteCtxt
1381 * @ctxt: Context to cleanup
1382 *
1383 * Free allocated memory and reclaim system resources.
1384 *
1385 * No return value.
1386 */
1387static void
1388xmlFreeHTTPWriteCtxt( xmlIOHTTPWriteCtxtPtr ctxt )
1389{
1390 if ( ctxt->uri != NULL )
Daniel Veillard819d5cb2002-10-14 11:15:18 +00001391 xmlFree( ctxt->uri );
Daniel Veillardf012a642001-07-23 19:10:52 +00001392
1393 if ( ctxt->doc_buff != NULL ) {
1394
1395#ifdef HAVE_ZLIB_H
1396 if ( ctxt->compression > 0 ) {
1397 xmlFreeZMemBuff( ctxt->doc_buff );
1398 }
1399 else
1400#endif
1401 {
1402 xmlOutputBufferClose( ctxt->doc_buff );
1403 }
1404 }
1405
Daniel Veillard819d5cb2002-10-14 11:15:18 +00001406 xmlFree( ctxt );
Daniel Veillardf012a642001-07-23 19:10:52 +00001407 return;
1408}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001409#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001410
1411
Owen Taylor3473f882001-02-23 17:55:21 +00001412/**
1413 * xmlIOHTTPMatch:
1414 * @filename: the URI for matching
1415 *
1416 * check if the URI matches an HTTP one
1417 *
1418 * Returns 1 if matches, 0 otherwise
1419 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001420int
Owen Taylor3473f882001-02-23 17:55:21 +00001421xmlIOHTTPMatch (const char *filename) {
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001422 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "http://", 7))
Owen Taylor3473f882001-02-23 17:55:21 +00001423 return(1);
1424 return(0);
1425}
1426
1427/**
1428 * xmlIOHTTPOpen:
1429 * @filename: the URI for matching
1430 *
1431 * open an HTTP I/O channel
1432 *
1433 * Returns an I/O context or NULL in case of error
1434 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001435void *
Owen Taylor3473f882001-02-23 17:55:21 +00001436xmlIOHTTPOpen (const char *filename) {
1437 return(xmlNanoHTTPOpen(filename, NULL));
1438}
1439
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001440#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001441/**
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001442 * xmlIOHTTPOpenW:
Daniel Veillardf012a642001-07-23 19:10:52 +00001443 * @post_uri: The destination URI for the document
1444 * @compression: The compression desired for the document.
1445 *
1446 * Open a temporary buffer to collect the document for a subsequent HTTP POST
1447 * request. Non-static as is called from the output buffer creation routine.
1448 *
1449 * Returns an I/O context or NULL in case of error.
1450 */
1451
1452void *
Daniel Veillard572577e2002-01-18 16:23:55 +00001453xmlIOHTTPOpenW(const char *post_uri, int compression)
1454{
Daniel Veillardf012a642001-07-23 19:10:52 +00001455
Daniel Veillard572577e2002-01-18 16:23:55 +00001456 xmlIOHTTPWriteCtxtPtr ctxt = NULL;
Daniel Veillardf012a642001-07-23 19:10:52 +00001457
Daniel Veillard572577e2002-01-18 16:23:55 +00001458 if (post_uri == NULL)
1459 return (NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001460
Daniel Veillard572577e2002-01-18 16:23:55 +00001461 ctxt = xmlMalloc(sizeof(xmlIOHTTPWriteCtxt));
1462 if (ctxt == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001463 xmlIOErrMemory("creating HTTP output context");
Daniel Veillard572577e2002-01-18 16:23:55 +00001464 return (NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001465 }
1466
Daniel Veillard572577e2002-01-18 16:23:55 +00001467 (void) memset(ctxt, 0, sizeof(xmlIOHTTPWriteCtxt));
Daniel Veillardf012a642001-07-23 19:10:52 +00001468
Daniel Veillard572577e2002-01-18 16:23:55 +00001469 ctxt->uri = (char *) xmlStrdup((const xmlChar *)post_uri);
1470 if (ctxt->uri == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001471 xmlIOErrMemory("copying URI");
Daniel Veillard572577e2002-01-18 16:23:55 +00001472 xmlFreeHTTPWriteCtxt(ctxt);
1473 return (NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001474 }
1475
1476 /*
Daniel Veillard572577e2002-01-18 16:23:55 +00001477 * ** Since the document length is required for an HTTP post,
1478 * ** need to put the document into a buffer. A memory buffer
1479 * ** is being used to avoid pushing the data to disk and back.
1480 */
Daniel Veillardf012a642001-07-23 19:10:52 +00001481
1482#ifdef HAVE_ZLIB_H
Daniel Veillard572577e2002-01-18 16:23:55 +00001483 if ((compression > 0) && (compression <= 9)) {
1484
1485 ctxt->compression = compression;
1486 ctxt->doc_buff = xmlCreateZMemBuff(compression);
1487 } else
Daniel Veillardf012a642001-07-23 19:10:52 +00001488#endif
1489 {
Daniel Veillard572577e2002-01-18 16:23:55 +00001490 /* Any character conversions should have been done before this */
Daniel Veillardf012a642001-07-23 19:10:52 +00001491
Daniel Veillard572577e2002-01-18 16:23:55 +00001492 ctxt->doc_buff = xmlAllocOutputBuffer(NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001493 }
1494
Daniel Veillard572577e2002-01-18 16:23:55 +00001495 if (ctxt->doc_buff == NULL) {
1496 xmlFreeHTTPWriteCtxt(ctxt);
1497 ctxt = NULL;
Daniel Veillardf012a642001-07-23 19:10:52 +00001498 }
1499
Daniel Veillard572577e2002-01-18 16:23:55 +00001500 return (ctxt);
Daniel Veillardf012a642001-07-23 19:10:52 +00001501}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001502#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001503
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001504#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001505/**
1506 * xmlIOHTTPDfltOpenW
1507 * @post_uri: The destination URI for this document.
1508 *
1509 * Calls xmlIOHTTPOpenW with no compression to set up for a subsequent
1510 * HTTP post command. This function should generally not be used as
1511 * the open callback is short circuited in xmlOutputBufferCreateFile.
1512 *
1513 * Returns a pointer to the new IO context.
1514 */
1515static void *
1516xmlIOHTTPDfltOpenW( const char * post_uri ) {
1517 return ( xmlIOHTTPOpenW( post_uri, 0 ) );
1518}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001519#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001520
1521/**
Owen Taylor3473f882001-02-23 17:55:21 +00001522 * xmlIOHTTPRead:
1523 * @context: the I/O context
1524 * @buffer: where to drop data
1525 * @len: number of bytes to write
1526 *
1527 * Read @len bytes to @buffer from the I/O channel.
1528 *
1529 * Returns the number of bytes written
1530 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001531int
Owen Taylor3473f882001-02-23 17:55:21 +00001532xmlIOHTTPRead(void * context, char * buffer, int len) {
1533 return(xmlNanoHTTPRead(context, &buffer[0], len));
1534}
1535
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001536#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001537/**
Daniel Veillardf012a642001-07-23 19:10:52 +00001538 * xmlIOHTTPWrite
1539 * @context: previously opened writing context
1540 * @buffer: data to output to temporary buffer
1541 * @len: bytes to output
1542 *
1543 * Collect data from memory buffer into a temporary file for later
1544 * processing.
1545 *
1546 * Returns number of bytes written.
1547 */
1548
1549static int
1550xmlIOHTTPWrite( void * context, const char * buffer, int len ) {
1551
1552 xmlIOHTTPWriteCtxtPtr ctxt = context;
1553
1554 if ( ( ctxt == NULL ) || ( ctxt->doc_buff == NULL ) || ( buffer == NULL ) )
1555 return ( -1 );
1556
1557 if ( len > 0 ) {
1558
1559 /* Use gzwrite or fwrite as previously setup in the open call */
1560
1561#ifdef HAVE_ZLIB_H
1562 if ( ctxt->compression > 0 )
1563 len = xmlZMemBuffAppend( ctxt->doc_buff, buffer, len );
1564
1565 else
1566#endif
1567 len = xmlOutputBufferWrite( ctxt->doc_buff, len, buffer );
1568
1569 if ( len < 0 ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001570 xmlChar msg[500];
1571 xmlStrPrintf(msg, 500,
1572 (const xmlChar *) "xmlIOHTTPWrite: %s\n%s '%s'.\n",
Daniel Veillardf012a642001-07-23 19:10:52 +00001573 "Error appending to internal buffer.",
1574 "Error sending document to URI",
1575 ctxt->uri );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001576 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001577 }
1578 }
1579
1580 return ( len );
1581}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001582#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001583
1584
1585/**
Owen Taylor3473f882001-02-23 17:55:21 +00001586 * xmlIOHTTPClose:
1587 * @context: the I/O context
1588 *
1589 * Close an HTTP I/O channel
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001590 *
1591 * Returns 0
Owen Taylor3473f882001-02-23 17:55:21 +00001592 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001593int
Owen Taylor3473f882001-02-23 17:55:21 +00001594xmlIOHTTPClose (void * context) {
1595 xmlNanoHTTPClose(context);
Daniel Veillardf012a642001-07-23 19:10:52 +00001596 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001597}
Daniel Veillardf012a642001-07-23 19:10:52 +00001598
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001599#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001600/**
1601 * xmlIOHTTCloseWrite
1602 * @context: The I/O context
1603 * @http_mthd: The HTTP method to be used when sending the data
1604 *
1605 * Close the transmit HTTP I/O channel and actually send the data.
1606 */
1607static int
1608xmlIOHTTPCloseWrite( void * context, const char * http_mthd ) {
1609
1610 int close_rc = -1;
1611 int http_rtn = 0;
1612 int content_lgth = 0;
1613 xmlIOHTTPWriteCtxtPtr ctxt = context;
1614
1615 char * http_content = NULL;
1616 char * content_encoding = NULL;
1617 char * content_type = (char *) "text/xml";
1618 void * http_ctxt = NULL;
1619
1620 if ( ( ctxt == NULL ) || ( http_mthd == NULL ) )
1621 return ( -1 );
1622
1623 /* Retrieve the content from the appropriate buffer */
1624
1625#ifdef HAVE_ZLIB_H
1626
1627 if ( ctxt->compression > 0 ) {
1628 content_lgth = xmlZMemBuffGetContent( ctxt->doc_buff, &http_content );
1629 content_encoding = (char *) "Content-Encoding: gzip";
1630 }
1631 else
1632#endif
1633 {
1634 /* Pull the data out of the memory output buffer */
1635
1636 xmlOutputBufferPtr dctxt = ctxt->doc_buff;
1637 http_content = (char *)dctxt->buffer->content;
1638 content_lgth = dctxt->buffer->use;
1639 }
1640
1641 if ( http_content == NULL ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001642 xmlChar msg[500];
1643 xmlStrPrintf(msg, 500,
1644 (const xmlChar *) "xmlIOHTTPCloseWrite: %s '%s' %s '%s'.\n",
1645 "Error retrieving content.\nUnable to",
1646 http_mthd, "data to URI", ctxt->uri );
1647 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001648 }
1649
1650 else {
1651
1652 http_ctxt = xmlNanoHTTPMethod( ctxt->uri, http_mthd, http_content,
1653 &content_type, content_encoding,
1654 content_lgth );
1655
1656 if ( http_ctxt != NULL ) {
1657#ifdef DEBUG_HTTP
1658 /* If testing/debugging - dump reply with request content */
1659
1660 FILE * tst_file = NULL;
1661 char buffer[ 4096 ];
1662 char * dump_name = NULL;
1663 int avail;
1664
1665 xmlGenericError( xmlGenericErrorContext,
1666 "xmlNanoHTTPCloseWrite: HTTP %s to\n%s returned %d.\n",
1667 http_mthd, ctxt->uri,
1668 xmlNanoHTTPReturnCode( http_ctxt ) );
1669
1670 /*
1671 ** Since either content or reply may be gzipped,
1672 ** dump them to separate files instead of the
1673 ** standard error context.
1674 */
1675
1676 dump_name = tempnam( NULL, "lxml" );
1677 if ( dump_name != NULL ) {
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001678 (void)snprintf( buffer, sizeof(buffer), "%s.content", dump_name );
Daniel Veillardf012a642001-07-23 19:10:52 +00001679
Daniel Veillardcbbd78d2003-07-20 15:21:30 +00001680 tst_file = fopen( buffer, "wb" );
Daniel Veillardf012a642001-07-23 19:10:52 +00001681 if ( tst_file != NULL ) {
1682 xmlGenericError( xmlGenericErrorContext,
1683 "Transmitted content saved in file: %s\n", buffer );
1684
1685 fwrite( http_content, sizeof( char ),
1686 content_lgth, tst_file );
1687 fclose( tst_file );
1688 }
1689
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001690 (void)snprintf( buffer, sizeof(buffer), "%s.reply", dump_name );
Daniel Veillardcbbd78d2003-07-20 15:21:30 +00001691 tst_file = fopen( buffer, "wb" );
Daniel Veillardf012a642001-07-23 19:10:52 +00001692 if ( tst_file != NULL ) {
1693 xmlGenericError( xmlGenericErrorContext,
1694 "Reply content saved in file: %s\n", buffer );
1695
1696
1697 while ( (avail = xmlNanoHTTPRead( http_ctxt,
1698 buffer, sizeof( buffer ) )) > 0 ) {
1699
1700 fwrite( buffer, sizeof( char ), avail, tst_file );
1701 }
1702
1703 fclose( tst_file );
1704 }
1705
1706 free( dump_name );
1707 }
1708#endif /* DEBUG_HTTP */
1709
1710 http_rtn = xmlNanoHTTPReturnCode( http_ctxt );
1711 if ( ( http_rtn >= 200 ) && ( http_rtn < 300 ) )
1712 close_rc = 0;
Daniel Veillard05d987b2003-10-08 11:54:57 +00001713 else {
1714 xmlChar msg[500];
1715 xmlStrPrintf(msg, 500,
1716 (const xmlChar *) "xmlIOHTTPCloseWrite: HTTP '%s' of %d %s\n'%s' %s %d\n",
Daniel Veillardf012a642001-07-23 19:10:52 +00001717 http_mthd, content_lgth,
1718 "bytes to URI", ctxt->uri,
1719 "failed. HTTP return code:", http_rtn );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001720 xmlIOErr(XML_IO_WRITE, (const char *) msg);
1721 }
Daniel Veillardf012a642001-07-23 19:10:52 +00001722
1723 xmlNanoHTTPClose( http_ctxt );
1724 xmlFree( content_type );
1725 }
1726 }
1727
1728 /* Final cleanups */
1729
1730 xmlFreeHTTPWriteCtxt( ctxt );
1731
1732 return ( close_rc );
1733}
1734
1735/**
1736 * xmlIOHTTPClosePut
1737 *
1738 * @context: The I/O context
1739 *
1740 * Close the transmit HTTP I/O channel and actually send data using a PUT
1741 * HTTP method.
1742 */
1743static int
1744xmlIOHTTPClosePut( void * ctxt ) {
1745 return ( xmlIOHTTPCloseWrite( ctxt, "PUT" ) );
1746}
1747
1748
1749/**
1750 * xmlIOHTTPClosePost
1751 *
1752 * @context: The I/O context
1753 *
1754 * Close the transmit HTTP I/O channel and actually send data using a POST
1755 * HTTP method.
1756 */
1757static int
1758xmlIOHTTPClosePost( void * ctxt ) {
1759 return ( xmlIOHTTPCloseWrite( ctxt, "POST" ) );
1760}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001761#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001762
Owen Taylor3473f882001-02-23 17:55:21 +00001763#endif /* LIBXML_HTTP_ENABLED */
1764
1765#ifdef LIBXML_FTP_ENABLED
1766/************************************************************************
1767 * *
1768 * I/O for FTP file accesses *
1769 * *
1770 ************************************************************************/
1771/**
1772 * xmlIOFTPMatch:
1773 * @filename: the URI for matching
1774 *
1775 * check if the URI matches an FTP one
1776 *
1777 * Returns 1 if matches, 0 otherwise
1778 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001779int
Owen Taylor3473f882001-02-23 17:55:21 +00001780xmlIOFTPMatch (const char *filename) {
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001781 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "ftp://", 6))
Owen Taylor3473f882001-02-23 17:55:21 +00001782 return(1);
1783 return(0);
1784}
1785
1786/**
1787 * xmlIOFTPOpen:
1788 * @filename: the URI for matching
1789 *
1790 * open an FTP I/O channel
1791 *
1792 * Returns an I/O context or NULL in case of error
1793 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001794void *
Owen Taylor3473f882001-02-23 17:55:21 +00001795xmlIOFTPOpen (const char *filename) {
1796 return(xmlNanoFTPOpen(filename));
1797}
1798
1799/**
1800 * xmlIOFTPRead:
1801 * @context: the I/O context
1802 * @buffer: where to drop data
1803 * @len: number of bytes to write
1804 *
1805 * Read @len bytes to @buffer from the I/O channel.
1806 *
1807 * Returns the number of bytes written
1808 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001809int
Owen Taylor3473f882001-02-23 17:55:21 +00001810xmlIOFTPRead(void * context, char * buffer, int len) {
1811 return(xmlNanoFTPRead(context, &buffer[0], len));
1812}
1813
1814/**
1815 * xmlIOFTPClose:
1816 * @context: the I/O context
1817 *
1818 * Close an FTP I/O channel
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001819 *
1820 * Returns 0
Owen Taylor3473f882001-02-23 17:55:21 +00001821 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001822int
Owen Taylor3473f882001-02-23 17:55:21 +00001823xmlIOFTPClose (void * context) {
Daniel Veillardf012a642001-07-23 19:10:52 +00001824 return ( xmlNanoFTPClose(context) );
Owen Taylor3473f882001-02-23 17:55:21 +00001825}
1826#endif /* LIBXML_FTP_ENABLED */
1827
1828
1829/**
1830 * xmlRegisterInputCallbacks:
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001831 * @matchFunc: the xmlInputMatchCallback
1832 * @openFunc: the xmlInputOpenCallback
1833 * @readFunc: the xmlInputReadCallback
1834 * @closeFunc: the xmlInputCloseCallback
Owen Taylor3473f882001-02-23 17:55:21 +00001835 *
1836 * Register a new set of I/O callback for handling parser input.
1837 *
1838 * Returns the registered handler number or -1 in case of error
1839 */
1840int
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001841xmlRegisterInputCallbacks(xmlInputMatchCallback matchFunc,
1842 xmlInputOpenCallback openFunc, xmlInputReadCallback readFunc,
1843 xmlInputCloseCallback closeFunc) {
Owen Taylor3473f882001-02-23 17:55:21 +00001844 if (xmlInputCallbackNr >= MAX_INPUT_CALLBACK) {
1845 return(-1);
1846 }
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001847 xmlInputCallbackTable[xmlInputCallbackNr].matchcallback = matchFunc;
1848 xmlInputCallbackTable[xmlInputCallbackNr].opencallback = openFunc;
1849 xmlInputCallbackTable[xmlInputCallbackNr].readcallback = readFunc;
1850 xmlInputCallbackTable[xmlInputCallbackNr].closecallback = closeFunc;
Daniel Veillard9ec26532003-09-23 07:43:19 +00001851 xmlInputCallbackInitialized = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001852 return(xmlInputCallbackNr++);
1853}
1854
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001855#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001856/**
1857 * xmlRegisterOutputCallbacks:
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001858 * @matchFunc: the xmlOutputMatchCallback
1859 * @openFunc: the xmlOutputOpenCallback
1860 * @writeFunc: the xmlOutputWriteCallback
1861 * @closeFunc: the xmlOutputCloseCallback
Owen Taylor3473f882001-02-23 17:55:21 +00001862 *
1863 * Register a new set of I/O callback for handling output.
1864 *
1865 * Returns the registered handler number or -1 in case of error
1866 */
1867int
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001868xmlRegisterOutputCallbacks(xmlOutputMatchCallback matchFunc,
1869 xmlOutputOpenCallback openFunc, xmlOutputWriteCallback writeFunc,
1870 xmlOutputCloseCallback closeFunc) {
Owen Taylor3473f882001-02-23 17:55:21 +00001871 if (xmlOutputCallbackNr >= MAX_INPUT_CALLBACK) {
1872 return(-1);
1873 }
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001874 xmlOutputCallbackTable[xmlOutputCallbackNr].matchcallback = matchFunc;
1875 xmlOutputCallbackTable[xmlOutputCallbackNr].opencallback = openFunc;
1876 xmlOutputCallbackTable[xmlOutputCallbackNr].writecallback = writeFunc;
1877 xmlOutputCallbackTable[xmlOutputCallbackNr].closecallback = closeFunc;
Daniel Veillard9ec26532003-09-23 07:43:19 +00001878 xmlOutputCallbackInitialized = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001879 return(xmlOutputCallbackNr++);
1880}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001881#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001882
1883/**
1884 * xmlRegisterDefaultInputCallbacks:
1885 *
1886 * Registers the default compiled-in I/O handlers.
1887 */
1888void
Owen Taylor3473f882001-02-23 17:55:21 +00001889xmlRegisterDefaultInputCallbacks
Owen Taylor3473f882001-02-23 17:55:21 +00001890(void) {
1891 if (xmlInputCallbackInitialized)
1892 return;
1893
1894 xmlRegisterInputCallbacks(xmlFileMatch, xmlFileOpen,
1895 xmlFileRead, xmlFileClose);
1896#ifdef HAVE_ZLIB_H
1897 xmlRegisterInputCallbacks(xmlGzfileMatch, xmlGzfileOpen,
1898 xmlGzfileRead, xmlGzfileClose);
1899#endif /* HAVE_ZLIB_H */
1900
1901#ifdef LIBXML_HTTP_ENABLED
1902 xmlRegisterInputCallbacks(xmlIOHTTPMatch, xmlIOHTTPOpen,
1903 xmlIOHTTPRead, xmlIOHTTPClose);
1904#endif /* LIBXML_HTTP_ENABLED */
1905
1906#ifdef LIBXML_FTP_ENABLED
1907 xmlRegisterInputCallbacks(xmlIOFTPMatch, xmlIOFTPOpen,
1908 xmlIOFTPRead, xmlIOFTPClose);
1909#endif /* LIBXML_FTP_ENABLED */
1910 xmlInputCallbackInitialized = 1;
1911}
1912
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001913#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001914/**
1915 * xmlRegisterDefaultOutputCallbacks:
1916 *
1917 * Registers the default compiled-in I/O handlers.
1918 */
1919void
Owen Taylor3473f882001-02-23 17:55:21 +00001920xmlRegisterDefaultOutputCallbacks
Owen Taylor3473f882001-02-23 17:55:21 +00001921(void) {
1922 if (xmlOutputCallbackInitialized)
1923 return;
1924
1925 xmlRegisterOutputCallbacks(xmlFileMatch, xmlFileOpenW,
1926 xmlFileWrite, xmlFileClose);
Daniel Veillardf012a642001-07-23 19:10:52 +00001927
1928#ifdef LIBXML_HTTP_ENABLED
1929 xmlRegisterOutputCallbacks(xmlIOHTTPMatch, xmlIOHTTPDfltOpenW,
1930 xmlIOHTTPWrite, xmlIOHTTPClosePut);
1931#endif
1932
Owen Taylor3473f882001-02-23 17:55:21 +00001933/*********************************
1934 No way a-priori to distinguish between gzipped files from
1935 uncompressed ones except opening if existing then closing
1936 and saving with same compression ratio ... a pain.
1937
1938#ifdef HAVE_ZLIB_H
1939 xmlRegisterOutputCallbacks(xmlGzfileMatch, xmlGzfileOpen,
1940 xmlGzfileWrite, xmlGzfileClose);
1941#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001942
1943 Nor FTP PUT ....
1944#ifdef LIBXML_FTP_ENABLED
1945 xmlRegisterOutputCallbacks(xmlIOFTPMatch, xmlIOFTPOpen,
1946 xmlIOFTPWrite, xmlIOFTPClose);
1947#endif
1948 **********************************/
1949 xmlOutputCallbackInitialized = 1;
1950}
1951
Daniel Veillardf012a642001-07-23 19:10:52 +00001952#ifdef LIBXML_HTTP_ENABLED
1953/**
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001954 * xmlRegisterHTTPPostCallbacks:
Daniel Veillardf012a642001-07-23 19:10:52 +00001955 *
1956 * By default, libxml submits HTTP output requests using the "PUT" method.
1957 * Calling this method changes the HTTP output method to use the "POST"
1958 * method instead.
1959 *
1960 */
1961void
1962xmlRegisterHTTPPostCallbacks( void ) {
1963
1964 /* Register defaults if not done previously */
1965
1966 if ( xmlOutputCallbackInitialized == 0 )
1967 xmlRegisterDefaultOutputCallbacks( );
1968
1969 xmlRegisterOutputCallbacks(xmlIOHTTPMatch, xmlIOHTTPDfltOpenW,
1970 xmlIOHTTPWrite, xmlIOHTTPClosePost);
1971 return;
1972}
1973#endif
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001974#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001975
Owen Taylor3473f882001-02-23 17:55:21 +00001976/**
1977 * xmlAllocParserInputBuffer:
1978 * @enc: the charset encoding if known
1979 *
1980 * Create a buffered parser input for progressive parsing
1981 *
1982 * Returns the new parser input or NULL
1983 */
1984xmlParserInputBufferPtr
1985xmlAllocParserInputBuffer(xmlCharEncoding enc) {
1986 xmlParserInputBufferPtr ret;
1987
1988 ret = (xmlParserInputBufferPtr) xmlMalloc(sizeof(xmlParserInputBuffer));
1989 if (ret == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001990 xmlIOErrMemory("creating input buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00001991 return(NULL);
1992 }
1993 memset(ret, 0, (size_t) sizeof(xmlParserInputBuffer));
Daniel Veillard6155d8a2003-08-19 15:01:28 +00001994 ret->buffer = xmlBufferCreateSize(2 * xmlDefaultBufferSize);
Owen Taylor3473f882001-02-23 17:55:21 +00001995 if (ret->buffer == NULL) {
1996 xmlFree(ret);
1997 return(NULL);
1998 }
1999 ret->buffer->alloc = XML_BUFFER_ALLOC_DOUBLEIT;
2000 ret->encoder = xmlGetCharEncodingHandler(enc);
2001 if (ret->encoder != NULL)
Daniel Veillard6155d8a2003-08-19 15:01:28 +00002002 ret->raw = xmlBufferCreateSize(2 * xmlDefaultBufferSize);
Owen Taylor3473f882001-02-23 17:55:21 +00002003 else
2004 ret->raw = NULL;
2005 ret->readcallback = NULL;
2006 ret->closecallback = NULL;
2007 ret->context = NULL;
William M. Brackc07329e2003-09-08 01:57:30 +00002008 ret->compressed = -1;
Daniel Veillard36711902004-02-11 13:25:26 +00002009 ret->rawconsumed = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002010
2011 return(ret);
2012}
2013
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002014#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002015/**
2016 * xmlAllocOutputBuffer:
2017 * @encoder: the encoding converter or NULL
2018 *
2019 * Create a buffered parser output
2020 *
2021 * Returns the new parser output or NULL
2022 */
2023xmlOutputBufferPtr
2024xmlAllocOutputBuffer(xmlCharEncodingHandlerPtr encoder) {
2025 xmlOutputBufferPtr ret;
2026
2027 ret = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
2028 if (ret == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002029 xmlIOErrMemory("creating output buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00002030 return(NULL);
2031 }
2032 memset(ret, 0, (size_t) sizeof(xmlOutputBuffer));
2033 ret->buffer = xmlBufferCreate();
2034 if (ret->buffer == NULL) {
2035 xmlFree(ret);
2036 return(NULL);
2037 }
2038 ret->buffer->alloc = XML_BUFFER_ALLOC_DOUBLEIT;
2039 ret->encoder = encoder;
2040 if (encoder != NULL) {
2041 ret->conv = xmlBufferCreateSize(4000);
2042 /*
2043 * This call is designed to initiate the encoder state
2044 */
2045 xmlCharEncOutFunc(encoder, ret->conv, NULL);
2046 } else
2047 ret->conv = NULL;
2048 ret->writecallback = NULL;
2049 ret->closecallback = NULL;
2050 ret->context = NULL;
2051 ret->written = 0;
2052
2053 return(ret);
2054}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002055#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002056
2057/**
2058 * xmlFreeParserInputBuffer:
2059 * @in: a buffered parser input
2060 *
2061 * Free up the memory used by a buffered parser input
2062 */
2063void
2064xmlFreeParserInputBuffer(xmlParserInputBufferPtr in) {
Daniel Veillard8d8bf2c2003-09-17 19:36:25 +00002065 if (in == NULL) return;
2066
Owen Taylor3473f882001-02-23 17:55:21 +00002067 if (in->raw) {
2068 xmlBufferFree(in->raw);
2069 in->raw = NULL;
2070 }
2071 if (in->encoder != NULL) {
2072 xmlCharEncCloseFunc(in->encoder);
2073 }
2074 if (in->closecallback != NULL) {
2075 in->closecallback(in->context);
2076 }
2077 if (in->buffer != NULL) {
2078 xmlBufferFree(in->buffer);
2079 in->buffer = NULL;
2080 }
2081
Owen Taylor3473f882001-02-23 17:55:21 +00002082 xmlFree(in);
2083}
2084
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002085#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002086/**
2087 * xmlOutputBufferClose:
2088 * @out: a buffered output
2089 *
2090 * flushes and close the output I/O channel
2091 * and free up all the associated resources
2092 *
2093 * Returns the number of byte written or -1 in case of error.
2094 */
2095int
Daniel Veillard828ce832003-10-08 19:19:10 +00002096xmlOutputBufferClose(xmlOutputBufferPtr out)
2097{
Owen Taylor3473f882001-02-23 17:55:21 +00002098 int written;
Daniel Veillardf012a642001-07-23 19:10:52 +00002099 int err_rc = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002100
2101 if (out == NULL)
Daniel Veillard828ce832003-10-08 19:19:10 +00002102 return (-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002103 if (out->writecallback != NULL)
Daniel Veillard828ce832003-10-08 19:19:10 +00002104 xmlOutputBufferFlush(out);
Owen Taylor3473f882001-02-23 17:55:21 +00002105 if (out->closecallback != NULL) {
Daniel Veillard828ce832003-10-08 19:19:10 +00002106 err_rc = out->closecallback(out->context);
Owen Taylor3473f882001-02-23 17:55:21 +00002107 }
2108 written = out->written;
2109 if (out->conv) {
2110 xmlBufferFree(out->conv);
Daniel Veillard828ce832003-10-08 19:19:10 +00002111 out->conv = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002112 }
2113 if (out->encoder != NULL) {
2114 xmlCharEncCloseFunc(out->encoder);
2115 }
2116 if (out->buffer != NULL) {
2117 xmlBufferFree(out->buffer);
Daniel Veillard828ce832003-10-08 19:19:10 +00002118 out->buffer = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002119 }
2120
Daniel Veillard828ce832003-10-08 19:19:10 +00002121 if (out->error)
2122 err_rc = -1;
Owen Taylor3473f882001-02-23 17:55:21 +00002123 xmlFree(out);
Daniel Veillard828ce832003-10-08 19:19:10 +00002124 return ((err_rc == 0) ? written : err_rc);
Owen Taylor3473f882001-02-23 17:55:21 +00002125}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002126#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002127
2128/**
2129 * xmlParserInputBufferCreateFilename:
2130 * @URI: a C string containing the URI or filename
2131 * @enc: the charset encoding if known
2132 *
2133 * Create a buffered parser input for the progressive parsing of a file
2134 * If filename is "-' then we use stdin as the input.
2135 * Automatic support for ZLIB/Compress compressed document is provided
2136 * by default if found at compile-time.
2137 * Do an encoding check if enc == XML_CHAR_ENCODING_NONE
2138 *
2139 * Returns the new parser input or NULL
2140 */
2141xmlParserInputBufferPtr
Daniel Veillard3e59fc52003-04-18 12:34:58 +00002142xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) {
Owen Taylor3473f882001-02-23 17:55:21 +00002143 xmlParserInputBufferPtr ret;
Daniel Veillard388236f2001-07-08 18:35:48 +00002144 int i = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002145 void *context = NULL;
2146
2147 if (xmlInputCallbackInitialized == 0)
2148 xmlRegisterDefaultInputCallbacks();
2149
2150 if (URI == NULL) return(NULL);
2151
2152 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002153 * Try to find one of the input accept method accepting that scheme
Owen Taylor3473f882001-02-23 17:55:21 +00002154 * Go in reverse to give precedence to user defined handlers.
Daniel Veillard388236f2001-07-08 18:35:48 +00002155 */
2156 if (context == NULL) {
2157 for (i = xmlInputCallbackNr - 1;i >= 0;i--) {
2158 if ((xmlInputCallbackTable[i].matchcallback != NULL) &&
2159 (xmlInputCallbackTable[i].matchcallback(URI) != 0)) {
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002160 context = xmlInputCallbackTable[i].opencallback(URI);
Daniel Veillard847332a2003-10-18 11:29:40 +00002161 if (context != NULL) {
Daniel Veillard388236f2001-07-08 18:35:48 +00002162 break;
Daniel Veillard847332a2003-10-18 11:29:40 +00002163 }
Daniel Veillard388236f2001-07-08 18:35:48 +00002164 }
Owen Taylor3473f882001-02-23 17:55:21 +00002165 }
2166 }
2167 if (context == NULL) {
2168 return(NULL);
2169 }
2170
2171 /*
2172 * Allocate the Input buffer front-end.
2173 */
2174 ret = xmlAllocParserInputBuffer(enc);
2175 if (ret != NULL) {
2176 ret->context = context;
2177 ret->readcallback = xmlInputCallbackTable[i].readcallback;
2178 ret->closecallback = xmlInputCallbackTable[i].closecallback;
William M. Brackc07329e2003-09-08 01:57:30 +00002179#ifdef HAVE_ZLIB_H
William M. Brackc5cbf992003-10-29 22:15:13 +00002180 if ((xmlInputCallbackTable[i].opencallback == xmlGzfileOpen) &&
2181 (strcmp(URI, "-") != 0)) {
William M. Brackc07329e2003-09-08 01:57:30 +00002182 if (((z_stream *)context)->avail_in > 4) {
2183 char *cptr, buff4[4];
Daniel Veillard07cb8222003-09-10 10:51:05 +00002184 cptr = (char *) ((z_stream *)context)->next_in;
William M. Brackc07329e2003-09-08 01:57:30 +00002185 if (gzread(context, buff4, 4) == 4) {
2186 if (strncmp(buff4, cptr, 4) == 0)
2187 ret->compressed = 0;
2188 else
2189 ret->compressed = 1;
2190 gzrewind(context);
2191 }
2192 }
2193 }
2194#endif
Owen Taylor3473f882001-02-23 17:55:21 +00002195 }
2196 return(ret);
2197}
2198
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002199#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002200/**
2201 * xmlOutputBufferCreateFilename:
2202 * @URI: a C string containing the URI or filename
2203 * @encoder: the encoding converter or NULL
2204 * @compression: the compression ration (0 none, 9 max).
2205 *
2206 * Create a buffered output for the progressive saving of a file
2207 * If filename is "-' then we use stdout as the output.
2208 * Automatic support for ZLIB/Compress compressed document is provided
2209 * by default if found at compile-time.
2210 * TODO: currently if compression is set, the library only support
2211 * writing to a local file.
2212 *
2213 * Returns the new output or NULL
2214 */
2215xmlOutputBufferPtr
2216xmlOutputBufferCreateFilename(const char *URI,
2217 xmlCharEncodingHandlerPtr encoder,
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002218 int compression ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +00002219 xmlOutputBufferPtr ret;
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002220 int i = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002221 void *context = NULL;
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002222 char *unescaped;
Owen Taylor3473f882001-02-23 17:55:21 +00002223
Daniel Veillardf012a642001-07-23 19:10:52 +00002224 int is_http_uri = 0; /* Can't change if HTTP disabled */
2225
Owen Taylor3473f882001-02-23 17:55:21 +00002226 if (xmlOutputCallbackInitialized == 0)
2227 xmlRegisterDefaultOutputCallbacks();
2228
2229 if (URI == NULL) return(NULL);
2230
Daniel Veillardf012a642001-07-23 19:10:52 +00002231#ifdef LIBXML_HTTP_ENABLED
2232 /* Need to prevent HTTP URI's from falling into zlib short circuit */
2233
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002234 is_http_uri = xmlIOHTTPMatch( URI );
Daniel Veillardf012a642001-07-23 19:10:52 +00002235#endif
2236
Owen Taylor3473f882001-02-23 17:55:21 +00002237
2238 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002239 * Try to find one of the output accept method accepting that scheme
Owen Taylor3473f882001-02-23 17:55:21 +00002240 * Go in reverse to give precedence to user defined handlers.
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002241 * try with an unescaped version of the URI
Owen Taylor3473f882001-02-23 17:55:21 +00002242 */
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002243 unescaped = xmlURIUnescapeString(URI, 0, NULL);
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002244 if (unescaped != NULL) {
2245#ifdef HAVE_ZLIB_H
2246 if ((compression > 0) && (compression <= 9) && (is_http_uri == 0)) {
2247 context = xmlGzfileOpenW(unescaped, compression);
2248 if (context != NULL) {
2249 ret = xmlAllocOutputBuffer(encoder);
2250 if (ret != NULL) {
2251 ret->context = context;
2252 ret->writecallback = xmlGzfileWrite;
2253 ret->closecallback = xmlGzfileClose;
2254 }
2255 xmlFree(unescaped);
2256 return(ret);
2257 }
2258 }
Daniel Veillardf012a642001-07-23 19:10:52 +00002259#endif
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002260 for (i = xmlOutputCallbackNr - 1;i >= 0;i--) {
2261 if ((xmlOutputCallbackTable[i].matchcallback != NULL) &&
2262 (xmlOutputCallbackTable[i].matchcallback(unescaped) != 0)) {
2263#if defined(LIBXML_HTTP_ENABLED) && defined(HAVE_ZLIB_H)
2264 /* Need to pass compression parameter into HTTP open calls */
2265 if (xmlOutputCallbackTable[i].matchcallback == xmlIOHTTPMatch)
2266 context = xmlIOHTTPOpenW(unescaped, compression);
2267 else
2268#endif
2269 context = xmlOutputCallbackTable[i].opencallback(unescaped);
2270 if (context != NULL)
2271 break;
2272 }
2273 }
2274 xmlFree(unescaped);
2275 }
Daniel Veillardf012a642001-07-23 19:10:52 +00002276
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002277 /*
2278 * If this failed try with a non-escaped URI this may be a strange
2279 * filename
2280 */
2281 if (context == NULL) {
2282#ifdef HAVE_ZLIB_H
2283 if ((compression > 0) && (compression <= 9) && (is_http_uri == 0)) {
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002284 context = xmlGzfileOpenW(URI, compression);
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002285 if (context != NULL) {
2286 ret = xmlAllocOutputBuffer(encoder);
2287 if (ret != NULL) {
2288 ret->context = context;
2289 ret->writecallback = xmlGzfileWrite;
2290 ret->closecallback = xmlGzfileClose;
2291 }
2292 return(ret);
2293 }
2294 }
2295#endif
2296 for (i = xmlOutputCallbackNr - 1;i >= 0;i--) {
2297 if ((xmlOutputCallbackTable[i].matchcallback != NULL) &&
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002298 (xmlOutputCallbackTable[i].matchcallback(URI) != 0)) {
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002299#if defined(LIBXML_HTTP_ENABLED) && defined(HAVE_ZLIB_H)
2300 /* Need to pass compression parameter into HTTP open calls */
2301 if (xmlOutputCallbackTable[i].matchcallback == xmlIOHTTPMatch)
2302 context = xmlIOHTTPOpenW(URI, compression);
2303 else
2304#endif
2305 context = xmlOutputCallbackTable[i].opencallback(URI);
2306 if (context != NULL)
2307 break;
2308 }
Owen Taylor3473f882001-02-23 17:55:21 +00002309 }
2310 }
Daniel Veillardf012a642001-07-23 19:10:52 +00002311
Owen Taylor3473f882001-02-23 17:55:21 +00002312 if (context == NULL) {
2313 return(NULL);
2314 }
2315
2316 /*
2317 * Allocate the Output buffer front-end.
2318 */
2319 ret = xmlAllocOutputBuffer(encoder);
2320 if (ret != NULL) {
2321 ret->context = context;
2322 ret->writecallback = xmlOutputCallbackTable[i].writecallback;
2323 ret->closecallback = xmlOutputCallbackTable[i].closecallback;
2324 }
2325 return(ret);
2326}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002327#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002328
2329/**
2330 * xmlParserInputBufferCreateFile:
2331 * @file: a FILE*
2332 * @enc: the charset encoding if known
2333 *
2334 * Create a buffered parser input for the progressive parsing of a FILE *
2335 * buffered C I/O
2336 *
2337 * Returns the new parser input or NULL
2338 */
2339xmlParserInputBufferPtr
2340xmlParserInputBufferCreateFile(FILE *file, xmlCharEncoding enc) {
2341 xmlParserInputBufferPtr ret;
2342
2343 if (xmlInputCallbackInitialized == 0)
2344 xmlRegisterDefaultInputCallbacks();
2345
2346 if (file == NULL) return(NULL);
2347
2348 ret = xmlAllocParserInputBuffer(enc);
2349 if (ret != NULL) {
2350 ret->context = file;
2351 ret->readcallback = xmlFileRead;
2352 ret->closecallback = xmlFileFlush;
2353 }
2354
2355 return(ret);
2356}
2357
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002358#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002359/**
2360 * xmlOutputBufferCreateFile:
2361 * @file: a FILE*
2362 * @encoder: the encoding converter or NULL
2363 *
2364 * Create a buffered output for the progressive saving to a FILE *
2365 * buffered C I/O
2366 *
2367 * Returns the new parser output or NULL
2368 */
2369xmlOutputBufferPtr
2370xmlOutputBufferCreateFile(FILE *file, xmlCharEncodingHandlerPtr encoder) {
2371 xmlOutputBufferPtr ret;
2372
2373 if (xmlOutputCallbackInitialized == 0)
2374 xmlRegisterDefaultOutputCallbacks();
2375
2376 if (file == NULL) return(NULL);
2377
2378 ret = xmlAllocOutputBuffer(encoder);
2379 if (ret != NULL) {
2380 ret->context = file;
2381 ret->writecallback = xmlFileWrite;
2382 ret->closecallback = xmlFileFlush;
2383 }
2384
2385 return(ret);
2386}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002387#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002388
2389/**
2390 * xmlParserInputBufferCreateFd:
2391 * @fd: a file descriptor number
2392 * @enc: the charset encoding if known
2393 *
2394 * Create a buffered parser input for the progressive parsing for the input
2395 * from a file descriptor
2396 *
2397 * Returns the new parser input or NULL
2398 */
2399xmlParserInputBufferPtr
2400xmlParserInputBufferCreateFd(int fd, xmlCharEncoding enc) {
2401 xmlParserInputBufferPtr ret;
2402
2403 if (fd < 0) return(NULL);
2404
2405 ret = xmlAllocParserInputBuffer(enc);
2406 if (ret != NULL) {
Daniel Veillard8fcc4942001-07-17 20:07:33 +00002407 ret->context = (void *) (long) fd;
Owen Taylor3473f882001-02-23 17:55:21 +00002408 ret->readcallback = xmlFdRead;
2409 ret->closecallback = xmlFdClose;
2410 }
2411
2412 return(ret);
2413}
2414
2415/**
2416 * xmlParserInputBufferCreateMem:
2417 * @mem: the memory input
2418 * @size: the length of the memory block
2419 * @enc: the charset encoding if known
2420 *
2421 * Create a buffered parser input for the progressive parsing for the input
2422 * from a memory area.
2423 *
2424 * Returns the new parser input or NULL
2425 */
2426xmlParserInputBufferPtr
2427xmlParserInputBufferCreateMem(const char *mem, int size, xmlCharEncoding enc) {
2428 xmlParserInputBufferPtr ret;
2429
2430 if (size <= 0) return(NULL);
2431 if (mem == NULL) return(NULL);
2432
2433 ret = xmlAllocParserInputBuffer(enc);
2434 if (ret != NULL) {
2435 ret->context = (void *) mem;
2436 ret->readcallback = (xmlInputReadCallback) xmlNop;
2437 ret->closecallback = NULL;
2438 xmlBufferAdd(ret->buffer, (const xmlChar *) mem, size);
2439 }
2440
2441 return(ret);
2442}
2443
2444/**
Daniel Veillard53350552003-09-18 13:35:51 +00002445 * xmlParserInputBufferCreateStatic:
2446 * @mem: the memory input
2447 * @size: the length of the memory block
2448 * @enc: the charset encoding if known
2449 *
2450 * Create a buffered parser input for the progressive parsing for the input
2451 * from an immutable memory area. This will not copy the memory area to
2452 * the buffer, but the memory is expected to be available until the end of
2453 * the parsing, this is useful for example when using mmap'ed file.
2454 *
2455 * Returns the new parser input or NULL
2456 */
2457xmlParserInputBufferPtr
2458xmlParserInputBufferCreateStatic(const char *mem, int size,
2459 xmlCharEncoding enc) {
2460 xmlParserInputBufferPtr ret;
2461
2462 if (size <= 0) return(NULL);
2463 if (mem == NULL) return(NULL);
2464
2465 ret = (xmlParserInputBufferPtr) xmlMalloc(sizeof(xmlParserInputBuffer));
2466 if (ret == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002467 xmlIOErrMemory("creating input buffer");
Daniel Veillard53350552003-09-18 13:35:51 +00002468 return(NULL);
2469 }
2470 memset(ret, 0, (size_t) sizeof(xmlParserInputBuffer));
Daniel Veillarde72c5082003-09-19 12:44:05 +00002471 ret->buffer = xmlBufferCreateStatic((void *)mem, (size_t) size);
Daniel Veillard53350552003-09-18 13:35:51 +00002472 if (ret->buffer == NULL) {
2473 xmlFree(ret);
2474 return(NULL);
2475 }
2476 ret->encoder = xmlGetCharEncodingHandler(enc);
2477 if (ret->encoder != NULL)
2478 ret->raw = xmlBufferCreateSize(2 * xmlDefaultBufferSize);
2479 else
2480 ret->raw = NULL;
2481 ret->compressed = -1;
2482 ret->context = (void *) mem;
2483 ret->readcallback = NULL;
2484 ret->closecallback = NULL;
2485
2486 return(ret);
2487}
2488
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002489#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillard53350552003-09-18 13:35:51 +00002490/**
Owen Taylor3473f882001-02-23 17:55:21 +00002491 * xmlOutputBufferCreateFd:
2492 * @fd: a file descriptor number
2493 * @encoder: the encoding converter or NULL
2494 *
2495 * Create a buffered output for the progressive saving
2496 * to a file descriptor
2497 *
2498 * Returns the new parser output or NULL
2499 */
2500xmlOutputBufferPtr
2501xmlOutputBufferCreateFd(int fd, xmlCharEncodingHandlerPtr encoder) {
2502 xmlOutputBufferPtr ret;
2503
2504 if (fd < 0) return(NULL);
2505
2506 ret = xmlAllocOutputBuffer(encoder);
2507 if (ret != NULL) {
Daniel Veillard8fcc4942001-07-17 20:07:33 +00002508 ret->context = (void *) (long) fd;
Owen Taylor3473f882001-02-23 17:55:21 +00002509 ret->writecallback = xmlFdWrite;
Daniel Veillard7db38712002-02-07 16:39:11 +00002510 ret->closecallback = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002511 }
2512
2513 return(ret);
2514}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002515#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002516
2517/**
2518 * xmlParserInputBufferCreateIO:
2519 * @ioread: an I/O read function
2520 * @ioclose: an I/O close function
2521 * @ioctx: an I/O handler
2522 * @enc: the charset encoding if known
2523 *
2524 * Create a buffered parser input for the progressive parsing for the input
2525 * from an I/O handler
2526 *
2527 * Returns the new parser input or NULL
2528 */
2529xmlParserInputBufferPtr
2530xmlParserInputBufferCreateIO(xmlInputReadCallback ioread,
2531 xmlInputCloseCallback ioclose, void *ioctx, xmlCharEncoding enc) {
2532 xmlParserInputBufferPtr ret;
2533
2534 if (ioread == NULL) return(NULL);
2535
2536 ret = xmlAllocParserInputBuffer(enc);
2537 if (ret != NULL) {
2538 ret->context = (void *) ioctx;
2539 ret->readcallback = ioread;
2540 ret->closecallback = ioclose;
2541 }
2542
2543 return(ret);
2544}
2545
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002546#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002547/**
2548 * xmlOutputBufferCreateIO:
2549 * @iowrite: an I/O write function
2550 * @ioclose: an I/O close function
2551 * @ioctx: an I/O handler
Daniel Veillard9d06d302002-01-22 18:15:52 +00002552 * @encoder: the charset encoding if known
Owen Taylor3473f882001-02-23 17:55:21 +00002553 *
2554 * Create a buffered output for the progressive saving
2555 * to an I/O handler
2556 *
2557 * Returns the new parser output or NULL
2558 */
2559xmlOutputBufferPtr
2560xmlOutputBufferCreateIO(xmlOutputWriteCallback iowrite,
2561 xmlOutputCloseCallback ioclose, void *ioctx,
2562 xmlCharEncodingHandlerPtr encoder) {
2563 xmlOutputBufferPtr ret;
2564
2565 if (iowrite == NULL) return(NULL);
2566
2567 ret = xmlAllocOutputBuffer(encoder);
2568 if (ret != NULL) {
2569 ret->context = (void *) ioctx;
2570 ret->writecallback = iowrite;
2571 ret->closecallback = ioclose;
2572 }
2573
2574 return(ret);
2575}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002576#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002577
2578/**
2579 * xmlParserInputBufferPush:
2580 * @in: a buffered parser input
2581 * @len: the size in bytes of the array.
2582 * @buf: an char array
2583 *
2584 * Push the content of the arry in the input buffer
2585 * This routine handle the I18N transcoding to internal UTF-8
2586 * This is used when operating the parser in progressive (push) mode.
2587 *
2588 * Returns the number of chars read and stored in the buffer, or -1
2589 * in case of error.
2590 */
2591int
2592xmlParserInputBufferPush(xmlParserInputBufferPtr in,
2593 int len, const char *buf) {
2594 int nbchars = 0;
2595
2596 if (len < 0) return(0);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002597 if ((in == NULL) || (in->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002598 if (in->encoder != NULL) {
Daniel Veillard36711902004-02-11 13:25:26 +00002599 unsigned int use;
2600
Owen Taylor3473f882001-02-23 17:55:21 +00002601 /*
2602 * Store the data in the incoming raw buffer
2603 */
2604 if (in->raw == NULL) {
2605 in->raw = xmlBufferCreate();
2606 }
2607 xmlBufferAdd(in->raw, (const xmlChar *) buf, len);
2608
2609 /*
2610 * convert as much as possible to the parser reading buffer.
2611 */
Daniel Veillard36711902004-02-11 13:25:26 +00002612 use = in->raw->use;
Owen Taylor3473f882001-02-23 17:55:21 +00002613 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
2614 if (nbchars < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002615 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002616 in->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00002617 return(-1);
2618 }
Daniel Veillard36711902004-02-11 13:25:26 +00002619 in->rawconsumed += (use - in->raw->use);
Owen Taylor3473f882001-02-23 17:55:21 +00002620 } else {
2621 nbchars = len;
2622 xmlBufferAdd(in->buffer, (xmlChar *) buf, nbchars);
2623 }
2624#ifdef DEBUG_INPUT
2625 xmlGenericError(xmlGenericErrorContext,
2626 "I/O: pushed %d chars, buffer %d/%d\n",
2627 nbchars, in->buffer->use, in->buffer->size);
2628#endif
2629 return(nbchars);
2630}
2631
2632/**
Daniel Veillardddffd2a2002-03-05 20:28:20 +00002633 * endOfInput:
2634 *
2635 * When reading from an Input channel indicated end of file or error
2636 * don't reread from it again.
2637 */
2638static int
2639endOfInput (void * context ATTRIBUTE_UNUSED,
2640 char * buffer ATTRIBUTE_UNUSED,
2641 int len ATTRIBUTE_UNUSED) {
2642 return(0);
2643}
2644
2645/**
Owen Taylor3473f882001-02-23 17:55:21 +00002646 * xmlParserInputBufferGrow:
2647 * @in: a buffered parser input
2648 * @len: indicative value of the amount of chars to read
2649 *
2650 * Grow up the content of the input buffer, the old data are preserved
2651 * This routine handle the I18N transcoding to internal UTF-8
2652 * This routine is used when operating the parser in normal (pull) mode
2653 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002654 * TODO: one should be able to remove one extra copy by copying directly
Owen Taylor3473f882001-02-23 17:55:21 +00002655 * onto in->buffer or in->raw
2656 *
2657 * Returns the number of chars read and stored in the buffer, or -1
2658 * in case of error.
2659 */
2660int
2661xmlParserInputBufferGrow(xmlParserInputBufferPtr in, int len) {
2662 char *buffer = NULL;
2663 int res = 0;
2664 int nbchars = 0;
2665 int buffree;
Daniel Veillard9e412302002-06-10 15:59:44 +00002666 unsigned int needSize;
Owen Taylor3473f882001-02-23 17:55:21 +00002667
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002668 if ((in == NULL) || (in->error)) return(-1);
Daniel Veillard6155d8a2003-08-19 15:01:28 +00002669 if ((len <= MINLEN) && (len != 4))
Owen Taylor3473f882001-02-23 17:55:21 +00002670 len = MINLEN;
Daniel Veillard6155d8a2003-08-19 15:01:28 +00002671
Owen Taylor3473f882001-02-23 17:55:21 +00002672 buffree = in->buffer->size - in->buffer->use;
2673 if (buffree <= 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002674 xmlIOErr(XML_IO_BUFFER_FULL, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002675 in->error = XML_IO_BUFFER_FULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002676 return(0);
2677 }
Owen Taylor3473f882001-02-23 17:55:21 +00002678
Daniel Veillarde5354492002-05-16 08:43:22 +00002679 needSize = in->buffer->use + len + 1;
2680 if (needSize > in->buffer->size){
2681 if (!xmlBufferResize(in->buffer, needSize)){
Daniel Veillard05d987b2003-10-08 11:54:57 +00002682 xmlIOErrMemory("growing input buffer");
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002683 in->error = XML_ERR_NO_MEMORY;
Daniel Veillarde5354492002-05-16 08:43:22 +00002684 return(0);
2685 }
Owen Taylor3473f882001-02-23 17:55:21 +00002686 }
Daniel Veillarde5354492002-05-16 08:43:22 +00002687 buffer = (char *)&in->buffer->content[in->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +00002688
2689 /*
2690 * Call the read method for this I/O type.
2691 */
2692 if (in->readcallback != NULL) {
2693 res = in->readcallback(in->context, &buffer[0], len);
Daniel Veillardddffd2a2002-03-05 20:28:20 +00002694 if (res <= 0)
2695 in->readcallback = endOfInput;
Owen Taylor3473f882001-02-23 17:55:21 +00002696 } else {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002697 xmlIOErr(XML_IO_NO_INPUT, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002698 in->error = XML_IO_NO_INPUT;
Owen Taylor3473f882001-02-23 17:55:21 +00002699 return(-1);
2700 }
2701 if (res < 0) {
Owen Taylor3473f882001-02-23 17:55:21 +00002702 return(-1);
2703 }
2704 len = res;
2705 if (in->encoder != NULL) {
Daniel Veillard36711902004-02-11 13:25:26 +00002706 unsigned int use;
2707
Owen Taylor3473f882001-02-23 17:55:21 +00002708 /*
2709 * Store the data in the incoming raw buffer
2710 */
2711 if (in->raw == NULL) {
2712 in->raw = xmlBufferCreate();
2713 }
2714 xmlBufferAdd(in->raw, (const xmlChar *) buffer, len);
2715
2716 /*
2717 * convert as much as possible to the parser reading buffer.
2718 */
Daniel Veillard36711902004-02-11 13:25:26 +00002719 use = in->raw->use;
Owen Taylor3473f882001-02-23 17:55:21 +00002720 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
2721 if (nbchars < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002722 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002723 in->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00002724 return(-1);
2725 }
Daniel Veillard36711902004-02-11 13:25:26 +00002726 in->rawconsumed += (use - in->raw->use);
Owen Taylor3473f882001-02-23 17:55:21 +00002727 } else {
2728 nbchars = len;
Daniel Veillarde5354492002-05-16 08:43:22 +00002729 in->buffer->use += nbchars;
2730 buffer[nbchars] = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002731 }
2732#ifdef DEBUG_INPUT
2733 xmlGenericError(xmlGenericErrorContext,
2734 "I/O: read %d chars, buffer %d/%d\n",
2735 nbchars, in->buffer->use, in->buffer->size);
2736#endif
Owen Taylor3473f882001-02-23 17:55:21 +00002737 return(nbchars);
2738}
2739
2740/**
2741 * xmlParserInputBufferRead:
2742 * @in: a buffered parser input
2743 * @len: indicative value of the amount of chars to read
2744 *
2745 * Refresh the content of the input buffer, the old data are considered
2746 * consumed
2747 * This routine handle the I18N transcoding to internal UTF-8
2748 *
2749 * Returns the number of chars read and stored in the buffer, or -1
2750 * in case of error.
2751 */
2752int
2753xmlParserInputBufferRead(xmlParserInputBufferPtr in, int len) {
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002754 if ((in == NULL) || (in->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002755 if (in->readcallback != NULL)
2756 return(xmlParserInputBufferGrow(in, len));
Daniel Veillard53350552003-09-18 13:35:51 +00002757 else if ((in->buffer != NULL) &&
2758 (in->buffer->alloc == XML_BUFFER_ALLOC_IMMUTABLE))
2759 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00002760 else
2761 return(-1);
2762}
2763
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002764#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002765/**
2766 * xmlOutputBufferWrite:
2767 * @out: a buffered parser output
2768 * @len: the size in bytes of the array.
2769 * @buf: an char array
2770 *
2771 * Write the content of the array in the output I/O buffer
2772 * This routine handle the I18N transcoding from internal UTF-8
2773 * The buffer is lossless, i.e. will store in case of partial
2774 * or delayed writes.
2775 *
2776 * Returns the number of chars immediately written, or -1
2777 * in case of error.
2778 */
2779int
2780xmlOutputBufferWrite(xmlOutputBufferPtr out, int len, const char *buf) {
2781 int nbchars = 0; /* number of chars to output to I/O */
2782 int ret; /* return from function call */
2783 int written = 0; /* number of char written to I/O so far */
2784 int chunk; /* number of byte curreent processed from buf */
2785
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002786 if ((out == NULL) || (out->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002787 if (len < 0) return(0);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002788 if (out->error) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002789
2790 do {
2791 chunk = len;
2792 if (chunk > 4 * MINLEN)
2793 chunk = 4 * MINLEN;
2794
2795 /*
2796 * first handle encoding stuff.
2797 */
2798 if (out->encoder != NULL) {
2799 /*
2800 * Store the data in the incoming raw buffer
2801 */
2802 if (out->conv == NULL) {
2803 out->conv = xmlBufferCreate();
2804 }
2805 xmlBufferAdd(out->buffer, (const xmlChar *) buf, chunk);
2806
2807 if ((out->buffer->use < MINLEN) && (chunk == len))
2808 goto done;
2809
2810 /*
2811 * convert as much as possible to the parser reading buffer.
2812 */
2813 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
Daniel Veillard809faa52003-02-10 15:43:53 +00002814 if ((ret < 0) && (ret != -3)) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002815 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002816 out->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00002817 return(-1);
2818 }
2819 nbchars = out->conv->use;
2820 } else {
2821 xmlBufferAdd(out->buffer, (const xmlChar *) buf, chunk);
2822 nbchars = out->buffer->use;
2823 }
2824 buf += chunk;
2825 len -= chunk;
2826
2827 if ((nbchars < MINLEN) && (len <= 0))
2828 goto done;
2829
2830 if (out->writecallback) {
2831 /*
2832 * second write the stuff to the I/O channel
2833 */
2834 if (out->encoder != NULL) {
2835 ret = out->writecallback(out->context,
2836 (const char *)out->conv->content, nbchars);
2837 if (ret >= 0)
Daniel Veillardedddff92001-05-02 10:58:52 +00002838 xmlBufferShrink(out->conv, ret);
Owen Taylor3473f882001-02-23 17:55:21 +00002839 } else {
2840 ret = out->writecallback(out->context,
2841 (const char *)out->buffer->content, nbchars);
2842 if (ret >= 0)
Daniel Veillardedddff92001-05-02 10:58:52 +00002843 xmlBufferShrink(out->buffer, ret);
Owen Taylor3473f882001-02-23 17:55:21 +00002844 }
2845 if (ret < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002846 xmlIOErr(XML_IO_WRITE, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002847 out->error = XML_IO_WRITE;
Owen Taylor3473f882001-02-23 17:55:21 +00002848 return(ret);
2849 }
2850 out->written += ret;
2851 }
2852 written += nbchars;
2853 } while (len > 0);
2854
2855done:
2856#ifdef DEBUG_INPUT
2857 xmlGenericError(xmlGenericErrorContext,
2858 "I/O: wrote %d chars\n", written);
2859#endif
2860 return(written);
2861}
2862
2863/**
2864 * xmlOutputBufferWriteString:
2865 * @out: a buffered parser output
2866 * @str: a zero terminated C string
2867 *
2868 * Write the content of the string in the output I/O buffer
2869 * This routine handle the I18N transcoding from internal UTF-8
2870 * The buffer is lossless, i.e. will store in case of partial
2871 * or delayed writes.
2872 *
2873 * Returns the number of chars immediately written, or -1
2874 * in case of error.
2875 */
2876int
2877xmlOutputBufferWriteString(xmlOutputBufferPtr out, const char *str) {
2878 int len;
2879
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002880 if ((out == NULL) || (out->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002881 if (str == NULL)
2882 return(-1);
2883 len = strlen(str);
2884
2885 if (len > 0)
2886 return(xmlOutputBufferWrite(out, len, str));
2887 return(len);
2888}
2889
2890/**
2891 * xmlOutputBufferFlush:
2892 * @out: a buffered output
2893 *
2894 * flushes the output I/O channel
2895 *
2896 * Returns the number of byte written or -1 in case of error.
2897 */
2898int
2899xmlOutputBufferFlush(xmlOutputBufferPtr out) {
2900 int nbchars = 0, ret = 0;
2901
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002902 if ((out == NULL) || (out->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002903 /*
2904 * first handle encoding stuff.
2905 */
2906 if ((out->conv != NULL) && (out->encoder != NULL)) {
2907 /*
2908 * convert as much as possible to the parser reading buffer.
2909 */
2910 nbchars = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
2911 if (nbchars < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002912 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002913 out->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00002914 return(-1);
2915 }
2916 }
2917
2918 /*
2919 * second flush the stuff to the I/O channel
2920 */
2921 if ((out->conv != NULL) && (out->encoder != NULL) &&
2922 (out->writecallback != NULL)) {
2923 ret = out->writecallback(out->context,
2924 (const char *)out->conv->content, out->conv->use);
2925 if (ret >= 0)
2926 xmlBufferShrink(out->conv, ret);
2927 } else if (out->writecallback != NULL) {
2928 ret = out->writecallback(out->context,
2929 (const char *)out->buffer->content, out->buffer->use);
2930 if (ret >= 0)
2931 xmlBufferShrink(out->buffer, ret);
2932 }
2933 if (ret < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002934 xmlIOErr(XML_IO_FLUSH, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002935 out->error = XML_IO_FLUSH;
Owen Taylor3473f882001-02-23 17:55:21 +00002936 return(ret);
2937 }
2938 out->written += ret;
2939
2940#ifdef DEBUG_INPUT
2941 xmlGenericError(xmlGenericErrorContext,
2942 "I/O: flushed %d chars\n", ret);
2943#endif
2944 return(ret);
2945}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002946#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002947
Daniel Veillard5e2dace2001-07-18 19:30:27 +00002948/**
Owen Taylor3473f882001-02-23 17:55:21 +00002949 * xmlParserGetDirectory:
2950 * @filename: the path to a file
2951 *
2952 * lookup the directory for that file
2953 *
2954 * Returns a new allocated string containing the directory, or NULL.
2955 */
2956char *
2957xmlParserGetDirectory(const char *filename) {
2958 char *ret = NULL;
2959 char dir[1024];
2960 char *cur;
2961 char sep = '/';
2962
Igor Zlatkovic9181cc02002-09-29 17:51:06 +00002963#ifdef _WIN32_WCE /* easy way by now ... wince does not have dirs! */
2964 return NULL;
2965#endif
2966
Owen Taylor3473f882001-02-23 17:55:21 +00002967 if (xmlInputCallbackInitialized == 0)
2968 xmlRegisterDefaultInputCallbacks();
2969
2970 if (filename == NULL) return(NULL);
Daniel Veillard3c5ed912002-01-08 10:36:16 +00002971#if defined(WIN32) && !defined(__CYGWIN__)
Owen Taylor3473f882001-02-23 17:55:21 +00002972 sep = '\\';
2973#endif
2974
2975 strncpy(dir, filename, 1023);
2976 dir[1023] = 0;
2977 cur = &dir[strlen(dir)];
2978 while (cur > dir) {
2979 if (*cur == sep) break;
2980 cur --;
2981 }
2982 if (*cur == sep) {
2983 if (cur == dir) dir[1] = 0;
2984 else *cur = 0;
2985 ret = xmlMemStrdup(dir);
2986 } else {
2987 if (getcwd(dir, 1024) != NULL) {
2988 dir[1023] = 0;
2989 ret = xmlMemStrdup(dir);
2990 }
2991 }
2992 return(ret);
2993}
2994
2995/****************************************************************
2996 * *
2997 * External entities loading *
2998 * *
2999 ****************************************************************/
3000
Daniel Veillarda840b692003-10-19 13:35:37 +00003001/**
3002 * xmlCheckHTTPInput:
3003 * @ctxt: an XML parser context
3004 * @ret: an XML parser input
3005 *
3006 * Check an input in case it was created from an HTTP stream, in that
3007 * case it will handle encoding and update of the base URL in case of
3008 * redirection. It also checks for HTTP errors in which case the input
3009 * is cleanly freed up and an appropriate error is raised in context
3010 *
3011 * Returns the input or NULL in case of HTTP error.
3012 */
3013xmlParserInputPtr
3014xmlCheckHTTPInput(xmlParserCtxtPtr ctxt, xmlParserInputPtr ret) {
3015#ifdef LIBXML_HTTP_ENABLED
3016 if ((ret != NULL) && (ret->buf != NULL) &&
3017 (ret->buf->readcallback == xmlIOHTTPRead) &&
3018 (ret->buf->context != NULL)) {
3019 const char *encoding;
3020 const char *redir;
3021 const char *mime;
3022 int code;
3023
3024 code = xmlNanoHTTPReturnCode(ret->buf->context);
3025 if (code >= 400) {
3026 /* fatal error */
3027 if (ret->filename != NULL)
Daniel Veillarde8039df2003-10-27 11:25:13 +00003028 __xmlLoaderErr(ctxt, "failed to load HTTP resource \"%s\"\n",
Daniel Veillarda840b692003-10-19 13:35:37 +00003029 (const char *) ret->filename);
3030 else
Daniel Veillarde8039df2003-10-27 11:25:13 +00003031 __xmlLoaderErr(ctxt, "failed to load HTTP resource\n", NULL);
Daniel Veillarda840b692003-10-19 13:35:37 +00003032 xmlFreeInputStream(ret);
3033 ret = NULL;
3034 } else {
3035
3036 mime = xmlNanoHTTPMimeType(ret->buf->context);
3037 if ((xmlStrstr(BAD_CAST mime, BAD_CAST "/xml")) ||
3038 (xmlStrstr(BAD_CAST mime, BAD_CAST "+xml"))) {
3039 encoding = xmlNanoHTTPEncoding(ret->buf->context);
3040 if (encoding != NULL) {
3041 xmlCharEncodingHandlerPtr handler;
3042
3043 handler = xmlFindCharEncodingHandler(encoding);
3044 if (handler != NULL) {
3045 xmlSwitchInputEncoding(ctxt, ret, handler);
3046 } else {
3047 __xmlErrEncoding(ctxt, XML_ERR_UNKNOWN_ENCODING,
3048 "Unknown encoding %s",
3049 BAD_CAST encoding, NULL);
3050 }
3051 if (ret->encoding == NULL)
3052 ret->encoding = xmlStrdup(BAD_CAST encoding);
3053 }
3054#if 0
3055 } else if (xmlStrstr(BAD_CAST mime, BAD_CAST "html")) {
3056#endif
3057 }
3058 redir = xmlNanoHTTPRedir(ret->buf->context);
3059 if (redir != NULL) {
3060 if (ret->filename != NULL)
3061 xmlFree((xmlChar *) ret->filename);
3062 if (ret->directory != NULL) {
3063 xmlFree((xmlChar *) ret->directory);
3064 ret->directory = NULL;
3065 }
3066 ret->filename =
3067 (char *) xmlStrdup((const xmlChar *) redir);
3068 }
3069 }
3070 }
3071#endif
3072 return(ret);
3073}
3074
Daniel Veillard561b7f82002-03-20 21:55:57 +00003075static int xmlSysIDExists(const char *URL) {
Daniel Veillard6990bf32001-08-23 21:17:48 +00003076#ifdef HAVE_STAT
3077 int ret;
3078 struct stat info;
3079 const char *path;
3080
3081 if (URL == NULL)
3082 return(0);
3083
Daniel Veillardf4862f02002-09-10 11:13:43 +00003084 if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003085#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +00003086 path = &URL[17];
3087#else
Daniel Veillard6990bf32001-08-23 21:17:48 +00003088 path = &URL[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +00003089#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00003090 else if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003091#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillard6990bf32001-08-23 21:17:48 +00003092 path = &URL[8];
3093#else
3094 path = &URL[7];
3095#endif
3096 } else
3097 path = URL;
3098 ret = stat(path, &info);
Daniel Veillard561b7f82002-03-20 21:55:57 +00003099 if (ret == 0)
3100 return(1);
Daniel Veillard6990bf32001-08-23 21:17:48 +00003101#endif
Daniel Veillard561b7f82002-03-20 21:55:57 +00003102 return(0);
Daniel Veillard6990bf32001-08-23 21:17:48 +00003103}
Daniel Veillard6990bf32001-08-23 21:17:48 +00003104
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003105/**
Owen Taylor3473f882001-02-23 17:55:21 +00003106 * xmlDefaultExternalEntityLoader:
3107 * @URL: the URL for the entity to load
3108 * @ID: the System ID for the entity to load
3109 * @ctxt: the context in which the entity is called or NULL
3110 *
3111 * By default we don't load external entitites, yet.
3112 *
3113 * Returns a new allocated xmlParserInputPtr, or NULL.
3114 */
Daniel Veillarda840b692003-10-19 13:35:37 +00003115static xmlParserInputPtr
Owen Taylor3473f882001-02-23 17:55:21 +00003116xmlDefaultExternalEntityLoader(const char *URL, const char *ID,
Daniel Veillarda840b692003-10-19 13:35:37 +00003117 xmlParserCtxtPtr ctxt)
3118{
Owen Taylor3473f882001-02-23 17:55:21 +00003119 xmlParserInputPtr ret = NULL;
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003120 xmlChar *resource = NULL;
Daniel Veillarda840b692003-10-19 13:35:37 +00003121
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003122#ifdef LIBXML_CATALOG_ENABLED
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003123 xmlCatalogAllow pref;
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003124#endif
Owen Taylor3473f882001-02-23 17:55:21 +00003125
3126#ifdef DEBUG_EXTERNAL_ENTITIES
3127 xmlGenericError(xmlGenericErrorContext,
Daniel Veillarda840b692003-10-19 13:35:37 +00003128 "xmlDefaultExternalEntityLoader(%s, xxx)\n", URL);
Owen Taylor3473f882001-02-23 17:55:21 +00003129#endif
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003130#ifdef LIBXML_CATALOG_ENABLED
Daniel Veillard61b93382003-11-03 14:28:31 +00003131 if ((ctxt != NULL) && (ctxt->options & XML_PARSE_NONET)) {
3132 int options = ctxt->options;
3133
3134 ctxt->options -= XML_PARSE_NONET;
3135 ret = xmlNoNetExternalEntityLoader(URL, ID, ctxt);
3136 ctxt->options = options;
3137 return(ret);
3138 }
3139
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003140 /*
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003141 * If the resource doesn't exists as a file,
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003142 * try to load it from the resource pointed in the catalogs
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003143 */
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003144 pref = xmlCatalogGetDefaults();
3145
Daniel Veillard561b7f82002-03-20 21:55:57 +00003146 if ((pref != XML_CATA_ALLOW_NONE) && (!xmlSysIDExists(URL))) {
Daniel Veillarda840b692003-10-19 13:35:37 +00003147 /*
3148 * Do a local lookup
3149 */
3150 if ((ctxt->catalogs != NULL) &&
3151 ((pref == XML_CATA_ALLOW_ALL) ||
3152 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3153 resource = xmlCatalogLocalResolve(ctxt->catalogs,
3154 (const xmlChar *) ID,
3155 (const xmlChar *) URL);
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003156 }
Daniel Veillarda840b692003-10-19 13:35:37 +00003157 /*
3158 * Try a global lookup
3159 */
3160 if ((resource == NULL) &&
3161 ((pref == XML_CATA_ALLOW_ALL) ||
3162 (pref == XML_CATA_ALLOW_GLOBAL))) {
3163 resource = xmlCatalogResolve((const xmlChar *) ID,
3164 (const xmlChar *) URL);
3165 }
3166 if ((resource == NULL) && (URL != NULL))
3167 resource = xmlStrdup((const xmlChar *) URL);
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003168
Daniel Veillarda840b692003-10-19 13:35:37 +00003169 /*
3170 * TODO: do an URI lookup on the reference
3171 */
3172 if ((resource != NULL)
3173 && (!xmlSysIDExists((const char *) resource))) {
3174 xmlChar *tmp = NULL;
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003175
Daniel Veillarda840b692003-10-19 13:35:37 +00003176 if ((ctxt->catalogs != NULL) &&
3177 ((pref == XML_CATA_ALLOW_ALL) ||
3178 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3179 tmp = xmlCatalogLocalResolveURI(ctxt->catalogs, resource);
3180 }
3181 if ((tmp == NULL) &&
3182 ((pref == XML_CATA_ALLOW_ALL) ||
3183 (pref == XML_CATA_ALLOW_GLOBAL))) {
3184 tmp = xmlCatalogResolveURI(resource);
3185 }
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003186
Daniel Veillarda840b692003-10-19 13:35:37 +00003187 if (tmp != NULL) {
3188 xmlFree(resource);
3189 resource = tmp;
3190 }
3191 }
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003192 }
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003193#endif
3194
3195 if (resource == NULL)
Daniel Veillarda840b692003-10-19 13:35:37 +00003196 resource = (xmlChar *) URL;
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003197
3198 if (resource == NULL) {
Daniel Veillarda840b692003-10-19 13:35:37 +00003199 if (ID == NULL)
3200 ID = "NULL";
Daniel Veillarde8039df2003-10-27 11:25:13 +00003201 __xmlLoaderErr(ctxt, "failed to load external entity \"%s\"\n", ID);
Daniel Veillarda840b692003-10-19 13:35:37 +00003202 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003203 }
Daniel Veillarda840b692003-10-19 13:35:37 +00003204 ret = xmlNewInputFromFile(ctxt, (const char *) resource);
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003205 if ((resource != NULL) && (resource != (xmlChar *) URL))
Daniel Veillarda840b692003-10-19 13:35:37 +00003206 xmlFree(resource);
3207 return (ret);
Owen Taylor3473f882001-02-23 17:55:21 +00003208}
3209
3210static xmlExternalEntityLoader xmlCurrentExternalEntityLoader =
3211 xmlDefaultExternalEntityLoader;
3212
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003213/**
Owen Taylor3473f882001-02-23 17:55:21 +00003214 * xmlSetExternalEntityLoader:
3215 * @f: the new entity resolver function
3216 *
3217 * Changes the defaultexternal entity resolver function for the application
3218 */
3219void
3220xmlSetExternalEntityLoader(xmlExternalEntityLoader f) {
3221 xmlCurrentExternalEntityLoader = f;
3222}
3223
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003224/**
Owen Taylor3473f882001-02-23 17:55:21 +00003225 * xmlGetExternalEntityLoader:
3226 *
3227 * Get the default external entity resolver function for the application
3228 *
3229 * Returns the xmlExternalEntityLoader function pointer
3230 */
3231xmlExternalEntityLoader
3232xmlGetExternalEntityLoader(void) {
3233 return(xmlCurrentExternalEntityLoader);
3234}
3235
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003236/**
Owen Taylor3473f882001-02-23 17:55:21 +00003237 * xmlLoadExternalEntity:
3238 * @URL: the URL for the entity to load
Daniel Veillard9f7b84b2001-08-23 15:31:19 +00003239 * @ID: the Public ID for the entity to load
Owen Taylor3473f882001-02-23 17:55:21 +00003240 * @ctxt: the context in which the entity is called or NULL
3241 *
3242 * Load an external entity, note that the use of this function for
3243 * unparsed entities may generate problems
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003244 * TODO: a more generic External entity API must be designed
Owen Taylor3473f882001-02-23 17:55:21 +00003245 *
3246 * Returns the xmlParserInputPtr or NULL
3247 */
3248xmlParserInputPtr
3249xmlLoadExternalEntity(const char *URL, const char *ID,
3250 xmlParserCtxtPtr ctxt) {
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +00003251 if ((URL != NULL) && (xmlSysIDExists(URL) == 0)) {
3252 char *canonicFilename;
3253 xmlParserInputPtr ret;
3254
3255 canonicFilename = (char *) xmlCanonicPath((const xmlChar *) URL);
3256 if (canonicFilename == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00003257 xmlIOErrMemory("building canonical path\n");
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +00003258 return(NULL);
3259 }
3260
3261 ret = xmlCurrentExternalEntityLoader(canonicFilename, ID, ctxt);
3262 xmlFree(canonicFilename);
3263 return(ret);
3264 }
Owen Taylor3473f882001-02-23 17:55:21 +00003265 return(xmlCurrentExternalEntityLoader(URL, ID, ctxt));
3266}
3267
Daniel Veillard8bdb91d2001-10-31 17:52:43 +00003268/************************************************************************
3269 * *
3270 * Disabling Network access *
3271 * *
3272 ************************************************************************/
3273
3274#ifdef LIBXML_CATALOG_ENABLED
3275static int
3276xmlNoNetExists(const char *URL)
3277{
3278#ifdef HAVE_STAT
3279 int ret;
3280 struct stat info;
3281 const char *path;
3282
3283 if (URL == NULL)
3284 return (0);
3285
Daniel Veillardf4862f02002-09-10 11:13:43 +00003286 if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003287#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +00003288 path = &URL[17];
3289#else
3290 path = &URL[16];
3291#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00003292 else if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003293#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillard8bdb91d2001-10-31 17:52:43 +00003294 path = &URL[8];
3295#else
3296 path = &URL[7];
3297#endif
3298 } else
3299 path = URL;
3300 ret = stat(path, &info);
3301 if (ret == 0)
3302 return (1);
3303#endif
3304 return (0);
3305}
3306#endif
3307
3308/**
3309 * xmlNoNetExternalEntityLoader:
3310 * @URL: the URL for the entity to load
3311 * @ID: the System ID for the entity to load
3312 * @ctxt: the context in which the entity is called or NULL
3313 *
3314 * A specific entity loader disabling network accesses, though still
3315 * allowing local catalog accesses for resolution.
3316 *
3317 * Returns a new allocated xmlParserInputPtr, or NULL.
3318 */
3319xmlParserInputPtr
3320xmlNoNetExternalEntityLoader(const char *URL, const char *ID,
3321 xmlParserCtxtPtr ctxt) {
3322 xmlParserInputPtr input = NULL;
3323 xmlChar *resource = NULL;
3324
3325#ifdef LIBXML_CATALOG_ENABLED
3326 xmlCatalogAllow pref;
3327
3328 /*
3329 * If the resource doesn't exists as a file,
3330 * try to load it from the resource pointed in the catalogs
3331 */
3332 pref = xmlCatalogGetDefaults();
3333
3334 if ((pref != XML_CATA_ALLOW_NONE) && (!xmlNoNetExists(URL))) {
3335 /*
3336 * Do a local lookup
3337 */
3338 if ((ctxt->catalogs != NULL) &&
3339 ((pref == XML_CATA_ALLOW_ALL) ||
3340 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3341 resource = xmlCatalogLocalResolve(ctxt->catalogs,
3342 (const xmlChar *)ID,
3343 (const xmlChar *)URL);
3344 }
3345 /*
3346 * Try a global lookup
3347 */
3348 if ((resource == NULL) &&
3349 ((pref == XML_CATA_ALLOW_ALL) ||
3350 (pref == XML_CATA_ALLOW_GLOBAL))) {
3351 resource = xmlCatalogResolve((const xmlChar *)ID,
3352 (const xmlChar *)URL);
3353 }
3354 if ((resource == NULL) && (URL != NULL))
3355 resource = xmlStrdup((const xmlChar *) URL);
3356
3357 /*
3358 * TODO: do an URI lookup on the reference
3359 */
3360 if ((resource != NULL) && (!xmlNoNetExists((const char *)resource))) {
3361 xmlChar *tmp = NULL;
3362
3363 if ((ctxt->catalogs != NULL) &&
3364 ((pref == XML_CATA_ALLOW_ALL) ||
3365 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3366 tmp = xmlCatalogLocalResolveURI(ctxt->catalogs, resource);
3367 }
3368 if ((tmp == NULL) &&
3369 ((pref == XML_CATA_ALLOW_ALL) ||
3370 (pref == XML_CATA_ALLOW_GLOBAL))) {
3371 tmp = xmlCatalogResolveURI(resource);
3372 }
3373
3374 if (tmp != NULL) {
3375 xmlFree(resource);
3376 resource = tmp;
3377 }
3378 }
3379 }
3380#endif
3381 if (resource == NULL)
3382 resource = (xmlChar *) URL;
3383
3384 if (resource != NULL) {
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00003385 if ((!xmlStrncasecmp(BAD_CAST resource, BAD_CAST "ftp://", 6)) ||
3386 (!xmlStrncasecmp(BAD_CAST resource, BAD_CAST "http://", 7))) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00003387 xmlIOErr(XML_IO_NETWORK_ATTEMPT, (const char *) resource);
Daniel Veillard8bdb91d2001-10-31 17:52:43 +00003388 if (resource != (xmlChar *) URL)
3389 xmlFree(resource);
3390 return(NULL);
3391 }
3392 }
3393 input = xmlDefaultExternalEntityLoader((const char *) resource, ID, ctxt);
3394 if (resource != (xmlChar *) URL)
3395 xmlFree(resource);
3396 return(input);
3397}
3398