Coverage Report

Created: 2026-05-11 07:03

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libxml2/pattern.c
Line
Count
Source
1
/*
2
 * pattern.c: Implementation of selectors for nodes
3
 *
4
 * Reference:
5
 *   http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/
6
 *   to some extent
7
 *   http://www.w3.org/TR/1999/REC-xml-19991116
8
 *
9
 * See Copyright for the status of this software.
10
 *
11
 * Author: Daniel Veillard
12
 */
13
14
/*
15
 * TODO:
16
 * - compilation flags to check for specific syntaxes
17
 *   using flags of #xmlPatterncompile
18
 * - making clear how pattern starting with / or . need to be handled,
19
 *   currently push(NULL, NULL) means a reset of the streaming context
20
 *   and indicating we are on / (the document node), probably need
21
 *   something similar for .
22
 * - get rid of the "compile" starting with lowercase
23
 * - DONE (2006-05-16): get rid of the Strdup/Strndup in case of dictionary
24
 */
25
26
#define IN_LIBXML
27
#include "libxml.h"
28
29
#include <string.h>
30
#include <libxml/pattern.h>
31
#include <libxml/xmlmemory.h>
32
#include <libxml/tree.h>
33
#include <libxml/dict.h>
34
#include <libxml/xmlerror.h>
35
#include <libxml/parserInternals.h>
36
37
#include "private/memory.h"
38
#include "private/parser.h"
39
40
#ifdef LIBXML_PATTERN_ENABLED
41
42
#ifdef ERROR
43
#undef ERROR
44
#endif
45
#define ERROR(a, b, c, d)
46
#define ERROR5(a, b, c, d, e)
47
48
2.16M
#define XML_STREAM_STEP_DESC  1
49
212k
#define XML_STREAM_STEP_FINAL 2
50
549k
#define XML_STREAM_STEP_ROOT  4
51
7.39k
#define XML_STREAM_STEP_ATTR  8
52
655
#define XML_STREAM_STEP_NODE  16
53
29.6k
#define XML_STREAM_STEP_IN_SET  32
54
55
/*
56
* NOTE: Those private flags (XML_STREAM_xxx) are used
57
*   in _xmlStreamCtxt->flag. They extend the public
58
*   xmlPatternFlags, so be careful not to interfere with the
59
*   reserved values for xmlPatternFlags.
60
*/
61
3.27k
#define XML_STREAM_FINAL_IS_ANY_NODE 1<<14
62
0
#define XML_STREAM_FROM_ROOT 1<<15
63
1.82M
#define XML_STREAM_DESC 1<<16
64
65
/*
66
* XML_STREAM_ANY_NODE is used for comparison against
67
* xmlElementType enums, to indicate a node of any type.
68
*/
69
241k
#define XML_STREAM_ANY_NODE 100
70
71
732k
#define XML_PATTERN_NOTPATTERN  (XML_PATTERN_XPATH | \
72
732k
         XML_PATTERN_XSSEL | \
73
732k
         XML_PATTERN_XSFIELD)
74
75
206k
#define XML_STREAM_XS_IDC(c) ((c)->flags & \
76
206k
    (XML_PATTERN_XSSEL | XML_PATTERN_XSFIELD))
77
78
18.9k
#define XML_STREAM_XS_IDC_SEL(c) ((c)->flags & XML_PATTERN_XSSEL)
79
80
#define XML_STREAM_XS_IDC_FIELD(c) ((c)->flags & XML_PATTERN_XSFIELD)
81
82
#define XML_PAT_COPY_NSNAME(c, r, nsname) \
83
13.8k
    if ((c)->comp->dict) \
84
13.8k
  r = (xmlChar *) xmlDictLookup((c)->comp->dict, BAD_CAST nsname, -1); \
85
13.8k
    else r = xmlStrdup(BAD_CAST nsname);
86
87
28.7k
#define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r);
88
89
typedef struct _xmlStreamStep xmlStreamStep;
90
typedef xmlStreamStep *xmlStreamStepPtr;
91
struct _xmlStreamStep {
92
    int flags;      /* properties of that step */
93
    const xmlChar *name;  /* first string value if NULL accept all */
94
    const xmlChar *ns;    /* second string value */
95
    int nodeType;   /* type of node */
96
};
97
98
typedef struct _xmlStreamComp xmlStreamComp;
99
typedef xmlStreamComp *xmlStreamCompPtr;
100
struct _xmlStreamComp {
101
    xmlDict *dict;    /* the dictionary if any */
102
    int nbStep;     /* number of steps in the automata */
103
    int maxStep;    /* allocated number of steps */
104
    xmlStreamStepPtr steps; /* the array of steps */
105
    int flags;
106
};
107
108
struct _xmlStreamCtxt {
109
    struct _xmlStreamCtxt *next;/* link to next sub pattern if | */
110
    xmlStreamCompPtr comp;  /* the compiled stream */
111
    int nbState;    /* number of states in the automata */
112
    int maxState;   /* allocated number of states */
113
    int level;      /* how deep are we ? */
114
    int *states;    /* the array of step indexes */
115
    int flags;      /* validation options */
116
    int blockLevel;
117
};
118
119
static void xmlFreeStreamComp(xmlStreamCompPtr comp);
120
121
/*
122
 * Types are private:
123
 */
124
125
typedef enum {
126
    XML_OP_END=0,
127
    XML_OP_ROOT,
128
    XML_OP_ELEM,
129
    XML_OP_CHILD,
130
    XML_OP_ATTR,
131
    XML_OP_PARENT,
132
    XML_OP_ANCESTOR,
133
    XML_OP_NS,
134
    XML_OP_ALL
135
} xmlPatOp;
136
137
138
typedef struct _xmlStepState xmlStepState;
139
typedef xmlStepState *xmlStepStatePtr;
140
struct _xmlStepState {
141
    int step;
142
    xmlNodePtr node;
143
};
144
145
typedef struct _xmlStepStates xmlStepStates;
146
typedef xmlStepStates *xmlStepStatesPtr;
147
struct _xmlStepStates {
148
    int nbstates;
149
    int maxstates;
150
    xmlStepStatePtr states;
151
};
152
153
typedef struct _xmlStepOp xmlStepOp;
154
typedef xmlStepOp *xmlStepOpPtr;
155
struct _xmlStepOp {
156
    xmlPatOp op;
157
    const xmlChar *value;
158
    const xmlChar *value2; /* The namespace name */
159
};
160
161
70.1k
#define PAT_FROM_ROOT (1<<8)
162
80.7k
#define PAT_FROM_CUR  (1<<9)
163
164
struct _xmlPattern {
165
    void *data;   /* the associated template */
166
    xmlDictPtr dict;    /* the optional dictionary */
167
    struct _xmlPattern *next; /* next pattern if | is used */
168
    const xmlChar *pattern; /* the pattern */
169
    int flags;      /* flags */
170
    int nbStep;
171
    int maxStep;
172
    xmlStepOpPtr steps;        /* ops for computation */
173
    xmlStreamCompPtr stream;  /* the streaming data if any */
174
};
175
176
typedef struct _xmlPatParserContext xmlPatParserContext;
177
typedef xmlPatParserContext *xmlPatParserContextPtr;
178
struct _xmlPatParserContext {
179
    const xmlChar *cur;     /* the current char being parsed */
180
    const xmlChar *base;    /* the full expression */
181
    int            error;   /* error code */
182
    xmlDictPtr     dict;    /* the dictionary if any */
183
    xmlPatternPtr  comp;    /* the result */
184
    xmlNodePtr     elem;    /* the current node if any */
185
    const xmlChar **namespaces;   /* the namespaces definitions */
186
    int   nb_namespaces;    /* the number of namespaces */
187
};
188
189
/************************************************************************
190
 *                  *
191
 *      Type functions          *
192
 *                  *
193
 ************************************************************************/
194
195
/**
196
 * Create a new XSLT Pattern
197
 *
198
 * @returns the newly allocated xmlPattern or NULL in case of error
199
 */
200
static xmlPatternPtr
201
51.1k
xmlNewPattern(void) {
202
51.1k
    xmlPatternPtr cur;
203
204
51.1k
    cur = (xmlPatternPtr) xmlMalloc(sizeof(xmlPattern));
205
51.1k
    if (cur == NULL) {
206
9
  ERROR(NULL, NULL, NULL,
207
9
    "xmlNewPattern : malloc failed\n");
208
9
  return(NULL);
209
9
    }
210
51.1k
    memset(cur, 0, sizeof(xmlPattern));
211
51.1k
    cur->steps = NULL;
212
51.1k
    cur->maxStep = 0;
213
51.1k
    return(cur);
214
51.1k
}
215
216
/**
217
 * Free up the memory allocated by `comp`
218
 *
219
 * @param comp  an XSLT comp
220
 */
221
void
222
28.2k
xmlFreePattern(xmlPattern *comp) {
223
28.2k
    xmlFreePatternList(comp);
224
28.2k
}
225
226
static void
227
51.1k
xmlFreePatternInternal(xmlPatternPtr comp) {
228
51.1k
    xmlStepOpPtr op;
229
51.1k
    int i;
230
231
51.1k
    if (comp == NULL)
232
0
  return;
233
51.1k
    if (comp->stream != NULL)
234
29.5k
        xmlFreeStreamComp(comp->stream);
235
51.1k
    if (comp->pattern != NULL)
236
0
  xmlFree((xmlChar *)comp->pattern);
237
51.1k
    if (comp->steps != NULL) {
238
41.8k
        if (comp->dict == NULL) {
239
224k
      for (i = 0;i < comp->nbStep;i++) {
240
182k
    op = &comp->steps[i];
241
182k
    if (op->value != NULL)
242
66.1k
        xmlFree((xmlChar *) op->value);
243
182k
    if (op->value2 != NULL)
244
4.27k
        xmlFree((xmlChar *) op->value2);
245
182k
      }
246
41.8k
  }
247
41.8k
  xmlFree(comp->steps);
248
41.8k
    }
249
51.1k
    if (comp->dict != NULL)
250
0
        xmlDictFree(comp->dict);
251
252
51.1k
    memset(comp, -1, sizeof(xmlPattern));
253
51.1k
    xmlFree(comp);
254
51.1k
}
255
256
/**
257
 * Free up the memory allocated by all the elements of `comp`
258
 *
259
 * @param comp  an XSLT comp list
260
 */
261
void
262
28.2k
xmlFreePatternList(xmlPattern *comp) {
263
28.2k
    xmlPatternPtr cur;
264
265
79.3k
    while (comp != NULL) {
266
51.1k
  cur = comp;
267
51.1k
  comp = comp->next;
268
51.1k
  cur->next = NULL;
269
51.1k
  xmlFreePatternInternal(cur);
270
51.1k
    }
271
28.2k
}
272
273
/**
274
 * Create a new XML pattern parser context
275
 *
276
 * @param pattern  the pattern context
277
 * @param dict  the inherited dictionary or NULL
278
 * @param namespaces  the prefix definitions, array of [URI, prefix] terminated
279
 *              with [NULL, NULL] or NULL if no namespace is used
280
 * @returns the newly allocated xmlPatParserContext or NULL in case of error
281
 */
282
static xmlPatParserContextPtr
283
xmlNewPatParserContext(const xmlChar *pattern, xmlDictPtr dict,
284
51.1k
                       const xmlChar **namespaces) {
285
51.1k
    xmlPatParserContextPtr cur;
286
287
51.1k
    if (pattern == NULL)
288
0
        return(NULL);
289
290
51.1k
    cur = (xmlPatParserContextPtr) xmlMalloc(sizeof(xmlPatParserContext));
291
51.1k
    if (cur == NULL) {
292
12
  ERROR(NULL, NULL, NULL,
293
12
    "xmlNewPatParserContext : malloc failed\n");
294
12
  return(NULL);
295
12
    }
296
51.1k
    memset(cur, 0, sizeof(xmlPatParserContext));
297
51.1k
    cur->dict = dict;
298
51.1k
    cur->cur = pattern;
299
51.1k
    cur->base = pattern;
300
51.1k
    if (namespaces != NULL) {
301
51.0k
        int i;
302
107k
        for (i = 0;namespaces[2 * i] != NULL;i++)
303
56.9k
            ;
304
51.0k
        cur->nb_namespaces = i;
305
51.0k
    } else {
306
125
        cur->nb_namespaces = 0;
307
125
    }
308
51.1k
    cur->namespaces = namespaces;
309
51.1k
    return(cur);
310
51.1k
}
311
312
/**
313
 * Free up the memory allocated by `ctxt`
314
 *
315
 * @param ctxt  an XSLT parser context
316
 */
