virxml.c 28.1 KB
Newer Older
1
/*
2
 * virxml.c: helper APIs for dealing with XML documents
3
 *
E
Eric Blake 已提交
4
 * Copyright (C) 2005, 2007-2012 Red Hat, Inc.
5
 *
O
Osier Yang 已提交
6 7 8 9 10 11 12 13 14 15 16
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22
 *
 * Daniel Veillard <veillard@redhat.com>
 */

23
#include <config.h>
24

25 26 27 28
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
29
#include <limits.h>
30
#include <math.h>               /* for isnan() */
31
#include <sys/stat.h>
32

33
#include "virerror.h"
34
#include "virxml.h"
35
#include "virbuffer.h"
36
#include "virutil.h"
37
#include "viralloc.h"
38
#include "virfile.h"
39
#include "virstring.h"
40

41 42
#define VIR_FROM_THIS VIR_FROM_XML

43
#define virGenericReportError(from, code, ...)                          \
44
        virReportErrorHelper(from, code, __FILE__,                      \
45
                             __FUNCTION__, __LINE__, __VA_ARGS__)
46

47 48 49 50 51
/* Internal data to be passed to SAX parser and used by error handler. */
struct virParserData {
    int domcode;
};

52 53 54 55 56 57 58

/************************************************************************
 *									*
 * Wrappers around libxml2 XPath specific functions			*
 *									*
 ************************************************************************/

59 60 61 62 63 64 65 66 67 68 69
/**
 * virXPathString:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 *
 * Convenience function to evaluate an XPath string
 *
 * Returns a new string which must be deallocated by the caller or NULL
 *         if the evaluation failed.
 */
char *
70
virXPathString(const char *xpath,
71
               xmlXPathContextPtr ctxt)
72
{
73
    xmlXPathObjectPtr obj;
74
    xmlNodePtr relnode;
75 76 77
    char *ret;

    if ((ctxt == NULL) || (xpath == NULL)) {
78 79
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathString()"));
80
        return NULL;
81
    }
82
    relnode = ctxt->node;
83
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
84
    ctxt->node = relnode;
85
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
D
Daniel P. Berrange 已提交
86
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
87
        xmlXPathFreeObject(obj);
88
        return NULL;
D
Daniel P. Berrange 已提交
89
    }
90
    ignore_value(VIR_STRDUP(ret, (char *) obj->stringval));
91
    xmlXPathFreeObject(obj);
92
    return ret;
93 94
}

95 96 97 98 99 100 101 102 103 104 105 106 107
/**
 * virXPathStringLimit:
 * @xpath: the XPath string to evaluate
 * @maxlen: maximum length permittred string
 * @ctxt: an XPath context
 *
 * Wrapper for virXPathString, which validates the length of the returned
 * string.
 *
 * Returns a new string which must be deallocated by the caller or NULL if
 * the evaluation failed.
 */
char *
108
virXPathStringLimit(const char *xpath,
109 110 111
                    size_t maxlen,
                    xmlXPathContextPtr ctxt)
{
112
    char *tmp = virXPathString(xpath, ctxt);
113 114

    if (tmp != NULL && strlen(tmp) >= maxlen) {
115 116 117
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("\'%s\' value longer than %zu bytes"),
                       xpath, maxlen);
P
Phil Petty 已提交
118 119
        VIR_FREE(tmp);
        return NULL;
120 121 122 123 124
    }

    return tmp;
}

125 126 127 128 129 130 131 132 133 134 135 136
/**
 * virXPathNumber:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned double value
 *
 * Convenience function to evaluate an XPath number
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the evaluation failed.
 */
int
137
virXPathNumber(const char *xpath,
138 139
               xmlXPathContextPtr ctxt,
               double *value)
140
{
141
    xmlXPathObjectPtr obj;
142
    xmlNodePtr relnode;
143 144

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
145 146
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathNumber()"));
147
        return -1;
148
    }
149
    relnode = ctxt->node;
150
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
151
    ctxt->node = relnode;
152 153
    if ((obj == NULL) || (obj->type != XPATH_NUMBER) ||
        (isnan(obj->floatval))) {
154
        xmlXPathFreeObject(obj);
155
        return -1;
156
    }
157

