Merge tag 'x86_tdx_for_6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[linux-2.6-block.git] / net / mac802154 / ieee802154_i.h
CommitLineData
1802d0be 1/* SPDX-License-Identifier: GPL-2.0-only */
1010f540 2/*
3 * Copyright (C) 2007-2012 Siemens AG
4 *
1010f540 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 */
0f1556bc
AA
11#ifndef __IEEE802154_I_H
12#define __IEEE802154_I_H
1010f540 13
282ccf6e 14#include <linux/interrupt.h>
f30be4d5 15#include <linux/mutex.h>
61f2dcba 16#include <linux/hrtimer.h>
d5ae67ba 17#include <net/cfg802154.h>
5d637d5a 18#include <net/mac802154.h>
944742a3 19#include <net/nl802154.h>
e462ded6
PB
20#include <net/ieee802154_netdev.h>
21
f30be4d5
PB
22#include "llsec.h"
23
57588c71
MR
24enum ieee802154_ongoing {
25 IEEE802154_IS_SCANNING = BIT(0),
3accf476 26 IEEE802154_IS_BEACONING = BIT(1),
57588c71
MR
27};
28
1010f540 29/* mac802154 device private data */
a5e1ec53 30struct ieee802154_local {
5a504397 31 struct ieee802154_hw hw;
16301861 32 const struct ieee802154_ops *ops;
1010f540 33
ac8037c3
AA
34 /* hardware address filter */
35 struct ieee802154_hw_addr_filt addr_filt;
1010f540 36 /* ieee802154 phy */
37 struct wpan_phy *phy;
38
39 int open_count;
40
41 /* As in mac80211 slaves list is modified:
42 * 1) under the RTNL
43 * 2) protected by slaves_mtx;
44 * 3) in an RCU manner
45 *
46 * So atomic readers can use any of this protection methods.
47 */
d98be45b
AA
48 struct list_head interfaces;
49 struct mutex iflist_mtx;
1010f540 50
57588c71 51 /* Data related workqueue */
f7730542 52 struct workqueue_struct *workqueue;
57588c71
MR
53 /* MAC commands related workqueue */
54 struct workqueue_struct *mac_wq;
1010f540 55
61f2dcba
AA
56 struct hrtimer ifs_timer;
57
57588c71
MR
58 /* Scanning */
59 u8 scan_page;
60 u8 scan_channel;
61 struct cfg802154_scan_request __rcu *scan_req;
62 struct delayed_work scan_work;
63
3accf476
MR
64 /* Beaconing */
65 unsigned int beacon_interval;
66 struct ieee802154_beacon_frame beacon;
67 struct cfg802154_beacon_request __rcu *beacon_req;
68 struct delayed_work beacon_work;
69
57588c71
MR
70 /* Asynchronous tasks */
71 struct list_head rx_beacon_list;
72 struct work_struct rx_beacon_work;
73
5d65cae4 74 bool started;
3cf24cf8 75 bool suspended;
57588c71 76 unsigned long ongoing;
c5c47e67
AA
77
78 struct tasklet_struct tasklet;
79 struct sk_buff_head skb_queue;
c22ff7b4
LB
80
81 struct sk_buff *tx_skb;
983a974b 82 struct work_struct sync_tx_work;
337e2f86
MR
83 /* A negative Linux error code or a null/positive MLME error status */
84 int tx_result;
1010f540 85};
86
c5c47e67
AA
87enum {
88 IEEE802154_RX_MSG = 1,
89};
90
0ea3da64
AA
91enum ieee802154_sdata_state_bits {
92 SDATA_STATE_RUNNING,
93};
94
4d23c9cc 95/* Slave interface definition.
96 *
97 * Slaves represent typical network interfaces available from userspace.
98 * Each ieee802154 device/transceiver may have several slaves and able
99 * to be associated with several networks at the same time.
100 */
036562f9 101struct ieee802154_sub_if_data {
4d23c9cc 102 struct list_head list; /* the ieee802154_priv->slaves list */
103
d5ae67ba
AA
104 struct wpan_dev wpan_dev;
105
04e850fe 106 struct ieee802154_local *local;
4d23c9cc 107 struct net_device *dev;
108
ac8037c3
AA
109 /* Each interface starts and works in nominal state at a given filtering
110 * level given by iface_default_filtering, which is set once for all at
111 * the interface creation and should not evolve over time. For some MAC
112 * operations however, the filtering level may change temporarily, as
113 * reflected in the required_filtering field. The actual filtering at
114 * the PHY level may be different and is shown in struct wpan_phy.
115 */
116 enum ieee802154_filtering_level iface_default_filtering;
117 enum ieee802154_filtering_level required_filtering;
118
0ea3da64 119 unsigned long state;
d5ae67ba 120 char name[IFNAMSIZ];
4d23c9cc 121
f30be4d5
PB
122 /* protects sec from concurrent access by netlink. access by
123 * encrypt/decrypt/header_create safe without additional protection.
124 */
125 struct mutex sec_mtx;
126
127 struct mac802154_llsec sec;
4d23c9cc 128};
129
6322d50d
AA
130/* utility functions/constants */
131extern const void *const mac802154_wpan_phy_privid; /* for wpan_phy privid */
132
60741361
AA
133static inline struct ieee802154_local *
134hw_to_local(struct ieee802154_hw *hw)
135{
136 return container_of(hw, struct ieee802154_local, hw);
137}
138
59d19cd7
AA
139static inline struct ieee802154_sub_if_data *
140IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev)
141{
142 return netdev_priv(dev);
143}
144
b821ecd4
AA
145static inline struct ieee802154_sub_if_data *
146IEEE802154_WPAN_DEV_TO_SUB_IF(struct wpan_dev *wpan_dev)
147{
148 return container_of(wpan_dev, struct ieee802154_sub_if_data, wpan_dev);
149}
150
0ea3da64
AA
151static inline bool
152ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata)
153{
154 return test_bit(SDATA_STATE_RUNNING, &sdata->state);
155}
156
32bad7e3 157extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
6e2128d4 158
d10270ce 159void ieee802154_rx(struct ieee802154_local *local, struct sk_buff *skb);
be8c6d86 160void ieee802154_xmit_sync_worker(struct work_struct *work);
f0feb349 161int ieee802154_sync_and_hold_queue(struct ieee802154_local *local);
ddd9ee7c 162int ieee802154_mlme_op_pre(struct ieee802154_local *local);
fbdaa5ba
MR
163int ieee802154_mlme_tx(struct ieee802154_local *local,
164 struct ieee802154_sub_if_data *sdata,
165 struct sk_buff *skb);
dd180962
MR
166int ieee802154_mlme_tx_locked(struct ieee802154_local *local,
167 struct ieee802154_sub_if_data *sdata,
168 struct sk_buff *skb);
ddd9ee7c 169void ieee802154_mlme_op_post(struct ieee802154_local *local);
fbdaa5ba
MR
170int ieee802154_mlme_tx_one(struct ieee802154_local *local,
171 struct ieee802154_sub_if_data *sdata,
172 struct sk_buff *skb);
dd180962
MR
173int ieee802154_mlme_tx_one_locked(struct ieee802154_local *local,
174 struct ieee802154_sub_if_data *sdata,
175 struct sk_buff *skb);
e5e584fc
AA
176netdev_tx_t
177ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
e5e584fc
AA
178netdev_tx_t
179ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
61f2dcba 180enum hrtimer_restart ieee802154_xmit_ifs_timer(struct hrtimer *timer);
5b641ebe 181
20a19d1d
MR
182/**
183 * ieee802154_hold_queue - hold ieee802154 queue
184 * @local: main mac object
185 *
186 * Hold a queue by incrementing an atomic counter and requesting the netif
187 * queues to be stopped. The queues cannot be woken up while the counter has not
188 * been reset with as any ieee802154_release_queue() calls as needed.
189 */
190void ieee802154_hold_queue(struct ieee802154_local *local);
191
192/**
193 * ieee802154_release_queue - release ieee802154 queue
194 * @local: main mac object
195 *
196 * Release a queue which is held by decrementing an atomic counter and wake it
197 * up only if the counter reaches 0.
198 */
199void ieee802154_release_queue(struct ieee802154_local *local);
200
a40612f3
MR
201/**
202 * ieee802154_disable_queue - disable ieee802154 queue
203 * @local: main mac object
204 *
205 * When trying to sync the Tx queue, we cannot just stop the queue
206 * (which is basically a bit being set without proper lock handling)
207 * because it would be racy. We actually need to call netif_tx_disable()
208 * instead, which is done by this helper. Restarting the queue can
209 * however still be done with a regular wake call.
210 */
211void ieee802154_disable_queue(struct ieee802154_local *local);
212
ef2486f5 213/* MIB callbacks */
66b69d4d 214void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan);
ef2486f5 215
29e02374
PB
216int mac802154_get_params(struct net_device *dev,
217 struct ieee802154_llsec_params *params);
218int mac802154_set_params(struct net_device *dev,
219 const struct ieee802154_llsec_params *params,
220 int changed);
221
222int mac802154_add_key(struct net_device *dev,
223 const struct ieee802154_llsec_key_id *id,
224 const struct ieee802154_llsec_key *key);
225int mac802154_del_key(struct net_device *dev,
226 const struct ieee802154_llsec_key_id *id);
227
228int mac802154_add_dev(struct net_device *dev,
229 const struct ieee802154_llsec_device *llsec_dev);
230int mac802154_del_dev(struct net_device *dev, __le64 dev_addr);
231
232int mac802154_add_devkey(struct net_device *dev,
233 __le64 device_addr,
234 const struct ieee802154_llsec_device_key *key);
235int mac802154_del_devkey(struct net_device *dev,
236 __le64 device_addr,
237 const struct ieee802154_llsec_device_key *key);
238
239int mac802154_add_seclevel(struct net_device *dev,
240 const struct ieee802154_llsec_seclevel *sl);
241int mac802154_del_seclevel(struct net_device *dev,
242 const struct ieee802154_llsec_seclevel *sl);
243
244void mac802154_lock_table(struct net_device *dev);
245void mac802154_get_table(struct net_device *dev,
246 struct ieee802154_llsec_table **t);
247void mac802154_unlock_table(struct net_device *dev);
248
d77b4852
AA
249int mac802154_wpan_update_llsec(struct net_device *dev);
250
57588c71
MR
251/* PAN management handling */
252void mac802154_scan_worker(struct work_struct *work);
253int mac802154_trigger_scan_locked(struct ieee802154_sub_if_data *sdata,
254 struct cfg802154_scan_request *request);
255int mac802154_abort_scan_locked(struct ieee802154_local *local,
256 struct ieee802154_sub_if_data *sdata);
257int mac802154_process_beacon(struct ieee802154_local *local,
258 struct sk_buff *skb,
259 u8 page, u8 channel);
260void mac802154_rx_beacon_worker(struct work_struct *work);
261
262static inline bool mac802154_is_scanning(struct ieee802154_local *local)
263{
264 return test_bit(IEEE802154_IS_SCANNING, &local->ongoing);
265}
266
3accf476
MR
267void mac802154_beacon_worker(struct work_struct *work);
268int mac802154_send_beacons_locked(struct ieee802154_sub_if_data *sdata,
269 struct cfg802154_beacon_request *request);
270int mac802154_stop_beacons_locked(struct ieee802154_local *local,
271 struct ieee802154_sub_if_data *sdata);
272
273static inline bool mac802154_is_beaconing(struct ieee802154_local *local)
274{
275 return test_bit(IEEE802154_IS_BEACONING, &local->ongoing);
276}
277
be4fd8e5
AA
278/* interface handling */
279int ieee802154_iface_init(void);
280void ieee802154_iface_exit(void);
b210b187 281void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata);
986a8abf
AA
282struct net_device *
283ieee802154_if_add(struct ieee802154_local *local, const char *name,
5b4a1039
VB
284 unsigned char name_assign_type, enum nl802154_iftype type,
285 __le64 extended_addr);
592dfbfc 286void ieee802154_remove_interfaces(struct ieee802154_local *local);
c4227c8a 287void ieee802154_stop_device(struct ieee802154_local *local);
4a9a816a 288
0f1556bc 289#endif /* __IEEE802154_I_H */