alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 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 | * |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 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> |
Alexander Aring | 061ef8f | 2014-10-27 17:13:28 +0100 | [diff] [blame] | 23 | #include <asm/unaligned.h> |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 24 | |
Alexander Aring | 6001d52 | 2014-10-26 09:37:09 +0100 | [diff] [blame] | 25 | #include <net/rtnetlink.h> |
Alan Ott | b5992fe | 2013-04-03 04:00:56 +0000 | [diff] [blame] | 26 | #include <net/ieee802154_netdev.h> |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 27 | #include <net/mac802154.h> |
Alexander Aring | 5ad60d3 | 2014-10-25 09:41:02 +0200 | [diff] [blame] | 28 | #include <net/cfg802154.h> |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 29 | |
Alexander Aring | 0f1556b | 2014-10-25 09:41:00 +0200 | [diff] [blame] | 30 | #include "ieee802154_i.h" |
Alexander Aring | 59cb300 | 2014-10-28 18:21:21 +0100 | [diff] [blame] | 31 | #include "driver-ops.h" |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 32 | |
Lennert Buytenhek | c22ff7b | 2015-07-21 17:44:47 +0300 | [diff] [blame] | 33 | void ieee802154_xmit_worker(struct work_struct *work) |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 34 | { |
Lennert Buytenhek | c22ff7b | 2015-07-21 17:44:47 +0300 | [diff] [blame] | 35 | struct ieee802154_local *local = |
| 36 | container_of(work, struct ieee802154_local, tx_work); |
| 37 | struct sk_buff *skb = local->tx_skb; |
Alexander Aring | 409c3b0 | 2014-10-26 09:37:12 +0100 | [diff] [blame] | 38 | struct net_device *dev = skb->dev; |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 39 | int res; |
| 40 | |
Alexander Aring | 6001d52 | 2014-10-26 09:37:09 +0100 | [diff] [blame] | 41 | rtnl_lock(); |
| 42 | |
| 43 | /* check if ifdown occurred while schedule */ |
Alexander Aring | 409c3b0 | 2014-10-26 09:37:12 +0100 | [diff] [blame] | 44 | if (!netif_running(dev)) |
Alexander Aring | 6001d52 | 2014-10-26 09:37:09 +0100 | [diff] [blame] | 45 | goto err_tx; |
| 46 | |
Alexander Aring | 59cb300 | 2014-10-28 18:21:21 +0100 | [diff] [blame] | 47 | res = drv_xmit_sync(local, skb); |
Alexander Aring | 6001d52 | 2014-10-26 09:37:09 +0100 | [diff] [blame] | 48 | if (res) |
| 49 | goto err_tx; |
| 50 | |
Alexander Aring | 61f2dcb | 2014-11-12 19:51:56 +0100 | [diff] [blame] | 51 | ieee802154_xmit_complete(&local->hw, skb, false); |
Alexander Aring | 6001d52 | 2014-10-26 09:37:09 +0100 | [diff] [blame] | 52 | |
Alexander Aring | 409c3b0 | 2014-10-26 09:37:12 +0100 | [diff] [blame] | 53 | dev->stats.tx_packets++; |
| 54 | dev->stats.tx_bytes += skb->len; |
| 55 | |
Alexander Aring | 6001d52 | 2014-10-26 09:37:09 +0100 | [diff] [blame] | 56 | rtnl_unlock(); |
| 57 | |
| 58 | return; |
| 59 | |
| 60 | err_tx: |
| 61 | /* Restart the netif queue on each sub_if_data object. */ |
| 62 | ieee802154_wake_queue(&local->hw); |
| 63 | rtnl_unlock(); |
| 64 | kfree_skb(skb); |
Alexander Aring | 409c3b0 | 2014-10-26 09:37:12 +0100 | [diff] [blame] | 65 | netdev_dbg(dev, "transmission failed\n"); |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Alexander Aring | dc67c6b | 2014-10-26 09:37:04 +0100 | [diff] [blame] | 68 | static netdev_tx_t |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 69 | ieee802154_tx(struct ieee802154_local *local, struct sk_buff *skb) |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 70 | { |
Alexander Aring | 409c3b0 | 2014-10-26 09:37:12 +0100 | [diff] [blame] | 71 | struct net_device *dev = skb->dev; |
Alexander Aring | ed0a5dc | 2014-10-26 09:37:08 +0100 | [diff] [blame] | 72 | int ret; |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 73 | |
Alexander Aring | 90386a7 | 2014-10-29 21:34:34 +0100 | [diff] [blame] | 74 | if (!(local->hw.flags & IEEE802154_HW_TX_OMIT_CKSUM)) { |
Alexander Aring | 061ef8f | 2014-10-27 17:13:28 +0100 | [diff] [blame] | 75 | u16 crc = crc_ccitt(0, skb->data, skb->len); |
Varka Bhadram | 4710d80 | 2014-07-02 09:01:09 +0530 | [diff] [blame] | 76 | |
Alexander Aring | 061ef8f | 2014-10-27 17:13:28 +0100 | [diff] [blame] | 77 | put_unaligned_le16(crc, skb_put(skb, 2)); |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Alan Ott | b5992fe | 2013-04-03 04:00:56 +0000 | [diff] [blame] | 80 | /* Stop the netif queue on each sub_if_data object. */ |
Alexander Aring | 18d60a0 | 2014-10-26 09:37:06 +0100 | [diff] [blame] | 81 | ieee802154_stop_queue(&local->hw); |
Alan Ott | b5992fe | 2013-04-03 04:00:56 +0000 | [diff] [blame] | 82 | |
Alexander Aring | ed0a5dc | 2014-10-26 09:37:08 +0100 | [diff] [blame] | 83 | /* async is priority, otherwise sync is fallback */ |
| 84 | if (local->ops->xmit_async) { |
Alexander Aring | 59cb300 | 2014-10-28 18:21:21 +0100 | [diff] [blame] | 85 | ret = drv_xmit_async(local, skb); |
Alexander Aring | ed0a5dc | 2014-10-26 09:37:08 +0100 | [diff] [blame] | 86 | if (ret) { |
| 87 | ieee802154_wake_queue(&local->hw); |
| 88 | goto err_tx; |
| 89 | } |
Alexander Aring | 409c3b0 | 2014-10-26 09:37:12 +0100 | [diff] [blame] | 90 | |
| 91 | dev->stats.tx_packets++; |
| 92 | dev->stats.tx_bytes += skb->len; |
Alexander Aring | ed0a5dc | 2014-10-26 09:37:08 +0100 | [diff] [blame] | 93 | } else { |
Lennert Buytenhek | c22ff7b | 2015-07-21 17:44:47 +0300 | [diff] [blame] | 94 | local->tx_skb = skb; |
| 95 | queue_work(local->workqueue, &local->tx_work); |
Alexander Aring | ed0a5dc | 2014-10-26 09:37:08 +0100 | [diff] [blame] | 96 | } |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 97 | |
| 98 | return NETDEV_TX_OK; |
Varka Bhadram | f558891 | 2014-08-11 13:25:10 +0200 | [diff] [blame] | 99 | |
| 100 | err_tx: |
| 101 | kfree_skb(skb); |
| 102 | return NETDEV_TX_OK; |
alex.bluesman.smirnov@gmail.com | 5b641eb | 2012-05-15 20:50:22 +0000 | [diff] [blame] | 103 | } |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 104 | |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 105 | netdev_tx_t |
| 106 | ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev) |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 107 | { |
| 108 | struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev); |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 109 | |
| 110 | skb->skb_iif = dev->ifindex; |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 111 | |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 112 | return ieee802154_tx(sdata->local, skb); |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 113 | } |
| 114 | |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 115 | netdev_tx_t |
| 116 | ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev) |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 117 | { |
| 118 | struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev); |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 119 | int rc; |
| 120 | |
Alexander Aring | d58a2fa | 2015-09-28 09:00:26 +0200 | [diff] [blame] | 121 | /* TODO we should move it to wpan_dev_hard_header and dev_hard_header |
| 122 | * functions. The reason is wireshark will show a mac header which is |
| 123 | * with security fields but the payload is not encrypted. |
| 124 | */ |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 125 | rc = mac802154_llsec_encrypt(&sdata->sec, skb); |
| 126 | if (rc) { |
Alexander Aring | cfa626c | 2014-10-26 09:37:10 +0100 | [diff] [blame] | 127 | netdev_warn(dev, "encryption failed: %i\n", rc); |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 128 | kfree_skb(skb); |
| 129 | return NETDEV_TX_OK; |
| 130 | } |
| 131 | |
| 132 | skb->skb_iif = dev->ifindex; |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 133 | |
Alexander Aring | e5e584f | 2014-10-26 09:37:13 +0100 | [diff] [blame] | 134 | return ieee802154_tx(sdata->local, skb); |
Alexander Aring | 50c6fb9 | 2014-10-26 09:37:01 +0100 | [diff] [blame] | 135 | } |