virxml.c 36.8 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
#include <config.h>
22

23
#include <stdarg.h>
24
#include <math.h>               /* for isnan() */
25
#include <sys/stat.h>
26

27 28
#include <libxml/xpathInternals.h>

29
#include "virerror.h"
30
#include "virxml.h"
31
#include "virbuffer.h"
32
#include "virutil.h"
33
#include "viralloc.h"
34
#include "virfile.h"
35
#include "virstring.h"
36

37 38
#define VIR_FROM_THIS VIR_FROM_XML

39 40
#define virGenericReportError(from, code, ...) \
        virReportErrorHelper(from, code, __FILE__, \
41
                             __FUNCTION__, __LINE__, __VA_ARGS__)
42

43 44 45 46 47
/* Internal data to be passed to SAX parser and used by error handler. */
struct virParserData {
    int domcode;
};

48

49 50 51 52 53 54 55 56 57 58 59 60 61 62
xmlXPathContextPtr
virXMLXPathContextNew(xmlDocPtr xml)
{
    xmlXPathContextPtr ctxt;

    if (!(ctxt = xmlXPathNewContext(xml))) {
        virReportOOMError();
        return NULL;
    }

    return ctxt;
}


63 64 65 66 67 68 69 70 71 72 73
/**
 * 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 *
74
virXPathString(const char *xpath,
75
               xmlXPathContextPtr ctxt)
76
{
77
    xmlXPathObjectPtr obj;
78
    xmlNodePtr relnode;
79 80 81
    char *ret;

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

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116

static char *
virXMLStringLimitInternal(char *value,
                          size_t maxlen,
                          const char *name)
{
    if (value != NULL && strlen(value) >= maxlen) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("'%s' value longer than '%zu' bytes"),
                       name, maxlen);
        VIR_FREE(value);
        return NULL;
    }

    return value;
}


117 118 119
/**
 * virXPathStringLimit:
 * @xpath: the XPath string to evaluate
N
Nitesh Konkar 已提交
120
 * @maxlen: maximum length permitted string
121 122 123 124 125 126 127 128 129
 * @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 *
130
virXPathStringLimit(const char *xpath,
131 132 133
                    size_t maxlen,
                    xmlXPathContextPtr ctxt)
{
134
    char *tmp = virXPathString(xpath, ctxt);
135

136
    return virXMLStringLimitInternal(tmp, maxlen, xpath);
137 138
}

139 140 141 142 143 144 145 146 147 148 149 150
/**
 * 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
151
virXPathNumber(const char *xpath,
152 153
               xmlXPathContextPtr ctxt,
               double *value)
154
{
155
    xmlXPathObjectPtr obj;
156
    xmlNodePtr relnode;
157 158

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
159 160
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathNumber()"));
161
        return -1;
162
    }
163
    relnode = ctxt->node;
164
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
165
    ctxt->node = relnode;
166 167
    if ((obj == NULL) || (obj->type != XPATH_NUMBER) ||
        (isnan(obj->floatval))) {
168
        xmlXPathFreeObject(obj);
169
        return -1;
170
    }
171

172 173
    *value = obj->floatval;
    xmlXPathFreeObject(obj);
174
    return 0;
175 176
}

177
static int
178
virXPathLongBase(const char *xpath,
179 180 181
                 xmlXPathContextPtr ctxt,
                 int base,
                 long *value)
182
{
183
    xmlXPathObjectPtr obj;
184
    xmlNodePtr relnode;
185 186 187
    int ret = 0;

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
188 189
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathLong()"));
190
        return -1;
191
    }
192
    relnode = ctxt->node;
193
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
194
    ctxt->node = relnode;
195 196
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
197
        if (virStrToLong_l((char *) obj->stringval, NULL, base, value) < 0)
198 199 200
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
201
        *value = (long) obj->floatval;
202
        if (*value != obj->floatval)
203
            ret = -2;
204
    } else {
205
        ret = -1;
206
    }
207

208
    xmlXPathFreeObject(obj);
209
    return ret;
210 211
}

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
/**
 * 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;
}

241
/**
242
 * virXPathLong:
243 244 245 246 247 248 249 250 251 252 253
 * @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
254
virXPathLong(const char *xpath,
255 256 257
             xmlXPathContextPtr ctxt,
             long *value)
{
258
    return virXPathLongBase(xpath, ctxt, 10, value);
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
}

/**
 * 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
275
virXPathLongHex(const char *xpath,
276 277 278
                xmlXPathContextPtr ctxt,
                long *value)
{
279
    return virXPathLongBase(xpath, ctxt, 16, value);
280 281 282
}

static int
283
virXPathULongBase(const char *xpath,
284 285 286
                  xmlXPathContextPtr ctxt,
                  int base,
                  unsigned long *value)
287 288 289 290 291 292
{
    xmlXPathObjectPtr obj;
    xmlNodePtr relnode;
    int ret = 0;

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
293 294
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathULong()"));
295
        return -1;
296 297 298
    }
    relnode = ctxt->node;
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
299
    ctxt->node = relnode;
300 301
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
302
        if (virStrToLong_ul((char *) obj->stringval, NULL, base, value) < 0)
303 304 305 306
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
        *value = (unsigned long) obj->floatval;
307
        if (*value != obj->floatval)
308 309 310 311 312 313
            ret = -2;
    } else {
        ret = -1;
    }

    xmlXPathFreeObject(obj);
314
    return ret;
315 316
}

317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
/**
 * 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;
}

346 347 348 349 350 351 352 353 354 355 356 357 358
/**
 * 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
359
virXPathULong(const char *xpath,
360 361 362
              xmlXPathContextPtr ctxt,
              unsigned long *value)
{
363
    return virXPathULongBase(xpath, ctxt, 10, value);
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
}

/**
 * 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
380
virXPathULongHex(const char *xpath,
381 382 383
                 xmlXPathContextPtr ctxt,
                 unsigned long *value)
{
384
    return virXPathULongBase(xpath, ctxt, 16, value);
385 386
}

M
Mark McLoughlin 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399
/**
 * 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
400
virXPathULongLong(const char *xpath,
M
Mark McLoughlin 已提交
401 402 403 404 405 406 407 408
                  xmlXPathContextPtr ctxt,
                  unsigned long long *value)
{
    xmlXPathObjectPtr obj;
    xmlNodePtr relnode;
    int ret = 0;

    if ((ctxt == NULL) || (xpath == NULL) || (value == NULL)) {
409 410
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathULong()"));
411
        return -1;
M
Mark McLoughlin 已提交
412 413 414
    }
    relnode = ctxt->node;
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
415
    ctxt->node = relnode;
M
Mark McLoughlin 已提交
416 417
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
418
        if (virStrToLong_ull((char *) obj->stringval, NULL, 10, value) < 0)
M
Mark McLoughlin 已提交
419 420 421 422
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
        *value = (unsigned long long) obj->floatval;
423
        if (*value != obj->floatval)
M
Mark McLoughlin 已提交
424 425 426 427 428 429
            ret = -2;
    } else {
        ret = -1;
    }

    xmlXPathFreeObject(obj);
430
    return ret;
M
Mark McLoughlin 已提交
431 432
}

433
/**
434
 * virXPathLongLong:
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
 * @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)) {
455 456
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathLongLong()"));
457
        return -1;
458 459 460 461 462 463
    }
    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)) {
464
        if (virStrToLong_ll((char *) obj->stringval, NULL, 10, value) < 0)
465 466 467 468
            ret = -2;
    } else if ((obj != NULL) && (obj->type == XPATH_NUMBER) &&
               (!(isnan(obj->floatval)))) {
        *value = (long long) obj->floatval;
469
        if (*value != obj->floatval)
470 471 472 473 474 475
            ret = -2;
    } else {
        ret = -1;
    }

    xmlXPathFreeObject(obj);
476
    return ret;
477 478
}

479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505

/**
 * virXMLCheckIllegalChars:
 * @nodeName: Name of checked node
 * @str: string to check
 * @illegal: illegal chars to check
 *
 * If string contains any of illegal chars VIR_ERR_XML_DETAIL error will be
 * reported.
 *
 * Returns: 0 if string don't contains any of given characters, -1 otherwise
 */
