Thomas Gleixner | 1802d0b | 2019-05-27 08:55:21 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007-2012 Siemens AG |
| 4 | * |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 5 | * Written by: |
| 6 | * Pavel Smolenskiy <pavel.smolenskiy@gmail.com> |
| 7 | * Maxim Gorbachyov <maxim.gorbachev@siemens.com> |
| 8 | * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
| 9 | * Alexander Smirnov <alex.bluesman.smirnov@gmail.com> |
| 10 | */ |
Alexander Aring | 0f1556b | 2014-10-25 09:41:00 +0200 | [diff] [blame] | 11 | #ifndef __IEEE802154_I_H |
| 12 | #define __IEEE802154_I_H |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 13 | |
Florian Westphal | 282ccf6 | 2017-03-29 17:17:31 +0200 | [diff] [blame] | 14 | #include <linux/interrupt.h> |
Phoebe Buckheister | f30be4d | 2014-05-16 17:46:40 +0200 | [diff] [blame] | 15 | #include <linux/mutex.h> |
Alexander Aring | 61f2dcb | 2014-11-12 19:51:56 +0100 | [diff] [blame] | 16 | #include <linux/hrtimer.h> |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 17 | #include <net/cfg802154.h> |
Phoebe Buckheister | 5d637d5 | 2014-05-16 17:46:37 +0200 | [diff] [blame] | 18 | #include <net/mac802154.h> |
Alexander Aring | 944742a | 2014-11-17 08:20:49 +0100 | [diff] [blame] | 19 | #include <net/nl802154.h> |
Phoebe Buckheister | e462ded | 2014-03-31 21:37:46 +0200 | [diff] [blame] | 20 | #include <net/ieee802154_netdev.h> |
| 21 | |
Phoebe Buckheister | f30be4d | 2014-05-16 17:46:40 +0200 | [diff] [blame] | 22 | #include "llsec.h" |
| 23 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 24 | /* mac802154 device private data */ |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 25 | struct ieee802154_local { |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 26 | struct ieee802154_hw hw; |
Alexander Aring | 1630186 | 2014-10-28 18:21:18 +0100 | [diff] [blame] | 27 | const struct ieee802154_ops *ops; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 28 | |
| 29 | /* ieee802154 phy */ |
| 30 | struct wpan_phy *phy; |
| 31 | |
| 32 | int open_count; |
| 33 | |
| 34 | /* As in mac80211 slaves list is modified: |
| 35 | * 1) under the RTNL |
| 36 | * 2) protected by slaves_mtx; |
| 37 | * 3) in an RCU manner |
| 38 | * |
| 39 | * So atomic readers can use any of this protection methods. |
| 40 | */ |
Alexander Aring | d98be45 | 2014-10-25 17:16:38 +0200 | [diff] [blame] | 41 | struct list_head interfaces; |
| 42 | struct mutex iflist_mtx; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 43 | |
| 44 | /* This one is used for scanning and other jobs not to be interfered |
| 45 | * with serial driver. |
| 46 | */ |
Alexander Aring | f773054 | 2014-10-25 17:16:41 +0200 | [diff] [blame] | 47 | struct workqueue_struct *workqueue; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 48 | |
Alexander Aring | 61f2dcb | 2014-11-12 19:51:56 +0100 | [diff] [blame] | 49 | struct hrtimer ifs_timer; |
| 50 | |
Alexander Aring | 5d65cae | 2014-10-28 18:21:25 +0100 | [diff] [blame] | 51 | bool started; |
Alexander Aring | 3cf24cf | 2015-06-24 11:36:36 +0200 | [diff] [blame] | 52 | bool suspended; |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 53 | |
| 54 | struct tasklet_struct tasklet; |
| 55 | struct sk_buff_head skb_queue; |
Lennert Buytenhek | c22ff7b | 2015-07-21 17:44:47 +0300 | [diff] [blame] | 56 | |
| 57 | struct sk_buff *tx_skb; |
| 58 | struct work_struct tx_work; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 59 | }; |
| 60 | |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 61 | enum { |
| 62 | IEEE802154_RX_MSG = 1, |
| 63 | }; |
| 64 | |
Alexander Aring | 0ea3da6 | 2014-10-28 18:21:24 +0100 | [diff] [blame] | 65 | enum ieee802154_sdata_state_bits { |
| 66 | SDATA_STATE_RUNNING, |
| 67 | }; |
| 68 | |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 69 | /* Slave interface definition. |
| 70 | * |
| 71 | * Slaves represent typical network interfaces available from userspace. |
| 72 | * Each ieee802154 device/transceiver may have several slaves and able |
| 73 | * to be associated with several networks at the same time. |
| 74 | */ |
Alexander Aring | 036562f | 2014-10-25 17:16:36 +0200 | [diff] [blame] | 75 | struct ieee802154_sub_if_data { |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 76 | struct list_head list; /* the ieee802154_priv->slaves list */ |
| 77 | |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 78 | struct wpan_dev wpan_dev; |
| 79 | |
Alexander Aring | 04e850f | 2014-10-25 17:16:37 +0200 | [diff] [blame] | 80 | struct ieee802154_local *local; |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 81 | struct net_device *dev; |
| 82 | |
Alexander Aring | 0ea3da6 | 2014-10-28 18:21:24 +0100 | [diff] [blame] | 83 | unsigned long state; |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 84 | char name[IFNAMSIZ]; |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 85 | |
Phoebe Buckheister | f30be4d | 2014-05-16 17:46:40 +0200 | [diff] [blame] | 86 | /* protects sec from concurrent access by netlink. access by |
| 87 | * encrypt/decrypt/header_create safe without additional protection. |
| 88 | */ |
| 89 | struct mutex sec_mtx; |
| 90 | |
| 91 | struct mac802154_llsec sec; |
alex.bluesman.smirnov@gmail.com | 4d23c9c | 2012-05-15 20:50:24 +0000 | [diff] [blame] | 92 | }; |
| 93 | |
Alexander Aring | 6322d50 | 2014-11-12 03:36:51 +0100 | [diff] [blame] | 94 | /* utility functions/constants */ |
| 95 | extern const void *const mac802154_wpan_phy_privid; /* for wpan_phy privid */ |
| 96 | |
Alexander Aring | 6074136 | 2014-10-25 17:16:39 +0200 | [diff] [blame] | 97 | static inline struct ieee802154_local * |
| 98 | hw_to_local(struct ieee802154_hw *hw) |
| 99 | { |
| 100 | return container_of(hw, struct ieee802154_local, hw); |
| 101 | } |
| 102 | |
Alexander Aring | 59d19cd | 2014-10-25 17:16:40 +0200 | [diff] [blame] | 103 | static inline struct ieee802154_sub_if_data * |
| 104 | IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev) |
| 105 | { |
| 106 | return netdev_priv(dev); |
| 107 | } |
| 108 | |
Alexander Aring | b821ecd | 2014-11-17 08:20:53 +0100 | [diff] [blame] | 109 | static inline struct ieee802154_sub_if_data * |
| 110 | IEEE802154_WPAN_DEV_TO_SUB_IF(struct wpan_dev *wpan_dev) |
| 111 | { |
| 112 | return container_of(wpan_dev, struct ieee802154_sub_if_data, wpan_dev); |
| 113 | } |
| 114 | |
Alexander Aring | 0ea3da6 | 2014-10-28 18:21:24 +0100 | [diff] [blame] | 115 | static inline bool |
| 116 | ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata) |
| 117 | { |
| 118 | return test_bit(SDATA_STATE_RUNNING, &sdata->state); |
| 119 | } |
| 120 | |
alex.bluesman.smirnov@gmail.com | 32bad7e | 2012-06-25 23:24:48 +0000 | [diff] [blame] | 121 | extern struct ieee802154_mlme_ops mac802154_mlme_wpan; |
alex.bluesman.smirnov@gmail.com | 6e2128d | 2012-05-15 20:50:25 +0000 | [diff] [blame] | 122 | |
Varka Bhadram | d10270c | 2015-07-07 10:50:43 +0530 | [diff] [blame] | 123 | void ieee802154_rx(struct ieee802154_local *local, struct sk_buff *skb); |
Lennert Buytenhek | c22ff7b | 2015-07-21 17:44:47 +0300 | [diff] [blame] | 124 | void ieee802154_xmit_worker(struct work_struct *work); |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 125 | netdev_tx_t |
| 126 | ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev); |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 127 | netdev_tx_t |
| 128 | ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev); |
Alexander Aring | 61f2dcb | 2014-11-12 19:51:56 +0100 | [diff] [blame] | 129 | enum hrtimer_restart ieee802154_xmit_ifs_timer(struct hrtimer *timer); |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 130 | |
alex.bluesman.smirnov@gmail.com | ef2486f | 2012-05-15 20:50:26 +0000 | [diff] [blame] | 131 | /* MIB callbacks */ |
alex.bluesman.smirnov@gmail.com | 66b69d4 | 2012-06-25 23:24:51 +0000 | [diff] [blame] | 132 | void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan); |
alex.bluesman.smirnov@gmail.com | ef2486f | 2012-05-15 20:50:26 +0000 | [diff] [blame] | 133 | |
Phoebe Buckheister | 29e0237 | 2014-05-16 17:46:42 +0200 | [diff] [blame] | 134 | int mac802154_get_params(struct net_device *dev, |
| 135 | struct ieee802154_llsec_params *params); |
| 136 | int mac802154_set_params(struct net_device *dev, |
| 137 | const struct ieee802154_llsec_params *params, |
| 138 | int changed); |
| 139 | |
| 140 | int mac802154_add_key(struct net_device *dev, |
| 141 | const struct ieee802154_llsec_key_id *id, |
| 142 | const struct ieee802154_llsec_key *key); |
| 143 | int mac802154_del_key(struct net_device *dev, |
| 144 | const struct ieee802154_llsec_key_id *id); |
| 145 | |
| 146 | int mac802154_add_dev(struct net_device *dev, |
| 147 | const struct ieee802154_llsec_device *llsec_dev); |
| 148 | int mac802154_del_dev(struct net_device *dev, __le64 dev_addr); |
| 149 | |
| 150 | int mac802154_add_devkey(struct net_device *dev, |
| 151 | __le64 device_addr, |
| 152 | const struct ieee802154_llsec_device_key *key); |
| 153 | int mac802154_del_devkey(struct net_device *dev, |
| 154 | __le64 device_addr, |
| 155 | const struct ieee802154_llsec_device_key *key); |
| 156 | |
| 157 | int mac802154_add_seclevel(struct net_device *dev, |
| 158 | const struct ieee802154_llsec_seclevel *sl); |
| 159 | int mac802154_del_seclevel(struct net_device *dev, |
| 160 | const struct ieee802154_llsec_seclevel *sl); |
| 161 | |
| 162 | void mac802154_lock_table(struct net_device *dev); |
| 163 | void mac802154_get_table(struct net_device *dev, |
| 164 | struct ieee802154_llsec_table **t); |
| 165 | void mac802154_unlock_table(struct net_device *dev); |
| 166 | |
Alexander Aring | d77b485 | 2015-06-21 16:45:20 +0200 | [diff] [blame] | 167 | int mac802154_wpan_update_llsec(struct net_device *dev); |
| 168 | |
Alexander Aring | be4fd8e | 2014-11-12 03:36:53 +0100 | [diff] [blame] | 169 | /* interface handling */ |
| 170 | int ieee802154_iface_init(void); |
| 171 | void ieee802154_iface_exit(void); |
Alexander Aring | b210b18 | 2014-11-05 20:51:14 +0100 | [diff] [blame] | 172 | void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata); |
Alexander Aring | 986a8ab | 2014-11-05 20:51:15 +0100 | [diff] [blame] | 173 | struct net_device * |
| 174 | ieee802154_if_add(struct ieee802154_local *local, const char *name, |
Varka Bhadram | 5b4a1039 | 2015-04-30 17:44:57 +0200 | [diff] [blame] | 175 | unsigned char name_assign_type, enum nl802154_iftype type, |
| 176 | __le64 extended_addr); |
Alexander Aring | 592dfbfc | 2014-11-12 03:36:48 +0100 | [diff] [blame] | 177 | void ieee802154_remove_interfaces(struct ieee802154_local *local); |
Alexander Aring | c4227c8 | 2015-06-24 11:36:34 +0200 | [diff] [blame] | 178 | void ieee802154_stop_device(struct ieee802154_local *local); |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 179 | |
Alexander Aring | 0f1556b | 2014-10-25 09:41:00 +0200 | [diff] [blame] | 180 | #endif /* __IEEE802154_I_H */ |