ieee802154_i.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. *
  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. */
  19. #ifndef __IEEE802154_I_H
  20. #define __IEEE802154_I_H
  21. #include <linux/interrupt.h>
  22. #include <linux/mutex.h>
  23. #include <linux/hrtimer.h>
  24. #include <net/cfg802154.h>
  25. #include <net/mac802154.h>
  26. #include <net/nl802154.h>
  27. #include <net/ieee802154_netdev.h>
  28. #include "llsec.h"
  29. /* mac802154 device private data */
  30. struct ieee802154_local {
  31. struct ieee802154_hw hw;
  32. const struct ieee802154_ops *ops;
  33. /* ieee802154 phy */
  34. struct wpan_phy *phy;
  35. int open_count;
  36. /* As in mac80211 slaves list is modified:
  37. * 1) under the RTNL
  38. * 2) protected by slaves_mtx;
  39. * 3) in an RCU manner
  40. *
  41. * So atomic readers can use any of this protection methods.
  42. */
  43. struct list_head interfaces;
  44. struct mutex iflist_mtx;
  45. /* This one is used for scanning and other jobs not to be interfered
  46. * with serial driver.
  47. */
  48. struct workqueue_struct *workqueue;
  49. struct hrtimer ifs_timer;
  50. bool started;
  51. bool suspended;
  52. struct tasklet_struct tasklet;
  53. struct sk_buff_head skb_queue;
  54. struct sk_buff *tx_skb;
  55. struct work_struct tx_work;
  56. };
  57. enum {
  58. IEEE802154_RX_MSG = 1,
  59. };
  60. enum ieee802154_sdata_state_bits {
  61. SDATA_STATE_RUNNING,
  62. };
  63. /* Slave interface definition.
  64. *
  65. * Slaves represent typical network interfaces available from userspace.
  66. * Each ieee802154 device/transceiver may have several slaves and able
  67. * to be associated with several networks at the same time.
  68. */
  69. struct ieee802154_sub_if_data {
  70. struct list_head list; /* the ieee802154_priv->slaves list */
  71. struct wpan_dev wpan_dev;
  72. struct ieee802154_local *local;
  73. struct net_device *dev;
  74. unsigned long state;
  75. char name[IFNAMSIZ];
  76. /* protects sec from concurrent access by netlink. access by
  77. * encrypt/decrypt/header_create safe without additional protection.
  78. */
  79. struct mutex sec_mtx;
  80. struct mac802154_llsec sec;
  81. };
  82. /* utility functions/constants */
  83. extern const void *const mac802154_wpan_phy_privid; /* for wpan_phy privid */
  84. static inline struct ieee802154_local *
  85. hw_to_local(struct ieee802154_hw *hw)
  86. {
  87. return container_of(hw, struct ieee802154_local, hw);
  88. }
  89. static inline struct ieee802154_sub_if_data *
  90. IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev)
  91. {
  92. return netdev_priv(dev);
  93. }
  94. static inline struct ieee802154_sub_if_data *
  95. IEEE802154_WPAN_DEV_TO_SUB_IF(struct wpan_dev *wpan_dev)
  96. {
  97. return container_of(wpan_dev, struct ieee802154_sub_if_data, wpan_dev);
  98. }
  99. static inline bool
  100. ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata)
  101. {
  102. return test_bit(SDATA_STATE_RUNNING, &sdata->state);
  103. }
  104. extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
  105. void ieee802154_rx(struct ieee802154_local *local, struct sk_buff *skb);
  106. void ieee802154_xmit_worker(struct work_struct *work);
  107. netdev_tx_t
  108. ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
  109. netdev_tx_t
  110. ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
  111. enum hrtimer_restart ieee802154_xmit_ifs_timer(struct hrtimer *timer);
  112. /* MIB callbacks */
  113. void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan);
  114. int mac802154_get_params(struct net_device *dev,
  115. struct ieee802154_llsec_params *params);
  116. int mac802154_set_params(struct net_device *dev,
  117. const struct ieee802154_llsec_params *params,
  118. int changed);
  119. int mac802154_add_key(struct net_device *dev,
  120. const struct ieee802154_llsec_key_id *id,
  121. const struct ieee802154_llsec_key *key);
  122. int mac802154_del_key(struct net_device *dev,
  123. const struct ieee802154_llsec_key_id *id);
  124. int mac802154_add_dev(struct net_device *dev,
  125. const struct ieee802154_llsec_device *llsec_dev);
  126. int mac802154_del_dev(struct net_device *dev, __le64 dev_addr);
  127. int mac802154_add_devkey(struct net_device *dev,
  128. __le64 device_addr,
  129. const struct ieee802154_llsec_device_key *key);
  130. int mac802154_del_devkey(struct net_device *dev,
  131. __le64 device_addr,
  132. const struct ieee802154_llsec_device_key *key);
  133. int mac802154_add_seclevel(struct net_device *dev,
  134. const struct ieee802154_llsec_seclevel *sl);
  135. int mac802154_del_seclevel(struct net_device *dev,
  136. const struct ieee802154_llsec_seclevel *sl);
  137. void mac802154_lock_table(struct net_device *dev);
  138. void mac802154_get_table(struct net_device *dev,
  139. struct ieee802154_llsec_table **t);
  140. void mac802154_unlock_table(struct net_device *dev);
  141. int mac802154_wpan_update_llsec(struct net_device *dev);
  142. /* interface handling */
  143. int ieee802154_iface_init(void);
  144. void ieee802154_iface_exit(void);
  145. void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata);
  146. struct net_device *
  147. ieee802154_if_add(struct ieee802154_local *local, const char *name,
  148. unsigned char name_assign_type, enum nl802154_iftype type,
  149. __le64 extended_addr);
  150. void ieee802154_remove_interfaces(struct ieee802154_local *local);
  151. void ieee802154_stop_device(struct ieee802154_local *local);
  152. #endif /* __IEEE802154_I_H */