1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/* Copyright (C) 2005 Tresys Technology, LLC
* see file 'COPYING' for use and warranty information */
/*
* Author: jmowery@tresys.com
*
*/
#include "sechecker.h"
#include "sechk_parse.h"
#include "util.h"
#include <libxml/xmlreader.h>
#include <errno.h>
/* xml parser keywords */
#define SECHK_PARSE_SECHECKER_TAG "sechecker"
#define SECHK_PARSE_PROFILE_TAG "profile"
#define SECHK_PARSE_MODULE_TAG "module"
#define SECHK_PARSE_OPTION_TAG "option"
#define SECHK_PARSE_ITEM_TAG "item"
#define SECHK_PARSE_OUTPUT_TAG "output"
#define SECHK_PARSE_VALUE_ATTRIB "value"
#define SECHK_PARSE_NAME_ATTRIB "name"
#define SECHK_PARSE_VERSION_ATTRIB "version"
#define SECHK_PARSE_OUTPUT_NONE "none"
#define SECHK_PARSE_OUTPUT_QUIET "quiet"
#define SECHK_PARSE_OUTPUT_SHORT "short"
#define SECHK_PARSE_OUTPUT_VERBOSE "verbose"
static char *build_dtd_path(void);
/* Parsing functions */
/*
* Parse the configuration file. */
int sechk_lib_parse_xml_file(const char *filename, sechk_lib_t *lib)
{
xmlTextReaderPtr reader = NULL;
xmlDtdPtr dtd = NULL;
xmlDocPtr xml = NULL;
xmlValidCtxtPtr ctxt = NULL;
int tmp, ret = 0;
char *dtd_path = NULL;
/* this initializes the XML library and checks potential ABI mismatches
* between the version it was compiled for and the actual shared
* library used. */
LIBXML_TEST_VERSION;
reader = xmlReaderForFile(filename, NULL, 0);
if (!reader) {
ret = errno;
if (ret != ENOENT)
fprintf(stderr, "Error: Could not create xmlReader.\n");
goto exit_err;
}
dtd_path = build_dtd_path();
if (!dtd_path) {
fprintf(stderr, "Error: getting DTD path\n");
goto exit_err;
}
dtd = xmlParseDTD(NULL, (const xmlChar *)dtd_path);
free(dtd_path);
if (!dtd) {
fprintf(stderr, "Error: parsing DTD\n");
goto exit_err;
}
xml = xmlParseFile(filename);
if (!xml) {
fprintf(stderr, "Error: parsing sechecker profile\n");
goto exit_err;
}
ctxt = xmlNewValidCtxt();
if (!ctxt) {
fprintf(stderr, "Error: out of memory\n");
goto exit_err;
}
/* validate profile against the DTD */
if (xmlValidateDtd(ctxt, xml, dtd) == 0) {
fprintf(stderr, "Error: SEChecker profile contains invalid XML. Aborting.\n");
goto exit_err;
}
while (1) {
ret = xmlTextReaderRead(reader);
if (ret == -1) {
fprintf(stderr, "Error: Error reading xml.\n");
goto exit_err;
}
if (ret == 0) /* no more nodes to read */
break;
tmp = sechk_lib_process_xml_node(reader, lib);
if (tmp == -1)
goto exit_err;
if (tmp == 1) {
ret = xmlTextReaderNext(reader);
if (ret == 0)
break;
if (ret == -1) {
fprintf(stderr, "Error in xmlTextReaderNext()\n");
goto exit_err;
}
}
}
/* cleanup function for the XML library */
xmlCleanupParser();
xmlFreeTextReader(reader);
return 0;
exit_err:
xmlCleanupParser();
if (reader)
xmlFreeTextReader(reader);
if (ret)
errno = ret;
return -1;
}
/*
* process a single node in the xml file */
int sechk_lib_process_xml_node(xmlTextReaderPtr reader, sechk_lib_t *lib)
{
xmlChar *attrib = NULL;
int idx;
sechk_name_value_t *nv = NULL;
static xmlChar *option = NULL;
static xmlChar *value = NULL;
static sechk_module_t *current_module=NULL;
switch (xmlTextReaderNodeType(reader)) {
case XML_ELEMENT_DECL: /* closing tags */
if (xmlStrEqual(xmlTextReaderConstName(reader), (xmlChar*)SECHK_PARSE_MODULE_TAG) == 1) {
current_module = NULL;
} else if (xmlStrEqual(xmlTextReaderConstName(reader), (xmlChar*)SECHK_PARSE_OPTION_TAG) == 1) {
free(option);
option = NULL;
}
break;
case XML_ELEMENT_NODE: /* opening tags */
if (xmlStrEqual(xmlTextReaderConstName(reader), (xmlChar*)SECHK_PARSE_SECHECKER_TAG) == 1) {
/* parsing the <sechecker> tag */
attrib = xmlTextReaderGetAttribute(reader, (xmlChar*)SECHK_PARSE_VERSION_ATTRIB);
if (attrib) {
#ifdef SECHECKER_VERSION
if (atof((const char *)attrib) > atof(SECHECKER_VERSION)) {
fprintf(stderr, "Error: sechecker version in profile is incorrect: expected %1.1f got %1.1f\n",
atof(SECHECKER_VERSION), atof((const char *)attrib));
goto exit_err;
}
#endif
free(attrib);
attrib = NULL;
} else {
fprintf(stderr, "Warning: sechecker version is not specified.\n");
}
} else if (xmlStrEqual(xmlTextReaderConstName(reader), (xmlChar*)SECHK_PARSE_MODULE_TAG) == 1) {
/* parsing the <module> tag */
attrib = xmlTextReaderGetAttribute(reader, (xmlChar*)SECHK_PARSE_NAME_ATTRIB);
if (attrib) {
if ((idx = sechk_lib_get_module_idx((const char*)attrib, lib)) == -1) {
fprintf(stderr, "Warning: module %s not found.\n", (const char*)attrib);
return 1; /* not a fatal error */
} else {
/* set the values on the existing module */
current_module = &lib->modules[idx];
lib->module_selection[idx] = TRUE;
}
free(attrib);
attrib = NULL;
} else {
fprintf(stderr, "Error: module name is not specified.\n");
goto exit_err;
}
} else if (xmlStrEqual(xmlTextReaderConstName(reader), (xmlChar*)SECHK_PARSE_OPTION_TAG) == 1) {
/* parsing the <option> tag */
if (!current_module) {
fprintf(stderr, "Error: 'option' specified outside the scope of a module.\n");
goto exit_err;
}
/* read the name of the option */
option = xmlTextReaderGetAttribute(reader, (xmlChar*)SECHK_PARSE_NAME_ATTRIB);
if (!option) {
fprintf(stderr, "Error: option name is not specified.\n");
goto exit_err;
}
/* clear the options with this name that were set by defualt for this module */
sechk_lib_module_clear_option(current_module, (char*)option);
} else if (xmlStrEqual(xmlTextReaderConstName(reader), (xmlChar*)SECHK_PARSE_ITEM_TAG) == 1) {
/* parsing the <item> tag */
assert(current_module);
nv = sechk_name_value_new((char*)option, NULL);
/* read the value for this name value pair */
value = xmlTextReaderGetAttribute(reader, (xmlChar*)SECHK_PARSE_VALUE_ATTRIB);
if (!value) {
fprintf(stderr, "Error: item value is not specified.\n");
goto exit_err;
}
nv->value = strdup((char*)value);
/* add the nv pair to the module options */
nv->next = current_module->options;
current_module->options = nv;
} else if (xmlStrEqual(xmlTextReaderConstName(reader), (xmlChar*)SECHK_PARSE_OUTPUT_TAG) == 1) {
if (!current_module) {
fprintf(stderr, "Error: 'output' specified outside the scope of a module.\n");
goto exit_err;
}
attrib = xmlTextReaderGetAttribute(reader, (xmlChar*)SECHK_PARSE_VALUE_ATTRIB);
if (attrib) {
if (xmlStrEqual(attrib, (xmlChar*)SECHK_PARSE_OUTPUT_QUIET) == 1) {
current_module->outputformat = SECHK_OUT_QUIET;
} else if (xmlStrEqual(attrib, (xmlChar*)SECHK_PARSE_OUTPUT_VERBOSE) == 1) {
current_module->outputformat = SECHK_OUT_VERBOSE;
} else if (xmlStrEqual(attrib, (xmlChar*)SECHK_PARSE_OUTPUT_SHORT) == 1) {
current_module->outputformat = SECHK_OUT_SHORT;
} else if (xmlStrEqual(attrib, (xmlChar*)SECHK_PARSE_OUTPUT_NONE) == 1) {
current_module->outputformat = SECHK_OUT_NONE;
} else {
fprintf(stderr, "Error: invalid output value %s.\n",attrib);
goto exit_err;
}
free(attrib);
attrib = NULL;
} else {
fprintf(stderr, "Error: output value is not specified.\n");
goto exit_err;
}
}
break;
}
return 0;
exit_err:
if (nv) {
sechk_name_value_destroy(nv);
}
return -1;
}
static char *build_dtd_path(void)
{
char *path = NULL;
int path_sz = 0;
#ifdef PROFILE_INSTALL_DIR
if (append_str(&path, &path_sz, "file://localhost") == -1)
return NULL;
if (append_str(&path, &path_sz, BASE_PATH) == -1)
return NULL;
if (append_str(&path, &path_sz, "/") == -1)
return NULL;
if (append_str(&path, &path_sz, PROFILE_INSTALL_DIR) == -1)
return NULL;
if (append_str(&path, &path_sz, "/sechecker.dtd") == -1)
return NULL;
return path;
#endif
return NULL;
}
|