317
static void
318
51.1k
xmlFreePatParserContext(xmlPatParserContextPtr ctxt) {
319
51.1k
    if (ctxt == NULL)
320
0
  return;
321
51.1k
    memset(ctxt, -1, sizeof(xmlPatParserContext));
322
51.1k
    xmlFree(ctxt);
323
51.1k
}
324
325
static int
326
124k
xmlPatternGrow(xmlPatternPtr comp) {
327
124k
    xmlStepOpPtr temp;
328
124k
    int newSize;
329
330
124k
    newSize = xmlGrowCapacity(comp->maxStep, sizeof(temp[0]),
331
124k
                              10, XML_MAX_ITEMS);
332
124k
    if (newSize < 0)
333
0
        return(-1);
334
124k
    temp = xmlRealloc(comp->steps, newSize * sizeof(temp[0]));
335
124k
    if (temp == NULL)
336
35
        return(-1);
337
124k
    comp->steps = temp;
338
124k
    comp->maxStep = newSize;
339
340
124k
    return(0);
341
124k
}
342
343
/**
344
 * Add a step to an XSLT Compiled Match
345
 *
346
 * @param ctxt  the pattern parser context
347
 * @param comp  the compiled match expression
348
 * @param op  an op
349
 * @param value  the first value
350
 * @param value2  the second value
351
 * @returns -1 in case of failure, 0 otherwise.
352
 */
353
static int
354
xmlPatternAdd(xmlPatParserContextPtr ctxt, xmlPatternPtr comp,
355
              xmlPatOp op, xmlChar * value, xmlChar * value2)
356
155k
{
357
155k
    if (comp->nbStep >= comp->maxStep) {
358
98.7k
        if (xmlPatternGrow(comp) < 0) {
359
32
            ctxt->error = -1;
360
32
            return(-1);
361
32
        }
362
98.7k
    }
363
155k
    comp->steps[comp->nbStep].op = op;
364
155k
    comp->steps[comp->nbStep].value = value;
365
155k
    comp->steps[comp->nbStep].value2 = value2;
366
155k
    comp->nbStep++;
367
155k
    return(0);
368
155k
}
369
370
/**
371
 * reverse all the stack of expressions
372
 *
373
 * @param comp  the compiled match expression
374
 * @returns 0 in case of success and -1 in case of error.
375
 */
376
static int
377
30.0k
xmlReversePattern(xmlPatternPtr comp) {
378
30.0k
    int i, j;
379
380
    /*
381
     * remove the leading // for //a or .//a
382
     */
383
30.0k
    if ((comp->nbStep > 0) && (comp->steps[0].op == XML_OP_ANCESTOR)) {
384
20.4k
        for (i = 0, j = 1;j < comp->nbStep;i++,j++) {
385
17.5k
      comp->steps[i].value = comp->steps[j].value;
386
17.5k
      comp->steps[i].value2 = comp->steps[j].value2;
387
17.5k
      comp->steps[i].op = comp->steps[j].op;
388
17.5k
  }
389
2.92k
  comp->nbStep--;
390
2.92k
    }
391
392
    /*
393
     * Grow to add OP_END later
394
     */
395
30.0k
    if (comp->nbStep >= comp->maxStep) {
396
25.8k
        if (xmlPatternGrow(comp) < 0)
397
3
            return(-1);
398
25.8k
    }
399
400
30.0k
    i = 0;
401
30.0k
    j = comp->nbStep - 1;
402
58.7k
    while (j > i) {
403
28.6k
  register const xmlChar *tmp;
404
28.6k
  register xmlPatOp op;
405
28.6k
  tmp = comp->steps[i].value;
406
28.6k
  comp->steps[i].value = comp->steps[j].value;
407
28.6k
  comp->steps[j].value = tmp;
408
28.6k
  tmp = comp->steps[i].value2;
409
28.6k
  comp->steps[i].value2 = comp->steps[j].value2;
410
28.6k
  comp->steps[j].value2 = tmp;
411
28.6k
  op = comp->steps[i].op;
412
28.6k
  comp->steps[i].op = comp->steps[j].op;
413
28.6k
  comp->steps[j].op = op;
414
28.6k
  j--;
415
28.6k
  i++;
416
28.6k
    }
417
418
30.0k
    comp->steps[comp->nbStep].value = NULL;
419
30.0k
    comp->steps[comp->nbStep].value2 = NULL;
420
30.0k
    comp->steps[comp->nbStep++].op = XML_OP_END;
421
30.0k
    return(0);
422
30.0k
}
423
424
/************************************************************************
425
 *                  *
426
 *    The interpreter for the precompiled patterns    *
427
 *                  *
428
 ************************************************************************/
429
430
static int
431
0
xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) {
432
0
    if (states->maxstates <= states->nbstates) {
433
0
        xmlStepState *tmp;
434
0
        int newSize;
435
436
0
        newSize = xmlGrowCapacity(states->maxstates, sizeof(tmp[0]),
437
0
                                  4, XML_MAX_ITEMS);
438
0
        if (newSize < 0)
439
0
      return(-1);
440
0
  tmp = xmlRealloc(states->states, newSize * sizeof(tmp[0]));
441
0
  if (tmp == NULL)
442
0
      return(-1);
443
0
  states->states = tmp;
444
0
  states->maxstates = newSize;
445
0
    }
446
0
    states->states[states->nbstates].step = step;
447
0
    states->states[states->nbstates++].node = node;
448
0
    return(0);
449
0
}
450
451
/**
452
 * Test whether the node matches the pattern
453
 *
454
 * @param comp  the precompiled pattern
455
 * @param node  a node
456
 * @returns 1 if it matches, 0 if it doesn't and -1 in case of failure
457
 */
458
static int
459
0
xmlPatMatch(xmlPatternPtr comp, xmlNodePtr node) {
460
0
    int i;
461
0
    xmlStepOpPtr step;
462
0
    xmlStepStates states = {0, 0, NULL}; /* // may require backtrack */
463
464
0
    if ((comp == NULL) || (node == NULL)) return(-1);
465
0
    i = 0;
466
0
restart:
467
0
    for (;i < comp->nbStep;i++) {
468
0
  step = &comp->steps[i];
469
0
  switch (step->op) {
470
0
            case XML_OP_END:
471
0
    goto found;
472
0
            case XML_OP_ROOT:
473
0
    if (node->type == XML_NAMESPACE_DECL)
474
0
        goto rollback;
475
0
    node = node->parent;
476
0
    if ((node->type == XML_DOCUMENT_NODE) ||
477
0
        (node->type == XML_HTML_DOCUMENT_NODE))
478
0
        continue;
479
0
    goto rollback;
480
0
            case XML_OP_ELEM:
481
0
    if (node->type != XML_ELEMENT_NODE)
482
0
        goto rollback;
483
0
    if (step->value == NULL)
484
0
        continue;
485
0
    if (step->value[0] != node->name[0])
486
0
        goto rollback;
487
0
    if (!xmlStrEqual(step->value, node->name))
488
0
        goto rollback;
489
490
    /* Namespace test */
491
0
    if (node->ns == NULL) {
492
0
        if (step->value2 != NULL)
493
0
      goto rollback;
494
0
    } else if (node->ns->href != NULL) {
495
0
        if (step->value2 == NULL)
496
0
      goto rollback;
497
0
        if (!xmlStrEqual(step->value2, node->ns->href))
498
0
      goto rollback;
499
0
    }
500
0
    continue;
501
0
            case XML_OP_CHILD: {
502
0
    xmlNodePtr lst;
503
504
0
    if ((node->type != XML_ELEMENT_NODE) &&
505
0
        (node->type != XML_DOCUMENT_NODE) &&
506
0
        (node->type != XML_HTML_DOCUMENT_NODE))
507
0
        goto rollback;
508
509
0
    lst = node->children;
510
511
0
    if (step->value != NULL) {
512
0
        while (lst != NULL) {
513
0
      if ((lst->type == XML_ELEMENT_NODE) &&
514
0
          (step->value[0] == lst->name[0]) &&
515
0
          (xmlStrEqual(step->value, lst->name)))
516
0
          break;
517
0
      lst = lst->next;
518
0
        }
519
0
        if (lst != NULL)
520
0
      continue;
521
0
    }
522
0
    goto rollback;
523
0
      }
524
0
            case XML_OP_ATTR:
525
0
    if (node->type != XML_ATTRIBUTE_NODE)
526
0
        goto rollback;
527
0
    if (step->value != NULL) {
528
0
        if (step->value[0] != node->name[0])
529
0
      goto rollback;
530
0
        if (!xmlStrEqual(step->value, node->name))
531
0
      goto rollback;
532
0
    }
533
    /* Namespace test */
534
0
    if (node->ns == NULL) {
535
0
        if (step->value2 != NULL)
536
0
      goto rollback;
537
0
    } else if (step->value2 != NULL) {
538
0
        if (!xmlStrEqual(step->value2, node->ns->href))
539
0
      goto rollback;
540
0
    }
541
0
    continue;
542
0
            case XML_OP_PARENT:
543
0
    if ((node->type == XML_DOCUMENT_NODE) ||
544
0
        (node->type == XML_HTML_DOCUMENT_NODE) ||
545
0
        (node->type == XML_NAMESPACE_DECL))
546
0
        goto rollback;
547
0
    node = node->parent;
548
0
    if (node == NULL)
549
0
        goto rollback;
550
0
    if (step->value == NULL)
551
0
        continue;
552
0
    if (step->value[0] != node->name[0])
553
0
        goto rollback;
554
0
    if (!xmlStrEqual(step->value, node->name))
555
0
        goto rollback;
556
    /* Namespace test */
557
0
    if (node->ns == NULL) {
558
0
        if (step->value2 != NULL)
559
0
      goto rollback;
560
0
    } else if (node->ns->href != NULL) {
561
0
        if (step->value2 == NULL)
562
0
      goto rollback;
563
0
        if (!xmlStrEqual(step->value2, node->ns->href))
564
0
      goto rollback;
565
0
    }
566
0
    continue;
567
0
            case XML_OP_ANCESTOR:
568
    /* TODO: implement coalescing of ANCESTOR/NODE ops */
569
0
    if (step->value == NULL) {
570
0
        i++;
571
0
        step = &comp->steps[i];
572
0
        if (step->op == XML_OP_ROOT)
573
0
      goto found;
574
0
        if (step->op != XML_OP_ELEM)
575
0
      goto rollback;
576
0
        if (step->value == NULL)
577
0
      return(-1);
578
0
    }
579
0
    if (node == NULL)
580
0
        goto rollback;
581
0
    if ((node->type == XML_DOCUMENT_NODE) ||
582
0
        (node->type == XML_HTML_DOCUMENT_NODE) ||
583
0
        (node->type == XML_NAMESPACE_DECL))
584
0
        goto rollback;
585
0
    node = node->parent;
586
0
    while (node != NULL) {
587
0
        if ((node->type == XML_ELEMENT_NODE) &&
588
0
      (step->value[0] == node->name[0]) &&
589
0
      (xmlStrEqual(step->value, node->name))) {
590
      /* Namespace test */
591
0
      if (node->ns == NULL) {
592
0
          if (step->value2 == NULL)
593
0
        break;
594
0
      } else if (node->ns->href != NULL) {
595
0
          if ((step->value2 != NULL) &&
596
0
              (xmlStrEqual(step->value2, node->ns->href)))
597
0
        break;
598
0
      }
599
0
        }
600
0
        node = node->parent;
601
0
    }
602
0
    if (node == NULL)
603
0
        goto rollback;
604
    /*
605
     * prepare a potential rollback from here
606
     * for ancestors of that node.
607
     */
608
0
    if (step->op == XML_OP_ANCESTOR)
609
0
        xmlPatPushState(&states, i, node);
610
0
    else
611
0
        xmlPatPushState(&states, i - 1, node);
612
0
    continue;
613
0
            case XML_OP_NS:
614
0
    if (node->type != XML_ELEMENT_NODE)
615
0
        goto rollback;
616
0
    if (node->ns == NULL) {
617
0
        if (step->value != NULL)
618
0
      goto rollback;
619
0
    } else if (node->ns->href != NULL) {
620
0
        if (step->value == NULL)
621
0
      goto rollback;
622
0
        if (!xmlStrEqual(step->value, node->ns->href))
623
0
      goto rollback;
624
0
    }
625
0
    break;
626
0
            case XML_OP_ALL:
627
0
    if (node->type != XML_ELEMENT_NODE)
628
0
        goto rollback;
629
0
    break;
630
0
  }
631
0
    }
632
0
found:
633
0
    if (states.states != NULL) {
634
        /* Free the rollback states */
635
0
  xmlFree(states.states);
636
0
    }
637
0
    return(1);
638
0
rollback:
639
    /* got an error try to rollback */
640
0
    if (states.states == NULL)
641
0
  return(0);
642
0
    if (states.nbstates <= 0) {
643
0
  xmlFree(states.states);
644
0
  return(0);
645
0
    }
646
0
    states.nbstates--;
647
0
    i = states.states[states.nbstates].step;
648
0
    node = states.states[states.nbstates].node;
649
0
    goto restart;
650
0
}
651
652
/************************************************************************
653
 *                  *
654
 *      Dedicated parser for templates      *
655
 *                  *
656
 ************************************************************************/
