Open SCAP Library
oval_probe_impl.h
Go to the documentation of this file.
1 
9 /*
10  * Copyright 2009-2010 Red Hat Inc., Durham, North Carolina.
11  * All Rights Reserved.
12  *
13  * This library is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU Lesser General Public
15  * License as published by the Free Software Foundation; either
16  * version 2.1 of the License, or (at your option) any later version.
17  *
18  * This library is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21  * Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU Lesser General Public
24  * License along with this library; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26  *
27  * Authors:
28  * "Daniel Kopecek" <dkopecek@redhat.com>
29  */
30 
31 #pragma once
32 #ifndef OVAL_PROBE_IMPL_H
33 #define OVAL_PROBE_IMPL_H
34 
35 #include <seap-types.h>
36 #include "oval_definitions_impl.h"
37 #include "oval_agent_api_impl.h"
38 #include "oval_parser_impl.h"
39 #include "oval_string_map_impl.h"
41 #include "../common/util.h"
42 #include "public/oval_probe.h"
43 #include "probes/_probe-api.h"
44 
46 #include "public/oval_probe_handler.h"
47 #include "public/oval_probe.h"
48 
49 OSCAP_HIDDEN_START;
50 
51 #define OVAL_PROBE_SCHEME "pipe"
52 
53 #ifndef OVAL_PROBE_DIR
54 # define OVAL_PROBE_DIR "/usr/libexec/openscap"
55 #endif
56 
57 #define OVAL_PROBE_MAXRETRY 0
58 
59 OSCAP_HIDDEN_END;
60 
61 extern probe_ncache_t *OSCAP_GSYM(ncache);
62 
63 typedef struct {
64  oval_subtype_t type;
65  const char *name;
67 
68 void oval_probe_tblinit(void);
69 const char *oval_subtype_to_str(oval_subtype_t subtype);
70 oval_subtype_t oval_str_to_subtype(const char *str);
71 
72 #endif /* OVAL_PROBE_IMPL_H */
73