123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- // SPDX-License-Identifier: GPL-3.0-or-later
- #include "ebpf.h"
- #include "ebpf_mount.h"
- static ebpf_local_maps_t mount_maps[] = {{.name = "tbl_mount", .internal_input = NETDATA_MOUNT_END,
- .user_input = 0, .type = NETDATA_EBPF_MAP_STATIC,
- .map_fd = ND_EBPF_MAP_FD_NOT_INITIALIZED},
- {.name = NULL, .internal_input = 0, .user_input = 0,
- .type = NETDATA_EBPF_MAP_CONTROLLER,
- .map_fd = ND_EBPF_MAP_FD_NOT_INITIALIZED}};
- static char *mount_dimension_name[NETDATA_EBPF_MOUNT_SYSCALL] = { "mount", "umount" };
- static netdata_syscall_stat_t mount_aggregated_data[NETDATA_EBPF_MOUNT_SYSCALL];
- static netdata_publish_syscall_t mount_publish_aggregated[NETDATA_EBPF_MOUNT_SYSCALL];
- struct config mount_config = { .first_section = NULL, .last_section = NULL, .mutex = NETDATA_MUTEX_INITIALIZER,
- .index = {.avl_tree = { .root = NULL, .compar = appconfig_section_compare },
- .rwlock = AVL_LOCK_INITIALIZER } };
- static netdata_idx_t *mount_values = NULL;
- static netdata_idx_t mount_hash_values[NETDATA_MOUNT_END];
- struct netdata_static_thread mount_thread = {"MOUNT KERNEL",
- NULL, NULL, 1, NULL,
- NULL, NULL};
- netdata_ebpf_targets_t mount_targets[] = { {.name = "mount", .mode = EBPF_LOAD_TRAMPOLINE},
- {.name = "umount", .mode = EBPF_LOAD_TRAMPOLINE},
- {.name = NULL, .mode = EBPF_LOAD_TRAMPOLINE}};
- static enum ebpf_threads_status ebpf_mount_exited = NETDATA_THREAD_EBPF_RUNNING;
- #ifdef LIBBPF_MAJOR_VERSION
- #include "includes/mount.skel.h" // BTF code
- static struct mount_bpf *bpf_obj = NULL;
- /*****************************************************************
- *
- * BTF FUNCTIONS
- *
- *****************************************************************/
- /*
- * Disable probe
- *
- * Disable all probes to use exclusively another method.
- *
- * @param obj is the main structure for bpf objects.
- */
- static inline void ebpf_mount_disable_probe(struct mount_bpf *obj)
- {
- bpf_program__set_autoload(obj->progs.netdata_mount_probe, false);
- bpf_program__set_autoload(obj->progs.netdata_umount_probe, false);
- bpf_program__set_autoload(obj->progs.netdata_mount_retprobe, false);
- bpf_program__set_autoload(obj->progs.netdata_umount_retprobe, false);
- }
- /*
- * Disable tracepoint
- *
- * Disable all tracepoints to use exclusively another method.
- *
- * @param obj is the main structure for bpf objects.
- */
- static inline void ebpf_mount_disable_tracepoint(struct mount_bpf *obj)
- {
- bpf_program__set_autoload(obj->progs.netdata_mount_exit, false);
- bpf_program__set_autoload(obj->progs.netdata_umount_exit, false);
- }
- /*
- * Disable trampoline
- *
- * Disable all trampoline to use exclusively another method.
- *
- * @param obj is the main structure for bpf objects.
- */
- static inline void ebpf_mount_disable_trampoline(struct mount_bpf *obj)
- {
- bpf_program__set_autoload(obj->progs.netdata_mount_fentry, false);
- bpf_program__set_autoload(obj->progs.netdata_umount_fentry, false);
- bpf_program__set_autoload(obj->progs.netdata_mount_fexit, false);
- bpf_program__set_autoload(obj->progs.netdata_umount_fexit, false);
- }
- /**
- * Set trampoline target
- *
- * Set the targets we will monitor.
- *
- * @param obj is the main structure for bpf objects.
- */
- static inline void netdata_set_trampoline_target(struct mount_bpf *obj)
- {
- char syscall[NETDATA_EBPF_MAX_SYSCALL_LENGTH + 1];
- ebpf_select_host_prefix(syscall, NETDATA_EBPF_MAX_SYSCALL_LENGTH,
- mount_targets[NETDATA_MOUNT_SYSCALL].name, running_on_kernel);
- bpf_program__set_attach_target(obj->progs.netdata_mount_fentry, 0,
- syscall);
- bpf_program__set_attach_target(obj->progs.netdata_mount_fexit, 0,
- syscall);
- ebpf_select_host_prefix(syscall, NETDATA_EBPF_MAX_SYSCALL_LENGTH,
- mount_targets[NETDATA_UMOUNT_SYSCALL].name, running_on_kernel);
- bpf_program__set_attach_target(obj->progs.netdata_umount_fentry, 0,
- syscall);
- bpf_program__set_attach_target(obj->progs.netdata_umount_fexit, 0,
- syscall);
- }
- /**
- * Mount Attach Probe
- *
- * Attach probes to target
- *
- * @param obj is the main structure for bpf objects.
- *
- * @return It returns 0 on success and -1 otherwise.
- */
- static int ebpf_mount_attach_probe(struct mount_bpf *obj)
- {
- char syscall[NETDATA_EBPF_MAX_SYSCALL_LENGTH + 1];
- ebpf_select_host_prefix(syscall, NETDATA_EBPF_MAX_SYSCALL_LENGTH,
- mount_targets[NETDATA_MOUNT_SYSCALL].name, running_on_kernel);
- obj->links.netdata_mount_probe = bpf_program__attach_kprobe(obj->progs.netdata_mount_probe,
- false, syscall);
- int ret = (int)libbpf_get_error(obj->links.netdata_mount_probe);
- if (ret)
- return -1;
- obj->links.netdata_mount_retprobe = bpf_program__attach_kprobe(obj->progs.netdata_mount_retprobe,
- true, syscall);
- ret = (int)libbpf_get_error(obj->links.netdata_mount_retprobe);
- if (ret)
- return -1;
- ebpf_select_host_prefix(syscall, NETDATA_EBPF_MAX_SYSCALL_LENGTH,
- mount_targets[NETDATA_UMOUNT_SYSCALL].name, running_on_kernel);
- obj->links.netdata_umount_probe = bpf_program__attach_kprobe(obj->progs.netdata_umount_probe,
- false, syscall);
- ret = (int)libbpf_get_error(obj->links.netdata_umount_probe);
- if (ret)
- return -1;
- obj->links.netdata_umount_retprobe = bpf_program__attach_kprobe(obj->progs.netdata_umount_retprobe,
- true, syscall);
- ret = (int)libbpf_get_error(obj->links.netdata_umount_retprobe);
- if (ret)
- return -1;
- return 0;
- }
- /**
- * Set hash tables
- *
- * Set the values for maps according the value given by kernel.
- *
- * @param obj is the main structure for bpf objects.
- */
- static void ebpf_mount_set_hash_tables(struct mount_bpf *obj)
- {
- mount_maps[NETDATA_KEY_MOUNT_TABLE].map_fd = bpf_map__fd(obj->maps.tbl_mount);
- }
- /**
- * Load and attach
- *
- * Load and attach the eBPF code in kernel.
- *
- * @param obj is the main structure for bpf objects.
- * @param em structure with configuration
- *
- * @return it returns 0 on succes and -1 otherwise
- */
- static inline int ebpf_mount_load_and_attach(struct mount_bpf *obj, ebpf_module_t *em)
- {
- netdata_ebpf_targets_t *mt = em->targets;
- netdata_ebpf_program_loaded_t test = mt[NETDATA_MOUNT_SYSCALL].mode;
- // We are testing only one, because all will have the same behavior
- if (test == EBPF_LOAD_TRAMPOLINE ) {
- ebpf_mount_disable_probe(obj);
- ebpf_mount_disable_tracepoint(obj);
- netdata_set_trampoline_target(obj);
- } else if (test == EBPF_LOAD_PROBE ||
- test == EBPF_LOAD_RETPROBE ) {
- ebpf_mount_disable_tracepoint(obj);
- ebpf_mount_disable_trampoline(obj);
- } else {
- ebpf_mount_disable_probe(obj);
- ebpf_mount_disable_trampoline(obj);
- }
- int ret = mount_bpf__load(obj);
- if (!ret) {
- if (test != EBPF_LOAD_PROBE && test != EBPF_LOAD_RETPROBE )
- ret = mount_bpf__attach(obj);
- else
- ret = ebpf_mount_attach_probe(obj);
- if (!ret)
- ebpf_mount_set_hash_tables(obj);
- }
- return ret;
- }
- #endif
- /*****************************************************************
- *
- * FUNCTIONS TO CLOSE THE THREAD
- *
- *****************************************************************/
- /**
- * Mount Exit
- *
- * Cancel child thread.
- *
- * @param ptr thread data.
- */
- static void ebpf_mount_exit(void *ptr)
- {
- ebpf_module_t *em = (ebpf_module_t *)ptr;
- if (!em->enabled) {
- em->enabled = NETDATA_MAIN_THREAD_EXITED;
- return;
- }
- ebpf_mount_exited = NETDATA_THREAD_EBPF_STOPPING;
- }
- /**
- * Mount cleanup
- *
- * Clean up allocated memory.
- *
- * @param ptr thread data.
- */
- static void ebpf_mount_cleanup(void *ptr)
- {
- ebpf_module_t *em = (ebpf_module_t *)ptr;
- if (ebpf_mount_exited != NETDATA_THREAD_EBPF_STOPPED)
- return;
- freez(mount_thread.thread);
- freez(mount_values);
- #ifdef LIBBPF_MAJOR_VERSION
- if (bpf_obj)
- mount_bpf__destroy(bpf_obj);
- #endif
- mount_thread.enabled = NETDATA_MAIN_THREAD_EXITED;
- em->enabled = NETDATA_MAIN_THREAD_EXITED;
- }
- /*****************************************************************
- *
- * MAIN LOOP
- *
- *****************************************************************/
- /**
- * Read global table
- *
- * Read the table with number of calls for all functions
- */
- static void read_global_table()
- {
- uint32_t idx;
- netdata_idx_t *val = mount_hash_values;
- netdata_idx_t *stored = mount_values;
- int fd = mount_maps[NETDATA_KEY_MOUNT_TABLE].map_fd;
- for (idx = NETDATA_KEY_MOUNT_CALL; idx < NETDATA_MOUNT_END; idx++) {
- if (!bpf_map_lookup_elem(fd, &idx, stored)) {
- int i;
- int end = ebpf_nprocs;
- netdata_idx_t total = 0;
- for (i = 0; i < end; i++)
- total += stored[i];
- val[idx] = total;
- }
- }
- }
- /**
- * Mount read hash
- *
- * This is the thread callback.
- * This thread is necessary, because we cannot freeze the whole plugin to read the data.
- *
- * @param ptr It is a NULL value for this thread.
- *
- * @return It always returns NULL.
- */
- void *ebpf_mount_read_hash(void *ptr)
- {
- netdata_thread_cleanup_push(ebpf_mount_cleanup, ptr);
- heartbeat_t hb;
- heartbeat_init(&hb);
- ebpf_module_t *em = (ebpf_module_t *)ptr;
- usec_t step = NETDATA_LATENCY_MOUNT_SLEEP_MS * em->update_every;
- //This will be cancelled by its parent
- while (ebpf_mount_exited == NETDATA_THREAD_EBPF_RUNNING) {
- usec_t dt = heartbeat_next(&hb, step);
- (void)dt;
- if (ebpf_mount_exited == NETDATA_THREAD_EBPF_STOPPING)
- break;
- read_global_table();
- }
- ebpf_mount_exited = NETDATA_THREAD_EBPF_STOPPED;
- netdata_thread_cleanup_pop(1);
- return NULL;
- }
- /**
- * Send data to Netdata calling auxiliary functions.
- */
- static void ebpf_mount_send_data()
- {
- int i, j;
- int end = NETDATA_EBPF_MOUNT_SYSCALL;
- for (i = NETDATA_KEY_MOUNT_CALL, j = NETDATA_KEY_MOUNT_ERROR; i < end; i++, j++) {
- mount_publish_aggregated[i].ncall = mount_hash_values[i];
- mount_publish_aggregated[i].nerr = mount_hash_values[j];
- }
- write_count_chart(NETDATA_EBPF_MOUNT_CALLS, NETDATA_EBPF_MOUNT_GLOBAL_FAMILY,
- mount_publish_aggregated, NETDATA_EBPF_MOUNT_SYSCALL);
- write_err_chart(NETDATA_EBPF_MOUNT_ERRORS, NETDATA_EBPF_MOUNT_GLOBAL_FAMILY,
- mount_publish_aggregated, NETDATA_EBPF_MOUNT_SYSCALL);
- }
- /**
- * Main loop for this collector.
- */
- static void mount_collector(ebpf_module_t *em)
- {
- mount_thread.thread = mallocz(sizeof(netdata_thread_t));
- mount_thread.start_routine = ebpf_mount_read_hash;
- memset(mount_hash_values, 0, sizeof(mount_hash_values));
- mount_values = callocz((size_t)ebpf_nprocs, sizeof(netdata_idx_t));
- netdata_thread_create(mount_thread.thread, mount_thread.name, NETDATA_THREAD_OPTION_DEFAULT,
- ebpf_mount_read_hash, em);
- heartbeat_t hb;
- heartbeat_init(&hb);
- usec_t step = em->update_every * USEC_PER_SEC;
- while (!ebpf_exit_plugin) {
- (void)heartbeat_next(&hb, step);
- if (ebpf_exit_plugin)
- break;
- pthread_mutex_lock(&lock);
- ebpf_mount_send_data();
- pthread_mutex_unlock(&lock);
- }
- }
- /*****************************************************************
- *
- * INITIALIZE THREAD
- *
- *****************************************************************/
- /**
- * Create mount charts
- *
- * Call ebpf_create_chart to create the charts for the collector.
- *
- * @param update_every value to overwrite the update frequency set by the server.
- */
- static void ebpf_create_mount_charts(int update_every)
- {
- ebpf_create_chart(NETDATA_EBPF_MOUNT_GLOBAL_FAMILY, NETDATA_EBPF_MOUNT_CALLS,
- "Calls to mount and umount syscalls",
- EBPF_COMMON_DIMENSION_CALL, NETDATA_EBPF_MOUNT_FAMILY,
- NULL,
- NETDATA_EBPF_CHART_TYPE_LINE,
- NETDATA_CHART_PRIO_EBPF_MOUNT_CHARTS,
- ebpf_create_global_dimension,
- mount_publish_aggregated, NETDATA_EBPF_MOUNT_SYSCALL,
- update_every, NETDATA_EBPF_MODULE_NAME_MOUNT);
- ebpf_create_chart(NETDATA_EBPF_MOUNT_GLOBAL_FAMILY, NETDATA_EBPF_MOUNT_ERRORS,
- "Errors to mount and umount file systems",
- EBPF_COMMON_DIMENSION_CALL, NETDATA_EBPF_MOUNT_FAMILY,
- NULL,
- NETDATA_EBPF_CHART_TYPE_LINE,
- NETDATA_CHART_PRIO_EBPF_MOUNT_CHARTS + 1,
- ebpf_create_global_dimension,
- mount_publish_aggregated, NETDATA_EBPF_MOUNT_SYSCALL,
- update_every, NETDATA_EBPF_MODULE_NAME_MOUNT);
- fflush(stdout);
- }
- /*****************************************************************
- *
- * MAIN THREAD
- *
- *****************************************************************/
- /*
- * Load BPF
- *
- * Load BPF files.
- *
- * @param em the structure with configuration
- */
- static int ebpf_mount_load_bpf(ebpf_module_t *em)
- {
- int ret = 0;
- if (em->load == EBPF_LOAD_LEGACY) {
- em->probe_links = ebpf_load_program(ebpf_plugin_dir, em, running_on_kernel, isrh, &em->objects);
- if (!em->probe_links) {
- em->enabled = CONFIG_BOOLEAN_NO;
- ret = -1;
- }
- }
- #ifdef LIBBPF_MAJOR_VERSION
- else {
- bpf_obj = mount_bpf__open();
- if (!bpf_obj)
- ret = -1;
- else
- ret = ebpf_mount_load_and_attach(bpf_obj, em);
- }
- #endif
- if (ret)
- error("%s %s", EBPF_DEFAULT_ERROR_MSG, em->thread_name);
- return ret;
- }
- /**
- * Mount thread
- *
- * Thread used to make mount thread
- *
- * @param ptr a pointer to `struct ebpf_module`
- *
- * @return It always returns NULL
- */
- void *ebpf_mount_thread(void *ptr)
- {
- netdata_thread_cleanup_push(ebpf_mount_exit, ptr);
- ebpf_module_t *em = (ebpf_module_t *)ptr;
- em->maps = mount_maps;
- if (!em->enabled)
- goto endmount;
- #ifdef LIBBPF_MAJOR_VERSION
- ebpf_adjust_thread_load(em, default_btf);
- #endif
- if (ebpf_mount_load_bpf(em)) {
- em->enabled = CONFIG_BOOLEAN_NO;
- goto endmount;
- }
- int algorithms[NETDATA_EBPF_MOUNT_SYSCALL] = { NETDATA_EBPF_INCREMENTAL_IDX, NETDATA_EBPF_INCREMENTAL_IDX };
- ebpf_global_labels(mount_aggregated_data, mount_publish_aggregated, mount_dimension_name, mount_dimension_name,
- algorithms, NETDATA_EBPF_MOUNT_SYSCALL);
- pthread_mutex_lock(&lock);
- ebpf_create_mount_charts(em->update_every);
- ebpf_update_stats(&plugin_statistics, em);
- pthread_mutex_unlock(&lock);
- mount_collector(em);
- endmount:
- if (!em->enabled)
- ebpf_update_disabled_plugin_stats(em);
- netdata_thread_cleanup_pop(1);
- return NULL;
- }
|