657
658
807k
#define CUR (*ctxt->cur)
659
#define SKIP(val) ctxt->cur += (val)
660
0
#define NXT(val) ctxt->cur[(val)]
661
#define PEEKPREV(val) ctxt->cur[-(val)]
662
203k
#define CUR_PTR ctxt->cur
663
664
#define SKIP_BLANKS             \
665
467k
    while (IS_BLANK_CH(CUR)) NEXT
666
667
#define CURRENT (*ctxt->cur)
668
728k
#define NEXT ((*ctxt->cur) ?  ctxt->cur++: ctxt->cur)
669
670
671
#define PUSH(op, val, val2)           \
672
155k
    if (xmlPatternAdd(ctxt, ctxt->comp, (op), (val), (val2))) goto error;
673
674
/**
675
 * [4] NameChar ::= Letter | Digit | '.' | '-' | '_' |
676
 *                  CombiningChar | Extender
677
 *
678
 * [5] Name ::= (Letter | '_' | ':') (NameChar)*
679
 *
680
 * [6] Names ::= Name (S Name)*
681
 *
682
 * @param ctxt  the XPath Parser context
683
 * @returns the Name parsed or NULL
684
 */
685
686
static xmlChar *
687
22.0k
xmlPatScanName(xmlPatParserContextPtr ctxt) {
688
22.0k
    const xmlChar *q, *cur;
689
22.0k
    xmlChar *ret = NULL;
690
691
22.0k
    SKIP_BLANKS;
692
693
22.0k
    q = CUR_PTR;
694
22.0k
    cur = xmlScanName(q, XML_MAX_NAME_LENGTH, 0);
695
22.0k
    if ((cur == NULL) || (cur == q))
696
14.6k
        return(NULL);
697
7.42k
    if (ctxt->dict)
698
0
  ret = (xmlChar *) xmlDictLookup(ctxt->dict, q, cur - q);
699
7.42k
    else
700
7.42k
  ret = xmlStrndup(q, cur - q);
701
7.42k
    CUR_PTR = cur;
702
7.42k
    return(ret);
703
22.0k
}
704
705
/**
706
 * Parses a non qualified name
707
 *
708
 * @param ctxt  the XPath Parser context
709
 * @returns the Name parsed or NULL
710
 */
711
712
static xmlChar *
713
95.9k
xmlPatScanNCName(xmlPatParserContextPtr ctxt) {
714
95.9k
    const xmlChar *q, *cur;
715
95.9k
    xmlChar *ret = NULL;
716
717
95.9k
    SKIP_BLANKS;
718
719
95.9k
    q = CUR_PTR;
720
95.9k
    cur = xmlScanName(q, XML_MAX_NAME_LENGTH, XML_SCAN_NC);
721
95.9k
    if ((cur == NULL) || (cur == q))
722
18.0k
        return(NULL);
723
77.8k
    if (ctxt->dict)
724
0
  ret = (xmlChar *) xmlDictLookup(ctxt->dict, q, cur - q);
725
77.8k
    else
726
77.8k
  ret = xmlStrndup(q, cur - q);
727
77.8k
    if (ret == NULL)
728
8
        ctxt->error = -1;
729
77.8k
    CUR_PTR = cur;
730
77.8k
    return(ret);
731
95.9k
}
732
733
/**
734
 * Compile an attribute test.
735
 *
736
 * @param ctxt  the compilation context
737
 */
738
static void
739
18.2k
xmlCompileAttributeTest(xmlPatParserContextPtr ctxt) {
740
18.2k
    xmlChar *token = NULL;
741
18.2k
    xmlChar *name = NULL;
742
18.2k
    xmlChar *URL = NULL;
743
744
18.2k
    SKIP_BLANKS;
745
18.2k
    name = xmlPatScanNCName(ctxt);
746
18.2k
    if (ctxt->error < 0)
747
2
        return;
748
18.2k
    if (name == NULL) {
749
6.39k
  if (CUR == '*') {
750
5.03k
      PUSH(XML_OP_ATTR, NULL, NULL);
751
5.03k
      NEXT;
752
5.03k
  } else {
753
1.35k
      ERROR(NULL, NULL, NULL,
754
1.35k
    "xmlCompileAttributeTest : Name expected\n");
755
1.35k
      ctxt->error = 1;
756
1.35k
  }
757
6.39k
  return;
758
6.39k
    }
759
11.8k
    if (CUR == ':') {
760
6.49k
  int i;
761
6.49k
  xmlChar *prefix = name;
762
763
6.49k
  NEXT;
764
765
6.49k
  if (IS_BLANK_CH(CUR)) {
766
580
      ERROR5(NULL, NULL, NULL, "Invalid QName.\n", NULL);
767
580
      ctxt->error = 1;
768
580
      goto error;
769
580
  }
770
  /*
771
  * This is a namespace match
772
  */
773
5.91k
  token = xmlPatScanName(ctxt);
774
5.91k
  if ((prefix[0] == 'x') &&
775
4.78k
      (prefix[1] == 'm') &&
776
372
      (prefix[2] == 'l') &&
777
329
      (prefix[3] == 0))
778
128
  {
779
128
      XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE);
780
5.78k
  } else {
781
8.74k
      for (i = 0;i < ctxt->nb_namespaces;i++) {
782
6.92k
    if (xmlStrEqual(ctxt->namespaces[2 * i + 1], prefix)) {
783
3.96k
        XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
784
3.96k
        break;
785
3.96k
    }
786
6.92k
      }
787
5.78k
      if (i >= ctxt->nb_namespaces) {
788
1.82k
    ERROR5(NULL, NULL, NULL,
789
1.82k
        "xmlCompileAttributeTest : no namespace bound to prefix %s\n",
790
1.82k
        prefix);
791
1.82k
    ctxt->error = 1;
792
1.82k
    goto error;
793
1.82k
      }
794
5.78k
  }
795
4.09k
        XML_PAT_FREE_STRING(ctxt, name);
796
4.09k
        name = NULL;
797
4.09k
  if (token == NULL) {
798
3.18k
      if (CUR == '*') {
799
2.36k
    NEXT;
800
2.36k
    PUSH(XML_OP_ATTR, NULL, URL);
801
2.36k
      } else {
802
821
    ERROR(NULL, NULL, NULL,
803
821
        "xmlCompileAttributeTest : Name expected\n");
804
821
    ctxt->error = 1;
805
821
    goto error;
806
821
      }
807
3.18k
  } else {
808
908
      PUSH(XML_OP_ATTR, token, URL);
809
907
  }
810
5.36k
    } else {
811
5.36k
  PUSH(XML_OP_ATTR, name, NULL);
812
5.36k
    }
813
8.63k
    return;
814
8.63k
error:
815
3.22k
    if (name != NULL)
816
2.40k
  XML_PAT_FREE_STRING(ctxt, name);
817
3.22k
    if (URL != NULL)
818
823
  XML_PAT_FREE_STRING(ctxt, URL)
819
3.22k
    if (token != NULL)
820
658
  XML_PAT_FREE_STRING(ctxt, token);
821
3.22k
}
822
823
/**
824
 * Compile the Step Pattern and generates a precompiled
825
 * form suitable for fast matching.
826
 *
827
 * [3]    Step    ::=    '.' | NameTest
828
 * [4]    NameTest    ::=    QName | '*' | NCName ':' '*'
829
 *
830
 * @param ctxt  the compilation context
831
 */
