Open SCAP Library
probe.h
1 /*
2  * Copyright 2011 Red Hat Inc., Durham, North Carolina.
3  * All Rights Reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Authors:
20  * Daniel Kopecek <dkopecek@redhat.com>
21  */
22 #ifndef PROBE_H
23 #define PROBE_H
24 
25 #include "oscap_platforms.h"
26 
27 #include <sys/types.h>
28 #ifdef OS_WINDOWS
29 #include <io.h>
30 #else
31 #include <unistd.h>
32 #endif
33 #include <stdint.h>
34 #include <stddef.h>
35 #include <stdarg.h>
36 #include <pthread.h>
37 #include "_seap.h"
38 #include "ncache.h"
39 #include "rcache.h"
40 #include "icache.h"
41 #include "probe-common.h"
42 #include "option.h"
43 #include "common/util.h"
44 #include "common/compat_pthread_barrier.h"
45 
46 typedef struct {
47  pthread_rwlock_t rwlock;
48  uint32_t flags;
49 
50  char *name;
51  pid_t pid;
52 
53  void *probe_arg;
54  int probe_exitcode;
55 
57  int sd;
59  pthread_t th_input;
60  pthread_t th_signal;
61 
62  rbt_t *workers;
63  uint32_t max_threads;
64  uint32_t max_chdepth;
65 
71  size_t optcnt;
72  bool offline_mode;
73  int supported_offline_mode;
74  int selected_offline_mode;
75  oval_subtype_t subtype;
76 
77  int real_root_fd;
78  int real_cwd_fd;
79 } probe_t;
80 
81 struct probe_ctx {
86  int offline_mode;
87 };
88 
89 typedef enum {
90  PROBE_OFFLINE_NONE = 0x00,
91  PROBE_OFFLINE_CHROOT = 0x01,
92  PROBE_OFFLINE_RPMDB = 0x02,
93  PROBE_OFFLINE_OWN = 0x04,
94  PROBE_OFFLINE_ALL = 0x0f
95 } probe_offline_flags;
96 
97 extern pthread_barrier_t OSCAP_GSYM(th_barrier);
98 
99 #endif /* PROBE_H */
probe_option_t * option
probe option handlers
Definition: probe.h:70
oval_subtype_t
Unknown subtypes.
Definition: oval_types.h:120
Definition: _seap-types.h:51
Definition: probe.h:46
int sd
SEAP descriptor.
Definition: probe.h:57
probe_icache_t * icache
item cache
Definition: probe.h:85
Definition: option.h:14
Probe cache structure.
Definition: rcache.h:32
SEAP_CTX_t * SEAP_ctx
SEAP context.
Definition: probe.h:56
SEXP_t * probe_out
collected object
Definition: probe.h:83
SEXP_t * filters
object filters (OVAL 5.8 and higher)
Definition: probe.h:84
Definition: probe.h:81
Definition: icache.h:41
Element name cache structure.
Definition: ncache.h:36
SEXP_t * probe_in
S-exp representation of the input object.
Definition: probe.h:82
probe_rcache_t * rcache
probe result cache
Definition: probe.h:66
probe_ncache_t * ncache
probe name cache
Definition: probe.h:67
Definition: rbt_common.h:129
Definition: sexp-types.h:82
size_t optcnt
number of defined options
Definition: probe.h:71
probe_icache_t * icache
probe item cache
Definition: probe.h:68