blob: abb19701d494637901134f8d281b970551e88d49 [file] [log] [blame]
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +00001/*
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.com1010f542012-05-15 20:50:20 +000013 * 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 Aring0f1556b2014-10-25 09:41:00 +020019#ifndef __IEEE802154_I_H
20#define __IEEE802154_I_H
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000021
Phoebe Buckheisterf30be4d2014-05-16 17:46:40 +020022#include <linux/mutex.h>
Alexander Aringd5ae67b2014-11-05 20:51:17 +010023#include <net/cfg802154.h>
Phoebe Buckheister5d637d52014-05-16 17:46:37 +020024#include <net/mac802154.h>
Phoebe Buckheistere462ded2014-03-31 21:37:46 +020025#include <net/ieee802154_netdev.h>
26
Phoebe Buckheisterf30be4d2014-05-16 17:46:40 +020027#include "llsec.h"
28
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000029/* mac802154 device private data */
Alexander Aringa5e1ec52014-10-25 17:16:35 +020030struct ieee802154_local {
Alexander Aring5a504392014-10-25 17:16:34 +020031 struct ieee802154_hw hw;
Alexander Aring16301862014-10-28 18:21:18 +010032 const struct ieee802154_ops *ops;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000033
34 /* ieee802154 phy */
35 struct wpan_phy *phy;
36
37 int open_count;
38
39 /* As in mac80211 slaves list is modified:
40 * 1) under the RTNL
41 * 2) protected by slaves_mtx;
42 * 3) in an RCU manner
43 *
44 * So atomic readers can use any of this protection methods.
45 */
Alexander Aringd98be452014-10-25 17:16:38 +020046 struct list_head interfaces;
47 struct mutex iflist_mtx;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000048
49 /* This one is used for scanning and other jobs not to be interfered
50 * with serial driver.
51 */
Alexander Aringf7730542014-10-25 17:16:41 +020052 struct workqueue_struct *workqueue;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000053
Alexander Aring5d65cae2014-10-28 18:21:25 +010054 bool started;
Alexander Aringc5c47e62014-10-27 17:13:30 +010055
56 struct tasklet_struct tasklet;
57 struct sk_buff_head skb_queue;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000058};
59
Alexander Aringc5c47e62014-10-27 17:13:30 +010060enum {
61 IEEE802154_RX_MSG = 1,
62};
63
Alexander Aring0ea3da62014-10-28 18:21:24 +010064enum ieee802154_sdata_state_bits {
65 SDATA_STATE_RUNNING,
66};
67
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000068/* Slave interface definition.
69 *
70 * Slaves represent typical network interfaces available from userspace.
71 * Each ieee802154 device/transceiver may have several slaves and able
72 * to be associated with several networks at the same time.
73 */
Alexander Aring036562f2014-10-25 17:16:36 +020074struct ieee802154_sub_if_data {
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000075 struct list_head list; /* the ieee802154_priv->slaves list */
76
Alexander Aringd5ae67b2014-11-05 20:51:17 +010077 struct wpan_dev wpan_dev;
78
Alexander Aring04e850f2014-10-25 17:16:37 +020079 struct ieee802154_local *local;
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000080 struct net_device *dev;
81
Alexander Aring0ea3da62014-10-28 18:21:24 +010082 unsigned long state;
Alexander Aringd5ae67b2014-11-05 20:51:17 +010083 char name[IFNAMSIZ];
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000084
85 spinlock_t mib_lock;
86
Phoebe Buckheisterf30be4d2014-05-16 17:46:40 +020087 /* protects sec from concurrent access by netlink. access by
88 * encrypt/decrypt/header_create safe without additional protection.
89 */
90 struct mutex sec_mtx;
91
92 struct mac802154_llsec sec;
Alexander Aring7c118c12014-11-05 20:51:20 +010093 /* must be last, dynamically sized area in this! */
94 struct ieee802154_vif vif;
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000095};
96
Chen Gang2c1bbbf2013-04-25 00:49:55 +000097#define MAC802154_CHAN_NONE 0xff /* No channel is assigned */
alex.bluesman.smirnov@gmail.com06060692012-05-15 20:50:29 +000098
Alexander Aring60741362014-10-25 17:16:39 +020099static inline struct ieee802154_local *
100hw_to_local(struct ieee802154_hw *hw)
101{
102 return container_of(hw, struct ieee802154_local, hw);
103}
104
Alexander Aring59d19cd2014-10-25 17:16:40 +0200105static inline struct ieee802154_sub_if_data *
106IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev)
107{
108 return netdev_priv(dev);
109}
110
Alexander Aring0ea3da62014-10-28 18:21:24 +0100111static inline bool
112ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata)
113{
114 return test_bit(SDATA_STATE_RUNNING, &sdata->state);
115}
116
alex.bluesman.smirnov@gmail.com6e2128d2012-05-15 20:50:25 +0000117extern struct ieee802154_reduced_mlme_ops mac802154_mlme_reduced;
alex.bluesman.smirnov@gmail.com32bad7e2012-06-25 23:24:48 +0000118extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
alex.bluesman.smirnov@gmail.com6e2128d2012-05-15 20:50:25 +0000119
alex.bluesman.smirnov@gmail.com06060692012-05-15 20:50:29 +0000120void mac802154_monitor_setup(struct net_device *dev);
Alexander Aringe5e584f2014-10-26 09:37:13 +0100121netdev_tx_t
122ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
alex.bluesman.smirnov@gmail.com06060692012-05-15 20:50:29 +0000123
alex.bluesman.smirnov@gmail.com32bad7e2012-06-25 23:24:48 +0000124void mac802154_wpan_setup(struct net_device *dev);
Alexander Aringe5e584f2014-10-26 09:37:13 +0100125netdev_tx_t
126ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
alex.bluesman.smirnov@gmail.com5b641eb2012-05-15 20:50:22 +0000127
alex.bluesman.smirnov@gmail.comef2486f2012-05-15 20:50:26 +0000128/* MIB callbacks */
Phoebe Buckheisterb70ab2e2014-03-14 21:23:59 +0100129void mac802154_dev_set_short_addr(struct net_device *dev, __le16 val);
130__le16 mac802154_dev_get_short_addr(const struct net_device *dev);
Phoebe Buckheisterb70ab2e2014-03-14 21:23:59 +0100131__le16 mac802154_dev_get_pan_id(const struct net_device *dev);
132void mac802154_dev_set_pan_id(struct net_device *dev, __le16 val);
alex.bluesman.smirnov@gmail.com66b69d42012-06-25 23:24:51 +0000133void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan);
Tony Cheneau04835462013-03-25 17:59:29 +0000134u8 mac802154_dev_get_dsn(const struct net_device *dev);
alex.bluesman.smirnov@gmail.comef2486f2012-05-15 20:50:26 +0000135
Phoebe Buckheister29e02372014-05-16 17:46:42 +0200136int mac802154_get_params(struct net_device *dev,
137 struct ieee802154_llsec_params *params);
138int mac802154_set_params(struct net_device *dev,
139 const struct ieee802154_llsec_params *params,
140 int changed);
141
142int mac802154_add_key(struct net_device *dev,
143 const struct ieee802154_llsec_key_id *id,
144 const struct ieee802154_llsec_key *key);
145int mac802154_del_key(struct net_device *dev,
146 const struct ieee802154_llsec_key_id *id);
147
148int mac802154_add_dev(struct net_device *dev,
149 const struct ieee802154_llsec_device *llsec_dev);
150int mac802154_del_dev(struct net_device *dev, __le64 dev_addr);
151
152int mac802154_add_devkey(struct net_device *dev,
153 __le64 device_addr,
154 const struct ieee802154_llsec_device_key *key);
155int mac802154_del_devkey(struct net_device *dev,
156 __le64 device_addr,
157 const struct ieee802154_llsec_device_key *key);
158
159int mac802154_add_seclevel(struct net_device *dev,
160 const struct ieee802154_llsec_seclevel *sl);
161int mac802154_del_seclevel(struct net_device *dev,
162 const struct ieee802154_llsec_seclevel *sl);
163
164void mac802154_lock_table(struct net_device *dev);
165void mac802154_get_table(struct net_device *dev,
166 struct ieee802154_llsec_table **t);
167void mac802154_unlock_table(struct net_device *dev);
168
Alexander Aring4a9a8162014-11-02 04:18:38 +0100169struct net_device *
170mac802154_add_iface(struct wpan_phy *phy, const char *name, int type);
Alexander Aringb210b182014-11-05 20:51:14 +0100171void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata);
Alexander Aring986a8ab2014-11-05 20:51:15 +0100172struct net_device *
173ieee802154_if_add(struct ieee802154_local *local, const char *name,
174 struct wpan_dev **new_wpan_dev, int type);
Alexander Aring592dfbf2014-11-12 03:36:48 +0100175void ieee802154_remove_interfaces(struct ieee802154_local *local);
Alexander Aring4a9a8162014-11-02 04:18:38 +0100176
Alexander Aring0f1556b2014-10-25 09:41:00 +0200177#endif /* __IEEE802154_I_H */