]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/confile_utils.h
READEM: update Serge's mail address
[mirror_lxc.git] / src / lxc / confile_utils.h
CommitLineData
0b843d35
CB
1/* liblxcapi
2 *
3 * Copyright © 2017 Christian Brauner <christian.brauner@ubuntu.com>.
4 * Copyright © 2017 Canonical Ltd.
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 version 2, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#ifndef __LXC_CONFILE_UTILS_H
21#define __LXC_CONFILE_UTILS_H
22
663e9916
CB
23#include <stdbool.h>
24
ce2f5ae8 25#include "conf.h"
f9373e40 26#include "confile_utils.h"
ce2f5ae8 27
9b0df30f
CB
28#ifndef MACVLAN_MODE_PRIVATE
29#define MACVLAN_MODE_PRIVATE 1
30#endif
31
32#ifndef MACVLAN_MODE_VEPA
33#define MACVLAN_MODE_VEPA 2
34#endif
35
36#ifndef MACVLAN_MODE_BRIDGE
37#define MACVLAN_MODE_BRIDGE 4
38#endif
39
40#ifndef MACVLAN_MODE_PASSTHRU
41#define MACVLAN_MODE_PASSTHRU 8
42#endif
43
9496659c
CB
44#define strprint(str, inlen, ...) \
45 do { \
46 if (str) \
47 len = snprintf(str, inlen, ##__VA_ARGS__); \
48 else \
49 len = snprintf((char *){""}, 0, ##__VA_ARGS__); \
50 if (len < 0) { \
51 SYSERROR("failed to create string"); \
52 return -1; \
53 }; \
54 fulllen += len; \
55 if (inlen > 0) { \
56 if (str) \
57 str += len; \
58 inlen -= len; \
59 if (inlen < 0) \
60 inlen = 0; \
61 } \
f9373e40
CB
62 } while (0);
63
0b843d35
CB
64extern int parse_idmaps(const char *idmap, char *type, unsigned long *nsid,
65 unsigned long *hostid, unsigned long *range);
66
663e9916 67extern bool lxc_config_value_empty(const char *value);
c302b476
CB
68extern struct lxc_netdev *lxc_network_add(struct lxc_list *networks, int idx,
69 bool tail);
0070b1c4
CB
70extern struct lxc_netdev *
71lxc_get_netdev_by_idx(struct lxc_conf *conf, unsigned int idx, bool allocate);
1ed6ba91 72extern void lxc_log_configured_netdevs(const struct lxc_conf *conf);
519df1c1 73extern bool lxc_remove_nic_by_idx(struct lxc_conf *conf, unsigned int idx);
c302b476 74extern void lxc_free_networks(struct lxc_list *networks);
9b0df30f
CB
75extern int lxc_macvlan_mode_to_flag(int *mode, const char *value);
76extern char *lxc_macvlan_flag_to_mode(int mode);
663e9916 77
f9373e40
CB
78extern int set_config_string_item(char **conf_item, const char *value);
79extern int set_config_string_item_max(char **conf_item, const char *value,
80 size_t max);
81extern int set_config_path_item(char **conf_item, const char *value);
82extern int config_ip_prefix(struct in_addr *addr);
18cd4b54 83extern int network_ifname(char *valuep, const char *value, size_t size);
29c98ddd 84extern void rand_complete_hwaddr(char *hwaddr);
ce4be612 85extern bool lxc_config_net_hwaddr(const char *line);
f9373e40
CB
86extern void update_hwaddr(const char *line);
87extern bool new_hwaddr(char *hwaddr);
953fe44f
CB
88extern int lxc_get_conf_str(char *retv, int inlen, const char *value);
89extern int lxc_get_conf_int(struct lxc_conf *c, char *retv, int inlen, int v);
885766f5 90extern int lxc_get_conf_size_t(struct lxc_conf *c, char *retv, int inlen, size_t v);
2ea479c9 91extern int lxc_get_conf_uint64(struct lxc_conf *c, char *retv, int inlen, uint64_t v);
71460831 92extern bool parse_limit_value(const char **value, rlim_t *res);
28d9e29e
CB
93extern int lxc_inherit_namespace(const char *lxcname_or_pid,
94 const char *lxcpath, const char *namespace);
f6e32eb0 95extern int sig_parse(const char *signame);
2ea479c9 96
0b843d35 97#endif /* __LXC_CONFILE_UTILS_H */