int
virXMLCheckIllegalChars(const char *nodeName,
                        const char *str,
                        const char *illegal)
{
    char *c;
    if ((c = strpbrk(str, illegal))) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("invalid char in %s: %c"), nodeName, *c);
        return -1;
    }
    return 0;
}


506 507 508 509 510 511 512 513 514 515
/**
 * 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.
 */
516 517 518 519 520 521 522
char *
virXMLPropString(xmlNodePtr node,
                 const char *name)
{
    return (char *)xmlGetProp(node, BAD_CAST name);
}

523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546

/**
 * virXMLPropStringLimit:
 * @node: XML dom node pointer
 * @name: Name of the property (attribute) to get
 * @maxlen: maximum permitted length of the string
 *
 * Wrapper for virXMLPropString, 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 *
virXMLPropStringLimit(xmlNodePtr node,
                      const char *name,
                      size_t maxlen)
{
    char *tmp = (char *)xmlGetProp(node, BAD_CAST name);

    return virXMLStringLimitInternal(tmp, maxlen, name);
}


547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
/**
 * virXMLNodeContentString:
 * @node: XML dom node pointer
 *
 * Convenience function to return copy of content of an XML node.
 *
 * Returns the content value as string or NULL in case of failure.
 * The caller is responsible for freeing the returned buffer.
 */
