#ifndef _NETLINK_ROUTE_ROUTE_VAR_H_
#define _NETLINK_ROUTE_ROUTE_VAR_H_
#include <sys/priv.h>
struct nlmsghdr;
struct nlpcb;
struct nl_pstate;
typedef int rtnl_msg_cb_f(struct nlmsghdr *hdr, struct nlpcb *nlp,
struct nl_pstate *npt);
struct rtnl_cmd_handler {
int cmd;
const char *name;
rtnl_msg_cb_f *cb;
int priv;
int flags;
};
#define RTNL_F_NOEPOCH 0x01
#define RTNL_F_ALLOW_NONVNET_JAIL 0x02
bool rtnl_register_messages(const struct rtnl_cmd_handler *handlers, int count);
struct rib_cmd_info;
void rtnl_handle_route_event(uint32_t fibnum, const struct rib_cmd_info *rc);
void rtnl_routes_init(void);
void rtnl_neighs_init(void);
void rtnl_neighs_destroy(void);
struct nl_parsed_link {
char *ifla_group;
char *ifla_ifname;
char *ifla_cloner;
char *ifla_ifalias;
struct nlattr *ifla_idata;
struct nlattr *ifla_address;
unsigned short ifi_type;
int ifi_index;
uint32_t ifla_link;
uint32_t ifla_mtu;
uint32_t ifi_flags;
uint32_t ifi_change;
};
#if defined(NETLINK) || defined(NETLINK_MODULE)
int _nl_modify_ifp_generic(struct ifnet *ifp, struct nl_parsed_link *lattrs,
const struct nlattr_bmask *bm, struct nl_pstate *npt);
void _nl_store_ifp_cookie(struct nl_pstate *npt, struct ifnet *ifp);
static inline int
nl_modify_ifp_generic(struct ifnet *ifp, struct nl_parsed_link *lattrs,
const struct nlattr_bmask *bm, struct nl_pstate *npt)
{
return (_nl_modify_ifp_generic(ifp, lattrs, bm, npt));
}
static inline void
nl_store_ifp_cookie(struct nl_pstate *npt, struct ifnet *ifp)
{
_nl_store_ifp_cookie(npt, ifp);
}
#else
int nl_modify_ifp_generic(struct ifnet *ifp, struct nl_parsed_link *lattrs,
const struct nlattr_bmask *bm, struct nl_pstate *npt);
void nl_store_ifp_cookie(struct nl_pstate *npt, struct ifnet *ifp);
#endif
typedef int rtnl_iface_create_f(struct nl_parsed_link *lattrs,
const struct nlattr_bmask *bm, struct nlpcb *nlp, struct nl_pstate *npt);
typedef int rtnl_iface_modify_f(struct ifnet *ifp, struct nl_parsed_link *lattrs,
const struct nlattr_bmask *bm, struct nlpcb *nlp, struct nl_pstate *npt);
typedef int rtnl_iface_dump_f(struct ifnet *ifp, struct nl_writer *nw);
struct nl_cloner {
const char *name;
rtnl_iface_create_f *create_f;
rtnl_iface_modify_f *modify_f;
rtnl_iface_dump_f *dump_f;
SLIST_ENTRY(nl_cloner) next;
};
extern struct nl_cloner generic_cloner;
void rtnl_ifaces_init(void);
void rtnl_ifaces_destroy(void);
void rtnl_iface_add_cloner(struct nl_cloner *cloner);
void rtnl_iface_del_cloner(struct nl_cloner *cloner);
void rtnl_handle_ifnet_event(struct ifnet *ifp, int if_change_mask);
void rtnl_iface_drivers_register(void);
void rtnl_nexthops_init(void);
struct nhop_object *nl_find_nhop(uint32_t fibnum, int family,
uint32_t uidx, int nh_flags, int *perror);
int nl_set_nexthop_gw(struct nhop_object *nh, struct sockaddr *gw,
struct ifnet *ifp, struct nl_pstate *npt);
int nl_set_nexthop_prefsrc(struct nhop_object *nh, struct sockaddr *src);
#endif