xref: /openbmc/linux/net/ieee802154/ieee802154.h (revision 4710d806)
1 /*
2  * Copyright (C) 2007, 2008, 2009 Siemens AG
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16  *
17  */
18 #ifndef IEEE_802154_LOCAL_H
19 #define IEEE_802154_LOCAL_H
20 
21 int __init ieee802154_nl_init(void);
22 void __exit ieee802154_nl_exit(void);
23 
24 #define IEEE802154_OP(_cmd, _func)			\
25 	{						\
26 		.cmd	= _cmd,				\
27 		.policy	= ieee802154_policy,		\
28 		.doit	= _func,			\
29 		.dumpit	= NULL,				\
30 		.flags	= GENL_ADMIN_PERM,		\
31 	}
32 
33 #define IEEE802154_DUMP(_cmd, _func, _dump)		\
34 	{						\
35 		.cmd	= _cmd,				\
36 		.policy	= ieee802154_policy,		\
37 		.doit	= _func,			\
38 		.dumpit	= _dump,			\
39 	}
40 
41 struct genl_info;
42 
43 struct sk_buff *ieee802154_nl_create(int flags, u8 req);
44 int ieee802154_nl_mcast(struct sk_buff *msg, unsigned int group);
45 struct sk_buff *ieee802154_nl_new_reply(struct genl_info *info,
46 					int flags, u8 req);
47 int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info);
48 
49 extern struct genl_family nl802154_family;
50 
51 /* genetlink ops/groups */
52 int ieee802154_list_phy(struct sk_buff *skb, struct genl_info *info);
53 int ieee802154_dump_phy(struct sk_buff *skb, struct netlink_callback *cb);
54 int ieee802154_add_iface(struct sk_buff *skb, struct genl_info *info);
55 int ieee802154_del_iface(struct sk_buff *skb, struct genl_info *info);
56 
57 enum ieee802154_mcgrp_ids {
58 	IEEE802154_COORD_MCGRP,
59 	IEEE802154_BEACON_MCGRP,
60 };
61 
62 int ieee802154_associate_req(struct sk_buff *skb, struct genl_info *info);
63 int ieee802154_associate_resp(struct sk_buff *skb, struct genl_info *info);
64 int ieee802154_disassociate_req(struct sk_buff *skb, struct genl_info *info);
65 int ieee802154_scan_req(struct sk_buff *skb, struct genl_info *info);
66 int ieee802154_start_req(struct sk_buff *skb, struct genl_info *info);
67 int ieee802154_list_iface(struct sk_buff *skb, struct genl_info *info);
68 int ieee802154_dump_iface(struct sk_buff *skb, struct netlink_callback *cb);
69 int ieee802154_set_macparams(struct sk_buff *skb, struct genl_info *info);
70 
71 int ieee802154_llsec_getparams(struct sk_buff *skb, struct genl_info *info);
72 int ieee802154_llsec_setparams(struct sk_buff *skb, struct genl_info *info);
73 int ieee802154_llsec_add_key(struct sk_buff *skb, struct genl_info *info);
74 int ieee802154_llsec_del_key(struct sk_buff *skb, struct genl_info *info);
75 int ieee802154_llsec_dump_keys(struct sk_buff *skb,
76 			       struct netlink_callback *cb);
77 int ieee802154_llsec_add_dev(struct sk_buff *skb, struct genl_info *info);
78 int ieee802154_llsec_del_dev(struct sk_buff *skb, struct genl_info *info);
79 int ieee802154_llsec_dump_devs(struct sk_buff *skb,
80 			       struct netlink_callback *cb);
81 int ieee802154_llsec_add_devkey(struct sk_buff *skb, struct genl_info *info);
82 int ieee802154_llsec_del_devkey(struct sk_buff *skb, struct genl_info *info);
83 int ieee802154_llsec_dump_devkeys(struct sk_buff *skb,
84 				  struct netlink_callback *cb);
85 int ieee802154_llsec_add_seclevel(struct sk_buff *skb, struct genl_info *info);
86 int ieee802154_llsec_del_seclevel(struct sk_buff *skb, struct genl_info *info);
87 int ieee802154_llsec_dump_seclevels(struct sk_buff *skb,
88 				    struct netlink_callback *cb);
89 
90 #endif
91