char *
virXMLNodeContentString(xmlNodePtr node)
{
    return (char *)xmlNodeGetContent(node);
}


563 564 565 566 567 568 569 570 571 572
/**
 * 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
573
virXPathBoolean(const char *xpath,
574
                xmlXPathContextPtr ctxt)
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 virXPathBoolean()"));
583
        return -1;
584
    }
585
    relnode = ctxt->node;
586
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
587
    ctxt->node = relnode;
588 589
    if ((obj == NULL) || (obj->type != XPATH_BOOLEAN) ||
        (obj->boolval < 0) || (obj->boolval > 1)) {
590
        xmlXPathFreeObject(obj);
591
        return -1;
592 593
    }
    ret = obj->boolval;
594

595
    xmlXPathFreeObject(obj);
596
    return ret;
597 598 599 600 601 602 603 604 605 606 607 608 609
}

/**
 * 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
610
virXPathNode(const char *xpath,
611
             xmlXPathContextPtr ctxt)
612
{
613
    xmlXPathObjectPtr obj;
614
    xmlNodePtr relnode;
615 616 617
    xmlNodePtr ret;

    if ((ctxt == NULL) || (xpath == NULL)) {
618 619
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathNode()"));
620
        return NULL;
621
    }
622
    relnode = ctxt->node;
623
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
624
    ctxt->node = relnode;
625 626
    if ((obj == NULL) || (obj->type != XPATH_NODESET) ||
        (obj->nodesetval == NULL) || (obj->nodesetval->nodeNr <= 0) ||
627 628
        (obj->nodesetval->nodeTab == NULL)) {
        xmlXPathFreeObject(obj);
629
        return NULL;
630
    }
631

632 633
    ret = obj->nodesetval->nodeTab[0];
    xmlXPathFreeObject(obj);
634
    return ret;
635
}
636

637 638 639 640 641 642 643 644 645 646 647 648
/**
 * 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
649
virXPathNodeSet(const char *xpath,
650 651
                xmlXPathContextPtr ctxt,
                xmlNodePtr **list)
652
{
653
    xmlXPathObjectPtr obj;
654
    xmlNodePtr relnode;
655 656 657
    int ret;

    if ((ctxt == NULL) || (xpath == NULL)) {
658 659
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Invalid parameter to virXPathNodeSet()"));
660
        return -1;
661
    }
662 663 664 665

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

666
    relnode = ctxt->node;
667
    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
668
    ctxt->node = relnode;
D
Daniel Veillard 已提交
669
    if (obj == NULL)
670
        return 0;
671

D
Daniel Veillard 已提交
672
    if (obj->type != XPATH_NODESET) {
673 674
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Incorrect xpath '%s'"), xpath);
675
        xmlXPathFreeObject(obj);
676
        return -1;
677
    }
678

D
Daniel Veillard 已提交
679 680
    if ((obj->nodesetval == NULL)  || (obj->nodesetval->nodeNr < 0)) {
        xmlXPathFreeObject(obj);
681
        return 0;
D
Daniel Veillard 已提交
682
    }
683

684
    ret = obj->nodesetval->nodeNr;
685
    if (list != NULL && ret) {
686 687
        if (VIR_ALLOC_N(*list, ret) < 0) {
            ret = -1;
688 689 690 691
        } else {
            memcpy(*list, obj->nodesetval->nodeTab,
                   ret * sizeof(xmlNodePtr));
        }
692 693
    }
    xmlXPathFreeObject(obj);
694
    return ret;
695
}
696 697 698 699 700 701


/**
 * catchXMLError:
 *
 * Called from SAX on parsing errors in the XML.
702 703
 *
 * This version is heavily based on xmlParserPrintFileContextInternal from libxml2.
704 705
 */
