Don't create any elements of an element path that contains an
[pwmd.git] / src / xml.c
blob3c9e06e8de5c29fa819409117a8fa0278b1d1714
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2007 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <err.h>
23 #include <errno.h>
24 #include <string.h>
25 #include <sys/stat.h>
26 #include <fcntl.h>
27 #include <ctype.h>
28 #include <glib.h>
29 #include <gcrypt.h>
31 #ifdef HAVE_CONFIG_H
32 #include <config.h>
33 #endif
35 #include "pwmd_error.h"
36 #include "xml.h"
38 void log_write(const gchar *fmt, ...);
39 gboolean strv_printf(gchar ***array, const gchar *fmt, ...);
41 gboolean is_literal_element_str(gchar *element)
43 if (!element || !*element)
44 return FALSE;
46 return *element == '!' ? TRUE : FALSE;
50 * 'element' must be allocated.
52 gboolean is_literal_element(gchar **element)
54 gchar *p;
56 if (!element || !*element)
57 return FALSE;
59 if (*(*element) == '!') {
60 gchar *c;
62 for (p = *element, c = p+1; *c; c++)
63 *p++ = *c;
65 *p = 0;
66 return TRUE;
69 return FALSE;
73 * Fails if 'element' begins with punctuation or digit or contains whitespace.
75 * I'm not sure about using g_unichar_isspace() rather than isspace()?
77 gboolean valid_xml_element(xmlChar *element)
79 gunichar c;
80 glong len;
81 gchar *p = (gchar *)element;
83 if (!element || !*element)
84 return FALSE;
86 if (*p == '!')
87 p++;
89 len = g_utf8_strlen(p, -1) - 1;
90 c = g_utf8_get_char(p++);
92 if (g_unichar_ispunct(c) == TRUE || g_unichar_isdigit(c) == TRUE)
93 return FALSE;
95 while (*p && len--) {
96 c = g_utf8_get_char(p++);
98 if (g_unichar_isspace(c))
99 return FALSE;
102 return TRUE;
105 gboolean valid_element_path(gchar **path, gboolean has_value)
107 gchar **p;
109 for (p = path; *p; p++) {
111 * An empty element is valid and don't check the syntax of the
112 * content.
114 if (has_value == TRUE && (!*(p+1) || !*p[0]))
115 break;
117 if (valid_xml_element((xmlChar *)*p) == FALSE)
118 return FALSE;
121 return TRUE;
124 gpg_error_t new_account(xmlDocPtr doc, gchar *name)
126 xmlNodePtr root = xmlDocGetRootElement(doc);
127 xmlAttrPtr a;
128 xmlNodePtr n;
129 gchar *p = name;
131 if (!p || !root)
132 return EPWMD_LIBXML_ERROR;
134 if (is_literal_element_str(p))
135 p++;
137 n = xmlNewNode(NULL, (xmlChar *)"account");
138 n = xmlAddChild(root, n);
139 a = xmlNewProp(n, (xmlChar *)"name", (xmlChar *)p);
140 return 0;
143 xmlChar *new_document()
145 xmlChar *buf;
146 const xmlChar *line = (xmlChar *)
147 "<?xml version=\"1.0\"?>\n"
148 "<!DOCTYPE accounts [\n"
149 "<!ELEMENT accounts (account*)>\n"
150 "<!ATTLIST account name CDATA #REQUIRED>\n"
151 "]>\n"
152 "<accounts/>";
154 buf = gcry_calloc(1, xmlStrlen(line) + 1);
155 return buf ? xmlStrcat(buf, line) : NULL;
159 * The "target" attribute is ignored here.
161 gpg_error_t list_accounts(xmlDocPtr doc, GString **result)
163 xmlNodePtr n = NULL, t;
164 GSList *list = NULL;
165 gint total, i;
166 GString *string;
168 for (t = doc->children; t; t = t->next) {
169 if (t->type == XML_ELEMENT_NODE) {
170 if (xmlStrEqual(t->name, (xmlChar *)"accounts")) {
171 n = t;
172 break;
177 if (!n || !n->children)
178 return EPWMD_EMPTY_ELEMENT;
180 for (n = n->children; n; n = n->next) {
181 xmlAttrPtr a;
182 gchar *tmp;
183 GSList *tlist;
185 if (n->type != XML_ELEMENT_NODE)
186 continue;
188 a = xmlHasProp(n, (xmlChar *)"name");
190 if (!a || !a->children->content)
191 continue;
193 tmp = g_strdup((gchar *)a->children->content);
195 if (!tmp) {
196 g_slist_free(list);
197 return gpg_error_from_errno(ENOMEM);
200 tlist = g_slist_append(list, tmp);
202 if (!tlist) {
203 g_slist_free(list);
204 return gpg_error_from_errno(ENOMEM);
207 list = tlist;
210 total = g_slist_length(list);
212 if (!total)
213 return EPWMD_EMPTY_ELEMENT;
215 string = g_string_new(NULL);
217 if (!string) {
218 g_slist_free(list);
219 return gpg_error_from_errno(ENOMEM);
222 for (i = 0; i < total; i++) {
223 gchar *tmp = g_slist_nth_data(list, i);
225 g_string_append_printf(string, "%s\n", tmp);
226 g_free(tmp);
229 string = g_string_truncate(string, string->len - 1);
230 g_slist_free(list);
231 *result = string;
232 return 0;
235 gchar **split_input_line(gchar *str, gchar *delim, gint n)
237 if (!str || !*str)
238 return NULL;
240 return g_strsplit(str, delim, n);
243 static gchar **append_element_path(gchar **dst, gchar **src)
245 gchar **p;
246 gint i;
247 gchar **d;
249 if (!src)
250 return NULL;
252 d = g_strdupv(dst);
254 if (!d)
255 return NULL;
257 i = g_strv_length(d);
259 for (p = src; *p; p++) {
260 gchar **pa;
262 pa = g_realloc(d, (i + 2) * sizeof(gchar *));
264 if (!pa) {
265 g_strfreev(d);
266 return NULL;
269 d = pa;
270 d[i] = g_strdup(*p);
272 if (!d[i]) {
273 g_strfreev(d);
274 return NULL;
277 d[++i] = NULL;
280 return d;
284 * Alot like create_elements_cb() but doesn't use the last element of 'req' as
285 * content but as an element.
287 xmlNodePtr create_target_elements_cb(xmlNodePtr node, gchar **path,
288 gpg_error_t *error, void *data)
290 gint i;
291 char **req = path;
293 if (xmlStrEqual(node->name, (xmlChar *)*req))
294 req++;
296 for (i = 0; req[i]; i++) {
297 xmlNodePtr n;
299 if ((n = find_element(node, req[i])) == NULL) {
300 n = xmlNewNode(NULL, (xmlChar *)req[i]);
302 if (!n) {
303 *error = gpg_error_from_errno(ENOMEM);
304 return NULL;
307 node = xmlAddChild(node, n);
309 if (!node) {
310 *error = gpg_error_from_errno(ENOMEM);
311 return NULL;
314 else
315 node = n;
318 return node;
321 xmlNodePtr create_elements_cb(xmlNodePtr node, gchar **elements,
322 gpg_error_t *error, void *data)
324 gint i;
325 gchar **req = elements;
327 if (node->type == XML_TEXT_NODE)
328 node = node->parent;
330 if (node->name && xmlStrEqual(node->name, (xmlChar *)*req))
331 req++;
333 for (i = 0; req[i]; i++) {
334 xmlNodePtr n;
336 if (req[i+1]) {
338 * Strip the first '!' if needed. If there's another, it's an
339 * error. The syntax has already been checked before calling this
340 * function.
342 is_literal_element(&req[i]);
346 * The value of the element tree.
348 if (!req[i+1]) {
349 if (node->children) {
350 n = node->children->next ? xmlCopyNode(node->children->next, 1) :
351 xmlCopyNode(node->children, 1);
353 if (!n) {
354 *error = gpg_error_from_errno(ENOMEM);
355 return NULL;
358 if (n->content) {
359 xmlFree(n->content);
360 n->content = NULL;
363 else
364 n = NULL;
366 if (req[i])
367 xmlNodeSetContent(node, (xmlChar *)req[i]);
368 else if (node->content) {
369 xmlFree(node->content);
370 node->content = NULL;
373 if (n) {
374 if (!xmlAddChild(node, n)) {
375 *error = gpg_error_from_errno(ENOMEM);
376 return NULL;
380 break;
383 n = find_element(node, req[i]);
385 if (!n) {
386 n = xmlNewNode(NULL, (xmlChar *)req[i]);
388 if (!n) {
389 *error = gpg_error_from_errno(ENOMEM);
390 return NULL;
393 node = xmlAddChild(node, n);
395 if (!node) {
396 *error = gpg_error_from_errno(ENOMEM);
397 return NULL;
400 else
401 node = n;
404 return node;
407 xmlNodePtr find_account(xmlDocPtr doc, gchar ***req, gpg_error_t *error,
408 gboolean *target, gint recursion_depth)
410 xmlNodePtr n;
411 gint depth = 0;
412 gchar *account = g_strdup(*req[0]);
413 gboolean literal = is_literal_element(&account);
415 if (!account) {
416 *error = gpg_error_from_errno(ENOMEM);
417 return NULL;
420 *error = 0;
421 recursion_depth++;
423 if (max_recursion_depth >= 1 && recursion_depth > max_recursion_depth) {
424 *error = EPWMD_LOOP;
425 return NULL;
428 for (n = doc->children; n;) {
429 if (n->type == XML_ELEMENT_NODE) {
430 if (depth == 0 && xmlStrEqual(n->name, (xmlChar *)"accounts")) {
431 n = n->children;
432 depth++;
433 continue;
436 if (depth == 1 && xmlStrEqual(n->name, (xmlChar *)"account")) {
437 xmlChar *content = node_has_attribute(n, (xmlChar *)"name");
439 if (!content)
440 continue;
442 if (xmlStrEqual(content, (xmlChar *)account)) {
443 gchar **nreq, **tmp = NULL;
445 if (literal == TRUE) {
446 g_free(account);
447 return n;
450 content = node_has_attribute(n, (xmlChar *)"target");
452 if (!content) {
453 g_free(account);
454 return n;
457 if (strchr((gchar *)content, '\t')) {
458 nreq = split_input_line((gchar *)content, "\t", 0);
460 #if 0
462 * FIXME ENOMEM
464 if (!nreq) {
465 *error = gpg_error_from_errno(ENOMEM);
466 return NULL;
468 #endif
470 tmp = *req;
471 tmp = append_element_path(nreq, tmp+1);
472 g_strfreev(nreq);
474 if (!tmp) {
475 *error = gpg_error_from_errno(ENOMEM);
476 return NULL;
479 g_strfreev(*req);
480 *req = tmp;
482 else {
483 if (strv_printf(&tmp, "%s", content) == FALSE) {
484 *error = gpg_error_from_errno(ENOMEM);
485 return NULL;
488 nreq = *req;
489 nreq = append_element_path(tmp, nreq+1);
490 g_strfreev(tmp);
492 if (!nreq) {
493 *error = gpg_error_from_errno(ENOMEM);
494 return NULL;
497 g_strfreev(*req);
498 *req = nreq;
501 if (target)
502 *target = TRUE;
504 g_free(account);
505 n = find_account(doc, req, error, target, recursion_depth);
506 return n;
511 n = n->next;
514 g_free(account);
515 *error = EPWMD_ELEMENT_NOT_FOUND;
516 return NULL;
519 xmlNodePtr find_sibling(xmlNodePtr node, gchar *element)
521 xmlNodePtr n;
523 if (!node || !element)
524 return NULL;
526 for (n = node; n; n = n->next) {
527 if (n->type != XML_ELEMENT_NODE)
528 continue;
530 if (xmlStrEqual(n->name, (xmlChar *)element))
531 return n;
534 return NULL;
537 xmlNodePtr find_element(xmlNodePtr node, gchar *element)
539 if (!node || !element)
540 return NULL;
542 return find_sibling(node, element);
545 xmlChar *node_has_attribute(xmlNodePtr n, xmlChar *attr)
547 xmlAttrPtr a = xmlHasProp(n, attr);
549 if (!a)
550 return NULL;
552 if (!a->children || !a->children->content)
553 return NULL;
555 return a->children->content;
558 static gboolean element_to_literal(gchar **element)
560 gchar *p = g_strdup_printf("!%s", *element);
562 if (!p)
563 return FALSE;
565 g_free(*element);
566 *element = p;
567 return TRUE;
570 xmlNodePtr find_elements(xmlDocPtr doc, xmlNodePtr node,
571 gchar **req, gpg_error_t *error, gboolean *target,
572 xmlNodePtr (*found_fn)(xmlNodePtr, gchar **, gpg_error_t *, void *),
573 xmlNodePtr (*not_found_fn)(xmlNodePtr, gchar **, gpg_error_t *, void *),
574 gboolean is_list_command, gint recursion_depth, void *data)
576 xmlNodePtr n, last, last_node;
577 gchar **p;
578 gint found = 0;
580 *error = 0;
581 recursion_depth++;
583 if (max_recursion_depth >= 1 && recursion_depth > max_recursion_depth) {
584 recursion_depth--;
585 *error = EPWMD_LOOP;
586 return NULL;
589 for (last_node = last = n = node, p = req; *p; p++) {
590 xmlNodePtr tmp;
591 gchar *t = g_strdup(*p);
592 gboolean literal;
594 if (!t) {
595 *error = gpg_error_from_errno(ENOMEM);
596 return NULL;
599 literal = is_literal_element(&t);
600 n = find_element(last, t);
601 g_free(t);
603 if (!n) {
604 if (not_found_fn)
605 return not_found_fn(found ? last_node : last_node->parent, p, error, data);
607 *error = EPWMD_ELEMENT_NOT_FOUND;
608 return NULL;
611 last = n->children;
612 last_node = n;
613 found = 1;
615 if (literal == FALSE) {
616 xmlChar *content = node_has_attribute(n, (xmlChar *)"target");
617 gchar **nreq = NULL, **nnreq;
619 if (!content) {
620 if (is_list_command == TRUE) {
621 if (element_to_literal(&(*p)) == FALSE) {
622 *error = gpg_error_from_errno(ENOMEM);
623 return NULL;
627 continue;
630 if (strchr((gchar *)content, '\t') != NULL) {
631 if ((nreq = split_input_line((gchar *)content, "\t", 0)) == NULL) {
632 *error = EPWMD_INVALID_ELEMENT;
633 return NULL;
636 else {
637 if ((nreq = split_input_line((gchar *)content, " ", 0)) == NULL) {
638 *error = EPWMD_INVALID_ELEMENT;
639 return NULL;
643 tmp = find_account(doc, &nreq, error, target, 0);
645 if (!tmp) {
646 g_strfreev(nreq);
647 return NULL;
650 if (found_fn)
651 found_fn(n, nreq, error, data);
653 nnreq = append_element_path(nreq+1, p+1);
654 g_strfreev(nreq);
656 // FIXME ENOMEM
657 if (!nnreq || !*nnreq) {
658 if (nnreq)
659 g_strfreev(nnreq);
661 return tmp;
664 if (target)
665 *target = TRUE;
667 n = find_elements(doc, tmp->children, nnreq, error, NULL, found_fn,
668 not_found_fn, is_list_command, recursion_depth, data);
670 if (*(p+1)) {
671 gchar **zz = p+1, **qq = nnreq;
673 if (g_strv_length(nnreq) > g_strv_length(p+1))
674 qq = nnreq+1;
676 for (; *qq && *zz; zz++) {
677 g_free(*zz);
678 *zz = g_strdup(*qq++);
680 if (!*zz) {
681 *error = gpg_error_from_errno(ENOMEM);
682 n = NULL;
683 break;
688 g_strfreev(nnreq);
689 return n;
693 return n;
696 gboolean node_has_child_element(xmlNodePtr node)
698 xmlNodePtr n;
700 if (!node)
701 return FALSE;
703 for (n = node; n; n = n->next) {
704 if (n->type == XML_ELEMENT_NODE)
705 return TRUE;
707 if (n->children)
708 return node_has_child_element(n->children);
711 return FALSE;