158 159
    *value = obj->floatval;
    xmlXPathFreeObject(obj);
160
    return 0;
161 162
}

163
static int
164
virXPathLongBase(const char *xpath,
165 166 167
                 xmlXPathContextPtr ctxt,
                 int base,
                 long *value)
168
{
169
    xmlXPathObjectPtr obj;
170
    xmlNodePtr relnode;
171 172 173
    int ret = 0;

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
174 175
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathLong()"));
176
        return -1;
177
    }
178
    relnode = ctxt->node;
179
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
180
    ctxt->node = relnode;
181 182
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
183
        if (virStrToLong_l((char *) obj->stringval, NULL, base, value) < 0)
184 185 186
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
187 188 189 190
        *value = (long) obj->floatval;
        if (*value != obj->floatval) {
            ret = -2;
        }
191
    } else {
192
        ret = -1;
193
    }
194

195
    xmlXPathFreeObject(obj);
196
    return ret;
197 198
}

199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
/**
 * virXPathInt:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned int value
 *
 * Convenience function to evaluate an XPath number
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have an int format.
 */
int
virXPathInt(const char *xpath,
            xmlXPathContextPtr ctxt,
            int *value)
{
    long tmp;
    int ret;

    ret = virXPathLongBase(xpath, ctxt, 10, &tmp);
    if (ret < 0)
        return ret;
    if ((int) tmp != tmp)
        return -2;
    *value = tmp;
    return 0;
}

228
/**
229
 * virXPathLong:
230 231 232 233 234 235 236 237 238 239 240
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned long value
 *
 * Convenience function to evaluate an XPath number
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have a long format.
 */
int
241
virXPathLong(const char *xpath,
242 243 244
             xmlXPathContextPtr ctxt,
             long *value)
{
245
    return virXPathLongBase(xpath, ctxt, 10, value);
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
}

/**
 * virXPathLongHex:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned long value
 *
 * Convenience function to evaluate an XPath number
 * according to a base of 16
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have a long format.
 */
int
262
virXPathLongHex(const char *xpath,
263 264 265
                xmlXPathContextPtr ctxt,
                long *value)
{
266
    return virXPathLongBase(xpath, ctxt, 16, value);
267 268 269
}

static int
270
virXPathULongBase(const char *xpath,
271 272 273
                  xmlXPathContextPtr ctxt,
                  int base,
                  unsigned long *value)
274 275 276 277 278 279
{
    xmlXPathObjectPtr obj;
    xmlNodePtr relnode;
    int ret = 0;

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
280 281
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathULong()"));
282
        return -1;
283 284 285
    }
    relnode = ctxt->node;
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
286
    ctxt->node = relnode;
287 288
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
289
        if (virStrToLong_ul((char *) obj->stringval, NULL, base, value) < 0)
290 291 292 293 294 295 296 297 298 299 300 301
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
        *value = (unsigned long) obj->floatval;
        if (*value != obj->floatval) {
            ret = -2;
        }
    } else {
        ret = -1;
    }

    xmlXPathFreeObject(obj);
302
    return ret;
303 304
}

305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
/**
 * virXPathUInt:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned int value
 *
 * Convenience function to evaluate an XPath number
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have an int format.
 */
int
virXPathUInt(const char *xpath,
             xmlXPathContextPtr ctxt,
             unsigned int *value)
{
    unsigned long tmp;
    int ret;

    ret = virXPathULongBase(xpath, ctxt, 10, &tmp);
    if (ret < 0)
        return ret;
    if ((unsigned int) tmp != tmp)
        return -2;
    *value = tmp;
    return 0;
}

334 335 336 337 338 339 340 341 342 343 344 345 346
/**
 * virXPathULong:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned long value
 *
 * Convenience function to evaluate an XPath number
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have a long format.
 */
int
347
virXPathULong(const char *xpath,
348 349 350
              xmlXPathContextPtr ctxt,
              unsigned long *value)
{
351
    return virXPathULongBase(xpath, ctxt, 10, value);
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
}

/**
 * virXPathUHex:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned long value
 *
 * Convenience function to evaluate an XPath number
 * according to base of 16
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have a long format.
 */
