blob: 702560acc8ce01fdf956edc65b50518ba40152e1 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001/* SPDX-License-Identifier: GPL-2.0-only */
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +00002/*
3 * Copyright (C) 2007-2012 Siemens AG
4 *
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +00005 * 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 Aring0f1556b2014-10-25 09:41:00 +020011#ifndef __IEEE802154_I_H
12#define __IEEE802154_I_H
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000013
Florian Westphal282ccf62017-03-29 17:17:31 +020014#include <linux/interrupt.h>
Phoebe Buckheisterf30be4d2014-05-16 17:46:40 +020015#include <linux/mutex.h>
Alexander Aring61f2dcb2014-11-12 19:51:56 +010016#include <linux/hrtimer.h>
Alexander Aringd5ae67b2014-11-05 20:51:17 +010017#include <net/cfg802154.h>
Phoebe Buckheister5d637d52014-05-16 17:46:37 +020018#include <net/mac802154.h>
Alexander Aring944742a2014-11-17 08:20:49 +010019#include <net/nl802154.h>
Phoebe Buckheistere462ded2014-03-31 21:37:46 +020020#include <net/ieee802154_netdev.h>
21
Phoebe Buckheisterf30be4d2014-05-16 17:46:40 +020022#include "llsec.h"
23
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000024/* mac802154 device private data */
Alexander Aringa5e1ec52014-10-25 17:16:35 +020025struct ieee802154_local {
Alexander Aring5a504392014-10-25 17:16:34 +020026 struct ieee802154_hw hw;
Alexander Aring16301862014-10-28 18:21:18 +010027 const struct ieee802154_ops *ops;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000028
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 Aringd98be452014-10-25 17:16:38 +020041 struct list_head interfaces;
42 struct mutex iflist_mtx;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000043
44 /* This one is used for scanning and other jobs not to be interfered
45 * with serial driver.
46 */
Alexander Aringf7730542014-10-25 17:16:41 +020047 struct workqueue_struct *workqueue;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000048
Alexander Aring61f2dcb2014-11-12 19:51:56 +010049 struct hrtimer ifs_timer;
50
Alexander Aring5d65cae2014-10-28 18:21:25 +010051 bool started;
Alexander Aring3cf24cf2015-06-24 11:36:36 +020052 bool suspended;
Alexander Aringc5c47e62014-10-27 17:13:30 +010053
54 struct tasklet_struct tasklet;
55 struct sk_buff_head skb_queue;
Lennert Buytenhekc22ff7b2015-07-21 17:44:47 +030056
57 struct sk_buff *tx_skb;
58 struct work_struct tx_work;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000059};
60
Alexander Aringc5c47e62014-10-27 17:13:30 +010061enum {
62 IEEE802154_RX_MSG = 1,
63};
64
Alexander Aring0ea3da62014-10-28 18:21:24 +010065enum ieee802154_sdata_state_bits {
66 SDATA_STATE_RUNNING,
67};
68
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000069/* 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 Aring036562f2014-10-25 17:16:36 +020075struct ieee802154_sub_if_data {
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000076 struct list_head list; /* the ieee802154_priv->slaves list */
77
Alexander Aringd5ae67b2014-11-05 20:51:17 +010078 struct wpan_dev wpan_dev;
79
Alexander Aring04e850f2014-10-25 17:16:37 +020080 struct ieee802154_local *local;
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000081 struct net_device *dev;
82
Alexander Aring0ea3da62014-10-28 18:21:24 +010083 unsigned long state;
Alexander Aringd5ae67b2014-11-05 20:51:17 +010084 char name[IFNAMSIZ];
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000085
Phoebe Buckheisterf30be4d2014-05-16 17:46:40 +020086 /* 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.com4d23c9c2012-05-15 20:50:24 +000092};
93
Alexander Aring6322d502014-11-12 03:36:51 +010094/* utility functions/constants */
95extern const void *const mac802154_wpan_phy_privid; /* for wpan_phy privid */
96
Alexander Aring60741362014-10-25 17:16:39 +020097static inline struct ieee802154_local *
98hw_to_local(struct ieee802154_hw *hw)
99{
100 return container_of(hw, struct ieee802154_local, hw);
101}
102
Alexander Aring59d19cd2014-10-25 17:16:40 +0200103static inline struct ieee802154_sub_if_data *
104IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev)
105{
106 return netdev_priv(dev);
107}
108
Alexander Aringb821ecd2014-11-17 08:20:53 +0100109static inline struct ieee802154_sub_if_data *
110IEEE802154_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 Aring0ea3da62014-10-28 18:21:24 +0100115static inline bool
116ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata)
117{
118 return test_bit(SDATA_STATE_RUNNING, &sdata->state);
119}
120
alex.bluesman.smirnov@gmail.com32bad7e2012-06-25 23:24:48 +0000121extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
alex.bluesman.smirnov@gmail.com6e2128d2012-05-15 20:50:25 +0000122
Varka Bhadramd10270c2015-07-07 10:50:43 +0530123void ieee802154_rx(struct ieee802154_local *local, struct sk_buff *skb);
Lennert Buytenhekc22ff7b2015-07-21 17:44:47 +0300124void ieee802154_xmit_worker(struct work_struct *work);
Alexander Aringe5e584f2014-10-26 09:37:13 +0100125netdev_tx_t
126ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
Alexander Aringe5e584f2014-10-26 09:37:13 +0100127netdev_tx_t
128ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
Alexander Aring61f2dcb2014-11-12 19:51:56 +0100129enum hrtimer_restart ieee802154_xmit_ifs_timer(struct hrtimer *timer);
alex.bluesman.smirnov@gmail.com5b641eb2012-05-15 20:50:22 +0000130
alex.bluesman.smirnov@gmail.comef2486f2012-05-15 20:50:26 +0000131/* MIB callbacks */
alex.bluesman.smirnov@gmail.com66b69d42012-06-25 23:24:51 +0000132void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan);
alex.bluesman.smirnov@gmail.comef2486f2012-05-15 20:50:26 +0000133
Phoebe Buckheister29e02372014-05-16 17:46:42 +0200134int mac802154_get_params(struct net_device *dev,
135 struct ieee802154_llsec_params *params);
136int mac802154_set_params(struct net_device *dev,
137 const struct ieee802154_llsec_params *params,
138 int changed);
139
140int mac802154_add_key(struct net_device *dev,
141 const struct ieee802154_llsec_key_id *id,
142 const struct ieee802154_llsec_key *key);
143int mac802154_del_key(struct net_device *dev,
144 const struct ieee802154_llsec_key_id *id);
145
146int mac802154_add_dev(struct net_device *dev,
147 const struct ieee802154_llsec_device *llsec_dev);
148int mac802154_del_dev(struct net_device *dev, __le64 dev_addr);
149
150int mac802154_add_devkey(struct net_device *dev,
151 __le64 device_addr,
152 const struct ieee802154_llsec_device_key *key);
153int mac802154_del_devkey(struct net_device *dev,
154 __le64 device_addr,
155 const struct ieee802154_llsec_device_key *key);
156
157int mac802154_add_seclevel(struct net_device *dev,
158 const struct ieee802154_llsec_seclevel *sl);
159int mac802154_del_seclevel(struct net_device *dev,
160 const struct ieee802154_llsec_seclevel *sl);
161
162void mac802154_lock_table(struct net_device *dev);
163void mac802154_get_table(struct net_device *dev,
164 struct ieee802154_llsec_table **t);
165void mac802154_unlock_table(struct net_device *dev);
166
Alexander Aringd77b4852015-06-21 16:45:20 +0200167int mac802154_wpan_update_llsec(struct net_device *dev);
168
Alexander Aringbe4fd8e2014-11-12 03:36:53 +0100169/* interface handling */
170int ieee802154_iface_init(void);
171void ieee802154_iface_exit(void);
Alexander Aringb210b182014-11-05 20:51:14 +0100172void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata);
Alexander Aring986a8ab2014-11-05 20:51:15 +0100173struct net_device *
174ieee802154_if_add(struct ieee802154_local *local, const char *name,
Varka Bhadram5b4a10392015-04-30 17:44:57 +0200175 unsigned char name_assign_type, enum nl802154_iftype type,
176 __le64 extended_addr);
Alexander Aring592dfbfc2014-11-12 03:36:48 +0100177void ieee802154_remove_interfaces(struct ieee802154_local *local);
Alexander Aringc4227c82015-06-24 11:36:34 +0200178void ieee802154_stop_device(struct ieee802154_local *local);
Alexander Aring4a9a8162014-11-02 04:18:38 +0100179
Alexander Aring0f1556b2014-10-25 09:41:00 +0200180#endif /* __IEEE802154_I_H */