static void
J
Ján Tomko 已提交
706
catchXMLError(void *ctx, const char *msg G_GNUC_UNUSED, ...)
707 708 709
{
    xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;

710
    const xmlChar *cur, *base;
711
    unsigned int n, col;        /* GCC warns if signed, because compared with sizeof() */
712 713 714 715 716 717 718 719 720
    int domcode = VIR_FROM_XML;

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


    /* conditions for error printing */
    if (!ctxt ||
721
        (virGetLastErrorCode()) ||
722 723 724 725 726 727
        ctxt->input == NULL ||
        ctxt->lastError.level != XML_ERR_FATAL ||
        ctxt->lastError.message == NULL)
        return;

    if (ctxt->_private)
M
Martin Kletzander 已提交
728
        domcode = ((struct virParserData *) ctxt->_private)->domcode;
729

730 731 732 733 734

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

    /* skip backwards over any end-of-lines */
735
    while ((cur > base) && ((*(cur) == '\n') || (*(cur) == '\r')))
736
        cur--;
737

738 739 740 741 742 743 744 745 746 747
    /* 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 */
748
    while ((*cur != 0) && (*(cur) != '\n') && (*(cur) != '\r'))
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
        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 {
M
Martin Kletzander 已提交
775
        virGenericReportError(domcode, VIR_ERR_XML_DETAIL,
776 777 778 779 780 781 782 783 784 785
                              _("at line %d: %s%s\n%s"),
                              ctxt->lastError.line,
                              ctxt->lastError.message,
                              contextstr,
                              pointerstr);
    }

    VIR_FREE(contextstr);
    VIR_FREE(pointerstr);
}
786 787 788 789 790 791 792

/**
 * 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
793
 * @ctxt: optional pointer to populate with new context pointer
794 795 796 797 798 799 800 801 802 803
 *
 * 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,
804 805
                  const char *url,
                  xmlXPathContextPtr *ctxt)
806 807 808 809 810 811 812
{
    struct virParserData private;
    xmlParserCtxtPtr pctxt;
    xmlDocPtr xml = NULL;

    /* Set up a parser context so we can catch the details of XML errors. */
    pctxt = xmlNewParserCtxt();
813 814
    if (!pctxt || !pctxt->sax) {
        virReportOOMError();
815
        goto error;
816
    }
817 818 819 820 821 822 823

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

    if (filename) {
        xml = xmlCtxtReadFile(pctxt, filename, NULL,
824
                              XML_PARSE_NONET |
825 826 827
                              XML_PARSE_NOWARNING);
    } else {
        xml = xmlCtxtReadDoc(pctxt, BAD_CAST xmlStr, url, NULL,
828
                             XML_PARSE_NONET |
829 830 831 832 833 834 835 836 837 838 839
                             XML_PARSE_NOWARNING);
    }
    if (!xml)
        goto error;

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

840
    if (ctxt) {
841
        if (!(*ctxt = virXMLXPathContextNew(xml)))
842
            goto error;
843

844 845 846
        (*ctxt)->node = xmlDocGetRootElement(xml);
    }

847
 cleanup:
848 849 850 851
    xmlFreeParserCtxt(pctxt);

    return xml;

852
 error:
853 854 855
    xmlFreeDoc(xml);
    xml = NULL;

856
    if (virGetLastErrorCode() == VIR_ERR_OK) {
857
        virGenericReportError(domcode, VIR_ERR_XML_ERROR,
858 859
                              _("failed to parse xml document '%s'"),
                              filename ? filename : "[inline data]");
860 861 862
    }
    goto cleanup;
}
863

