1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2007-2012 Siemens AG
12 #include <linux/netdevice.h>
13 #include <linux/if_arp.h>
14 #include <linux/crc-ccitt.h>
15 #include <asm/unaligned.h>
17 #include <net/rtnetlink.h>
18 #include <net/ieee802154_netdev.h>
19 #include <net/mac802154.h>
20 #include <net/cfg802154.h>
22 #include "ieee802154_i.h"
23 #include "driver-ops.h"
25 void ieee802154_xmit_sync_worker(struct work_struct *work)
27 struct ieee802154_local *local =
28 container_of(work, struct ieee802154_local, sync_tx_work);
29 struct sk_buff *skb = local->tx_skb;
30 struct net_device *dev = skb->dev;
33 res = drv_xmit_sync(local, skb);
37 dev->stats.tx_packets++;
38 dev->stats.tx_bytes += skb->len;
40 ieee802154_xmit_complete(&local->hw, skb, false);
45 /* Restart the netif queue on each sub_if_data object. */
46 ieee802154_release_queue(local);
47 if (atomic_dec_and_test(&local->phy->ongoing_txs))
48 wake_up(&local->phy->sync_txq);
50 netdev_dbg(dev, "transmission failed\n");
54 ieee802154_tx(struct ieee802154_local *local, struct sk_buff *skb)
56 struct net_device *dev = skb->dev;
59 if (!(local->hw.flags & IEEE802154_HW_TX_OMIT_CKSUM)) {
63 if (unlikely(skb_tailroom(skb) < IEEE802154_FCS_LEN)) {
64 nskb = skb_copy_expand(skb, 0, IEEE802154_FCS_LEN,
74 crc = crc_ccitt(0, skb->data, skb->len);
75 put_unaligned_le16(crc, skb_put(skb, 2));
78 /* Stop the netif queue on each sub_if_data object. */
79 ieee802154_hold_queue(local);
80 atomic_inc(&local->phy->ongoing_txs);
82 /* Drivers should preferably implement the async callback. In some rare
83 * cases they only provide a sync callback which we will use as a
86 if (local->ops->xmit_async) {
87 unsigned int len = skb->len;
89 ret = drv_xmit_async(local, skb);
91 goto err_wake_netif_queue;
93 dev->stats.tx_packets++;
94 dev->stats.tx_bytes += len;
97 queue_work(local->workqueue, &local->sync_tx_work);
102 err_wake_netif_queue:
103 ieee802154_release_queue(local);
104 if (atomic_dec_and_test(&local->phy->ongoing_txs))
105 wake_up(&local->phy->sync_txq);
111 static int ieee802154_sync_queue(struct ieee802154_local *local)
115 ieee802154_hold_queue(local);
116 ieee802154_disable_queue(local);
117 wait_event(local->phy->sync_txq, !atomic_read(&local->phy->ongoing_txs));
118 ret = local->tx_result;
119 ieee802154_release_queue(local);
124 int ieee802154_sync_and_hold_queue(struct ieee802154_local *local)
128 ieee802154_hold_queue(local);
129 ret = ieee802154_sync_queue(local);
130 set_bit(WPAN_PHY_FLAG_STATE_QUEUE_STOPPED, &local->phy->flags);
135 int ieee802154_mlme_op_pre(struct ieee802154_local *local)
137 return ieee802154_sync_and_hold_queue(local);
140 int ieee802154_mlme_tx(struct ieee802154_local *local,
141 struct ieee802154_sub_if_data *sdata,
146 /* Avoid possible calls to ->ndo_stop() when we asynchronously perform
147 * MLME transmissions.
151 /* Ensure the device was not stopped, otherwise error out */
152 if (!local->open_count) {
157 /* Warn if the ieee802154 core thinks MLME frames can be sent while the
158 * net interface expects this cannot happen.
160 if (WARN_ON_ONCE(!netif_running(sdata->dev))) {
165 ieee802154_tx(local, skb);
166 ret = ieee802154_sync_queue(local);
173 void ieee802154_mlme_op_post(struct ieee802154_local *local)
175 ieee802154_release_queue(local);
178 int ieee802154_mlme_tx_one(struct ieee802154_local *local,
179 struct ieee802154_sub_if_data *sdata,
184 ieee802154_mlme_op_pre(local);
185 ret = ieee802154_mlme_tx(local, sdata, skb);
186 ieee802154_mlme_op_post(local);
191 static bool ieee802154_queue_is_stopped(struct ieee802154_local *local)
193 return test_bit(WPAN_PHY_FLAG_STATE_QUEUE_STOPPED, &local->phy->flags);
197 ieee802154_hot_tx(struct ieee802154_local *local, struct sk_buff *skb)
199 /* Warn if the net interface tries to transmit frames while the
200 * ieee802154 core assumes the queue is stopped.
202 WARN_ON_ONCE(ieee802154_queue_is_stopped(local));
204 return ieee802154_tx(local, skb);
208 ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev)
210 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
212 skb->skb_iif = dev->ifindex;
214 return ieee802154_hot_tx(sdata->local, skb);
218 ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev)
220 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
223 /* TODO we should move it to wpan_dev_hard_header and dev_hard_header
224 * functions. The reason is wireshark will show a mac header which is
225 * with security fields but the payload is not encrypted.
227 rc = mac802154_llsec_encrypt(&sdata->sec, skb);
229 netdev_warn(dev, "encryption failed: %i\n", rc);
234 skb->skb_iif = dev->ifindex;
236 return ieee802154_hot_tx(sdata->local, skb);