aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/suricata/src/conf.h
diff options
context:
space:
mode:
authorAshlee Young <ashlee@onosfw.com>2015-09-09 22:21:41 -0700
committerAshlee Young <ashlee@onosfw.com>2015-09-09 22:21:41 -0700
commit8879b125d26e8db1a5633de5a9c692eb2d1c4f83 (patch)
treec7259d85a991b83dfa85ab2e339360669fc1f58e /framework/src/suricata/src/conf.h
parent13d05bc8458758ee39cb829098241e89616717ee (diff)
suricata checkin based on commit id a4bce14770beee46a537eda3c3f6e8e8565d5d0a
Change-Id: I9a214fa0ee95e58fc640e50bd604dac7f42db48f
Diffstat (limited to 'framework/src/suricata/src/conf.h')
-rw-r--r--framework/src/suricata/src/conf.h93
1 files changed, 93 insertions, 0 deletions
diff --git a/framework/src/suricata/src/conf.h b/framework/src/suricata/src/conf.h
new file mode 100644
index 00000000..2318580a
--- /dev/null
+++ b/framework/src/suricata/src/conf.h
@@ -0,0 +1,93 @@
+/* Copyright (C) 2007-2010 Open Information Security Foundation
+ *
+ * You can copy, redistribute or modify this Program under the terms of
+ * the GNU General Public License version 2 as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/**
+ * \file
+ *
+ * \author Endace Technology Limited - Jason Ish <jason.ish@endace.com>
+ */
+
+#ifndef __CONF_H__
+#define __CONF_H__
+
+#include "queue.h"
+
+/**
+ * Structure of a configuration parameter.
+ */
+typedef struct ConfNode_ {
+ char *name;
+ char *val;
+
+ int is_seq;
+
+ /**< Flag that sets this nodes value as final. */
+ int final;
+
+ struct ConfNode_ *parent;
+ TAILQ_HEAD(, ConfNode_) head;
+ TAILQ_ENTRY(ConfNode_) next;
+} ConfNode;
+
+
+/**
+ * The default log directory.
+ */
+#ifdef OS_WIN32
+#define DEFAULT_LOG_DIR "C:\\WINDOWS\\Temp"
+#else
+#define DEFAULT_LOG_DIR "/var/log/suricata"
+#endif /* OS_WIN32 */
+
+void ConfInit(void);
+void ConfDeInit(void);
+ConfNode *ConfGetRootNode(void);
+int ConfGet(const char *name, char **vptr);
+int ConfGetInt(const char *name, intmax_t *val);
+int ConfGetBool(const char *name, int *val);
+int ConfGetDouble(const char *name, double *val);
+int ConfGetFloat(const char *name, float *val);
+int ConfSet(const char *name, char *val);
+int ConfSetFromString(const char *input, int final);
+int ConfSetFinal(const char *name, char *val);
+void ConfDump(void);
+void ConfNodeDump(const ConfNode *node, const char *prefix);
+ConfNode *ConfNodeNew(void);
+void ConfNodeFree(ConfNode *);
+ConfNode *ConfGetNode(const char *key);
+void ConfCreateContextBackup(void);
+void ConfRestoreContextBackup(void);
+ConfNode *ConfNodeLookupChild(const ConfNode *node, const char *key);
+const char *ConfNodeLookupChildValue(const ConfNode *node, const char *key);
+void ConfNodeRemove(ConfNode *);
+void ConfRegisterTests();
+int ConfNodeChildValueIsTrue(const ConfNode *node, const char *key);
+int ConfValIsTrue(const char *val);
+int ConfValIsFalse(const char *val);
+void ConfNodePrune(ConfNode *node);
+
+ConfNode *ConfNodeLookupKeyValue(const ConfNode *base, const char *key, const char *value);
+int ConfGetChildValue(const ConfNode *base, const char *name, char **vptr);
+int ConfGetChildValueInt(const ConfNode *base, const char *name, intmax_t *val);
+int ConfGetChildValueBool(const ConfNode *base, const char *name, int *val);
+int ConfGetChildValueWithDefault(const ConfNode *base, const ConfNode *dflt, const char *name, char **vptr);
+int ConfGetChildValueIntWithDefault(const ConfNode *base, const ConfNode *dflt, const char *name, intmax_t *val);
+int ConfGetChildValueBoolWithDefault(const ConfNode *base, const ConfNode *dflt, const char *name, int *val);
+char *ConfLoadCompleteIncludePath(const char *);
+int ConfNodeIsSequence(const ConfNode *node);
+
+#endif /* ! __CONF_H__ */