networkd-link.h revision 0b1831c20c4d30077b6560b2b7d88bdb220d5cef
4884N/A/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4884N/A
4884N/A/***
4884N/A This file is part of systemd.
4884N/A
4884N/A Copyright 2013 Tom Gundersen <teg@jklm.no>
4884N/A
4884N/A systemd is free software; you can redistribute it and/or modify it
4884N/A under the terms of the GNU Lesser General Public License as published by
4884N/A the Free Software Foundation; either version 2.1 of the License, or
4884N/A (at your option) any later version.
4884N/A
4884N/A systemd is distributed in the hope that it will be useful, but
4884N/A WITHOUT ANY WARRANTY; without even the implied warranty of
4884N/A MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4884N/A Lesser General Public License for more details.
4884N/A
4884N/A You should have received a copy of the GNU Lesser General Public License
4884N/A along with systemd; If not, see <http://www.gnu.org/licenses/>.
4884N/A***/
4884N/A
5751N/A#pragma once
4884N/A
4884N/A#include "networkd.h"
4884N/A
4884N/Atypedef enum LinkState {
4884N/A LINK_STATE_INITIALIZING,
5751N/A LINK_STATE_ENSLAVING,
4884N/A LINK_STATE_SETTING_ADDRESSES,
4884N/A LINK_STATE_SETTING_ROUTES,
4884N/A LINK_STATE_CONFIGURED,
5751N/A LINK_STATE_UNMANAGED,
4884N/A LINK_STATE_FAILED,
4884N/A LINK_STATE_LINGER,
4884N/A _LINK_STATE_MAX,
4884N/A _LINK_STATE_INVALID = -1
5751N/A} LinkState;
4884N/A
4884N/Atypedef enum LinkOperationalState {
4884N/A LINK_OPERSTATE_UNKNOWN,
4884N/A LINK_OPERSTATE_DORMANT,
4884N/A LINK_OPERSTATE_CARRIER,
4884N/A LINK_OPERSTATE_DEGRADED,
4884N/A LINK_OPERSTATE_ROUTABLE,
4884N/A _LINK_OPERSTATE_MAX,
4884N/A _LINK_OPERSTATE_INVALID = -1
4884N/A} LinkOperationalState;
4884N/A
4884N/Astruct Link {
4884N/A Manager *manager;
4884N/A
4884N/A int n_ref;
4884N/A
4884N/A int ifindex;
4884N/A char *ifname;
4884N/A char *state_file;
4884N/A struct ether_addr mac;
uint32_t mtu;
struct udev_device *udev_device;
unsigned flags;
uint8_t kernel_operstate;
Network *network;
LinkState state;
LinkOperationalState operstate;
unsigned addr_messages;
unsigned route_messages;
unsigned enslaving;
LIST_HEAD(Address, addresses);
sd_dhcp_client *dhcp_client;
sd_dhcp_lease *dhcp_lease;
char *lease_file;
uint16_t original_mtu;
sd_ipv4ll *ipv4ll;
LIST_HEAD(Address, pool_addresses);
sd_dhcp_server *dhcp_server;
sd_icmp6_nd *icmp6_router_discovery;
sd_dhcp6_client *dhcp6_client;
};
Link *link_unref(Link *link);
Link *link_ref(Link *link);
int link_get(Manager *m, int ifindex, Link **ret);
int link_add(Manager *manager, sd_rtnl_message *message, Link **ret);
void link_drop(Link *link);
int link_update(Link *link, sd_rtnl_message *message);
int link_rtnl_process_address(sd_rtnl *rtnl, sd_rtnl_message *message, void *userdata);
int link_initialized(Link *link, struct udev_device *device);
int link_save(Link *link);
bool link_has_carrier(unsigned flags, uint8_t operstate);
const char* link_state_to_string(LinkState s) _const_;
LinkState link_state_from_string(const char *s) _pure_;
const char* link_operstate_to_string(LinkOperationalState s) _const_;
LinkOperationalState link_operstate_from_string(const char *s) _pure_;
DEFINE_TRIVIAL_CLEANUP_FUNC(Link*, link_unref);
#define _cleanup_link_unref_ _cleanup_(link_unrefp)
/* 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, IFNAMSIZ, link->ifname, ##__VA_ARGS__)
#define log_debug_link(link, ...) log_full_link(LOG_DEBUG, link, ##__VA_ARGS__)
#define log_info_link(link, ...) log_full_link(LOG_INFO, link, ##__VA_ARGS__)
#define log_notice_link(link, ...) log_full_link(LOG_NOTICE, link, ##__VA_ARGS__)
#define log_warning_link(link, ...) log_full_link(LOG_WARNING, link, ##__VA_ARGS__)
#define log_error_link(link, ...) log_full_link(LOG_ERR, link, ##__VA_ARGS__)
#define log_struct_link(level, link, ...) log_struct(level, "INTERFACE=%s", link->ifname, __VA_ARGS__)
#define ADDRESS_FMT_VAL(address) \
(address).s_addr & 0xFF, \
((address).s_addr >> 8) & 0xFF, \
((address).s_addr >> 16) & 0xFF, \
(address).s_addr >> 24