int
368
virXPathULongHex(const char *xpath,
369 370 371
                 xmlXPathContextPtr ctxt,
                 unsigned long *value)
{
372
    return virXPathULongBase(xpath, ctxt, 16, value);
373 374
}

M
Mark McLoughlin 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387
/**
 * virXPathULongLong:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned long long value
 *
 * Convenience function to evaluate an XPath number
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have a long format.
 */
int
388
virXPathULongLong(const char *xpath,
M
Mark McLoughlin 已提交
389 390 391 392 393 394 395 396
                  xmlXPathContextPtr ctxt,
                  unsigned long long *value)
{
    xmlXPathObjectPtr obj;
    xmlNodePtr relnode;
    int ret = 0;

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
397 398
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathULong()"));
399
        return -1;
M
Mark McLoughlin 已提交
400 401 402
    }
    relnode = ctxt->node;
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
403
    ctxt->node = relnode;
M
Mark McLoughlin 已提交
404 405
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
406
        if (virStrToLong_ull((char *) obj->stringval, NULL, 10, value) < 0)
M
Mark McLoughlin 已提交
407 408 409 410 411 412 413 414 415 416 417 418
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
        *value = (unsigned long long) obj->floatval;
        if (*value != obj->floatval) {
            ret = -2;
        }
    } else {
        ret = -1;
    }

    xmlXPathFreeObject(obj);
419
    return ret;
M
Mark McLoughlin 已提交
420 421
}

422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
/**
 * virXPathULongLong:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @value: the returned long long value
 *
 * Convenience function to evaluate an XPath number
 *
 * Returns 0 in case of success in which case @value is set,
 *         or -1 if the XPath evaluation failed or -2 if the
 *         value doesn't have a long format.
 */
int
virXPathLongLong(const char *xpath,
                 xmlXPathContextPtr ctxt,
                 long long *value)
{
    xmlXPathObjectPtr obj;
    xmlNodePtr relnode;
    int ret = 0;

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
444 445
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathLongLong()"));
446
        return -1;
447 448 449 450 451 452
    }
    relnode = ctxt->node;
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
    ctxt->node = relnode;
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
453
        if (virStrToLong_ll((char *) obj->stringval, NULL, 10, value) < 0)
454 455 456 457 458 459 460 461 462 463 464 465
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
        *value = (long long) obj->floatval;
        if (*value != obj->floatval) {
            ret = -2;
        }
    } else {
        ret = -1;
    }

    xmlXPathFreeObject(obj);
466
    return ret;
467 468
}

469 470 471 472 473 474 475 476 477 478
/**
 * virXMLPropString:
 * @node: XML dom node pointer
 * @name: Name of the property (attribute) to get
 *
 * Convenience function to return copy of an attribute value of a XML node.
 *
 * Returns the property (attribute) value as string or NULL in case of failure.
 * The caller is responsible for freeing the returned buffer.
 */
479 480 481 482 483 484 485
char *
virXMLPropString(xmlNodePtr node,
                 const char *name)
{
    return (char *)xmlGetProp(node, BAD_CAST name);
}

486 487 488 489 490 491 492 493 494 495
/**
 * virXPathBoolean:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 *
 * Convenience function to evaluate an XPath boolean
 *
 * Returns 0 if false, 1 if true, or -1 if the evaluation failed.
 */
int
496
virXPathBoolean(const char *xpath,
497
                xmlXPathContextPtr ctxt)
498
{
499
    xmlXPathObjectPtr obj;
500
    xmlNodePtr relnode;
501 502 503
    int ret;

    if ((ctxt == NULL) || (xpath == NULL)) {
504 505
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathBoolean()"));
506
        return -1;
507
    }
508
    relnode = ctxt->node;
509
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
510
    ctxt->node = relnode;
511 512
    if ((obj == NULL) || (obj->type != XPATH_BOOLEAN) ||
        (obj->boolval < 0) || (obj->boolval > 1)) {
513
        xmlXPathFreeObject(obj);
514
        return -1;
515 516
    }
    ret = obj->boolval;
517

518
    xmlXPathFreeObject(obj);
519
    return ret;
520 521 522 523 524 525 526 527 528 529 530 531 532
}

