alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007-2012 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 | * |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 13 | * Written by: |
| 14 | * Pavel Smolenskiy <pavel.smolenskiy@gmail.com> |
| 15 | * Maxim Gorbachyov <maxim.gorbachev@siemens.com> |
| 16 | * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
| 17 | * Alexander Smirnov <alex.bluesman.smirnov@gmail.com> |
| 18 | */ |
Alexander Aring | 0f1556b | 2014-10-25 09:41:00 +0200 | [diff] [blame] | 19 | #ifndef __IEEE802154_I_H |
| 20 | #define __IEEE802154_I_H |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 21 | |
Phoebe Buckheister | f30be4d | 2014-05-16 17:46:40 +0200 | [diff] [blame] | 22 | #include <linux/mutex.h> |
Phoebe Buckheister | 5d637d5 | 2014-05-16 17:46:37 +0200 | [diff] [blame] | 23 | #include <net/mac802154.h> |
Phoebe Buckheister | e462ded | 2014-03-31 21:37:46 +0200 | [diff] [blame] | 24 | #include <net/ieee802154_netdev.h> |
| 25 | |
Phoebe Buckheister | f30be4d | 2014-05-16 17:46:40 +0200 | [diff] [blame] | 26 | #include "llsec.h" |
| 27 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 28 | /* mac802154 device private data */ |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 29 | struct ieee802154_local { |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 30 | struct ieee802154_hw hw; |
Alexander Aring | 1630186 | 2014-10-28 18:21:18 +0100 | [diff] [blame] | 31 | const struct ieee802154_ops *ops; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 32 | |
| 33 | /* ieee802154 phy */ |
| 34 | struct wpan_phy *phy; |
| 35 | |
| 36 | int open_count; |
| 37 | |
| 38 | /* As in mac80211 slaves list is modified: |
| 39 | * 1) under the RTNL |
| 40 | * 2) protected by slaves_mtx; |
| 41 | * 3) in an RCU manner |
| 42 | * |
| 43 | * So atomic readers can use any of this protection methods. |
| 44 | */ |
Alexander Aring | d98be45 | 2014-10-25 17:16:38 +0200 | [diff] [blame] | 45 | struct list_head interfaces; |
| 46 | struct mutex iflist_mtx; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 47 | |
| 48 | /* This one is used for scanning and other jobs not to be interfered |
| 49 | * with serial driver. |
| 50 | */ |
Alexander Aring | f773054 | 2014-10-25 17:16:41 +0200 | [diff] [blame] | 51 | struct workqueue_struct *workqueue; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 52 | |
| 53 | /* SoftMAC device is registered and running. One can add subinterfaces. |
| 54 | * This flag should be modified under slaves_mtx and RTNL, so you can |
| 55 | * read them using any of protection methods. |
| 56 | */ |
| 57 | bool running; |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 58 | |
| 59 | struct tasklet_struct tasklet; |
| 60 | struct sk_buff_head skb_queue; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | #define MAC802154_DEVICE_STOPPED 0x00 |
| 64 | #define MAC802154_DEVICE_RUN 0x01 |
| 65 | |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 66 | enum { |
| 67 | IEEE802154_RX_MSG = 1, |
| 68 | }; |
| 69 | |
Alexander Aring | 0ea3da6 | 2014-10-28 18:21:24 +0100 | [diff] [blame^] | 70 | enum ieee802154_sdata_state_bits { |
| 71 | SDATA_STATE_RUNNING, |
| 72 | }; |
| 73 | |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 74 | /* Slave interface definition. |
| 75 | * |
| 76 | * Slaves represent typical network interfaces available from userspace. |
| 77 | * Each ieee802154 device/transceiver may have several slaves and able |
| 78 | * to be associated with several networks at the same time. |
| 79 | */ |
Alexander Aring | 036562f | 2014-10-25 17:16:36 +0200 | [diff] [blame] | 80 | struct ieee802154_sub_if_data { |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 81 | struct list_head list; /* the ieee802154_priv->slaves list */ |
| 82 | |
Alexander Aring | 04e850f | 2014-10-25 17:16:37 +0200 | [diff] [blame] | 83 | struct ieee802154_local *local; |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 84 | struct net_device *dev; |
| 85 | |
| 86 | int type; |
Alexander Aring | 0ea3da6 | 2014-10-28 18:21:24 +0100 | [diff] [blame^] | 87 | unsigned long state; |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 88 | |
| 89 | spinlock_t mib_lock; |
| 90 | |
| 91 | __le16 pan_id; |
| 92 | __le16 short_addr; |
Phoebe Buckheister | b70ab2e | 2014-03-14 21:23:59 +0100 | [diff] [blame] | 93 | __le64 extended_addr; |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 94 | |
| 95 | u8 chan; |
| 96 | u8 page; |
| 97 | |
Phoebe Buckheister | e462ded | 2014-03-31 21:37:46 +0200 | [diff] [blame] | 98 | struct ieee802154_mac_params mac_params; |
| 99 | |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 100 | /* MAC BSN field */ |
| 101 | u8 bsn; |
| 102 | /* MAC DSN field */ |
| 103 | u8 dsn; |
Phoebe Buckheister | f30be4d | 2014-05-16 17:46:40 +0200 | [diff] [blame] | 104 | |
| 105 | /* protects sec from concurrent access by netlink. access by |
| 106 | * encrypt/decrypt/header_create safe without additional protection. |
| 107 | */ |
| 108 | struct mutex sec_mtx; |
| 109 | |
| 110 | struct mac802154_llsec sec; |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 111 | }; |
| 112 | |
Chen Gang | 2c1bbbf | 2013-04-25 00:49:55 +0000 | [diff] [blame] | 113 | #define MAC802154_CHAN_NONE 0xff /* No channel is assigned */ |
alex.bluesman.smirnov@gmail.com | 0606069 | 2012-05-15 20:50:29 +0000 | [diff] [blame] | 114 | |
Alexander Aring | 6074136 | 2014-10-25 17:16:39 +0200 | [diff] [blame] | 115 | static inline struct ieee802154_local * |
| 116 | hw_to_local(struct ieee802154_hw *hw) |
| 117 | { |
| 118 | return container_of(hw, struct ieee802154_local, hw); |
| 119 | } |
| 120 | |
Alexander Aring | 59d19cd | 2014-10-25 17:16:40 +0200 | [diff] [blame] | 121 | static inline struct ieee802154_sub_if_data * |
| 122 | IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev) |
| 123 | { |
| 124 | return netdev_priv(dev); |
| 125 | } |
| 126 | |
Alexander Aring | 0ea3da6 | 2014-10-28 18:21:24 +0100 | [diff] [blame^] | 127 | static inline bool |
| 128 | ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata) |
| 129 | { |
| 130 | return test_bit(SDATA_STATE_RUNNING, &sdata->state); |
| 131 | } |
| 132 | |
alex.bluesman.smirnov@gmail.com | 6e2128d | 2012-05-15 20:50:25 +0000 | [diff] [blame] | 133 | extern struct ieee802154_reduced_mlme_ops mac802154_mlme_reduced; |
alex.bluesman.smirnov@gmail.com | 32bad7e | 2012-06-25 23:24:48 +0000 | [diff] [blame] | 134 | extern struct ieee802154_mlme_ops mac802154_mlme_wpan; |
alex.bluesman.smirnov@gmail.com | 6e2128d | 2012-05-15 20:50:25 +0000 | [diff] [blame] | 135 | |
alex.bluesman.smirnov@gmail.com | 0606069 | 2012-05-15 20:50:29 +0000 | [diff] [blame] | 136 | void mac802154_monitor_setup(struct net_device *dev); |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 137 | netdev_tx_t |
| 138 | ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev); |
alex.bluesman.smirnov@gmail.com | 0606069 | 2012-05-15 20:50:29 +0000 | [diff] [blame] | 139 | |
alex.bluesman.smirnov@gmail.com | 32bad7e | 2012-06-25 23:24:48 +0000 | [diff] [blame] | 140 | void mac802154_wpan_setup(struct net_device *dev); |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 141 | netdev_tx_t |
| 142 | ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev); |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 143 | |
alex.bluesman.smirnov@gmail.com | ef2486f | 2012-05-15 20:50:26 +0000 | [diff] [blame] | 144 | /* MIB callbacks */ |
Phoebe Buckheister | b70ab2e | 2014-03-14 21:23:59 +0100 | [diff] [blame] | 145 | void mac802154_dev_set_short_addr(struct net_device *dev, __le16 val); |
| 146 | __le16 mac802154_dev_get_short_addr(const struct net_device *dev); |
alex.bluesman.smirnov@gmail.com | ef2486f | 2012-05-15 20:50:26 +0000 | [diff] [blame] | 147 | void mac802154_dev_set_ieee_addr(struct net_device *dev); |
Phoebe Buckheister | b70ab2e | 2014-03-14 21:23:59 +0100 | [diff] [blame] | 148 | __le16 mac802154_dev_get_pan_id(const struct net_device *dev); |
| 149 | void mac802154_dev_set_pan_id(struct net_device *dev, __le16 val); |
alex.bluesman.smirnov@gmail.com | 66b69d4 | 2012-06-25 23:24:51 +0000 | [diff] [blame] | 150 | void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan); |
Tony Cheneau | 0483546 | 2013-03-25 17:59:29 +0000 | [diff] [blame] | 151 | u8 mac802154_dev_get_dsn(const struct net_device *dev); |
alex.bluesman.smirnov@gmail.com | ef2486f | 2012-05-15 20:50:26 +0000 | [diff] [blame] | 152 | |
Phoebe Buckheister | e462ded | 2014-03-31 21:37:46 +0200 | [diff] [blame] | 153 | int mac802154_set_mac_params(struct net_device *dev, |
| 154 | const struct ieee802154_mac_params *params); |
| 155 | void mac802154_get_mac_params(struct net_device *dev, |
| 156 | struct ieee802154_mac_params *params); |
| 157 | |
Phoebe Buckheister | 29e0237 | 2014-05-16 17:46:42 +0200 | [diff] [blame] | 158 | int mac802154_get_params(struct net_device *dev, |
| 159 | struct ieee802154_llsec_params *params); |
| 160 | int mac802154_set_params(struct net_device *dev, |
| 161 | const struct ieee802154_llsec_params *params, |
| 162 | int changed); |
| 163 | |
| 164 | int mac802154_add_key(struct net_device *dev, |
| 165 | const struct ieee802154_llsec_key_id *id, |
| 166 | const struct ieee802154_llsec_key *key); |
| 167 | int mac802154_del_key(struct net_device *dev, |
| 168 | const struct ieee802154_llsec_key_id *id); |
| 169 | |
| 170 | int mac802154_add_dev(struct net_device *dev, |
| 171 | const struct ieee802154_llsec_device *llsec_dev); |
| 172 | int mac802154_del_dev(struct net_device *dev, __le64 dev_addr); |
| 173 | |
| 174 | int mac802154_add_devkey(struct net_device *dev, |
| 175 | __le64 device_addr, |
| 176 | const struct ieee802154_llsec_device_key *key); |
| 177 | int mac802154_del_devkey(struct net_device *dev, |
| 178 | __le64 device_addr, |
| 179 | const struct ieee802154_llsec_device_key *key); |
| 180 | |
| 181 | int mac802154_add_seclevel(struct net_device *dev, |
| 182 | const struct ieee802154_llsec_seclevel *sl); |
| 183 | int mac802154_del_seclevel(struct net_device *dev, |
| 184 | const struct ieee802154_llsec_seclevel *sl); |
| 185 | |
| 186 | void mac802154_lock_table(struct net_device *dev); |
| 187 | void mac802154_get_table(struct net_device *dev, |
| 188 | struct ieee802154_llsec_table **t); |
| 189 | void mac802154_unlock_table(struct net_device *dev); |
| 190 | |
Alexander Aring | 0f1556b | 2014-10-25 09:41:00 +0200 | [diff] [blame] | 191 | #endif /* __IEEE802154_I_H */ |