832
833
static void
834
103k
xmlCompileStepPattern(xmlPatParserContextPtr ctxt) {
835
103k
    xmlChar *token = NULL;
836
103k
    xmlChar *name = NULL;
837
103k
    xmlChar *URL = NULL;
838
103k
    int hasBlanks = 0;
839
840
103k
    SKIP_BLANKS;
841
103k
    if (CUR == '.') {
842
  /*
843
  * Context node.
844
  */
845
7.98k
  NEXT;
846
7.98k
  PUSH(XML_OP_ELEM, NULL, NULL);
847
7.98k
  return;
848
7.98k
    }
849
95.4k
    if (CUR == '@') {
850
  /*
851
  * Attribute test.
852
  */
853
17.7k
  if (XML_STREAM_XS_IDC_SEL(ctxt->comp)) {
854
457
      ERROR5(NULL, NULL, NULL,
855
457
    "Unexpected attribute axis in '%s'.\n", ctxt->base);
856
457
      ctxt->error = 1;
857
457
      return;
858
457
  }
859
17.3k
  NEXT;
860
17.3k
  xmlCompileAttributeTest(ctxt);
861
17.3k
  if (ctxt->error != 0)
862
4.15k
      goto error;
863
13.1k
  return;
864
17.3k
    }
865
77.6k
    name = xmlPatScanNCName(ctxt);
866
77.6k
    if (ctxt->error < 0)
867
6
        return;
868
77.6k
    if (name == NULL) {
869
11.6k
  if (CUR == '*') {
870
9.32k
      NEXT;
871
9.32k
      PUSH(XML_OP_ALL, NULL, NULL);
872
9.31k
      return;
873
9.32k
  } else {
874
2.30k
      ERROR(NULL, NULL, NULL,
875
2.30k
        "xmlCompileStepPattern : Name expected\n");
876
2.30k
      ctxt->error = 1;
877
2.30k
      return;
878
2.30k
  }
879
11.6k
    }
880
66.0k
    if (IS_BLANK_CH(CUR)) {
881
6.18k
  hasBlanks = 1;
882
6.18k
  SKIP_BLANKS;
883
6.18k
    }
884
66.0k
    if (CUR == ':') {
885
18.4k
  NEXT;
886
18.4k
  if (CUR != ':') {
887
12.5k
      xmlChar *prefix = name;
888
12.5k
      int i;
889
890
12.5k
      if (hasBlanks || IS_BLANK_CH(CUR)) {
891
418
    ERROR5(NULL, NULL, NULL, "Invalid QName.\n", NULL);
892
418
    ctxt->error = 1;
893
418
    goto error;
894
418
      }
895
      /*
896
       * This is a namespace match
897
       */
898
12.1k
      token = xmlPatScanName(ctxt);
899
12.1k
      if ((prefix[0] == 'x') &&
900
9.90k
    (prefix[1] == 'm') &&
901
655
    (prefix[2] == 'l') &&
902
344
    (prefix[3] == 0))
903
262
      {
904
262
    XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
905
11.8k
      } else {
906
17.0k
    for (i = 0;i < ctxt->nb_namespaces;i++) {
907
14.7k
        if (xmlStrEqual(ctxt->namespaces[2 * i + 1], prefix)) {
908
9.48k
      XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
909
9.48k
      break;
910
9.48k
        }
911
14.7k
    }
912
11.8k
    if (i >= ctxt->nb_namespaces) {
913
2.35k
        ERROR5(NULL, NULL, NULL,
914
2.35k
      "xmlCompileStepPattern : no namespace bound to prefix %s\n",
915
2.35k
      prefix);
916
2.35k
        ctxt->error = 1;
917
2.35k
        goto error;
918
2.35k
    }
919
11.8k
      }
920
9.74k
      XML_PAT_FREE_STRING(ctxt, prefix);
921
9.74k
      name = NULL;
922
9.74k
      if (token == NULL) {
923
8.73k
    if (CUR == '*') {
924
8.36k
        NEXT;
925
8.36k
        PUSH(XML_OP_NS, URL, NULL);
926
8.36k
    } else {
927
372
        ERROR(NULL, NULL, NULL,
928
372
          "xmlCompileStepPattern : Name expected\n");
929
372
        ctxt->error = 1;
930
372
        goto error;
931
372
    }
932
8.73k
      } else {
933
1.01k
    PUSH(XML_OP_ELEM, token, URL);
934
1.00k
      }
935
9.74k
  } else {
936
5.97k
      NEXT;
937
5.97k
      if (xmlStrEqual(name, (const xmlChar *) "child")) {
938
4.03k
    XML_PAT_FREE_STRING(ctxt, name);
939
4.03k
    name = xmlPatScanName(ctxt);
940
4.03k
    if (name == NULL) {
941
767
        if (CUR == '*') {
942
269
      NEXT;
943
269
      PUSH(XML_OP_ALL, NULL, NULL);
944
268
      return;
945
498
        } else {
946
498
      ERROR(NULL, NULL, NULL,
947
498
          "xmlCompileStepPattern : QName expected\n");
948
498
      ctxt->error = 1;
949
498
      goto error;
950
498
        }
951
767
    }
952
3.26k
    if (CUR == ':') {
953
0
        xmlChar *prefix = name;
954
0
        int i;
955
956
0
        NEXT;
957
0
        if (IS_BLANK_CH(CUR)) {
958
0
      ERROR5(NULL, NULL, NULL, "Invalid QName.\n", NULL);
959
0
      ctxt->error = 1;
960
0
      goto error;
961
0
        }
962
        /*
963
        * This is a namespace match
964
        */
965
0
        token = xmlPatScanName(ctxt);
966
0
        if ((prefix[0] == 'x') &&
967
0
      (prefix[1] == 'm') &&
968
0
      (prefix[2] == 'l') &&
969
0
      (prefix[3] == 0))
970
0
        {
971
0
      XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
972
0
        } else {
973
0
      for (i = 0;i < ctxt->nb_namespaces;i++) {
974
0
          if (xmlStrEqual(ctxt->namespaces[2 * i + 1], prefix)) {
975
0
        XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
976
0
        break;
977
0
          }
978
0
      }
979
0
      if (i >= ctxt->nb_namespaces) {
980
0
          ERROR5(NULL, NULL, NULL,
981
0
        "xmlCompileStepPattern : no namespace bound "
982
0
        "to prefix %s\n", prefix);
983
0
          ctxt->error = 1;
984
0
          goto error;
985
0
      }
986
0
        }
987
0
        XML_PAT_FREE_STRING(ctxt, prefix);
988
0
        name = NULL;
989
0
        if (token == NULL) {
990
0
      if (CUR == '*') {
991
0
          NEXT;
992
0
          PUSH(XML_OP_NS, URL, NULL);
993
0
      } else {
994
0
          ERROR(NULL, NULL, NULL,
995
0
        "xmlCompileStepPattern : Name expected\n");
996
0
          ctxt->error = 1;
997
0
          goto error;
998
0
      }
999
0
        } else {
1000
0
      PUSH(XML_OP_ELEM, token, URL);
1001
0
        }
1002
0
    } else
1003
3.26k
        PUSH(XML_OP_ELEM, name, NULL);
1004
3.26k
    return;
1005
3.26k
      } else if (xmlStrEqual(name, (const xmlChar *) "attribute")) {
1006
1.15k
    XML_PAT_FREE_STRING(ctxt, name)
1007
1.15k
    name = NULL;
1008
1.15k
    if (XML_STREAM_XS_IDC_SEL(ctxt->comp)) {
1009
217
        ERROR5(NULL, NULL, NULL,
1010
217
      "Unexpected attribute axis in '%s'.\n", ctxt->base);
1011
217
        ctxt->error = 1;
1012
217
        goto error;
1013
217
    }
1014
937
    xmlCompileAttributeTest(ctxt);
1015
937
    if (ctxt->error != 0)
1016
432
        goto error;
1017
505
    return;
1018
937
      } else {
1019
784
    ERROR5(NULL, NULL, NULL,
1020
784
        "The 'element' or 'attribute' axis is expected.\n", NULL);
1021
784
    ctxt->error = 1;
1022
784
    goto error;
1023
784
      }
1024
5.97k
  }
1025
47.5k
    } else if (CUR == '*') {
1026
324
        if (name != NULL) {
1027
324
      ctxt->error = 1;
1028
324
      goto error;
1029
324
  }
1030
0
  NEXT;
1031
0
  PUSH(XML_OP_ALL, token, NULL);
1032
47.2k
    } else {
1033
47.2k
  PUSH(XML_OP_ELEM, name, NULL);
1034
47.2k
    }
1035
56.5k
    return;
1036
56.5k
error:
1037
9.56k
    if (URL != NULL)
1038
376
  XML_PAT_FREE_STRING(ctxt, URL)
1039
9.56k
    if (token != NULL)
1040
1.57k
  XML_PAT_FREE_STRING(ctxt, token)
1041
9.56k
    if (name != NULL)
1042
3.88k
  XML_PAT_FREE_STRING(ctxt, name)
1043
9.56k
}
1044
1045
/**
1046
 * Compile the Path Pattern and generates a precompiled
1047
 * form suitable for fast matching.
1048
 *
1049
 * [5]    Path    ::=    ('.//')? ( Step '/' )* ( Step | '@' NameTest )
1050
 *
1051
 * @param ctxt  the compilation context
1052
 */
1053
static void
1054
0
xmlCompilePathPattern(xmlPatParserContextPtr ctxt) {
1055
0
    SKIP_BLANKS;
1056
0
    if (CUR == '/') {
1057
0
        ctxt->comp->flags |= PAT_FROM_ROOT;
1058
0
    } else if ((CUR == '.') || (ctxt->comp->flags & XML_PATTERN_NOTPATTERN)) {
1059
0
        ctxt->comp->flags |= PAT_FROM_CUR;
1060
0
    }
1061
1062
0
    if ((CUR == '/') && (NXT(1) == '/')) {
1063
0
  PUSH(XML_OP_ANCESTOR, NULL, NULL);
1064
0
  NEXT;
1065
0
  NEXT;
1066
0
    } else if ((CUR == '.') && (NXT(1) == '/') && (NXT(2) == '/')) {
1067
0
  PUSH(XML_OP_ANCESTOR, NULL, NULL);
1068
0
  NEXT;
1069
0
  NEXT;
1070
0
  NEXT;
1071
  /* Check for incompleteness. */
1072
0
  SKIP_BLANKS;
1073
0
  if (CUR == 0) {
1074
0
      ERROR5(NULL, NULL, NULL,
1075
0
         "Incomplete expression '%s'.\n", ctxt->base);
1076
0
      ctxt->error = 1;
1077
0
      goto error;
1078
0
  }
1079
0
    }
1080
0
    if (CUR == '@') {
1081
0
  NEXT;
1082
0
  xmlCompileAttributeTest(ctxt);
1083
0
        if (ctxt->error != 0)
1084
0
            goto error;
1085
0
  SKIP_BLANKS;
1086
  /* TODO: check for incompleteness */
1087
0
  if (CUR != 0) {
1088
0
      xmlCompileStepPattern(ctxt);
1089
0
      if (ctxt->error != 0)
1090
0
    goto error;
1091
0
  }
1092
0
    } else {
1093
0
        if (CUR == '/') {
1094
0
      PUSH(XML_OP_ROOT, NULL, NULL);
1095
0
      NEXT;
1096
      /* Check for incompleteness. */
1097
0
      SKIP_BLANKS;
1098
0
      if (CUR == 0) {
1099
0
    ERROR5(NULL, NULL, NULL,
1100
0
        "Incomplete expression '%s'.\n", ctxt->base);
1101
0
    ctxt->error = 1;
1102
0
    goto error;
1103
0
      }
1104
0
  }
1105
0
  xmlCompileStepPattern(ctxt);
1106
0
  if (ctxt->error != 0)
1107
0
      goto error;
1108
0
  SKIP_BLANKS;
1109
0
  while (CUR == '/') {
1110
0
      if (NXT(1) == '/') {
1111
0
          PUSH(XML_OP_ANCESTOR, NULL, NULL);
1112
0
    NEXT;
1113
0
    NEXT;
1114
0
    SKIP_BLANKS;
1115
0
    xmlCompileStepPattern(ctxt);
1116
0
    if (ctxt->error != 0)
1117
0
        goto error;
1118
0
      } else {
1119
0
          PUSH(XML_OP_PARENT, NULL, NULL);
1120
0
    NEXT;
1121
0
    SKIP_BLANKS;
1122
0
    if (CUR == 0) {
1123
0
        ERROR5(NULL, NULL, NULL,
1124
0
        "Incomplete expression '%s'.\n", ctxt->base);
1125
0
        ctxt->error = 1;
1126
0
        goto error;
1127
0
    }
1128
0
    xmlCompileStepPattern(ctxt);
1129
0
    if (ctxt->error != 0)
1130
0
        goto error;
1131
0
      }
1132
0
  }
1133
0
    }
1134
0
    if (CUR != 0) {
1135
0
  ERROR5(NULL, NULL, NULL,
1136
0
         "Failed to compile pattern %s\n", ctxt->base);
1137
0
  ctxt->error = 1;
1138
0
    }
1139
0
error:
1140
0
    return;
1141
0
}
1142
1143
/**
1144
 * Compile the Path Pattern and generates a precompiled
1145
 * form suitable for fast matching.
1146
 *
1147
 * [5]    Path    ::=    ('.//')? ( Step '/' )* ( Step | '@' NameTest )
1148
 *
1149
 * @param ctxt  the compilation context
1150
 */