/**
 * virXPathNode:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 *
 * Convenience function to evaluate an XPath node set and returning
 * only one node, the first one in the set if any
 *
 * Returns a pointer to the node or NULL if the evaluation failed.
 */
xmlNodePtr
533
virXPathNode(const char *xpath,
534
             xmlXPathContextPtr ctxt)
535
{
536
    xmlXPathObjectPtr obj;
537
    xmlNodePtr relnode;
538 539 540
    xmlNodePtr ret;

    if ((ctxt == NULL) || (xpath == NULL)) {
541 542
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathNode()"));
543
        return NULL;
544
    }
545
    relnode = ctxt->node;
546
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
547
    ctxt->node = relnode;
548 549
    if ((obj == NULL) || (obj->type != XPATH_NODESET) ||
        (obj->nodesetval == NULL) || (obj->nodesetval->nodeNr <= 0) ||
550 551
        (obj->nodesetval->nodeTab == NULL)) {
        xmlXPathFreeObject(obj);
552
        return NULL;
553
    }
554

555 556
    ret = obj->nodesetval->nodeTab[0];
    xmlXPathFreeObject(obj);
557
    return ret;
558
}
559

560 561 562 563 564 565 566 567 568 569 570 571
/**
 * virXPathNodeSet:
 * @xpath: the XPath string to evaluate
 * @ctxt: an XPath context
 * @list: the returned list of nodes (or NULL if only count matters)
 *
 * Convenience function to evaluate an XPath node set
 *
 * Returns the number of nodes found in which case @list is set (and
 *         must be freed) or -1 if the evaluation failed.
 */
int
572
virXPathNodeSet(const char *xpath,
573 574
                xmlXPathContextPtr ctxt,
                xmlNodePtr **list)
575
{
576
    xmlXPathObjectPtr obj;
577
    xmlNodePtr relnode;
578 579 580
    int ret;

    if ((ctxt == NULL) || (xpath == NULL)) {
581 582
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathNodeSet()"));
583
        return -1;
584
    }
585 586 587 588

    if (list != NULL)
        *list = NULL;

589
    relnode = ctxt->node;
590
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
591
    ctxt->node = relnode;
D
Daniel Veillard 已提交
592
    if (obj == NULL)
593
        return 0;
594

D
Daniel Veillard 已提交
595
    if (obj->type != XPATH_NODESET) {
596 597
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Incorrect xpath '%s'"), xpath);
598
        xmlXPathFreeObject(obj);
599
        return -1;
600
    }
601

D
Daniel Veillard 已提交
602 603
    if ((obj->nodesetval == NULL)  || (obj->nodesetval->nodeNr < 0)) {
        xmlXPathFreeObject(obj);
604
        return 0;
D
Daniel Veillard 已提交
605
    }
606

607
    ret = obj->nodesetval->nodeNr;
608
    if (list != NULL && ret) {
609 610
        if (VIR_ALLOC_N(*list, ret) < 0) {
            ret = -1;
611 612 613 614
        } else {
            memcpy(*list, obj->nodesetval->nodeTab,
                   ret * sizeof(xmlNodePtr));
        }
615 616
    }
    xmlXPathFreeObject(obj);
617
    return ret;
618
}
619 620 621 622 623 624


/**
 * catchXMLError:
 *
 * Called from SAX on parsing errors in the XML.
625 626
 *
 * This version is heavily based on xmlParserPrintFileContextInternal from libxml2.
627 628 629 630 631 632
 */
