]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - net/mac802154/ieee802154_i.h
mac802154: fix typo promisuous to promiscuous
[mirror_ubuntu-eoan-kernel.git] / net / mac802154 / ieee802154_i.h
CommitLineData
1010f540 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 *
1010f540 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 */
0f1556bc
AA
19#ifndef __IEEE802154_I_H
20#define __IEEE802154_I_H
1010f540 21
f30be4d5 22#include <linux/mutex.h>
d5ae67ba 23#include <net/cfg802154.h>
5d637d5a 24#include <net/mac802154.h>
e462ded6
PB
25#include <net/ieee802154_netdev.h>
26
f30be4d5
PB
27#include "llsec.h"
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
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 */
d98be45b
AA
46 struct list_head interfaces;
47 struct mutex iflist_mtx;
1010f540 48
49 /* This one is used for scanning and other jobs not to be interfered
50 * with serial driver.
51 */
f7730542 52 struct workqueue_struct *workqueue;
1010f540 53
5d65cae4 54 bool started;
c5c47e67
AA
55
56 struct tasklet_struct tasklet;
57 struct sk_buff_head skb_queue;
1010f540 58};
59
c5c47e67
AA
60enum {
61 IEEE802154_RX_MSG = 1,
62};
63
0ea3da64
AA
64enum ieee802154_sdata_state_bits {
65 SDATA_STATE_RUNNING,
66};
67
4d23c9cc 68/* 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 */
036562f9 74struct ieee802154_sub_if_data {
4d23c9cc 75 struct list_head list; /* the ieee802154_priv->slaves list */
76
d5ae67ba
AA
77 struct wpan_dev wpan_dev;
78
04e850fe 79 struct ieee802154_local *local;
4d23c9cc 80 struct net_device *dev;
81
0ea3da64 82 unsigned long state;
d5ae67ba 83 char name[IFNAMSIZ];
4d23c9cc 84
85 spinlock_t mib_lock;
86
87 __le16 pan_id;
88 __le16 short_addr;
b70ab2e8 89 __le64 extended_addr;
0916c022 90 bool promiscuous_mode;
4d23c9cc 91
e462ded6
PB
92 struct ieee802154_mac_params mac_params;
93
4d23c9cc 94 /* MAC BSN field */
95 u8 bsn;
96 /* MAC DSN field */
97 u8 dsn;
f30be4d5
PB
98
99 /* protects sec from concurrent access by netlink. access by
100 * encrypt/decrypt/header_create safe without additional protection.
101 */
102 struct mutex sec_mtx;
103
104 struct mac802154_llsec sec;
7c118c1a
AA
105 /* must be last, dynamically sized area in this! */
106 struct ieee802154_vif vif;
4d23c9cc 107};
108
2c1bbbff 109#define MAC802154_CHAN_NONE 0xff /* No channel is assigned */
0606069d 110
60741361
AA
111static inline struct ieee802154_local *
112hw_to_local(struct ieee802154_hw *hw)
113{
114 return container_of(hw, struct ieee802154_local, hw);
115}
116
59d19cd7
AA
117static inline struct ieee802154_sub_if_data *
118IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev)
119{
120 return netdev_priv(dev);
121}
122
0ea3da64
AA
123static inline bool
124ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata)
125{
126 return test_bit(SDATA_STATE_RUNNING, &sdata->state);
127}
128
6e2128d4 129extern struct ieee802154_reduced_mlme_ops mac802154_mlme_reduced;
32bad7e3 130extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
6e2128d4 131
0606069d 132void mac802154_monitor_setup(struct net_device *dev);
e5e584fc
AA
133netdev_tx_t
134ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
0606069d 135
32bad7e3 136void mac802154_wpan_setup(struct net_device *dev);
e5e584fc
AA
137netdev_tx_t
138ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
5b641ebe 139
ef2486f5 140/* MIB callbacks */
b70ab2e8
PB
141void mac802154_dev_set_short_addr(struct net_device *dev, __le16 val);
142__le16 mac802154_dev_get_short_addr(const struct net_device *dev);
b70ab2e8
PB
143__le16 mac802154_dev_get_pan_id(const struct net_device *dev);
144void mac802154_dev_set_pan_id(struct net_device *dev, __le16 val);
66b69d4d 145void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan);
0483546a 146u8 mac802154_dev_get_dsn(const struct net_device *dev);
ef2486f5 147
29e02374
PB
148int mac802154_get_params(struct net_device *dev,
149 struct ieee802154_llsec_params *params);
150int mac802154_set_params(struct net_device *dev,
151 const struct ieee802154_llsec_params *params,
152 int changed);
153
154int mac802154_add_key(struct net_device *dev,
155 const struct ieee802154_llsec_key_id *id,
156 const struct ieee802154_llsec_key *key);
157int mac802154_del_key(struct net_device *dev,
158 const struct ieee802154_llsec_key_id *id);
159
160int mac802154_add_dev(struct net_device *dev,
161 const struct ieee802154_llsec_device *llsec_dev);
162int mac802154_del_dev(struct net_device *dev, __le64 dev_addr);
163
164int mac802154_add_devkey(struct net_device *dev,
165 __le64 device_addr,
166 const struct ieee802154_llsec_device_key *key);
167int mac802154_del_devkey(struct net_device *dev,
168 __le64 device_addr,
169 const struct ieee802154_llsec_device_key *key);
170
171int mac802154_add_seclevel(struct net_device *dev,
172 const struct ieee802154_llsec_seclevel *sl);
173int mac802154_del_seclevel(struct net_device *dev,
174 const struct ieee802154_llsec_seclevel *sl);
175
176void mac802154_lock_table(struct net_device *dev);
177void mac802154_get_table(struct net_device *dev,
178 struct ieee802154_llsec_table **t);
179void mac802154_unlock_table(struct net_device *dev);
180
4a9a816a
AA
181struct net_device *
182mac802154_add_iface(struct wpan_phy *phy, const char *name, int type);
b210b187 183void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata);
986a8abf
AA
184struct net_device *
185ieee802154_if_add(struct ieee802154_local *local, const char *name,
186 struct wpan_dev **new_wpan_dev, int type);
4a9a816a 187
0f1556bc 188#endif /* __IEEE802154_I_H */