tun.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376
  1. /*
  2. * TUN - Universal TUN/TAP device driver.
  3. * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
  16. */
  17. /*
  18. * Changes:
  19. *
  20. * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
  21. * Add TUNSETLINK ioctl to set the link encapsulation
  22. *
  23. * Mark Smith <markzzzsmith@yahoo.com.au>
  24. * Use eth_random_addr() for tap MAC address.
  25. *
  26. * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20
  27. * Fixes in packet dropping, queue length setting and queue wakeup.
  28. * Increased default tx queue length.
  29. * Added ethtool API.
  30. * Minor cleanups
  31. *
  32. * Daniel Podlejski <underley@underley.eu.org>
  33. * Modifications for 2.3.99-pre5 kernel.
  34. */
  35. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  36. #define DRV_NAME "tun"
  37. #define DRV_VERSION "1.6"
  38. #define DRV_DESCRIPTION "Universal TUN/TAP device driver"
  39. #define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
  40. #include <linux/module.h>
  41. #include <linux/errno.h>
  42. #include <linux/kernel.h>
  43. #include <linux/major.h>
  44. #include <linux/slab.h>
  45. #include <linux/poll.h>
  46. #include <linux/fcntl.h>
  47. #include <linux/init.h>
  48. #include <linux/skbuff.h>
  49. #include <linux/netdevice.h>
  50. #include <linux/etherdevice.h>
  51. #include <linux/miscdevice.h>
  52. #include <linux/ethtool.h>
  53. #include <linux/rtnetlink.h>
  54. #include <linux/compat.h>
  55. #include <linux/if.h>
  56. #include <linux/if_arp.h>
  57. #include <linux/if_ether.h>
  58. #include <linux/if_tun.h>
  59. #include <linux/if_vlan.h>
  60. #include <linux/crc32.h>
  61. #include <linux/nsproxy.h>
  62. #include <linux/virtio_net.h>
  63. #include <linux/rcupdate.h>
  64. #include <net/net_namespace.h>
  65. #include <net/netns/generic.h>
  66. #include <net/rtnetlink.h>
  67. #include <net/sock.h>
  68. #include <linux/seq_file.h>
  69. #include <asm/uaccess.h>
  70. /* Uncomment to enable debugging */
  71. /* #define TUN_DEBUG 1 */
  72. #ifdef TUN_DEBUG
  73. static int debug;
  74. #define tun_debug(level, tun, fmt, args...) \
  75. do { \
  76. if (tun->debug) \
  77. netdev_printk(level, tun->dev, fmt, ##args); \
  78. } while (0)
  79. #define DBG1(level, fmt, args...) \
  80. do { \
  81. if (debug == 2) \
  82. printk(level fmt, ##args); \
  83. } while (0)
  84. #else
  85. #define tun_debug(level, tun, fmt, args...) \
  86. do { \
  87. if (0) \
  88. netdev_printk(level, tun->dev, fmt, ##args); \
  89. } while (0)
  90. #define DBG1(level, fmt, args...) \
  91. do { \
  92. if (0) \
  93. printk(level fmt, ##args); \
  94. } while (0)
  95. #endif
  96. #define GOODCOPY_LEN 128
  97. #define FLT_EXACT_COUNT 8
  98. struct tap_filter {
  99. unsigned int count; /* Number of addrs. Zero means disabled */
  100. u32 mask[2]; /* Mask of the hashed addrs */
  101. unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN];
  102. };
  103. /* DEFAULT_MAX_NUM_RSS_QUEUES were chosen to let the rx/tx queues allocated for
  104. * the netdevice to be fit in one page. So we can make sure the success of
  105. * memory allocation. TODO: increase the limit. */
  106. #define MAX_TAP_QUEUES DEFAULT_MAX_NUM_RSS_QUEUES
  107. #define MAX_TAP_FLOWS 4096
  108. #define TUN_FLOW_EXPIRE (3 * HZ)
  109. /* A tun_file connects an open character device to a tuntap netdevice. It
  110. * also contains all socket related structures (except sock_fprog and tap_filter)
  111. * to serve as one transmit queue for tuntap device. The sock_fprog and
  112. * tap_filter were kept in tun_struct since they were used for filtering for the
  113. * netdevice not for a specific queue (at least I didn't see the requirement for
  114. * this).
  115. *
  116. * RCU usage:
  117. * The tun_file and tun_struct are loosely coupled, the pointer from one to the
  118. * other can only be read while rcu_read_lock or rtnl_lock is held.
  119. */
  120. struct tun_file {
  121. struct sock sk;
  122. struct socket socket;
  123. struct socket_wq wq;
  124. struct tun_struct __rcu *tun;
  125. struct net *net;
  126. struct fasync_struct *fasync;
  127. /* only used for fasnyc */
  128. unsigned int flags;
  129. union {
  130. u16 queue_index;
  131. unsigned int ifindex;
  132. };
  133. struct list_head next;
  134. struct tun_struct *detached;
  135. };
  136. struct tun_flow_entry {
  137. struct hlist_node hash_link;
  138. struct rcu_head rcu;
  139. struct tun_struct *tun;
  140. u32 rxhash;
  141. u32 rps_rxhash;
  142. int queue_index;
  143. unsigned long updated;
  144. };
  145. #define TUN_NUM_FLOW_ENTRIES 1024
  146. /* Since the socket were moved to tun_file, to preserve the behavior of persist
  147. * device, socket filter, sndbuf and vnet header size were restore when the
  148. * file were attached to a persist device.
  149. */
  150. struct tun_struct {
  151. struct tun_file __rcu *tfiles[MAX_TAP_QUEUES];
  152. unsigned int numqueues;
  153. unsigned int flags;
  154. kuid_t owner;
  155. kgid_t group;
  156. struct net_device *dev;
  157. netdev_features_t set_features;
  158. #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
  159. NETIF_F_TSO6|NETIF_F_UFO)
  160. int vnet_hdr_sz;
  161. int sndbuf;
  162. struct tap_filter txflt;
  163. struct sock_fprog fprog;
  164. /* protected by rtnl lock */
  165. bool filter_attached;
  166. #ifdef TUN_DEBUG
  167. int debug;
  168. #endif
  169. spinlock_t lock;
  170. struct hlist_head flows[TUN_NUM_FLOW_ENTRIES];
  171. struct timer_list flow_gc_timer;
  172. unsigned long ageing_time;
  173. unsigned int numdisabled;
  174. struct list_head disabled;
  175. void *security;
  176. u32 flow_count;
  177. };
  178. static inline u32 tun_hashfn(u32 rxhash)
  179. {
  180. return rxhash & 0x3ff;
  181. }
  182. static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash)
  183. {
  184. struct tun_flow_entry *e;
  185. hlist_for_each_entry_rcu(e, head, hash_link) {
  186. if (e->rxhash == rxhash)
  187. return e;
  188. }
  189. return NULL;
  190. }
  191. static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun,
  192. struct hlist_head *head,
  193. u32 rxhash, u16 queue_index)
  194. {
  195. struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC);
  196. if (e) {
  197. tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n",
  198. rxhash, queue_index);
  199. e->updated = jiffies;
  200. e->rxhash = rxhash;
  201. e->rps_rxhash = 0;
  202. e->queue_index = queue_index;
  203. e->tun = tun;
  204. hlist_add_head_rcu(&e->hash_link, head);
  205. ++tun->flow_count;
  206. }
  207. return e;
  208. }
  209. static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e)
  210. {
  211. tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n",
  212. e->rxhash, e->queue_index);
  213. sock_rps_reset_flow_hash(e->rps_rxhash);
  214. hlist_del_rcu(&e->hash_link);
  215. kfree_rcu(e, rcu);
  216. --tun->flow_count;
  217. }
  218. static void tun_flow_flush(struct tun_struct *tun)
  219. {
  220. int i;
  221. spin_lock_bh(&tun->lock);
  222. for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
  223. struct tun_flow_entry *e;
  224. struct hlist_node *n;
  225. hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link)
  226. tun_flow_delete(tun, e);
  227. }
  228. spin_unlock_bh(&tun->lock);
  229. }
  230. static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index)
  231. {
  232. int i;
  233. spin_lock_bh(&tun->lock);
  234. for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
  235. struct tun_flow_entry *e;
  236. struct hlist_node *n;
  237. hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
  238. if (e->queue_index == queue_index)
  239. tun_flow_delete(tun, e);
  240. }
  241. }
  242. spin_unlock_bh(&tun->lock);
  243. }
  244. static void tun_flow_cleanup(unsigned long data)
  245. {
  246. struct tun_struct *tun = (struct tun_struct *)data;
  247. unsigned long delay = tun->ageing_time;
  248. unsigned long next_timer = jiffies + delay;
  249. unsigned long count = 0;
  250. int i;
  251. tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n");
  252. spin_lock_bh(&tun->lock);
  253. for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) {
  254. struct tun_flow_entry *e;
  255. struct hlist_node *n;
  256. hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) {
  257. unsigned long this_timer;
  258. count++;
  259. this_timer = e->updated + delay;
  260. if (time_before_eq(this_timer, jiffies))
  261. tun_flow_delete(tun, e);
  262. else if (time_before(this_timer, next_timer))
  263. next_timer = this_timer;
  264. }
  265. }
  266. if (count)
  267. mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer));
  268. spin_unlock_bh(&tun->lock);
  269. }
  270. static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
  271. struct tun_file *tfile)
  272. {
  273. struct hlist_head *head;
  274. struct tun_flow_entry *e;
  275. unsigned long delay = tun->ageing_time;
  276. u16 queue_index = tfile->queue_index;
  277. if (!rxhash)
  278. return;
  279. else
  280. head = &tun->flows[tun_hashfn(rxhash)];
  281. rcu_read_lock();
  282. /* We may get a very small possibility of OOO during switching, not
  283. * worth to optimize.*/
  284. if (tun->numqueues == 1 || tfile->detached)
  285. goto unlock;
  286. e = tun_flow_find(head, rxhash);
  287. if (likely(e)) {
  288. /* TODO: keep queueing to old queue until it's empty? */
  289. e->queue_index = queue_index;
  290. e->updated = jiffies;
  291. sock_rps_record_flow_hash(e->rps_rxhash);
  292. } else {
  293. spin_lock_bh(&tun->lock);
  294. if (!tun_flow_find(head, rxhash) &&
  295. tun->flow_count < MAX_TAP_FLOWS)
  296. tun_flow_create(tun, head, rxhash, queue_index);
  297. if (!timer_pending(&tun->flow_gc_timer))
  298. mod_timer(&tun->flow_gc_timer,
  299. round_jiffies_up(jiffies + delay));
  300. spin_unlock_bh(&tun->lock);
  301. }
  302. unlock:
  303. rcu_read_unlock();
  304. }
  305. /**
  306. * Save the hash received in the stack receive path and update the
  307. * flow_hash table accordingly.
  308. */
  309. static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
  310. {
  311. if (unlikely(e->rps_rxhash != hash)) {
  312. sock_rps_reset_flow_hash(e->rps_rxhash);
  313. e->rps_rxhash = hash;
  314. }
  315. }
  316. /* We try to identify a flow through its rxhash first. The reason that
  317. * we do not check rxq no. is because some cards(e.g 82599), chooses
  318. * the rxq based on the txq where the last packet of the flow comes. As
  319. * the userspace application move between processors, we may get a
  320. * different rxq no. here. If we could not get rxhash, then we would
  321. * hope the rxq no. may help here.
  322. */
  323. static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb,
  324. void *accel_priv, select_queue_fallback_t fallback)
  325. {
  326. struct tun_struct *tun = netdev_priv(dev);
  327. struct tun_flow_entry *e;
  328. u32 txq = 0;
  329. u32 numqueues = 0;
  330. rcu_read_lock();
  331. numqueues = ACCESS_ONCE(tun->numqueues);
  332. txq = skb_get_hash(skb);
  333. if (txq) {
  334. e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
  335. if (e) {
  336. tun_flow_save_rps_rxhash(e, txq);
  337. txq = e->queue_index;
  338. } else
  339. /* use multiply and shift instead of expensive divide */
  340. txq = ((u64)txq * numqueues) >> 32;
  341. } else if (likely(skb_rx_queue_recorded(skb))) {
  342. txq = skb_get_rx_queue(skb);
  343. while (unlikely(txq >= numqueues))
  344. txq -= numqueues;
  345. }
  346. rcu_read_unlock();
  347. return txq;
  348. }
  349. static inline bool tun_not_capable(struct tun_struct *tun)
  350. {
  351. const struct cred *cred = current_cred();
  352. struct net *net = dev_net(tun->dev);
  353. return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) ||
  354. (gid_valid(tun->group) && !in_egroup_p(tun->group))) &&
  355. !ns_capable(net->user_ns, CAP_NET_ADMIN);
  356. }
  357. static void tun_set_real_num_queues(struct tun_struct *tun)
  358. {
  359. netif_set_real_num_tx_queues(tun->dev, tun->numqueues);
  360. netif_set_real_num_rx_queues(tun->dev, tun->numqueues);
  361. }
  362. static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
  363. {
  364. tfile->detached = tun;
  365. list_add_tail(&tfile->next, &tun->disabled);
  366. ++tun->numdisabled;
  367. }
  368. static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
  369. {
  370. struct tun_struct *tun = tfile->detached;
  371. tfile->detached = NULL;
  372. list_del_init(&tfile->next);
  373. --tun->numdisabled;
  374. return tun;
  375. }
  376. static void tun_queue_purge(struct tun_file *tfile)
  377. {
  378. skb_queue_purge(&tfile->sk.sk_receive_queue);
  379. skb_queue_purge(&tfile->sk.sk_error_queue);
  380. }
  381. static void __tun_detach(struct tun_file *tfile, bool clean)
  382. {
  383. struct tun_file *ntfile;
  384. struct tun_struct *tun;
  385. tun = rtnl_dereference(tfile->tun);
  386. if (tun && !tfile->detached) {
  387. u16 index = tfile->queue_index;
  388. BUG_ON(index >= tun->numqueues);
  389. rcu_assign_pointer(tun->tfiles[index],
  390. tun->tfiles[tun->numqueues - 1]);
  391. ntfile = rtnl_dereference(tun->tfiles[index]);
  392. ntfile->queue_index = index;
  393. --tun->numqueues;
  394. if (clean) {
  395. RCU_INIT_POINTER(tfile->tun, NULL);
  396. sock_put(&tfile->sk);
  397. } else
  398. tun_disable_queue(tun, tfile);
  399. synchronize_net();
  400. tun_flow_delete_by_queue(tun, tun->numqueues + 1);
  401. /* Drop read queue */
  402. tun_queue_purge(tfile);
  403. tun_set_real_num_queues(tun);
  404. } else if (tfile->detached && clean) {
  405. tun = tun_enable_queue(tfile);
  406. sock_put(&tfile->sk);
  407. }
  408. if (clean) {
  409. if (tun && tun->numqueues == 0 && tun->numdisabled == 0) {
  410. netif_carrier_off(tun->dev);
  411. if (!(tun->flags & TUN_PERSIST) &&
  412. tun->dev->reg_state == NETREG_REGISTERED)
  413. unregister_netdevice(tun->dev);
  414. }
  415. BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED,
  416. &tfile->socket.flags));
  417. sk_release_kernel(&tfile->sk);
  418. }
  419. }
  420. static void tun_detach(struct tun_file *tfile, bool clean)
  421. {
  422. rtnl_lock();
  423. __tun_detach(tfile, clean);
  424. rtnl_unlock();
  425. }
  426. static void tun_detach_all(struct net_device *dev)
  427. {
  428. struct tun_struct *tun = netdev_priv(dev);
  429. struct tun_file *tfile, *tmp;
  430. int i, n = tun->numqueues;
  431. for (i = 0; i < n; i++) {
  432. tfile = rtnl_dereference(tun->tfiles[i]);
  433. BUG_ON(!tfile);
  434. tfile->socket.sk->sk_data_ready(tfile->socket.sk);
  435. RCU_INIT_POINTER(tfile->tun, NULL);
  436. --tun->numqueues;
  437. }
  438. list_for_each_entry(tfile, &tun->disabled, next) {
  439. tfile->socket.sk->sk_data_ready(tfile->socket.sk);
  440. RCU_INIT_POINTER(tfile->tun, NULL);
  441. }
  442. BUG_ON(tun->numqueues != 0);
  443. synchronize_net();
  444. for (i = 0; i < n; i++) {
  445. tfile = rtnl_dereference(tun->tfiles[i]);
  446. /* Drop read queue */
  447. tun_queue_purge(tfile);
  448. sock_put(&tfile->sk);
  449. }
  450. list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) {
  451. tun_enable_queue(tfile);
  452. tun_queue_purge(tfile);
  453. sock_put(&tfile->sk);
  454. }
  455. BUG_ON(tun->numdisabled != 0);
  456. if (tun->flags & TUN_PERSIST)
  457. module_put(THIS_MODULE);
  458. }
  459. static int tun_attach(struct tun_struct *tun, struct file *file, bool skip_filter)
  460. {
  461. struct tun_file *tfile = file->private_data;
  462. int err;
  463. err = security_tun_dev_attach(tfile->socket.sk, tun->security);
  464. if (err < 0)
  465. goto out;
  466. err = -EINVAL;
  467. if (rtnl_dereference(tfile->tun) && !tfile->detached)
  468. goto out;
  469. err = -EBUSY;
  470. if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1)
  471. goto out;
  472. err = -E2BIG;
  473. if (!tfile->detached &&
  474. tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES)
  475. goto out;
  476. err = 0;
  477. /* Re-attach the filter to persist device */
  478. if (!skip_filter && (tun->filter_attached == true)) {
  479. err = sk_attach_filter(&tun->fprog, tfile->socket.sk);
  480. if (!err)
  481. goto out;
  482. }
  483. tfile->queue_index = tun->numqueues;
  484. rcu_assign_pointer(tfile->tun, tun);
  485. rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile);
  486. tun->numqueues++;
  487. if (tfile->detached)
  488. tun_enable_queue(tfile);
  489. else
  490. sock_hold(&tfile->sk);
  491. tun_set_real_num_queues(tun);
  492. /* device is allowed to go away first, so no need to hold extra
  493. * refcnt.
  494. */
  495. out:
  496. return err;
  497. }
  498. static struct tun_struct *__tun_get(struct tun_file *tfile)
  499. {
  500. struct tun_struct *tun;
  501. rcu_read_lock();
  502. tun = rcu_dereference(tfile->tun);
  503. if (tun)
  504. dev_hold(tun->dev);
  505. rcu_read_unlock();
  506. return tun;
  507. }
  508. static struct tun_struct *tun_get(struct file *file)
  509. {
  510. return __tun_get(file->private_data);
  511. }
  512. static void tun_put(struct tun_struct *tun)
  513. {
  514. dev_put(tun->dev);
  515. }
  516. /* TAP filtering */
  517. static void addr_hash_set(u32 *mask, const u8 *addr)
  518. {
  519. int n = ether_crc(ETH_ALEN, addr) >> 26;
  520. mask[n >> 5] |= (1 << (n & 31));
  521. }
  522. static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
  523. {
  524. int n = ether_crc(ETH_ALEN, addr) >> 26;
  525. return mask[n >> 5] & (1 << (n & 31));
  526. }
  527. static int update_filter(struct tap_filter *filter, void __user *arg)
  528. {
  529. struct { u8 u[ETH_ALEN]; } *addr;
  530. struct tun_filter uf;
  531. int err, alen, n, nexact;
  532. if (copy_from_user(&uf, arg, sizeof(uf)))
  533. return -EFAULT;
  534. if (!uf.count) {
  535. /* Disabled */
  536. filter->count = 0;
  537. return 0;
  538. }
  539. alen = ETH_ALEN * uf.count;
  540. addr = kmalloc(alen, GFP_KERNEL);
  541. if (!addr)
  542. return -ENOMEM;
  543. if (copy_from_user(addr, arg + sizeof(uf), alen)) {
  544. err = -EFAULT;
  545. goto done;
  546. }
  547. /* The filter is updated without holding any locks. Which is
  548. * perfectly safe. We disable it first and in the worst
  549. * case we'll accept a few undesired packets. */
  550. filter->count = 0;
  551. wmb();
  552. /* Use first set of addresses as an exact filter */
  553. for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
  554. memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
  555. nexact = n;
  556. /* Remaining multicast addresses are hashed,
  557. * unicast will leave the filter disabled. */
  558. memset(filter->mask, 0, sizeof(filter->mask));
  559. for (; n < uf.count; n++) {
  560. if (!is_multicast_ether_addr(addr[n].u)) {
  561. err = 0; /* no filter */
  562. goto done;
  563. }
  564. addr_hash_set(filter->mask, addr[n].u);
  565. }
  566. /* For ALLMULTI just set the mask to all ones.
  567. * This overrides the mask populated above. */
  568. if ((uf.flags & TUN_FLT_ALLMULTI))
  569. memset(filter->mask, ~0, sizeof(filter->mask));
  570. /* Now enable the filter */
  571. wmb();
  572. filter->count = nexact;
  573. /* Return the number of exact filters */
  574. err = nexact;
  575. done:
  576. kfree(addr);
  577. return err;
  578. }
  579. /* Returns: 0 - drop, !=0 - accept */
  580. static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
  581. {
  582. /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
  583. * at this point. */
  584. struct ethhdr *eh = (struct ethhdr *) skb->data;
  585. int i;
  586. /* Exact match */
  587. for (i = 0; i < filter->count; i++)
  588. if (ether_addr_equal(eh->h_dest, filter->addr[i]))
  589. return 1;
  590. /* Inexact match (multicast only) */
  591. if (is_multicast_ether_addr(eh->h_dest))
  592. return addr_hash_test(filter->mask, eh->h_dest);
  593. return 0;
  594. }
  595. /*
  596. * Checks whether the packet is accepted or not.
  597. * Returns: 0 - drop, !=0 - accept
  598. */
  599. static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
  600. {
  601. if (!filter->count)
  602. return 1;
  603. return run_filter(filter, skb);
  604. }
  605. /* Network device part of the driver */
  606. static const struct ethtool_ops tun_ethtool_ops;
  607. /* Net device detach from fd. */
  608. static void tun_net_uninit(struct net_device *dev)
  609. {
  610. tun_detach_all(dev);
  611. }
  612. /* Net device open. */
  613. static int tun_net_open(struct net_device *dev)
  614. {
  615. netif_tx_start_all_queues(dev);
  616. return 0;
  617. }
  618. /* Net device close. */
  619. static int tun_net_close(struct net_device *dev)
  620. {
  621. netif_tx_stop_all_queues(dev);
  622. return 0;
  623. }
  624. /* Net device start xmit */
  625. static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
  626. {
  627. struct tun_struct *tun = netdev_priv(dev);
  628. int txq = skb->queue_mapping;
  629. struct tun_file *tfile;
  630. u32 numqueues = 0;
  631. rcu_read_lock();
  632. tfile = rcu_dereference(tun->tfiles[txq]);
  633. numqueues = ACCESS_ONCE(tun->numqueues);
  634. /* Drop packet if interface is not attached */
  635. if (txq >= numqueues)
  636. goto drop;
  637. if (numqueues == 1) {
  638. /* Select queue was not called for the skbuff, so we extract the
  639. * RPS hash and save it into the flow_table here.
  640. */
  641. __u32 rxhash;
  642. rxhash = skb_get_hash(skb);
  643. if (rxhash) {
  644. struct tun_flow_entry *e;
  645. e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)],
  646. rxhash);
  647. if (e)
  648. tun_flow_save_rps_rxhash(e, rxhash);
  649. }
  650. }
  651. tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
  652. BUG_ON(!tfile);
  653. /* Drop if the filter does not like it.
  654. * This is a noop if the filter is disabled.
  655. * Filter can be enabled only for the TAP devices. */
  656. if (!check_filter(&tun->txflt, skb))
  657. goto drop;
  658. if (tfile->socket.sk->sk_filter &&
  659. sk_filter(tfile->socket.sk, skb))
  660. goto drop;
  661. /* Limit the number of packets queued by dividing txq length with the
  662. * number of queues.
  663. */
  664. if (skb_queue_len(&tfile->socket.sk->sk_receive_queue) * numqueues
  665. >= dev->tx_queue_len)
  666. goto drop;
  667. if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
  668. goto drop;
  669. if (skb->sk) {
  670. sock_tx_timestamp(skb->sk, &skb_shinfo(skb)->tx_flags);
  671. sw_tx_timestamp(skb);
  672. }
  673. /* Orphan the skb - required as we might hang on to it
  674. * for indefinite time.
  675. */
  676. skb_orphan(skb);
  677. nf_reset(skb);
  678. /* Enqueue packet */
  679. skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb);
  680. /* Notify and wake up reader process */
  681. if (tfile->flags & TUN_FASYNC)
  682. kill_fasync(&tfile->fasync, SIGIO, POLL_IN);
  683. tfile->socket.sk->sk_data_ready(tfile->socket.sk);
  684. rcu_read_unlock();
  685. return NETDEV_TX_OK;
  686. drop:
  687. dev->stats.tx_dropped++;
  688. skb_tx_error(skb);
  689. kfree_skb(skb);
  690. rcu_read_unlock();
  691. return NETDEV_TX_OK;
  692. }
  693. static void tun_net_mclist(struct net_device *dev)
  694. {
  695. /*
  696. * This callback is supposed to deal with mc filter in
  697. * _rx_ path and has nothing to do with the _tx_ path.
  698. * In rx path we always accept everything userspace gives us.
  699. */
  700. }
  701. #define MIN_MTU 68
  702. #define MAX_MTU 65535
  703. static int
  704. tun_net_change_mtu(struct net_device *dev, int new_mtu)
  705. {
  706. if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
  707. return -EINVAL;
  708. dev->mtu = new_mtu;
  709. return 0;
  710. }
  711. static netdev_features_t tun_net_fix_features(struct net_device *dev,
  712. netdev_features_t features)
  713. {
  714. struct tun_struct *tun = netdev_priv(dev);
  715. return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
  716. }
  717. #ifdef CONFIG_NET_POLL_CONTROLLER
  718. static void tun_poll_controller(struct net_device *dev)
  719. {
  720. /*
  721. * Tun only receives frames when:
  722. * 1) the char device endpoint gets data from user space
  723. * 2) the tun socket gets a sendmsg call from user space
  724. * Since both of those are synchronous operations, we are guaranteed
  725. * never to have pending data when we poll for it
  726. * so there is nothing to do here but return.
  727. * We need this though so netpoll recognizes us as an interface that
  728. * supports polling, which enables bridge devices in virt setups to
  729. * still use netconsole
  730. */
  731. return;
  732. }
  733. #endif
  734. static const struct net_device_ops tun_netdev_ops = {
  735. .ndo_uninit = tun_net_uninit,
  736. .ndo_open = tun_net_open,
  737. .ndo_stop = tun_net_close,
  738. .ndo_start_xmit = tun_net_xmit,
  739. .ndo_change_mtu = tun_net_change_mtu,
  740. .ndo_fix_features = tun_net_fix_features,
  741. .ndo_select_queue = tun_select_queue,
  742. #ifdef CONFIG_NET_POLL_CONTROLLER
  743. .ndo_poll_controller = tun_poll_controller,
  744. #endif
  745. };
  746. static const struct net_device_ops tap_netdev_ops = {
  747. .ndo_uninit = tun_net_uninit,
  748. .ndo_open = tun_net_open,
  749. .ndo_stop = tun_net_close,
  750. .ndo_start_xmit = tun_net_xmit,
  751. .ndo_change_mtu = tun_net_change_mtu,
  752. .ndo_fix_features = tun_net_fix_features,
  753. .ndo_set_rx_mode = tun_net_mclist,
  754. .ndo_set_mac_address = eth_mac_addr,
  755. .ndo_validate_addr = eth_validate_addr,
  756. .ndo_select_queue = tun_select_queue,
  757. #ifdef CONFIG_NET_POLL_CONTROLLER
  758. .ndo_poll_controller = tun_poll_controller,
  759. #endif
  760. };
  761. static void tun_flow_init(struct tun_struct *tun)
  762. {
  763. int i;
  764. for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
  765. INIT_HLIST_HEAD(&tun->flows[i]);
  766. tun->ageing_time = TUN_FLOW_EXPIRE;
  767. setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
  768. mod_timer(&tun->flow_gc_timer,
  769. round_jiffies_up(jiffies + tun->ageing_time));
  770. }
  771. static void tun_flow_uninit(struct tun_struct *tun)
  772. {
  773. del_timer_sync(&tun->flow_gc_timer);
  774. tun_flow_flush(tun);
  775. }
  776. /* Initialize net device. */
  777. static void tun_net_init(struct net_device *dev)
  778. {
  779. struct tun_struct *tun = netdev_priv(dev);
  780. switch (tun->flags & TUN_TYPE_MASK) {
  781. case TUN_TUN_DEV:
  782. dev->netdev_ops = &tun_netdev_ops;
  783. /* Point-to-Point TUN Device */
  784. dev->hard_header_len = 0;
  785. dev->addr_len = 0;
  786. dev->mtu = 1500;
  787. /* Zero header length */
  788. dev->type = ARPHRD_NONE;
  789. dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
  790. dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
  791. break;
  792. case TUN_TAP_DEV:
  793. dev->netdev_ops = &tap_netdev_ops;
  794. /* Ethernet TAP Device */
  795. ether_setup(dev);
  796. dev->priv_flags &= ~IFF_TX_SKB_SHARING;
  797. dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
  798. eth_hw_addr_random(dev);
  799. dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
  800. break;
  801. }
  802. }
  803. /* Character device part */
  804. /* Poll */
  805. static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
  806. {
  807. struct tun_file *tfile = file->private_data;
  808. struct tun_struct *tun = __tun_get(tfile);
  809. struct sock *sk;
  810. unsigned int mask = 0;
  811. if (!tun)
  812. return POLLERR;
  813. sk = tfile->socket.sk;
  814. tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
  815. poll_wait(file, sk_sleep(sk), wait);
  816. if (!skb_queue_empty(&sk->sk_receive_queue))
  817. mask |= POLLIN | POLLRDNORM;
  818. if (sock_writeable(sk) ||
  819. (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
  820. sock_writeable(sk)))
  821. mask |= POLLOUT | POLLWRNORM;
  822. if (tun->dev->reg_state != NETREG_REGISTERED)
  823. mask = POLLERR;
  824. tun_put(tun);
  825. return mask;
  826. }
  827. /* prepad is the amount to reserve at front. len is length after that.
  828. * linear is a hint as to how much to copy (usually headers). */
  829. static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
  830. size_t prepad, size_t len,
  831. size_t linear, int noblock)
  832. {
  833. struct sock *sk = tfile->socket.sk;
  834. struct sk_buff *skb;
  835. int err;
  836. /* Under a page? Don't bother with paged skb. */
  837. if (prepad + len < PAGE_SIZE || !linear)
  838. linear = len;
  839. skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
  840. &err, 0);
  841. if (!skb)
  842. return ERR_PTR(err);
  843. skb_reserve(skb, prepad);
  844. skb_put(skb, linear);
  845. skb->data_len = len - linear;
  846. skb->len += len - linear;
  847. return skb;
  848. }
  849. /* Get packet from user space buffer */
  850. static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
  851. void *msg_control, const struct iovec *iv,
  852. size_t total_len, size_t count, int noblock)
  853. {
  854. struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
  855. struct sk_buff *skb;
  856. size_t len = total_len, align = NET_SKB_PAD, linear;
  857. struct virtio_net_hdr gso = { 0 };
  858. int good_linear;
  859. int offset = 0;
  860. int copylen;
  861. bool zerocopy = false;
  862. int err;
  863. u32 rxhash;
  864. if (!(tun->flags & TUN_NO_PI)) {
  865. if (len < sizeof(pi))
  866. return -EINVAL;
  867. len -= sizeof(pi);
  868. if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
  869. return -EFAULT;
  870. offset += sizeof(pi);
  871. }
  872. if (tun->flags & TUN_VNET_HDR) {
  873. if (len < tun->vnet_hdr_sz)
  874. return -EINVAL;
  875. len -= tun->vnet_hdr_sz;
  876. if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
  877. return -EFAULT;
  878. if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
  879. gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
  880. gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
  881. if (gso.hdr_len > len)
  882. return -EINVAL;
  883. offset += tun->vnet_hdr_sz;
  884. }
  885. if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
  886. align += NET_IP_ALIGN;
  887. if (unlikely(len < ETH_HLEN ||
  888. (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
  889. return -EINVAL;
  890. }
  891. good_linear = SKB_MAX_HEAD(align);
  892. if (msg_control) {
  893. /* There are 256 bytes to be copied in skb, so there is
  894. * enough room for skb expand head in case it is used.
  895. * The rest of the buffer is mapped from userspace.
  896. */
  897. copylen = gso.hdr_len ? gso.hdr_len : GOODCOPY_LEN;
  898. if (copylen > good_linear)
  899. copylen = good_linear;
  900. linear = copylen;
  901. if (iov_pages(iv, offset + copylen, count) <= MAX_SKB_FRAGS)
  902. zerocopy = true;
  903. }
  904. if (!zerocopy) {
  905. copylen = len;
  906. if (gso.hdr_len > good_linear)
  907. linear = good_linear;
  908. else
  909. linear = gso.hdr_len;
  910. }
  911. skb = tun_alloc_skb(tfile, align, copylen, linear, noblock);
  912. if (IS_ERR(skb)) {
  913. if (PTR_ERR(skb) != -EAGAIN)
  914. tun->dev->stats.rx_dropped++;
  915. return PTR_ERR(skb);
  916. }
  917. if (zerocopy)
  918. err = zerocopy_sg_from_iovec(skb, iv, offset, count);
  919. else {
  920. err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
  921. if (!err && msg_control) {
  922. struct ubuf_info *uarg = msg_control;
  923. uarg->callback(uarg, false);
  924. }
  925. }
  926. if (err) {
  927. tun->dev->stats.rx_dropped++;
  928. kfree_skb(skb);
  929. return -EFAULT;
  930. }
  931. if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
  932. if (!skb_partial_csum_set(skb, gso.csum_start,
  933. gso.csum_offset)) {
  934. tun->dev->stats.rx_frame_errors++;
  935. kfree_skb(skb);
  936. return -EINVAL;
  937. }
  938. }
  939. switch (tun->flags & TUN_TYPE_MASK) {
  940. case TUN_TUN_DEV:
  941. if (tun->flags & TUN_NO_PI) {
  942. switch (skb->data[0] & 0xf0) {
  943. case 0x40:
  944. pi.proto = htons(ETH_P_IP);
  945. break;
  946. case 0x60:
  947. pi.proto = htons(ETH_P_IPV6);
  948. break;
  949. default:
  950. tun->dev->stats.rx_dropped++;
  951. kfree_skb(skb);
  952. return -EINVAL;
  953. }
  954. }
  955. skb_reset_mac_header(skb);
  956. skb->protocol = pi.proto;
  957. skb->dev = tun->dev;
  958. break;
  959. case TUN_TAP_DEV:
  960. skb->protocol = eth_type_trans(skb, tun->dev);
  961. break;
  962. }
  963. if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
  964. pr_debug("GSO!\n");
  965. switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
  966. case VIRTIO_NET_HDR_GSO_TCPV4:
  967. skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
  968. break;
  969. case VIRTIO_NET_HDR_GSO_TCPV6:
  970. skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
  971. break;
  972. case VIRTIO_NET_HDR_GSO_UDP:
  973. skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
  974. break;
  975. default:
  976. tun->dev->stats.rx_frame_errors++;
  977. kfree_skb(skb);
  978. return -EINVAL;
  979. }
  980. if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
  981. skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
  982. skb_shinfo(skb)->gso_size = gso.gso_size;
  983. if (skb_shinfo(skb)->gso_size == 0) {
  984. tun->dev->stats.rx_frame_errors++;
  985. kfree_skb(skb);
  986. return -EINVAL;
  987. }
  988. /* Header must be checked, and gso_segs computed. */
  989. skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
  990. skb_shinfo(skb)->gso_segs = 0;
  991. }
  992. /* copy skb_ubuf_info for callback when skb has no error */
  993. if (zerocopy) {
  994. skb_shinfo(skb)->destructor_arg = msg_control;
  995. skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
  996. skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
  997. }
  998. skb_reset_network_header(skb);
  999. skb_probe_transport_header(skb, 0);
  1000. rxhash = skb_get_hash(skb);
  1001. netif_rx_ni(skb);
  1002. tun->dev->stats.rx_packets++;
  1003. tun->dev->stats.rx_bytes += len;
  1004. tun_flow_update(tun, rxhash, tfile);
  1005. return total_len;
  1006. }
  1007. static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
  1008. unsigned long count, loff_t pos)
  1009. {
  1010. struct file *file = iocb->ki_filp;
  1011. struct tun_struct *tun = tun_get(file);
  1012. struct tun_file *tfile = file->private_data;
  1013. ssize_t result;
  1014. if (!tun)
  1015. return -EBADFD;
  1016. tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
  1017. result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
  1018. count, file->f_flags & O_NONBLOCK);
  1019. tun_put(tun);
  1020. return result;
  1021. }
  1022. /* Put packet to the user space buffer */
  1023. static ssize_t tun_put_user(struct tun_struct *tun,
  1024. struct tun_file *tfile,
  1025. struct sk_buff *skb,
  1026. const struct iovec *iv, int len)
  1027. {
  1028. struct tun_pi pi = { 0, skb->protocol };
  1029. ssize_t total = 0;
  1030. int vlan_offset = 0, copied;
  1031. if (!(tun->flags & TUN_NO_PI)) {
  1032. if ((len -= sizeof(pi)) < 0)
  1033. return -EINVAL;
  1034. if (len < skb->len) {
  1035. /* Packet will be striped */
  1036. pi.flags |= TUN_PKT_STRIP;
  1037. }
  1038. if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
  1039. return -EFAULT;
  1040. total += sizeof(pi);
  1041. }
  1042. if (tun->flags & TUN_VNET_HDR) {
  1043. struct virtio_net_hdr gso = { 0 }; /* no info leak */
  1044. if ((len -= tun->vnet_hdr_sz) < 0)
  1045. return -EINVAL;
  1046. if (skb_is_gso(skb)) {
  1047. struct skb_shared_info *sinfo = skb_shinfo(skb);
  1048. /* This is a hint as to how much should be linear. */
  1049. gso.hdr_len = skb_headlen(skb);
  1050. gso.gso_size = sinfo->gso_size;
  1051. if (sinfo->gso_type & SKB_GSO_TCPV4)
  1052. gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
  1053. else if (sinfo->gso_type & SKB_GSO_TCPV6)
  1054. gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
  1055. else if (sinfo->gso_type & SKB_GSO_UDP)
  1056. gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
  1057. else {
  1058. pr_err("unexpected GSO type: "
  1059. "0x%x, gso_size %d, hdr_len %d\n",
  1060. sinfo->gso_type, gso.gso_size,
  1061. gso.hdr_len);
  1062. print_hex_dump(KERN_ERR, "tun: ",
  1063. DUMP_PREFIX_NONE,
  1064. 16, 1, skb->head,
  1065. min((int)gso.hdr_len, 64), true);
  1066. WARN_ON_ONCE(1);
  1067. return -EINVAL;
  1068. }
  1069. if (sinfo->gso_type & SKB_GSO_TCP_ECN)
  1070. gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
  1071. } else
  1072. gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
  1073. if (skb->ip_summed == CHECKSUM_PARTIAL) {
  1074. gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
  1075. gso.csum_start = skb_checksum_start_offset(skb);
  1076. gso.csum_offset = skb->csum_offset;
  1077. } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
  1078. gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
  1079. } /* else everything is zero */
  1080. if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
  1081. sizeof(gso))))
  1082. return -EFAULT;
  1083. total += tun->vnet_hdr_sz;
  1084. }
  1085. copied = total;
  1086. total += skb->len;
  1087. if (!vlan_tx_tag_present(skb)) {
  1088. len = min_t(int, skb->len, len);
  1089. } else {
  1090. int copy, ret;
  1091. struct {
  1092. __be16 h_vlan_proto;
  1093. __be16 h_vlan_TCI;
  1094. } veth;
  1095. veth.h_vlan_proto = skb->vlan_proto;
  1096. veth.h_vlan_TCI = htons(vlan_tx_tag_get(skb));
  1097. vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
  1098. len = min_t(int, skb->len + VLAN_HLEN, len);
  1099. total += VLAN_HLEN;
  1100. copy = min_t(int, vlan_offset, len);
  1101. ret = skb_copy_datagram_const_iovec(skb, 0, iv, copied, copy);
  1102. len -= copy;
  1103. copied += copy;
  1104. if (ret || !len)
  1105. goto done;
  1106. copy = min_t(int, sizeof(veth), len);
  1107. ret = memcpy_toiovecend(iv, (void *)&veth, copied, copy);
  1108. len -= copy;
  1109. copied += copy;
  1110. if (ret || !len)
  1111. goto done;
  1112. }
  1113. skb_copy_datagram_const_iovec(skb, vlan_offset, iv, copied, len);
  1114. done:
  1115. tun->dev->stats.tx_packets++;
  1116. tun->dev->stats.tx_bytes += len;
  1117. return total;
  1118. }
  1119. static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
  1120. const struct iovec *iv, ssize_t len, int noblock)
  1121. {
  1122. struct sk_buff *skb;
  1123. ssize_t ret = 0;
  1124. int peeked, err, off = 0;
  1125. tun_debug(KERN_INFO, tun, "tun_do_read\n");
  1126. if (!len)
  1127. return ret;
  1128. if (tun->dev->reg_state != NETREG_REGISTERED)
  1129. return -EIO;
  1130. /* Read frames from queue */
  1131. skb = __skb_recv_datagram(tfile->socket.sk, noblock ? MSG_DONTWAIT : 0,
  1132. &peeked, &off, &err);
  1133. if (skb) {
  1134. ret = tun_put_user(tun, tfile, skb, iv, len);
  1135. kfree_skb(skb);
  1136. } else
  1137. ret = err;
  1138. return ret;
  1139. }
  1140. static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
  1141. unsigned long count, loff_t pos)
  1142. {
  1143. struct file *file = iocb->ki_filp;
  1144. struct tun_file *tfile = file->private_data;
  1145. struct tun_struct *tun = __tun_get(tfile);
  1146. ssize_t len, ret;
  1147. if (!tun)
  1148. return -EBADFD;
  1149. len = iov_length(iv, count);
  1150. if (len < 0) {
  1151. ret = -EINVAL;
  1152. goto out;
  1153. }
  1154. ret = tun_do_read(tun, tfile, iv, len,
  1155. file->f_flags & O_NONBLOCK);
  1156. ret = min_t(ssize_t, ret, len);
  1157. if (ret > 0)
  1158. iocb->ki_pos = ret;
  1159. out:
  1160. tun_put(tun);
  1161. return ret;
  1162. }
  1163. static void tun_free_netdev(struct net_device *dev)
  1164. {
  1165. struct tun_struct *tun = netdev_priv(dev);
  1166. BUG_ON(!(list_empty(&tun->disabled)));
  1167. tun_flow_uninit(tun);
  1168. security_tun_dev_free_security(tun->security);
  1169. free_netdev(dev);
  1170. }
  1171. static void tun_setup(struct net_device *dev)
  1172. {
  1173. struct tun_struct *tun = netdev_priv(dev);
  1174. tun->owner = INVALID_UID;
  1175. tun->group = INVALID_GID;
  1176. dev->ethtool_ops = &tun_ethtool_ops;
  1177. dev->destructor = tun_free_netdev;
  1178. }
  1179. /* Trivial set of netlink ops to allow deleting tun or tap
  1180. * device with netlink.
  1181. */
  1182. static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
  1183. {
  1184. return -EINVAL;
  1185. }
  1186. static struct rtnl_link_ops tun_link_ops __read_mostly = {
  1187. .kind = DRV_NAME,
  1188. .priv_size = sizeof(struct tun_struct),
  1189. .setup = tun_setup,
  1190. .validate = tun_validate,
  1191. };
  1192. static void tun_sock_write_space(struct sock *sk)
  1193. {
  1194. struct tun_file *tfile;
  1195. wait_queue_head_t *wqueue;
  1196. if (!sock_writeable(sk))
  1197. return;
  1198. if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
  1199. return;
  1200. wqueue = sk_sleep(sk);
  1201. if (wqueue && waitqueue_active(wqueue))
  1202. wake_up_interruptible_sync_poll(wqueue, POLLOUT |
  1203. POLLWRNORM | POLLWRBAND);
  1204. tfile = container_of(sk, struct tun_file, sk);
  1205. kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
  1206. }
  1207. static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
  1208. struct msghdr *m, size_t total_len)
  1209. {
  1210. int ret;
  1211. struct tun_file *tfile = container_of(sock, struct tun_file, socket);
  1212. struct tun_struct *tun = __tun_get(tfile);
  1213. if (!tun)
  1214. return -EBADFD;
  1215. ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
  1216. m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
  1217. tun_put(tun);
  1218. return ret;
  1219. }
  1220. static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
  1221. struct msghdr *m, size_t total_len,
  1222. int flags)
  1223. {
  1224. struct tun_file *tfile = container_of(sock, struct tun_file, socket);
  1225. struct tun_struct *tun = __tun_get(tfile);
  1226. int ret;
  1227. if (!tun)
  1228. return -EBADFD;
  1229. if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
  1230. ret = -EINVAL;
  1231. goto out;
  1232. }
  1233. if (flags & MSG_ERRQUEUE) {
  1234. ret = sock_recv_errqueue(sock->sk, m, total_len,
  1235. SOL_PACKET, TUN_TX_TIMESTAMP);
  1236. goto out;
  1237. }
  1238. ret = tun_do_read(tun, tfile, m->msg_iov, total_len,
  1239. flags & MSG_DONTWAIT);
  1240. if (ret > total_len) {
  1241. m->msg_flags |= MSG_TRUNC;
  1242. ret = flags & MSG_TRUNC ? ret : total_len;
  1243. }
  1244. out:
  1245. tun_put(tun);
  1246. return ret;
  1247. }
  1248. static int tun_release(struct socket *sock)
  1249. {
  1250. if (sock->sk)
  1251. sock_put(sock->sk);
  1252. return 0;
  1253. }
  1254. /* Ops structure to mimic raw sockets with tun */
  1255. static const struct proto_ops tun_socket_ops = {
  1256. .sendmsg = tun_sendmsg,
  1257. .recvmsg = tun_recvmsg,
  1258. .release = tun_release,
  1259. };
  1260. static struct proto tun_proto = {
  1261. .name = "tun",
  1262. .owner = THIS_MODULE,
  1263. .obj_size = sizeof(struct tun_file),
  1264. };
  1265. static int tun_flags(struct tun_struct *tun)
  1266. {
  1267. int flags = 0;
  1268. if (tun->flags & TUN_TUN_DEV)
  1269. flags |= IFF_TUN;
  1270. else
  1271. flags |= IFF_TAP;
  1272. if (tun->flags & TUN_NO_PI)
  1273. flags |= IFF_NO_PI;
  1274. /* This flag has no real effect. We track the value for backwards
  1275. * compatibility.
  1276. */
  1277. if (tun->flags & TUN_ONE_QUEUE)
  1278. flags |= IFF_ONE_QUEUE;
  1279. if (tun->flags & TUN_VNET_HDR)
  1280. flags |= IFF_VNET_HDR;
  1281. if (tun->flags & TUN_TAP_MQ)
  1282. flags |= IFF_MULTI_QUEUE;
  1283. if (tun->flags & TUN_PERSIST)
  1284. flags |= IFF_PERSIST;
  1285. return flags;
  1286. }
  1287. static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
  1288. char *buf)
  1289. {
  1290. struct tun_struct *tun = netdev_priv(to_net_dev(dev));
  1291. return sprintf(buf, "0x%x\n", tun_flags(tun));
  1292. }
  1293. static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
  1294. char *buf)
  1295. {
  1296. struct tun_struct *tun = netdev_priv(to_net_dev(dev));
  1297. return uid_valid(tun->owner)?
  1298. sprintf(buf, "%u\n",
  1299. from_kuid_munged(current_user_ns(), tun->owner)):
  1300. sprintf(buf, "-1\n");
  1301. }
  1302. static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
  1303. char *buf)
  1304. {
  1305. struct tun_struct *tun = netdev_priv(to_net_dev(dev));
  1306. return gid_valid(tun->group) ?
  1307. sprintf(buf, "%u\n",
  1308. from_kgid_munged(current_user_ns(), tun->group)):
  1309. sprintf(buf, "-1\n");
  1310. }
  1311. static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
  1312. static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
  1313. static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
  1314. static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
  1315. {
  1316. struct tun_struct *tun;
  1317. struct tun_file *tfile = file->private_data;
  1318. struct net_device *dev;
  1319. int err;
  1320. if (tfile->detached)
  1321. return -EINVAL;
  1322. dev = __dev_get_by_name(net, ifr->ifr_name);
  1323. if (dev) {
  1324. if (ifr->ifr_flags & IFF_TUN_EXCL)
  1325. return -EBUSY;
  1326. if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
  1327. tun = netdev_priv(dev);
  1328. else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
  1329. tun = netdev_priv(dev);
  1330. else
  1331. return -EINVAL;
  1332. if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
  1333. !!(tun->flags & TUN_TAP_MQ))
  1334. return -EINVAL;
  1335. if (tun_not_capable(tun))
  1336. return -EPERM;
  1337. err = security_tun_dev_open(tun->security);
  1338. if (err < 0)
  1339. return err;
  1340. err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER);
  1341. if (err < 0)
  1342. return err;
  1343. if (tun->flags & TUN_TAP_MQ &&
  1344. (tun->numqueues + tun->numdisabled > 1)) {
  1345. /* One or more queue has already been attached, no need
  1346. * to initialize the device again.
  1347. */
  1348. return 0;
  1349. }
  1350. }
  1351. else {
  1352. char *name;
  1353. unsigned long flags = 0;
  1354. int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
  1355. MAX_TAP_QUEUES : 1;
  1356. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  1357. return -EPERM;
  1358. err = security_tun_dev_create();
  1359. if (err < 0)
  1360. return err;
  1361. /* Set dev type */
  1362. if (ifr->ifr_flags & IFF_TUN) {
  1363. /* TUN device */
  1364. flags |= TUN_TUN_DEV;
  1365. name = "tun%d";
  1366. } else if (ifr->ifr_flags & IFF_TAP) {
  1367. /* TAP device */
  1368. flags |= TUN_TAP_DEV;
  1369. name = "tap%d";
  1370. } else
  1371. return -EINVAL;
  1372. if (*ifr->ifr_name)
  1373. name = ifr->ifr_name;
  1374. dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
  1375. NET_NAME_UNKNOWN, tun_setup, queues,
  1376. queues);
  1377. if (!dev)
  1378. return -ENOMEM;
  1379. dev_net_set(dev, net);
  1380. dev->rtnl_link_ops = &tun_link_ops;
  1381. dev->ifindex = tfile->ifindex;
  1382. tun = netdev_priv(dev);
  1383. tun->dev = dev;
  1384. tun->flags = flags;
  1385. tun->txflt.count = 0;
  1386. tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
  1387. tun->filter_attached = false;
  1388. tun->sndbuf = tfile->socket.sk->sk_sndbuf;
  1389. spin_lock_init(&tun->lock);
  1390. err = security_tun_dev_alloc_security(&tun->security);
  1391. if (err < 0)
  1392. goto err_free_dev;
  1393. tun_net_init(dev);
  1394. tun_flow_init(tun);
  1395. dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
  1396. TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
  1397. NETIF_F_HW_VLAN_STAG_TX;
  1398. dev->features = dev->hw_features;
  1399. dev->vlan_features = dev->features &
  1400. ~(NETIF_F_HW_VLAN_CTAG_TX |
  1401. NETIF_F_HW_VLAN_STAG_TX);
  1402. INIT_LIST_HEAD(&tun->disabled);
  1403. err = tun_attach(tun, file, false);
  1404. if (err < 0)
  1405. goto err_free_flow;
  1406. err = register_netdevice(tun->dev);
  1407. if (err < 0)
  1408. goto err_detach;
  1409. if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
  1410. device_create_file(&tun->dev->dev, &dev_attr_owner) ||
  1411. device_create_file(&tun->dev->dev, &dev_attr_group))
  1412. pr_err("Failed to create tun sysfs files\n");
  1413. }
  1414. netif_carrier_on(tun->dev);
  1415. tun_debug(KERN_INFO, tun, "tun_set_iff\n");
  1416. if (ifr->ifr_flags & IFF_NO_PI)
  1417. tun->flags |= TUN_NO_PI;
  1418. else
  1419. tun->flags &= ~TUN_NO_PI;
  1420. /* This flag has no real effect. We track the value for backwards
  1421. * compatibility.
  1422. */
  1423. if (ifr->ifr_flags & IFF_ONE_QUEUE)
  1424. tun->flags |= TUN_ONE_QUEUE;
  1425. else
  1426. tun->flags &= ~TUN_ONE_QUEUE;
  1427. if (ifr->ifr_flags & IFF_VNET_HDR)
  1428. tun->flags |= TUN_VNET_HDR;
  1429. else
  1430. tun->flags &= ~TUN_VNET_HDR;
  1431. if (ifr->ifr_flags & IFF_MULTI_QUEUE)
  1432. tun->flags |= TUN_TAP_MQ;
  1433. else
  1434. tun->flags &= ~TUN_TAP_MQ;
  1435. /* Make sure persistent devices do not get stuck in
  1436. * xoff state.
  1437. */
  1438. if (netif_running(tun->dev))
  1439. netif_tx_wake_all_queues(tun->dev);
  1440. strcpy(ifr->ifr_name, tun->dev->name);
  1441. return 0;
  1442. err_detach:
  1443. tun_detach_all(dev);
  1444. err_free_flow:
  1445. tun_flow_uninit(tun);
  1446. security_tun_dev_free_security(tun->security);
  1447. err_free_dev:
  1448. free_netdev(dev);
  1449. return err;
  1450. }
  1451. static void tun_get_iff(struct net *net, struct tun_struct *tun,
  1452. struct ifreq *ifr)
  1453. {
  1454. tun_debug(KERN_INFO, tun, "tun_get_iff\n");
  1455. strcpy(ifr->ifr_name, tun->dev->name);
  1456. ifr->ifr_flags = tun_flags(tun);
  1457. }
  1458. /* This is like a cut-down ethtool ops, except done via tun fd so no
  1459. * privs required. */
  1460. static int set_offload(struct tun_struct *tun, unsigned long arg)
  1461. {
  1462. netdev_features_t features = 0;
  1463. if (arg & TUN_F_CSUM) {
  1464. features |= NETIF_F_HW_CSUM;
  1465. arg &= ~TUN_F_CSUM;
  1466. if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
  1467. if (arg & TUN_F_TSO_ECN) {
  1468. features |= NETIF_F_TSO_ECN;
  1469. arg &= ~TUN_F_TSO_ECN;
  1470. }
  1471. if (arg & TUN_F_TSO4)
  1472. features |= NETIF_F_TSO;
  1473. if (arg & TUN_F_TSO6)
  1474. features |= NETIF_F_TSO6;
  1475. arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
  1476. }
  1477. if (arg & TUN_F_UFO) {
  1478. features |= NETIF_F_UFO;
  1479. arg &= ~TUN_F_UFO;
  1480. }
  1481. }
  1482. /* This gives the user a way to test for new features in future by
  1483. * trying to set them. */
  1484. if (arg)
  1485. return -EINVAL;
  1486. tun->set_features = features;
  1487. netdev_update_features(tun->dev);
  1488. return 0;
  1489. }
  1490. static void tun_detach_filter(struct tun_struct *tun, int n)
  1491. {
  1492. int i;
  1493. struct tun_file *tfile;
  1494. for (i = 0; i < n; i++) {
  1495. tfile = rtnl_dereference(tun->tfiles[i]);
  1496. sk_detach_filter(tfile->socket.sk);
  1497. }
  1498. tun->filter_attached = false;
  1499. }
  1500. static int tun_attach_filter(struct tun_struct *tun)
  1501. {
  1502. int i, ret = 0;
  1503. struct tun_file *tfile;
  1504. for (i = 0; i < tun->numqueues; i++) {
  1505. tfile = rtnl_dereference(tun->tfiles[i]);
  1506. ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
  1507. if (ret) {
  1508. tun_detach_filter(tun, i);
  1509. return ret;
  1510. }
  1511. }
  1512. tun->filter_attached = true;
  1513. return ret;
  1514. }
  1515. static void tun_set_sndbuf(struct tun_struct *tun)
  1516. {
  1517. struct tun_file *tfile;
  1518. int i;
  1519. for (i = 0; i < tun->numqueues; i++) {
  1520. tfile = rtnl_dereference(tun->tfiles[i]);
  1521. tfile->socket.sk->sk_sndbuf = tun->sndbuf;
  1522. }
  1523. }
  1524. static int tun_set_queue(struct file *file, struct ifreq *ifr)
  1525. {
  1526. struct tun_file *tfile = file->private_data;
  1527. struct tun_struct *tun;
  1528. int ret = 0;
  1529. rtnl_lock();
  1530. if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
  1531. tun = tfile->detached;
  1532. if (!tun) {
  1533. ret = -EINVAL;
  1534. goto unlock;
  1535. }
  1536. ret = security_tun_dev_attach_queue(tun->security);
  1537. if (ret < 0)
  1538. goto unlock;
  1539. ret = tun_attach(tun, file, false);
  1540. } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
  1541. tun = rtnl_dereference(tfile->tun);
  1542. if (!tun || !(tun->flags & TUN_TAP_MQ) || tfile->detached)
  1543. ret = -EINVAL;
  1544. else
  1545. __tun_detach(tfile, false);
  1546. } else
  1547. ret = -EINVAL;
  1548. unlock:
  1549. rtnl_unlock();
  1550. return ret;
  1551. }
  1552. static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
  1553. unsigned long arg, int ifreq_len)
  1554. {
  1555. struct tun_file *tfile = file->private_data;
  1556. struct tun_struct *tun;
  1557. void __user* argp = (void __user*)arg;
  1558. struct ifreq ifr;
  1559. kuid_t owner;
  1560. kgid_t group;
  1561. int sndbuf;
  1562. int vnet_hdr_sz;
  1563. unsigned int ifindex;
  1564. int ret;
  1565. if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
  1566. if (copy_from_user(&ifr, argp, ifreq_len))
  1567. return -EFAULT;
  1568. } else {
  1569. memset(&ifr, 0, sizeof(ifr));
  1570. }
  1571. if (cmd == TUNGETFEATURES) {
  1572. /* Currently this just means: "what IFF flags are valid?".
  1573. * This is needed because we never checked for invalid flags on
  1574. * TUNSETIFF. */
  1575. return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
  1576. IFF_VNET_HDR | IFF_MULTI_QUEUE,
  1577. (unsigned int __user*)argp);
  1578. } else if (cmd == TUNSETQUEUE)
  1579. return tun_set_queue(file, &ifr);
  1580. ret = 0;
  1581. rtnl_lock();
  1582. tun = __tun_get(tfile);
  1583. if (cmd == TUNSETIFF && !tun) {
  1584. ifr.ifr_name[IFNAMSIZ-1] = '\0';
  1585. ret = tun_set_iff(tfile->net, file, &ifr);
  1586. if (ret)
  1587. goto unlock;
  1588. if (copy_to_user(argp, &ifr, ifreq_len))
  1589. ret = -EFAULT;
  1590. goto unlock;
  1591. }
  1592. if (cmd == TUNSETIFINDEX) {
  1593. ret = -EPERM;
  1594. if (tun)
  1595. goto unlock;
  1596. ret = -EFAULT;
  1597. if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
  1598. goto unlock;
  1599. ret = 0;
  1600. tfile->ifindex = ifindex;
  1601. goto unlock;
  1602. }
  1603. ret = -EBADFD;
  1604. if (!tun)
  1605. goto unlock;
  1606. tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
  1607. ret = 0;
  1608. switch (cmd) {
  1609. case TUNGETIFF:
  1610. tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
  1611. if (tfile->detached)
  1612. ifr.ifr_flags |= IFF_DETACH_QUEUE;
  1613. if (!tfile->socket.sk->sk_filter)
  1614. ifr.ifr_flags |= IFF_NOFILTER;
  1615. if (copy_to_user(argp, &ifr, ifreq_len))
  1616. ret = -EFAULT;
  1617. break;
  1618. case TUNSETNOCSUM:
  1619. /* Disable/Enable checksum */
  1620. /* [unimplemented] */
  1621. tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
  1622. arg ? "disabled" : "enabled");
  1623. break;
  1624. case TUNSETPERSIST:
  1625. /* Disable/Enable persist mode. Keep an extra reference to the
  1626. * module to prevent the module being unprobed.
  1627. */
  1628. if (arg && !(tun->flags & TUN_PERSIST)) {
  1629. tun->flags |= TUN_PERSIST;
  1630. __module_get(THIS_MODULE);
  1631. }
  1632. if (!arg && (tun->flags & TUN_PERSIST)) {
  1633. tun->flags &= ~TUN_PERSIST;
  1634. module_put(THIS_MODULE);
  1635. }
  1636. tun_debug(KERN_INFO, tun, "persist %s\n",
  1637. arg ? "enabled" : "disabled");
  1638. break;
  1639. case TUNSETOWNER:
  1640. /* Set owner of the device */
  1641. owner = make_kuid(current_user_ns(), arg);
  1642. if (!uid_valid(owner)) {
  1643. ret = -EINVAL;
  1644. break;
  1645. }
  1646. tun->owner = owner;
  1647. tun_debug(KERN_INFO, tun, "owner set to %u\n",
  1648. from_kuid(&init_user_ns, tun->owner));
  1649. break;
  1650. case TUNSETGROUP:
  1651. /* Set group of the device */
  1652. group = make_kgid(current_user_ns(), arg);
  1653. if (!gid_valid(group)) {
  1654. ret = -EINVAL;
  1655. break;
  1656. }
  1657. tun->group = group;
  1658. tun_debug(KERN_INFO, tun, "group set to %u\n",
  1659. from_kgid(&init_user_ns, tun->group));
  1660. break;
  1661. case TUNSETLINK:
  1662. /* Only allow setting the type when the interface is down */
  1663. if (tun->dev->flags & IFF_UP) {
  1664. tun_debug(KERN_INFO, tun,
  1665. "Linktype set failed because interface is up\n");
  1666. ret = -EBUSY;
  1667. } else {
  1668. tun->dev->type = (int) arg;
  1669. tun_debug(KERN_INFO, tun, "linktype set to %d\n",
  1670. tun->dev->type);
  1671. ret = 0;
  1672. }
  1673. break;
  1674. #ifdef TUN_DEBUG
  1675. case TUNSETDEBUG:
  1676. tun->debug = arg;
  1677. break;
  1678. #endif
  1679. case TUNSETOFFLOAD:
  1680. ret = set_offload(tun, arg);
  1681. break;
  1682. case TUNSETTXFILTER:
  1683. /* Can be set only for TAPs */
  1684. ret = -EINVAL;
  1685. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1686. break;
  1687. ret = update_filter(&tun->txflt, (void __user *)arg);
  1688. break;
  1689. case SIOCGIFHWADDR:
  1690. /* Get hw address */
  1691. memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
  1692. ifr.ifr_hwaddr.sa_family = tun->dev->type;
  1693. if (copy_to_user(argp, &ifr, ifreq_len))
  1694. ret = -EFAULT;
  1695. break;
  1696. case SIOCSIFHWADDR:
  1697. /* Set hw address */
  1698. tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
  1699. ifr.ifr_hwaddr.sa_data);
  1700. ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
  1701. break;
  1702. case TUNGETSNDBUF:
  1703. sndbuf = tfile->socket.sk->sk_sndbuf;
  1704. if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
  1705. ret = -EFAULT;
  1706. break;
  1707. case TUNSETSNDBUF:
  1708. if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
  1709. ret = -EFAULT;
  1710. break;
  1711. }
  1712. tun->sndbuf = sndbuf;
  1713. tun_set_sndbuf(tun);
  1714. break;
  1715. case TUNGETVNETHDRSZ:
  1716. vnet_hdr_sz = tun->vnet_hdr_sz;
  1717. if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
  1718. ret = -EFAULT;
  1719. break;
  1720. case TUNSETVNETHDRSZ:
  1721. if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
  1722. ret = -EFAULT;
  1723. break;
  1724. }
  1725. if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
  1726. ret = -EINVAL;
  1727. break;
  1728. }
  1729. tun->vnet_hdr_sz = vnet_hdr_sz;
  1730. break;
  1731. case TUNATTACHFILTER:
  1732. /* Can be set only for TAPs */
  1733. ret = -EINVAL;
  1734. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1735. break;
  1736. ret = -EFAULT;
  1737. if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
  1738. break;
  1739. ret = tun_attach_filter(tun);
  1740. break;
  1741. case TUNDETACHFILTER:
  1742. /* Can be set only for TAPs */
  1743. ret = -EINVAL;
  1744. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1745. break;
  1746. ret = 0;
  1747. tun_detach_filter(tun, tun->numqueues);
  1748. break;
  1749. case TUNGETFILTER:
  1750. ret = -EINVAL;
  1751. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1752. break;
  1753. ret = -EFAULT;
  1754. if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
  1755. break;
  1756. ret = 0;
  1757. break;
  1758. default:
  1759. ret = -EINVAL;
  1760. break;
  1761. }
  1762. unlock:
  1763. rtnl_unlock();
  1764. if (tun)
  1765. tun_put(tun);
  1766. return ret;
  1767. }
  1768. static long tun_chr_ioctl(struct file *file,
  1769. unsigned int cmd, unsigned long arg)
  1770. {
  1771. return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
  1772. }
  1773. #ifdef CONFIG_COMPAT
  1774. static long tun_chr_compat_ioctl(struct file *file,
  1775. unsigned int cmd, unsigned long arg)
  1776. {
  1777. switch (cmd) {
  1778. case TUNSETIFF:
  1779. case TUNGETIFF:
  1780. case TUNSETTXFILTER:
  1781. case TUNGETSNDBUF:
  1782. case TUNSETSNDBUF:
  1783. case SIOCGIFHWADDR:
  1784. case SIOCSIFHWADDR:
  1785. arg = (unsigned long)compat_ptr(arg);
  1786. break;
  1787. default:
  1788. arg = (compat_ulong_t)arg;
  1789. break;
  1790. }
  1791. /*
  1792. * compat_ifreq is shorter than ifreq, so we must not access beyond
  1793. * the end of that structure. All fields that are used in this
  1794. * driver are compatible though, we don't need to convert the
  1795. * contents.
  1796. */
  1797. return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
  1798. }
  1799. #endif /* CONFIG_COMPAT */
  1800. static int tun_chr_fasync(int fd, struct file *file, int on)
  1801. {
  1802. struct tun_file *tfile = file->private_data;
  1803. int ret;
  1804. if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
  1805. goto out;
  1806. if (on) {
  1807. ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
  1808. if (ret)
  1809. goto out;
  1810. tfile->flags |= TUN_FASYNC;
  1811. } else
  1812. tfile->flags &= ~TUN_FASYNC;
  1813. ret = 0;
  1814. out:
  1815. return ret;
  1816. }
  1817. static int tun_chr_open(struct inode *inode, struct file * file)
  1818. {
  1819. struct tun_file *tfile;
  1820. DBG1(KERN_INFO, "tunX: tun_chr_open\n");
  1821. tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
  1822. &tun_proto);
  1823. if (!tfile)
  1824. return -ENOMEM;
  1825. RCU_INIT_POINTER(tfile->tun, NULL);
  1826. tfile->net = get_net(current->nsproxy->net_ns);
  1827. tfile->flags = 0;
  1828. tfile->ifindex = 0;
  1829. init_waitqueue_head(&tfile->wq.wait);
  1830. RCU_INIT_POINTER(tfile->socket.wq, &tfile->wq);
  1831. tfile->socket.file = file;
  1832. tfile->socket.ops = &tun_socket_ops;
  1833. sock_init_data(&tfile->socket, &tfile->sk);
  1834. sk_change_net(&tfile->sk, tfile->net);
  1835. tfile->sk.sk_write_space = tun_sock_write_space;
  1836. tfile->sk.sk_sndbuf = INT_MAX;
  1837. file->private_data = tfile;
  1838. set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
  1839. INIT_LIST_HEAD(&tfile->next);
  1840. sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
  1841. return 0;
  1842. }
  1843. static int tun_chr_close(struct inode *inode, struct file *file)
  1844. {
  1845. struct tun_file *tfile = file->private_data;
  1846. struct net *net = tfile->net;
  1847. tun_detach(tfile, true);
  1848. put_net(net);
  1849. return 0;
  1850. }
  1851. #ifdef CONFIG_PROC_FS
  1852. static int tun_chr_show_fdinfo(struct seq_file *m, struct file *f)
  1853. {
  1854. struct tun_struct *tun;
  1855. struct ifreq ifr;
  1856. memset(&ifr, 0, sizeof(ifr));
  1857. rtnl_lock();
  1858. tun = tun_get(f);
  1859. if (tun)
  1860. tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
  1861. rtnl_unlock();
  1862. if (tun)
  1863. tun_put(tun);
  1864. return seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
  1865. }
  1866. #endif
  1867. static const struct file_operations tun_fops = {
  1868. .owner = THIS_MODULE,
  1869. .llseek = no_llseek,
  1870. .read = do_sync_read,
  1871. .aio_read = tun_chr_aio_read,
  1872. .write = do_sync_write,
  1873. .aio_write = tun_chr_aio_write,
  1874. .poll = tun_chr_poll,
  1875. .unlocked_ioctl = tun_chr_ioctl,
  1876. #ifdef CONFIG_COMPAT
  1877. .compat_ioctl = tun_chr_compat_ioctl,
  1878. #endif
  1879. .open = tun_chr_open,
  1880. .release = tun_chr_close,
  1881. .fasync = tun_chr_fasync,
  1882. #ifdef CONFIG_PROC_FS
  1883. .show_fdinfo = tun_chr_show_fdinfo,
  1884. #endif
  1885. };
  1886. static struct miscdevice tun_miscdev = {
  1887. .minor = TUN_MINOR,
  1888. .name = "tun",
  1889. .nodename = "net/tun",
  1890. .fops = &tun_fops,
  1891. };
  1892. /* ethtool interface */
  1893. static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
  1894. {
  1895. cmd->supported = 0;
  1896. cmd->advertising = 0;
  1897. ethtool_cmd_speed_set(cmd, SPEED_10);
  1898. cmd->duplex = DUPLEX_FULL;
  1899. cmd->port = PORT_TP;
  1900. cmd->phy_address = 0;
  1901. cmd->transceiver = XCVR_INTERNAL;
  1902. cmd->autoneg = AUTONEG_DISABLE;
  1903. cmd->maxtxpkt = 0;
  1904. cmd->maxrxpkt = 0;
  1905. return 0;
  1906. }
  1907. static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
  1908. {
  1909. struct tun_struct *tun = netdev_priv(dev);
  1910. strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
  1911. strlcpy(info->version, DRV_VERSION, sizeof(info->version));
  1912. switch (tun->flags & TUN_TYPE_MASK) {
  1913. case TUN_TUN_DEV:
  1914. strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
  1915. break;
  1916. case TUN_TAP_DEV:
  1917. strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
  1918. break;
  1919. }
  1920. }
  1921. static u32 tun_get_msglevel(struct net_device *dev)
  1922. {
  1923. #ifdef TUN_DEBUG
  1924. struct tun_struct *tun = netdev_priv(dev);
  1925. return tun->debug;
  1926. #else
  1927. return -EOPNOTSUPP;
  1928. #endif
  1929. }
  1930. static void tun_set_msglevel(struct net_device *dev, u32 value)
  1931. {
  1932. #ifdef TUN_DEBUG
  1933. struct tun_struct *tun = netdev_priv(dev);
  1934. tun->debug = value;
  1935. #endif
  1936. }
  1937. static const struct ethtool_ops tun_ethtool_ops = {
  1938. .get_settings = tun_get_settings,
  1939. .get_drvinfo = tun_get_drvinfo,
  1940. .get_msglevel = tun_get_msglevel,
  1941. .set_msglevel = tun_set_msglevel,
  1942. .get_link = ethtool_op_get_link,
  1943. .get_ts_info = ethtool_op_get_ts_info,
  1944. };
  1945. static int __init tun_init(void)
  1946. {
  1947. int ret = 0;
  1948. pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
  1949. pr_info("%s\n", DRV_COPYRIGHT);
  1950. ret = rtnl_link_register(&tun_link_ops);
  1951. if (ret) {
  1952. pr_err("Can't register link_ops\n");
  1953. goto err_linkops;
  1954. }
  1955. ret = misc_register(&tun_miscdev);
  1956. if (ret) {
  1957. pr_err("Can't register misc device %d\n", TUN_MINOR);
  1958. goto err_misc;
  1959. }
  1960. return 0;
  1961. err_misc:
  1962. rtnl_link_unregister(&tun_link_ops);
  1963. err_linkops:
  1964. return ret;
  1965. }
  1966. static void tun_cleanup(void)
  1967. {
  1968. misc_deregister(&tun_miscdev);
  1969. rtnl_link_unregister(&tun_link_ops);
  1970. }
  1971. /* Get an underlying socket object from tun file. Returns error unless file is
  1972. * attached to a device. The returned object works like a packet socket, it
  1973. * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
  1974. * holding a reference to the file for as long as the socket is in use. */
  1975. struct socket *tun_get_socket(struct file *file)
  1976. {
  1977. struct tun_file *tfile;
  1978. if (file->f_op != &tun_fops)
  1979. return ERR_PTR(-EINVAL);
  1980. tfile = file->private_data;
  1981. if (!tfile)
  1982. return ERR_PTR(-EBADFD);
  1983. return &tfile->socket;
  1984. }
  1985. EXPORT_SYMBOL_GPL(tun_get_socket);
  1986. module_init(tun_init);
  1987. module_exit(tun_cleanup);
  1988. MODULE_DESCRIPTION(DRV_DESCRIPTION);
  1989. MODULE_AUTHOR(DRV_COPYRIGHT);
  1990. MODULE_LICENSE("GPL");
  1991. MODULE_ALIAS_MISCDEV(TUN_MINOR);
  1992. MODULE_ALIAS("devname:net/tun");