J
Ján Tomko 已提交
864 865
const char *virXMLPickShellSafeComment(const char *str1, const char *str2)
{
866 867
    if (str1 && !strpbrk(str1, "\r\t\n !\"#$&'()*;<>?[\\]^`{|}~") &&
        !strstr(str1, "--"))
J
Ján Tomko 已提交
868
        return str1;
869 870
    if (str2 && !strpbrk(str2, "\r\t\n !\"#$&'()*;<>?[\\]^`{|}~") &&
        !strstr(str2, "--"))
J
Ján Tomko 已提交
871 872 873
        return str2;
    return NULL;
}
874

875 876 877 878 879
static int virXMLEmitWarning(int fd,
                             const char *name,
                             const char *cmd)
{
    size_t len;
880 881 882 883 884 885 886 887 888
    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";
889

J
Ján Tomko 已提交
890
    if (fd < 0 || !cmd) {
891 892 893 894 895 896 897 898 899 900 901 902
        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 已提交
903
    if (name) {
904 905
        if (safewrite(fd, " ", 1) != 1)
            return -1;
906

907 908 909 910
        len = strlen(name);
        if (safewrite(fd, name, len) != len)
            return -1;
    }
911 912 913 914 915 916 917 918 919

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

    return 0;
}


E
Eric Blake 已提交
920
struct virXMLRewriteFileData {
921 922 923 924 925 926
    const char *warnName;
    const char *warnCommand;
    const char *xml;
};

static int
927
virXMLRewriteFile(int fd, const void *opaque)
928
{
929
    const struct virXMLRewriteFileData *data = opaque;
930

J
Ján Tomko 已提交
931
    if (data->warnCommand) {
932
        if (virXMLEmitWarning(fd, data->warnName, data->warnCommand) < 0)
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
            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 已提交
948
    struct virXMLRewriteFileData data = { warnName, warnCommand, xml };
949 950 951

    return virFileRewrite(path, S_IRUSR | S_IWUSR, virXMLRewriteFile, &data);
}
E
Eric Blake 已提交
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971

/* 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;
}
972 973 974 975 976 977 978 979 980 981 982 983


/**
 * 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)
{
M
Martin Kletzander 已提交
984 985
    xmlBufferPtr xmlbuf = NULL;
    char *ret = NULL;
986

M
Martin Kletzander 已提交
987 988 989 990
    if (!(xmlbuf = xmlBufferCreate())) {
        virReportOOMError();
        return NULL;
    }
991

M
Martin Kletzander 已提交
992 993 994 995 996
    if (xmlNodeDump(xmlbuf, doc, node, 0, 1) == 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to convert the XML node tree"));
        goto cleanup;
    }
997

M
Martin Kletzander 已提交
998
    ignore_value(VIR_STRDUP(ret, (const char *)xmlBufferContent(xmlbuf)));
999

1000
 cleanup:
M
Martin Kletzander 已提交
1001
    xmlBufferFree(xmlbuf);
1002

M
Martin Kletzander 已提交
1003
    return ret;
1004
}
1005

1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021

/**
 * virXMLNodeNameEqual:
 * @node: xml Node pointer to check
 * @name: name of the @node
 *
 * Compares the @node name with @name.
 */
bool
virXMLNodeNameEqual(xmlNodePtr node,
                    const char *name)
{
    return xmlStrEqual(node->name, BAD_CAST name);
}


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 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
typedef int (*virXMLForeachCallback)(xmlNodePtr node,
                                     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;

1067 1068 1069
    if (!root)
        return NULL;

1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
    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;

1135
 cleanup:
1136 1137
    if (doc)
        *doc = xmlstr;
1138 1139
    else
        VIR_FREE(xmlstr);
1140 1141 1142
    xmlFreeNode(nodeCopy);
    return ret;
}
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164


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;

1165 1166 1167 1168 1169 1170
    if (xmlValidateNCName((const unsigned char *)key, 1) != 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to validate prefix for a new XML namespace"));
        return -1;
    }

1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
    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;
}
1181

1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
/**
 * virXMLNodeSanitizeNamespaces()
 * @node: Sanitize the namespaces for this node
 *
 * This function removes subnodes in node that share the namespace.
 * The first instance of every duplicate namespace is kept.
 * Additionally nodes with no namespace are deleted.
 */
void
virXMLNodeSanitizeNamespaces(xmlNodePtr node)
{
    xmlNodePtr child;
    xmlNodePtr next;
    xmlNodePtr dupl;

    if (!node)
M
Martin Kletzander 已提交
1198
        return;
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233

    child = node->children;
    while (child) {
        /* remove subelements that don't have any namespace at all */
        if (!child->ns || !child->ns->href) {
            dupl = child;
            child = child->next;

            xmlUnlinkNode(dupl);
            xmlFreeNode(dupl);
            continue;
        }

        /* check that every other child of @root doesn't share the namespace of
         * the current one and delete them possibly */
        next = child->next;
        while (next) {
            dupl = NULL;

            if (child->ns && next->ns &&
                STREQ_NULLABLE((const char *) child->ns->href,
                               (const char *) next->ns->href))
                dupl = next;

            next = next->next;
            if (dupl) {
                xmlUnlinkNode(dupl);
                xmlFreeNode(dupl);
            }
        }
        child = child->next;
    }
}


1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
static void catchRNGError(void *ctx,
                          const char *msg,
                          ...)
{
    virBufferPtr buf = ctx;
    va_list args;

    va_start(args, msg);
    VIR_WARNINGS_NO_PRINTF;
    virBufferVasprintf(buf, msg, args);
    VIR_WARNINGS_RESET;
    va_end(args);
}


J
Ján Tomko 已提交
1249 1250
static void ignoreRNGError(void *ctx G_GNUC_UNUSED,
                           const char *msg G_GNUC_UNUSED,
1251 1252 1253 1254
                           ...)
{}


J
Ján Tomko 已提交
1255 1256
virXMLValidatorPtr
virXMLValidatorInit(const char *schemafile)
1257
{
J
Ján Tomko 已提交
1258
    virXMLValidatorPtr validator = NULL;
1259

J
Ján Tomko 已提交
1260
    if (VIR_ALLOC(validator) < 0)
J
Ján Tomko 已提交
1261
        return NULL;
J
Ján Tomko 已提交
1262 1263

    if (VIR_STRDUP(validator->schemafile, schemafile) < 0)
J
Ján Tomko 已提交
1264
        goto error;
J
Ján Tomko 已提交
1265 1266

    if (!(validator->rngParser =
1267
          xmlRelaxNGNewParserCtxt(validator->schemafile))) {
1268 1269
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unable to create RNG parser for %s"),
J
Ján Tomko 已提交
1270
                       validator->schemafile);
J
Ján Tomko 已提交
1271
        goto error;
1272 1273
    }

J
Ján Tomko 已提交
1274
    xmlRelaxNGSetParserErrors(validator->rngParser,
1275 1276
                              catchRNGError,
                              ignoreRNGError,
J
Ján Tomko 已提交
1277
                              &validator->buf);
1278

J
Ján Tomko 已提交
1279
    if (!(validator->rng = xmlRelaxNGParse(validator->rngParser))) {
1280 1281
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unable to parse RNG %s: %s"),
J
Ján Tomko 已提交
1282 1283
                       validator->schemafile,
                       virBufferCurrentContent(&validator->buf));
J
Ján Tomko 已提交
1284
        goto error;
1285 1286
    }

