Open SCAP Library
oval_probe.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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 <stdio.h>
35 #include <stdarg.h>
36 #include <stdint.h>
37 #include "oval_definitions.h"
39 #include "oval_probe_session.h"
40 #include "oscap_export.h"
41 
42 /*
43  * probe session flags
44  */
45 #define OVAL_PDFLAG_NOREPLY 0x0001
46 #define OVAL_PDFLAG_NORECONN 0x0002
47 #define OVAL_PDGLAG_RUNALL 0x0004
48 #define OVAL_PDFLAG_RUNNOW 0x0008
49 #define OVAL_PDFLAG_SLAVE 0x0010
50 
51 #define OVAL_PDFLAG_MASK (0x0001|0x0002|0x0004|0x0008|0x0010)
52 
58 OSCAP_API int oval_probe_query_sysinfo(oval_probe_session_t *sess, struct oval_sysinfo **out_sysinfo) __attribute__ ((nonnull(1, 2)));
59 
65 OSCAP_API 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)));
66 
73 OSCAP_API int oval_probe_query_variable(oval_probe_session_t *sess, struct oval_variable *variable);
74 #endif /* OVAL_PROBE_H */
OSCAP_API int OSCAP_API int OSCAP_API int oval_probe_query_variable(oval_probe_session_t *sess, struct oval_variable *variable)
Query the specified variable and all its dependencies in order to compute the vector of its values.
OSCAP_API int oval_probe_query_sysinfo(oval_probe_session_t *sess, struct oval_sysinfo **out_sysinfo) __attribute__((nonnull(1
Evaluate system info probe.
OSCAP_API int OSCAP_API int oval_probe_query_object(oval_probe_session_t *psess, struct oval_object *object, int flags, struct oval_syschar **out_syschar) __attribute__((nonnull(1
Evaluate an object.
OVAL probe session API private header.
An Oval_object instance describes a set of items to look for on an instrumented host platform.
Definition: oval_object.c:45
OVAL probe session structure.
Definition: _oval_probe_session.h:42
Characteristics bound to an Oval_object.
Definition: oval_syschar.c:47
General instrumented host description.
Definition: oval_sysInfo.c:45
An oval variable resolves an oval_value stream which specifies constraints for oval_object s and ova...
Definition: oval_variable.c:50