blob: 0d039411e64c2cba5c2a88fe8c47bfeb514534b8 [file] [log] [blame]
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001#include <linux/etherdevice.h>
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08002#include <linux/if_tap.h>
Basil Gorf09e2242012-05-03 22:55:24 +00003#include <linux/if_vlan.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +00004#include <linux/interrupt.h>
5#include <linux/nsproxy.h>
6#include <linux/compat.h>
7#include <linux/if_tun.h>
8#include <linux/module.h>
9#include <linux/skbuff.h>
10#include <linux/cache.h>
Ingo Molnarc3edc402017-02-02 08:35:14 +010011#include <linux/sched/signal.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000012#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000014#include <linux/wait.h>
15#include <linux/cdev.h>
Al Viro40401532012-02-13 03:58:52 +000016#include <linux/idr.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000017#include <linux/fs.h>
Herbert Xu6c36d2e2014-11-07 21:22:25 +080018#include <linux/uio.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000019
20#include <net/net_namespace.h>
21#include <net/rtnetlink.h>
22#include <net/sock.h>
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +000023#include <linux/virtio_net.h>
Jason Wang362899b2016-07-15 03:46:31 -040024#include <linux/skb_array.h>
Arnd Bergmann20d29d72010-01-30 12:24:26 +000025
Sainath Grandhi635b8c82017-02-10 16:03:47 -080026#define TAP_IFFEATURES (IFF_VNET_HDR | IFF_MULTI_QUEUE)
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +020027
Sainath Grandhi635b8c82017-02-10 16:03:47 -080028#define TAP_VNET_LE 0x80000000
29#define TAP_VNET_BE 0x40000000
Greg Kurz8b8e6582015-04-24 14:50:36 +020030
31#ifdef CONFIG_TUN_VNET_CROSS_LE
Sainath Grandhi635b8c82017-02-10 16:03:47 -080032static inline bool tap_legacy_is_little_endian(struct tap_queue *q)
Greg Kurz8b8e6582015-04-24 14:50:36 +020033{
Sainath Grandhi635b8c82017-02-10 16:03:47 -080034 return q->flags & TAP_VNET_BE ? false :
Greg Kurz8b8e6582015-04-24 14:50:36 +020035 virtio_legacy_is_little_endian();
36}
37
Sainath Grandhi635b8c82017-02-10 16:03:47 -080038static long tap_get_vnet_be(struct tap_queue *q, int __user *sp)
Greg Kurz8b8e6582015-04-24 14:50:36 +020039{
Sainath Grandhi635b8c82017-02-10 16:03:47 -080040 int s = !!(q->flags & TAP_VNET_BE);
Greg Kurz8b8e6582015-04-24 14:50:36 +020041
42 if (put_user(s, sp))
43 return -EFAULT;
44
45 return 0;
46}
47
Sainath Grandhi635b8c82017-02-10 16:03:47 -080048static long tap_set_vnet_be(struct tap_queue *q, int __user *sp)
Greg Kurz8b8e6582015-04-24 14:50:36 +020049{
50 int s;
51
52 if (get_user(s, sp))
53 return -EFAULT;
54
55 if (s)
Sainath Grandhi635b8c82017-02-10 16:03:47 -080056 q->flags |= TAP_VNET_BE;
Greg Kurz8b8e6582015-04-24 14:50:36 +020057 else
Sainath Grandhi635b8c82017-02-10 16:03:47 -080058 q->flags &= ~TAP_VNET_BE;
Greg Kurz8b8e6582015-04-24 14:50:36 +020059
60 return 0;
61}
62#else
Sainath Grandhi635b8c82017-02-10 16:03:47 -080063static inline bool tap_legacy_is_little_endian(struct tap_queue *q)
Greg Kurz8b8e6582015-04-24 14:50:36 +020064{
65 return virtio_legacy_is_little_endian();
66}
67
Sainath Grandhi635b8c82017-02-10 16:03:47 -080068static long tap_get_vnet_be(struct tap_queue *q, int __user *argp)
Greg Kurz8b8e6582015-04-24 14:50:36 +020069{
70 return -EINVAL;
71}
72
Sainath Grandhi635b8c82017-02-10 16:03:47 -080073static long tap_set_vnet_be(struct tap_queue *q, int __user *argp)
Greg Kurz8b8e6582015-04-24 14:50:36 +020074{
75 return -EINVAL;
76}
77#endif /* CONFIG_TUN_VNET_CROSS_LE */
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +020078
Sainath Grandhi635b8c82017-02-10 16:03:47 -080079static inline bool tap_is_little_endian(struct tap_queue *q)
Greg Kurz5b11e152015-04-24 14:24:48 +020080{
Sainath Grandhi635b8c82017-02-10 16:03:47 -080081 return q->flags & TAP_VNET_LE ||
82 tap_legacy_is_little_endian(q);
Greg Kurz5b11e152015-04-24 14:24:48 +020083}
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +020084
Sainath Grandhi635b8c82017-02-10 16:03:47 -080085static inline u16 tap16_to_cpu(struct tap_queue *q, __virtio16 val)
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +020086{
Sainath Grandhi635b8c82017-02-10 16:03:47 -080087 return __virtio16_to_cpu(tap_is_little_endian(q), val);
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +020088}
89
Sainath Grandhi635b8c82017-02-10 16:03:47 -080090static inline __virtio16 cpu_to_tap16(struct tap_queue *q, u16 val)
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +020091{
Sainath Grandhi635b8c82017-02-10 16:03:47 -080092 return __cpu_to_virtio16(tap_is_little_endian(q), val);
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +020093}
94
Sainath Grandhi635b8c82017-02-10 16:03:47 -080095static struct proto tap_proto = {
96 .name = "tap",
Arnd Bergmann20d29d72010-01-30 12:24:26 +000097 .owner = THIS_MODULE,
Sainath Grandhi635b8c82017-02-10 16:03:47 -080098 .obj_size = sizeof(struct tap_queue),
Arnd Bergmann20d29d72010-01-30 12:24:26 +000099};
100
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800101#define TAP_NUM_DEVS (1U << MINORBITS)
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800102
103static LIST_HEAD(major_list);
104
Sainath Grandhiebc05ba2017-02-10 16:03:48 -0800105struct major_info {
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800106 struct rcu_head rcu;
Sainath Grandhiebc05ba2017-02-10 16:03:48 -0800107 dev_t major;
108 struct idr minor_idr;
WANG Congffa423f2017-07-10 10:05:50 -0700109 spinlock_t minor_lock;
Sainath Grandhiebc05ba2017-02-10 16:03:48 -0800110 const char *device_name;
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800111 struct list_head next;
112};
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000113
Shirley Ma97bc3632011-07-06 12:26:11 +0000114#define GOODCOPY_LEN 128
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000115
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800116static const struct proto_ops tap_socket_ops;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000117
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400118#define RX_OFFLOADS (NETIF_F_GRO | NETIF_F_LRO)
Jason Wangf23d5382015-10-23 00:57:05 -0400119#define TAP_FEATURES (NETIF_F_GSO | NETIF_F_SG | NETIF_F_FRAGLIST)
Vlad Yasevicha567dd62013-08-16 15:25:00 -0400120
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800121static struct tap_dev *tap_dev_get_rcu(const struct net_device *dev)
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500122{
123 return rcu_dereference(dev->rx_handler_data);
124}
125
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000126/*
127 * RCU usage:
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800128 * The tap_queue and the macvlan_dev are loosely coupled, the
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000129 * pointers from one to the other can only be read while rcu_read_lock
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400130 * or rtnl is held.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000131 *
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800132 * Both the file and the macvlan_dev hold a reference on the tap_queue
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000133 * through sock_hold(&q->sk). When the macvlan_dev goes away first,
134 * q->vlan becomes inaccessible. When the files gets closed,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800135 * tap_get_queue() fails.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000136 *
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000137 * There may still be references to the struct sock inside of the
138 * queue from outbound SKBs, but these never reference back to the
139 * file or the dev. The data structure is freed through __sk_free
140 * when both our references and any pending SKBs are gone.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000141 */
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000142
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800143static int tap_enable_queue(struct tap_dev *tap, struct file *file,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800144 struct tap_queue *q)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000145{
Jason Wang815f2362013-06-05 23:54:39 +0000146 int err = -EINVAL;
147
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400148 ASSERT_RTNL();
Jason Wang815f2362013-06-05 23:54:39 +0000149
150 if (q->enabled)
151 goto out;
152
153 err = 0;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800154 rcu_assign_pointer(tap->taps[tap->numvtaps], q);
155 q->queue_index = tap->numvtaps;
Jason Wang815f2362013-06-05 23:54:39 +0000156 q->enabled = true;
157
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800158 tap->numvtaps++;
Jason Wang815f2362013-06-05 23:54:39 +0000159out:
Jason Wang815f2362013-06-05 23:54:39 +0000160 return err;
161}
162
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400163/* Requires RTNL */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800164static int tap_set_queue(struct tap_dev *tap, struct file *file,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800165 struct tap_queue *q)
Jason Wang815f2362013-06-05 23:54:39 +0000166{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800167 if (tap->numqueues == MAX_TAP_QUEUES)
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400168 return -EBUSY;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000169
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800170 rcu_assign_pointer(q->tap, tap);
171 rcu_assign_pointer(tap->taps[tap->numvtaps], q);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000172 sock_hold(&q->sk);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000173
174 q->file = file;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800175 q->queue_index = tap->numvtaps;
Jason Wang815f2362013-06-05 23:54:39 +0000176 q->enabled = true;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000177 file->private_data = q;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800178 list_add_tail(&q->next, &tap->queue_list);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000179
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800180 tap->numvtaps++;
181 tap->numqueues++;
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000182
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400183 return 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000184}
185
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800186static int tap_disable_queue(struct tap_queue *q)
Jason Wang815f2362013-06-05 23:54:39 +0000187{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800188 struct tap_dev *tap;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800189 struct tap_queue *nq;
Jason Wang815f2362013-06-05 23:54:39 +0000190
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400191 ASSERT_RTNL();
Jason Wang815f2362013-06-05 23:54:39 +0000192 if (!q->enabled)
193 return -EINVAL;
194
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800195 tap = rtnl_dereference(q->tap);
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400196
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800197 if (tap) {
Jason Wang815f2362013-06-05 23:54:39 +0000198 int index = q->queue_index;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800199 BUG_ON(index >= tap->numvtaps);
200 nq = rtnl_dereference(tap->taps[tap->numvtaps - 1]);
Jason Wang815f2362013-06-05 23:54:39 +0000201 nq->queue_index = index;
202
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800203 rcu_assign_pointer(tap->taps[index], nq);
204 RCU_INIT_POINTER(tap->taps[tap->numvtaps - 1], NULL);
Jason Wang815f2362013-06-05 23:54:39 +0000205 q->enabled = false;
206
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800207 tap->numvtaps--;
Jason Wang815f2362013-06-05 23:54:39 +0000208 }
209
210 return 0;
211}
212
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000213/*
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000214 * The file owning the queue got closed, give up both
215 * the reference that the files holds as well as the
216 * one from the macvlan_dev if that still exists.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000217 *
218 * Using the spinlock makes sure that we don't get
219 * to the queue again after destroying it.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000220 */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800221static void tap_put_queue(struct tap_queue *q)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000222{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800223 struct tap_dev *tap;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000224
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400225 rtnl_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800226 tap = rtnl_dereference(q->tap);
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400227
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800228 if (tap) {
Jason Wang815f2362013-06-05 23:54:39 +0000229 if (q->enabled)
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800230 BUG_ON(tap_disable_queue(q));
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000231
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800232 tap->numqueues--;
233 RCU_INIT_POINTER(q->tap, NULL);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000234 sock_put(&q->sk);
Jason Wang815f2362013-06-05 23:54:39 +0000235 list_del_init(&q->next);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000236 }
237
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400238 rtnl_unlock();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000239
240 synchronize_rcu();
241 sock_put(&q->sk);
242}
243
244/*
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000245 * Select a queue based on the rxq of the device on which this packet
246 * arrived. If the incoming device is not mq, calculate a flow hash
247 * to select a queue. If all fails, find the first available queue.
248 * Cache vlan->numvtaps since it can become zero during the execution
249 * of this function.
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000250 */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800251static struct tap_queue *tap_get_queue(struct tap_dev *tap,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800252 struct sk_buff *skb)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000253{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800254 struct tap_queue *queue = NULL;
Jason Wang815f2362013-06-05 23:54:39 +0000255 /* Access to taps array is protected by rcu, but access to numvtaps
256 * isn't. Below we use it to lookup a queue, but treat it as a hint
257 * and validate that the result isn't NULL - in case we are
258 * racing against queue removal.
259 */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800260 int numvtaps = ACCESS_ONCE(tap->numvtaps);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000261 __u32 rxq;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000262
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000263 if (!numvtaps)
264 goto out;
265
Jason Wang1b16bf42016-07-15 03:46:30 -0400266 if (numvtaps == 1)
267 goto single;
268
Krishna Kumaref0002b2011-11-23 22:17:14 +0000269 /* Check if we can use flow to select a queue */
Tom Herbert3958afa1b2013-12-15 22:12:06 -0800270 rxq = skb_get_hash(skb);
Krishna Kumaref0002b2011-11-23 22:17:14 +0000271 if (rxq) {
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800272 queue = rcu_dereference(tap->taps[rxq % numvtaps]);
Jason Wang376b1aa2013-06-05 23:54:38 +0000273 goto out;
Krishna Kumaref0002b2011-11-23 22:17:14 +0000274 }
275
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000276 if (likely(skb_rx_queue_recorded(skb))) {
277 rxq = skb_get_rx_queue(skb);
278
279 while (unlikely(rxq >= numvtaps))
280 rxq -= numvtaps;
281
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800282 queue = rcu_dereference(tap->taps[rxq]);
Jason Wang376b1aa2013-06-05 23:54:38 +0000283 goto out;
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000284 }
285
Jason Wang1b16bf42016-07-15 03:46:30 -0400286single:
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800287 queue = rcu_dereference(tap->taps[0]);
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000288out:
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800289 return queue;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000290}
291
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000292/*
293 * The net_device is going away, give up the reference
Krishna Kumar1565c7c2010-08-04 06:15:59 +0000294 * that it holds on all queues and safely set the pointer
295 * from the queues to NULL.
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000296 */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800297void tap_del_queues(struct tap_dev *tap)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000298{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800299 struct tap_queue *q, *tmp;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000300
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400301 ASSERT_RTNL();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800302 list_for_each_entry_safe(q, tmp, &tap->queue_list, next) {
Jason Wang815f2362013-06-05 23:54:39 +0000303 list_del_init(&q->next);
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800304 RCU_INIT_POINTER(q->tap, NULL);
Jason Wang815f2362013-06-05 23:54:39 +0000305 if (q->enabled)
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800306 tap->numvtaps--;
307 tap->numqueues--;
Pankaj Guptadfe816c2015-06-19 19:47:53 +0530308 sock_put(&q->sk);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000309 }
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800310 BUG_ON(tap->numvtaps);
311 BUG_ON(tap->numqueues);
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800312 /* guarantee that any future tap_set_queue will fail */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800313 tap->numvtaps = MAX_TAP_QUEUES;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000314}
Sainath Grandhi9a393b52017-02-10 16:03:51 -0800315EXPORT_SYMBOL_GPL(tap_del_queues);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000316
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800317rx_handler_result_t tap_handle_frame(struct sk_buff **pskb)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000318{
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500319 struct sk_buff *skb = *pskb;
320 struct net_device *dev = skb->dev;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800321 struct tap_dev *tap;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800322 struct tap_queue *q;
Vlad Yasevicha567dd62013-08-16 15:25:00 -0400323 netdev_features_t features = TAP_FEATURES;
324
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800325 tap = tap_dev_get_rcu(dev);
326 if (!tap)
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500327 return RX_HANDLER_PASS;
328
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800329 q = tap_get_queue(tap, skb);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000330 if (!q)
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500331 return RX_HANDLER_PASS;
Herbert Xu8a357472010-07-21 21:44:31 +0000332
Jason Wang362899b2016-07-15 03:46:31 -0400333 if (__skb_array_full(&q->skb_array))
Herbert Xu8a357472010-07-21 21:44:31 +0000334 goto drop;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000335
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500336 skb_push(skb, ETH_HLEN);
337
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400338 /* Apply the forward feature mask so that we perform segmentation
Vlad Yaseviche5733322013-08-16 15:25:02 -0400339 * according to users wishes. This only works if VNET_HDR is
340 * enabled.
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400341 */
Vlad Yaseviche5733322013-08-16 15:25:02 -0400342 if (q->flags & IFF_VNET_HDR)
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800343 features |= tap->tap_features;
Johannes Berg8b86a612015-04-17 15:45:04 +0200344 if (netif_needs_gso(skb, features)) {
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400345 struct sk_buff *segs = __skb_gso_segment(skb, features, false);
346
347 if (IS_ERR(segs))
348 goto drop;
349
350 if (!segs) {
Jason Wang362899b2016-07-15 03:46:31 -0400351 if (skb_array_produce(&q->skb_array, skb))
352 goto drop;
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400353 goto wake_up;
354 }
355
Eric Dumazetbe0bd312016-05-06 05:58:21 -0700356 consume_skb(skb);
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400357 while (segs) {
358 struct sk_buff *nskb = segs->next;
359
360 segs->next = NULL;
Jason Wang362899b2016-07-15 03:46:31 -0400361 if (skb_array_produce(&q->skb_array, segs)) {
362 kfree_skb(segs);
363 kfree_skb_list(nskb);
364 break;
365 }
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400366 segs = nskb;
367 }
368 } else {
Vlad Yasevichcbdb0422014-04-29 10:09:50 -0400369 /* If we receive a partial checksum and the tap side
370 * doesn't support checksum offload, compute the checksum.
371 * Note: it doesn't matter which checksum feature to
Sainath Grandhia8e04692017-02-10 16:03:46 -0800372 * check, we either support them all or none.
Vlad Yasevichcbdb0422014-04-29 10:09:50 -0400373 */
374 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Tom Herberta1882222015-12-14 11:19:43 -0800375 !(features & NETIF_F_CSUM_MASK) &&
Vlad Yasevichcbdb0422014-04-29 10:09:50 -0400376 skb_checksum_help(skb))
377 goto drop;
Jason Wang362899b2016-07-15 03:46:31 -0400378 if (skb_array_produce(&q->skb_array, skb))
379 goto drop;
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400380 }
381
382wake_up:
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000383 wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500384 return RX_HANDLER_CONSUMED;
Herbert Xu8a357472010-07-21 21:44:31 +0000385
386drop:
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500387 /* Count errors/drops only here, thus don't care about args. */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800388 if (tap->count_rx_dropped)
389 tap->count_rx_dropped(tap);
Herbert Xu8a357472010-07-21 21:44:31 +0000390 kfree_skb(skb);
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500391 return RX_HANDLER_CONSUMED;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000392}
Sainath Grandhi9a393b52017-02-10 16:03:51 -0800393EXPORT_SYMBOL_GPL(tap_handle_frame);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000394
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800395static struct major_info *tap_get_major(int major)
396{
397 struct major_info *tap_major;
398
399 list_for_each_entry_rcu(tap_major, &major_list, next) {
400 if (tap_major->major == major)
401 return tap_major;
402 }
403
404 return NULL;
405}
406
407int tap_get_minor(dev_t major, struct tap_dev *tap)
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000408{
409 int retval = -ENOMEM;
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800410 struct major_info *tap_major;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000411
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800412 rcu_read_lock();
413 tap_major = tap_get_major(MAJOR(major));
414 if (!tap_major) {
415 retval = -EINVAL;
416 goto unlock;
417 }
418
WANG Congffa423f2017-07-10 10:05:50 -0700419 spin_lock(&tap_major->minor_lock);
420 retval = idr_alloc(&tap_major->minor_idr, tap, 1, TAP_NUM_DEVS, GFP_ATOMIC);
Tejun Heoec09ebc2013-02-27 17:04:34 -0800421 if (retval >= 0) {
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800422 tap->minor = retval;
Tejun Heoec09ebc2013-02-27 17:04:34 -0800423 } else if (retval == -ENOSPC) {
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800424 netdev_err(tap->dev, "Too many tap devices\n");
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000425 retval = -EINVAL;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000426 }
WANG Congffa423f2017-07-10 10:05:50 -0700427 spin_unlock(&tap_major->minor_lock);
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800428
429unlock:
430 rcu_read_unlock();
Tejun Heoec09ebc2013-02-27 17:04:34 -0800431 return retval < 0 ? retval : 0;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000432}
Sainath Grandhi9a393b52017-02-10 16:03:51 -0800433EXPORT_SYMBOL_GPL(tap_get_minor);
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000434
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800435void tap_free_minor(dev_t major, struct tap_dev *tap)
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000436{
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800437 struct major_info *tap_major;
438
439 rcu_read_lock();
440 tap_major = tap_get_major(MAJOR(major));
441 if (!tap_major) {
442 goto unlock;
443 }
444
WANG Congffa423f2017-07-10 10:05:50 -0700445 spin_lock(&tap_major->minor_lock);
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800446 if (tap->minor) {
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800447 idr_remove(&tap_major->minor_idr, tap->minor);
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800448 tap->minor = 0;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000449 }
WANG Congffa423f2017-07-10 10:05:50 -0700450 spin_unlock(&tap_major->minor_lock);
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800451
452unlock:
453 rcu_read_unlock();
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000454}
Sainath Grandhi9a393b52017-02-10 16:03:51 -0800455EXPORT_SYMBOL_GPL(tap_free_minor);
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000456
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800457static struct tap_dev *dev_get_by_tap_file(int major, int minor)
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000458{
459 struct net_device *dev = NULL;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800460 struct tap_dev *tap;
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800461 struct major_info *tap_major;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000462
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800463 rcu_read_lock();
464 tap_major = tap_get_major(major);
465 if (!tap_major) {
466 tap = NULL;
467 goto unlock;
468 }
469
WANG Congffa423f2017-07-10 10:05:50 -0700470 spin_lock(&tap_major->minor_lock);
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800471 tap = idr_find(&tap_major->minor_idr, minor);
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800472 if (tap) {
473 dev = tap->dev;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000474 dev_hold(dev);
475 }
WANG Congffa423f2017-07-10 10:05:50 -0700476 spin_unlock(&tap_major->minor_lock);
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800477
478unlock:
479 rcu_read_unlock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800480 return tap;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000481}
482
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800483static void tap_sock_write_space(struct sock *sk)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000484{
Eric Dumazet43815482010-04-29 11:01:49 +0000485 wait_queue_head_t *wqueue;
486
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000487 if (!sock_writeable(sk) ||
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800488 !test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000489 return;
490
Eric Dumazet43815482010-04-29 11:01:49 +0000491 wqueue = sk_sleep(sk);
492 if (wqueue && waitqueue_active(wqueue))
493 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000494}
495
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800496static void tap_sock_destruct(struct sock *sk)
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000497{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800498 struct tap_queue *q = container_of(sk, struct tap_queue, sk);
Jason Wang362899b2016-07-15 03:46:31 -0400499
Jason Wang104a4932016-08-11 18:15:56 +0800500 skb_array_cleanup(&q->skb_array);
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000501}
502
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800503static int tap_open(struct inode *inode, struct file *file)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000504{
505 struct net *net = current->nsproxy->net_ns;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800506 struct tap_dev *tap;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800507 struct tap_queue *q;
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400508 int err = -ENODEV;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000509
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400510 rtnl_lock();
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800511 tap = dev_get_by_tap_file(imajor(inode), iminor(inode));
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800512 if (!tap)
Jason Wang362899b2016-07-15 03:46:31 -0400513 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000514
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000515 err = -ENOMEM;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800516 q = (struct tap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
517 &tap_proto, 0);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000518 if (!q)
Jason Wang362899b2016-07-15 03:46:31 -0400519 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000520
Jason Wangd9a90a32013-06-13 14:23:35 +0800521 RCU_INIT_POINTER(q->sock.wq, &q->wq);
Eric Dumazet43815482010-04-29 11:01:49 +0000522 init_waitqueue_head(&q->wq.wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000523 q->sock.type = SOCK_RAW;
524 q->sock.state = SS_CONNECTED;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000525 q->sock.file = file;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800526 q->sock.ops = &tap_socket_ops;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000527 sock_init_data(&q->sock, &q->sk);
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800528 q->sk.sk_write_space = tap_sock_write_space;
529 q->sk.sk_destruct = tap_sock_destruct;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000530 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300531 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000532
Shirley Ma97bc3632011-07-06 12:26:11 +0000533 /*
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800534 * so far only KVM virtio_net uses tap, enable zero copy between
Shirley Ma97bc3632011-07-06 12:26:11 +0000535 * guest kernel and host kernel when lower device supports zerocopy
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000536 *
537 * The macvlan supports zerocopy iff the lower device supports zero
538 * copy so we don't have to look at the lower device directly.
Shirley Ma97bc3632011-07-06 12:26:11 +0000539 */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800540 if ((tap->dev->features & NETIF_F_HIGHDMA) && (tap->dev->features & NETIF_F_SG))
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000541 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
Shirley Ma97bc3632011-07-06 12:26:11 +0000542
Jason Wang362899b2016-07-15 03:46:31 -0400543 err = -ENOMEM;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800544 if (skb_array_init(&q->skb_array, tap->dev->tx_queue_len, GFP_KERNEL))
Jason Wang362899b2016-07-15 03:46:31 -0400545 goto err_array;
546
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800547 err = tap_set_queue(tap, file, q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000548 if (err)
Jason Wang362899b2016-07-15 03:46:31 -0400549 goto err_queue;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000550
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800551 dev_put(tap->dev);
Jason Wang362899b2016-07-15 03:46:31 -0400552
553 rtnl_unlock();
554 return err;
555
556err_queue:
557 skb_array_cleanup(&q->skb_array);
558err_array:
559 sock_put(&q->sk);
560err:
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800561 if (tap)
562 dev_put(tap->dev);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000563
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400564 rtnl_unlock();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000565 return err;
566}
567
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800568static int tap_release(struct inode *inode, struct file *file)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000569{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800570 struct tap_queue *q = file->private_data;
571 tap_put_queue(q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000572 return 0;
573}
574
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800575static unsigned int tap_poll(struct file *file, poll_table *wait)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000576{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800577 struct tap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000578 unsigned int mask = POLLERR;
579
580 if (!q)
581 goto out;
582
583 mask = 0;
Eric Dumazet43815482010-04-29 11:01:49 +0000584 poll_wait(file, &q->wq.wait, wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000585
Jason Wang362899b2016-07-15 03:46:31 -0400586 if (!skb_array_empty(&q->skb_array))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000587 mask |= POLLIN | POLLRDNORM;
588
589 if (sock_writeable(&q->sk) ||
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800590 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &q->sock.flags) &&
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000591 sock_writeable(&q->sk)))
592 mask |= POLLOUT | POLLWRNORM;
593
594out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000595 return mask;
596}
597
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800598static inline struct sk_buff *tap_alloc_skb(struct sock *sk, size_t prepad,
599 size_t len, size_t linear,
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000600 int noblock, int *err)
601{
602 struct sk_buff *skb;
603
604 /* Under a page? Don't bother with paged skb. */
605 if (prepad + len < PAGE_SIZE || !linear)
606 linear = len;
607
608 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -0700609 err, 0);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000610 if (!skb)
611 return NULL;
612
613 skb_reserve(skb, prepad);
614 skb_put(skb, linear);
615 skb->data_len = len - linear;
616 skb->len += len - linear;
617
618 return skb;
619}
620
Eric Dumazet2f1d8b92015-02-27 18:35:35 -0800621/* Neighbour code has some assumptions on HH_DATA_MOD alignment */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800622#define TAP_RESERVE HH_DATA_OFF(ETH_HLEN)
Eric Dumazet2f1d8b92015-02-27 18:35:35 -0800623
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000624/* Get packet from user space buffer */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800625static ssize_t tap_get_user(struct tap_queue *q, struct msghdr *m,
626 struct iov_iter *from, int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000627{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800628 int good_linear = SKB_MAX_HEAD(TAP_RESERVE);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000629 struct sk_buff *skb;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800630 struct tap_dev *tap;
Al Virof5ff53b2014-06-19 15:36:49 -0400631 unsigned long total_len = iov_iter_count(from);
Shirley Ma97bc3632011-07-06 12:26:11 +0000632 unsigned long len = total_len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000633 int err;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000634 struct virtio_net_hdr vnet_hdr = { 0 };
635 int vnet_hdr_len = 0;
Jason Wangb92946e2012-05-02 11:42:15 +0800636 int copylen = 0;
Ivan Vecerac5c62f12015-07-23 16:37:43 +0200637 int depth;
Shirley Ma97bc3632011-07-06 12:26:11 +0000638 bool zerocopy = false;
Jason Wang61d46bf2013-07-10 13:43:28 +0800639 size_t linear;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000640
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000641 if (q->flags & IFF_VNET_HDR) {
Willem de Bruijn837585a2017-02-03 18:20:49 -0500642 vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000643
644 err = -EINVAL;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000645 if (len < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000646 goto err;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000647 len -= vnet_hdr_len;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000648
Al Virof5ff53b2014-06-19 15:36:49 -0400649 err = -EFAULT;
Al Virocbbd26b2016-11-01 22:09:04 -0400650 if (!copy_from_iter_full(&vnet_hdr, sizeof(vnet_hdr), from))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000651 goto err;
Al Virof5ff53b2014-06-19 15:36:49 -0400652 iov_iter_advance(from, vnet_hdr_len - sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000653 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800654 tap16_to_cpu(q, vnet_hdr.csum_start) +
655 tap16_to_cpu(q, vnet_hdr.csum_offset) + 2 >
656 tap16_to_cpu(q, vnet_hdr.hdr_len))
657 vnet_hdr.hdr_len = cpu_to_tap16(q,
658 tap16_to_cpu(q, vnet_hdr.csum_start) +
659 tap16_to_cpu(q, vnet_hdr.csum_offset) + 2);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000660 err = -EINVAL;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800661 if (tap16_to_cpu(q, vnet_hdr.hdr_len) > len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000662 goto err;
663 }
664
665 err = -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000666 if (unlikely(len < ETH_HLEN))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000667 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000668
Jason Wangece793f2013-07-18 10:55:16 +0800669 if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY)) {
Al Virof5ff53b2014-06-19 15:36:49 -0400670 struct iov_iter i;
671
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +0200672 copylen = vnet_hdr.hdr_len ?
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800673 tap16_to_cpu(q, vnet_hdr.hdr_len) : GOODCOPY_LEN;
Jason Wang16a3fa22013-11-13 14:00:40 +0800674 if (copylen > good_linear)
675 copylen = good_linear;
Willem de Bruijn8e2ad412016-03-08 15:18:54 -0500676 else if (copylen < ETH_HLEN)
677 copylen = ETH_HLEN;
Jason Wang61d46bf2013-07-10 13:43:28 +0800678 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -0400679 i = *from;
680 iov_iter_advance(&i, copylen);
681 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wangece793f2013-07-18 10:55:16 +0800682 zerocopy = true;
683 }
684
685 if (!zerocopy) {
Shirley Ma97bc3632011-07-06 12:26:11 +0000686 copylen = len;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800687 linear = tap16_to_cpu(q, vnet_hdr.hdr_len);
Willem de Bruijn8e2ad412016-03-08 15:18:54 -0500688 if (linear > good_linear)
Jason Wang16a3fa22013-11-13 14:00:40 +0800689 linear = good_linear;
Willem de Bruijn8e2ad412016-03-08 15:18:54 -0500690 else if (linear < ETH_HLEN)
691 linear = ETH_HLEN;
Jason Wang61d46bf2013-07-10 13:43:28 +0800692 }
Shirley Ma97bc3632011-07-06 12:26:11 +0000693
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800694 skb = tap_alloc_skb(&q->sk, TAP_RESERVE, copylen,
695 linear, noblock, &err);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000696 if (!skb)
697 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000698
Jason Wang01d66572012-05-02 11:42:06 +0800699 if (zerocopy)
Al Virof5ff53b2014-06-19 15:36:49 -0400700 err = zerocopy_sg_from_iter(skb, from);
Jason Wangaa196ee2016-11-30 13:17:52 +0800701 else
Al Virof5ff53b2014-06-19 15:36:49 -0400702 err = skb_copy_datagram_from_iter(skb, 0, from, len);
Jason Wangece793f2013-07-18 10:55:16 +0800703
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000704 if (err)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000705 goto err_kfree;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000706
707 skb_set_network_header(skb, ETH_HLEN);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000708 skb_reset_mac_header(skb);
709 skb->protocol = eth_hdr(skb)->h_proto;
710
711 if (vnet_hdr_len) {
Mike Rapoportfd88d682016-06-08 16:09:19 +0300712 err = virtio_net_hdr_to_skb(skb, &vnet_hdr,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800713 tap_is_little_endian(q));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000714 if (err)
715 goto err_kfree;
716 }
717
Jason Wang40893fd2013-03-26 23:11:22 +0000718 skb_probe_transport_header(skb, ETH_HLEN);
Jason Wang9b4d6692013-03-25 20:19:55 +0000719
Ivan Vecerac5c62f12015-07-23 16:37:43 +0200720 /* Move network header to the right position for VLAN tagged packets */
721 if ((skb->protocol == htons(ETH_P_8021Q) ||
722 skb->protocol == htons(ETH_P_8021AD)) &&
723 __vlan_get_protocol(skb, skb->protocol, &depth) != 0)
724 skb_set_network_header(skb, depth);
725
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400726 rcu_read_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800727 tap = rcu_dereference(q->tap);
Shirley Ma97bc3632011-07-06 12:26:11 +0000728 /* copy skb_ubuf_info for callback when skb has no error */
Jason Wang01d66572012-05-02 11:42:06 +0800729 if (zerocopy) {
Shirley Ma97bc3632011-07-06 12:26:11 +0000730 skb_shinfo(skb)->destructor_arg = m->msg_control;
Jason Wang01d66572012-05-02 11:42:06 +0800731 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000732 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaa196ee2016-11-30 13:17:52 +0800733 } else if (m && m->msg_control) {
734 struct ubuf_info *uarg = m->msg_control;
735 uarg->callback(uarg, false);
Jason Wang01d66572012-05-02 11:42:06 +0800736 }
Jason Wangaa196ee2016-11-30 13:17:52 +0800737
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800738 if (tap) {
739 skb->dev = tap->dev;
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500740 dev_queue_xmit(skb);
Eric Dumazet29d79192013-08-08 08:06:14 -0700741 } else {
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000742 kfree_skb(skb);
Eric Dumazet29d79192013-08-08 08:06:14 -0700743 }
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400744 rcu_read_unlock();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000745
Shirley Ma97bc3632011-07-06 12:26:11 +0000746 return total_len;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000747
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000748err_kfree:
749 kfree_skb(skb);
750
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000751err:
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400752 rcu_read_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800753 tap = rcu_dereference(q->tap);
754 if (tap && tap->count_tx_dropped)
755 tap->count_tx_dropped(tap);
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400756 rcu_read_unlock();
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000757
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000758 return err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000759}
760
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800761static ssize_t tap_write_iter(struct kiocb *iocb, struct iov_iter *from)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000762{
763 struct file *file = iocb->ki_filp;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800764 struct tap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000765
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800766 return tap_get_user(q, NULL, from, file->f_flags & O_NONBLOCK);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000767}
768
769/* Put packet to the user space buffer */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800770static ssize_t tap_put_user(struct tap_queue *q,
771 const struct sk_buff *skb,
772 struct iov_iter *iter)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000773{
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000774 int ret;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000775 int vnet_hdr_len = 0;
Basil Gorf09e2242012-05-03 22:55:24 +0000776 int vlan_offset = 0;
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800777 int total;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000778
779 if (q->flags & IFF_VNET_HDR) {
780 struct virtio_net_hdr vnet_hdr;
Willem de Bruijn837585a2017-02-03 18:20:49 -0500781 vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800782 if (iov_iter_count(iter) < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000783 return -EINVAL;
784
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -0800785 if (virtio_net_hdr_from_skb(skb, &vnet_hdr,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800786 tap_is_little_endian(q), true))
Mike Rapoportfd88d682016-06-08 16:09:19 +0300787 BUG();
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000788
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800789 if (copy_to_iter(&vnet_hdr, sizeof(vnet_hdr), iter) !=
790 sizeof(vnet_hdr))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000791 return -EFAULT;
Jason Wang7cc76f52014-11-20 16:31:05 +0800792
793 iov_iter_advance(iter, vnet_hdr_len - sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000794 }
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800795 total = vnet_hdr_len;
Jason Wangce232ce2013-12-11 13:08:34 +0800796 total += skb->len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000797
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100798 if (skb_vlan_tag_present(skb)) {
Basil Gorf09e2242012-05-03 22:55:24 +0000799 struct {
800 __be16 h_vlan_proto;
801 __be16 h_vlan_TCI;
802 } veth;
Jason Wang0fbe0d42013-07-16 13:36:34 +0800803 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100804 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000805
Basil Gorf09e2242012-05-03 22:55:24 +0000806 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wangce232ce2013-12-11 13:08:34 +0800807 total += VLAN_HLEN;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000808
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800809 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
810 if (ret || !iov_iter_count(iter))
Basil Gorf09e2242012-05-03 22:55:24 +0000811 goto done;
812
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800813 ret = copy_to_iter(&veth, sizeof(veth), iter);
814 if (ret != sizeof(veth) || !iov_iter_count(iter))
Basil Gorf09e2242012-05-03 22:55:24 +0000815 goto done;
816 }
817
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800818 ret = skb_copy_datagram_iter(skb, vlan_offset, iter,
819 skb->len - vlan_offset);
Basil Gorf09e2242012-05-03 22:55:24 +0000820
821done:
Jason Wangce232ce2013-12-11 13:08:34 +0800822 return ret ? ret : total;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000823}
824
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800825static ssize_t tap_do_read(struct tap_queue *q,
826 struct iov_iter *to,
Jason Wang3b4ba042017-05-17 12:14:44 +0800827 int noblock, struct sk_buff *skb)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000828{
Hong zhi guoccf7e722012-06-06 22:36:27 +0000829 DEFINE_WAIT(wait);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000830 ssize_t ret = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000831
Al Viro3af0bfe2014-11-07 14:13:53 -0500832 if (!iov_iter_count(to))
833 return 0;
834
Jason Wang3b4ba042017-05-17 12:14:44 +0800835 if (skb)
836 goto put;
837
Al Viro3af0bfe2014-11-07 14:13:53 -0500838 while (1) {
Jason Wang89cee912013-06-05 23:54:34 +0000839 if (!noblock)
840 prepare_to_wait(sk_sleep(&q->sk), &wait,
841 TASK_INTERRUPTIBLE);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000842
843 /* Read frames from the queue */
Jason Wang362899b2016-07-15 03:46:31 -0400844 skb = skb_array_consume(&q->skb_array);
Al Viro3af0bfe2014-11-07 14:13:53 -0500845 if (skb)
846 break;
847 if (noblock) {
848 ret = -EAGAIN;
849 break;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000850 }
Al Viro3af0bfe2014-11-07 14:13:53 -0500851 if (signal_pending(current)) {
852 ret = -ERESTARTSYS;
853 break;
854 }
855 /* Nothing to read, let's sleep */
856 schedule();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000857 }
Vlad Yasevicha499a2e2015-11-09 09:14:17 -0500858 if (!noblock)
859 finish_wait(sk_sleep(&q->sk), &wait);
860
Jason Wang3b4ba042017-05-17 12:14:44 +0800861put:
Al Viro3af0bfe2014-11-07 14:13:53 -0500862 if (skb) {
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800863 ret = tap_put_user(q, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +0800864 if (unlikely(ret < 0))
865 kfree_skb(skb);
866 else
867 consume_skb(skb);
Al Viro3af0bfe2014-11-07 14:13:53 -0500868 }
Arnd Bergmann501c7742010-02-18 05:46:50 +0000869 return ret;
870}
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000871
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800872static ssize_t tap_read_iter(struct kiocb *iocb, struct iov_iter *to)
Arnd Bergmann501c7742010-02-18 05:46:50 +0000873{
874 struct file *file = iocb->ki_filp;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800875 struct tap_queue *q = file->private_data;
Al Viro3af0bfe2014-11-07 14:13:53 -0500876 ssize_t len = iov_iter_count(to), ret;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000877
Jason Wang3b4ba042017-05-17 12:14:44 +0800878 ret = tap_do_read(q, to, file->f_flags & O_NONBLOCK, NULL);
Jason Wangce232ce2013-12-11 13:08:34 +0800879 ret = min_t(ssize_t, ret, len);
Zhi Yong Wue6ebc7f2013-12-06 14:16:50 +0800880 if (ret > 0)
881 iocb->ki_pos = ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000882 return ret;
883}
884
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800885static struct tap_dev *tap_get_tap_dev(struct tap_queue *q)
Jason Wang8f475a32013-06-05 23:54:36 +0000886{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800887 struct tap_dev *tap;
Jason Wang8f475a32013-06-05 23:54:36 +0000888
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400889 ASSERT_RTNL();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800890 tap = rtnl_dereference(q->tap);
891 if (tap)
892 dev_hold(tap->dev);
Jason Wang8f475a32013-06-05 23:54:36 +0000893
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800894 return tap;
Jason Wang8f475a32013-06-05 23:54:36 +0000895}
896
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800897static void tap_put_tap_dev(struct tap_dev *tap)
Jason Wang8f475a32013-06-05 23:54:36 +0000898{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800899 dev_put(tap->dev);
Jason Wang8f475a32013-06-05 23:54:36 +0000900}
901
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800902static int tap_ioctl_set_queue(struct file *file, unsigned int flags)
Jason Wang815f2362013-06-05 23:54:39 +0000903{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800904 struct tap_queue *q = file->private_data;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800905 struct tap_dev *tap;
Jason Wang815f2362013-06-05 23:54:39 +0000906 int ret;
907
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800908 tap = tap_get_tap_dev(q);
909 if (!tap)
Jason Wang815f2362013-06-05 23:54:39 +0000910 return -EINVAL;
911
912 if (flags & IFF_ATTACH_QUEUE)
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800913 ret = tap_enable_queue(tap, file, q);
Jason Wang815f2362013-06-05 23:54:39 +0000914 else if (flags & IFF_DETACH_QUEUE)
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800915 ret = tap_disable_queue(q);
Jason Wangf57855a2013-06-13 14:23:36 +0800916 else
917 ret = -EINVAL;
Jason Wang815f2362013-06-05 23:54:39 +0000918
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800919 tap_put_tap_dev(tap);
Jason Wang815f2362013-06-05 23:54:39 +0000920 return ret;
921}
922
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800923static int set_offload(struct tap_queue *q, unsigned long arg)
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400924{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800925 struct tap_dev *tap;
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400926 netdev_features_t features;
927 netdev_features_t feature_mask = 0;
928
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800929 tap = rtnl_dereference(q->tap);
930 if (!tap)
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400931 return -ENOLINK;
932
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800933 features = tap->dev->features;
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400934
935 if (arg & TUN_F_CSUM) {
936 feature_mask = NETIF_F_HW_CSUM;
937
938 if (arg & (TUN_F_TSO4 | TUN_F_TSO6)) {
939 if (arg & TUN_F_TSO_ECN)
940 feature_mask |= NETIF_F_TSO_ECN;
941 if (arg & TUN_F_TSO4)
942 feature_mask |= NETIF_F_TSO;
943 if (arg & TUN_F_TSO6)
944 feature_mask |= NETIF_F_TSO6;
945 }
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400946 }
947
948 /* tun/tap driver inverts the usage for TSO offloads, where
949 * setting the TSO bit means that the userspace wants to
950 * accept TSO frames and turning it off means that user space
951 * does not support TSO.
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800952 * For tap, we have to invert it to mean the same thing.
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400953 * When user space turns off TSO, we turn off GSO/LRO so that
954 * user-space will not receive TSO frames.
955 */
David S. Millerd591a1f2017-07-03 06:35:32 -0700956 if (feature_mask & (NETIF_F_TSO | NETIF_F_TSO6))
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400957 features |= RX_OFFLOADS;
958 else
959 features &= ~RX_OFFLOADS;
960
961 /* tap_features are the same as features on tun/tap and
962 * reflect user expectations.
963 */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800964 tap->tap_features = feature_mask;
965 if (tap->update_features)
966 tap->update_features(tap, features);
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400967
968 return 0;
969}
970
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000971/*
972 * provide compatibility with generic tun/tap interface
973 */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800974static long tap_ioctl(struct file *file, unsigned int cmd,
975 unsigned long arg)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000976{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800977 struct tap_queue *q = file->private_data;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800978 struct tap_dev *tap;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000979 void __user *argp = (void __user *)arg;
980 struct ifreq __user *ifr = argp;
981 unsigned int __user *up = argp;
Michael S. Tsirkin39ec7de2014-12-16 15:04:56 +0200982 unsigned short u;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300983 int __user *sp = argp;
Justin Cormack7f460d32015-05-13 19:19:02 +0100984 struct sockaddr sa;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300985 int s;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000986 int ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000987
988 switch (cmd) {
989 case TUNSETIFF:
990 /* ignore the name, just look at flags */
991 if (get_user(u, &ifr->ifr_flags))
992 return -EFAULT;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000993
994 ret = 0;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800995 if ((u & ~TAP_IFFEATURES) != (IFF_NO_PI | IFF_TAP))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000996 ret = -EINVAL;
997 else
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800998 q->flags = (q->flags & ~TAP_IFFEATURES) | u;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000999
1000 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001001
1002 case TUNGETIFF:
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001003 rtnl_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001004 tap = tap_get_tap_dev(q);
1005 if (!tap) {
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001006 rtnl_unlock();
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001007 return -ENOLINK;
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001008 }
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001009
1010 ret = 0;
Michael S. Tsirkin39ec7de2014-12-16 15:04:56 +02001011 u = q->flags;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001012 if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
Michael S. Tsirkin39ec7de2014-12-16 15:04:56 +02001013 put_user(u, &ifr->ifr_flags))
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001014 ret = -EFAULT;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001015 tap_put_tap_dev(tap);
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001016 rtnl_unlock();
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001017 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001018
Jason Wang815f2362013-06-05 23:54:39 +00001019 case TUNSETQUEUE:
1020 if (get_user(u, &ifr->ifr_flags))
1021 return -EFAULT;
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001022 rtnl_lock();
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001023 ret = tap_ioctl_set_queue(file, u);
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001024 rtnl_unlock();
Jason Wang82a19eb2013-07-16 13:36:33 +08001025 return ret;
Jason Wang815f2362013-06-05 23:54:39 +00001026
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001027 case TUNGETFEATURES:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001028 if (put_user(IFF_TAP | IFF_NO_PI | TAP_IFFEATURES, up))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001029 return -EFAULT;
1030 return 0;
1031
1032 case TUNSETSNDBUF:
Michael S. Tsirkin3ea79242015-09-18 13:41:09 +03001033 if (get_user(s, sp))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001034 return -EFAULT;
1035
Michael S. Tsirkin3ea79242015-09-18 13:41:09 +03001036 q->sk.sk_sndbuf = s;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001037 return 0;
1038
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +03001039 case TUNGETVNETHDRSZ:
1040 s = q->vnet_hdr_sz;
1041 if (put_user(s, sp))
1042 return -EFAULT;
1043 return 0;
1044
1045 case TUNSETVNETHDRSZ:
1046 if (get_user(s, sp))
1047 return -EFAULT;
1048 if (s < (int)sizeof(struct virtio_net_hdr))
1049 return -EINVAL;
1050
1051 q->vnet_hdr_sz = s;
1052 return 0;
1053
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001054 case TUNGETVNETLE:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001055 s = !!(q->flags & TAP_VNET_LE);
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001056 if (put_user(s, sp))
1057 return -EFAULT;
1058 return 0;
1059
1060 case TUNSETVNETLE:
1061 if (get_user(s, sp))
1062 return -EFAULT;
1063 if (s)
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001064 q->flags |= TAP_VNET_LE;
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001065 else
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001066 q->flags &= ~TAP_VNET_LE;
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001067 return 0;
1068
Greg Kurz8b8e6582015-04-24 14:50:36 +02001069 case TUNGETVNETBE:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001070 return tap_get_vnet_be(q, sp);
Greg Kurz8b8e6582015-04-24 14:50:36 +02001071
1072 case TUNSETVNETBE:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001073 return tap_set_vnet_be(q, sp);
Greg Kurz8b8e6582015-04-24 14:50:36 +02001074
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001075 case TUNSETOFFLOAD:
1076 /* let the user check for future flags */
1077 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
David S. Millerd591a1f2017-07-03 06:35:32 -07001078 TUN_F_TSO_ECN))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001079 return -EINVAL;
1080
Vlad Yasevich2be5c762013-06-25 16:04:21 -04001081 rtnl_lock();
1082 ret = set_offload(q, arg);
1083 rtnl_unlock();
1084 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001085
Justin Cormackb5082082015-05-11 20:00:10 +01001086 case SIOCGIFHWADDR:
1087 rtnl_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001088 tap = tap_get_tap_dev(q);
1089 if (!tap) {
Justin Cormackb5082082015-05-11 20:00:10 +01001090 rtnl_unlock();
1091 return -ENOLINK;
1092 }
1093 ret = 0;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001094 u = tap->dev->type;
1095 if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
1096 copy_to_user(&ifr->ifr_hwaddr.sa_data, tap->dev->dev_addr, ETH_ALEN) ||
Justin Cormackb5082082015-05-11 20:00:10 +01001097 put_user(u, &ifr->ifr_hwaddr.sa_family))
1098 ret = -EFAULT;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001099 tap_put_tap_dev(tap);
Justin Cormackb5082082015-05-11 20:00:10 +01001100 rtnl_unlock();
1101 return ret;
1102
1103 case SIOCSIFHWADDR:
Justin Cormack7f460d32015-05-13 19:19:02 +01001104 if (copy_from_user(&sa, &ifr->ifr_hwaddr, sizeof(sa)))
1105 return -EFAULT;
Justin Cormackb5082082015-05-11 20:00:10 +01001106 rtnl_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001107 tap = tap_get_tap_dev(q);
1108 if (!tap) {
Justin Cormackb5082082015-05-11 20:00:10 +01001109 rtnl_unlock();
1110 return -ENOLINK;
1111 }
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001112 ret = dev_set_mac_address(tap->dev, &sa);
1113 tap_put_tap_dev(tap);
Justin Cormackb5082082015-05-11 20:00:10 +01001114 rtnl_unlock();
1115 return ret;
1116
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001117 default:
1118 return -EINVAL;
1119 }
1120}
1121
1122#ifdef CONFIG_COMPAT
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001123static long tap_compat_ioctl(struct file *file, unsigned int cmd,
1124 unsigned long arg)
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001125{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001126 return tap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001127}
1128#endif
1129
Colin Ian Kingd17eb732017-08-12 22:52:31 +01001130static const struct file_operations tap_fops = {
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001131 .owner = THIS_MODULE,
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001132 .open = tap_open,
1133 .release = tap_release,
1134 .read_iter = tap_read_iter,
1135 .write_iter = tap_write_iter,
1136 .poll = tap_poll,
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001137 .llseek = no_llseek,
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001138 .unlocked_ioctl = tap_ioctl,
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001139#ifdef CONFIG_COMPAT
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001140 .compat_ioctl = tap_compat_ioctl,
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001141#endif
1142};
1143
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001144static int tap_sendmsg(struct socket *sock, struct msghdr *m,
1145 size_t total_len)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001146{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001147 struct tap_queue *q = container_of(sock, struct tap_queue, sock);
1148 return tap_get_user(q, m, &m->msg_iter, m->msg_flags & MSG_DONTWAIT);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001149}
1150
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001151static int tap_recvmsg(struct socket *sock, struct msghdr *m,
1152 size_t total_len, int flags)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001153{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001154 struct tap_queue *q = container_of(sock, struct tap_queue, sock);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001155 int ret;
1156 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1157 return -EINVAL;
Jason Wang3b4ba042017-05-17 12:14:44 +08001158 ret = tap_do_read(q, &m->msg_iter, flags & MSG_DONTWAIT,
1159 m->msg_control);
David S. Millerde2aa472013-12-10 22:06:18 -05001160 if (ret > total_len) {
1161 m->msg_flags |= MSG_TRUNC;
1162 ret = flags & MSG_TRUNC ? ret : total_len;
1163 }
Arnd Bergmann501c7742010-02-18 05:46:50 +00001164 return ret;
1165}
1166
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001167static int tap_peek_len(struct socket *sock)
Jason Wang362899b2016-07-15 03:46:31 -04001168{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001169 struct tap_queue *q = container_of(sock, struct tap_queue,
Jason Wang362899b2016-07-15 03:46:31 -04001170 sock);
1171 return skb_array_peek_len(&q->skb_array);
1172}
1173
Arnd Bergmann501c7742010-02-18 05:46:50 +00001174/* Ops structure to mimic raw sockets with tun */
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001175static const struct proto_ops tap_socket_ops = {
1176 .sendmsg = tap_sendmsg,
1177 .recvmsg = tap_recvmsg,
1178 .peek_len = tap_peek_len,
Arnd Bergmann501c7742010-02-18 05:46:50 +00001179};
1180
1181/* Get an underlying socket object from tun file. Returns error unless file is
1182 * attached to a device. The returned object works like a packet socket, it
1183 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
1184 * holding a reference to the file for as long as the socket is in use. */
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001185struct socket *tap_get_socket(struct file *file)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001186{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001187 struct tap_queue *q;
1188 if (file->f_op != &tap_fops)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001189 return ERR_PTR(-EINVAL);
1190 q = file->private_data;
1191 if (!q)
1192 return ERR_PTR(-EBADFD);
1193 return &q->sock;
1194}
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001195EXPORT_SYMBOL_GPL(tap_get_socket);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001196
Jason Wang49f96fd2017-05-17 12:14:42 +08001197struct skb_array *tap_get_skb_array(struct file *file)
1198{
1199 struct tap_queue *q;
1200
1201 if (file->f_op != &tap_fops)
1202 return ERR_PTR(-EINVAL);
1203 q = file->private_data;
1204 if (!q)
1205 return ERR_PTR(-EBADFD);
1206 return &q->skb_array;
1207}
1208EXPORT_SYMBOL_GPL(tap_get_skb_array);
1209
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001210int tap_queue_resize(struct tap_dev *tap)
Jason Wang362899b2016-07-15 03:46:31 -04001211{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001212 struct net_device *dev = tap->dev;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001213 struct tap_queue *q;
Jason Wang362899b2016-07-15 03:46:31 -04001214 struct skb_array **arrays;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001215 int n = tap->numqueues;
Jason Wang362899b2016-07-15 03:46:31 -04001216 int ret, i = 0;
1217
1218 arrays = kmalloc(sizeof *arrays * n, GFP_KERNEL);
1219 if (!arrays)
1220 return -ENOMEM;
1221
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001222 list_for_each_entry(q, &tap->queue_list, next)
Jason Wang362899b2016-07-15 03:46:31 -04001223 arrays[i++] = &q->skb_array;
1224
1225 ret = skb_array_resize_multiple(arrays, n,
1226 dev->tx_queue_len, GFP_KERNEL);
1227
1228 kfree(arrays);
1229 return ret;
1230}
Sainath Grandhi9a393b52017-02-10 16:03:51 -08001231EXPORT_SYMBOL_GPL(tap_queue_resize);
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001232
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001233static int tap_list_add(dev_t major, const char *device_name)
1234{
1235 struct major_info *tap_major;
1236
1237 tap_major = kzalloc(sizeof(*tap_major), GFP_ATOMIC);
1238 if (!tap_major)
1239 return -ENOMEM;
1240
1241 tap_major->major = MAJOR(major);
1242
1243 idr_init(&tap_major->minor_idr);
WANG Congffa423f2017-07-10 10:05:50 -07001244 spin_lock_init(&tap_major->minor_lock);
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001245
1246 tap_major->device_name = device_name;
1247
1248 list_add_tail_rcu(&tap_major->next, &major_list);
1249 return 0;
1250}
1251
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001252int tap_create_cdev(struct cdev *tap_cdev,
1253 dev_t *tap_major, const char *device_name)
1254{
1255 int err;
1256
1257 err = alloc_chrdev_region(tap_major, 0, TAP_NUM_DEVS, device_name);
1258 if (err)
1259 goto out1;
1260
1261 cdev_init(tap_cdev, &tap_fops);
1262 err = cdev_add(tap_cdev, *tap_major, TAP_NUM_DEVS);
1263 if (err)
1264 goto out2;
1265
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001266 err = tap_list_add(*tap_major, device_name);
1267 if (err)
1268 goto out3;
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001269
1270 return 0;
1271
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001272out3:
1273 cdev_del(tap_cdev);
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001274out2:
1275 unregister_chrdev_region(*tap_major, TAP_NUM_DEVS);
1276out1:
1277 return err;
1278}
Sainath Grandhi9a393b52017-02-10 16:03:51 -08001279EXPORT_SYMBOL_GPL(tap_create_cdev);
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001280
1281void tap_destroy_cdev(dev_t major, struct cdev *tap_cdev)
1282{
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001283 struct major_info *tap_major, *tmp;
1284
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001285 cdev_del(tap_cdev);
1286 unregister_chrdev_region(major, TAP_NUM_DEVS);
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001287 list_for_each_entry_safe(tap_major, tmp, &major_list, next) {
1288 if (tap_major->major == MAJOR(major)) {
1289 idr_destroy(&tap_major->minor_idr);
1290 list_del_rcu(&tap_major->next);
1291 kfree_rcu(tap_major, rcu);
1292 }
1293 }
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001294}
Sainath Grandhi9a393b52017-02-10 16:03:51 -08001295EXPORT_SYMBOL_GPL(tap_destroy_cdev);
1296
1297MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
1298MODULE_AUTHOR("Sainath Grandhi <sainath.grandhi@intel.com>");
1299MODULE_LICENSE("GPL");