J
Ján Tomko 已提交
1287
    if (!(validator->rngValid = xmlRelaxNGNewValidCtxt(validator->rng))) {
1288 1289
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unable to create RNG validation context %s"),
J
Ján Tomko 已提交
1290
                       validator->schemafile);
J
Ján Tomko 已提交
1291
        goto error;
1292 1293
    }

J
Ján Tomko 已提交
1294
    xmlRelaxNGSetValidErrors(validator->rngValid,
1295 1296
                             catchRNGError,
                             ignoreRNGError,
J
Ján Tomko 已提交
1297
                             &validator->buf);
J
Ján Tomko 已提交
1298 1299 1300 1301 1302 1303 1304 1305 1306
    return validator;

 error:
    virXMLValidatorFree(validator);
    return NULL;
}


int
J
Ján Tomko 已提交
1307 1308
virXMLValidatorValidate(virXMLValidatorPtr validator,
                        xmlDocPtr doc)
J
Ján Tomko 已提交
1309 1310 1311
{
    int ret = -1;

J
Ján Tomko 已提交
1312
    if (xmlRelaxNGValidateDoc(validator->rngValid, doc) != 0) {
1313 1314
        virReportError(VIR_ERR_XML_INVALID_SCHEMA,
                       _("Unable to validate doc against %s\n%s"),
J
Ján Tomko 已提交
1315 1316
                       validator->schemafile,
                       virBufferCurrentContent(&validator->buf));
1317 1318 1319 1320
        goto cleanup;
    }

    ret = 0;
J
Ján Tomko 已提交
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
 cleanup:
    virBufferFreeAndReset(&validator->buf);
    return ret;
}


