2 * Netlink inteface for IEEE 802.15.4 stack
4 * Copyright 2007, 2008 Siemens AG
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 * Sergey Lapin <slapin@ossfans.org>
21 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
22 * Maxim Osipov <maxim.osipov@siemens.com>
25 #include <linux/kernel.h>
26 #include <linux/gfp.h>
27 #include <net/genetlink.h>
28 #include <linux/nl802154.h>
30 #include "ieee802154.h"
32 static unsigned int ieee802154_seq_num
;
33 static DEFINE_SPINLOCK(ieee802154_seq_lock
);
35 struct genl_family nl802154_family
= {
36 .id
= GENL_ID_GENERATE
,
38 .name
= IEEE802154_NL_NAME
,
40 .maxattr
= IEEE802154_ATTR_MAX
,
43 /* Requests to userspace */
44 struct sk_buff
*ieee802154_nl_create(int flags
, u8 req
)
47 struct sk_buff
*msg
= nlmsg_new(NLMSG_GOODSIZE
, GFP_ATOMIC
);
53 spin_lock_irqsave(&ieee802154_seq_lock
, f
);
54 hdr
= genlmsg_put(msg
, 0, ieee802154_seq_num
++,
55 &nl802154_family
, flags
, req
);
56 spin_unlock_irqrestore(&ieee802154_seq_lock
, f
);
65 int ieee802154_nl_mcast(struct sk_buff
*msg
, unsigned int group
)
67 /* XXX: nlh is right at the start of msg */
68 void *hdr
= genlmsg_data(NLMSG_DATA(msg
->data
));
70 if (genlmsg_end(msg
, hdr
) < 0)
73 return genlmsg_multicast(msg
, 0, group
, GFP_ATOMIC
);
79 struct sk_buff
*ieee802154_nl_new_reply(struct genl_info
*info
,
83 struct sk_buff
*msg
= nlmsg_new(NLMSG_GOODSIZE
, GFP_ATOMIC
);
88 hdr
= genlmsg_put_reply(msg
, info
,
89 &nl802154_family
, flags
, req
);
98 int ieee802154_nl_reply(struct sk_buff
*msg
, struct genl_info
*info
)
100 /* XXX: nlh is right at the start of msg */
101 void *hdr
= genlmsg_data(NLMSG_DATA(msg
->data
));
103 if (genlmsg_end(msg
, hdr
) < 0)
106 return genlmsg_reply(msg
, info
);
112 int __init
ieee802154_nl_init(void)
116 rc
= genl_register_family(&nl802154_family
);
120 rc
= nl802154_mac_register();
124 rc
= nl802154_phy_register();
131 genl_unregister_family(&nl802154_family
);
135 void __exit
ieee802154_nl_exit(void)
137 genl_unregister_family(&nl802154_family
);