tun.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397
  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_assign_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. wake_up_all(&tfile->wq.wait);
  435. rcu_assign_pointer(tfile->tun, NULL);
  436. --tun->numqueues;
  437. }
  438. list_for_each_entry(tfile, &tun->disabled, next) {
  439. wake_up_all(&tfile->wq.wait);
  440. rcu_assign_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. wake_up_interruptible_poll(&tfile->wq.wait, POLLIN |
  684. POLLRDNORM | POLLRDBAND);
  685. rcu_read_unlock();
  686. return NETDEV_TX_OK;
  687. drop:
  688. dev->stats.tx_dropped++;
  689. skb_tx_error(skb);
  690. kfree_skb(skb);
  691. rcu_read_unlock();
  692. return NETDEV_TX_OK;
  693. }
  694. static void tun_net_mclist(struct net_device *dev)
  695. {
  696. /*
  697. * This callback is supposed to deal with mc filter in
  698. * _rx_ path and has nothing to do with the _tx_ path.
  699. * In rx path we always accept everything userspace gives us.
  700. */
  701. }
  702. #define MIN_MTU 68
  703. #define MAX_MTU 65535
  704. static int
  705. tun_net_change_mtu(struct net_device *dev, int new_mtu)
  706. {
  707. if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
  708. return -EINVAL;
  709. dev->mtu = new_mtu;
  710. return 0;
  711. }
  712. static netdev_features_t tun_net_fix_features(struct net_device *dev,
  713. netdev_features_t features)
  714. {
  715. struct tun_struct *tun = netdev_priv(dev);
  716. return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
  717. }
  718. #ifdef CONFIG_NET_POLL_CONTROLLER
  719. static void tun_poll_controller(struct net_device *dev)
  720. {
  721. /*
  722. * Tun only receives frames when:
  723. * 1) the char device endpoint gets data from user space
  724. * 2) the tun socket gets a sendmsg call from user space
  725. * Since both of those are synchronous operations, we are guaranteed
  726. * never to have pending data when we poll for it
  727. * so there is nothing to do here but return.
  728. * We need this though so netpoll recognizes us as an interface that
  729. * supports polling, which enables bridge devices in virt setups to
  730. * still use netconsole
  731. */
  732. return;
  733. }
  734. #endif
  735. static const struct net_device_ops tun_netdev_ops = {
  736. .ndo_uninit = tun_net_uninit,
  737. .ndo_open = tun_net_open,
  738. .ndo_stop = tun_net_close,
  739. .ndo_start_xmit = tun_net_xmit,
  740. .ndo_change_mtu = tun_net_change_mtu,
  741. .ndo_fix_features = tun_net_fix_features,
  742. .ndo_select_queue = tun_select_queue,
  743. #ifdef CONFIG_NET_POLL_CONTROLLER
  744. .ndo_poll_controller = tun_poll_controller,
  745. #endif
  746. };
  747. static const struct net_device_ops tap_netdev_ops = {
  748. .ndo_uninit = tun_net_uninit,
  749. .ndo_open = tun_net_open,
  750. .ndo_stop = tun_net_close,
  751. .ndo_start_xmit = tun_net_xmit,
  752. .ndo_change_mtu = tun_net_change_mtu,
  753. .ndo_fix_features = tun_net_fix_features,
  754. .ndo_set_rx_mode = tun_net_mclist,
  755. .ndo_set_mac_address = eth_mac_addr,
  756. .ndo_validate_addr = eth_validate_addr,
  757. .ndo_select_queue = tun_select_queue,
  758. #ifdef CONFIG_NET_POLL_CONTROLLER
  759. .ndo_poll_controller = tun_poll_controller,
  760. #endif
  761. };
  762. static void tun_flow_init(struct tun_struct *tun)
  763. {
  764. int i;
  765. for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++)
  766. INIT_HLIST_HEAD(&tun->flows[i]);
  767. tun->ageing_time = TUN_FLOW_EXPIRE;
  768. setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
  769. mod_timer(&tun->flow_gc_timer,
  770. round_jiffies_up(jiffies + tun->ageing_time));
  771. }
  772. static void tun_flow_uninit(struct tun_struct *tun)
  773. {
  774. del_timer_sync(&tun->flow_gc_timer);
  775. tun_flow_flush(tun);
  776. }
  777. /* Initialize net device. */
  778. static void tun_net_init(struct net_device *dev)
  779. {
  780. struct tun_struct *tun = netdev_priv(dev);
  781. switch (tun->flags & TUN_TYPE_MASK) {
  782. case TUN_TUN_DEV:
  783. dev->netdev_ops = &tun_netdev_ops;
  784. /* Point-to-Point TUN Device */
  785. dev->hard_header_len = 0;
  786. dev->addr_len = 0;
  787. dev->mtu = 1500;
  788. /* Zero header length */
  789. dev->type = ARPHRD_NONE;
  790. dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
  791. dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
  792. break;
  793. case TUN_TAP_DEV:
  794. dev->netdev_ops = &tap_netdev_ops;
  795. /* Ethernet TAP Device */
  796. ether_setup(dev);
  797. dev->priv_flags &= ~IFF_TX_SKB_SHARING;
  798. dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
  799. eth_hw_addr_random(dev);
  800. dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */
  801. break;
  802. }
  803. }
  804. /* Character device part */
  805. /* Poll */
  806. static unsigned int tun_chr_poll(struct file *file, poll_table *wait)
  807. {
  808. struct tun_file *tfile = file->private_data;
  809. struct tun_struct *tun = __tun_get(tfile);
  810. struct sock *sk;
  811. unsigned int mask = 0;
  812. if (!tun)
  813. return POLLERR;
  814. sk = tfile->socket.sk;
  815. tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
  816. poll_wait(file, &tfile->wq.wait, wait);
  817. if (!skb_queue_empty(&sk->sk_receive_queue))
  818. mask |= POLLIN | POLLRDNORM;
  819. if (sock_writeable(sk) ||
  820. (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
  821. sock_writeable(sk)))
  822. mask |= POLLOUT | POLLWRNORM;
  823. if (tun->dev->reg_state != NETREG_REGISTERED)
  824. mask = POLLERR;
  825. tun_put(tun);
  826. return mask;
  827. }
  828. /* prepad is the amount to reserve at front. len is length after that.
  829. * linear is a hint as to how much to copy (usually headers). */
  830. static struct sk_buff *tun_alloc_skb(struct tun_file *tfile,
  831. size_t prepad, size_t len,
  832. size_t linear, int noblock)
  833. {
  834. struct sock *sk = tfile->socket.sk;
  835. struct sk_buff *skb;
  836. int err;
  837. /* Under a page? Don't bother with paged skb. */
  838. if (prepad + len < PAGE_SIZE || !linear)
  839. linear = len;
  840. skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
  841. &err, 0);
  842. if (!skb)
  843. return ERR_PTR(err);
  844. skb_reserve(skb, prepad);
  845. skb_put(skb, linear);
  846. skb->data_len = len - linear;
  847. skb->len += len - linear;
  848. return skb;
  849. }
  850. /* Get packet from user space buffer */
  851. static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
  852. void *msg_control, const struct iovec *iv,
  853. size_t total_len, size_t count, int noblock)
  854. {
  855. struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
  856. struct sk_buff *skb;
  857. size_t len = total_len, align = NET_SKB_PAD, linear;
  858. struct virtio_net_hdr gso = { 0 };
  859. int good_linear;
  860. int offset = 0;
  861. int copylen;
  862. bool zerocopy = false;
  863. int err;
  864. u32 rxhash;
  865. if (!(tun->flags & TUN_NO_PI)) {
  866. if (len < sizeof(pi))
  867. return -EINVAL;
  868. len -= sizeof(pi);
  869. if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
  870. return -EFAULT;
  871. offset += sizeof(pi);
  872. }
  873. if (tun->flags & TUN_VNET_HDR) {
  874. if (len < tun->vnet_hdr_sz)
  875. return -EINVAL;
  876. len -= tun->vnet_hdr_sz;
  877. if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
  878. return -EFAULT;
  879. if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
  880. gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
  881. gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
  882. if (gso.hdr_len > len)
  883. return -EINVAL;
  884. offset += tun->vnet_hdr_sz;
  885. }
  886. if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
  887. align += NET_IP_ALIGN;
  888. if (unlikely(len < ETH_HLEN ||
  889. (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
  890. return -EINVAL;
  891. }
  892. good_linear = SKB_MAX_HEAD(align);
  893. if (msg_control) {
  894. /* There are 256 bytes to be copied in skb, so there is
  895. * enough room for skb expand head in case it is used.
  896. * The rest of the buffer is mapped from userspace.
  897. */
  898. copylen = gso.hdr_len ? gso.hdr_len : GOODCOPY_LEN;
  899. if (copylen > good_linear)
  900. copylen = good_linear;
  901. linear = copylen;
  902. if (iov_pages(iv, offset + copylen, count) <= MAX_SKB_FRAGS)
  903. zerocopy = true;
  904. }
  905. if (!zerocopy) {
  906. copylen = len;
  907. if (gso.hdr_len > good_linear)
  908. linear = good_linear;
  909. else
  910. linear = gso.hdr_len;
  911. }
  912. skb = tun_alloc_skb(tfile, align, copylen, linear, noblock);
  913. if (IS_ERR(skb)) {
  914. if (PTR_ERR(skb) != -EAGAIN)
  915. tun->dev->stats.rx_dropped++;
  916. return PTR_ERR(skb);
  917. }
  918. if (zerocopy)
  919. err = zerocopy_sg_from_iovec(skb, iv, offset, count);
  920. else {
  921. err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len);
  922. if (!err && msg_control) {
  923. struct ubuf_info *uarg = msg_control;
  924. uarg->callback(uarg, false);
  925. }
  926. }
  927. if (err) {
  928. tun->dev->stats.rx_dropped++;
  929. kfree_skb(skb);
  930. return -EFAULT;
  931. }
  932. if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
  933. if (!skb_partial_csum_set(skb, gso.csum_start,
  934. gso.csum_offset)) {
  935. tun->dev->stats.rx_frame_errors++;
  936. kfree_skb(skb);
  937. return -EINVAL;
  938. }
  939. }
  940. switch (tun->flags & TUN_TYPE_MASK) {
  941. case TUN_TUN_DEV:
  942. if (tun->flags & TUN_NO_PI) {
  943. switch (skb->data[0] & 0xf0) {
  944. case 0x40:
  945. pi.proto = htons(ETH_P_IP);
  946. break;
  947. case 0x60:
  948. pi.proto = htons(ETH_P_IPV6);
  949. break;
  950. default:
  951. tun->dev->stats.rx_dropped++;
  952. kfree_skb(skb);
  953. return -EINVAL;
  954. }
  955. }
  956. skb_reset_mac_header(skb);
  957. skb->protocol = pi.proto;
  958. skb->dev = tun->dev;
  959. break;
  960. case TUN_TAP_DEV:
  961. skb->protocol = eth_type_trans(skb, tun->dev);
  962. break;
  963. }
  964. if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
  965. pr_debug("GSO!\n");
  966. switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
  967. case VIRTIO_NET_HDR_GSO_TCPV4:
  968. skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
  969. break;
  970. case VIRTIO_NET_HDR_GSO_TCPV6:
  971. skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
  972. break;
  973. case VIRTIO_NET_HDR_GSO_UDP:
  974. skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
  975. break;
  976. default:
  977. tun->dev->stats.rx_frame_errors++;
  978. kfree_skb(skb);
  979. return -EINVAL;
  980. }
  981. if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
  982. skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
  983. skb_shinfo(skb)->gso_size = gso.gso_size;
  984. if (skb_shinfo(skb)->gso_size == 0) {
  985. tun->dev->stats.rx_frame_errors++;
  986. kfree_skb(skb);
  987. return -EINVAL;
  988. }
  989. /* Header must be checked, and gso_segs computed. */
  990. skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
  991. skb_shinfo(skb)->gso_segs = 0;
  992. }
  993. /* copy skb_ubuf_info for callback when skb has no error */
  994. if (zerocopy) {
  995. skb_shinfo(skb)->destructor_arg = msg_control;
  996. skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
  997. skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
  998. }
  999. skb_reset_network_header(skb);
  1000. skb_probe_transport_header(skb, 0);
  1001. rxhash = skb_get_hash(skb);
  1002. netif_rx_ni(skb);
  1003. tun->dev->stats.rx_packets++;
  1004. tun->dev->stats.rx_bytes += len;
  1005. tun_flow_update(tun, rxhash, tfile);
  1006. return total_len;
  1007. }
  1008. static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
  1009. unsigned long count, loff_t pos)
  1010. {
  1011. struct file *file = iocb->ki_filp;
  1012. struct tun_struct *tun = tun_get(file);
  1013. struct tun_file *tfile = file->private_data;
  1014. ssize_t result;
  1015. if (!tun)
  1016. return -EBADFD;
  1017. tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
  1018. result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count),
  1019. count, file->f_flags & O_NONBLOCK);
  1020. tun_put(tun);
  1021. return result;
  1022. }
  1023. /* Put packet to the user space buffer */
  1024. static ssize_t tun_put_user(struct tun_struct *tun,
  1025. struct tun_file *tfile,
  1026. struct sk_buff *skb,
  1027. const struct iovec *iv, int len)
  1028. {
  1029. struct tun_pi pi = { 0, skb->protocol };
  1030. ssize_t total = 0;
  1031. int vlan_offset = 0, copied;
  1032. if (!(tun->flags & TUN_NO_PI)) {
  1033. if ((len -= sizeof(pi)) < 0)
  1034. return -EINVAL;
  1035. if (len < skb->len) {
  1036. /* Packet will be striped */
  1037. pi.flags |= TUN_PKT_STRIP;
  1038. }
  1039. if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
  1040. return -EFAULT;
  1041. total += sizeof(pi);
  1042. }
  1043. if (tun->flags & TUN_VNET_HDR) {
  1044. struct virtio_net_hdr gso = { 0 }; /* no info leak */
  1045. if ((len -= tun->vnet_hdr_sz) < 0)
  1046. return -EINVAL;
  1047. if (skb_is_gso(skb)) {
  1048. struct skb_shared_info *sinfo = skb_shinfo(skb);
  1049. /* This is a hint as to how much should be linear. */
  1050. gso.hdr_len = skb_headlen(skb);
  1051. gso.gso_size = sinfo->gso_size;
  1052. if (sinfo->gso_type & SKB_GSO_TCPV4)
  1053. gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
  1054. else if (sinfo->gso_type & SKB_GSO_TCPV6)
  1055. gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
  1056. else if (sinfo->gso_type & SKB_GSO_UDP)
  1057. gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
  1058. else {
  1059. pr_err("unexpected GSO type: "
  1060. "0x%x, gso_size %d, hdr_len %d\n",
  1061. sinfo->gso_type, gso.gso_size,
  1062. gso.hdr_len);
  1063. print_hex_dump(KERN_ERR, "tun: ",
  1064. DUMP_PREFIX_NONE,
  1065. 16, 1, skb->head,
  1066. min((int)gso.hdr_len, 64), true);
  1067. WARN_ON_ONCE(1);
  1068. return -EINVAL;
  1069. }
  1070. if (sinfo->gso_type & SKB_GSO_TCP_ECN)
  1071. gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
  1072. } else
  1073. gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
  1074. if (skb->ip_summed == CHECKSUM_PARTIAL) {
  1075. gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
  1076. gso.csum_start = skb_checksum_start_offset(skb);
  1077. gso.csum_offset = skb->csum_offset;
  1078. } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
  1079. gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
  1080. } /* else everything is zero */
  1081. if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
  1082. sizeof(gso))))
  1083. return -EFAULT;
  1084. total += tun->vnet_hdr_sz;
  1085. }
  1086. copied = total;
  1087. total += skb->len;
  1088. if (!vlan_tx_tag_present(skb)) {
  1089. len = min_t(int, skb->len, len);
  1090. } else {
  1091. int copy, ret;
  1092. struct {
  1093. __be16 h_vlan_proto;
  1094. __be16 h_vlan_TCI;
  1095. } veth;
  1096. veth.h_vlan_proto = skb->vlan_proto;
  1097. veth.h_vlan_TCI = htons(vlan_tx_tag_get(skb));
  1098. vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
  1099. len = min_t(int, skb->len + VLAN_HLEN, len);
  1100. total += VLAN_HLEN;
  1101. copy = min_t(int, vlan_offset, len);
  1102. ret = skb_copy_datagram_const_iovec(skb, 0, iv, copied, copy);
  1103. len -= copy;
  1104. copied += copy;
  1105. if (ret || !len)
  1106. goto done;
  1107. copy = min_t(int, sizeof(veth), len);
  1108. ret = memcpy_toiovecend(iv, (void *)&veth, copied, copy);
  1109. len -= copy;
  1110. copied += copy;
  1111. if (ret || !len)
  1112. goto done;
  1113. }
  1114. skb_copy_datagram_const_iovec(skb, vlan_offset, iv, copied, len);
  1115. done:
  1116. tun->dev->stats.tx_packets++;
  1117. tun->dev->stats.tx_bytes += len;
  1118. return total;
  1119. }
  1120. static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
  1121. const struct iovec *iv, ssize_t len, int noblock)
  1122. {
  1123. DECLARE_WAITQUEUE(wait, current);
  1124. struct sk_buff *skb;
  1125. ssize_t ret = 0;
  1126. tun_debug(KERN_INFO, tun, "tun_do_read\n");
  1127. if (unlikely(!noblock))
  1128. add_wait_queue(&tfile->wq.wait, &wait);
  1129. while (len) {
  1130. if (unlikely(!noblock))
  1131. current->state = TASK_INTERRUPTIBLE;
  1132. /* Read frames from the queue */
  1133. if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) {
  1134. if (noblock) {
  1135. ret = -EAGAIN;
  1136. break;
  1137. }
  1138. if (signal_pending(current)) {
  1139. ret = -ERESTARTSYS;
  1140. break;
  1141. }
  1142. if (tun->dev->reg_state != NETREG_REGISTERED) {
  1143. ret = -EIO;
  1144. break;
  1145. }
  1146. /* Nothing to read, let's sleep */
  1147. schedule();
  1148. continue;
  1149. }
  1150. ret = tun_put_user(tun, tfile, skb, iv, len);
  1151. kfree_skb(skb);
  1152. break;
  1153. }
  1154. if (unlikely(!noblock)) {
  1155. current->state = TASK_RUNNING;
  1156. remove_wait_queue(&tfile->wq.wait, &wait);
  1157. }
  1158. return ret;
  1159. }
  1160. static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
  1161. unsigned long count, loff_t pos)
  1162. {
  1163. struct file *file = iocb->ki_filp;
  1164. struct tun_file *tfile = file->private_data;
  1165. struct tun_struct *tun = __tun_get(tfile);
  1166. ssize_t len, ret;
  1167. if (!tun)
  1168. return -EBADFD;
  1169. len = iov_length(iv, count);
  1170. if (len < 0) {
  1171. ret = -EINVAL;
  1172. goto out;
  1173. }
  1174. ret = tun_do_read(tun, tfile, iv, len,
  1175. file->f_flags & O_NONBLOCK);
  1176. ret = min_t(ssize_t, ret, len);
  1177. if (ret > 0)
  1178. iocb->ki_pos = ret;
  1179. out:
  1180. tun_put(tun);
  1181. return ret;
  1182. }
  1183. static void tun_free_netdev(struct net_device *dev)
  1184. {
  1185. struct tun_struct *tun = netdev_priv(dev);
  1186. BUG_ON(!(list_empty(&tun->disabled)));
  1187. tun_flow_uninit(tun);
  1188. security_tun_dev_free_security(tun->security);
  1189. free_netdev(dev);
  1190. }
  1191. static void tun_setup(struct net_device *dev)
  1192. {
  1193. struct tun_struct *tun = netdev_priv(dev);
  1194. tun->owner = INVALID_UID;
  1195. tun->group = INVALID_GID;
  1196. dev->ethtool_ops = &tun_ethtool_ops;
  1197. dev->destructor = tun_free_netdev;
  1198. }
  1199. /* Trivial set of netlink ops to allow deleting tun or tap
  1200. * device with netlink.
  1201. */
  1202. static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
  1203. {
  1204. return -EINVAL;
  1205. }
  1206. static struct rtnl_link_ops tun_link_ops __read_mostly = {
  1207. .kind = DRV_NAME,
  1208. .priv_size = sizeof(struct tun_struct),
  1209. .setup = tun_setup,
  1210. .validate = tun_validate,
  1211. };
  1212. static void tun_sock_write_space(struct sock *sk)
  1213. {
  1214. struct tun_file *tfile;
  1215. wait_queue_head_t *wqueue;
  1216. if (!sock_writeable(sk))
  1217. return;
  1218. if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
  1219. return;
  1220. wqueue = sk_sleep(sk);
  1221. if (wqueue && waitqueue_active(wqueue))
  1222. wake_up_interruptible_sync_poll(wqueue, POLLOUT |
  1223. POLLWRNORM | POLLWRBAND);
  1224. tfile = container_of(sk, struct tun_file, sk);
  1225. kill_fasync(&tfile->fasync, SIGIO, POLL_OUT);
  1226. }
  1227. static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
  1228. struct msghdr *m, size_t total_len)
  1229. {
  1230. int ret;
  1231. struct tun_file *tfile = container_of(sock, struct tun_file, socket);
  1232. struct tun_struct *tun = __tun_get(tfile);
  1233. if (!tun)
  1234. return -EBADFD;
  1235. ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len,
  1236. m->msg_iovlen, m->msg_flags & MSG_DONTWAIT);
  1237. tun_put(tun);
  1238. return ret;
  1239. }
  1240. static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
  1241. struct msghdr *m, size_t total_len,
  1242. int flags)
  1243. {
  1244. struct tun_file *tfile = container_of(sock, struct tun_file, socket);
  1245. struct tun_struct *tun = __tun_get(tfile);
  1246. int ret;
  1247. if (!tun)
  1248. return -EBADFD;
  1249. if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) {
  1250. ret = -EINVAL;
  1251. goto out;
  1252. }
  1253. if (flags & MSG_ERRQUEUE) {
  1254. ret = sock_recv_errqueue(sock->sk, m, total_len,
  1255. SOL_PACKET, TUN_TX_TIMESTAMP);
  1256. goto out;
  1257. }
  1258. ret = tun_do_read(tun, tfile, m->msg_iov, total_len,
  1259. flags & MSG_DONTWAIT);
  1260. if (ret > total_len) {
  1261. m->msg_flags |= MSG_TRUNC;
  1262. ret = flags & MSG_TRUNC ? ret : total_len;
  1263. }
  1264. out:
  1265. tun_put(tun);
  1266. return ret;
  1267. }
  1268. static int tun_release(struct socket *sock)
  1269. {
  1270. if (sock->sk)
  1271. sock_put(sock->sk);
  1272. return 0;
  1273. }
  1274. /* Ops structure to mimic raw sockets with tun */
  1275. static const struct proto_ops tun_socket_ops = {
  1276. .sendmsg = tun_sendmsg,
  1277. .recvmsg = tun_recvmsg,
  1278. .release = tun_release,
  1279. };
  1280. static struct proto tun_proto = {
  1281. .name = "tun",
  1282. .owner = THIS_MODULE,
  1283. .obj_size = sizeof(struct tun_file),
  1284. };
  1285. static int tun_flags(struct tun_struct *tun)
  1286. {
  1287. int flags = 0;
  1288. if (tun->flags & TUN_TUN_DEV)
  1289. flags |= IFF_TUN;
  1290. else
  1291. flags |= IFF_TAP;
  1292. if (tun->flags & TUN_NO_PI)
  1293. flags |= IFF_NO_PI;
  1294. /* This flag has no real effect. We track the value for backwards
  1295. * compatibility.
  1296. */
  1297. if (tun->flags & TUN_ONE_QUEUE)
  1298. flags |= IFF_ONE_QUEUE;
  1299. if (tun->flags & TUN_VNET_HDR)
  1300. flags |= IFF_VNET_HDR;
  1301. if (tun->flags & TUN_TAP_MQ)
  1302. flags |= IFF_MULTI_QUEUE;
  1303. if (tun->flags & TUN_PERSIST)
  1304. flags |= IFF_PERSIST;
  1305. return flags;
  1306. }
  1307. static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
  1308. char *buf)
  1309. {
  1310. struct tun_struct *tun = netdev_priv(to_net_dev(dev));
  1311. return sprintf(buf, "0x%x\n", tun_flags(tun));
  1312. }
  1313. static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
  1314. char *buf)
  1315. {
  1316. struct tun_struct *tun = netdev_priv(to_net_dev(dev));
  1317. return uid_valid(tun->owner)?
  1318. sprintf(buf, "%u\n",
  1319. from_kuid_munged(current_user_ns(), tun->owner)):
  1320. sprintf(buf, "-1\n");
  1321. }
  1322. static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
  1323. char *buf)
  1324. {
  1325. struct tun_struct *tun = netdev_priv(to_net_dev(dev));
  1326. return gid_valid(tun->group) ?
  1327. sprintf(buf, "%u\n",
  1328. from_kgid_munged(current_user_ns(), tun->group)):
  1329. sprintf(buf, "-1\n");
  1330. }
  1331. static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
  1332. static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
  1333. static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
  1334. static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
  1335. {
  1336. struct tun_struct *tun;
  1337. struct tun_file *tfile = file->private_data;
  1338. struct net_device *dev;
  1339. int err;
  1340. if (tfile->detached)
  1341. return -EINVAL;
  1342. dev = __dev_get_by_name(net, ifr->ifr_name);
  1343. if (dev) {
  1344. if (ifr->ifr_flags & IFF_TUN_EXCL)
  1345. return -EBUSY;
  1346. if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
  1347. tun = netdev_priv(dev);
  1348. else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
  1349. tun = netdev_priv(dev);
  1350. else
  1351. return -EINVAL;
  1352. if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) !=
  1353. !!(tun->flags & TUN_TAP_MQ))
  1354. return -EINVAL;
  1355. if (tun_not_capable(tun))
  1356. return -EPERM;
  1357. err = security_tun_dev_open(tun->security);
  1358. if (err < 0)
  1359. return err;
  1360. err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER);
  1361. if (err < 0)
  1362. return err;
  1363. if (tun->flags & TUN_TAP_MQ &&
  1364. (tun->numqueues + tun->numdisabled > 1)) {
  1365. /* One or more queue has already been attached, no need
  1366. * to initialize the device again.
  1367. */
  1368. return 0;
  1369. }
  1370. }
  1371. else {
  1372. char *name;
  1373. unsigned long flags = 0;
  1374. int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ?
  1375. MAX_TAP_QUEUES : 1;
  1376. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  1377. return -EPERM;
  1378. err = security_tun_dev_create();
  1379. if (err < 0)
  1380. return err;
  1381. /* Set dev type */
  1382. if (ifr->ifr_flags & IFF_TUN) {
  1383. /* TUN device */
  1384. flags |= TUN_TUN_DEV;
  1385. name = "tun%d";
  1386. } else if (ifr->ifr_flags & IFF_TAP) {
  1387. /* TAP device */
  1388. flags |= TUN_TAP_DEV;
  1389. name = "tap%d";
  1390. } else
  1391. return -EINVAL;
  1392. if (*ifr->ifr_name)
  1393. name = ifr->ifr_name;
  1394. dev = alloc_netdev_mqs(sizeof(struct tun_struct), name,
  1395. tun_setup, queues, queues);
  1396. if (!dev)
  1397. return -ENOMEM;
  1398. dev_net_set(dev, net);
  1399. dev->rtnl_link_ops = &tun_link_ops;
  1400. dev->ifindex = tfile->ifindex;
  1401. tun = netdev_priv(dev);
  1402. tun->dev = dev;
  1403. tun->flags = flags;
  1404. tun->txflt.count = 0;
  1405. tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
  1406. tun->filter_attached = false;
  1407. tun->sndbuf = tfile->socket.sk->sk_sndbuf;
  1408. spin_lock_init(&tun->lock);
  1409. err = security_tun_dev_alloc_security(&tun->security);
  1410. if (err < 0)
  1411. goto err_free_dev;
  1412. tun_net_init(dev);
  1413. tun_flow_init(tun);
  1414. dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
  1415. TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
  1416. NETIF_F_HW_VLAN_STAG_TX;
  1417. dev->features = dev->hw_features;
  1418. dev->vlan_features = dev->features &
  1419. ~(NETIF_F_HW_VLAN_CTAG_TX |
  1420. NETIF_F_HW_VLAN_STAG_TX);
  1421. INIT_LIST_HEAD(&tun->disabled);
  1422. err = tun_attach(tun, file, false);
  1423. if (err < 0)
  1424. goto err_free_flow;
  1425. err = register_netdevice(tun->dev);
  1426. if (err < 0)
  1427. goto err_detach;
  1428. if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
  1429. device_create_file(&tun->dev->dev, &dev_attr_owner) ||
  1430. device_create_file(&tun->dev->dev, &dev_attr_group))
  1431. pr_err("Failed to create tun sysfs files\n");
  1432. }
  1433. netif_carrier_on(tun->dev);
  1434. tun_debug(KERN_INFO, tun, "tun_set_iff\n");
  1435. if (ifr->ifr_flags & IFF_NO_PI)
  1436. tun->flags |= TUN_NO_PI;
  1437. else
  1438. tun->flags &= ~TUN_NO_PI;
  1439. /* This flag has no real effect. We track the value for backwards
  1440. * compatibility.
  1441. */
  1442. if (ifr->ifr_flags & IFF_ONE_QUEUE)
  1443. tun->flags |= TUN_ONE_QUEUE;
  1444. else
  1445. tun->flags &= ~TUN_ONE_QUEUE;
  1446. if (ifr->ifr_flags & IFF_VNET_HDR)
  1447. tun->flags |= TUN_VNET_HDR;
  1448. else
  1449. tun->flags &= ~TUN_VNET_HDR;
  1450. if (ifr->ifr_flags & IFF_MULTI_QUEUE)
  1451. tun->flags |= TUN_TAP_MQ;
  1452. else
  1453. tun->flags &= ~TUN_TAP_MQ;
  1454. /* Make sure persistent devices do not get stuck in
  1455. * xoff state.
  1456. */
  1457. if (netif_running(tun->dev))
  1458. netif_tx_wake_all_queues(tun->dev);
  1459. strcpy(ifr->ifr_name, tun->dev->name);
  1460. return 0;
  1461. err_detach:
  1462. tun_detach_all(dev);
  1463. err_free_flow:
  1464. tun_flow_uninit(tun);
  1465. security_tun_dev_free_security(tun->security);
  1466. err_free_dev:
  1467. free_netdev(dev);
  1468. return err;
  1469. }
  1470. static void tun_get_iff(struct net *net, struct tun_struct *tun,
  1471. struct ifreq *ifr)
  1472. {
  1473. tun_debug(KERN_INFO, tun, "tun_get_iff\n");
  1474. strcpy(ifr->ifr_name, tun->dev->name);
  1475. ifr->ifr_flags = tun_flags(tun);
  1476. }
  1477. /* This is like a cut-down ethtool ops, except done via tun fd so no
  1478. * privs required. */
  1479. static int set_offload(struct tun_struct *tun, unsigned long arg)
  1480. {
  1481. netdev_features_t features = 0;
  1482. if (arg & TUN_F_CSUM) {
  1483. features |= NETIF_F_HW_CSUM;
  1484. arg &= ~TUN_F_CSUM;
  1485. if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
  1486. if (arg & TUN_F_TSO_ECN) {
  1487. features |= NETIF_F_TSO_ECN;
  1488. arg &= ~TUN_F_TSO_ECN;
  1489. }
  1490. if (arg & TUN_F_TSO4)
  1491. features |= NETIF_F_TSO;
  1492. if (arg & TUN_F_TSO6)
  1493. features |= NETIF_F_TSO6;
  1494. arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
  1495. }
  1496. if (arg & TUN_F_UFO) {
  1497. features |= NETIF_F_UFO;
  1498. arg &= ~TUN_F_UFO;
  1499. }
  1500. }
  1501. /* This gives the user a way to test for new features in future by
  1502. * trying to set them. */
  1503. if (arg)
  1504. return -EINVAL;
  1505. tun->set_features = features;
  1506. netdev_update_features(tun->dev);
  1507. return 0;
  1508. }
  1509. static void tun_detach_filter(struct tun_struct *tun, int n)
  1510. {
  1511. int i;
  1512. struct tun_file *tfile;
  1513. for (i = 0; i < n; i++) {
  1514. tfile = rtnl_dereference(tun->tfiles[i]);
  1515. sk_detach_filter(tfile->socket.sk);
  1516. }
  1517. tun->filter_attached = false;
  1518. }
  1519. static int tun_attach_filter(struct tun_struct *tun)
  1520. {
  1521. int i, ret = 0;
  1522. struct tun_file *tfile;
  1523. for (i = 0; i < tun->numqueues; i++) {
  1524. tfile = rtnl_dereference(tun->tfiles[i]);
  1525. ret = sk_attach_filter(&tun->fprog, tfile->socket.sk);
  1526. if (ret) {
  1527. tun_detach_filter(tun, i);
  1528. return ret;
  1529. }
  1530. }
  1531. tun->filter_attached = true;
  1532. return ret;
  1533. }
  1534. static void tun_set_sndbuf(struct tun_struct *tun)
  1535. {
  1536. struct tun_file *tfile;
  1537. int i;
  1538. for (i = 0; i < tun->numqueues; i++) {
  1539. tfile = rtnl_dereference(tun->tfiles[i]);
  1540. tfile->socket.sk->sk_sndbuf = tun->sndbuf;
  1541. }
  1542. }
  1543. static int tun_set_queue(struct file *file, struct ifreq *ifr)
  1544. {
  1545. struct tun_file *tfile = file->private_data;
  1546. struct tun_struct *tun;
  1547. int ret = 0;
  1548. rtnl_lock();
  1549. if (ifr->ifr_flags & IFF_ATTACH_QUEUE) {
  1550. tun = tfile->detached;
  1551. if (!tun) {
  1552. ret = -EINVAL;
  1553. goto unlock;
  1554. }
  1555. ret = security_tun_dev_attach_queue(tun->security);
  1556. if (ret < 0)
  1557. goto unlock;
  1558. ret = tun_attach(tun, file, false);
  1559. } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) {
  1560. tun = rtnl_dereference(tfile->tun);
  1561. if (!tun || !(tun->flags & TUN_TAP_MQ) || tfile->detached)
  1562. ret = -EINVAL;
  1563. else
  1564. __tun_detach(tfile, false);
  1565. } else
  1566. ret = -EINVAL;
  1567. unlock:
  1568. rtnl_unlock();
  1569. return ret;
  1570. }
  1571. static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
  1572. unsigned long arg, int ifreq_len)
  1573. {
  1574. struct tun_file *tfile = file->private_data;
  1575. struct tun_struct *tun;
  1576. void __user* argp = (void __user*)arg;
  1577. struct ifreq ifr;
  1578. kuid_t owner;
  1579. kgid_t group;
  1580. int sndbuf;
  1581. int vnet_hdr_sz;
  1582. unsigned int ifindex;
  1583. int ret;
  1584. if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) {
  1585. if (copy_from_user(&ifr, argp, ifreq_len))
  1586. return -EFAULT;
  1587. } else {
  1588. memset(&ifr, 0, sizeof(ifr));
  1589. }
  1590. if (cmd == TUNGETFEATURES) {
  1591. /* Currently this just means: "what IFF flags are valid?".
  1592. * This is needed because we never checked for invalid flags on
  1593. * TUNSETIFF. */
  1594. return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
  1595. IFF_VNET_HDR | IFF_MULTI_QUEUE,
  1596. (unsigned int __user*)argp);
  1597. } else if (cmd == TUNSETQUEUE)
  1598. return tun_set_queue(file, &ifr);
  1599. ret = 0;
  1600. rtnl_lock();
  1601. tun = __tun_get(tfile);
  1602. if (cmd == TUNSETIFF && !tun) {
  1603. ifr.ifr_name[IFNAMSIZ-1] = '\0';
  1604. ret = tun_set_iff(tfile->net, file, &ifr);
  1605. if (ret)
  1606. goto unlock;
  1607. if (copy_to_user(argp, &ifr, ifreq_len))
  1608. ret = -EFAULT;
  1609. goto unlock;
  1610. }
  1611. if (cmd == TUNSETIFINDEX) {
  1612. ret = -EPERM;
  1613. if (tun)
  1614. goto unlock;
  1615. ret = -EFAULT;
  1616. if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
  1617. goto unlock;
  1618. ret = 0;
  1619. tfile->ifindex = ifindex;
  1620. goto unlock;
  1621. }
  1622. ret = -EBADFD;
  1623. if (!tun)
  1624. goto unlock;
  1625. tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
  1626. ret = 0;
  1627. switch (cmd) {
  1628. case TUNGETIFF:
  1629. tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
  1630. if (tfile->detached)
  1631. ifr.ifr_flags |= IFF_DETACH_QUEUE;
  1632. if (!tfile->socket.sk->sk_filter)
  1633. ifr.ifr_flags |= IFF_NOFILTER;
  1634. if (copy_to_user(argp, &ifr, ifreq_len))
  1635. ret = -EFAULT;
  1636. break;
  1637. case TUNSETNOCSUM:
  1638. /* Disable/Enable checksum */
  1639. /* [unimplemented] */
  1640. tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
  1641. arg ? "disabled" : "enabled");
  1642. break;
  1643. case TUNSETPERSIST:
  1644. /* Disable/Enable persist mode. Keep an extra reference to the
  1645. * module to prevent the module being unprobed.
  1646. */
  1647. if (arg && !(tun->flags & TUN_PERSIST)) {
  1648. tun->flags |= TUN_PERSIST;
  1649. __module_get(THIS_MODULE);
  1650. }
  1651. if (!arg && (tun->flags & TUN_PERSIST)) {
  1652. tun->flags &= ~TUN_PERSIST;
  1653. module_put(THIS_MODULE);
  1654. }
  1655. tun_debug(KERN_INFO, tun, "persist %s\n",
  1656. arg ? "enabled" : "disabled");
  1657. break;
  1658. case TUNSETOWNER:
  1659. /* Set owner of the device */
  1660. owner = make_kuid(current_user_ns(), arg);
  1661. if (!uid_valid(owner)) {
  1662. ret = -EINVAL;
  1663. break;
  1664. }
  1665. tun->owner = owner;
  1666. tun_debug(KERN_INFO, tun, "owner set to %u\n",
  1667. from_kuid(&init_user_ns, tun->owner));
  1668. break;
  1669. case TUNSETGROUP:
  1670. /* Set group of the device */
  1671. group = make_kgid(current_user_ns(), arg);
  1672. if (!gid_valid(group)) {
  1673. ret = -EINVAL;
  1674. break;
  1675. }
  1676. tun->group = group;
  1677. tun_debug(KERN_INFO, tun, "group set to %u\n",
  1678. from_kgid(&init_user_ns, tun->group));
  1679. break;
  1680. case TUNSETLINK:
  1681. /* Only allow setting the type when the interface is down */
  1682. if (tun->dev->flags & IFF_UP) {
  1683. tun_debug(KERN_INFO, tun,
  1684. "Linktype set failed because interface is up\n");
  1685. ret = -EBUSY;
  1686. } else {
  1687. tun->dev->type = (int) arg;
  1688. tun_debug(KERN_INFO, tun, "linktype set to %d\n",
  1689. tun->dev->type);
  1690. ret = 0;
  1691. }
  1692. break;
  1693. #ifdef TUN_DEBUG
  1694. case TUNSETDEBUG:
  1695. tun->debug = arg;
  1696. break;
  1697. #endif
  1698. case TUNSETOFFLOAD:
  1699. ret = set_offload(tun, arg);
  1700. break;
  1701. case TUNSETTXFILTER:
  1702. /* Can be set only for TAPs */
  1703. ret = -EINVAL;
  1704. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1705. break;
  1706. ret = update_filter(&tun->txflt, (void __user *)arg);
  1707. break;
  1708. case SIOCGIFHWADDR:
  1709. /* Get hw address */
  1710. memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
  1711. ifr.ifr_hwaddr.sa_family = tun->dev->type;
  1712. if (copy_to_user(argp, &ifr, ifreq_len))
  1713. ret = -EFAULT;
  1714. break;
  1715. case SIOCSIFHWADDR:
  1716. /* Set hw address */
  1717. tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
  1718. ifr.ifr_hwaddr.sa_data);
  1719. ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
  1720. break;
  1721. case TUNGETSNDBUF:
  1722. sndbuf = tfile->socket.sk->sk_sndbuf;
  1723. if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
  1724. ret = -EFAULT;
  1725. break;
  1726. case TUNSETSNDBUF:
  1727. if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
  1728. ret = -EFAULT;
  1729. break;
  1730. }
  1731. tun->sndbuf = sndbuf;
  1732. tun_set_sndbuf(tun);
  1733. break;
  1734. case TUNGETVNETHDRSZ:
  1735. vnet_hdr_sz = tun->vnet_hdr_sz;
  1736. if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
  1737. ret = -EFAULT;
  1738. break;
  1739. case TUNSETVNETHDRSZ:
  1740. if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
  1741. ret = -EFAULT;
  1742. break;
  1743. }
  1744. if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
  1745. ret = -EINVAL;
  1746. break;
  1747. }
  1748. tun->vnet_hdr_sz = vnet_hdr_sz;
  1749. break;
  1750. case TUNATTACHFILTER:
  1751. /* Can be set only for TAPs */
  1752. ret = -EINVAL;
  1753. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1754. break;
  1755. ret = -EFAULT;
  1756. if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog)))
  1757. break;
  1758. ret = tun_attach_filter(tun);
  1759. break;
  1760. case TUNDETACHFILTER:
  1761. /* Can be set only for TAPs */
  1762. ret = -EINVAL;
  1763. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1764. break;
  1765. ret = 0;
  1766. tun_detach_filter(tun, tun->numqueues);
  1767. break;
  1768. case TUNGETFILTER:
  1769. ret = -EINVAL;
  1770. if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
  1771. break;
  1772. ret = -EFAULT;
  1773. if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog)))
  1774. break;
  1775. ret = 0;
  1776. break;
  1777. default:
  1778. ret = -EINVAL;
  1779. break;
  1780. }
  1781. unlock:
  1782. rtnl_unlock();
  1783. if (tun)
  1784. tun_put(tun);
  1785. return ret;
  1786. }
  1787. static long tun_chr_ioctl(struct file *file,
  1788. unsigned int cmd, unsigned long arg)
  1789. {
  1790. return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
  1791. }
  1792. #ifdef CONFIG_COMPAT
  1793. static long tun_chr_compat_ioctl(struct file *file,
  1794. unsigned int cmd, unsigned long arg)
  1795. {
  1796. switch (cmd) {
  1797. case TUNSETIFF:
  1798. case TUNGETIFF:
  1799. case TUNSETTXFILTER:
  1800. case TUNGETSNDBUF:
  1801. case TUNSETSNDBUF:
  1802. case SIOCGIFHWADDR:
  1803. case SIOCSIFHWADDR:
  1804. arg = (unsigned long)compat_ptr(arg);
  1805. break;
  1806. default:
  1807. arg = (compat_ulong_t)arg;
  1808. break;
  1809. }
  1810. /*
  1811. * compat_ifreq is shorter than ifreq, so we must not access beyond
  1812. * the end of that structure. All fields that are used in this
  1813. * driver are compatible though, we don't need to convert the
  1814. * contents.
  1815. */
  1816. return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
  1817. }
  1818. #endif /* CONFIG_COMPAT */
  1819. static int tun_chr_fasync(int fd, struct file *file, int on)
  1820. {
  1821. struct tun_file *tfile = file->private_data;
  1822. int ret;
  1823. if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0)
  1824. goto out;
  1825. if (on) {
  1826. ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
  1827. if (ret)
  1828. goto out;
  1829. tfile->flags |= TUN_FASYNC;
  1830. } else
  1831. tfile->flags &= ~TUN_FASYNC;
  1832. ret = 0;
  1833. out:
  1834. return ret;
  1835. }
  1836. static int tun_chr_open(struct inode *inode, struct file * file)
  1837. {
  1838. struct tun_file *tfile;
  1839. DBG1(KERN_INFO, "tunX: tun_chr_open\n");
  1840. tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL,
  1841. &tun_proto);
  1842. if (!tfile)
  1843. return -ENOMEM;
  1844. rcu_assign_pointer(tfile->tun, NULL);
  1845. tfile->net = get_net(current->nsproxy->net_ns);
  1846. tfile->flags = 0;
  1847. tfile->ifindex = 0;
  1848. rcu_assign_pointer(tfile->socket.wq, &tfile->wq);
  1849. init_waitqueue_head(&tfile->wq.wait);
  1850. tfile->socket.file = file;
  1851. tfile->socket.ops = &tun_socket_ops;
  1852. sock_init_data(&tfile->socket, &tfile->sk);
  1853. sk_change_net(&tfile->sk, tfile->net);
  1854. tfile->sk.sk_write_space = tun_sock_write_space;
  1855. tfile->sk.sk_sndbuf = INT_MAX;
  1856. file->private_data = tfile;
  1857. set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags);
  1858. INIT_LIST_HEAD(&tfile->next);
  1859. sock_set_flag(&tfile->sk, SOCK_ZEROCOPY);
  1860. return 0;
  1861. }
  1862. static int tun_chr_close(struct inode *inode, struct file *file)
  1863. {
  1864. struct tun_file *tfile = file->private_data;
  1865. struct net *net = tfile->net;
  1866. tun_detach(tfile, true);
  1867. put_net(net);
  1868. return 0;
  1869. }
  1870. #ifdef CONFIG_PROC_FS
  1871. static int tun_chr_show_fdinfo(struct seq_file *m, struct file *f)
  1872. {
  1873. struct tun_struct *tun;
  1874. struct ifreq ifr;
  1875. memset(&ifr, 0, sizeof(ifr));
  1876. rtnl_lock();
  1877. tun = tun_get(f);
  1878. if (tun)
  1879. tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
  1880. rtnl_unlock();
  1881. if (tun)
  1882. tun_put(tun);
  1883. return seq_printf(m, "iff:\t%s\n", ifr.ifr_name);
  1884. }
  1885. #endif
  1886. static const struct file_operations tun_fops = {
  1887. .owner = THIS_MODULE,
  1888. .llseek = no_llseek,
  1889. .read = do_sync_read,
  1890. .aio_read = tun_chr_aio_read,
  1891. .write = do_sync_write,
  1892. .aio_write = tun_chr_aio_write,
  1893. .poll = tun_chr_poll,
  1894. .unlocked_ioctl = tun_chr_ioctl,
  1895. #ifdef CONFIG_COMPAT
  1896. .compat_ioctl = tun_chr_compat_ioctl,
  1897. #endif
  1898. .open = tun_chr_open,
  1899. .release = tun_chr_close,
  1900. .fasync = tun_chr_fasync,
  1901. #ifdef CONFIG_PROC_FS
  1902. .show_fdinfo = tun_chr_show_fdinfo,
  1903. #endif
  1904. };
  1905. static struct miscdevice tun_miscdev = {
  1906. .minor = TUN_MINOR,
  1907. .name = "tun",
  1908. .nodename = "net/tun",
  1909. .fops = &tun_fops,
  1910. };
  1911. /* ethtool interface */
  1912. static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
  1913. {
  1914. cmd->supported = 0;
  1915. cmd->advertising = 0;
  1916. ethtool_cmd_speed_set(cmd, SPEED_10);
  1917. cmd->duplex = DUPLEX_FULL;
  1918. cmd->port = PORT_TP;
  1919. cmd->phy_address = 0;
  1920. cmd->transceiver = XCVR_INTERNAL;
  1921. cmd->autoneg = AUTONEG_DISABLE;
  1922. cmd->maxtxpkt = 0;
  1923. cmd->maxrxpkt = 0;
  1924. return 0;
  1925. }
  1926. static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
  1927. {
  1928. struct tun_struct *tun = netdev_priv(dev);
  1929. strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
  1930. strlcpy(info->version, DRV_VERSION, sizeof(info->version));
  1931. switch (tun->flags & TUN_TYPE_MASK) {
  1932. case TUN_TUN_DEV:
  1933. strlcpy(info->bus_info, "tun", sizeof(info->bus_info));
  1934. break;
  1935. case TUN_TAP_DEV:
  1936. strlcpy(info->bus_info, "tap", sizeof(info->bus_info));
  1937. break;
  1938. }
  1939. }
  1940. static u32 tun_get_msglevel(struct net_device *dev)
  1941. {
  1942. #ifdef TUN_DEBUG
  1943. struct tun_struct *tun = netdev_priv(dev);
  1944. return tun->debug;
  1945. #else
  1946. return -EOPNOTSUPP;
  1947. #endif
  1948. }
  1949. static void tun_set_msglevel(struct net_device *dev, u32 value)
  1950. {
  1951. #ifdef TUN_DEBUG
  1952. struct tun_struct *tun = netdev_priv(dev);
  1953. tun->debug = value;
  1954. #endif
  1955. }
  1956. static const struct ethtool_ops tun_ethtool_ops = {
  1957. .get_settings = tun_get_settings,
  1958. .get_drvinfo = tun_get_drvinfo,
  1959. .get_msglevel = tun_get_msglevel,
  1960. .set_msglevel = tun_set_msglevel,
  1961. .get_link = ethtool_op_get_link,
  1962. .get_ts_info = ethtool_op_get_ts_info,
  1963. };
  1964. static int __init tun_init(void)
  1965. {
  1966. int ret = 0;
  1967. pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
  1968. pr_info("%s\n", DRV_COPYRIGHT);
  1969. ret = rtnl_link_register(&tun_link_ops);
  1970. if (ret) {
  1971. pr_err("Can't register link_ops\n");
  1972. goto err_linkops;
  1973. }
  1974. ret = misc_register(&tun_miscdev);
  1975. if (ret) {
  1976. pr_err("Can't register misc device %d\n", TUN_MINOR);
  1977. goto err_misc;
  1978. }
  1979. return 0;
  1980. err_misc:
  1981. rtnl_link_unregister(&tun_link_ops);
  1982. err_linkops:
  1983. return ret;
  1984. }
  1985. static void tun_cleanup(void)
  1986. {
  1987. misc_deregister(&tun_miscdev);
  1988. rtnl_link_unregister(&tun_link_ops);
  1989. }
  1990. /* Get an underlying socket object from tun file. Returns error unless file is
  1991. * attached to a device. The returned object works like a packet socket, it
  1992. * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for
  1993. * holding a reference to the file for as long as the socket is in use. */
  1994. struct socket *tun_get_socket(struct file *file)
  1995. {
  1996. struct tun_file *tfile;
  1997. if (file->f_op != &tun_fops)
  1998. return ERR_PTR(-EINVAL);
  1999. tfile = file->private_data;
  2000. if (!tfile)
  2001. return ERR_PTR(-EBADFD);
  2002. return &tfile->socket;
  2003. }
  2004. EXPORT_SYMBOL_GPL(tun_get_socket);
  2005. module_init(tun_init);
  2006. module_exit(tun_cleanup);
  2007. MODULE_DESCRIPTION(DRV_DESCRIPTION);
  2008. MODULE_AUTHOR(DRV_COPYRIGHT);
  2009. MODULE_LICENSE("GPL");
  2010. MODULE_ALIAS_MISCDEV(TUN_MINOR);
  2011. MODULE_ALIAS("devname:net/tun");