]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/net/dn_fib.h
UBUNTU: [Config] CONFIG_MFD_TI_LMU=m
[mirror_ubuntu-artful-kernel.git] / include / net / dn_fib.h
CommitLineData
1da177e4
LT
1#ifndef _NET_DN_FIB_H
2#define _NET_DN_FIB_H
3
58d7d8f9 4#include <linux/netlink.h>
e0542dd5 5#include <linux/refcount.h>
58d7d8f9
TG
6
7extern const struct nla_policy rtm_dn_policy[];
1da177e4
LT
8
9struct dn_fib_res {
a8731cbf 10 struct fib_rule *r;
1da177e4
LT
11 struct dn_fib_info *fi;
12 unsigned char prefixlen;
13 unsigned char nh_sel;
14 unsigned char type;
15 unsigned char scope;
16};
17
18struct dn_fib_nh {
19 struct net_device *nh_dev;
95c96174 20 unsigned int nh_flags;
1da177e4
LT
21 unsigned char nh_scope;
22 int nh_weight;
23 int nh_power;
24 int nh_oif;
c4ea94ab 25 __le16 nh_gw;
1da177e4
LT
26};
27
28struct dn_fib_info {
29 struct dn_fib_info *fib_next;
30 struct dn_fib_info *fib_prev;
31 int fib_treeref;
e0542dd5 32 refcount_t fib_clntref;
1da177e4 33 int fib_dead;
95c96174 34 unsigned int fib_flags;
1da177e4 35 int fib_protocol;
c4ea94ab 36 __le16 fib_prefsrc;
1da177e4
LT
37 __u32 fib_priority;
38 __u32 fib_metrics[RTAX_MAX];
1da177e4
LT
39 int fib_nhs;
40 int fib_power;
41 struct dn_fib_nh fib_nh[0];
42#define dn_fib_dev fib_nh[0].nh_dev
43};
44
45
46#define DN_FIB_RES_RESET(res) ((res).nh_sel = 0)
47#define DN_FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel])
48
49#define DN_FIB_RES_PREFSRC(res) ((res).fi->fib_prefsrc ? : __dn_fib_res_prefsrc(&res))
50#define DN_FIB_RES_GW(res) (DN_FIB_RES_NH(res).nh_gw)
51#define DN_FIB_RES_DEV(res) (DN_FIB_RES_NH(res).nh_dev)
52#define DN_FIB_RES_OIF(res) (DN_FIB_RES_NH(res).nh_oif)
53
54typedef struct {
c4ea94ab 55 __le16 datum;
1da177e4
LT
56} dn_fib_key_t;
57
58typedef struct {
c4ea94ab 59 __le16 datum;
1da177e4
LT
60} dn_fib_hash_t;
61
62typedef struct {
c4ea94ab 63 __u16 datum;
1da177e4
LT
64} dn_fib_idx_t;
65
66struct dn_fib_node {
67 struct dn_fib_node *fn_next;
68 struct dn_fib_info *fn_info;
69#define DN_FIB_INFO(f) ((f)->fn_info)
70 dn_fib_key_t fn_key;
71 u8 fn_type;
72 u8 fn_scope;
73 u8 fn_state;
74};
75
76
77struct dn_fib_table {
abcab268 78 struct hlist_node hlist;
2dfe55b4 79 u32 n;
1da177e4
LT
80
81 int (*insert)(struct dn_fib_table *t, struct rtmsg *r,
58d7d8f9 82 struct nlattr *attrs[], struct nlmsghdr *n,
1da177e4
LT
83 struct netlink_skb_parms *req);
84 int (*delete)(struct dn_fib_table *t, struct rtmsg *r,
58d7d8f9 85 struct nlattr *attrs[], struct nlmsghdr *n,
1da177e4 86 struct netlink_skb_parms *req);
bef55aeb 87 int (*lookup)(struct dn_fib_table *t, const struct flowidn *fld,
1da177e4
LT
88 struct dn_fib_res *res);
89 int (*flush)(struct dn_fib_table *t);
90 int (*dump)(struct dn_fib_table *t, struct sk_buff *skb, struct netlink_callback *cb);
91
92 unsigned char data[0];
93};
94
95#ifdef CONFIG_DECNET_ROUTER
96/*
97 * dn_fib.c
98 */
59ddd965
JP
99void dn_fib_init(void);
100void dn_fib_cleanup(void);
101
102int dn_fib_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
103struct dn_fib_info *dn_fib_create_info(const struct rtmsg *r,
104 struct nlattr *attrs[],
105 const struct nlmsghdr *nlh, int *errp);
106int dn_fib_semantic_match(int type, struct dn_fib_info *fi,
107 const struct flowidn *fld, struct dn_fib_res *res);
108void dn_fib_release_info(struct dn_fib_info *fi);
109void dn_fib_flush(void);
110void dn_fib_select_multipath(const struct flowidn *fld, struct dn_fib_res *res);
1da177e4
LT
111
112/*
113 * dn_tables.c
114 */
59ddd965
JP
115struct dn_fib_table *dn_fib_get_table(u32 n, int creat);
116struct dn_fib_table *dn_fib_empty_table(void);
117void dn_fib_table_init(void);
118void dn_fib_table_cleanup(void);
1da177e4
LT
119
120/*
121 * dn_rules.c
122 */
59ddd965
JP
123void dn_fib_rules_init(void);
124void dn_fib_rules_cleanup(void);
125unsigned int dnet_addr_type(__le16 addr);
126int dn_fib_lookup(struct flowidn *fld, struct dn_fib_res *res);
1da177e4 127
59ddd965 128int dn_fib_dump(struct sk_buff *skb, struct netlink_callback *cb);
1da177e4 129
59ddd965 130void dn_fib_free_info(struct dn_fib_info *fi);
1da177e4
LT
131
132static inline void dn_fib_info_put(struct dn_fib_info *fi)
133{
e0542dd5 134 if (refcount_dec_and_test(&fi->fib_clntref))
1da177e4
LT
135 dn_fib_free_info(fi);
136}
137
138static inline void dn_fib_res_put(struct dn_fib_res *res)
139{
140 if (res->fi)
141 dn_fib_info_put(res->fi);
142 if (res->r)
a8731cbf 143 fib_rule_put(res->r);
1da177e4
LT
144}
145
1da177e4
LT
146#else /* Endnode */
147
148#define dn_fib_init() do { } while(0)
149#define dn_fib_cleanup() do { } while(0)
150
151#define dn_fib_lookup(fl, res) (-ESRCH)
152#define dn_fib_info_put(fi) do { } while(0)
153#define dn_fib_select_multipath(fl, res) do { } while(0)
154#define dn_fib_rules_policy(saddr,res,flags) (0)
155#define dn_fib_res_put(res) do { } while(0)
156
157#endif /* CONFIG_DECNET_ROUTER */
158
c4ea94ab 159static inline __le16 dnet_make_mask(int n)
1da177e4 160{
c4106aa8
HH
161 if (n)
162 return cpu_to_le16(~((1 << (16 - n)) - 1));
163 return cpu_to_le16(0);
1da177e4
LT
164}
165
166#endif /* _NET_DN_FIB_H */