]> git.ipfire.org Git - people/ms/network.git/blame - src/networkd/config.h
test: Run networkd as root in its own namespace
[people/ms/network.git] / src / networkd / config.h
CommitLineData
6b666d62
MT
1/*#############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2023 IPFire Network Development Team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19#############################################################################*/
20
21#ifndef NETWORKD_CONFIG_H
22#define NETWORKD_CONFIG_H
23
e4eebc6e
MT
24#include <stdio.h>
25
4237caa2
MT
26#define NETWORK_CONFIG_KEY_MAX_LENGTH 128
27#define NETWORK_CONFIG_VALUE_MAX_LENGTH 2048
28
2361667e 29typedef struct nw_config nw_config;
6b666d62 30
2361667e 31int nw_config_create(nw_config** config, const char* path);
6b666d62 32
2361667e
MT
33nw_config* nw_config_ref(nw_config* config);
34nw_config* nw_config_unref(nw_config* config);
6b666d62 35
c403eb4c 36int nw_config_destroy(nw_config* config);
082d81a3 37int nw_config_copy(nw_config* config, nw_config** copy);
c403eb4c 38
2361667e 39const char* nw_config_path(nw_config* config);
91915f80 40
2361667e 41int nw_config_flush(nw_config* config);
c81a6335 42
5a925d5f 43int nw_config_readf(nw_config* config, FILE* f);
2361667e
MT
44int nw_config_read(nw_config* config);
45int nw_config_write(nw_config* config);
d3dfdb77 46
2361667e 47int nw_config_del(nw_config* config, const char* key);
4237caa2 48
2361667e
MT
49const char* nw_config_get(nw_config* config, const char* key);
50int nw_config_set(nw_config* config, const char* key, const char* value);
4237caa2 51
2361667e
MT
52int nw_config_get_int(nw_config* config, const char* key, const int __default);
53int nw_config_set_int(nw_config* config, const char* key, const int value);
d39683a6 54
8b0b5c6d
MT
55int nw_config_get_bool(nw_config* config, const char* key);
56int nw_config_set_bool(nw_config* config, const char* key, const int value);
57
082d81a3
MT
58/*
59 Options
60*/
61
62int nw_config_options_read(nw_config* config);
63int nw_config_options_write(nw_config* config);
64
65typedef int (*nw_config_option_read_callback_t)
3eeb38b7 66 (nw_config* config, const char* key, void* value, void* data);
082d81a3 67typedef int (*nw_config_option_write_callback_t)
3eeb38b7 68 (nw_config* config, const char* key, const void* value, void* data);
082d81a3
MT
69
70int nw_config_option_add(nw_config* config, const char* key, void* value,
71 nw_config_option_read_callback_t read_callback,
3eeb38b7 72 nw_config_option_write_callback_t write_callback, void* data);
082d81a3 73
3eeb38b7
MT
74#define NW_CONFIG_OPTION(config, key, value, read_callback, write_callback, data) \
75 nw_config_option_add(config, key, value, read_callback, write_callback, data)
082d81a3 76
7442668a
MT
77// String
78
cc54472e 79#define NW_CONFIG_OPTION_STRING(config, key, value) \
3eeb38b7 80 nw_config_option_add(config, key, value, nw_config_read_string, nw_config_write_string, NULL)
082d81a3 81
3eeb38b7
MT
82int nw_config_read_string(nw_config* config, const char* key, void* value, void* data);
83int nw_config_write_string(nw_config* config, const char* key, const void* value, void* data);
082d81a3 84
7442668a
MT
85// String Table
86
87#define NW_CONFIG_OPTION_STRING_TABLE(config, key, value, table) \
88 nw_config_option_add(config, key, value, nw_config_read_string_table, nw_config_write_string_table, (void*)table)
89
90int nw_config_read_string_table(nw_config* config, const char* key, void* value, void* data);
91int nw_config_write_string_table(nw_config* config, const char* key, const void* value, void* data);
92
93// Integer
94
cc54472e 95#define NW_CONFIG_OPTION_INT(config, key, value) \
3eeb38b7 96 nw_config_option_add(config, key, value, nw_config_read_int, nw_config_write_int, NULL)
082d81a3 97
3eeb38b7
MT
98int nw_config_read_int(nw_config* config, const char* key, void* value, void* data);
99int nw_config_write_int(nw_config* config, const char* key, const void* value, void* data);
082d81a3 100
7442668a
MT
101// Address
102
cc54472e 103#define NW_CONFIG_OPTION_ADDRESS(config, key, value) \
3eeb38b7 104 nw_config_option_add(config, key, value, nw_config_read_address, nw_config_write_address, NULL)
082d81a3 105
3eeb38b7
MT
106int nw_config_read_address(nw_config* config, const char* key, void* value, void* data);
107int nw_config_write_address(nw_config* config, const char* key, const void* value, void* data);
082d81a3 108
6b666d62 109#endif /* NETWORKD_CONFIG_H */