networkd.h revision 4f882b2a5007e51032459e29d15a86df6b5ea9f4
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Tom Gundersen <teg@jklm.no>
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#pragma once
#include <linux/rtnetlink.h>
#include "sd-event.h"
#include "sd-rtnl.h"
#include "sd-dhcp-client.h"
#include "udev.h"
#include "rtnl-util.h"
#include "hashmap.h"
#include "list.h"
typedef struct bridge_join_callback bridge_join_callback;
struct bridge_join_callback {
};
typedef enum BridgeState {
_BRIDGE_STATE_INVALID = -1,
} BridgeState;
struct Bridge {
char *filename;
char *description;
char *name;
};
struct Network {
char *filename;
struct ether_addr *match_mac;
char *match_path;
char *match_driver;
char *match_type;
char *match_name;
char *description;
bool dhcp;
bool dhcp_dns;
bool dhcp_mtu;
};
struct Address {
unsigned char family;
unsigned char prefixlen;
char *label;
union {
} in_addr;
};
struct Route {
unsigned char family;
unsigned char dst_family;
unsigned char dst_prefixlen;
union {
} in_addr;
union {
} dst_addr;
};
typedef enum LinkState {
_LINK_STATE_INVALID = -1
} LinkState;
struct Link {
char *ifname;
struct ether_addr mac;
unsigned flags;
unsigned addr_messages;
unsigned route_messages;
};
struct Manager {
struct udev_monitor *udev_monitor;
};
extern const char* const network_dirs[];
/* Manager */
void manager_free(Manager *m);
int manager_load_config(Manager *m);
bool manager_should_reload(Manager *m);
int manager_udev_enumerate_links(Manager *m);
int manager_udev_listen(Manager *m);
int manager_rtnl_listen(Manager *m);
int manager_update_resolv_conf(Manager *m);
/* Bridge */
/* Network */
/* gperf */
/* Route */
/* Address */
/* Link */
/* Macros which append INTERFACE= to the message */
#define log_full_link(level, link, fmt, ...) log_meta_object(level, __FILE__, __LINE__, __func__, "INTERFACE=", link->ifname, "%s: " fmt, link->ifname, ##__VA_ARGS__)
#define log_struct_link(level, link, ...) log_struct(level, "INTERFACE=%s", link->ifname, __VA_ARGS__)
/* More macros which append INTERFACE= to the message */
#define log_full_bridge(level, bridge, fmt, ...) log_meta_object(level, __FILE__, __LINE__, __func__, "INTERFACE=", bridge->name, "%s: " fmt, bridge->name, ##__VA_ARGS__)
#define log_struct_bridge(level, bridge, ...) log_struct(level, "INTERFACE=%s", bridge->name, __VA_ARGS__)
#define ADDRESS_FMT_VAL(address) \