File: plugin_loader.c

package info (click to toggle)
falcosecurity-libs 0.20.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,732 kB
  • sloc: ansic: 532,812; cpp: 100,792; python: 1,490; sh: 532; makefile: 195
file content (307 lines) | stat: -rw-r--r-- 10,038 bytes parent folder | download | duplicates (2)
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
// SPDX-License-Identifier: Apache-2.0
/*
Copyright (C) 2023 The Falco Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

*/

#ifdef _WIN32
#include <windows.h>
typedef HINSTANCE library_handle_t;
#else
#include <dlfcn.h>
typedef void* library_handle_t;
#endif

#include <libscap/strl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <plugin/plugin_loader.h>

static inline void err_prepend(char* s, const char* prefix, const char* sep) {
	char tmp[PLUGIN_MAX_ERRLEN];
	size_t prefix_len = strlcpy(tmp, prefix, PLUGIN_MAX_ERRLEN);
	if(*s != '\0') {
		strlcpy(&tmp[prefix_len], sep, PLUGIN_MAX_ERRLEN - prefix_len);
		prefix_len += strlen(sep);
	}
	strlcpy(&tmp[prefix_len], s, PLUGIN_MAX_ERRLEN - prefix_len);
	strlcpy(s, tmp, PLUGIN_MAX_ERRLEN);
}

static inline void err_append(char* s, const char* suffix, const char* sep) {
	if(*s != '\0') {
		strlcat(s, sep, PLUGIN_MAX_ERRLEN);
	}
	strlcat(s, suffix, PLUGIN_MAX_ERRLEN);
}

static void* getsym(library_handle_t handle, const char* name) {
#ifdef _WIN32
	return (void*)GetProcAddress(handle, name);
#else
	return (void*)dlsym(handle, name);
#endif
}

// little hack for simplifying the plugin_load function
#define SYM_RESOLVE(h, s) *(void**)(&(h->api.s)) = getsym(h->handle, "plugin_" #s)

plugin_handle_t* plugin_load(const char* path, char* err) {
	// alloc and init memory
	err[0] = '\0';
	plugin_handle_t* ret = (plugin_handle_t*)calloc(1, sizeof(plugin_handle_t));
	if(!ret) {
		strlcpy(err, "error allocating plugin handle", PLUGIN_MAX_ERRLEN);
		return NULL;
	}

	// open dynamic library
#ifdef _WIN32
	ret->handle = LoadLibrary(path);
	if(ret->handle == NULL) {
		DWORD flg = FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
		            FORMAT_MESSAGE_IGNORE_INSERTS;
		LPTSTR msg_buf = 0;
		if(FormatMessageA(flg, 0, GetLastError(), 0, (LPTSTR)&msg_buf, 0, NULL) && msg_buf) {
			strlcpy(err, msg_buf, PLUGIN_MAX_ERRLEN);
			LocalFree(msg_buf);
		}
	}
#else
	ret->handle = dlopen(path, RTLD_LAZY);
	if(ret->handle == NULL) {
		strlcpy(err, (const char*)dlerror(), PLUGIN_MAX_ERRLEN);
	}
#endif

	// return NULL if library loading had errors
	if(ret->handle == NULL) {
		err_prepend(err, "can't load plugin dynamic library:", " ");
		free(ret);
		return NULL;
	}

	// load all library symbols
	SYM_RESOLVE(ret, get_required_api_version);
	SYM_RESOLVE(ret, get_version);
	SYM_RESOLVE(ret, get_last_error);
	SYM_RESOLVE(ret, get_name);
	SYM_RESOLVE(ret, get_description);
	SYM_RESOLVE(ret, get_contact);
	SYM_RESOLVE(ret, get_init_schema);
	SYM_RESOLVE(ret, init);
	SYM_RESOLVE(ret, destroy);
	SYM_RESOLVE(ret, get_id);
	SYM_RESOLVE(ret, get_event_source);
	SYM_RESOLVE(ret, open);
	SYM_RESOLVE(ret, close);
	SYM_RESOLVE(ret, next_batch);
	SYM_RESOLVE(ret, get_progress);
	SYM_RESOLVE(ret, list_open_params);
	SYM_RESOLVE(ret, event_to_string);
	SYM_RESOLVE(ret, get_fields);
	SYM_RESOLVE(ret, extract_fields);
	SYM_RESOLVE(ret, get_extract_event_sources);
	SYM_RESOLVE(ret, get_extract_event_types);
	SYM_RESOLVE(ret, get_parse_event_types);
	SYM_RESOLVE(ret, get_parse_event_sources);
	SYM_RESOLVE(ret, parse_event);
	SYM_RESOLVE(ret, get_async_event_sources);
	SYM_RESOLVE(ret, get_async_events);
	SYM_RESOLVE(ret, set_async_event_handler);
	SYM_RESOLVE(ret, dump_state);
	SYM_RESOLVE(ret, set_config);
	SYM_RESOLVE(ret, get_metrics);
	SYM_RESOLVE(ret, capture_open);
	SYM_RESOLVE(ret, capture_close);
	return ret;
}

plugin_handle_t* plugin_load_api(const plugin_api* api, char* err) {
	// alloc and init memory
	err[0] = '\0';
	if(!api) {
		strlcpy(err, "can't allocate plugin handle with invalid API table", PLUGIN_MAX_ERRLEN);
		return NULL;
	}

	plugin_handle_t* ret = (plugin_handle_t*)calloc(1, sizeof(plugin_handle_t));
	if(!ret) {
		strlcpy(err, "error allocating plugin handle", PLUGIN_MAX_ERRLEN);
		return NULL;
	}
	ret->api = *api;
	return ret;
}

