Cross Reference: /solaris-userland/components/openscap/patches/zz_oval_fts.c.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
--- openscap-1.2.9/src/OVAL/probes/oval_fts.c.~1~ 2016-04-21 04:51:58.300491814 -0700
+++ openscap-1.2.9/src/OVAL/probes/oval_fts.c 2016-06-08 12:59:52.982814231 -0700
@@ -45,8 +45,9 @@
#if defined(__SVR4) && defined(__sun)
#include "fts_sun.h"
#include <sys/mntent.h>
-#include <libzonecfg.h>
-#include <sys/avl.h>
+#include <rad/radclient.h>
+#include <rad/radclient_basetypes.h>
+#include <rad/client/1/zonemgr.h>
#else
#include <fts.h>
#endif
@@ -137,12 +138,7 @@
#ifndef MNTTYPE_PROC
#define MNTTYPE_PROC "proc"
#endif
-
-typedef struct zone_path {
- avl_node_t avl_link_next;
- char zpath[MAXPATHLEN];
-} zone_path_t;
-static avl_tree_t avl_tree_list;
+char *top = NULL;
static bool valid_remote_fs(char *fstype)
@@ -168,79 +164,123 @@
return (true);
}
-/* function to compare two avl nodes in the avl tree */
-static int compare_zoneroot(const void *entry1, const void *entry2)
-{
- zone_path_t *t1, *t2;
- int comp;
-
- t1 = (zone_path_t *)entry1;
- t2 = (zone_path_t *)entry2;
- if ((comp = strcmp(t1->zpath, t2->zpath)) == 0) {
- return (0);
- }
- return (comp > 0 ? 1 : -1);
-}
-
int load_zones_path_list()
{
- FILE *cookie;
- char *name;
- zone_state_t state_num;
- zone_path_t *temp = NULL;
- avl_index_t where;
- char rpath[MAXPATHLEN];
-
- cookie = setzoneent();
- if (getzoneid() != GLOBAL_ZONEID)
- return (0);
- avl_create(&avl_tree_list, compare_zoneroot,
- sizeof(zone_path_t), offsetof(zone_path_t, avl_link_next));
- while ((name = getzoneent(cookie)) != NULL) {
- if (strcmp(name, "global") == 0)
- continue;
- if (zone_get_state(name, &state_num) != Z_OK) {
- dE("Could not get zone state for %s", name);
- continue;
- } else if (state_num > ZONE_STATE_CONFIGURED) {
- temp = malloc(sizeof(zone_path_t));
- if (temp == NULL) {
- dE("Memory alloc failed");
- return(1);
- }
- if (zone_get_zonepath(name, rpath,
- sizeof(rpath)) != Z_OK) {
- dE("Could not get zone path for %s",
- name);
- continue;
- }
- if (realpath(rpath, temp->zpath) != NULL)
- avl_add(&avl_tree_list, temp);
- }
- }
- endzoneent(cookie);
- return (0);
+ rc_conn_t *conn;
+ rc_err_t status;
+ rc_instance_t *zone_inst;
+ adr_name_t **name_list;
+ int name_count, i, prop_count;
+ char *zone_name;
+ char *zone_state;
+ zonemgr_Resource_t global = { .zr_type = "global" };
+ zonemgr_Property_t **result;
+ zonemgr_Result_t *error;
+ const char *prop[] = {"zonepath"};
+ char *zonepath;
+ char *p;
+ char rpath[PATH_MAX];
+
+ /* Connect to rad */
+ conn = rc_connect_unix(NULL, NULL);
+ if (conn == NULL) {
+ dE("Unable to connect to rad.\n");
+ return (1);
+ }
+ status = zonemgr_Zone__rad_list(conn, _B_TRUE, NS_GLOB, &name_list,
+ &name_count, 0);
+ if (status != RCE_OK) {
+ dE("Zonemgr lookup failed.\n");
+ goto error;
+ }
+ if (name_count > 0) {
+ top = calloc(name_count + 1, PATH_MAX);
+ if (top == NULL) {
+ dE("Memory error.\n");
+ return (1);
+ }
+ }
+ for (i = 0; i < name_count; i++) {
+ int rc;
+ status = rc_lookup(conn, name_list[i], NULL, _B_TRUE,
+ &zone_inst);
+ if (status != RCE_OK) {
+ goto error;
+ }
+ status = zonemgr_Zone_get_name(zone_inst, &zone_name);
+ if (status != RCE_OK) {
+ goto error;
+ }
+ dE("zone name:%s\n", zone_name);
+ status = zonemgr_Zone_get_state(zone_inst, &zone_state);
+ if (status != RCE_OK) {
+ dE("Failed to get state\n");
+ return(1);
+ }
+ dE("zone state:%s\n", zone_state);
+ if (strcmp(zone_state, "incomplete") != 0 &&
+ strcmp(zone_state, "running") != 0 &&
+ strcmp(zone_state, "installed") != 0) {
+ free(zone_name);
+ free(zone_state);
+ continue;
+ }
+ status = zonemgr_Zone_getResourceProperties(zone_inst, &global,
+ prop, 1, &result, &prop_count, &error);
+ if (status == RCE_SERVER_OBJECT) {
+ dE("error code:%d: %s\n",
+ error->zr_code ? *error->zr_code : 0,
+ error->zr_str ? error->zr_str : "");
+ } else if (status != RCE_OK) {
+ dE("Internal RAD error: %s\n", rc_err_string(status));
+ }
+ zonepath = strdup(result[0]->zp_value);
+ dE("zonepath :%s\n", zonepath);
+ assert(prop_count == 1);
+ rpath[0] = '\0';
+ if (zonepath != NULL && strlen(zonepath) > 0 ) {
+ if ((p = strstr(zonepath, "%{zonename}")) != NULL) {
+ *p = '\0';
+ snprintf(rpath, sizeof(rpath), "%s%s",zonepath,
+ strdup(zone_name));
+ } else {
+ snprintf(rpath, sizeof(rpath), "%s", zonepath);
+ }
+ resolvepath(rpath, &(top[i*PATH_MAX]), ((size_t) PATH_MAX -1));
+ dE("zonepath after resolvepath:%s\n", &(top[i*PATH_MAX]));
+ }
+ zonemgr_Result_free(error);
+ zonemgr_Property_array_free(result, prop_count);
+ free(zone_name);
+ free(zone_state);
+ }
+ return (0);
+error:
+ /* disconnect from rad */
+ rc_disconnect(conn);
+ return(1);
}
static void free_zones_path_list()
{
- zone_path_t *temp;
- void* cookie = NULL;
-
- while ((temp = avl_destroy_nodes(&avl_tree_list, &cookie)) != NULL) {
- free(temp);
- }
- avl_destroy(&avl_tree_list);
+ free(top);
}
static bool valid_local_zone(char *path)
{
- zone_path_t temp;
- avl_index_t where;
+ int i;
+ char *zonepath;
- strlcpy(temp.zpath, path, sizeof(temp.zpath));
- if (avl_find(&avl_tree_list, &temp, &where) != NULL)
- return (true);
+ i = 0;
+ if (top == NULL)
+ return (false);
+ zonepath = &(top[0]);
+ while (*zonepath != '\0') {
+ if (strcmp(path, zonepath) == 0)
+ return (true);
+ i++;
+ zonepath = &(top[i*PATH_MAX]);
+ }
return (false);
}
@@ -884,7 +924,6 @@
#if defined(__SVR4) && defined(__sun)
if (load_zones_path_list() != 0) {
dE("Failed to load zones path info. Recursing non-global zones.");
- free_zones_path_list();
}
#endif
return (ofts);