1 #include <linux/etherdevice.h>
3 #include <linux/if_vlan.h>
4 #include <linux/if_tap.h>
5 #include <linux/interrupt.h>
6 #include <linux/nsproxy.h>
7 #include <linux/compat.h>
8 #include <linux/if_tun.h>
9 #include <linux/module.h>
10 #include <linux/skbuff.h>
11 #include <linux/cache.h>
12 #include <linux/sched.h>
13 #include <linux/types.h>
14 #include <linux/slab.h>
15 #include <linux/wait.h>
16 #include <linux/cdev.h>
17 #include <linux/idr.h>
19 #include <linux/uio.h>
21 #include <net/net_namespace.h>
22 #include <net/rtnetlink.h>
24 #include <linux/virtio_net.h>
26 #define TUN_OFFLOADS (NETIF_F_HW_CSUM | NETIF_F_TSO_ECN | NETIF_F_TSO | \
29 static dev_t ipvtap_major
;
30 static struct cdev ipvtap_cdev
;
32 static const void *ipvtap_net_namespace(struct device
*d
)
34 struct net_device
*dev
= to_net_dev(d
->parent
);
38 static struct class ipvtap_class
= {
41 .ns_type
= &net_ns_type_operations
,
42 .namespace = ipvtap_net_namespace
,
50 static void ipvtap_count_tx_dropped(struct tap_dev
*tap
)
52 struct ipvtap_dev
*vlantap
= container_of(tap
, struct ipvtap_dev
, tap
);
53 struct ipvl_dev
*vlan
= &vlantap
->vlan
;
55 this_cpu_inc(vlan
->pcpu_stats
->tx_drps
);
58 static void ipvtap_count_rx_dropped(struct tap_dev
*tap
)
60 struct ipvtap_dev
*vlantap
= container_of(tap
, struct ipvtap_dev
, tap
);
61 struct ipvl_dev
*vlan
= &vlantap
->vlan
;
63 ipvlan_count_rx(vlan
, 0, 0, 0);
66 static void ipvtap_update_features(struct tap_dev
*tap
,
67 netdev_features_t features
)
69 struct ipvtap_dev
*vlantap
= container_of(tap
, struct ipvtap_dev
, tap
);
70 struct ipvl_dev
*vlan
= &vlantap
->vlan
;
72 vlan
->sfeatures
= features
;
73 netdev_update_features(vlan
->dev
);
76 static int ipvtap_newlink(struct net
*src_net
, struct net_device
*dev
,
77 struct nlattr
*tb
[], struct nlattr
*data
[],
78 struct netlink_ext_ack
*extack
)
80 struct ipvtap_dev
*vlantap
= netdev_priv(dev
);
83 INIT_LIST_HEAD(&vlantap
->tap
.queue_list
);
85 /* Since macvlan supports all offloads by default, make
86 * tap support all offloads also.
88 vlantap
->tap
.tap_features
= TUN_OFFLOADS
;
89 vlantap
->tap
.count_tx_dropped
= ipvtap_count_tx_dropped
;
90 vlantap
->tap
.update_features
= ipvtap_update_features
;
91 vlantap
->tap
.count_rx_dropped
= ipvtap_count_rx_dropped
;
93 err
= netdev_rx_handler_register(dev
, tap_handle_frame
, &vlantap
->tap
);
97 /* Don't put anything that may fail after macvlan_common_newlink
98 * because we can't undo what it does.
100 err
= ipvlan_link_new(src_net
, dev
, tb
, data
, extack
);
102 netdev_rx_handler_unregister(dev
);
106 vlantap
->tap
.dev
= vlantap
->vlan
.dev
;
111 static void ipvtap_dellink(struct net_device
*dev
,
112 struct list_head
*head
)
114 struct ipvtap_dev
*vlan
= netdev_priv(dev
);
116 netdev_rx_handler_unregister(dev
);
117 tap_del_queues(&vlan
->tap
);
118 ipvlan_link_delete(dev
, head
);
121 static void ipvtap_setup(struct net_device
*dev
)
123 ipvlan_link_setup(dev
);
124 dev
->tx_queue_len
= TUN_READQ_SIZE
;
125 dev
->priv_flags
&= ~IFF_NO_QUEUE
;
128 static struct rtnl_link_ops ipvtap_link_ops __read_mostly
= {
130 .setup
= ipvtap_setup
,
131 .newlink
= ipvtap_newlink
,
132 .dellink
= ipvtap_dellink
,
133 .priv_size
= sizeof(struct ipvtap_dev
),
136 static int ipvtap_device_event(struct notifier_block
*unused
,
137 unsigned long event
, void *ptr
)
139 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
140 struct ipvtap_dev
*vlantap
;
141 struct device
*classdev
;
144 char tap_name
[IFNAMSIZ
];
146 if (dev
->rtnl_link_ops
!= &ipvtap_link_ops
)
149 snprintf(tap_name
, IFNAMSIZ
, "tap%d", dev
->ifindex
);
150 vlantap
= netdev_priv(dev
);
153 case NETDEV_REGISTER
:
154 /* Create the device node here after the network device has
155 * been registered but before register_netdevice has
158 err
= tap_get_minor(ipvtap_major
, &vlantap
->tap
);
160 return notifier_from_errno(err
);
162 devt
= MKDEV(MAJOR(ipvtap_major
), vlantap
->tap
.minor
);
163 classdev
= device_create(&ipvtap_class
, &dev
->dev
, devt
,
165 if (IS_ERR(classdev
)) {
166 tap_free_minor(ipvtap_major
, &vlantap
->tap
);
167 return notifier_from_errno(PTR_ERR(classdev
));
169 err
= sysfs_create_link(&dev
->dev
.kobj
, &classdev
->kobj
,
172 return notifier_from_errno(err
);
174 case NETDEV_UNREGISTER
:
175 /* vlan->minor == 0 if NETDEV_REGISTER above failed */
176 if (vlantap
->tap
.minor
== 0)
178 sysfs_remove_link(&dev
->dev
.kobj
, tap_name
);
179 devt
= MKDEV(MAJOR(ipvtap_major
), vlantap
->tap
.minor
);
180 device_destroy(&ipvtap_class
, devt
);
181 tap_free_minor(ipvtap_major
, &vlantap
->tap
);
183 case NETDEV_CHANGE_TX_QUEUE_LEN
:
184 if (tap_queue_resize(&vlantap
->tap
))
192 static struct notifier_block ipvtap_notifier_block __read_mostly
= {
193 .notifier_call
= ipvtap_device_event
,
196 static int ipvtap_init(void)
200 err
= tap_create_cdev(&ipvtap_cdev
, &ipvtap_major
, "ipvtap");
205 err
= class_register(&ipvtap_class
);
209 err
= register_netdevice_notifier(&ipvtap_notifier_block
);
213 err
= ipvlan_link_register(&ipvtap_link_ops
);
220 unregister_netdevice_notifier(&ipvtap_notifier_block
);
222 class_unregister(&ipvtap_class
);
224 tap_destroy_cdev(ipvtap_major
, &ipvtap_cdev
);
228 module_init(ipvtap_init
);
230 static void ipvtap_exit(void)
232 rtnl_link_unregister(&ipvtap_link_ops
);
233 unregister_netdevice_notifier(&ipvtap_notifier_block
);
234 class_unregister(&ipvtap_class
);
235 tap_destroy_cdev(ipvtap_major
, &ipvtap_cdev
);
237 module_exit(ipvtap_exit
);
238 MODULE_ALIAS_RTNL_LINK("ipvtap");
239 MODULE_AUTHOR("Sainath Grandhi <sainath.grandhi@intel.com>");
240 MODULE_LICENSE("GPL");