1151
static void
1152
51.1k
xmlCompileIDCXPathPath(xmlPatParserContextPtr ctxt) {
1153
51.1k
    SKIP_BLANKS;
1154
51.1k
    if (CUR == '/') {
1155
428
  ERROR5(NULL, NULL, NULL,
1156
428
      "Unexpected selection of the document root in '%s'.\n",
1157
428
      ctxt->base);
1158
428
  goto error;
1159
428
    }
1160
50.7k
    ctxt->comp->flags |= PAT_FROM_CUR;
1161
1162
50.7k
    if (CUR == '.') {
1163
  /* "." - "self::node()" */
1164
10.4k
  NEXT;
1165
10.4k
  SKIP_BLANKS;
1166
10.4k
  if (CUR == 0) {
1167
      /*
1168
      * Selection of the context node.
1169
      */
1170
2.61k
      PUSH(XML_OP_ELEM, NULL, NULL);
1171
2.61k
      return;
1172
2.61k
  }
1173
7.83k
  if (CUR != '/') {
1174
      /* TODO: A more meaningful error message. */
1175
884
      ERROR5(NULL, NULL, NULL,
1176
884
      "Unexpected token after '.' in '%s'.\n", ctxt->base);
1177
884
      goto error;
1178
884
  }
1179
  /* "./" - "self::node()/" */
1180
6.94k
  NEXT;
1181
6.94k
  SKIP_BLANKS;
1182
6.94k
  if (CUR == '/') {
1183
3.96k
      if (IS_BLANK_CH(PEEKPREV(1))) {
1184
    /*
1185
    * Disallow "./ /"
1186
    */
1187
414
    ERROR5(NULL, NULL, NULL,
1188
414
        "Unexpected '/' token in '%s'.\n", ctxt->base);
1189
414
    goto error;
1190
414
      }
1191
      /* ".//" - "self:node()/descendant-or-self::node()/" */
1192
3.55k
      PUSH(XML_OP_ANCESTOR, NULL, NULL);
1193
3.55k
      NEXT;
1194
3.55k
      SKIP_BLANKS;
1195
3.55k
  }
1196
6.53k
  if (CUR == 0)
1197
939
      goto error_unfinished;
1198
6.53k
    }
1199
    /*
1200
    * Process steps.
1201
    */
1202
103k
    do {
1203
103k
  xmlCompileStepPattern(ctxt);
1204
103k
  if (ctxt->error != 0)
1205
12.3k
      goto error;
1206
91.0k
  SKIP_BLANKS;
1207
91.0k
  if (CUR != '/')
1208
32.5k
      break;
1209
58.5k
  PUSH(XML_OP_PARENT, NULL, NULL);
1210
58.5k
  NEXT;
1211
58.5k
  SKIP_BLANKS;
1212
58.5k
  if (CUR == '/') {
1213
      /*
1214
      * Disallow subsequent '//'.
1215
      */
1216
699
      ERROR5(NULL, NULL, NULL,
1217
699
    "Unexpected subsequent '//' in '%s'.\n",
1218
699
    ctxt->base);
1219
699
      goto error;
1220
699
  }
1221
57.8k
  if (CUR == 0)
1222
304
      goto error_unfinished;
1223
1224
57.8k
    } while (CUR != 0);
1225
1226
32.5k
    if (CUR != 0) {
1227
5.10k
  ERROR5(NULL, NULL, NULL,
1228
5.10k
      "Failed to compile expression '%s'.\n", ctxt->base);
1229
5.10k
  ctxt->error = 1;
1230
5.10k
    }
1231
32.5k
    return;
1232
14.7k
error:
1233
14.7k
    ctxt->error = 1;
1234
14.7k
    return;
1235
1236
1.24k
error_unfinished:
1237
1.24k
    ctxt->error = 1;
1238
1.24k
    ERROR5(NULL, NULL, NULL,
1239
1.24k
  "Unfinished expression '%s'.\n", ctxt->base);
1240
1.24k
}
1241
1242
/************************************************************************
1243
 *                  *
1244
 *      The streaming code        *
1245
 *                  *
1246
 ************************************************************************/
1247
1248
/**
1249
 * build a new compiled pattern for streaming
1250
 *
1251
 * @param size  the number of expected steps
1252
 * @returns the new structure or NULL in case of error.
1253
 */
1254
static xmlStreamCompPtr
1255
30.0k
xmlNewStreamComp(int size) {
1256
30.0k
    xmlStreamCompPtr cur;
1257
1258
30.0k
    if (size < 4)
1259
27.0k
        size  = 4;
1260
1261
30.0k
    cur = (xmlStreamCompPtr) xmlMalloc(sizeof(xmlStreamComp));
1262
30.0k
    if (cur == NULL) {
1263
8
  ERROR(NULL, NULL, NULL,
1264
8
    "xmlNewStreamComp: malloc failed\n");
1265
8
  return(NULL);
1266
8
    }
1267
30.0k
    memset(cur, 0, sizeof(xmlStreamComp));
1268
30.0k
    cur->steps = (xmlStreamStepPtr) xmlMalloc(size * sizeof(xmlStreamStep));
1269
30.0k
    if (cur->steps == NULL) {
1270
4
  xmlFree(cur);
1271
4
  ERROR(NULL, NULL, NULL,
1272
4
        "xmlNewStreamComp: malloc failed\n");
1273
4
  return(NULL);
1274
4
    }
1275
30.0k
    cur->nbStep = 0;
1276
30.0k
    cur->maxStep = size;
1277
30.0k
    return(cur);
1278
30.0k
}
1279
1280
/**
1281
 * Free the compiled pattern for streaming
1282
 *
1283
 * @param comp  the compiled pattern for streaming
1284
 */
1285
static void
1286
30.0k
xmlFreeStreamComp(xmlStreamCompPtr comp) {
1287
30.0k
    if (comp != NULL) {
1288
30.0k
        if (comp->steps != NULL)
1289
30.0k
      xmlFree(comp->steps);
1290
30.0k
  if (comp->dict != NULL)
1291
0
      xmlDictFree(comp->dict);
1292
30.0k
        xmlFree(comp);
1293
30.0k
    }
1294
30.0k
}
1295
1296
/**
1297
 * Add a new step to the compiled pattern
1298
 *
1299
 * @param comp  the compiled pattern for streaming
1300
 * @param name  the first string, the name, or NULL for *
1301
 * @param ns  the second step, the namespace name
1302
 * @param nodeType  the node type
1303
 * @param flags  the flags for that step
1304
 * @returns -1 in case of error or the step index if successful
1305
 */
1306
static int
1307
xmlStreamCompAddStep(xmlStreamCompPtr comp, const xmlChar *name,
1308
49.5k
                     const xmlChar *ns, int nodeType, int flags) {
1309
49.5k
    xmlStreamStepPtr cur;
1310
1311
49.5k
    if (comp->nbStep >= comp->maxStep) {
1312
0
        xmlStreamStepPtr tmp;
1313
0
        int newSize;
1314
1315
0
        newSize = xmlGrowCapacity(comp->maxStep, sizeof(tmp[0]),
1316
0
                                  4, XML_MAX_ITEMS);
1317
0
        if (newSize < 0) {
1318
0
      ERROR(NULL, NULL, NULL,
1319
0
      "xmlNewStreamComp: growCapacity failed\n");
1320
0
      return(-1);
1321
0
        }
1322
0
  cur = xmlRealloc(comp->steps, newSize * sizeof(tmp[0]));
1323
0
  if (cur == NULL) {
1324
0
      ERROR(NULL, NULL, NULL,
1325
0
      "xmlNewStreamComp: malloc failed\n");
1326
0
      return(-1);
1327
0
  }
1328
0
  comp->steps = cur;
1329
0
        comp->maxStep = newSize;
1330
0
    }
1331
49.5k
    cur = &comp->steps[comp->nbStep++];
1332
49.5k
    cur->flags = flags;
1333
49.5k
    cur->name = name;
1334
49.5k
    cur->ns = ns;
1335
49.5k
    cur->nodeType = nodeType;
1336
49.5k
    return(comp->nbStep - 1);
1337
49.5k
}
1338
1339
/**
1340
 * Tries to stream compile a pattern
1341
 *
1342
 * @param comp  the precompiled pattern
1343
 * @returns -1 in case of failure and 0 in case of success.
1344
 */
1345
static int
1346
30.0k
xmlStreamCompile(xmlPatternPtr comp) {
1347
30.0k
    xmlStreamCompPtr stream;
1348
30.0k
    int i, s = 0, root = 0, flags = 0, prevs = -1;
1349
30.0k
    xmlStepOp step;
1350
1351
30.0k
    if ((comp == NULL) || (comp->steps == NULL))
1352
0
        return(-1);
1353
    /*
1354
     * special case for .
1355
     */
1356
30.0k
    if ((comp->nbStep == 1) &&
1357
19.5k
        (comp->steps[0].op == XML_OP_ELEM) &&
1358
17.2k
  (comp->steps[0].value == NULL) &&
1359
2.61k
  (comp->steps[0].value2 == NULL)) {
1360
2.61k
  stream = xmlNewStreamComp(0);
1361
2.61k
  if (stream == NULL)
1362
2
      return(-1);
1363
  /* Note that the stream will have no steps in this case. */
1364
2.61k
  stream->flags |= XML_STREAM_FINAL_IS_ANY_NODE;
1365
2.61k
  comp->stream = stream;
1366
2.61k
  return(0);
1367
2.61k
    }
1368
1369
27.4k
    stream = xmlNewStreamComp((comp->nbStep / 2) + 1);
1370
27.4k
    if (stream == NULL)
1371
10
        return(-1);
1372
27.3k
    if (comp->dict != NULL) {
1373
0
        stream->dict = comp->dict;
1374
0
  xmlDictReference(stream->dict);
1375
0
    }
1376
1377
27.3k
    i = 0;
1378
27.3k
    if (comp->flags & PAT_FROM_ROOT)
1379
0
  stream->flags |= XML_STREAM_FROM_ROOT;
1380
1381
115k
    for (;i < comp->nbStep;i++) {
1382
87.7k
  step = comp->steps[i];
1383
87.7k
        switch (step.op) {
1384
0
      case XML_OP_END:
1385
0
          break;
1386
0
      case XML_OP_ROOT:
1387
0
          if (i != 0)
1388
0
        goto error;
1389
0
    root = 1;
1390
0
    break;
1391
2.53k
      case XML_OP_NS:
1392
2.53k
    s = xmlStreamCompAddStep(stream, NULL, step.value,
1393
2.53k
        XML_ELEMENT_NODE, flags);
1394
2.53k
    if (s < 0)
1395
0
        goto error;
1396
2.53k
    prevs = s;
1397
2.53k
    flags = 0;
1398
2.53k
    break;
1399
7.39k
      case XML_OP_ATTR:
1400
7.39k
    flags |= XML_STREAM_STEP_ATTR;
1401
7.39k
    prevs = -1;
1402
7.39k
    s = xmlStreamCompAddStep(stream,
1403
7.39k
        step.value, step.value2, XML_ATTRIBUTE_NODE, flags);
1404
7.39k
    flags = 0;
1405
7.39k
    if (s < 0)
1406
0
        goto error;
1407
7.39k
    break;
1408
43.4k
      case XML_OP_ELEM:
1409
43.4k
          if ((step.value == NULL) && (step.value2 == NULL)) {
1410
        /*
1411
        * We have a "." or "self::node()" here.
1412
        * Eliminate redundant self::node() tests like in "/./."
1413
        * or "//./"
1414
        * The only case we won't eliminate is "//.", i.e. if
1415
        * self::node() is the last node test and we had
1416
        * continuation somewhere beforehand.
1417
        */
1418
7.15k
        if ((comp->nbStep == i + 1) &&
1419
1.58k
      (flags & XML_STREAM_STEP_DESC)) {
1420
      /*
1421
      * Mark the special case where the expression resolves
1422
      * to any type of node.
1423
      */
1424
655
      if (comp->nbStep == i + 1) {
1425
655
          stream->flags |= XML_STREAM_FINAL_IS_ANY_NODE;
1426
655
      }
1427
655
      flags |= XML_STREAM_STEP_NODE;
1428
655
      s = xmlStreamCompAddStep(stream, NULL, NULL,
1429
655
          XML_STREAM_ANY_NODE, flags);
1430
655
      if (s < 0)
1431
0
          goto error;
1432
655
      flags = 0;
1433
      /*
1434
      * If there was a previous step, mark it to be added to
1435
      * the result node-set; this is needed since only
1436
      * the last step will be marked as "final" and only
1437
      * "final" nodes are added to the resulting set.
1438
      */
1439
655
      if (prevs != -1) {
1440
0
          stream->steps[prevs].flags |= XML_STREAM_STEP_IN_SET;
1441
0
          prevs = -1;
1442
0
      }
1443
655
      break;
1444
1445
6.50k
        } else {
1446
      /* Just skip this one. */
1447
6.50k
      continue;
1448
6.50k
        }
1449
7.15k
    }
1450
    /* An element node. */
1451
36.3k
          s = xmlStreamCompAddStep(stream, step.value, step.value2,
1452
36.3k
        XML_ELEMENT_NODE, flags);
1453
36.3k
    if (s < 0)
1454
0
        goto error;
1455
36.3k
    prevs = s;
1456
36.3k
    flags = 0;
1457
36.3k
    break;
1458
0
      case XML_OP_CHILD:
1459
    /* An element node child. */
1460
0
          s = xmlStreamCompAddStep(stream, step.value, step.value2,
1461
0
        XML_ELEMENT_NODE, flags);
1462
0
    if (s < 0)
1463
0
        goto error;
1464
0
    prevs = s;
1465
0
    flags = 0;
1466
0
    break;
1467
2.69k
      case XML_OP_ALL:
1468
2.69k
          s = xmlStreamCompAddStep(stream, NULL, NULL,
1469
2.69k
        XML_ELEMENT_NODE, flags);
1470
2.69k
    if (s < 0)
1471
0
        goto error;
1472
2.69k
    prevs = s;
1473
2.69k
    flags = 0;
1474
2.69k
    break;
1475
28.6k
      case XML_OP_PARENT:
1476
28.6k
          break;
1477
2.92k
      case XML_OP_ANCESTOR:
1478
    /* Skip redundant continuations. */
1479
2.92k
    if (flags & XML_STREAM_STEP_DESC)
1480
0
        break;
1481
2.92k
          flags |= XML_STREAM_STEP_DESC;
1482
    /*
1483
    * Mark the expression as having "//".
1484
    */
1485
2.92k
    if ((stream->flags & XML_STREAM_DESC) == 0)
1486
2.92k
        stream->flags |= XML_STREAM_DESC;
1487
2.92k
    break;
1488
87.7k
  }
1489
87.7k
    }
1490
27.3k
    if ((! root) && (comp->flags & XML_PATTERN_NOTPATTERN) == 0) {
1491
  /*
1492
  * If this should behave like a real pattern, we will mark
1493
  * the first step as having "//", to be reentrant on every
1494
  * tree level.
1495
  */
1496
0
  if ((stream->flags & XML_STREAM_DESC) == 0)
1497
0
      stream->flags |= XML_STREAM_DESC;
1498
1499
0
  if (stream->nbStep > 0) {
1500
0
      if ((stream->steps[0].flags & XML_STREAM_STEP_DESC) == 0)
1501
0
    stream->steps[0].flags |= XML_STREAM_STEP_DESC;
1502
0
  }
1503
0
    }
1504
27.3k
    if (stream->nbStep <= s)
1505
472
  goto error;
1506
26.9k
    stream->steps[s].flags |= XML_STREAM_STEP_FINAL;
1507
26.9k
    if (root)
1508
0
  stream->steps[0].flags |= XML_STREAM_STEP_ROOT;
1509
26.9k
    comp->stream = stream;
1510
26.9k
    return(0);
1511
472
error:
1512
472
    xmlFreeStreamComp(stream);
1513
472
    return(0);
1514
27.3k
}
1515
1516
/**
1517
 * build a new stream context
1518
 *
1519
 * @param stream  the copmiled stream
1520
 * @returns the new structure or NULL in case of error.
1521
 */