static void
catchXMLError(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...)
{
    xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
    const xmlChar *cur, *base;
    unsigned int n, col;	/* GCC warns if signed, because compared with sizeof() */
    int domcode = VIR_FROM_XML;

    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *contextstr = NULL;
    char *pointerstr = NULL;


    /* conditions for error printing */
    if (!ctxt ||
        (virGetLastError() != NULL) ||
        ctxt->input == NULL ||
        ctxt->lastError.level != XML_ERR_FATAL ||
        ctxt->lastError.message == NULL)
        return;

    if (ctxt->_private)
651 652
            domcode = ((struct virParserData *) ctxt->_private)->domcode;

653 654 655 656 657 658 659

    cur = ctxt->input->cur;
    base = ctxt->input->base;

    /* skip backwards over any end-of-lines */
    while ((cur > base) && ((*(cur) == '\n') || (*(cur) == '\r'))) {
        cur--;
660 661
    }

662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
    /* search backwards for beginning-of-line (to max buff size) */
    while ((cur > base) && (*(cur) != '\n') && (*(cur) != '\r'))
        cur--;
    if ((*(cur) == '\n') || (*(cur) == '\r')) cur++;

    /* calculate the error position in terms of the current position */
    col = ctxt->input->cur - cur;

    /* search forward for end-of-line (to max buff size) */
    /* copy selected text to our buffer */
    while ((*cur != 0) && (*(cur) != '\n') && (*(cur) != '\r')) {
        virBufferAddChar(&buf, *cur++);
    }

    /* create blank line with problem pointer */
    contextstr = virBufferContentAndReset(&buf);

    /* (leave buffer space for pointer + line terminator) */
    for  (n = 0; (n<col) && (contextstr[n] != 0); n++) {
        if (contextstr[n] == '\t')
            virBufferAddChar(&buf, '\t');
        else
            virBufferAddChar(&buf, '-');
    }

    virBufferAddChar(&buf, '^');

    pointerstr = virBufferContentAndReset(&buf);

    if (ctxt->lastError.file) {
        virGenericReportError(domcode, VIR_ERR_XML_DETAIL,
                              _("%s:%d: %s%s\n%s"),
                              ctxt->lastError.file,
                              ctxt->lastError.line,
                              ctxt->lastError.message,
                              contextstr,
                              pointerstr);
    } else {
         virGenericReportError(domcode, VIR_ERR_XML_DETAIL,
                              _("at line %d: %s%s\n%s"),
                              ctxt->lastError.line,
                              ctxt->lastError.message,
                              contextstr,
                              pointerstr);
    }

    VIR_FREE(contextstr);
    VIR_FREE(pointerstr);
}
711 712 713 714 715 716 717

/**
 * virXMLParseHelper:
 * @domcode: error domain of the caller, usually VIR_FROM_THIS
 * @filename: file to be parsed or NULL if string parsing is requested
 * @xmlStr: XML string to be parsed in case filename is NULL
 * @url: URL of XML document for string parser
718
 * @ctxt: optional pointer to populate with new context pointer
719 720 721 722 723 724 725 726 727 728
 *
 * Parse XML document provided either as a file or a string. The function
 * guarantees that the XML document contains a root element.
 *
 * Returns parsed XML document.
 */
xmlDocPtr
virXMLParseHelper(int domcode,
                  const char *filename,
                  const char *xmlStr,
729 730
                  const char *url,
                  xmlXPathContextPtr *ctxt)
731 732 733 734 735 736 737
{
    struct virParserData private;
    xmlParserCtxtPtr pctxt;
    xmlDocPtr xml = NULL;

    /* Set up a parser context so we can catch the details of XML errors. */
    pctxt = xmlNewParserCtxt();
738 739
    if (!pctxt || !pctxt->sax) {
        virReportOOMError();
740
        goto error;
741
    }
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764

    private.domcode = domcode;
    pctxt->_private = &private;
    pctxt->sax->error = catchXMLError;

    if (filename) {
        xml = xmlCtxtReadFile(pctxt, filename, NULL,
                              XML_PARSE_NOENT | XML_PARSE_NONET |
                              XML_PARSE_NOWARNING);
    } else {
        xml = xmlCtxtReadDoc(pctxt, BAD_CAST xmlStr, url, NULL,
                             XML_PARSE_NOENT | XML_PARSE_NONET |
                             XML_PARSE_NOWARNING);
    }
    if (!xml)
        goto error;

    if (xmlDocGetRootElement(xml) == NULL) {
        virGenericReportError(domcode, VIR_ERR_INTERNAL_ERROR,
                              "%s", _("missing root element"));
        goto error;
    }

765 766 767 768 769 770 771 772 773
    if (ctxt) {
        *ctxt = xmlXPathNewContext(xml);
        if (!*ctxt) {
            virReportOOMError();
            goto error;
        }
        (*ctxt)->node = xmlDocGetRootElement(xml);
    }

774
 cleanup:
775 776 777 778
    xmlFreeParserCtxt(pctxt);

    return xml;

779
 error:
780 781 782 783 784 785 786 787 788
    xmlFreeDoc(xml);
    xml = NULL;

    if (virGetLastError() == NULL) {
        virGenericReportError(domcode, VIR_ERR_XML_ERROR,
                              "%s", _("failed to parse xml document"));
    }
    goto cleanup;
}
789

