blob: 71bbf0b6327db4b54b73bf13d42def70a8d3cd64 [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>
11#include <linux/sched.h>
12#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;
109 struct mutex minor_lock;
110 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}
315
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800316rx_handler_result_t tap_handle_frame(struct sk_buff **pskb)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000317{
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500318 struct sk_buff *skb = *pskb;
319 struct net_device *dev = skb->dev;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800320 struct tap_dev *tap;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800321 struct tap_queue *q;
Vlad Yasevicha567dd62013-08-16 15:25:00 -0400322 netdev_features_t features = TAP_FEATURES;
323
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800324 tap = tap_dev_get_rcu(dev);
325 if (!tap)
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500326 return RX_HANDLER_PASS;
327
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800328 q = tap_get_queue(tap, skb);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000329 if (!q)
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500330 return RX_HANDLER_PASS;
Herbert Xu8a357472010-07-21 21:44:31 +0000331
Jason Wang362899b2016-07-15 03:46:31 -0400332 if (__skb_array_full(&q->skb_array))
Herbert Xu8a357472010-07-21 21:44:31 +0000333 goto drop;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000334
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500335 skb_push(skb, ETH_HLEN);
336
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400337 /* Apply the forward feature mask so that we perform segmentation
Vlad Yaseviche5733322013-08-16 15:25:02 -0400338 * according to users wishes. This only works if VNET_HDR is
339 * enabled.
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400340 */
Vlad Yaseviche5733322013-08-16 15:25:02 -0400341 if (q->flags & IFF_VNET_HDR)
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800342 features |= tap->tap_features;
Johannes Berg8b86a612015-04-17 15:45:04 +0200343 if (netif_needs_gso(skb, features)) {
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400344 struct sk_buff *segs = __skb_gso_segment(skb, features, false);
345
346 if (IS_ERR(segs))
347 goto drop;
348
349 if (!segs) {
Jason Wang362899b2016-07-15 03:46:31 -0400350 if (skb_array_produce(&q->skb_array, skb))
351 goto drop;
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400352 goto wake_up;
353 }
354
Eric Dumazetbe0bd312016-05-06 05:58:21 -0700355 consume_skb(skb);
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400356 while (segs) {
357 struct sk_buff *nskb = segs->next;
358
359 segs->next = NULL;
Jason Wang362899b2016-07-15 03:46:31 -0400360 if (skb_array_produce(&q->skb_array, segs)) {
361 kfree_skb(segs);
362 kfree_skb_list(nskb);
363 break;
364 }
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400365 segs = nskb;
366 }
367 } else {
Vlad Yasevichcbdb0422014-04-29 10:09:50 -0400368 /* If we receive a partial checksum and the tap side
369 * doesn't support checksum offload, compute the checksum.
370 * Note: it doesn't matter which checksum feature to
Sainath Grandhia8e04692017-02-10 16:03:46 -0800371 * check, we either support them all or none.
Vlad Yasevichcbdb0422014-04-29 10:09:50 -0400372 */
373 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Tom Herberta1882222015-12-14 11:19:43 -0800374 !(features & NETIF_F_CSUM_MASK) &&
Vlad Yasevichcbdb0422014-04-29 10:09:50 -0400375 skb_checksum_help(skb))
376 goto drop;
Jason Wang362899b2016-07-15 03:46:31 -0400377 if (skb_array_produce(&q->skb_array, skb))
378 goto drop;
Vlad Yasevich3e4f8b72013-06-25 16:04:22 -0400379 }
380
381wake_up:
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000382 wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500383 return RX_HANDLER_CONSUMED;
Herbert Xu8a357472010-07-21 21:44:31 +0000384
385drop:
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500386 /* Count errors/drops only here, thus don't care about args. */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800387 if (tap->count_rx_dropped)
388 tap->count_rx_dropped(tap);
Herbert Xu8a357472010-07-21 21:44:31 +0000389 kfree_skb(skb);
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500390 return RX_HANDLER_CONSUMED;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000391}
392
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800393static struct major_info *tap_get_major(int major)
394{
395 struct major_info *tap_major;
396
397 list_for_each_entry_rcu(tap_major, &major_list, next) {
398 if (tap_major->major == major)
399 return tap_major;
400 }
401
402 return NULL;
403}
404
405int tap_get_minor(dev_t major, struct tap_dev *tap)
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000406{
407 int retval = -ENOMEM;
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800408 struct major_info *tap_major;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000409
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800410 rcu_read_lock();
411 tap_major = tap_get_major(MAJOR(major));
412 if (!tap_major) {
413 retval = -EINVAL;
414 goto unlock;
415 }
416
417 mutex_lock(&tap_major->minor_lock);
418 retval = idr_alloc(&tap_major->minor_idr, tap, 1, TAP_NUM_DEVS, GFP_KERNEL);
Tejun Heoec09ebc2013-02-27 17:04:34 -0800419 if (retval >= 0) {
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800420 tap->minor = retval;
Tejun Heoec09ebc2013-02-27 17:04:34 -0800421 } else if (retval == -ENOSPC) {
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800422 netdev_err(tap->dev, "Too many tap devices\n");
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000423 retval = -EINVAL;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000424 }
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800425 mutex_unlock(&tap_major->minor_lock);
426
427unlock:
428 rcu_read_unlock();
Tejun Heoec09ebc2013-02-27 17:04:34 -0800429 return retval < 0 ? retval : 0;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000430}
431
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800432void tap_free_minor(dev_t major, struct tap_dev *tap)
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000433{
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800434 struct major_info *tap_major;
435
436 rcu_read_lock();
437 tap_major = tap_get_major(MAJOR(major));
438 if (!tap_major) {
439 goto unlock;
440 }
441
442 mutex_lock(&tap_major->minor_lock);
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800443 if (tap->minor) {
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800444 idr_remove(&tap_major->minor_idr, tap->minor);
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800445 tap->minor = 0;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000446 }
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800447 mutex_unlock(&tap_major->minor_lock);
448
449unlock:
450 rcu_read_unlock();
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000451}
452
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800453static struct tap_dev *dev_get_by_tap_file(int major, int minor)
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000454{
455 struct net_device *dev = NULL;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800456 struct tap_dev *tap;
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800457 struct major_info *tap_major;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000458
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800459 rcu_read_lock();
460 tap_major = tap_get_major(major);
461 if (!tap_major) {
462 tap = NULL;
463 goto unlock;
464 }
465
466 mutex_lock(&tap_major->minor_lock);
467 tap = idr_find(&tap_major->minor_idr, minor);
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800468 if (tap) {
469 dev = tap->dev;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000470 dev_hold(dev);
471 }
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800472 mutex_unlock(&tap_major->minor_lock);
473
474unlock:
475 rcu_read_unlock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800476 return tap;
Eric W. Biedermane09eff72011-10-20 04:29:24 +0000477}
478
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800479static void tap_sock_write_space(struct sock *sk)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000480{
Eric Dumazet43815482010-04-29 11:01:49 +0000481 wait_queue_head_t *wqueue;
482
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000483 if (!sock_writeable(sk) ||
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800484 !test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000485 return;
486
Eric Dumazet43815482010-04-29 11:01:49 +0000487 wqueue = sk_sleep(sk);
488 if (wqueue && waitqueue_active(wqueue))
489 wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000490}
491
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800492static void tap_sock_destruct(struct sock *sk)
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000493{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800494 struct tap_queue *q = container_of(sk, struct tap_queue, sk);
Jason Wang362899b2016-07-15 03:46:31 -0400495
Jason Wang104a4932016-08-11 18:15:56 +0800496 skb_array_cleanup(&q->skb_array);
Eric W. Biederman2259fef2011-10-20 04:27:24 +0000497}
498
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800499static int tap_open(struct inode *inode, struct file *file)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000500{
501 struct net *net = current->nsproxy->net_ns;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800502 struct tap_dev *tap;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800503 struct tap_queue *q;
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400504 int err = -ENODEV;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000505
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400506 rtnl_lock();
Sainath Grandhid9f1f612017-02-10 16:03:50 -0800507 tap = dev_get_by_tap_file(imajor(inode), iminor(inode));
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800508 if (!tap)
Jason Wang362899b2016-07-15 03:46:31 -0400509 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000510
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000511 err = -ENOMEM;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800512 q = (struct tap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
513 &tap_proto, 0);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000514 if (!q)
Jason Wang362899b2016-07-15 03:46:31 -0400515 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000516
Jason Wangd9a90a32013-06-13 14:23:35 +0800517 RCU_INIT_POINTER(q->sock.wq, &q->wq);
Eric Dumazet43815482010-04-29 11:01:49 +0000518 init_waitqueue_head(&q->wq.wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000519 q->sock.type = SOCK_RAW;
520 q->sock.state = SS_CONNECTED;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000521 q->sock.file = file;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800522 q->sock.ops = &tap_socket_ops;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000523 sock_init_data(&q->sock, &q->sk);
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800524 q->sk.sk_write_space = tap_sock_write_space;
525 q->sk.sk_destruct = tap_sock_destruct;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000526 q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300527 q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000528
Shirley Ma97bc3632011-07-06 12:26:11 +0000529 /*
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800530 * so far only KVM virtio_net uses tap, enable zero copy between
Shirley Ma97bc3632011-07-06 12:26:11 +0000531 * guest kernel and host kernel when lower device supports zerocopy
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000532 *
533 * The macvlan supports zerocopy iff the lower device supports zero
534 * copy so we don't have to look at the lower device directly.
Shirley Ma97bc3632011-07-06 12:26:11 +0000535 */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800536 if ((tap->dev->features & NETIF_F_HIGHDMA) && (tap->dev->features & NETIF_F_SG))
Eric W. Biederman047af9cf2011-10-20 04:26:39 +0000537 sock_set_flag(&q->sk, SOCK_ZEROCOPY);
Shirley Ma97bc3632011-07-06 12:26:11 +0000538
Jason Wang362899b2016-07-15 03:46:31 -0400539 err = -ENOMEM;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800540 if (skb_array_init(&q->skb_array, tap->dev->tx_queue_len, GFP_KERNEL))
Jason Wang362899b2016-07-15 03:46:31 -0400541 goto err_array;
542
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800543 err = tap_set_queue(tap, file, q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000544 if (err)
Jason Wang362899b2016-07-15 03:46:31 -0400545 goto err_queue;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000546
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800547 dev_put(tap->dev);
Jason Wang362899b2016-07-15 03:46:31 -0400548
549 rtnl_unlock();
550 return err;
551
552err_queue:
553 skb_array_cleanup(&q->skb_array);
554err_array:
555 sock_put(&q->sk);
556err:
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800557 if (tap)
558 dev_put(tap->dev);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000559
Vlad Yasevich40b8fe42014-09-22 16:34:17 -0400560 rtnl_unlock();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000561 return err;
562}
563
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800564static int tap_release(struct inode *inode, struct file *file)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000565{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800566 struct tap_queue *q = file->private_data;
567 tap_put_queue(q);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000568 return 0;
569}
570
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800571static unsigned int tap_poll(struct file *file, poll_table *wait)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000572{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800573 struct tap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000574 unsigned int mask = POLLERR;
575
576 if (!q)
577 goto out;
578
579 mask = 0;
Eric Dumazet43815482010-04-29 11:01:49 +0000580 poll_wait(file, &q->wq.wait, wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000581
Jason Wang362899b2016-07-15 03:46:31 -0400582 if (!skb_array_empty(&q->skb_array))
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000583 mask |= POLLIN | POLLRDNORM;
584
585 if (sock_writeable(&q->sk) ||
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800586 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &q->sock.flags) &&
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000587 sock_writeable(&q->sk)))
588 mask |= POLLOUT | POLLWRNORM;
589
590out:
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000591 return mask;
592}
593
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800594static inline struct sk_buff *tap_alloc_skb(struct sock *sk, size_t prepad,
595 size_t len, size_t linear,
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000596 int noblock, int *err)
597{
598 struct sk_buff *skb;
599
600 /* Under a page? Don't bother with paged skb. */
601 if (prepad + len < PAGE_SIZE || !linear)
602 linear = len;
603
604 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -0700605 err, 0);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000606 if (!skb)
607 return NULL;
608
609 skb_reserve(skb, prepad);
610 skb_put(skb, linear);
611 skb->data_len = len - linear;
612 skb->len += len - linear;
613
614 return skb;
615}
616
Eric Dumazet2f1d8b92015-02-27 18:35:35 -0800617/* Neighbour code has some assumptions on HH_DATA_MOD alignment */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800618#define TAP_RESERVE HH_DATA_OFF(ETH_HLEN)
Eric Dumazet2f1d8b92015-02-27 18:35:35 -0800619
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000620/* Get packet from user space buffer */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800621static ssize_t tap_get_user(struct tap_queue *q, struct msghdr *m,
622 struct iov_iter *from, int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000623{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800624 int good_linear = SKB_MAX_HEAD(TAP_RESERVE);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000625 struct sk_buff *skb;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800626 struct tap_dev *tap;
Al Virof5ff53b2014-06-19 15:36:49 -0400627 unsigned long total_len = iov_iter_count(from);
Shirley Ma97bc3632011-07-06 12:26:11 +0000628 unsigned long len = total_len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000629 int err;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000630 struct virtio_net_hdr vnet_hdr = { 0 };
631 int vnet_hdr_len = 0;
Jason Wangb92946e2012-05-02 11:42:15 +0800632 int copylen = 0;
Ivan Vecerac5c62f12015-07-23 16:37:43 +0200633 int depth;
Shirley Ma97bc3632011-07-06 12:26:11 +0000634 bool zerocopy = false;
Jason Wang61d46bf2013-07-10 13:43:28 +0800635 size_t linear;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000636
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000637 if (q->flags & IFF_VNET_HDR) {
Willem de Bruijn837585a2017-02-03 18:20:49 -0500638 vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000639
640 err = -EINVAL;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000641 if (len < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000642 goto err;
Nicolas Kaiserce3c8692011-03-04 13:49:41 +0000643 len -= vnet_hdr_len;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000644
Al Virof5ff53b2014-06-19 15:36:49 -0400645 err = -EFAULT;
Al Virocbbd26b2016-11-01 22:09:04 -0400646 if (!copy_from_iter_full(&vnet_hdr, sizeof(vnet_hdr), from))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000647 goto err;
Al Virof5ff53b2014-06-19 15:36:49 -0400648 iov_iter_advance(from, vnet_hdr_len - sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000649 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800650 tap16_to_cpu(q, vnet_hdr.csum_start) +
651 tap16_to_cpu(q, vnet_hdr.csum_offset) + 2 >
652 tap16_to_cpu(q, vnet_hdr.hdr_len))
653 vnet_hdr.hdr_len = cpu_to_tap16(q,
654 tap16_to_cpu(q, vnet_hdr.csum_start) +
655 tap16_to_cpu(q, vnet_hdr.csum_offset) + 2);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000656 err = -EINVAL;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800657 if (tap16_to_cpu(q, vnet_hdr.hdr_len) > len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000658 goto err;
659 }
660
661 err = -EINVAL;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000662 if (unlikely(len < ETH_HLEN))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000663 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000664
Jason Wangece793f2013-07-18 10:55:16 +0800665 if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY)) {
Al Virof5ff53b2014-06-19 15:36:49 -0400666 struct iov_iter i;
667
Michael S. Tsirkin6ae7feb2014-11-23 17:24:15 +0200668 copylen = vnet_hdr.hdr_len ?
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800669 tap16_to_cpu(q, vnet_hdr.hdr_len) : GOODCOPY_LEN;
Jason Wang16a3fa22013-11-13 14:00:40 +0800670 if (copylen > good_linear)
671 copylen = good_linear;
Willem de Bruijn8e2ad412016-03-08 15:18:54 -0500672 else if (copylen < ETH_HLEN)
673 copylen = ETH_HLEN;
Jason Wang61d46bf2013-07-10 13:43:28 +0800674 linear = copylen;
Al Virof5ff53b2014-06-19 15:36:49 -0400675 i = *from;
676 iov_iter_advance(&i, copylen);
677 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
Jason Wangece793f2013-07-18 10:55:16 +0800678 zerocopy = true;
679 }
680
681 if (!zerocopy) {
Shirley Ma97bc3632011-07-06 12:26:11 +0000682 copylen = len;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800683 linear = tap16_to_cpu(q, vnet_hdr.hdr_len);
Willem de Bruijn8e2ad412016-03-08 15:18:54 -0500684 if (linear > good_linear)
Jason Wang16a3fa22013-11-13 14:00:40 +0800685 linear = good_linear;
Willem de Bruijn8e2ad412016-03-08 15:18:54 -0500686 else if (linear < ETH_HLEN)
687 linear = ETH_HLEN;
Jason Wang61d46bf2013-07-10 13:43:28 +0800688 }
Shirley Ma97bc3632011-07-06 12:26:11 +0000689
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800690 skb = tap_alloc_skb(&q->sk, TAP_RESERVE, copylen,
691 linear, noblock, &err);
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000692 if (!skb)
693 goto err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000694
Jason Wang01d66572012-05-02 11:42:06 +0800695 if (zerocopy)
Al Virof5ff53b2014-06-19 15:36:49 -0400696 err = zerocopy_sg_from_iter(skb, from);
Jason Wangaa196ee2016-11-30 13:17:52 +0800697 else
Al Virof5ff53b2014-06-19 15:36:49 -0400698 err = skb_copy_datagram_from_iter(skb, 0, from, len);
Jason Wangece793f2013-07-18 10:55:16 +0800699
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000700 if (err)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000701 goto err_kfree;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000702
703 skb_set_network_header(skb, ETH_HLEN);
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000704 skb_reset_mac_header(skb);
705 skb->protocol = eth_hdr(skb)->h_proto;
706
707 if (vnet_hdr_len) {
Mike Rapoportfd88d682016-06-08 16:09:19 +0300708 err = virtio_net_hdr_to_skb(skb, &vnet_hdr,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800709 tap_is_little_endian(q));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000710 if (err)
711 goto err_kfree;
712 }
713
Jason Wang40893fd2013-03-26 23:11:22 +0000714 skb_probe_transport_header(skb, ETH_HLEN);
Jason Wang9b4d6692013-03-25 20:19:55 +0000715
Ivan Vecerac5c62f12015-07-23 16:37:43 +0200716 /* Move network header to the right position for VLAN tagged packets */
717 if ((skb->protocol == htons(ETH_P_8021Q) ||
718 skb->protocol == htons(ETH_P_8021AD)) &&
719 __vlan_get_protocol(skb, skb->protocol, &depth) != 0)
720 skb_set_network_header(skb, depth);
721
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400722 rcu_read_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800723 tap = rcu_dereference(q->tap);
Shirley Ma97bc3632011-07-06 12:26:11 +0000724 /* copy skb_ubuf_info for callback when skb has no error */
Jason Wang01d66572012-05-02 11:42:06 +0800725 if (zerocopy) {
Shirley Ma97bc3632011-07-06 12:26:11 +0000726 skb_shinfo(skb)->destructor_arg = m->msg_control;
Jason Wang01d66572012-05-02 11:42:06 +0800727 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000728 skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
Jason Wangaa196ee2016-11-30 13:17:52 +0800729 } else if (m && m->msg_control) {
730 struct ubuf_info *uarg = m->msg_control;
731 uarg->callback(uarg, false);
Jason Wang01d66572012-05-02 11:42:06 +0800732 }
Jason Wangaa196ee2016-11-30 13:17:52 +0800733
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800734 if (tap) {
735 skb->dev = tap->dev;
Vlad Yasevich6acf54f2013-12-11 13:27:10 -0500736 dev_queue_xmit(skb);
Eric Dumazet29d79192013-08-08 08:06:14 -0700737 } else {
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000738 kfree_skb(skb);
Eric Dumazet29d79192013-08-08 08:06:14 -0700739 }
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400740 rcu_read_unlock();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000741
Shirley Ma97bc3632011-07-06 12:26:11 +0000742 return total_len;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000743
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000744err_kfree:
745 kfree_skb(skb);
746
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000747err:
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400748 rcu_read_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800749 tap = rcu_dereference(q->tap);
750 if (tap && tap->count_tx_dropped)
751 tap->count_tx_dropped(tap);
Vlad Yasevichac4e4af2013-06-25 16:04:20 -0400752 rcu_read_unlock();
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000753
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000754 return err;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000755}
756
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800757static ssize_t tap_write_iter(struct kiocb *iocb, struct iov_iter *from)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000758{
759 struct file *file = iocb->ki_filp;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800760 struct tap_queue *q = file->private_data;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000761
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800762 return tap_get_user(q, NULL, from, file->f_flags & O_NONBLOCK);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000763}
764
765/* Put packet to the user space buffer */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800766static ssize_t tap_put_user(struct tap_queue *q,
767 const struct sk_buff *skb,
768 struct iov_iter *iter)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000769{
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000770 int ret;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000771 int vnet_hdr_len = 0;
Basil Gorf09e2242012-05-03 22:55:24 +0000772 int vlan_offset = 0;
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800773 int total;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000774
775 if (q->flags & IFF_VNET_HDR) {
776 struct virtio_net_hdr vnet_hdr;
Willem de Bruijn837585a2017-02-03 18:20:49 -0500777 vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800778 if (iov_iter_count(iter) < vnet_hdr_len)
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000779 return -EINVAL;
780
Jarno Rajahalme3e9e40e2016-11-18 15:40:38 -0800781 if (virtio_net_hdr_from_skb(skb, &vnet_hdr,
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800782 tap_is_little_endian(q), true))
Mike Rapoportfd88d682016-06-08 16:09:19 +0300783 BUG();
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000784
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800785 if (copy_to_iter(&vnet_hdr, sizeof(vnet_hdr), iter) !=
786 sizeof(vnet_hdr))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000787 return -EFAULT;
Jason Wang7cc76f52014-11-20 16:31:05 +0800788
789 iov_iter_advance(iter, vnet_hdr_len - sizeof(vnet_hdr));
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000790 }
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800791 total = vnet_hdr_len;
Jason Wangce232ce2013-12-11 13:08:34 +0800792 total += skb->len;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000793
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100794 if (skb_vlan_tag_present(skb)) {
Basil Gorf09e2242012-05-03 22:55:24 +0000795 struct {
796 __be16 h_vlan_proto;
797 __be16 h_vlan_TCI;
798 } veth;
Jason Wang0fbe0d42013-07-16 13:36:34 +0800799 veth.h_vlan_proto = skb->vlan_proto;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100800 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000801
Basil Gorf09e2242012-05-03 22:55:24 +0000802 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
Jason Wangce232ce2013-12-11 13:08:34 +0800803 total += VLAN_HLEN;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000804
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800805 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
806 if (ret || !iov_iter_count(iter))
Basil Gorf09e2242012-05-03 22:55:24 +0000807 goto done;
808
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800809 ret = copy_to_iter(&veth, sizeof(veth), iter);
810 if (ret != sizeof(veth) || !iov_iter_count(iter))
Basil Gorf09e2242012-05-03 22:55:24 +0000811 goto done;
812 }
813
Herbert Xu6c36d2e2014-11-07 21:22:25 +0800814 ret = skb_copy_datagram_iter(skb, vlan_offset, iter,
815 skb->len - vlan_offset);
Basil Gorf09e2242012-05-03 22:55:24 +0000816
817done:
Jason Wangce232ce2013-12-11 13:08:34 +0800818 return ret ? ret : total;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000819}
820
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800821static ssize_t tap_do_read(struct tap_queue *q,
822 struct iov_iter *to,
823 int noblock)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000824{
Hong zhi guoccf7e722012-06-06 22:36:27 +0000825 DEFINE_WAIT(wait);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000826 struct sk_buff *skb;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000827 ssize_t ret = 0;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000828
Al Viro3af0bfe2014-11-07 14:13:53 -0500829 if (!iov_iter_count(to))
830 return 0;
831
832 while (1) {
Jason Wang89cee912013-06-05 23:54:34 +0000833 if (!noblock)
834 prepare_to_wait(sk_sleep(&q->sk), &wait,
835 TASK_INTERRUPTIBLE);
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000836
837 /* Read frames from the queue */
Jason Wang362899b2016-07-15 03:46:31 -0400838 skb = skb_array_consume(&q->skb_array);
Al Viro3af0bfe2014-11-07 14:13:53 -0500839 if (skb)
840 break;
841 if (noblock) {
842 ret = -EAGAIN;
843 break;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000844 }
Al Viro3af0bfe2014-11-07 14:13:53 -0500845 if (signal_pending(current)) {
846 ret = -ERESTARTSYS;
847 break;
848 }
849 /* Nothing to read, let's sleep */
850 schedule();
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000851 }
Vlad Yasevicha499a2e2015-11-09 09:14:17 -0500852 if (!noblock)
853 finish_wait(sk_sleep(&q->sk), &wait);
854
Al Viro3af0bfe2014-11-07 14:13:53 -0500855 if (skb) {
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800856 ret = tap_put_user(q, skb, to);
Jason Wangf51a5e82014-12-01 16:53:15 +0800857 if (unlikely(ret < 0))
858 kfree_skb(skb);
859 else
860 consume_skb(skb);
Al Viro3af0bfe2014-11-07 14:13:53 -0500861 }
Arnd Bergmann501c7742010-02-18 05:46:50 +0000862 return ret;
863}
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000864
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800865static ssize_t tap_read_iter(struct kiocb *iocb, struct iov_iter *to)
Arnd Bergmann501c7742010-02-18 05:46:50 +0000866{
867 struct file *file = iocb->ki_filp;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800868 struct tap_queue *q = file->private_data;
Al Viro3af0bfe2014-11-07 14:13:53 -0500869 ssize_t len = iov_iter_count(to), ret;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000870
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800871 ret = tap_do_read(q, to, file->f_flags & O_NONBLOCK);
Jason Wangce232ce2013-12-11 13:08:34 +0800872 ret = min_t(ssize_t, ret, len);
Zhi Yong Wue6ebc7f2013-12-06 14:16:50 +0800873 if (ret > 0)
874 iocb->ki_pos = ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000875 return ret;
876}
877
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800878static struct tap_dev *tap_get_tap_dev(struct tap_queue *q)
Jason Wang8f475a32013-06-05 23:54:36 +0000879{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800880 struct tap_dev *tap;
Jason Wang8f475a32013-06-05 23:54:36 +0000881
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400882 ASSERT_RTNL();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800883 tap = rtnl_dereference(q->tap);
884 if (tap)
885 dev_hold(tap->dev);
Jason Wang8f475a32013-06-05 23:54:36 +0000886
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800887 return tap;
Jason Wang8f475a32013-06-05 23:54:36 +0000888}
889
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800890static void tap_put_tap_dev(struct tap_dev *tap)
Jason Wang8f475a32013-06-05 23:54:36 +0000891{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800892 dev_put(tap->dev);
Jason Wang8f475a32013-06-05 23:54:36 +0000893}
894
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800895static int tap_ioctl_set_queue(struct file *file, unsigned int flags)
Jason Wang815f2362013-06-05 23:54:39 +0000896{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800897 struct tap_queue *q = file->private_data;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800898 struct tap_dev *tap;
Jason Wang815f2362013-06-05 23:54:39 +0000899 int ret;
900
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800901 tap = tap_get_tap_dev(q);
902 if (!tap)
Jason Wang815f2362013-06-05 23:54:39 +0000903 return -EINVAL;
904
905 if (flags & IFF_ATTACH_QUEUE)
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800906 ret = tap_enable_queue(tap, file, q);
Jason Wang815f2362013-06-05 23:54:39 +0000907 else if (flags & IFF_DETACH_QUEUE)
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800908 ret = tap_disable_queue(q);
Jason Wangf57855a2013-06-13 14:23:36 +0800909 else
910 ret = -EINVAL;
Jason Wang815f2362013-06-05 23:54:39 +0000911
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800912 tap_put_tap_dev(tap);
Jason Wang815f2362013-06-05 23:54:39 +0000913 return ret;
914}
915
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800916static int set_offload(struct tap_queue *q, unsigned long arg)
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400917{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800918 struct tap_dev *tap;
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400919 netdev_features_t features;
920 netdev_features_t feature_mask = 0;
921
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800922 tap = rtnl_dereference(q->tap);
923 if (!tap)
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400924 return -ENOLINK;
925
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800926 features = tap->dev->features;
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400927
928 if (arg & TUN_F_CSUM) {
929 feature_mask = NETIF_F_HW_CSUM;
930
931 if (arg & (TUN_F_TSO4 | TUN_F_TSO6)) {
932 if (arg & TUN_F_TSO_ECN)
933 feature_mask |= NETIF_F_TSO_ECN;
934 if (arg & TUN_F_TSO4)
935 feature_mask |= NETIF_F_TSO;
936 if (arg & TUN_F_TSO6)
937 feature_mask |= NETIF_F_TSO6;
938 }
Vlad Yaseviche3e3c422015-02-03 16:36:17 -0500939
940 if (arg & TUN_F_UFO)
941 feature_mask |= NETIF_F_UFO;
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400942 }
943
944 /* tun/tap driver inverts the usage for TSO offloads, where
945 * setting the TSO bit means that the userspace wants to
946 * accept TSO frames and turning it off means that user space
947 * does not support TSO.
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800948 * For tap, we have to invert it to mean the same thing.
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400949 * When user space turns off TSO, we turn off GSO/LRO so that
950 * user-space will not receive TSO frames.
951 */
Vlad Yaseviche3e3c422015-02-03 16:36:17 -0500952 if (feature_mask & (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_UFO))
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400953 features |= RX_OFFLOADS;
954 else
955 features &= ~RX_OFFLOADS;
956
957 /* tap_features are the same as features on tun/tap and
958 * reflect user expectations.
959 */
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800960 tap->tap_features = feature_mask;
961 if (tap->update_features)
962 tap->update_features(tap, features);
Vlad Yasevich2be5c762013-06-25 16:04:21 -0400963
964 return 0;
965}
966
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000967/*
968 * provide compatibility with generic tun/tap interface
969 */
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800970static long tap_ioctl(struct file *file, unsigned int cmd,
971 unsigned long arg)
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000972{
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800973 struct tap_queue *q = file->private_data;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -0800974 struct tap_dev *tap;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000975 void __user *argp = (void __user *)arg;
976 struct ifreq __user *ifr = argp;
977 unsigned int __user *up = argp;
Michael S. Tsirkin39ec7de2014-12-16 15:04:56 +0200978 unsigned short u;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300979 int __user *sp = argp;
Justin Cormack7f460d32015-05-13 19:19:02 +0100980 struct sockaddr sa;
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +0300981 int s;
Arnd Bergmann02df55d2010-02-18 05:45:36 +0000982 int ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000983
984 switch (cmd) {
985 case TUNSETIFF:
986 /* ignore the name, just look at flags */
987 if (get_user(u, &ifr->ifr_flags))
988 return -EFAULT;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000989
990 ret = 0;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800991 if ((u & ~TAP_IFFEATURES) != (IFF_NO_PI | IFF_TAP))
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000992 ret = -EINVAL;
993 else
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800994 q->flags = (q->flags & ~TAP_IFFEATURES) | u;
Arnd Bergmannb9fb9ee2010-02-18 05:48:17 +0000995
996 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +0000997
998 case TUNGETIFF:
Vlad Yasevich441ac0f2013-06-25 16:04:19 -0400999 rtnl_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001000 tap = tap_get_tap_dev(q);
1001 if (!tap) {
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001002 rtnl_unlock();
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001003 return -ENOLINK;
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001004 }
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001005
1006 ret = 0;
Michael S. Tsirkin39ec7de2014-12-16 15:04:56 +02001007 u = q->flags;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001008 if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
Michael S. Tsirkin39ec7de2014-12-16 15:04:56 +02001009 put_user(u, &ifr->ifr_flags))
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001010 ret = -EFAULT;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001011 tap_put_tap_dev(tap);
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001012 rtnl_unlock();
Arnd Bergmann02df55d2010-02-18 05:45:36 +00001013 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001014
Jason Wang815f2362013-06-05 23:54:39 +00001015 case TUNSETQUEUE:
1016 if (get_user(u, &ifr->ifr_flags))
1017 return -EFAULT;
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001018 rtnl_lock();
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001019 ret = tap_ioctl_set_queue(file, u);
Vlad Yasevich441ac0f2013-06-25 16:04:19 -04001020 rtnl_unlock();
Jason Wang82a19eb2013-07-16 13:36:33 +08001021 return ret;
Jason Wang815f2362013-06-05 23:54:39 +00001022
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001023 case TUNGETFEATURES:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001024 if (put_user(IFF_TAP | IFF_NO_PI | TAP_IFFEATURES, up))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001025 return -EFAULT;
1026 return 0;
1027
1028 case TUNSETSNDBUF:
Michael S. Tsirkin3ea79242015-09-18 13:41:09 +03001029 if (get_user(s, sp))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001030 return -EFAULT;
1031
Michael S. Tsirkin3ea79242015-09-18 13:41:09 +03001032 q->sk.sk_sndbuf = s;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001033 return 0;
1034
Michael S. Tsirkin55afbd02010-04-29 13:50:48 +03001035 case TUNGETVNETHDRSZ:
1036 s = q->vnet_hdr_sz;
1037 if (put_user(s, sp))
1038 return -EFAULT;
1039 return 0;
1040
1041 case TUNSETVNETHDRSZ:
1042 if (get_user(s, sp))
1043 return -EFAULT;
1044 if (s < (int)sizeof(struct virtio_net_hdr))
1045 return -EINVAL;
1046
1047 q->vnet_hdr_sz = s;
1048 return 0;
1049
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001050 case TUNGETVNETLE:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001051 s = !!(q->flags & TAP_VNET_LE);
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001052 if (put_user(s, sp))
1053 return -EFAULT;
1054 return 0;
1055
1056 case TUNSETVNETLE:
1057 if (get_user(s, sp))
1058 return -EFAULT;
1059 if (s)
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001060 q->flags |= TAP_VNET_LE;
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001061 else
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001062 q->flags &= ~TAP_VNET_LE;
Michael S. Tsirkin01b07fb2014-12-16 15:05:10 +02001063 return 0;
1064
Greg Kurz8b8e6582015-04-24 14:50:36 +02001065 case TUNGETVNETBE:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001066 return tap_get_vnet_be(q, sp);
Greg Kurz8b8e6582015-04-24 14:50:36 +02001067
1068 case TUNSETVNETBE:
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001069 return tap_set_vnet_be(q, sp);
Greg Kurz8b8e6582015-04-24 14:50:36 +02001070
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001071 case TUNSETOFFLOAD:
1072 /* let the user check for future flags */
1073 if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05001074 TUN_F_TSO_ECN | TUN_F_UFO))
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001075 return -EINVAL;
1076
Vlad Yasevich2be5c762013-06-25 16:04:21 -04001077 rtnl_lock();
1078 ret = set_offload(q, arg);
1079 rtnl_unlock();
1080 return ret;
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001081
Justin Cormackb5082082015-05-11 20:00:10 +01001082 case SIOCGIFHWADDR:
1083 rtnl_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001084 tap = tap_get_tap_dev(q);
1085 if (!tap) {
Justin Cormackb5082082015-05-11 20:00:10 +01001086 rtnl_unlock();
1087 return -ENOLINK;
1088 }
1089 ret = 0;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001090 u = tap->dev->type;
1091 if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
1092 copy_to_user(&ifr->ifr_hwaddr.sa_data, tap->dev->dev_addr, ETH_ALEN) ||
Justin Cormackb5082082015-05-11 20:00:10 +01001093 put_user(u, &ifr->ifr_hwaddr.sa_family))
1094 ret = -EFAULT;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001095 tap_put_tap_dev(tap);
Justin Cormackb5082082015-05-11 20:00:10 +01001096 rtnl_unlock();
1097 return ret;
1098
1099 case SIOCSIFHWADDR:
Justin Cormack7f460d32015-05-13 19:19:02 +01001100 if (copy_from_user(&sa, &ifr->ifr_hwaddr, sizeof(sa)))
1101 return -EFAULT;
Justin Cormackb5082082015-05-11 20:00:10 +01001102 rtnl_lock();
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001103 tap = tap_get_tap_dev(q);
1104 if (!tap) {
Justin Cormackb5082082015-05-11 20:00:10 +01001105 rtnl_unlock();
1106 return -ENOLINK;
1107 }
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001108 ret = dev_set_mac_address(tap->dev, &sa);
1109 tap_put_tap_dev(tap);
Justin Cormackb5082082015-05-11 20:00:10 +01001110 rtnl_unlock();
1111 return ret;
1112
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001113 default:
1114 return -EINVAL;
1115 }
1116}
1117
1118#ifdef CONFIG_COMPAT
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001119static long tap_compat_ioctl(struct file *file, unsigned int cmd,
1120 unsigned long arg)
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001121{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001122 return tap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001123}
1124#endif
1125
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001126const struct file_operations tap_fops = {
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001127 .owner = THIS_MODULE,
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001128 .open = tap_open,
1129 .release = tap_release,
1130 .read_iter = tap_read_iter,
1131 .write_iter = tap_write_iter,
1132 .poll = tap_poll,
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001133 .llseek = no_llseek,
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001134 .unlocked_ioctl = tap_ioctl,
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001135#ifdef CONFIG_COMPAT
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001136 .compat_ioctl = tap_compat_ioctl,
Arnd Bergmann20d29d72010-01-30 12:24:26 +00001137#endif
1138};
1139
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001140static int tap_sendmsg(struct socket *sock, struct msghdr *m,
1141 size_t total_len)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001142{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001143 struct tap_queue *q = container_of(sock, struct tap_queue, sock);
1144 return tap_get_user(q, m, &m->msg_iter, m->msg_flags & MSG_DONTWAIT);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001145}
1146
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001147static int tap_recvmsg(struct socket *sock, struct msghdr *m,
1148 size_t total_len, int flags)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001149{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001150 struct tap_queue *q = container_of(sock, struct tap_queue, sock);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001151 int ret;
1152 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
1153 return -EINVAL;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001154 ret = tap_do_read(q, &m->msg_iter, flags & MSG_DONTWAIT);
David S. Millerde2aa472013-12-10 22:06:18 -05001155 if (ret > total_len) {
1156 m->msg_flags |= MSG_TRUNC;
1157 ret = flags & MSG_TRUNC ? ret : total_len;
1158 }
Arnd Bergmann501c7742010-02-18 05:46:50 +00001159 return ret;
1160}
1161
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001162static int tap_peek_len(struct socket *sock)
Jason Wang362899b2016-07-15 03:46:31 -04001163{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001164 struct tap_queue *q = container_of(sock, struct tap_queue,
Jason Wang362899b2016-07-15 03:46:31 -04001165 sock);
1166 return skb_array_peek_len(&q->skb_array);
1167}
1168
Arnd Bergmann501c7742010-02-18 05:46:50 +00001169/* Ops structure to mimic raw sockets with tun */
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001170static const struct proto_ops tap_socket_ops = {
1171 .sendmsg = tap_sendmsg,
1172 .recvmsg = tap_recvmsg,
1173 .peek_len = tap_peek_len,
Arnd Bergmann501c7742010-02-18 05:46:50 +00001174};
1175
1176/* Get an underlying socket object from tun file. Returns error unless file is
1177 * attached to a device. The returned object works like a packet socket, it
1178 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
1179 * holding a reference to the file for as long as the socket is in use. */
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001180struct socket *tap_get_socket(struct file *file)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001181{
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001182 struct tap_queue *q;
1183 if (file->f_op != &tap_fops)
Arnd Bergmann501c7742010-02-18 05:46:50 +00001184 return ERR_PTR(-EINVAL);
1185 q = file->private_data;
1186 if (!q)
1187 return ERR_PTR(-EBADFD);
1188 return &q->sock;
1189}
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001190EXPORT_SYMBOL_GPL(tap_get_socket);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001191
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001192int tap_queue_resize(struct tap_dev *tap)
Jason Wang362899b2016-07-15 03:46:31 -04001193{
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001194 struct net_device *dev = tap->dev;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001195 struct tap_queue *q;
Jason Wang362899b2016-07-15 03:46:31 -04001196 struct skb_array **arrays;
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001197 int n = tap->numqueues;
Jason Wang362899b2016-07-15 03:46:31 -04001198 int ret, i = 0;
1199
1200 arrays = kmalloc(sizeof *arrays * n, GFP_KERNEL);
1201 if (!arrays)
1202 return -ENOMEM;
1203
Sainath Grandhi6fe3faf2017-02-10 16:03:49 -08001204 list_for_each_entry(q, &tap->queue_list, next)
Jason Wang362899b2016-07-15 03:46:31 -04001205 arrays[i++] = &q->skb_array;
1206
1207 ret = skb_array_resize_multiple(arrays, n,
1208 dev->tx_queue_len, GFP_KERNEL);
1209
1210 kfree(arrays);
1211 return ret;
1212}
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001213
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001214static int tap_list_add(dev_t major, const char *device_name)
1215{
1216 struct major_info *tap_major;
1217
1218 tap_major = kzalloc(sizeof(*tap_major), GFP_ATOMIC);
1219 if (!tap_major)
1220 return -ENOMEM;
1221
1222 tap_major->major = MAJOR(major);
1223
1224 idr_init(&tap_major->minor_idr);
1225 mutex_init(&tap_major->minor_lock);
1226
1227 tap_major->device_name = device_name;
1228
1229 list_add_tail_rcu(&tap_major->next, &major_list);
1230 return 0;
1231}
1232
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001233int tap_create_cdev(struct cdev *tap_cdev,
1234 dev_t *tap_major, const char *device_name)
1235{
1236 int err;
1237
1238 err = alloc_chrdev_region(tap_major, 0, TAP_NUM_DEVS, device_name);
1239 if (err)
1240 goto out1;
1241
1242 cdev_init(tap_cdev, &tap_fops);
1243 err = cdev_add(tap_cdev, *tap_major, TAP_NUM_DEVS);
1244 if (err)
1245 goto out2;
1246
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001247 err = tap_list_add(*tap_major, device_name);
1248 if (err)
1249 goto out3;
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001250
1251 return 0;
1252
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001253out3:
1254 cdev_del(tap_cdev);
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001255out2:
1256 unregister_chrdev_region(*tap_major, TAP_NUM_DEVS);
1257out1:
1258 return err;
1259}
1260
1261void tap_destroy_cdev(dev_t major, struct cdev *tap_cdev)
1262{
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001263 struct major_info *tap_major, *tmp;
1264
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001265 cdev_del(tap_cdev);
1266 unregister_chrdev_region(major, TAP_NUM_DEVS);
Sainath Grandhid9f1f612017-02-10 16:03:50 -08001267 list_for_each_entry_safe(tap_major, tmp, &major_list, next) {
1268 if (tap_major->major == MAJOR(major)) {
1269 idr_destroy(&tap_major->minor_idr);
1270 list_del_rcu(&tap_major->next);
1271 kfree_rcu(tap_major, rcu);
1272 }
1273 }
Sainath Grandhiebc05ba2017-02-10 16:03:48 -08001274}