Open SCAP Library
oval_probe.h
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 #pragma once
31 #ifndef OVAL_PROBE_H
32 #define OVAL_PROBE_H
33 
34 #include <stdarg.h>
35 #include <stdint.h>
36 #include "oval_definitions.h"
38 #include "oval_probe_session.h"
39 
40 /*
41  * probe session flags
42  */
43 #define OVAL_PDFLAG_NOREPLY 0x0001
44 #define OVAL_PDFLAG_NORECONN 0x0002
45 #define OVAL_PDGLAG_RUNALL 0x0004
46 #define OVAL_PDFLAG_RUNNOW 0x0008
47 #define OVAL_PDFLAG_SLAVE 0x0010
48 
49 #define OVAL_PDFLAG_MASK (0x0001|0x0002|0x0004|0x0008|0x0010)
50 
56 int oval_probe_query_sysinfo(oval_probe_session_t *sess, struct oval_sysinfo **out_sysinfo) __attribute__ ((nonnull(1, 2)));
57 
63 int oval_probe_query_object(oval_probe_session_t *psess, struct oval_object *object, int flags, struct oval_syschar **out_syschar) __attribute__ ((nonnull(1, 2)));
64 
71 int oval_probe_query_definition(oval_probe_session_t *sess, const char *id) __attribute__ ((nonnull(1, 2)));
72 
80 
81 #define OVAL_PROBEMETA_LIST_VERBOSE 0x00000001
82 #define OVAL_PROBEMETA_LIST_DYNAMIC 0x00000002
84 void oval_probe_meta_list(FILE *output, int flags);
85 
86 #endif /* OVAL_PROBE_H */