J
Ján Tomko 已提交
790 791
const char *virXMLPickShellSafeComment(const char *str1, const char *str2)
{
792 793
    if (str1 && !strpbrk(str1, "\r\t\n !\"#$&'()*;<>?[\\]^`{|}~") &&
        !strstr(str1, "--"))
J
Ján Tomko 已提交
794
        return str1;
795 796
    if (str2 && !strpbrk(str2, "\r\t\n !\"#$&'()*;<>?[\\]^`{|}~") &&
        !strstr(str2, "--"))
J
Ján Tomko 已提交
797 798 799
        return str2;
    return NULL;
}
800

801 802 803 804 805
static int virXMLEmitWarning(int fd,
                             const char *name,
                             const char *cmd)
{
    size_t len;
806 807 808 809 810 811 812 813 814
    const char *prologue =
        "<!--\n"
        "WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE\n"
        "OVERWRITTEN AND LOST. Changes to this xml configuration should be made using:\n"
        "  virsh ";
    const char *epilogue =
        "\n"
        "or other application using the libvirt API.\n"
        "-->\n\n";
815

J
Ján Tomko 已提交
816
    if (fd < 0 || !cmd) {
817 818 819 820 821 822 823 824 825 826 827 828
        errno = EINVAL;
        return -1;
    }

    len = strlen(prologue);
    if (safewrite(fd, prologue, len) != len)
        return -1;

    len = strlen(cmd);
    if (safewrite(fd, cmd, len) != len)
        return -1;

J
Ján Tomko 已提交
829
    if (name) {
830 831
        if (safewrite(fd, " ", 1) != 1)
            return -1;
832

833 834 835 836
        len = strlen(name);
        if (safewrite(fd, name, len) != len)
            return -1;
    }
837 838 839 840 841 842 843 844 845

    len = strlen(epilogue);
    if (safewrite(fd, epilogue, len) != len)
        return -1;

    return 0;
}


E
Eric Blake 已提交
846
struct virXMLRewriteFileData {
847 848 849 850 851 852 853 854
    const char *warnName;
    const char *warnCommand;
    const char *xml;
};

static int
virXMLRewriteFile(int fd, void *opaque)
{
E
Eric Blake 已提交
855
    struct virXMLRewriteFileData *data = opaque;
856

J
Ján Tomko 已提交
857
    if (data->warnCommand) {
858
        if (virXMLEmitWarning(fd, data->warnName, data->warnCommand) < 0)
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873
            return -1;
    }

    if (safewrite(fd, data->xml, strlen(data->xml)) < 0)
        return -1;

    return 0;
}

int
virXMLSaveFile(const char *path,
               const char *warnName,
               const char *warnCommand,
               const char *xml)
{
E
Eric Blake 已提交
874
    struct virXMLRewriteFileData data = { warnName, warnCommand, xml };
875 876 877

    return virFileRewrite(path, S_IRUSR | S_IWUSR, virXMLRewriteFile, &data);
}
E
Eric Blake 已提交
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897

/* Returns the number of children of node, or -1 on error.  */
long
virXMLChildElementCount(xmlNodePtr node)
{
    long ret = 0;
    xmlNodePtr cur = NULL;

    /* xmlChildElementCount returns 0 on error, which isn't helpful;
     * besides, it is not available in libxml2 2.6.  */
    if (!node || node->type != XML_ELEMENT_NODE)
        return -1;
    cur = node->children;
    while (cur) {
        if (cur->type == XML_ELEMENT_NODE)
            ret++;
        cur = cur->next;
    }
    return ret;
}
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925


/**
 * virXMLNodeToString: convert an XML node ptr to an XML string
 *
 * Returns the XML string of the document or NULL on error.
 * The caller has to free the string.
 */
