1 /* 2 * Copyright (C) 2026 Daniel Golle <daniel@makrotopia.org> 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License version 2.1 6 * as published by the Free Software Foundation 7 * 8 * This program is distributed in the hope that it will be useful, 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * GNU General Public License for more details. 12 */ 13 14 #ifndef _JAIL_LANDLOCK_H 15 #define _JAIL_LANDLOCK_H 16 17 #include <stdbool.h> 18 #include <stddef.h> 19 #include <stdint.h> 20 21 struct landlock_rule { 22 char *path; 23 uint64_t access; 24 }; 25 26 struct landlock_config { 27 struct landlock_rule *rules; 28 size_t n; 29 }; 30 31 bool landlock_available(void); 32 int landlock_config_add(struct landlock_config *cfg, const char *path, uint64_t access); 33 int landlock_config_add_paths(struct landlock_config *cfg, const char *paths, uint64_t access); 34 int landlock_apply(const struct landlock_config *cfg); 35 void landlock_config_free(struct landlock_config *cfg); 36 37 #endif 38
This page was automatically generated by LXR 0.3.1. • OpenWrt