1522
static xmlStreamCtxtPtr
1523
110k
xmlNewStreamCtxt(xmlStreamCompPtr stream) {
1524
110k
    xmlStreamCtxtPtr cur;
1525
1526
110k
    cur = (xmlStreamCtxtPtr) xmlMalloc(sizeof(xmlStreamCtxt));
1527
110k
    if (cur == NULL) {
1528
32
  ERROR(NULL, NULL, NULL,
1529
32
    "xmlNewStreamCtxt: malloc failed\n");
1530
32
  return(NULL);
1531
32
    }
1532
110k
    memset(cur, 0, sizeof(xmlStreamCtxt));
1533
110k
    cur->states = NULL;
1534
110k
    cur->nbState = 0;
1535
110k
    cur->maxState = 0;
1536
110k
    cur->level = 0;
1537
110k
    cur->comp = stream;
1538
110k
    cur->blockLevel = -1;
1539
110k
    return(cur);
1540
110k
}
1541
1542
/**
1543
 * Free the stream context
1544
 *
1545
 * @param stream  the stream context
1546
 */
1547
void
1548
97.8k
xmlFreeStreamCtxt(xmlStreamCtxt *stream) {
1549
97.8k
    xmlStreamCtxtPtr next;
1550
1551
208k
    while (stream != NULL) {
1552
110k
        next = stream->next;
1553
110k
        if (stream->states != NULL)
1554
1.03k
      xmlFree(stream->states);
1555
110k
        xmlFree(stream);
1556
110k
  stream = next;
1557
110k
    }
1558
97.8k
}
1559
1560
/**
1561
 * Add a new state to the stream context
1562
 *
1563
 * @param comp  the stream context
1564
 * @param idx  the step index for that streaming state
1565
 * @param level  the level
1566
 * @returns -1 in case of error or the state index if successful
1567
 */
1568
static int
1569
38.9k
xmlStreamCtxtAddState(xmlStreamCtxtPtr comp, int idx, int level) {
1570
38.9k
    int i;
1571
2.02M
    for (i = 0;i < comp->nbState;i++) {
1572
1.98M
        if (comp->states[2 * i] < 0) {
1573
0
      comp->states[2 * i] = idx;
1574
0
      comp->states[2 * i + 1] = level;
1575
0
      return(i);
1576
0
  }
1577
1.98M
    }
1578
38.9k
    if (comp->nbState >= comp->maxState) {
1579
5.07k
        int *tmp;
1580
5.07k
        int newSize;
1581
1582
5.07k
        newSize = xmlGrowCapacity(comp->maxState, sizeof(tmp[0]) * 2,
1583
5.07k
                                  4, XML_MAX_ITEMS);
1584
5.07k
        if (newSize < 0) {
1585
0
      ERROR(NULL, NULL, NULL,
1586
0
      "xmlNewStreamCtxt: growCapacity failed\n");
1587
0
      return(-1);
1588
0
        }
1589
5.07k
  tmp = xmlRealloc(comp->states, newSize * sizeof(tmp[0]) * 2);
1590
5.07k
  if (tmp == NULL) {
1591
3
      ERROR(NULL, NULL, NULL,
1592
3
      "xmlNewStreamCtxt: malloc failed\n");
1593
3
      return(-1);
1594
3
  }
1595
5.07k
  comp->states = tmp;
1596
5.07k
        comp->maxState = newSize;
1597
5.07k
    }
1598
38.9k
    comp->states[2 * comp->nbState] = idx;
1599
38.9k
    comp->states[2 * comp->nbState++ + 1] = level;
1600
38.9k
    return(comp->nbState - 1);
1601
38.9k
}
1602
1603
/**
1604
 * Push new data onto the stream. NOTE: if the call #xmlPatterncompile
1605
 * indicated a dictionary, then strings for name and ns will be expected
1606
 * to come from the dictionary.
1607
 * Both `name` and `ns` being NULL means the / i.e. the root of the document.
1608
 * This can also act as a reset.
1609
 *
1610
 * @param stream  the stream context
1611
 * @param name  the current name
1612
 * @param ns  the namespace name
1613
 * @param nodeType  the type of the node
1614
 * @returns -1 in case of error, 1 if the current state in the stream is a
1615
 *    match and 0 otherwise.
1616
 */
