mac802154: tx: cleanup crc calculation
[cascardo/linux.git] / net / mac802154 / tx.c
1 /*
2  * Copyright 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  * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
15  * Sergey Lapin <slapin@ossfans.org>
16  * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
17  * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
18  */
19
20 #include <linux/netdevice.h>
21 #include <linux/if_arp.h>
22 #include <linux/crc-ccitt.h>
23
24 #include <net/rtnetlink.h>
25 #include <net/ieee802154_netdev.h>
26 #include <net/mac802154.h>
27 #include <net/cfg802154.h>
28
29 #include "ieee802154_i.h"
30
31 /* IEEE 802.15.4 transceivers can sleep during the xmit session, so process
32  * packets through the workqueue.
33  */
34 struct wpan_xmit_cb {
35         struct sk_buff *skb;
36         struct work_struct work;
37         struct ieee802154_local *local;
38 };
39
40 static inline struct wpan_xmit_cb *wpan_xmit_cb(const struct sk_buff *skb)
41 {
42         BUILD_BUG_ON(sizeof(skb->cb) < sizeof(struct wpan_xmit_cb));
43
44         return (struct wpan_xmit_cb *)skb->cb;
45 }
46
47 static void mac802154_xmit_worker(struct work_struct *work)
48 {
49         struct wpan_xmit_cb *cb = container_of(work, struct wpan_xmit_cb, work);
50         struct ieee802154_local *local = cb->local;
51         struct sk_buff *skb = cb->skb;
52         int res;
53
54         rtnl_lock();
55
56         /* check if ifdown occurred while schedule */
57         if (!netif_running(skb->dev))
58                 goto err_tx;
59
60         res = local->ops->xmit_sync(&local->hw, skb);
61         if (res)
62                 goto err_tx;
63
64         ieee802154_xmit_complete(&local->hw, skb);
65
66         rtnl_unlock();
67
68         return;
69
70 err_tx:
71         /* Restart the netif queue on each sub_if_data object. */
72         ieee802154_wake_queue(&local->hw);
73         rtnl_unlock();
74         kfree_skb(skb);
75         netdev_dbg(skb->dev, "transmission failed\n");
76 }
77
78 static netdev_tx_t
79 mac802154_tx(struct ieee802154_local *local, struct sk_buff *skb)
80 {
81         struct wpan_xmit_cb *cb = wpan_xmit_cb(skb);
82         int ret;
83
84         mac802154_monitors_rx(local, skb);
85
86         if (!(local->hw.flags & IEEE802154_HW_OMIT_CKSUM)) {
87                 __le16 crc = cpu_to_le16(crc_ccitt(0, skb->data, skb->len));
88
89                 memcpy(skb_put(skb, 2), &crc, 2);
90         }
91
92         if (skb_cow_head(skb, local->hw.extra_tx_headroom))
93                 goto err_tx;
94
95         /* Stop the netif queue on each sub_if_data object. */
96         ieee802154_stop_queue(&local->hw);
97
98         /* async is priority, otherwise sync is fallback */
99         if (local->ops->xmit_async) {
100                 ret = local->ops->xmit_async(&local->hw, skb);
101                 if (ret) {
102                         ieee802154_wake_queue(&local->hw);
103                         goto err_tx;
104                 }
105         } else {
106                 INIT_WORK(&cb->work, mac802154_xmit_worker);
107                 cb->skb = skb;
108                 cb->local = local;
109
110                 queue_work(local->workqueue, &cb->work);
111         }
112
113         return NETDEV_TX_OK;
114
115 err_tx:
116         kfree_skb(skb);
117         return NETDEV_TX_OK;
118 }
119
120 netdev_tx_t mac802154_monitor_xmit(struct sk_buff *skb, struct net_device *dev)
121 {
122         struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
123
124         skb->skb_iif = dev->ifindex;
125         dev->stats.tx_packets++;
126         dev->stats.tx_bytes += skb->len;
127
128         return mac802154_tx(sdata->local, skb);
129 }
130
131 netdev_tx_t mac802154_wpan_xmit(struct sk_buff *skb, struct net_device *dev)
132 {
133         struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
134         int rc;
135
136         rc = mac802154_llsec_encrypt(&sdata->sec, skb);
137         if (rc) {
138                 netdev_warn(dev, "encryption failed: %i\n", rc);
139                 kfree_skb(skb);
140                 return NETDEV_TX_OK;
141         }
142
143         skb->skb_iif = dev->ifindex;
144         dev->stats.tx_packets++;
145         dev->stats.tx_bytes += skb->len;
146
147         return mac802154_tx(sdata->local, skb);
148 }