char *
virXMLNodeToString(xmlDocPtr doc,
                   xmlNodePtr node)
{
     xmlBufferPtr xmlbuf = NULL;
     char *ret = NULL;

     if (!(xmlbuf = xmlBufferCreate())) {
         virReportOOMError();
         return NULL;
     }

     if (xmlNodeDump(xmlbuf, doc, node, 0, 1) == 0) {
         virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                        _("failed to convert the XML node tree"));
         goto cleanup;
     }

     ignore_value(VIR_STRDUP(ret, (const char *)xmlBufferContent(xmlbuf)));

926
 cleanup:
927 928 929 930
     xmlBufferFree(xmlbuf);

     return ret;
}
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046

typedef int (*virXMLForeachCallback)(xmlNodePtr node,
                                     void *opaque);

static int
virXMLForeachNode(xmlNodePtr root,
                  virXMLForeachCallback cb,
                  void *opaque);

static int
virXMLForeachNode(xmlNodePtr root,
                  virXMLForeachCallback cb,
                  void *opaque)
{
    xmlNodePtr next;
    int ret;

    for (next = root; next; next = next->next) {
        if ((ret = cb(next, opaque)) != 0)
            return ret;

        /* recurse into children */
        if (next->children) {
            if ((ret = virXMLForeachNode(next->children, cb, opaque)) != 0)
                return ret;
        }
    }

    return 0;
}


static int
virXMLRemoveElementNamespace(xmlNodePtr node,
                             void *opaque)
{
    const char *uri = opaque;

    if (node->ns &&
        STREQ_NULLABLE((const char *)node->ns->href, uri))
        xmlSetNs(node, NULL);
    return 0;
}


xmlNodePtr
virXMLFindChildNodeByNs(xmlNodePtr root,
                        const char *uri)
{
    xmlNodePtr next;

    for (next = root->children; next; next = next->next) {
        if (next->ns &&
            STREQ_NULLABLE((const char *) next->ns->href, uri))
            return next;
    }

    return NULL;
}


/**
 * virXMLExtractNamespaceXML: extract a sub-namespace of XML as string
 */
int
virXMLExtractNamespaceXML(xmlNodePtr root,
                          const char *uri,
                          char **doc)
{
    xmlNodePtr node;
    xmlNodePtr nodeCopy = NULL;
    xmlNsPtr actualNs;
    xmlNsPtr prevNs = NULL;
    char *xmlstr = NULL;
    int ret = -1;

    if (!(node = virXMLFindChildNodeByNs(root, uri))) {
        /* node not found */
        ret = 1;
        goto cleanup;
    }

    /* copy the node so that we can modify the namespace */
    if (!(nodeCopy = xmlCopyNode(node, 1))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Failed to copy XML node"));
        goto cleanup;
    }

    virXMLForeachNode(nodeCopy, virXMLRemoveElementNamespace,
                      (void *)uri);

    /* remove the namespace declaration
     *  - it's only a single linked list ... doh */
    for (actualNs = nodeCopy->nsDef; actualNs; actualNs = actualNs->next) {
        if (STREQ_NULLABLE((const char *)actualNs->href, uri)) {

            /* unlink */
            if (prevNs)
                prevNs->next = actualNs->next;
            else
                nodeCopy->nsDef = actualNs->next;

            /* discard */
            xmlFreeNs(actualNs);
            break;
        }

        prevNs = actualNs;
    }

    if (!(xmlstr = virXMLNodeToString(nodeCopy->doc, nodeCopy)))
        goto cleanup;

    ret = 0;

1047
 cleanup:
1048 1049
    if (doc)
        *doc = xmlstr;
1050 1051
    else
        VIR_FREE(xmlstr);
1052 1053 1054
    xmlFreeNode(nodeCopy);
    return ret;
}
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086


static int
virXMLAddElementNamespace(xmlNodePtr node,
                          void *opaque)
{
    xmlNsPtr ns = opaque;

    if (!node->ns)
        xmlSetNs(node, ns);

    return 0;
}


int
virXMLInjectNamespace(xmlNodePtr node,
                      const char *uri,
                      const char *key)
{
    xmlNsPtr ns;

    if (!(ns = xmlNewNs(node, (const unsigned char *)uri, (const unsigned char *)key))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to create a new XML namespace"));
        return -1;
    }

    virXMLForeachNode(node, virXMLAddElementNamespace, ns);

    return 0;
}