1617
static int
1618
xmlStreamPushInternal(xmlStreamCtxtPtr stream,
1619
          const xmlChar *name, const xmlChar *ns,
1620
888k
          int nodeType) {
1621
888k
    int ret = 0, final = 0, tmp, i, m, match, stepNr, desc;
1622
888k
    xmlStreamCompPtr comp;
1623
888k
    xmlStreamStep step;
1624
1625
888k
    if ((stream == NULL) || (stream->nbState < 0))
1626
0
        return(-1);
1627
1628
2.00M
    while (stream != NULL) {
1629
1.11M
  comp = stream->comp;
1630
1631
1.11M
  if ((nodeType == XML_ELEMENT_NODE) &&
1632
868k
      (name == NULL) && (ns == NULL)) {
1633
      /* We have a document node here (or a reset). */
1634
0
      stream->nbState = 0;
1635
0
      stream->level = 0;
1636
0
      stream->blockLevel = -1;
1637
0
      if (comp->flags & XML_STREAM_FROM_ROOT) {
1638
0
    if (comp->nbStep == 0) {
1639
        /* TODO: We have a "/." here? */
1640
0
        ret = 1;
1641
0
    } else {
1642
0
        if ((comp->nbStep == 1) &&
1643
0
      (comp->steps[0].nodeType == XML_STREAM_ANY_NODE) &&
1644
0
      (comp->steps[0].flags & XML_STREAM_STEP_DESC))
1645
0
        {
1646
      /*
1647
      * In the case of "//." the document node will match
1648
      * as well.
1649
      */
1650
0
      ret = 1;
1651
0
        } else if (comp->steps[0].flags & XML_STREAM_STEP_ROOT) {
1652
0
      if (xmlStreamCtxtAddState(stream, 0, 0) < 0)
1653
0
                            return(-1);
1654
0
        }
1655
0
    }
1656
0
      }
1657
0
      stream = stream->next;
1658
0
      continue; /* while */
1659
0
  }
1660
1661
  /*
1662
  * Fast check for ".".
1663
  */
1664
1.11M
  if (comp->nbStep == 0) {
1665
      /*
1666
       * / and . are handled at the XPath node set creation
1667
       * level by checking min depth
1668
       */
1669
202k
      if (stream->flags & XML_PATTERN_XPATH) {
1670
0
    stream = stream->next;
1671
0
    continue; /* while */
1672
0
      }
1673
      /*
1674
      * For non-pattern like evaluation like XML Schema IDCs
1675
      * or traditional XPath expressions, this will match if
1676
      * we are at the first level only, otherwise on every level.
1677
      */
1678
202k
      if ((nodeType != XML_ATTRIBUTE_NODE) &&
1679
155k
    (((stream->flags & XML_PATTERN_NOTPATTERN) == 0) ||
1680
155k
    (stream->level == 0))) {
1681
45.1k
        ret = 1;
1682
45.1k
      }
1683
202k
      stream->level++;
1684
202k
      goto stream_next;
1685
202k
  }
1686
912k
  if (stream->blockLevel != -1) {
1687
      /*
1688
      * Skip blocked expressions.
1689
      */
1690
363k
      stream->level++;
1691
363k
      goto stream_next;
1692
363k
  }
1693
1694
549k
  if ((nodeType != XML_ELEMENT_NODE) &&
1695
148k
      (nodeType != XML_ATTRIBUTE_NODE) &&
1696
0
      ((comp->flags & XML_STREAM_FINAL_IS_ANY_NODE) == 0)) {
1697
      /*
1698
      * No need to process nodes of other types if we don't
1699
      * resolve to those types.
1700
      * TODO: Do we need to block the context here?
1701
      */
1702
0
      stream->level++;
1703
0
      goto stream_next;
1704
0
  }
1705
1706
  /*
1707
   * Check evolution of existing states
1708
   */
1709
549k
  i = 0;
1710
549k
  m = stream->nbState;
1711
2.16M
  while (i < m) {
1712
1.61M
      if ((comp->flags & XML_STREAM_DESC) == 0) {
1713
    /*
1714
    * If there is no "//", then only the last
1715
    * added state is of interest.
1716
    */
1717
3.06k
    stepNr = stream->states[2 * (stream->nbState -1)];
1718
    /*
1719
    * TODO: Security check, should not happen, remove it.
1720
    */
1721
3.06k
    if (stream->states[(2 * (stream->nbState -1)) + 1] <
1722
3.06k
        stream->level) {
1723
0
        return (-1);
1724
0
    }
1725
3.06k
    desc = 0;
1726
    /* loop-stopper */
1727
3.06k
    i = m;
1728
1.60M
      } else {
1729
    /*
1730
    * If there are "//", then we need to process every "//"
1731
    * occurring in the states, plus any other state for this
1732
    * level.
1733
    */
1734
1.60M
    stepNr = stream->states[2 * i];
1735
1736
    /* TODO: should not happen anymore: dead states */
1737
1.60M
    if (stepNr < 0)
1738
0
        goto next_state;
1739
1740
1.60M
    tmp = stream->states[(2 * i) + 1];
1741
1742
    /* skip new states just added */
1743
1.60M
    if (tmp > stream->level)
1744
0
        goto next_state;
1745
1746
    /* skip states at ancestor levels, except if "//" */
1747
1.60M
    desc = comp->steps[stepNr].flags & XML_STREAM_STEP_DESC;
1748
1.60M
    if ((tmp < stream->level) && (!desc))
1749
1.55M
        goto next_state;
1750
1.60M
      }
1751
      /*
1752
      * Check for correct node-type.
1753
      */
1754
58.1k
      step = comp->steps[stepNr];
1755
58.1k
      if (step.nodeType != nodeType) {
1756
18.8k
    if (step.nodeType == XML_ATTRIBUTE_NODE) {
1757
        /*
1758
        * Block this expression for deeper evaluation.
1759
        */
1760
0
        if ((comp->flags & XML_STREAM_DESC) == 0)
1761
0
      stream->blockLevel = stream->level +1;
1762
0
        goto next_state;
1763
18.8k
    } else if (step.nodeType != XML_STREAM_ANY_NODE)
1764
18.8k
        goto next_state;
1765
18.8k
      }
1766
      /*
1767
      * Compare local/namespace-name.
1768
      */
1769
39.2k
      match = 0;
1770
39.2k
      if (step.nodeType == XML_STREAM_ANY_NODE) {
1771
0
    match = 1;
1772
39.2k
      } else if (step.name == NULL) {
1773
20.9k
    if (step.ns == NULL) {
1774
        /*
1775
        * This lets through all elements/attributes.
1776
        */
1777
20.9k
        match = 1;
1778
20.9k
    } else if (ns != NULL)
1779
0
        match = xmlStrEqual(step.ns, ns);
1780
20.9k
      } else if (((step.ns != NULL) == (ns != NULL)) &&
1781
18.3k
    (name != NULL) &&
1782
18.3k
    (step.name[0] == name[0]) &&
1783
559
    xmlStrEqual(step.name, name) &&
1784
22
    ((step.ns == ns) || xmlStrEqual(step.ns, ns)))
1785
22
      {
1786
22
    match = 1;
1787
22
      }
1788
39.2k
      if (match) {
1789
20.9k
    final = step.flags & XML_STREAM_STEP_FINAL;
1790
20.9k
                if (final) {
1791
9.37k
                    ret = 1;
1792
11.5k
                } else if (xmlStreamCtxtAddState(stream, stepNr + 1,
1793
11.5k
                                                 stream->level + 1) < 0) {
1794
2
                    return(-1);
1795
2
                }
1796
20.9k
    if ((ret != 1) && (step.flags & XML_STREAM_STEP_IN_SET)) {
1797
        /*
1798
        * Check if we have a special case like "foo/bar//.", where
1799
        * "foo" is selected as well.
1800
        */
1801
0
        ret = 1;
1802
0
    }
1803
20.9k
      }
1804
39.2k
      if (((comp->flags & XML_STREAM_DESC) == 0) &&
1805
2.66k
    ((! match) || final))  {
1806
    /*
1807
    * Mark this expression as blocked for any evaluation at
1808
    * deeper levels. Note that this includes "/foo"
1809
    * expressions if the *pattern* behaviour is used.
1810
    */
1811
2.23k
    stream->blockLevel = stream->level +1;
1812
2.23k
      }
1813
1.61M
next_state:
1814
1.61M
      i++;
1815
1.61M
  }
1816
1817
549k
  stream->level++;
1818
1819
  /*
1820
  * Re/enter the expression.
1821
  * Don't reenter if it's an absolute expression like "/foo",
1822
  *   except "//foo".
1823
  */
1824
549k
  step = comp->steps[0];
1825
549k
  if (step.flags & XML_STREAM_STEP_ROOT)
1826
0
      goto stream_next;
1827
1828
549k
  desc = step.flags & XML_STREAM_STEP_DESC;
1829
549k
  if (stream->flags & XML_PATTERN_NOTPATTERN) {
1830
      /*
1831
      * Re/enter the expression if it is a "descendant" one,
1832
      * or if we are at the 1st level of evaluation.
1833
      */
1834
1835
549k
      if (stream->level == 1) {
1836
65.1k
    if (XML_STREAM_XS_IDC(stream)) {
1837
        /*
1838
        * XS-IDC: The missing "self::node()" will always
1839
        * match the first given node.
1840
        */
1841
65.1k
        goto stream_next;
1842
65.1k
    } else
1843
0
        goto compare;
1844
65.1k
      }
1845
      /*
1846
      * A "//" is always reentrant.
1847
      */
1848
484k
      if (desc)
1849
149k
    goto compare;
1850
1851
      /*
1852
      * XS-IDC: Process the 2nd level, since the missing
1853
      * "self::node()" is responsible for the 2nd level being
1854
      * the real start level.
1855
      */
1856
335k
      if ((stream->level == 2) && XML_STREAM_XS_IDC(stream))
1857
89.9k
    goto compare;
1858
1859
245k
      goto stream_next;
1860
335k
  }
1861
1862
239k
compare:
1863
  /*
1864
  * Check expected node-type.
1865
  */
1866
239k
  if (step.nodeType != nodeType) {
1867
74.8k
      if (nodeType == XML_ATTRIBUTE_NODE)
1868
57.2k
    goto stream_next;
1869
17.5k
      else if (step.nodeType != XML_STREAM_ANY_NODE)
1870
17.5k
    goto stream_next;
1871
74.8k
  }
1872
  /*
1873
  * Compare local/namespace-name.
1874
  */
1875
164k
  match = 0;
1876
164k
  if (step.nodeType == XML_STREAM_ANY_NODE) {
1877
0
      match = 1;
1878
164k
  } else if (step.name == NULL) {
1879
28.0k
      if (step.ns == NULL) {
1880
    /*
1881
    * This lets through all elements/attributes.
1882
    */
1883
28.0k
    match = 1;
1884
28.0k
      } else if (ns != NULL)
1885
0
    match = xmlStrEqual(step.ns, ns);
1886
136k
  } else if (((step.ns != NULL) == (ns != NULL)) &&
1887
136k
      (name != NULL) &&
1888
136k
      (step.name[0] == name[0]) &&
1889
91.1k
      xmlStrEqual(step.name, name) &&
1890
70.7k
      ((step.ns == ns) || xmlStrEqual(step.ns, ns)))
1891
70.7k
  {
1892
70.7k
      match = 1;
1893
70.7k
  }
1894
164k
  final = step.flags & XML_STREAM_STEP_FINAL;
1895
164k
  if (match) {
1896
98.8k
      if (final) {
1897
71.4k
    ret = 1;
1898
71.4k
            } else if (xmlStreamCtxtAddState(stream, 1, stream->level) < 0) {
1899
1
                return(-1);
1900
1
            }
1901
98.8k
      if ((ret != 1) && (step.flags & XML_STREAM_STEP_IN_SET)) {
1902
    /*
1903
    * Check if we have a special case like "foo//.", where
1904
    * "foo" is selected as well.
1905
    */
1906
0
    ret = 1;
1907
0
      }
1908
98.8k
  }
1909
164k
  if (((comp->flags & XML_STREAM_DESC) == 0) &&
1910
61.8k
      ((! match) || final))  {
1911
      /*
1912
      * Mark this expression as blocked for any evaluation at
1913
      * deeper levels.
1914
      */
1915
61.3k
      stream->blockLevel = stream->level;
1916
61.3k
  }
1917
1918
1.11M
stream_next:
1919
1.11M
        stream = stream->next;
1920
1.11M
    } /* while stream != NULL */
1921
1922
888k
    return(ret);
1923
888k
}
1924
1925
/**
1926
 * Push new data onto the stream. NOTE: if the call #xmlPatterncompile
1927
 * indicated a dictionary, then strings for name and ns will be expected
1928
 * to come from the dictionary.
1929
 * Both `name` and `ns` being NULL means the / i.e. the root of the document.
1930
 * This can also act as a reset.
1931
 * Otherwise the function will act as if it has been given an element-node.
1932
 *
1933
 * @param stream  the stream context
1934
 * @param name  the current name
1935
 * @param ns  the namespace name
1936
 * @returns -1 in case of error, 1 if the current state in the stream is a
1937
 *    match and 0 otherwise.
1938
 */
1939
int
1940
xmlStreamPush(xmlStreamCtxt *stream,
1941
701k
              const xmlChar *name, const xmlChar *ns) {
1942
701k
    return (xmlStreamPushInternal(stream, name, ns, XML_ELEMENT_NODE));
1943
701k
}
1944
1945
/**
1946
 * Push new data onto the stream. NOTE: if the call #xmlPatterncompile
1947
 * indicated a dictionary, then strings for name and ns will be expected
1948
 * to come from the dictionary.
1949
 * Both `name` and `ns` being NULL means the / i.e. the root of the document.
1950
 * This can also act as a reset.
1951
 * Different from #xmlStreamPush this function can be fed with nodes of type:
1952
 * element-, attribute-, text-, cdata-section-, comment- and
1953
 * processing-instruction-node.
1954
 *
1955
 * @param stream  the stream context
1956
 * @param name  the current name
1957
 * @param ns  the namespace name
1958
 * @param nodeType  the type of the node being pushed
1959
 * @returns -1 in case of error, 1 if the current state in the stream is a
1960
 *    match and 0 otherwise.
1961
 */
1962
int
1963
xmlStreamPushNode(xmlStreamCtxt *stream,
1964
      const xmlChar *name, const xmlChar *ns,
1965
      int nodeType)
1966
0
{
1967
0
    return (xmlStreamPushInternal(stream, name, ns,
1968
0
  nodeType));
1969
0
}
1970
1971
/**
1972
 * Push new attribute data onto the stream.
1973
 *
1974
 * NOTE: If the call to #xmlPatterncompile indicated a dictionary,
1975
 * then strings for `name` and `ns` will be expected to come from
1976
 * the dictionary.
1977
 *
1978
 * Both `name` and `ns` being NULL means the root of the document.
1979
 * This can also act as a reset. Otherwise the function will act as
1980
 * if it has been given an attribute-node.
1981
 *
1982
 * @param stream  the stream context
1983
 * @param name  the current name
1984
 * @param ns  the namespace name
1985
 * @returns -1 in case of error, 1 if the current state in the stream
1986
 * is a match and 0 otherwise.
1987
 */
1988
int
1989
xmlStreamPushAttr(xmlStreamCtxt *stream,
1990
187k
      const xmlChar *name, const xmlChar *ns) {
1991
187k
    return (xmlStreamPushInternal(stream, name, ns, XML_ATTRIBUTE_NODE));
1992
187k
}
1993
1994
/**
1995
 * push one level from the stream.
1996
 *
1997
 * @param stream  the stream context
1998
 * @returns -1 in case of error, 0 otherwise.
1999
 */
2000
int
2001
853k
xmlStreamPop(xmlStreamCtxt *stream) {
2002
853k
    int i, lev;
2003
2004
853k
    if (stream == NULL)
2005
0
        return(-1);
2006
1.92M
    while (stream != NULL) {
2007
  /*
2008
  * Reset block-level.
2009
  */
2010
1.06M
  if (stream->blockLevel == stream->level)
2011
62.9k
      stream->blockLevel = -1;
2012
2013
  /*
2014
   *  stream->level can be zero when XML_FINAL_IS_ANY_NODE is set
2015
   *  (see the thread at
2016
   *  http://mail.gnome.org/archives/xslt/2008-July/msg00027.html)
2017
   */
2018
1.06M
  if (stream->level)
2019
1.06M
      stream->level--;
2020
  /*
2021
   * Check evolution of existing states
2022
   */
2023
1.09M
  for (i = stream->nbState -1; i >= 0; i--) {
2024
      /* discard obsoleted states */
2025
70.4k
      lev = stream->states[(2 * i) + 1];
2026
70.4k
      if (lev > stream->level)
2027
25.2k
    stream->nbState--;
2028
70.4k
      if (lev <= stream->level)
2029
45.2k
    break;
2030
70.4k
  }
2031
1.06M
  stream = stream->next;
2032
1.06M
    }
2033
853k
    return(0);
2034
853k
}
2035
2036
/**
2037
 * Query if the streaming pattern additionally needs to be fed with
2038
 * text-, cdata-section-, comment- and processing-instruction-nodes.
2039
 * If the result is 0 then only element-nodes and attribute-nodes
2040
 * need to be pushed.
2041
 *
2042
 * @param streamCtxt  the stream context
2043
 * @returns 1 in case of need of nodes of the above described types,
2044
 *          0 otherwise. -1 on API errors.
2045
 */
