ieee802154_i.h 5.4 KB

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