Thomas Gleixner | 1802d0b | 2019-05-27 08:55:21 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 2 | /* |
Varka Bhadram | 69bb631 | 2014-11-25 10:04:57 +0530 | [diff] [blame] | 3 | * Netlink interface for IEEE 802.15.4 stack |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright 2007, 2008 Siemens AG |
| 6 | * |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 7 | * Written by: |
| 8 | * Sergey Lapin <slapin@ossfans.org> |
| 9 | * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
Dmitry Baryshkov | 8e753dd | 2009-08-07 02:58:40 +0000 | [diff] [blame] | 10 | * Maxim Osipov <maxim.osipov@siemens.com> |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/gfp.h> |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 15 | #include <net/genetlink.h> |
| 16 | #include <linux/nl802154.h> |
Dmitry Eremin-Solenikov | 78fe738 | 2009-09-14 18:17:36 +0400 | [diff] [blame] | 17 | |
| 18 | #include "ieee802154.h" |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 19 | |
| 20 | static unsigned int ieee802154_seq_num; |
Dmitry Eremin-Solenikov | c4835d8 | 2009-09-10 18:02:30 +0400 | [diff] [blame] | 21 | static DEFINE_SPINLOCK(ieee802154_seq_lock); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 22 | |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 23 | /* Requests to userspace */ |
Dmitry Eremin-Solenikov | 78fe738 | 2009-09-14 18:17:36 +0400 | [diff] [blame] | 24 | struct sk_buff *ieee802154_nl_create(int flags, u8 req) |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 25 | { |
| 26 | void *hdr; |
Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 27 | struct sk_buff *msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); |
Dmitry Eremin-Solenikov | c4835d8 | 2009-09-10 18:02:30 +0400 | [diff] [blame] | 28 | unsigned long f; |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 29 | |
| 30 | if (!msg) |
| 31 | return NULL; |
| 32 | |
Dmitry Eremin-Solenikov | c4835d8 | 2009-09-10 18:02:30 +0400 | [diff] [blame] | 33 | spin_lock_irqsave(&ieee802154_seq_lock, f); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 34 | hdr = genlmsg_put(msg, 0, ieee802154_seq_num++, |
Varka Bhadram | 4710d80 | 2014-07-02 09:01:09 +0530 | [diff] [blame] | 35 | &nl802154_family, flags, req); |
Dmitry Eremin-Solenikov | c4835d8 | 2009-09-10 18:02:30 +0400 | [diff] [blame] | 36 | spin_unlock_irqrestore(&ieee802154_seq_lock, f); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 37 | if (!hdr) { |
| 38 | nlmsg_free(msg); |
| 39 | return NULL; |
| 40 | } |
| 41 | |
| 42 | return msg; |
| 43 | } |
| 44 | |
Dmitry Eremin-Solenikov | 78fe738 | 2009-09-14 18:17:36 +0400 | [diff] [blame] | 45 | int ieee802154_nl_mcast(struct sk_buff *msg, unsigned int group) |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 46 | { |
Hong zhi guo | 10c9cbb | 2013-03-29 05:09:35 +0000 | [diff] [blame] | 47 | struct nlmsghdr *nlh = nlmsg_hdr(msg); |
| 48 | void *hdr = genlmsg_data(nlmsg_data(nlh)); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 49 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 50 | genlmsg_end(msg, hdr); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 51 | |
Johannes Berg | 68eb550 | 2013-11-19 15:19:38 +0100 | [diff] [blame] | 52 | return genlmsg_multicast(&nl802154_family, msg, 0, group, GFP_ATOMIC); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Dmitry Eremin-Solenikov | 339b4ca | 2009-11-04 18:05:38 +0300 | [diff] [blame] | 55 | struct sk_buff *ieee802154_nl_new_reply(struct genl_info *info, |
Stefan Schmidt | cad865d | 2014-12-04 11:51:58 +0100 | [diff] [blame] | 56 | int flags, u8 req) |
Dmitry Eremin-Solenikov | 339b4ca | 2009-11-04 18:05:38 +0300 | [diff] [blame] | 57 | { |
| 58 | void *hdr; |
Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 59 | struct sk_buff *msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); |
Dmitry Eremin-Solenikov | 339b4ca | 2009-11-04 18:05:38 +0300 | [diff] [blame] | 60 | |
| 61 | if (!msg) |
| 62 | return NULL; |
| 63 | |
| 64 | hdr = genlmsg_put_reply(msg, info, |
Varka Bhadram | 4710d80 | 2014-07-02 09:01:09 +0530 | [diff] [blame] | 65 | &nl802154_family, flags, req); |
Dmitry Eremin-Solenikov | 339b4ca | 2009-11-04 18:05:38 +0300 | [diff] [blame] | 66 | if (!hdr) { |
| 67 | nlmsg_free(msg); |
| 68 | return NULL; |
| 69 | } |
| 70 | |
| 71 | return msg; |
| 72 | } |
| 73 | |
| 74 | int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info) |
| 75 | { |
Hong zhi guo | 10c9cbb | 2013-03-29 05:09:35 +0000 | [diff] [blame] | 76 | struct nlmsghdr *nlh = nlmsg_hdr(msg); |
| 77 | void *hdr = genlmsg_data(nlmsg_data(nlh)); |
Dmitry Eremin-Solenikov | 339b4ca | 2009-11-04 18:05:38 +0300 | [diff] [blame] | 78 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 79 | genlmsg_end(msg, hdr); |
Dmitry Eremin-Solenikov | 339b4ca | 2009-11-04 18:05:38 +0300 | [diff] [blame] | 80 | |
| 81 | return genlmsg_reply(msg, info); |
Dmitry Eremin-Solenikov | 339b4ca | 2009-11-04 18:05:38 +0300 | [diff] [blame] | 82 | } |
| 83 | |
Xue Liu | d01174f | 2017-10-10 17:17:45 +0200 | [diff] [blame] | 84 | static const struct genl_ops ieee802154_ops[] = { |
Johannes Berg | 1c582d9 | 2013-11-14 17:14:41 +0100 | [diff] [blame] | 85 | /* see nl-phy.c */ |
| 86 | IEEE802154_DUMP(IEEE802154_LIST_PHY, ieee802154_list_phy, |
| 87 | ieee802154_dump_phy), |
| 88 | IEEE802154_OP(IEEE802154_ADD_IFACE, ieee802154_add_iface), |
| 89 | IEEE802154_OP(IEEE802154_DEL_IFACE, ieee802154_del_iface), |
| 90 | /* see nl-mac.c */ |
| 91 | IEEE802154_OP(IEEE802154_ASSOCIATE_REQ, ieee802154_associate_req), |
| 92 | IEEE802154_OP(IEEE802154_ASSOCIATE_RESP, ieee802154_associate_resp), |
| 93 | IEEE802154_OP(IEEE802154_DISASSOCIATE_REQ, ieee802154_disassociate_req), |
| 94 | IEEE802154_OP(IEEE802154_SCAN_REQ, ieee802154_scan_req), |
| 95 | IEEE802154_OP(IEEE802154_START_REQ, ieee802154_start_req), |
| 96 | IEEE802154_DUMP(IEEE802154_LIST_IFACE, ieee802154_list_iface, |
| 97 | ieee802154_dump_iface), |
Phoebe Buckheister | e462ded | 2014-03-31 21:37:46 +0200 | [diff] [blame] | 98 | IEEE802154_OP(IEEE802154_SET_MACPARAMS, ieee802154_set_macparams), |
Phoebe Buckheister | 3e9c156 | 2014-05-16 17:46:44 +0200 | [diff] [blame] | 99 | IEEE802154_OP(IEEE802154_LLSEC_GETPARAMS, ieee802154_llsec_getparams), |
| 100 | IEEE802154_OP(IEEE802154_LLSEC_SETPARAMS, ieee802154_llsec_setparams), |
| 101 | IEEE802154_DUMP(IEEE802154_LLSEC_LIST_KEY, NULL, |
| 102 | ieee802154_llsec_dump_keys), |
| 103 | IEEE802154_OP(IEEE802154_LLSEC_ADD_KEY, ieee802154_llsec_add_key), |
| 104 | IEEE802154_OP(IEEE802154_LLSEC_DEL_KEY, ieee802154_llsec_del_key), |
| 105 | IEEE802154_DUMP(IEEE802154_LLSEC_LIST_DEV, NULL, |
| 106 | ieee802154_llsec_dump_devs), |
| 107 | IEEE802154_OP(IEEE802154_LLSEC_ADD_DEV, ieee802154_llsec_add_dev), |
| 108 | IEEE802154_OP(IEEE802154_LLSEC_DEL_DEV, ieee802154_llsec_del_dev), |
| 109 | IEEE802154_DUMP(IEEE802154_LLSEC_LIST_DEVKEY, NULL, |
| 110 | ieee802154_llsec_dump_devkeys), |
| 111 | IEEE802154_OP(IEEE802154_LLSEC_ADD_DEVKEY, ieee802154_llsec_add_devkey), |
| 112 | IEEE802154_OP(IEEE802154_LLSEC_DEL_DEVKEY, ieee802154_llsec_del_devkey), |
| 113 | IEEE802154_DUMP(IEEE802154_LLSEC_LIST_SECLEVEL, NULL, |
| 114 | ieee802154_llsec_dump_seclevels), |
| 115 | IEEE802154_OP(IEEE802154_LLSEC_ADD_SECLEVEL, |
| 116 | ieee802154_llsec_add_seclevel), |
| 117 | IEEE802154_OP(IEEE802154_LLSEC_DEL_SECLEVEL, |
| 118 | ieee802154_llsec_del_seclevel), |
Johannes Berg | 1c582d9 | 2013-11-14 17:14:41 +0100 | [diff] [blame] | 119 | }; |
| 120 | |
Johannes Berg | 2a94fe4 | 2013-11-19 15:19:39 +0100 | [diff] [blame] | 121 | static const struct genl_multicast_group ieee802154_mcgrps[] = { |
| 122 | [IEEE802154_COORD_MCGRP] = { .name = IEEE802154_MCAST_COORD_NAME, }, |
| 123 | [IEEE802154_BEACON_MCGRP] = { .name = IEEE802154_MCAST_BEACON_NAME, }, |
| 124 | }; |
| 125 | |
Johannes Berg | 56989f6 | 2016-10-24 14:40:05 +0200 | [diff] [blame] | 126 | struct genl_family nl802154_family __ro_after_init = { |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 127 | .hdrsize = 0, |
| 128 | .name = IEEE802154_NL_NAME, |
| 129 | .version = 1, |
| 130 | .maxattr = IEEE802154_ATTR_MAX, |
Johannes Berg | 3b0f31f | 2019-03-21 22:51:02 +0100 | [diff] [blame] | 131 | .policy = ieee802154_policy, |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 132 | .module = THIS_MODULE, |
Xue Liu | d01174f | 2017-10-10 17:17:45 +0200 | [diff] [blame] | 133 | .ops = ieee802154_ops, |
| 134 | .n_ops = ARRAY_SIZE(ieee802154_ops), |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 135 | .mcgrps = ieee802154_mcgrps, |
| 136 | .n_mcgrps = ARRAY_SIZE(ieee802154_mcgrps), |
| 137 | }; |
| 138 | |
Dmitry Eremin-Solenikov | cb6b376 | 2009-09-10 17:50:12 +0400 | [diff] [blame] | 139 | int __init ieee802154_nl_init(void) |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 140 | { |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 141 | return genl_register_family(&nl802154_family); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 142 | } |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 143 | |
Alexander Aring | 79fe1a2 | 2014-11-09 08:36:53 +0100 | [diff] [blame] | 144 | void ieee802154_nl_exit(void) |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 145 | { |
Dmitry Eremin-Solenikov | 78fe738 | 2009-09-14 18:17:36 +0400 | [diff] [blame] | 146 | genl_unregister_family(&nl802154_family); |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 147 | } |