2046
int
2047
xmlStreamWantsAnyNode(xmlStreamCtxt *streamCtxt)
2048
0
{
2049
0
    if (streamCtxt == NULL)
2050
0
  return(-1);
2051
0
    while (streamCtxt != NULL) {
2052
0
  if (streamCtxt->comp->flags & XML_STREAM_FINAL_IS_ANY_NODE)
2053
0
      return(1);
2054
0
  streamCtxt = streamCtxt->next;
2055
0
    }
2056
0
    return(0);
2057
0
}
2058
2059
/************************************************************************
2060
 *                  *
2061
 *      The public interfaces       *
2062
 *                  *
2063
 ************************************************************************/
2064
2065
/**
2066
 * Compile a pattern.
2067
 *
2068
 * @since 2.13.0
2069
 *
2070
 * @param pattern  the pattern to compile
2071
 * @param dict  an optional dictionary for interned strings
2072
 * @param flags  compilation flags, see xmlPatternFlags
2073
 * @param namespaces  the prefix definitions, array of [URI, prefix] or NULL
2074
 * @param patternOut  output pattern
2075
 * @returns 0 on success, 1 on error, -1 if a memory allocation failed.
2076
 */
2077
int
2078
xmlPatternCompileSafe(const xmlChar *pattern, xmlDict *dict, int flags,
2079
28.4k
                      const xmlChar **namespaces, xmlPattern **patternOut) {
2080
28.4k
    xmlPatternPtr ret = NULL, cur;
2081
28.4k
    xmlPatParserContextPtr ctxt = NULL;
2082
28.4k
    const xmlChar *or, *start;
2083
28.4k
    xmlChar *tmp = NULL;
2084
28.4k
    int type = 0;
2085
28.4k
    int streamable = 1;
2086
28.4k
    int error;
2087
2088
28.4k
    if (patternOut == NULL)
2089
0
        return(1);
2090
2091
28.4k
    if (pattern == NULL) {
2092
0
        error = 1;
2093
0
        goto error;
2094
0
    }
2095
2096
28.4k
    start = pattern;
2097
28.4k
    or = start;
2098
58.4k
    while (*or != 0) {
2099
51.1k
  tmp = NULL;
2100
4.38M
  while ((*or != 0) && (*or != '|')) or++;
2101
51.1k
        if (*or == 0)
2102
17.9k
      ctxt = xmlNewPatParserContext(start, dict, namespaces);
2103
33.2k
  else {
2104
33.2k
      tmp = xmlStrndup(start, or - start);
2105
33.2k
      if (tmp != NULL) {
2106
33.2k
    ctxt = xmlNewPatParserContext(tmp, dict, namespaces);
2107
33.2k
      }
2108
33.2k
      or++;
2109
33.2k
  }
2110
51.1k
  if (ctxt == NULL) {
2111
20
            error = -1;
2112
20
            goto error;
2113
20
        }
2114
51.1k
  cur = xmlNewPattern();
2115
51.1k
  if (cur == NULL) {
2116
9
            error = -1;
2117
9
            goto error;
2118
9
        }
2119
  /*
2120
  * Assign string dict.
2121
  */
2122
51.1k
  if (dict) {
2123
0
      cur->dict = dict;
2124
0
      xmlDictReference(dict);
2125
0
  }
2126
51.1k
  if (ret == NULL)
2127
28.2k
      ret = cur;
2128
22.9k
  else {
2129
22.9k
      cur->next = ret->next;
2130
22.9k
      ret->next = cur;
2131
22.9k
  }
2132
51.1k
  cur->flags = flags;
2133
51.1k
  ctxt->comp = cur;
2134
2135
51.1k
  if (XML_STREAM_XS_IDC(cur))
2136
51.1k
      xmlCompileIDCXPathPath(ctxt);
2137
0
  else
2138
0
      xmlCompilePathPattern(ctxt);
2139
51.1k
  if (ctxt->error != 0) {
2140
21.1k
            error = ctxt->error;
2141
21.1k
      goto error;
2142
21.1k
        }
2143
30.0k
  xmlFreePatParserContext(ctxt);
2144
30.0k
  ctxt = NULL;
2145
2146
2147
30.0k
        if (streamable) {
2148
30.0k
      if (type == 0) {
2149
17.2k
          type = cur->flags & (PAT_FROM_ROOT | PAT_FROM_CUR);
2150
17.2k
      } else if (type == PAT_FROM_ROOT) {
2151
0
          if (cur->flags & PAT_FROM_CUR)
2152
0
        streamable = 0;
2153
12.7k
      } else if (type == PAT_FROM_CUR) {
2154
12.7k
          if (cur->flags & PAT_FROM_ROOT)
2155
0
        streamable = 0;
2156
12.7k
      }
2157
30.0k
  }
2158
30.0k
  if (streamable) {
2159
30.0k
      error = xmlStreamCompile(cur);
2160
30.0k
            if (error != 0)
2161
12
                goto error;
2162
30.0k
        }
2163
30.0k
  error = xmlReversePattern(cur);
2164
30.0k
        if (error != 0)
2165
3
      goto error;
2166
30.0k
  if (tmp != NULL) {
2167
22.9k
      xmlFree(tmp);
2168
22.9k
      tmp = NULL;
2169
22.9k
  }
2170
30.0k
  start = or;
2171
30.0k
    }
2172
7.26k
    if (streamable == 0) {
2173
0
        cur = ret;
2174
0
  while (cur != NULL) {
2175
0
      if (cur->stream != NULL) {
2176
0
    xmlFreeStreamComp(cur->stream);
2177
0
    cur->stream = NULL;
2178
0
      }
2179
0
      cur = cur->next;
2180
0
  }
2181
0
    }
2182
2183
7.26k
    *patternOut = ret;
2184
7.26k
    return(0);
2185
21.1k
error:
2186
21.1k
    if (ctxt != NULL) xmlFreePatParserContext(ctxt);
2187
21.1k
    if (ret != NULL) xmlFreePattern(ret);
2188
21.1k
    if (tmp != NULL) xmlFree(tmp);
2189
21.1k
    *patternOut = NULL;
2190
21.1k
    return(error);
2191
28.4k
}
2192
2193
/**
2194
 * Compile a pattern.
2195
 *
2196
 * @param pattern  the pattern to compile
2197
 * @param dict  an optional dictionary for interned strings
2198
 * @param flags  compilation flags, see xmlPatternFlags
2199
 * @param namespaces  the prefix definitions, array of [URI, prefix] or NULL
2200
 * @returns the compiled form of the pattern or NULL in case of error
2201
 */
2202
xmlPattern *
2203
xmlPatterncompile(const xmlChar *pattern, xmlDict *dict, int flags,
2204
28.4k
                  const xmlChar **namespaces) {
2205
28.4k
    xmlPatternPtr ret;
2206
28.4k
    xmlPatternCompileSafe(pattern, dict, flags, namespaces, &ret);
2207
28.4k
    return(ret);
2208
28.4k
}
2209
2210
/**
2211
 * Test whether the node matches the pattern
2212
 *
2213
 * @param comp  the precompiled pattern
2214
 * @param node  a node
2215
 * @returns 1 if it matches, 0 if it doesn't and -1 in case of failure
2216
 */
2217
int
2218
xmlPatternMatch(xmlPattern *comp, xmlNode *node)
2219
0
{
2220
0
    int ret = 0;
2221
2222
0
    if ((comp == NULL) || (node == NULL))
2223
0
        return(-1);
2224
2225
0
    while (comp != NULL) {
2226
0
        ret = xmlPatMatch(comp, node);
2227
0
  if (ret != 0)
2228
0
      return(ret);
2229
0
  comp = comp->next;
2230
0
    }
2231
0
    return(ret);
2232
0
}
2233
2234
/**
2235
 * Get a streaming context for that pattern
2236
 * Use #xmlFreeStreamCtxt to free the context.
2237
 *
2238
 * @param comp  the precompiled pattern
2239
 * @returns a pointer to the context or NULL in case of failure
2240
 */
2241
xmlStreamCtxt *
2242
xmlPatternGetStreamCtxt(xmlPattern *comp)
2243
97.8k
{
2244
97.8k
    xmlStreamCtxtPtr ret = NULL, cur;
2245
2246
97.8k
    if ((comp == NULL) || (comp->stream == NULL))
2247
0
        return(NULL);
2248
2249
208k
    while (comp != NULL) {
2250
110k
        if (comp->stream == NULL)
2251
0
      goto failed;
2252
110k
  cur = xmlNewStreamCtxt(comp->stream);
2253
110k
  if (cur == NULL)
2254
32
      goto failed;
2255
110k
  if (ret == NULL)
2256
97.7k
      ret = cur;
2257
12.5k
  else {
2258
12.5k
      cur->next = ret->next;
2259
12.5k
      ret->next = cur;
2260
12.5k
  }
2261
110k
  cur->flags = comp->flags;
2262
110k
  comp = comp->next;
2263
110k
    }
2264
97.7k
    return(ret);
2265
32
failed:
2266
32
    xmlFreeStreamCtxt(ret);
2267
32
    return(NULL);
2268
97.8k
}
2269
2270
/**
2271
 * Check if the pattern is streamable i.e. #xmlPatternGetStreamCtxt
2272
 * should work.
2273
 *
2274
 * @param comp  the precompiled pattern
2275
 * @returns 1 if streamable, 0 if not and -1 in case of error.
2276
 */
2277
int
2278
0
xmlPatternStreamable(xmlPattern *comp) {
2279
0
    if (comp == NULL)
2280
0
        return(-1);
2281
0
    while (comp != NULL) {
2282
0
        if (comp->stream == NULL)
2283
0
      return(0);
2284
0
  comp = comp->next;
2285
0
    }
2286
0
    return(1);
2287
0
}
2288
2289
/**
2290
 * Check the maximum depth reachable by a pattern
2291
 *
2292
 * @param comp  the precompiled pattern
2293
 * @returns -2 if no limit (using //), otherwise the depth,
2294
 *         and -1 in case of error
2295
 */
2296
int
2297
0
xmlPatternMaxDepth(xmlPattern *comp) {
2298
0
    int ret = 0, i;
2299
0
    if (comp == NULL)
2300
0
        return(-1);
2301
0
    while (comp != NULL) {
2302
0
        if (comp->stream == NULL)
2303
0
      return(-1);
2304
0
  for (i = 0;i < comp->stream->nbStep;i++)
2305
0
      if (comp->stream->steps[i].flags & XML_STREAM_STEP_DESC)
2306
0
          return(-2);
2307
0
  if (comp->stream->nbStep > ret)
2308
0
      ret = comp->stream->nbStep;
2309
0
  comp = comp->next;
2310
0
    }
2311
0
    return(ret);
2312
0
}
2313
2314
/**
2315
 * Check the minimum depth reachable by a pattern, 0 mean the / or . are
2316
 * part of the set.
2317
 *
2318
 * @param comp  the precompiled pattern
2319
 * @returns -1 in case of error otherwise the depth,
2320
 */
2321
int
2322
0
xmlPatternMinDepth(xmlPattern *comp) {
2323
0
    int ret = 12345678;
2324
0
    if (comp == NULL)
2325
0
        return(-1);
2326
0
    while (comp != NULL) {
2327
0
        if (comp->stream == NULL)
2328
0
      return(-1);
2329
0
  if (comp->stream->nbStep < ret)
2330
0
      ret = comp->stream->nbStep;
2331
0
  if (ret == 0)
2332
0
      return(0);
2333
0
  comp = comp->next;
2334
0
    }
2335
0
    return(ret);
2336
0
}
2337
2338
/**
2339
 * Check if the pattern must be looked at from the root.
2340
 *
2341
 * @param comp  the precompiled pattern
2342
 * @returns 1 if true, 0 if false and -1 in case of error
2343
 */
2344
int
2345
0
xmlPatternFromRoot(xmlPattern *comp) {
2346
0
    if (comp == NULL)
2347
0
        return(-1);
2348
0
    while (comp != NULL) {
2349
0
        if (comp->stream == NULL)
2350
0
      return(-1);
2351
0
  if (comp->flags & PAT_FROM_ROOT)
2352
0
      return(1);
2353
0
  comp = comp->next;
2354
0
    }
2355
0
    return(0);
2356
2357
0
}
2358
2359
#endif /* LIBXML_PATTERN_ENABLED */