OpenDNSSEC-enforcer 2.1.10
kc_helper.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2012 Nominet UK. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
19 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
21 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
23 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#ifndef KC_HELPER_H
27#define KC_HELPER_H
28
29#ifdef LOG_DAEMON
30#define DEFAULT_LOG_FACILITY LOG_DAEMON
31#define DEFAULT_LOG_FACILITY_STRING "LOG_DAEMON"
32#else
33#define DEFAULT_LOG_FACILITY LOG_USER
34#define DEFAULT_LOG_FACILITY_STRING "LOG_USER"
35#endif /* LOG_DAEMON */
36
37#include "config.h"
38#include <libxml/xpath.h>
39
40#define KC_NAME_LENGTH 256
41
42typedef struct {
43 char *name;
44 char *module;
46} KC_REPO;
47
48extern int check_conf(const char *conf, char **kasp, char **zonelist,
49 char ***repo_listout, int *repo_countout, int verbose);
50extern int check_kasp(const char *kasp, char **repo_list, int repo_count, int verbose,
51 char ***policy_names_out, int *policy_count_out);
52extern int check_zonelist(const char *zonelist, int verbose, char **policy_names,
53 int policy_count);
54
55extern void log_init(int facility, const char *program_name);
56extern void log_switch(int facility, const char *program_name);
57extern void dual_log(const char *format, ...)
58#ifdef HAVE___ATTRIBUTE__
59 __attribute__ ((format (printf, 1, 2)))
60#endif
61 ;
62
63
64extern int check_rng(const char *filename, const char *rngfilename, int verbose);
65
66extern int check_file(const char *filename, const char *log_string);
67extern int check_file_from_xpath(xmlXPathContextPtr xpath_ctx, const char *log_string, const xmlChar *file_xexpr);
68
69extern int check_path(const char *pathname, const char *log_string);
70extern int check_path_from_xpath(xmlXPathContextPtr xpath_ctx, const char *log_string, const xmlChar *path_xexpr);
71
72extern int check_user_group(xmlXPathContextPtr xpath_ctx, const xmlChar *user_xexpr, const xmlChar *group_xexpr);
73
74extern int check_time_def(const char *time_expr, const char *location, const char *field, const char *filename, int* interval);
75extern int check_time_def_from_xpath(xmlXPathContextPtr xpath_ctx, const xmlChar *time_xexpr, const char *location, const char *field, const char *filename);
76
77/* if repo_list NULL, will skip the check to see all repositories in kasp are available in conf */
78extern int check_policy(xmlNode *curNode, const char *policy_name, char **repo_list, int repo_count, const char *kasp);
79
80extern int DtXMLIntervalSeconds(const char* text, int* interval);
81extern int StrStrtoi(const char* string, int* value);
82extern int StrStrtol(const char* string, long* value);
83extern char* StrStrdup(const char* string);
84extern void StrTrimR(char *text);
85extern char* StrTrimL(char* text);
86extern void* MemCalloc(size_t nmemb, size_t size);
87
88#endif /* KC_HELPER_H */
int check_time_def(const char *time_expr, const char *location, const char *field, const char *filename, int *interval)
Definition: kc_helper.c:348
int check_user_group(xmlXPathContextPtr xpath_ctx, const xmlChar *user_xexpr, const xmlChar *group_xexpr)
Definition: kc_helper.c:298
void log_init(int facility, const char *program_name)
Definition: kc_helper.c:51
int check_kasp(const char *kasp, char **repo_list, int repo_count, int verbose, char ***policy_names_out, int *policy_count_out)
Definition: kc_helper.c:1749
int check_path(const char *pathname, const char *log_string)
Definition: kc_helper.c:249
char * StrStrdup(const char *string)
Definition: kc_helper.c:1266
int check_rng(const char *filename, const char *rngfilename, int verbose)
Definition: kc_helper.c:88
int check_policy(xmlNode *curNode, const char *policy_name, char **repo_list, int repo_count, const char *kasp)
Definition: kc_helper.c:408
void log_switch(int facility, const char *program_name)
void * MemCalloc(size_t nmemb, size_t size)
Definition: kc_helper.c:1373
int check_path_from_xpath(xmlXPathContextPtr xpath_ctx, const char *log_string, const xmlChar *path_xexpr)
Definition: kc_helper.c:272
int StrStrtol(const char *string, long *value)
Definition: kc_helper.c:1212
int check_time_def_from_xpath(xmlXPathContextPtr xpath_ctx, const xmlChar *time_xexpr, const char *location, const char *field, const char *filename)
Definition: kc_helper.c:385
void dual_log(const char *format,...)
Definition: kc_helper.c:59
int StrStrtoi(const char *string, int *value)
Definition: kc_helper.c:1168
int check_zonelist(const char *zonelist, int verbose, char **policy_names, int policy_count)
Definition: kc_helper.c:1673
char * StrTrimL(char *text)
Definition: kc_helper.c:1362
void StrTrimR(char *text)
Definition: kc_helper.c:1324
int DtXMLIntervalSeconds(const char *text, int *interval)
Definition: kc_helper.c:1032
int check_conf(const char *conf, char **kasp, char **zonelist, char ***repo_listout, int *repo_countout, int verbose)
Definition: kc_helper.c:1395
int check_file_from_xpath(xmlXPathContextPtr xpath_ctx, const char *log_string, const xmlChar *file_xexpr)
Definition: kc_helper.c:216
int check_file(const char *filename, const char *log_string)
Definition: kc_helper.c:192
const char * policy_name(const policy_t *policy)
Definition: policy.c:813
char * TokenLabel
Definition: kc_helper.h:45
char * module
Definition: kc_helper.h:44
char * name
Definition: kc_helper.h:43