void plugin_unload(plugin_handle_t* h) {
	if(h) {
		if(h->handle) {
#ifdef _WIN32
			FreeLibrary(h->handle);
#else
			dlclose(h->handle);
#endif
		}
		free(h);
	}
}

bool plugin_is_loaded(const char* path) {
#ifdef _WIN32
	/*
	 * LoadLibrary maps the module into the address space of the calling process, if necessary,
	 * and increments the modules reference count, if it is already mapped.
	 * GetModuleHandle, however, returns the handle to a mapped module
	 * without incrementing its reference count.
	 *
	 * This returns an HMODULE indeed, but they are the same thing
	 */
	return GetModuleHandle(path) != NULL;
#else
	/*
	 * RTLD_NOLOAD (since glibc 2.2)
	 *	Don't load the shared object. This can be used to test if
	 *	the object is already resident (dlopen() returns NULL if
	 *	it is not, or the object's handle if it is resident).
	 *	This does not increment dlobject reference count.
	 */
	return dlopen(path, RTLD_LAZY | RTLD_NOLOAD) != NULL;
#endif
}

bool plugin_check_required_api_version(const plugin_handle_t* h, char* err) {
	uint32_t major, minor, patch;
	const char *ver, *failmsg;
	if(h->api.get_required_api_version == NULL) {
		strlcpy(err, "plugin_get_required_api_version symbol not implemented", PLUGIN_MAX_ERRLEN);
		return false;
	}

	ver = h->api.get_required_api_version();
	if(sscanf(ver, "%" PRIu32 ".%" PRIu32 ".%" PRIu32, &major, &minor, &patch) != 3) {
		snprintf(err,
		         PLUGIN_MAX_ERRLEN,
		         "plugin provided an invalid required API version: '%s'",
		         ver);
		return false;
	}

	failmsg = NULL;
	/* The plugin requires a minimum framework version */
	if(PLUGIN_API_VERSION_MAJOR != major) {
		failmsg = "major versions disagree";
	} else if(PLUGIN_API_VERSION_MINOR < minor) {
		failmsg = "framework's minor is less than the requested one";
	} else if(PLUGIN_API_VERSION_MINOR == minor && PLUGIN_API_VERSION_PATCH < patch) {
		failmsg = "framework's patch is less than the requested one";
	}

	if(failmsg != NULL) {
		snprintf(err,
		         PLUGIN_MAX_ERRLEN,
		         "plugin required API version '%s' not compatible with the framework's API version "
		         "'%s': %s",
		         ver,
		         PLUGIN_API_VERSION_STR,
		         failmsg);
		return false;
	}

	return true;
}

plugin_caps_t plugin_get_capabilities(const plugin_handle_t* h, char* err) {
	plugin_caps_t caps = CAP_NONE;
	strlcpy(err, "", PLUGIN_MAX_ERRLEN);

	if(h->api.open != NULL && h->api.close != NULL && h->api.next_batch != NULL) {
		bool has_id = h->api.get_id != NULL && h->api.get_id() != 0;
		bool has_source = h->api.get_event_source != NULL && strlen(h->api.get_event_source()) > 0;
		if((has_id && has_source) || (!has_id && !has_source)) {
			caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_SOURCING);
		} else {
			caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_BROKEN);
			err_append(err,
			           "must implement both 'plugin_get_id' and 'plugin_get_event_source' or "
			           "neither (event sourcing)",
			           ", ");
		}
	} else if(h->api.open != NULL || h->api.close != NULL || h->api.next_batch != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_BROKEN);
		err_append(err,
		           "must implement all of 'plugin_open', 'plugin_close', and 'plugin_next_batch' "
		           "(event sourcing)",
		           ", ");
	}

	if(h->api.get_fields != NULL && h->api.extract_fields != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_EXTRACTION);
	} else if(h->api.extract_fields != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_BROKEN);
		err_append(err,
		           "must implement both 'plugin_get_fields' and 'plugin_extract_fields' (field "
		           "extraction)",
		           ", ");
	}

	if(h->api.parse_event != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_PARSING);
	}

	if(h->api.get_async_events != NULL && h->api.set_async_event_handler != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_ASYNC);
	} else if(h->api.set_async_event_handler != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_BROKEN);
		err_append(err,
		           "must implement both 'plugin_get_async_events' and "
		           "'plugin_set_async_event_handler' (async events)",
		           ", ");
	}

	if(h->api.capture_open != NULL && h->api.capture_close != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_CAPTURE_LISTENING);
	} else if(h->api.capture_open != NULL) {
		caps = (plugin_caps_t)((uint32_t)caps | (uint32_t)CAP_BROKEN);
		err_append(err,
		           "must implement both 'plugin_capture_open' and 'plugin_capture_close' (capture "
		           "listening)",
		           ", ");
	}

	return caps;
}

// little hack for simplifying the plugin_check_required_symbols function
#define SYM_REQCHECK(a, e, s)                                                            \
	do {                                                                                 \
		if(a->api.s == NULL) {                                                           \
			snprintf(e, PLUGIN_MAX_ERRLEN, "required symbol not implemented: '%s'", #s); \
			return false;                                                                \
		}                                                                                \
	} while(0)

bool plugin_check_required_symbols(const plugin_handle_t* h, char* err) {
	SYM_REQCHECK(h, err, get_required_api_version);
	SYM_REQCHECK(h, err, get_version);
	SYM_REQCHECK(h, err, get_name);
	SYM_REQCHECK(h, err, get_description);
	SYM_REQCHECK(h, err, get_contact);
	SYM_REQCHECK(h, err, init);
	SYM_REQCHECK(h, err, destroy);
	SYM_REQCHECK(h, err, get_last_error);
	return true;
}