2 * DECnet An implementation of the DECnet protocol suite for the LINUX
3 * operating system. DECnet is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * DECnet Routing Message Grabulator
8 * (C) 2000 ChyGwyn Limited - http://www.chygwyn.com/
9 * This code may be copied under the GPL v.2 or at your option
12 * Author: Steven Whitehouse <steve@chygwyn.com>
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/init.h>
18 #include <linux/netdevice.h>
19 #include <linux/netfilter.h>
20 #include <linux/spinlock.h>
21 #include <linux/netlink.h>
22 #include <linux/netfilter_decnet.h>
27 #include <net/dn_route.h>
29 static struct sock
*dnrmg
= NULL
;
32 static struct sk_buff
*dnrmg_build_message(struct sk_buff
*rt_skb
, int *errp
)
34 struct sk_buff
*skb
= NULL
;
36 sk_buff_data_t old_tail
;
39 struct nf_dn_rtmsg
*rtm
;
41 size
= NLMSG_SPACE(rt_skb
->len
);
42 size
+= NLMSG_ALIGN(sizeof(struct nf_dn_rtmsg
));
43 skb
= alloc_skb(size
, GFP_ATOMIC
);
47 nlh
= NLMSG_PUT(skb
, 0, 0, 0, size
- sizeof(*nlh
));
48 rtm
= (struct nf_dn_rtmsg
*)NLMSG_DATA(nlh
);
49 rtm
->nfdn_ifindex
= rt_skb
->dev
->ifindex
;
50 ptr
= NFDN_RTMSG(rtm
);
51 skb_copy_from_linear_data(rt_skb
, ptr
, rt_skb
->len
);
52 nlh
->nlmsg_len
= skb
->tail
- old_tail
;
60 printk(KERN_ERR
"dn_rtmsg: error creating netlink message\n");
64 static void dnrmg_send_peer(struct sk_buff
*skb
)
69 unsigned char flags
= *skb
->data
;
71 switch(flags
& DN_RT_CNTL_MSK
) {
73 group
= DNRNG_NLGRP_L1
;
76 group
= DNRNG_NLGRP_L2
;
82 skb2
= dnrmg_build_message(skb
, &status
);
85 NETLINK_CB(skb2
).dst_group
= group
;
86 netlink_broadcast(dnrmg
, skb2
, 0, group
, GFP_ATOMIC
);
90 static unsigned int dnrmg_hook(unsigned int hook
,
92 const struct net_device
*in
,
93 const struct net_device
*out
,
94 int (*okfn
)(struct sk_buff
*))
101 #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
103 static inline void dnrmg_receive_user_skb(struct sk_buff
*skb
)
105 struct nlmsghdr
*nlh
= nlmsg_hdr(skb
);
107 if (nlh
->nlmsg_len
< sizeof(*nlh
) || skb
->len
< nlh
->nlmsg_len
)
110 if (security_netlink_recv(skb
, CAP_NET_ADMIN
))
111 RCV_SKB_FAIL(-EPERM
);
113 /* Eventually we might send routing messages too */
115 RCV_SKB_FAIL(-EINVAL
);
118 static struct nf_hook_ops dnrmg_ops __read_mostly
= {
121 .hooknum
= NF_DN_ROUTE
,
122 .priority
= NF_DN_PRI_DNRTMSG
,
125 static int __init
dn_rtmsg_init(void)
129 dnrmg
= netlink_kernel_create(&init_net
,
130 NETLINK_DNRTMSG
, DNRNG_NLGRP_MAX
,
131 dnrmg_receive_user_skb
,
134 printk(KERN_ERR
"dn_rtmsg: Cannot create netlink socket");
138 rv
= nf_register_hook(&dnrmg_ops
);
140 netlink_kernel_release(dnrmg
);
146 static void __exit
dn_rtmsg_fini(void)
148 nf_unregister_hook(&dnrmg_ops
);
149 netlink_kernel_release(dnrmg
);
153 MODULE_DESCRIPTION("DECnet Routing Message Grabulator");
154 MODULE_AUTHOR("Steven Whitehouse <steve@chygwyn.com>");
155 MODULE_LICENSE("GPL");
156 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_DNRTMSG
);
158 module_init(dn_rtmsg_init
);
159 module_exit(dn_rtmsg_fini
);