Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1 | #include <linux/etherdevice.h> |
| 2 | #include <linux/if_macvlan.h> |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 3 | #include <linux/if_vlan.h> |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 4 | #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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/wait.h> |
| 16 | #include <linux/cdev.h> |
Al Viro | 4040153 | 2012-02-13 03:58:52 +0000 | [diff] [blame] | 17 | #include <linux/idr.h> |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 18 | #include <linux/fs.h> |
| 19 | |
| 20 | #include <net/net_namespace.h> |
| 21 | #include <net/rtnetlink.h> |
| 22 | #include <net/sock.h> |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 23 | #include <linux/virtio_net.h> |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * A macvtap queue is the central object of this driver, it connects |
| 27 | * an open character device to a macvlan interface. There can be |
| 28 | * multiple queues on one interface, which map back to queues |
| 29 | * implemented in hardware on the underlying device. |
| 30 | * |
| 31 | * macvtap_proto is used to allocate queues through the sock allocation |
| 32 | * mechanism. |
| 33 | * |
| 34 | * TODO: multiqueue support is currently not implemented, even though |
| 35 | * macvtap is basically prepared for that. We will need to add this |
| 36 | * here as well as in virtio-net and qemu to get line rate on 10gbit |
| 37 | * adapters from a guest. |
| 38 | */ |
| 39 | struct macvtap_queue { |
| 40 | struct sock sk; |
| 41 | struct socket sock; |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 42 | struct socket_wq wq; |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 43 | int vnet_hdr_sz; |
Eric Dumazet | 13707f9 | 2011-01-26 19:28:23 +0000 | [diff] [blame] | 44 | struct macvlan_dev __rcu *vlan; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 45 | struct file *file; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 46 | unsigned int flags; |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 47 | u16 queue_index; |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 48 | bool enabled; |
| 49 | struct list_head next; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | static struct proto macvtap_proto = { |
| 53 | .name = "macvtap", |
| 54 | .owner = THIS_MODULE, |
| 55 | .obj_size = sizeof (struct macvtap_queue), |
| 56 | }; |
| 57 | |
| 58 | /* |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 59 | * Variables for dealing with macvtaps device numbers. |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 60 | */ |
David S. Miller | 1ebed71 | 2010-07-10 19:25:50 -0700 | [diff] [blame] | 61 | static dev_t macvtap_major; |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 62 | #define MACVTAP_NUM_DEVS (1U << MINORBITS) |
| 63 | static DEFINE_MUTEX(minor_lock); |
| 64 | static DEFINE_IDR(minor_idr); |
| 65 | |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 66 | #define GOODCOPY_LEN 128 |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 67 | static struct class *macvtap_class; |
| 68 | static struct cdev macvtap_cdev; |
| 69 | |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 70 | static const struct proto_ops macvtap_socket_ops; |
| 71 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 72 | /* |
| 73 | * RCU usage: |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 74 | * The macvtap_queue and the macvlan_dev are loosely coupled, the |
| 75 | * pointers from one to the other can only be read while rcu_read_lock |
| 76 | * or macvtap_lock is held. |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 77 | * |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 78 | * Both the file and the macvlan_dev hold a reference on the macvtap_queue |
| 79 | * through sock_hold(&q->sk). When the macvlan_dev goes away first, |
| 80 | * q->vlan becomes inaccessible. When the files gets closed, |
| 81 | * macvtap_get_queue() fails. |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 82 | * |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 83 | * There may still be references to the struct sock inside of the |
| 84 | * queue from outbound SKBs, but these never reference back to the |
| 85 | * file or the dev. The data structure is freed through __sk_free |
| 86 | * when both our references and any pending SKBs are gone. |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 87 | */ |
| 88 | static DEFINE_SPINLOCK(macvtap_lock); |
| 89 | |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 90 | static int macvtap_enable_queue(struct net_device *dev, struct file *file, |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 91 | struct macvtap_queue *q) |
| 92 | { |
| 93 | struct macvlan_dev *vlan = netdev_priv(dev); |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 94 | int err = -EINVAL; |
| 95 | |
| 96 | spin_lock(&macvtap_lock); |
| 97 | |
| 98 | if (q->enabled) |
| 99 | goto out; |
| 100 | |
| 101 | err = 0; |
| 102 | rcu_assign_pointer(vlan->taps[vlan->numvtaps], q); |
| 103 | q->queue_index = vlan->numvtaps; |
| 104 | q->enabled = true; |
| 105 | |
| 106 | vlan->numvtaps++; |
| 107 | out: |
| 108 | spin_unlock(&macvtap_lock); |
| 109 | return err; |
| 110 | } |
| 111 | |
| 112 | static int macvtap_set_queue(struct net_device *dev, struct file *file, |
| 113 | struct macvtap_queue *q) |
| 114 | { |
| 115 | struct macvlan_dev *vlan = netdev_priv(dev); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 116 | int err = -EBUSY; |
| 117 | |
| 118 | spin_lock(&macvtap_lock); |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 119 | if (vlan->numqueues == MAX_MACVTAP_QUEUES) |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 120 | goto out; |
| 121 | |
| 122 | err = 0; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 123 | rcu_assign_pointer(q->vlan, vlan); |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 124 | rcu_assign_pointer(vlan->taps[vlan->numvtaps], q); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 125 | sock_hold(&q->sk); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 126 | |
| 127 | q->file = file; |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 128 | q->queue_index = vlan->numvtaps; |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 129 | q->enabled = true; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 130 | file->private_data = q; |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 131 | list_add_tail(&q->next, &vlan->queue_list); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 132 | |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 133 | vlan->numvtaps++; |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 134 | vlan->numqueues++; |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 135 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 136 | out: |
| 137 | spin_unlock(&macvtap_lock); |
| 138 | return err; |
| 139 | } |
| 140 | |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 141 | static int __macvtap_disable_queue(struct macvtap_queue *q) |
| 142 | { |
| 143 | struct macvlan_dev *vlan; |
| 144 | struct macvtap_queue *nq; |
| 145 | |
| 146 | vlan = rcu_dereference_protected(q->vlan, |
| 147 | lockdep_is_held(&macvtap_lock)); |
| 148 | |
| 149 | if (!q->enabled) |
| 150 | return -EINVAL; |
| 151 | |
| 152 | if (vlan) { |
| 153 | int index = q->queue_index; |
| 154 | BUG_ON(index >= vlan->numvtaps); |
| 155 | nq = rcu_dereference_protected(vlan->taps[vlan->numvtaps - 1], |
| 156 | lockdep_is_held(&macvtap_lock)); |
| 157 | nq->queue_index = index; |
| 158 | |
| 159 | rcu_assign_pointer(vlan->taps[index], nq); |
| 160 | RCU_INIT_POINTER(vlan->taps[vlan->numvtaps - 1], NULL); |
| 161 | q->enabled = false; |
| 162 | |
| 163 | vlan->numvtaps--; |
| 164 | } |
| 165 | |
| 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | static int macvtap_disable_queue(struct macvtap_queue *q) |
| 170 | { |
| 171 | int err; |
| 172 | |
| 173 | spin_lock(&macvtap_lock); |
| 174 | err = __macvtap_disable_queue(q); |
| 175 | spin_unlock(&macvtap_lock); |
| 176 | |
| 177 | return err; |
| 178 | } |
| 179 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 180 | /* |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 181 | * The file owning the queue got closed, give up both |
| 182 | * the reference that the files holds as well as the |
| 183 | * one from the macvlan_dev if that still exists. |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 184 | * |
| 185 | * Using the spinlock makes sure that we don't get |
| 186 | * to the queue again after destroying it. |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 187 | */ |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 188 | static void macvtap_put_queue(struct macvtap_queue *q) |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 189 | { |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 190 | struct macvlan_dev *vlan; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 191 | |
| 192 | spin_lock(&macvtap_lock); |
Eric Dumazet | 13707f9 | 2011-01-26 19:28:23 +0000 | [diff] [blame] | 193 | vlan = rcu_dereference_protected(q->vlan, |
| 194 | lockdep_is_held(&macvtap_lock)); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 195 | if (vlan) { |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 196 | if (q->enabled) |
| 197 | BUG_ON(__macvtap_disable_queue(q)); |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 198 | |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 199 | vlan->numqueues--; |
Eric Dumazet | 2cfa5a0 | 2011-11-23 07:09:32 +0000 | [diff] [blame] | 200 | RCU_INIT_POINTER(q->vlan, NULL); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 201 | sock_put(&q->sk); |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 202 | list_del_init(&q->next); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 203 | } |
| 204 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 205 | spin_unlock(&macvtap_lock); |
| 206 | |
| 207 | synchronize_rcu(); |
| 208 | sock_put(&q->sk); |
| 209 | } |
| 210 | |
| 211 | /* |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 212 | * Select a queue based on the rxq of the device on which this packet |
| 213 | * arrived. If the incoming device is not mq, calculate a flow hash |
| 214 | * to select a queue. If all fails, find the first available queue. |
| 215 | * Cache vlan->numvtaps since it can become zero during the execution |
| 216 | * of this function. |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 217 | */ |
| 218 | static struct macvtap_queue *macvtap_get_queue(struct net_device *dev, |
| 219 | struct sk_buff *skb) |
| 220 | { |
| 221 | struct macvlan_dev *vlan = netdev_priv(dev); |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 222 | struct macvtap_queue *tap = NULL; |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 223 | /* Access to taps array is protected by rcu, but access to numvtaps |
| 224 | * isn't. Below we use it to lookup a queue, but treat it as a hint |
| 225 | * and validate that the result isn't NULL - in case we are |
| 226 | * racing against queue removal. |
| 227 | */ |
Jason Wang | ed0483f | 2013-06-05 23:54:33 +0000 | [diff] [blame] | 228 | int numvtaps = ACCESS_ONCE(vlan->numvtaps); |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 229 | __u32 rxq; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 230 | |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 231 | if (!numvtaps) |
| 232 | goto out; |
| 233 | |
Krishna Kumar | ef0002b | 2011-11-23 22:17:14 +0000 | [diff] [blame] | 234 | /* Check if we can use flow to select a queue */ |
| 235 | rxq = skb_get_rxhash(skb); |
| 236 | if (rxq) { |
| 237 | tap = rcu_dereference(vlan->taps[rxq % numvtaps]); |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 238 | goto out; |
Krishna Kumar | ef0002b | 2011-11-23 22:17:14 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 241 | if (likely(skb_rx_queue_recorded(skb))) { |
| 242 | rxq = skb_get_rx_queue(skb); |
| 243 | |
| 244 | while (unlikely(rxq >= numvtaps)) |
| 245 | rxq -= numvtaps; |
| 246 | |
| 247 | tap = rcu_dereference(vlan->taps[rxq]); |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 248 | goto out; |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 251 | tap = rcu_dereference(vlan->taps[0]); |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 252 | out: |
| 253 | return tap; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 256 | /* |
| 257 | * The net_device is going away, give up the reference |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 258 | * that it holds on all queues and safely set the pointer |
| 259 | * from the queues to NULL. |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 260 | */ |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 261 | static void macvtap_del_queues(struct net_device *dev) |
| 262 | { |
| 263 | struct macvlan_dev *vlan = netdev_priv(dev); |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 264 | struct macvtap_queue *q, *tmp, *qlist[MAX_MACVTAP_QUEUES]; |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 265 | int i, j = 0; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 266 | |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 267 | spin_lock(&macvtap_lock); |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 268 | list_for_each_entry_safe(q, tmp, &vlan->queue_list, next) { |
| 269 | list_del_init(&q->next); |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 270 | qlist[j++] = q; |
Jason Wang | 376b1aa | 2013-06-05 23:54:38 +0000 | [diff] [blame] | 271 | RCU_INIT_POINTER(q->vlan, NULL); |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 272 | if (q->enabled) |
| 273 | vlan->numvtaps--; |
| 274 | vlan->numqueues--; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 275 | } |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 276 | for (i = 0; i < vlan->numvtaps; i++) |
| 277 | RCU_INIT_POINTER(vlan->taps[i], NULL); |
| 278 | BUG_ON(vlan->numvtaps); |
| 279 | BUG_ON(vlan->numqueues); |
Eric W. Biederman | 99f34b3 | 2011-10-20 04:26:01 +0000 | [diff] [blame] | 280 | /* guarantee that any future macvtap_set_queue will fail */ |
| 281 | vlan->numvtaps = MAX_MACVTAP_QUEUES; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 282 | spin_unlock(&macvtap_lock); |
| 283 | |
| 284 | synchronize_rcu(); |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 285 | |
| 286 | for (--j; j >= 0; j--) |
| 287 | sock_put(&qlist[j]->sk); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | /* |
| 291 | * Forward happens for data that gets sent from one macvlan |
| 292 | * endpoint to another one in bridge mode. We just take |
| 293 | * the skb and put it into the receive queue. |
| 294 | */ |
| 295 | static int macvtap_forward(struct net_device *dev, struct sk_buff *skb) |
| 296 | { |
| 297 | struct macvtap_queue *q = macvtap_get_queue(dev, skb); |
| 298 | if (!q) |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 299 | goto drop; |
| 300 | |
| 301 | if (skb_queue_len(&q->sk.sk_receive_queue) >= dev->tx_queue_len) |
| 302 | goto drop; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 303 | |
| 304 | skb_queue_tail(&q->sk.sk_receive_queue, skb); |
Eric Dumazet | 4a4771a | 2010-04-25 22:20:06 +0000 | [diff] [blame] | 305 | wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND); |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 306 | return NET_RX_SUCCESS; |
| 307 | |
| 308 | drop: |
| 309 | kfree_skb(skb); |
| 310 | return NET_RX_DROP; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | /* |
| 314 | * Receive is for data from the external interface (lowerdev), |
| 315 | * in case of macvtap, we can treat that the same way as |
| 316 | * forward, which macvlan cannot. |
| 317 | */ |
| 318 | static int macvtap_receive(struct sk_buff *skb) |
| 319 | { |
| 320 | skb_push(skb, ETH_HLEN); |
| 321 | return macvtap_forward(skb->dev, skb); |
| 322 | } |
| 323 | |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 324 | static int macvtap_get_minor(struct macvlan_dev *vlan) |
| 325 | { |
| 326 | int retval = -ENOMEM; |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 327 | |
| 328 | mutex_lock(&minor_lock); |
Tejun Heo | ec09ebc | 2013-02-27 17:04:34 -0800 | [diff] [blame] | 329 | retval = idr_alloc(&minor_idr, vlan, 1, MACVTAP_NUM_DEVS, GFP_KERNEL); |
| 330 | if (retval >= 0) { |
| 331 | vlan->minor = retval; |
| 332 | } else if (retval == -ENOSPC) { |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 333 | printk(KERN_ERR "too many macvtap devices\n"); |
| 334 | retval = -EINVAL; |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 335 | } |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 336 | mutex_unlock(&minor_lock); |
Tejun Heo | ec09ebc | 2013-02-27 17:04:34 -0800 | [diff] [blame] | 337 | return retval < 0 ? retval : 0; |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | static void macvtap_free_minor(struct macvlan_dev *vlan) |
| 341 | { |
| 342 | mutex_lock(&minor_lock); |
| 343 | if (vlan->minor) { |
| 344 | idr_remove(&minor_idr, vlan->minor); |
| 345 | vlan->minor = 0; |
| 346 | } |
| 347 | mutex_unlock(&minor_lock); |
| 348 | } |
| 349 | |
| 350 | static struct net_device *dev_get_by_macvtap_minor(int minor) |
| 351 | { |
| 352 | struct net_device *dev = NULL; |
| 353 | struct macvlan_dev *vlan; |
| 354 | |
| 355 | mutex_lock(&minor_lock); |
| 356 | vlan = idr_find(&minor_idr, minor); |
| 357 | if (vlan) { |
| 358 | dev = vlan->dev; |
| 359 | dev_hold(dev); |
| 360 | } |
| 361 | mutex_unlock(&minor_lock); |
| 362 | return dev; |
| 363 | } |
| 364 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 365 | static int macvtap_newlink(struct net *src_net, |
| 366 | struct net_device *dev, |
| 367 | struct nlattr *tb[], |
| 368 | struct nlattr *data[]) |
| 369 | { |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 370 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 371 | INIT_LIST_HEAD(&vlan->queue_list); |
| 372 | |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 373 | /* Don't put anything that may fail after macvlan_common_newlink |
| 374 | * because we can't undo what it does. |
| 375 | */ |
| 376 | return macvlan_common_newlink(src_net, dev, tb, data, |
| 377 | macvtap_receive, macvtap_forward); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | static void macvtap_dellink(struct net_device *dev, |
| 381 | struct list_head *head) |
| 382 | { |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 383 | macvtap_del_queues(dev); |
| 384 | macvlan_dellink(dev, head); |
| 385 | } |
| 386 | |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 387 | static void macvtap_setup(struct net_device *dev) |
| 388 | { |
| 389 | macvlan_common_setup(dev); |
| 390 | dev->tx_queue_len = TUN_READQ_SIZE; |
| 391 | } |
| 392 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 393 | static struct rtnl_link_ops macvtap_link_ops __read_mostly = { |
| 394 | .kind = "macvtap", |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 395 | .setup = macvtap_setup, |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 396 | .newlink = macvtap_newlink, |
| 397 | .dellink = macvtap_dellink, |
| 398 | }; |
| 399 | |
| 400 | |
| 401 | static void macvtap_sock_write_space(struct sock *sk) |
| 402 | { |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 403 | wait_queue_head_t *wqueue; |
| 404 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 405 | if (!sock_writeable(sk) || |
| 406 | !test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags)) |
| 407 | return; |
| 408 | |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 409 | wqueue = sk_sleep(sk); |
| 410 | if (wqueue && waitqueue_active(wqueue)) |
| 411 | wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 412 | } |
| 413 | |
Eric W. Biederman | 2259fef | 2011-10-20 04:27:24 +0000 | [diff] [blame] | 414 | static void macvtap_sock_destruct(struct sock *sk) |
| 415 | { |
| 416 | skb_queue_purge(&sk->sk_receive_queue); |
| 417 | } |
| 418 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 419 | static int macvtap_open(struct inode *inode, struct file *file) |
| 420 | { |
| 421 | struct net *net = current->nsproxy->net_ns; |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 422 | struct net_device *dev = dev_get_by_macvtap_minor(iminor(inode)); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 423 | struct macvtap_queue *q; |
| 424 | int err; |
| 425 | |
| 426 | err = -ENODEV; |
| 427 | if (!dev) |
| 428 | goto out; |
| 429 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 430 | err = -ENOMEM; |
| 431 | q = (struct macvtap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL, |
| 432 | &macvtap_proto); |
| 433 | if (!q) |
| 434 | goto out; |
| 435 | |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 436 | q->sock.wq = &q->wq; |
| 437 | init_waitqueue_head(&q->wq.wait); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 438 | q->sock.type = SOCK_RAW; |
| 439 | q->sock.state = SS_CONNECTED; |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 440 | q->sock.file = file; |
| 441 | q->sock.ops = &macvtap_socket_ops; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 442 | sock_init_data(&q->sock, &q->sk); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 443 | q->sk.sk_write_space = macvtap_sock_write_space; |
Eric W. Biederman | 2259fef | 2011-10-20 04:27:24 +0000 | [diff] [blame] | 444 | q->sk.sk_destruct = macvtap_sock_destruct; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 445 | q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP; |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 446 | q->vnet_hdr_sz = sizeof(struct virtio_net_hdr); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 447 | |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 448 | /* |
| 449 | * so far only KVM virtio_net uses macvtap, enable zero copy between |
| 450 | * guest kernel and host kernel when lower device supports zerocopy |
Eric W. Biederman | 047af9cf | 2011-10-20 04:26:39 +0000 | [diff] [blame] | 451 | * |
| 452 | * The macvlan supports zerocopy iff the lower device supports zero |
| 453 | * copy so we don't have to look at the lower device directly. |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 454 | */ |
Eric W. Biederman | 047af9cf | 2011-10-20 04:26:39 +0000 | [diff] [blame] | 455 | if ((dev->features & NETIF_F_HIGHDMA) && (dev->features & NETIF_F_SG)) |
| 456 | sock_set_flag(&q->sk, SOCK_ZEROCOPY); |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 457 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 458 | err = macvtap_set_queue(dev, file, q); |
| 459 | if (err) |
| 460 | sock_put(&q->sk); |
| 461 | |
| 462 | out: |
| 463 | if (dev) |
| 464 | dev_put(dev); |
| 465 | |
| 466 | return err; |
| 467 | } |
| 468 | |
| 469 | static int macvtap_release(struct inode *inode, struct file *file) |
| 470 | { |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 471 | struct macvtap_queue *q = file->private_data; |
| 472 | macvtap_put_queue(q); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | static unsigned int macvtap_poll(struct file *file, poll_table * wait) |
| 477 | { |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 478 | struct macvtap_queue *q = file->private_data; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 479 | unsigned int mask = POLLERR; |
| 480 | |
| 481 | if (!q) |
| 482 | goto out; |
| 483 | |
| 484 | mask = 0; |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 485 | poll_wait(file, &q->wq.wait, wait); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 486 | |
| 487 | if (!skb_queue_empty(&q->sk.sk_receive_queue)) |
| 488 | mask |= POLLIN | POLLRDNORM; |
| 489 | |
| 490 | if (sock_writeable(&q->sk) || |
| 491 | (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &q->sock.flags) && |
| 492 | sock_writeable(&q->sk))) |
| 493 | mask |= POLLOUT | POLLWRNORM; |
| 494 | |
| 495 | out: |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 496 | return mask; |
| 497 | } |
| 498 | |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 499 | static inline struct sk_buff *macvtap_alloc_skb(struct sock *sk, size_t prepad, |
| 500 | size_t len, size_t linear, |
| 501 | int noblock, int *err) |
| 502 | { |
| 503 | struct sk_buff *skb; |
| 504 | |
| 505 | /* Under a page? Don't bother with paged skb. */ |
| 506 | if (prepad + len < PAGE_SIZE || !linear) |
| 507 | linear = len; |
| 508 | |
| 509 | skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock, |
| 510 | err); |
| 511 | if (!skb) |
| 512 | return NULL; |
| 513 | |
| 514 | skb_reserve(skb, prepad); |
| 515 | skb_put(skb, linear); |
| 516 | skb->data_len = len - linear; |
| 517 | skb->len += len - linear; |
| 518 | |
| 519 | return skb; |
| 520 | } |
| 521 | |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 522 | /* set skb frags from iovec, this can move to core network code for reuse */ |
| 523 | static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from, |
| 524 | int offset, size_t count) |
| 525 | { |
| 526 | int len = iov_length(from, count) - offset; |
| 527 | int copy = skb_headlen(skb); |
| 528 | int size, offset1 = 0; |
| 529 | int i = 0; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 530 | |
| 531 | /* Skip over from offset */ |
| 532 | while (count && (offset >= from->iov_len)) { |
| 533 | offset -= from->iov_len; |
| 534 | ++from; |
| 535 | --count; |
| 536 | } |
| 537 | |
| 538 | /* copy up to skb headlen */ |
| 539 | while (count && (copy > 0)) { |
| 540 | size = min_t(unsigned int, copy, from->iov_len - offset); |
| 541 | if (copy_from_user(skb->data + offset1, from->iov_base + offset, |
| 542 | size)) |
| 543 | return -EFAULT; |
| 544 | if (copy > size) { |
| 545 | ++from; |
| 546 | --count; |
Jason Wang | 3afc962 | 2012-05-02 11:41:30 +0800 | [diff] [blame] | 547 | offset = 0; |
| 548 | } else |
| 549 | offset += size; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 550 | copy -= size; |
| 551 | offset1 += size; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | if (len == offset1) |
| 555 | return 0; |
| 556 | |
| 557 | while (count--) { |
| 558 | struct page *page[MAX_SKB_FRAGS]; |
| 559 | int num_pages; |
| 560 | unsigned long base; |
Jason Wang | 4ef67eb | 2012-05-02 11:41:44 +0800 | [diff] [blame] | 561 | unsigned long truesize; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 562 | |
Jason Wang | 3afc962 | 2012-05-02 11:41:30 +0800 | [diff] [blame] | 563 | len = from->iov_len - offset; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 564 | if (!len) { |
Jason Wang | 3afc962 | 2012-05-02 11:41:30 +0800 | [diff] [blame] | 565 | offset = 0; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 566 | ++from; |
| 567 | continue; |
| 568 | } |
Jason Wang | 3afc962 | 2012-05-02 11:41:30 +0800 | [diff] [blame] | 569 | base = (unsigned long)from->iov_base + offset; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 570 | size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT; |
Jason Wang | b92946e | 2012-05-02 11:42:15 +0800 | [diff] [blame] | 571 | if (i + size > MAX_SKB_FRAGS) |
| 572 | return -EMSGSIZE; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 573 | num_pages = get_user_pages_fast(base, size, 0, &page[i]); |
Jason Wang | b92946e | 2012-05-02 11:42:15 +0800 | [diff] [blame] | 574 | if (num_pages != size) { |
Jason Wang | 02ce04b | 2012-05-02 11:41:58 +0800 | [diff] [blame] | 575 | for (i = 0; i < num_pages; i++) |
| 576 | put_page(page[i]); |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 577 | return -EFAULT; |
Jason Wang | 02ce04b | 2012-05-02 11:41:58 +0800 | [diff] [blame] | 578 | } |
Jason Wang | 4ef67eb | 2012-05-02 11:41:44 +0800 | [diff] [blame] | 579 | truesize = size * PAGE_SIZE; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 580 | skb->data_len += len; |
| 581 | skb->len += len; |
Jason Wang | 4ef67eb | 2012-05-02 11:41:44 +0800 | [diff] [blame] | 582 | skb->truesize += truesize; |
| 583 | atomic_add(truesize, &skb->sk->sk_wmem_alloc); |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 584 | while (len) { |
Jason Wang | 653fc91 | 2011-09-18 23:48:31 +0000 | [diff] [blame] | 585 | int off = base & ~PAGE_MASK; |
| 586 | int size = min_t(int, len, PAGE_SIZE - off); |
| 587 | __skb_fill_page_desc(skb, i, page[i], off, size); |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 588 | skb_shinfo(skb)->nr_frags++; |
| 589 | /* increase sk_wmem_alloc */ |
Jason Wang | 653fc91 | 2011-09-18 23:48:31 +0000 | [diff] [blame] | 590 | base += size; |
| 591 | len -= size; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 592 | i++; |
| 593 | } |
Jason Wang | 3afc962 | 2012-05-02 11:41:30 +0800 | [diff] [blame] | 594 | offset = 0; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 595 | ++from; |
| 596 | } |
| 597 | return 0; |
| 598 | } |
| 599 | |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 600 | /* |
| 601 | * macvtap_skb_from_vnet_hdr and macvtap_skb_to_vnet_hdr should |
| 602 | * be shared with the tun/tap driver. |
| 603 | */ |
| 604 | static int macvtap_skb_from_vnet_hdr(struct sk_buff *skb, |
| 605 | struct virtio_net_hdr *vnet_hdr) |
| 606 | { |
| 607 | unsigned short gso_type = 0; |
| 608 | if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) { |
| 609 | switch (vnet_hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { |
| 610 | case VIRTIO_NET_HDR_GSO_TCPV4: |
| 611 | gso_type = SKB_GSO_TCPV4; |
| 612 | break; |
| 613 | case VIRTIO_NET_HDR_GSO_TCPV6: |
| 614 | gso_type = SKB_GSO_TCPV6; |
| 615 | break; |
| 616 | case VIRTIO_NET_HDR_GSO_UDP: |
| 617 | gso_type = SKB_GSO_UDP; |
| 618 | break; |
| 619 | default: |
| 620 | return -EINVAL; |
| 621 | } |
| 622 | |
| 623 | if (vnet_hdr->gso_type & VIRTIO_NET_HDR_GSO_ECN) |
| 624 | gso_type |= SKB_GSO_TCP_ECN; |
| 625 | |
| 626 | if (vnet_hdr->gso_size == 0) |
| 627 | return -EINVAL; |
| 628 | } |
| 629 | |
| 630 | if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) { |
| 631 | if (!skb_partial_csum_set(skb, vnet_hdr->csum_start, |
| 632 | vnet_hdr->csum_offset)) |
| 633 | return -EINVAL; |
| 634 | } |
| 635 | |
| 636 | if (vnet_hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) { |
| 637 | skb_shinfo(skb)->gso_size = vnet_hdr->gso_size; |
Pravin B Shelar | c9af6db | 2013-02-11 09:27:41 +0000 | [diff] [blame] | 638 | skb_shinfo(skb)->gso_type = gso_type; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 639 | |
| 640 | /* Header must be checked, and gso_segs computed. */ |
| 641 | skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY; |
| 642 | skb_shinfo(skb)->gso_segs = 0; |
| 643 | } |
| 644 | return 0; |
| 645 | } |
| 646 | |
| 647 | static int macvtap_skb_to_vnet_hdr(const struct sk_buff *skb, |
| 648 | struct virtio_net_hdr *vnet_hdr) |
| 649 | { |
| 650 | memset(vnet_hdr, 0, sizeof(*vnet_hdr)); |
| 651 | |
| 652 | if (skb_is_gso(skb)) { |
| 653 | struct skb_shared_info *sinfo = skb_shinfo(skb); |
| 654 | |
| 655 | /* This is a hint as to how much should be linear. */ |
| 656 | vnet_hdr->hdr_len = skb_headlen(skb); |
| 657 | vnet_hdr->gso_size = sinfo->gso_size; |
| 658 | if (sinfo->gso_type & SKB_GSO_TCPV4) |
| 659 | vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4; |
| 660 | else if (sinfo->gso_type & SKB_GSO_TCPV6) |
| 661 | vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6; |
| 662 | else if (sinfo->gso_type & SKB_GSO_UDP) |
| 663 | vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP; |
| 664 | else |
| 665 | BUG(); |
| 666 | if (sinfo->gso_type & SKB_GSO_TCP_ECN) |
| 667 | vnet_hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN; |
| 668 | } else |
| 669 | vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE; |
| 670 | |
| 671 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
| 672 | vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; |
Michał Mirosław | 55508d6 | 2010-12-14 15:24:08 +0000 | [diff] [blame] | 673 | vnet_hdr->csum_start = skb_checksum_start_offset(skb); |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 674 | vnet_hdr->csum_offset = skb->csum_offset; |
Jason Wang | 10a8d94 | 2011-06-10 00:56:17 +0000 | [diff] [blame] | 675 | } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) { |
| 676 | vnet_hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 677 | } /* else everything is zero */ |
| 678 | |
| 679 | return 0; |
| 680 | } |
| 681 | |
| 682 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 683 | /* Get packet from user space buffer */ |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 684 | static ssize_t macvtap_get_user(struct macvtap_queue *q, struct msghdr *m, |
| 685 | const struct iovec *iv, unsigned long total_len, |
| 686 | size_t count, int noblock) |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 687 | { |
| 688 | struct sk_buff *skb; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 689 | struct macvlan_dev *vlan; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 690 | unsigned long len = total_len; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 691 | int err; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 692 | struct virtio_net_hdr vnet_hdr = { 0 }; |
| 693 | int vnet_hdr_len = 0; |
Jason Wang | b92946e | 2012-05-02 11:42:15 +0800 | [diff] [blame] | 694 | int copylen = 0; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 695 | bool zerocopy = false; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 696 | |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 697 | if (q->flags & IFF_VNET_HDR) { |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 698 | vnet_hdr_len = q->vnet_hdr_sz; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 699 | |
| 700 | err = -EINVAL; |
Nicolas Kaiser | ce3c869 | 2011-03-04 13:49:41 +0000 | [diff] [blame] | 701 | if (len < vnet_hdr_len) |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 702 | goto err; |
Nicolas Kaiser | ce3c869 | 2011-03-04 13:49:41 +0000 | [diff] [blame] | 703 | len -= vnet_hdr_len; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 704 | |
| 705 | err = memcpy_fromiovecend((void *)&vnet_hdr, iv, 0, |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 706 | sizeof(vnet_hdr)); |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 707 | if (err < 0) |
| 708 | goto err; |
| 709 | if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && |
| 710 | vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 > |
| 711 | vnet_hdr.hdr_len) |
| 712 | vnet_hdr.hdr_len = vnet_hdr.csum_start + |
| 713 | vnet_hdr.csum_offset + 2; |
| 714 | err = -EINVAL; |
| 715 | if (vnet_hdr.hdr_len > len) |
| 716 | goto err; |
| 717 | } |
| 718 | |
| 719 | err = -EINVAL; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 720 | if (unlikely(len < ETH_HLEN)) |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 721 | goto err; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 722 | |
Jason Wang | b92946e | 2012-05-02 11:42:15 +0800 | [diff] [blame] | 723 | err = -EMSGSIZE; |
| 724 | if (unlikely(count > UIO_MAXIOV)) |
| 725 | goto err; |
| 726 | |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 727 | if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY)) |
| 728 | zerocopy = true; |
| 729 | |
| 730 | if (zerocopy) { |
Jason Wang | b92946e | 2012-05-02 11:42:15 +0800 | [diff] [blame] | 731 | /* Userspace may produce vectors with count greater than |
| 732 | * MAX_SKB_FRAGS, so we need to linearize parts of the skb |
| 733 | * to let the rest of data to be fit in the frags. |
| 734 | */ |
| 735 | if (count > MAX_SKB_FRAGS) { |
| 736 | copylen = iov_length(iv, count - MAX_SKB_FRAGS); |
| 737 | if (copylen < vnet_hdr_len) |
| 738 | copylen = 0; |
| 739 | else |
| 740 | copylen -= vnet_hdr_len; |
| 741 | } |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 742 | /* There are 256 bytes to be copied in skb, so there is enough |
| 743 | * room for skb expand head in case it is used. |
| 744 | * The rest buffer is mapped from userspace. |
| 745 | */ |
Jason Wang | b92946e | 2012-05-02 11:42:15 +0800 | [diff] [blame] | 746 | if (copylen < vnet_hdr.hdr_len) |
| 747 | copylen = vnet_hdr.hdr_len; |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 748 | if (!copylen) |
| 749 | copylen = GOODCOPY_LEN; |
| 750 | } else |
| 751 | copylen = len; |
| 752 | |
| 753 | skb = macvtap_alloc_skb(&q->sk, NET_IP_ALIGN, copylen, |
| 754 | vnet_hdr.hdr_len, noblock, &err); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 755 | if (!skb) |
| 756 | goto err; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 757 | |
Jason Wang | 01d6657 | 2012-05-02 11:42:06 +0800 | [diff] [blame] | 758 | if (zerocopy) |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 759 | err = zerocopy_sg_from_iovec(skb, iv, vnet_hdr_len, count); |
Jason Wang | 01d6657 | 2012-05-02 11:42:06 +0800 | [diff] [blame] | 760 | else |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 761 | err = skb_copy_datagram_from_iovec(skb, 0, iv, vnet_hdr_len, |
| 762 | len); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 763 | if (err) |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 764 | goto err_kfree; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 765 | |
| 766 | skb_set_network_header(skb, ETH_HLEN); |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 767 | skb_reset_mac_header(skb); |
| 768 | skb->protocol = eth_hdr(skb)->h_proto; |
| 769 | |
| 770 | if (vnet_hdr_len) { |
| 771 | err = macvtap_skb_from_vnet_hdr(skb, &vnet_hdr); |
| 772 | if (err) |
| 773 | goto err_kfree; |
| 774 | } |
| 775 | |
Jason Wang | 40893fd | 2013-03-26 23:11:22 +0000 | [diff] [blame] | 776 | skb_probe_transport_header(skb, ETH_HLEN); |
Jason Wang | 9b4d669 | 2013-03-25 20:19:55 +0000 | [diff] [blame] | 777 | |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 778 | rcu_read_lock_bh(); |
Eric Dumazet | 13707f9 | 2011-01-26 19:28:23 +0000 | [diff] [blame] | 779 | vlan = rcu_dereference_bh(q->vlan); |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 780 | /* copy skb_ubuf_info for callback when skb has no error */ |
Jason Wang | 01d6657 | 2012-05-02 11:42:06 +0800 | [diff] [blame] | 781 | if (zerocopy) { |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 782 | skb_shinfo(skb)->destructor_arg = m->msg_control; |
Jason Wang | 01d6657 | 2012-05-02 11:42:06 +0800 | [diff] [blame] | 783 | skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY; |
Pravin B Shelar | c9af6db | 2013-02-11 09:27:41 +0000 | [diff] [blame] | 784 | skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG; |
Jason Wang | 01d6657 | 2012-05-02 11:42:06 +0800 | [diff] [blame] | 785 | } |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 786 | if (vlan) |
| 787 | macvlan_start_xmit(skb, vlan->dev); |
| 788 | else |
| 789 | kfree_skb(skb); |
| 790 | rcu_read_unlock_bh(); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 791 | |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 792 | return total_len; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 793 | |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 794 | err_kfree: |
| 795 | kfree_skb(skb); |
| 796 | |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 797 | err: |
| 798 | rcu_read_lock_bh(); |
Eric Dumazet | 13707f9 | 2011-01-26 19:28:23 +0000 | [diff] [blame] | 799 | vlan = rcu_dereference_bh(q->vlan); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 800 | if (vlan) |
Eric Dumazet | 1ac9ad1 | 2011-01-12 12:13:14 +0000 | [diff] [blame] | 801 | vlan->dev->stats.tx_dropped++; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 802 | rcu_read_unlock_bh(); |
| 803 | |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 804 | return err; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | static ssize_t macvtap_aio_write(struct kiocb *iocb, const struct iovec *iv, |
| 808 | unsigned long count, loff_t pos) |
| 809 | { |
| 810 | struct file *file = iocb->ki_filp; |
| 811 | ssize_t result = -ENOLINK; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 812 | struct macvtap_queue *q = file->private_data; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 813 | |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 814 | result = macvtap_get_user(q, NULL, iv, iov_length(iv, count), count, |
| 815 | file->f_flags & O_NONBLOCK); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 816 | return result; |
| 817 | } |
| 818 | |
| 819 | /* Put packet to the user space buffer */ |
| 820 | static ssize_t macvtap_put_user(struct macvtap_queue *q, |
| 821 | const struct sk_buff *skb, |
| 822 | const struct iovec *iv, int len) |
| 823 | { |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 824 | struct macvlan_dev *vlan; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 825 | int ret; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 826 | int vnet_hdr_len = 0; |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 827 | int vlan_offset = 0; |
| 828 | int copied; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 829 | |
| 830 | if (q->flags & IFF_VNET_HDR) { |
| 831 | struct virtio_net_hdr vnet_hdr; |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 832 | vnet_hdr_len = q->vnet_hdr_sz; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 833 | if ((len -= vnet_hdr_len) < 0) |
| 834 | return -EINVAL; |
| 835 | |
| 836 | ret = macvtap_skb_to_vnet_hdr(skb, &vnet_hdr); |
| 837 | if (ret) |
| 838 | return ret; |
| 839 | |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 840 | if (memcpy_toiovecend(iv, (void *)&vnet_hdr, 0, sizeof(vnet_hdr))) |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 841 | return -EFAULT; |
| 842 | } |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 843 | copied = vnet_hdr_len; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 844 | |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 845 | if (!vlan_tx_tag_present(skb)) |
| 846 | len = min_t(int, skb->len, len); |
| 847 | else { |
| 848 | int copy; |
| 849 | struct { |
| 850 | __be16 h_vlan_proto; |
| 851 | __be16 h_vlan_TCI; |
| 852 | } veth; |
| 853 | veth.h_vlan_proto = htons(ETH_P_8021Q); |
| 854 | veth.h_vlan_TCI = htons(vlan_tx_tag_get(skb)); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 855 | |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 856 | vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto); |
| 857 | len = min_t(int, skb->len + VLAN_HLEN, len); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 858 | |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 859 | copy = min_t(int, vlan_offset, len); |
| 860 | ret = skb_copy_datagram_const_iovec(skb, 0, iv, copied, copy); |
| 861 | len -= copy; |
| 862 | copied += copy; |
| 863 | if (ret || !len) |
| 864 | goto done; |
| 865 | |
| 866 | copy = min_t(int, sizeof(veth), len); |
| 867 | ret = memcpy_toiovecend(iv, (void *)&veth, copied, copy); |
| 868 | len -= copy; |
| 869 | copied += copy; |
| 870 | if (ret || !len) |
| 871 | goto done; |
| 872 | } |
| 873 | |
| 874 | ret = skb_copy_datagram_const_iovec(skb, vlan_offset, iv, copied, len); |
| 875 | copied += len; |
| 876 | |
| 877 | done: |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 878 | rcu_read_lock_bh(); |
Eric Dumazet | 13707f9 | 2011-01-26 19:28:23 +0000 | [diff] [blame] | 879 | vlan = rcu_dereference_bh(q->vlan); |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 880 | if (vlan) |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 881 | macvlan_count_rx(vlan, copied - vnet_hdr_len, ret == 0, 0); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 882 | rcu_read_unlock_bh(); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 883 | |
Basil Gor | f09e224 | 2012-05-03 22:55:24 +0000 | [diff] [blame] | 884 | return ret ? ret : copied; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 885 | } |
| 886 | |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 887 | static ssize_t macvtap_do_read(struct macvtap_queue *q, struct kiocb *iocb, |
| 888 | const struct iovec *iv, unsigned long len, |
| 889 | int noblock) |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 890 | { |
Hong zhi guo | ccf7e72 | 2012-06-06 22:36:27 +0000 | [diff] [blame] | 891 | DEFINE_WAIT(wait); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 892 | struct sk_buff *skb; |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 893 | ssize_t ret = 0; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 894 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 895 | while (len) { |
Jason Wang | 89cee91 | 2013-06-05 23:54:34 +0000 | [diff] [blame] | 896 | if (!noblock) |
| 897 | prepare_to_wait(sk_sleep(&q->sk), &wait, |
| 898 | TASK_INTERRUPTIBLE); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 899 | |
| 900 | /* Read frames from the queue */ |
| 901 | skb = skb_dequeue(&q->sk.sk_receive_queue); |
| 902 | if (!skb) { |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 903 | if (noblock) { |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 904 | ret = -EAGAIN; |
| 905 | break; |
| 906 | } |
| 907 | if (signal_pending(current)) { |
| 908 | ret = -ERESTARTSYS; |
| 909 | break; |
| 910 | } |
| 911 | /* Nothing to read, let's sleep */ |
| 912 | schedule(); |
| 913 | continue; |
| 914 | } |
| 915 | ret = macvtap_put_user(q, skb, iv, len); |
| 916 | kfree_skb(skb); |
| 917 | break; |
| 918 | } |
| 919 | |
Jason Wang | 89cee91 | 2013-06-05 23:54:34 +0000 | [diff] [blame] | 920 | if (!noblock) |
| 921 | finish_wait(sk_sleep(&q->sk), &wait); |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 922 | return ret; |
| 923 | } |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 924 | |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 925 | static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv, |
| 926 | unsigned long count, loff_t pos) |
| 927 | { |
| 928 | struct file *file = iocb->ki_filp; |
| 929 | struct macvtap_queue *q = file->private_data; |
| 930 | ssize_t len, ret = 0; |
| 931 | |
| 932 | len = iov_length(iv, count); |
| 933 | if (len < 0) { |
| 934 | ret = -EINVAL; |
| 935 | goto out; |
| 936 | } |
| 937 | |
| 938 | ret = macvtap_do_read(q, iocb, iv, len, file->f_flags & O_NONBLOCK); |
| 939 | ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */ |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 940 | out: |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 941 | return ret; |
| 942 | } |
| 943 | |
Jason Wang | 8f475a3 | 2013-06-05 23:54:36 +0000 | [diff] [blame] | 944 | static struct macvlan_dev *macvtap_get_vlan(struct macvtap_queue *q) |
| 945 | { |
| 946 | struct macvlan_dev *vlan; |
| 947 | |
| 948 | rcu_read_lock_bh(); |
| 949 | vlan = rcu_dereference_bh(q->vlan); |
| 950 | if (vlan) |
| 951 | dev_hold(vlan->dev); |
| 952 | rcu_read_unlock_bh(); |
| 953 | |
| 954 | return vlan; |
| 955 | } |
| 956 | |
| 957 | static void macvtap_put_vlan(struct macvlan_dev *vlan) |
| 958 | { |
| 959 | dev_put(vlan->dev); |
| 960 | } |
| 961 | |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 962 | static int macvtap_ioctl_set_queue(struct file *file, unsigned int flags) |
| 963 | { |
| 964 | struct macvtap_queue *q = file->private_data; |
| 965 | struct macvlan_dev *vlan; |
| 966 | int ret; |
| 967 | |
| 968 | vlan = macvtap_get_vlan(q); |
| 969 | if (!vlan) |
| 970 | return -EINVAL; |
| 971 | |
| 972 | if (flags & IFF_ATTACH_QUEUE) |
| 973 | ret = macvtap_enable_queue(vlan->dev, file, q); |
| 974 | else if (flags & IFF_DETACH_QUEUE) |
| 975 | ret = macvtap_disable_queue(q); |
| 976 | |
| 977 | macvtap_put_vlan(vlan); |
| 978 | return ret; |
| 979 | } |
| 980 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 981 | /* |
| 982 | * provide compatibility with generic tun/tap interface |
| 983 | */ |
| 984 | static long macvtap_ioctl(struct file *file, unsigned int cmd, |
| 985 | unsigned long arg) |
| 986 | { |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 987 | struct macvtap_queue *q = file->private_data; |
| 988 | struct macvlan_dev *vlan; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 989 | void __user *argp = (void __user *)arg; |
| 990 | struct ifreq __user *ifr = argp; |
| 991 | unsigned int __user *up = argp; |
| 992 | unsigned int u; |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 993 | int __user *sp = argp; |
| 994 | int s; |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 995 | int ret; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 996 | |
| 997 | switch (cmd) { |
| 998 | case TUNSETIFF: |
| 999 | /* ignore the name, just look at flags */ |
| 1000 | if (get_user(u, &ifr->ifr_flags)) |
| 1001 | return -EFAULT; |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 1002 | |
| 1003 | ret = 0; |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 1004 | if ((u & ~(IFF_VNET_HDR | IFF_MULTI_QUEUE)) != |
| 1005 | (IFF_NO_PI | IFF_TAP)) |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 1006 | ret = -EINVAL; |
| 1007 | else |
| 1008 | q->flags = u; |
| 1009 | |
| 1010 | return ret; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1011 | |
| 1012 | case TUNGETIFF: |
Jason Wang | 8f475a3 | 2013-06-05 23:54:36 +0000 | [diff] [blame] | 1013 | vlan = macvtap_get_vlan(q); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 1014 | if (!vlan) |
| 1015 | return -ENOLINK; |
| 1016 | |
| 1017 | ret = 0; |
Eric Dumazet | 13707f9 | 2011-01-26 19:28:23 +0000 | [diff] [blame] | 1018 | if (copy_to_user(&ifr->ifr_name, vlan->dev->name, IFNAMSIZ) || |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 1019 | put_user(q->flags, &ifr->ifr_flags)) |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 1020 | ret = -EFAULT; |
Jason Wang | 8f475a3 | 2013-06-05 23:54:36 +0000 | [diff] [blame] | 1021 | macvtap_put_vlan(vlan); |
Arnd Bergmann | 02df55d | 2010-02-18 05:45:36 +0000 | [diff] [blame] | 1022 | return ret; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1023 | |
Jason Wang | 815f236 | 2013-06-05 23:54:39 +0000 | [diff] [blame^] | 1024 | case TUNSETQUEUE: |
| 1025 | if (get_user(u, &ifr->ifr_flags)) |
| 1026 | return -EFAULT; |
| 1027 | return macvtap_ioctl_set_queue(file, u); |
| 1028 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1029 | case TUNGETFEATURES: |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 1030 | if (put_user(IFF_TAP | IFF_NO_PI | IFF_VNET_HDR, up)) |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1031 | return -EFAULT; |
| 1032 | return 0; |
| 1033 | |
| 1034 | case TUNSETSNDBUF: |
| 1035 | if (get_user(u, up)) |
| 1036 | return -EFAULT; |
| 1037 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1038 | q->sk.sk_sndbuf = u; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1039 | return 0; |
| 1040 | |
Michael S. Tsirkin | 55afbd0 | 2010-04-29 13:50:48 +0300 | [diff] [blame] | 1041 | case TUNGETVNETHDRSZ: |
| 1042 | s = q->vnet_hdr_sz; |
| 1043 | if (put_user(s, sp)) |
| 1044 | return -EFAULT; |
| 1045 | return 0; |
| 1046 | |
| 1047 | case TUNSETVNETHDRSZ: |
| 1048 | if (get_user(s, sp)) |
| 1049 | return -EFAULT; |
| 1050 | if (s < (int)sizeof(struct virtio_net_hdr)) |
| 1051 | return -EINVAL; |
| 1052 | |
| 1053 | q->vnet_hdr_sz = s; |
| 1054 | return 0; |
| 1055 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1056 | case TUNSETOFFLOAD: |
| 1057 | /* let the user check for future flags */ |
| 1058 | if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 | |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 1059 | TUN_F_TSO_ECN | TUN_F_UFO)) |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1060 | return -EINVAL; |
| 1061 | |
Arnd Bergmann | b9fb9ee | 2010-02-18 05:48:17 +0000 | [diff] [blame] | 1062 | /* TODO: only accept frames with the features that |
| 1063 | got enabled for forwarded frames */ |
| 1064 | if (!(q->flags & IFF_VNET_HDR)) |
| 1065 | return -EINVAL; |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1066 | return 0; |
| 1067 | |
| 1068 | default: |
| 1069 | return -EINVAL; |
| 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | #ifdef CONFIG_COMPAT |
| 1074 | static long macvtap_compat_ioctl(struct file *file, unsigned int cmd, |
| 1075 | unsigned long arg) |
| 1076 | { |
| 1077 | return macvtap_ioctl(file, cmd, (unsigned long)compat_ptr(arg)); |
| 1078 | } |
| 1079 | #endif |
| 1080 | |
| 1081 | static const struct file_operations macvtap_fops = { |
| 1082 | .owner = THIS_MODULE, |
| 1083 | .open = macvtap_open, |
| 1084 | .release = macvtap_release, |
| 1085 | .aio_read = macvtap_aio_read, |
| 1086 | .aio_write = macvtap_aio_write, |
| 1087 | .poll = macvtap_poll, |
| 1088 | .llseek = no_llseek, |
| 1089 | .unlocked_ioctl = macvtap_ioctl, |
| 1090 | #ifdef CONFIG_COMPAT |
| 1091 | .compat_ioctl = macvtap_compat_ioctl, |
| 1092 | #endif |
| 1093 | }; |
| 1094 | |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 1095 | static int macvtap_sendmsg(struct kiocb *iocb, struct socket *sock, |
| 1096 | struct msghdr *m, size_t total_len) |
| 1097 | { |
| 1098 | struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock); |
Shirley Ma | 97bc363 | 2011-07-06 12:26:11 +0000 | [diff] [blame] | 1099 | return macvtap_get_user(q, m, m->msg_iov, total_len, m->msg_iovlen, |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 1100 | m->msg_flags & MSG_DONTWAIT); |
| 1101 | } |
| 1102 | |
| 1103 | static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock, |
| 1104 | struct msghdr *m, size_t total_len, |
| 1105 | int flags) |
| 1106 | { |
| 1107 | struct macvtap_queue *q = container_of(sock, struct macvtap_queue, sock); |
| 1108 | int ret; |
| 1109 | if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) |
| 1110 | return -EINVAL; |
| 1111 | ret = macvtap_do_read(q, iocb, m->msg_iov, total_len, |
| 1112 | flags & MSG_DONTWAIT); |
| 1113 | if (ret > total_len) { |
| 1114 | m->msg_flags |= MSG_TRUNC; |
| 1115 | ret = flags & MSG_TRUNC ? ret : total_len; |
| 1116 | } |
| 1117 | return ret; |
| 1118 | } |
| 1119 | |
| 1120 | /* Ops structure to mimic raw sockets with tun */ |
| 1121 | static const struct proto_ops macvtap_socket_ops = { |
| 1122 | .sendmsg = macvtap_sendmsg, |
| 1123 | .recvmsg = macvtap_recvmsg, |
| 1124 | }; |
| 1125 | |
| 1126 | /* Get an underlying socket object from tun file. Returns error unless file is |
| 1127 | * attached to a device. The returned object works like a packet socket, it |
| 1128 | * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for |
| 1129 | * holding a reference to the file for as long as the socket is in use. */ |
| 1130 | struct socket *macvtap_get_socket(struct file *file) |
| 1131 | { |
| 1132 | struct macvtap_queue *q; |
| 1133 | if (file->f_op != &macvtap_fops) |
| 1134 | return ERR_PTR(-EINVAL); |
| 1135 | q = file->private_data; |
| 1136 | if (!q) |
| 1137 | return ERR_PTR(-EBADFD); |
| 1138 | return &q->sock; |
| 1139 | } |
| 1140 | EXPORT_SYMBOL_GPL(macvtap_get_socket); |
| 1141 | |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1142 | static int macvtap_device_event(struct notifier_block *unused, |
| 1143 | unsigned long event, void *ptr) |
| 1144 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 1145 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1146 | struct macvlan_dev *vlan; |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1147 | struct device *classdev; |
| 1148 | dev_t devt; |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1149 | int err; |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1150 | |
| 1151 | if (dev->rtnl_link_ops != &macvtap_link_ops) |
| 1152 | return NOTIFY_DONE; |
| 1153 | |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1154 | vlan = netdev_priv(dev); |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1155 | |
| 1156 | switch (event) { |
| 1157 | case NETDEV_REGISTER: |
| 1158 | /* Create the device node here after the network device has |
| 1159 | * been registered but before register_netdevice has |
| 1160 | * finished running. |
| 1161 | */ |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1162 | err = macvtap_get_minor(vlan); |
| 1163 | if (err) |
| 1164 | return notifier_from_errno(err); |
| 1165 | |
| 1166 | devt = MKDEV(MAJOR(macvtap_major), vlan->minor); |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1167 | classdev = device_create(macvtap_class, &dev->dev, devt, |
| 1168 | dev, "tap%d", dev->ifindex); |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1169 | if (IS_ERR(classdev)) { |
| 1170 | macvtap_free_minor(vlan); |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1171 | return notifier_from_errno(PTR_ERR(classdev)); |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1172 | } |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1173 | break; |
| 1174 | case NETDEV_UNREGISTER: |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1175 | devt = MKDEV(MAJOR(macvtap_major), vlan->minor); |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1176 | device_destroy(macvtap_class, devt); |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 1177 | macvtap_free_minor(vlan); |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1178 | break; |
| 1179 | } |
| 1180 | |
| 1181 | return NOTIFY_DONE; |
| 1182 | } |
| 1183 | |
| 1184 | static struct notifier_block macvtap_notifier_block __read_mostly = { |
| 1185 | .notifier_call = macvtap_device_event, |
| 1186 | }; |
| 1187 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1188 | static int macvtap_init(void) |
| 1189 | { |
| 1190 | int err; |
| 1191 | |
| 1192 | err = alloc_chrdev_region(&macvtap_major, 0, |
| 1193 | MACVTAP_NUM_DEVS, "macvtap"); |
| 1194 | if (err) |
| 1195 | goto out1; |
| 1196 | |
| 1197 | cdev_init(&macvtap_cdev, &macvtap_fops); |
| 1198 | err = cdev_add(&macvtap_cdev, macvtap_major, MACVTAP_NUM_DEVS); |
| 1199 | if (err) |
| 1200 | goto out2; |
| 1201 | |
| 1202 | macvtap_class = class_create(THIS_MODULE, "macvtap"); |
| 1203 | if (IS_ERR(macvtap_class)) { |
| 1204 | err = PTR_ERR(macvtap_class); |
| 1205 | goto out3; |
| 1206 | } |
| 1207 | |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1208 | err = register_netdevice_notifier(&macvtap_notifier_block); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1209 | if (err) |
| 1210 | goto out4; |
| 1211 | |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1212 | err = macvlan_link_register(&macvtap_link_ops); |
| 1213 | if (err) |
| 1214 | goto out5; |
| 1215 | |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1216 | return 0; |
| 1217 | |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1218 | out5: |
| 1219 | unregister_netdevice_notifier(&macvtap_notifier_block); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1220 | out4: |
| 1221 | class_unregister(macvtap_class); |
| 1222 | out3: |
| 1223 | cdev_del(&macvtap_cdev); |
| 1224 | out2: |
| 1225 | unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS); |
| 1226 | out1: |
| 1227 | return err; |
| 1228 | } |
| 1229 | module_init(macvtap_init); |
| 1230 | |
| 1231 | static void macvtap_exit(void) |
| 1232 | { |
| 1233 | rtnl_link_unregister(&macvtap_link_ops); |
Eric W. Biederman | 9bf1907 | 2011-10-20 04:28:46 +0000 | [diff] [blame] | 1234 | unregister_netdevice_notifier(&macvtap_notifier_block); |
Arnd Bergmann | 20d29d7 | 2010-01-30 12:24:26 +0000 | [diff] [blame] | 1235 | class_unregister(macvtap_class); |
| 1236 | cdev_del(&macvtap_cdev); |
| 1237 | unregister_chrdev_region(macvtap_major, MACVTAP_NUM_DEVS); |
| 1238 | } |
| 1239 | module_exit(macvtap_exit); |
| 1240 | |
| 1241 | MODULE_ALIAS_RTNL_LINK("macvtap"); |
| 1242 | MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>"); |
| 1243 | MODULE_LICENSE("GPL"); |