int
virXMLValidateAgainstSchema(const char *schemafile,
                            xmlDocPtr doc)
{
    virXMLValidatorPtr validator = NULL;
    int ret = -1;
1333

J
Ján Tomko 已提交
1334 1335 1336 1337 1338 1339 1340
    if (!(validator = virXMLValidatorInit(schemafile)))
        return -1;

    if (virXMLValidatorValidate(validator, doc) < 0)
        goto cleanup;

    ret = 0;
1341
 cleanup:
J
Ján Tomko 已提交
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
    virXMLValidatorFree(validator);
    return ret;
}


void
virXMLValidatorFree(virXMLValidatorPtr validator)
{
    if (!validator)
        return;

J
Ján Tomko 已提交
1353 1354 1355 1356 1357 1358
    VIR_FREE(validator->schemafile);
    virBufferFreeAndReset(&validator->buf);
    xmlRelaxNGFreeParserCtxt(validator->rngParser);
    xmlRelaxNGFreeValidCtxt(validator->rngValid);
    xmlRelaxNGFree(validator->rng);
    VIR_FREE(validator);
1359
}
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373


/**
 * virXMLFormatElement
 * @buf: the parent buffer where the element will be placed
 * @name: the name of the element
 * @attrBuf: buffer with attributes for element, may be NULL
 * @childBuf: buffer with child elements, may be NULL
 *
 * Helper to format element where attributes or child elements
 * are optional and may not be formatted.  If both @attrBuf and
 * @childBuf are NULL or are empty buffers the element is not
 * formatted.
 *
1374 1375
 * Both passed buffers are always consumed and freed.
 *
1376 1377 1378 1379 1380 1381 1382 1383
 * Returns 0 on success, -1 on error.
 */
int
virXMLFormatElement(virBufferPtr buf,
                    const char *name,
                    virBufferPtr attrBuf,
                    virBufferPtr childBuf)
{
1384 1385
    int ret = -1;

1386 1387 1388 1389 1390 1391
    if ((!attrBuf || virBufferUse(attrBuf) == 0) &&
        (!childBuf || virBufferUse(childBuf) == 0)) {
        return 0;
    }

    if ((attrBuf && virBufferCheckError(attrBuf) < 0) ||
1392 1393
        (childBuf && virBufferCheckError(childBuf) < 0))
        goto cleanup;
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407

    virBufferAsprintf(buf, "<%s", name);

    if (attrBuf && virBufferUse(attrBuf) > 0)
        virBufferAddBuffer(buf, attrBuf);

    if (childBuf && virBufferUse(childBuf) > 0) {
        virBufferAddLit(buf, ">\n");
        virBufferAddBuffer(buf, childBuf);
        virBufferAsprintf(buf, "</%s>\n", name);
    } else {
        virBufferAddLit(buf, "/>\n");
    }

1408 1409 1410 1411 1412 1413
    ret = 0;

 cleanup:
    virBufferFreeAndReset(attrBuf);
    virBufferFreeAndReset(childBuf);
    return ret;
1414
}
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424


void
virXPathContextNodeRestore(virXPathContextNodeSavePtr save)
{
    if (!save->ctxt)
        return;

    save->ctxt->node = save->node;
}
1425 1426 1427 1428 1429 1430


void
virXMLNamespaceFormatNS(virBufferPtr buf,
                        virXMLNamespace const *ns)
{
1431
    virBufferAsprintf(buf, " xmlns:%s='%s'", ns->prefix, ns->uri);
1432
}
1433 1434 1435 1436 1437 1438 1439 1440


int
virXMLNamespaceRegister(xmlXPathContextPtr ctxt,
                        virXMLNamespace const *ns)
{
    if (xmlXPathRegisterNs(ctxt,
                           BAD_CAST ns->prefix,
1441
                           BAD_CAST ns->uri) < 0) {
1442 1443
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to register xml namespace '%s'"),
1444
                       ns->uri);
1445 1446 1447 1448 1449
        return -1;
    }

    return 0;
}