xen-netfront.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977
  1. /*
  2. * Virtual network driver for conversing with remote driver backends.
  3. *
  4. * Copyright (c) 2002-2005, K A Fraser
  5. * Copyright (c) 2005, XenSource Ltd
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License version 2
  9. * as published by the Free Software Foundation; or, when distributed
  10. * separately from the Linux kernel or incorporated into other
  11. * software packages, subject to the following license:
  12. *
  13. * Permission is hereby granted, free of charge, to any person obtaining a copy
  14. * of this source file (the "Software"), to deal in the Software without
  15. * restriction, including without limitation the rights to use, copy, modify,
  16. * merge, publish, distribute, sublicense, and/or sell copies of the Software,
  17. * and to permit persons to whom the Software is furnished to do so, subject to
  18. * the following conditions:
  19. *
  20. * The above copyright notice and this permission notice shall be included in
  21. * all copies or substantial portions of the Software.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  24. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  25. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  26. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  27. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  28. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  29. * IN THE SOFTWARE.
  30. */
  31. #include <linux/module.h>
  32. #include <linux/kernel.h>
  33. #include <linux/netdevice.h>
  34. #include <linux/etherdevice.h>
  35. #include <linux/skbuff.h>
  36. #include <linux/ethtool.h>
  37. #include <linux/if_ether.h>
  38. #include <linux/tcp.h>
  39. #include <linux/udp.h>
  40. #include <linux/moduleparam.h>
  41. #include <linux/mm.h>
  42. #include <linux/slab.h>
  43. #include <net/ip.h>
  44. #include <xen/xen.h>
  45. #include <xen/xenbus.h>
  46. #include <xen/events.h>
  47. #include <xen/page.h>
  48. #include <xen/grant_table.h>
  49. #include <xen/interface/io/netif.h>
  50. #include <xen/interface/memory.h>
  51. #include <xen/interface/grant_table.h>
  52. static const struct ethtool_ops xennet_ethtool_ops;
  53. struct netfront_cb {
  54. struct page *page;
  55. unsigned offset;
  56. };
  57. #define NETFRONT_SKB_CB(skb) ((struct netfront_cb *)((skb)->cb))
  58. #define RX_COPY_THRESHOLD 256
  59. #define GRANT_INVALID_REF 0
  60. #define NET_TX_RING_SIZE __CONST_RING_SIZE(xen_netif_tx, PAGE_SIZE)
  61. #define NET_RX_RING_SIZE __CONST_RING_SIZE(xen_netif_rx, PAGE_SIZE)
  62. #define TX_MAX_TARGET min_t(int, NET_RX_RING_SIZE, 256)
  63. struct netfront_stats {
  64. u64 rx_packets;
  65. u64 tx_packets;
  66. u64 rx_bytes;
  67. u64 tx_bytes;
  68. struct u64_stats_sync syncp;
  69. };
  70. struct netfront_info {
  71. struct list_head list;
  72. struct net_device *netdev;
  73. struct napi_struct napi;
  74. unsigned int evtchn;
  75. struct xenbus_device *xbdev;
  76. spinlock_t tx_lock;
  77. struct xen_netif_tx_front_ring tx;
  78. int tx_ring_ref;
  79. /*
  80. * {tx,rx}_skbs store outstanding skbuffs. Free tx_skb entries
  81. * are linked from tx_skb_freelist through skb_entry.link.
  82. *
  83. * NB. Freelist index entries are always going to be less than
  84. * PAGE_OFFSET, whereas pointers to skbs will always be equal or
  85. * greater than PAGE_OFFSET: we use this property to distinguish
  86. * them.
  87. */
  88. union skb_entry {
  89. struct sk_buff *skb;
  90. unsigned long link;
  91. } tx_skbs[NET_TX_RING_SIZE];
  92. grant_ref_t gref_tx_head;
  93. grant_ref_t grant_tx_ref[NET_TX_RING_SIZE];
  94. unsigned tx_skb_freelist;
  95. spinlock_t rx_lock ____cacheline_aligned_in_smp;
  96. struct xen_netif_rx_front_ring rx;
  97. int rx_ring_ref;
  98. /* Receive-ring batched refills. */
  99. #define RX_MIN_TARGET 8
  100. #define RX_DFL_MIN_TARGET 64
  101. #define RX_MAX_TARGET min_t(int, NET_RX_RING_SIZE, 256)
  102. unsigned rx_min_target, rx_max_target, rx_target;
  103. struct sk_buff_head rx_batch;
  104. struct timer_list rx_refill_timer;
  105. struct sk_buff *rx_skbs[NET_RX_RING_SIZE];
  106. grant_ref_t gref_rx_head;
  107. grant_ref_t grant_rx_ref[NET_RX_RING_SIZE];
  108. unsigned long rx_pfn_array[NET_RX_RING_SIZE];
  109. struct multicall_entry rx_mcl[NET_RX_RING_SIZE+1];
  110. struct mmu_update rx_mmu[NET_RX_RING_SIZE];
  111. /* Statistics */
  112. struct netfront_stats __percpu *stats;
  113. unsigned long rx_gso_checksum_fixup;
  114. };
  115. struct netfront_rx_info {
  116. struct xen_netif_rx_response rx;
  117. struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1];
  118. };
  119. static void skb_entry_set_link(union skb_entry *list, unsigned short id)
  120. {
  121. list->link = id;
  122. }
  123. static int skb_entry_is_link(const union skb_entry *list)
  124. {
  125. BUILD_BUG_ON(sizeof(list->skb) != sizeof(list->link));
  126. return (unsigned long)list->skb < PAGE_OFFSET;
  127. }
  128. /*
  129. * Access macros for acquiring freeing slots in tx_skbs[].
  130. */
  131. static void add_id_to_freelist(unsigned *head, union skb_entry *list,
  132. unsigned short id)
  133. {
  134. skb_entry_set_link(&list[id], *head);
  135. *head = id;
  136. }
  137. static unsigned short get_id_from_freelist(unsigned *head,
  138. union skb_entry *list)
  139. {
  140. unsigned int id = *head;
  141. *head = list[id].link;
  142. return id;
  143. }
  144. static int xennet_rxidx(RING_IDX idx)
  145. {
  146. return idx & (NET_RX_RING_SIZE - 1);
  147. }
  148. static struct sk_buff *xennet_get_rx_skb(struct netfront_info *np,
  149. RING_IDX ri)
  150. {
  151. int i = xennet_rxidx(ri);
  152. struct sk_buff *skb = np->rx_skbs[i];
  153. np->rx_skbs[i] = NULL;
  154. return skb;
  155. }
  156. static grant_ref_t xennet_get_rx_ref(struct netfront_info *np,
  157. RING_IDX ri)
  158. {
  159. int i = xennet_rxidx(ri);
  160. grant_ref_t ref = np->grant_rx_ref[i];
  161. np->grant_rx_ref[i] = GRANT_INVALID_REF;
  162. return ref;
  163. }
  164. #ifdef CONFIG_SYSFS
  165. static int xennet_sysfs_addif(struct net_device *netdev);
  166. static void xennet_sysfs_delif(struct net_device *netdev);
  167. #else /* !CONFIG_SYSFS */
  168. #define xennet_sysfs_addif(dev) (0)
  169. #define xennet_sysfs_delif(dev) do { } while (0)
  170. #endif
  171. static int xennet_can_sg(struct net_device *dev)
  172. {
  173. return dev->features & NETIF_F_SG;
  174. }
  175. static void rx_refill_timeout(unsigned long data)
  176. {
  177. struct net_device *dev = (struct net_device *)data;
  178. struct netfront_info *np = netdev_priv(dev);
  179. napi_schedule(&np->napi);
  180. }
  181. static int netfront_tx_slot_available(struct netfront_info *np)
  182. {
  183. return (np->tx.req_prod_pvt - np->tx.rsp_cons) <
  184. (TX_MAX_TARGET - MAX_SKB_FRAGS - 2);
  185. }
  186. static void xennet_maybe_wake_tx(struct net_device *dev)
  187. {
  188. struct netfront_info *np = netdev_priv(dev);
  189. if (unlikely(netif_queue_stopped(dev)) &&
  190. netfront_tx_slot_available(np) &&
  191. likely(netif_running(dev)))
  192. netif_wake_queue(dev);
  193. }
  194. static void xennet_alloc_rx_buffers(struct net_device *dev)
  195. {
  196. unsigned short id;
  197. struct netfront_info *np = netdev_priv(dev);
  198. struct sk_buff *skb;
  199. struct page *page;
  200. int i, batch_target, notify;
  201. RING_IDX req_prod = np->rx.req_prod_pvt;
  202. grant_ref_t ref;
  203. unsigned long pfn;
  204. void *vaddr;
  205. struct xen_netif_rx_request *req;
  206. if (unlikely(!netif_carrier_ok(dev)))
  207. return;
  208. /*
  209. * Allocate skbuffs greedily, even though we batch updates to the
  210. * receive ring. This creates a less bursty demand on the memory
  211. * allocator, so should reduce the chance of failed allocation requests
  212. * both for ourself and for other kernel subsystems.
  213. */
  214. batch_target = np->rx_target - (req_prod - np->rx.rsp_cons);
  215. for (i = skb_queue_len(&np->rx_batch); i < batch_target; i++) {
  216. skb = __netdev_alloc_skb(dev, RX_COPY_THRESHOLD + NET_IP_ALIGN,
  217. GFP_ATOMIC | __GFP_NOWARN);
  218. if (unlikely(!skb))
  219. goto no_skb;
  220. /* Align ip header to a 16 bytes boundary */
  221. skb_reserve(skb, NET_IP_ALIGN);
  222. page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
  223. if (!page) {
  224. kfree_skb(skb);
  225. no_skb:
  226. /* Any skbuffs queued for refill? Force them out. */
  227. if (i != 0)
  228. goto refill;
  229. /* Could not allocate any skbuffs. Try again later. */
  230. mod_timer(&np->rx_refill_timer,
  231. jiffies + (HZ/10));
  232. break;
  233. }
  234. __skb_fill_page_desc(skb, 0, page, 0, 0);
  235. skb_shinfo(skb)->nr_frags = 1;
  236. __skb_queue_tail(&np->rx_batch, skb);
  237. }
  238. /* Is the batch large enough to be worthwhile? */
  239. if (i < (np->rx_target/2)) {
  240. if (req_prod > np->rx.sring->req_prod)
  241. goto push;
  242. return;
  243. }
  244. /* Adjust our fill target if we risked running out of buffers. */
  245. if (((req_prod - np->rx.sring->rsp_prod) < (np->rx_target / 4)) &&
  246. ((np->rx_target *= 2) > np->rx_max_target))
  247. np->rx_target = np->rx_max_target;
  248. refill:
  249. for (i = 0; ; i++) {
  250. skb = __skb_dequeue(&np->rx_batch);
  251. if (skb == NULL)
  252. break;
  253. skb->dev = dev;
  254. id = xennet_rxidx(req_prod + i);
  255. BUG_ON(np->rx_skbs[id]);
  256. np->rx_skbs[id] = skb;
  257. ref = gnttab_claim_grant_reference(&np->gref_rx_head);
  258. BUG_ON((signed short)ref < 0);
  259. np->grant_rx_ref[id] = ref;
  260. pfn = page_to_pfn(skb_frag_page(&skb_shinfo(skb)->frags[0]));
  261. vaddr = page_address(skb_frag_page(&skb_shinfo(skb)->frags[0]));
  262. req = RING_GET_REQUEST(&np->rx, req_prod + i);
  263. gnttab_grant_foreign_access_ref(ref,
  264. np->xbdev->otherend_id,
  265. pfn_to_mfn(pfn),
  266. 0);
  267. req->id = id;
  268. req->gref = ref;
  269. }
  270. wmb(); /* barrier so backend seens requests */
  271. /* Above is a suitable barrier to ensure backend will see requests. */
  272. np->rx.req_prod_pvt = req_prod + i;
  273. push:
  274. RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&np->rx, notify);
  275. if (notify)
  276. notify_remote_via_irq(np->netdev->irq);
  277. }
  278. static int xennet_open(struct net_device *dev)
  279. {
  280. struct netfront_info *np = netdev_priv(dev);
  281. napi_enable(&np->napi);
  282. spin_lock_bh(&np->rx_lock);
  283. if (netif_carrier_ok(dev)) {
  284. xennet_alloc_rx_buffers(dev);
  285. np->rx.sring->rsp_event = np->rx.rsp_cons + 1;
  286. if (RING_HAS_UNCONSUMED_RESPONSES(&np->rx))
  287. napi_schedule(&np->napi);
  288. }
  289. spin_unlock_bh(&np->rx_lock);
  290. netif_start_queue(dev);
  291. return 0;
  292. }
  293. static void xennet_tx_buf_gc(struct net_device *dev)
  294. {
  295. RING_IDX cons, prod;
  296. unsigned short id;
  297. struct netfront_info *np = netdev_priv(dev);
  298. struct sk_buff *skb;
  299. BUG_ON(!netif_carrier_ok(dev));
  300. do {
  301. prod = np->tx.sring->rsp_prod;
  302. rmb(); /* Ensure we see responses up to 'rp'. */
  303. for (cons = np->tx.rsp_cons; cons != prod; cons++) {
  304. struct xen_netif_tx_response *txrsp;
  305. txrsp = RING_GET_RESPONSE(&np->tx, cons);
  306. if (txrsp->status == XEN_NETIF_RSP_NULL)
  307. continue;
  308. id = txrsp->id;
  309. skb = np->tx_skbs[id].skb;
  310. if (unlikely(gnttab_query_foreign_access(
  311. np->grant_tx_ref[id]) != 0)) {
  312. printk(KERN_ALERT "xennet_tx_buf_gc: warning "
  313. "-- grant still in use by backend "
  314. "domain.\n");
  315. BUG();
  316. }
  317. gnttab_end_foreign_access_ref(
  318. np->grant_tx_ref[id], GNTMAP_readonly);
  319. gnttab_release_grant_reference(
  320. &np->gref_tx_head, np->grant_tx_ref[id]);
  321. np->grant_tx_ref[id] = GRANT_INVALID_REF;
  322. add_id_to_freelist(&np->tx_skb_freelist, np->tx_skbs, id);
  323. dev_kfree_skb_irq(skb);
  324. }
  325. np->tx.rsp_cons = prod;
  326. /*
  327. * Set a new event, then check for race with update of tx_cons.
  328. * Note that it is essential to schedule a callback, no matter
  329. * how few buffers are pending. Even if there is space in the
  330. * transmit ring, higher layers may be blocked because too much
  331. * data is outstanding: in such cases notification from Xen is
  332. * likely to be the only kick that we'll get.
  333. */
  334. np->tx.sring->rsp_event =
  335. prod + ((np->tx.sring->req_prod - prod) >> 1) + 1;
  336. mb(); /* update shared area */
  337. } while ((cons == prod) && (prod != np->tx.sring->rsp_prod));
  338. xennet_maybe_wake_tx(dev);
  339. }
  340. static void xennet_make_frags(struct sk_buff *skb, struct net_device *dev,
  341. struct xen_netif_tx_request *tx)
  342. {
  343. struct netfront_info *np = netdev_priv(dev);
  344. char *data = skb->data;
  345. unsigned long mfn;
  346. RING_IDX prod = np->tx.req_prod_pvt;
  347. int frags = skb_shinfo(skb)->nr_frags;
  348. unsigned int offset = offset_in_page(data);
  349. unsigned int len = skb_headlen(skb);
  350. unsigned int id;
  351. grant_ref_t ref;
  352. int i;
  353. /* While the header overlaps a page boundary (including being
  354. larger than a page), split it it into page-sized chunks. */
  355. while (len > PAGE_SIZE - offset) {
  356. tx->size = PAGE_SIZE - offset;
  357. tx->flags |= XEN_NETTXF_more_data;
  358. len -= tx->size;
  359. data += tx->size;
  360. offset = 0;
  361. id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
  362. np->tx_skbs[id].skb = skb_get(skb);
  363. tx = RING_GET_REQUEST(&np->tx, prod++);
  364. tx->id = id;
  365. ref = gnttab_claim_grant_reference(&np->gref_tx_head);
  366. BUG_ON((signed short)ref < 0);
  367. mfn = virt_to_mfn(data);
  368. gnttab_grant_foreign_access_ref(ref, np->xbdev->otherend_id,
  369. mfn, GNTMAP_readonly);
  370. tx->gref = np->grant_tx_ref[id] = ref;
  371. tx->offset = offset;
  372. tx->size = len;
  373. tx->flags = 0;
  374. }
  375. /* Grant backend access to each skb fragment page. */
  376. for (i = 0; i < frags; i++) {
  377. skb_frag_t *frag = skb_shinfo(skb)->frags + i;
  378. tx->flags |= XEN_NETTXF_more_data;
  379. id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
  380. np->tx_skbs[id].skb = skb_get(skb);
  381. tx = RING_GET_REQUEST(&np->tx, prod++);
  382. tx->id = id;
  383. ref = gnttab_claim_grant_reference(&np->gref_tx_head);
  384. BUG_ON((signed short)ref < 0);
  385. mfn = pfn_to_mfn(page_to_pfn(skb_frag_page(frag)));
  386. gnttab_grant_foreign_access_ref(ref, np->xbdev->otherend_id,
  387. mfn, GNTMAP_readonly);
  388. tx->gref = np->grant_tx_ref[id] = ref;
  389. tx->offset = frag->page_offset;
  390. tx->size = skb_frag_size(frag);
  391. tx->flags = 0;
  392. }
  393. np->tx.req_prod_pvt = prod;
  394. }
  395. static int xennet_start_xmit(struct sk_buff *skb, struct net_device *dev)
  396. {
  397. unsigned short id;
  398. struct netfront_info *np = netdev_priv(dev);
  399. struct netfront_stats *stats = this_cpu_ptr(np->stats);
  400. struct xen_netif_tx_request *tx;
  401. struct xen_netif_extra_info *extra;
  402. char *data = skb->data;
  403. RING_IDX i;
  404. grant_ref_t ref;
  405. unsigned long mfn;
  406. int notify;
  407. int frags = skb_shinfo(skb)->nr_frags;
  408. unsigned int offset = offset_in_page(data);
  409. unsigned int len = skb_headlen(skb);
  410. frags += DIV_ROUND_UP(offset + len, PAGE_SIZE);
  411. if (unlikely(frags > MAX_SKB_FRAGS + 1)) {
  412. printk(KERN_ALERT "xennet: skb rides the rocket: %d frags\n",
  413. frags);
  414. dump_stack();
  415. goto drop;
  416. }
  417. spin_lock_irq(&np->tx_lock);
  418. if (unlikely(!netif_carrier_ok(dev) ||
  419. (frags > 1 && !xennet_can_sg(dev)) ||
  420. netif_needs_gso(skb, netif_skb_features(skb)))) {
  421. spin_unlock_irq(&np->tx_lock);
  422. goto drop;
  423. }
  424. i = np->tx.req_prod_pvt;
  425. id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
  426. np->tx_skbs[id].skb = skb;
  427. tx = RING_GET_REQUEST(&np->tx, i);
  428. tx->id = id;
  429. ref = gnttab_claim_grant_reference(&np->gref_tx_head);
  430. BUG_ON((signed short)ref < 0);
  431. mfn = virt_to_mfn(data);
  432. gnttab_grant_foreign_access_ref(
  433. ref, np->xbdev->otherend_id, mfn, GNTMAP_readonly);
  434. tx->gref = np->grant_tx_ref[id] = ref;
  435. tx->offset = offset;
  436. tx->size = len;
  437. extra = NULL;
  438. tx->flags = 0;
  439. if (skb->ip_summed == CHECKSUM_PARTIAL)
  440. /* local packet? */
  441. tx->flags |= XEN_NETTXF_csum_blank | XEN_NETTXF_data_validated;
  442. else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
  443. /* remote but checksummed. */
  444. tx->flags |= XEN_NETTXF_data_validated;
  445. if (skb_shinfo(skb)->gso_size) {
  446. struct xen_netif_extra_info *gso;
  447. gso = (struct xen_netif_extra_info *)
  448. RING_GET_REQUEST(&np->tx, ++i);
  449. if (extra)
  450. extra->flags |= XEN_NETIF_EXTRA_FLAG_MORE;
  451. else
  452. tx->flags |= XEN_NETTXF_extra_info;
  453. gso->u.gso.size = skb_shinfo(skb)->gso_size;
  454. gso->u.gso.type = XEN_NETIF_GSO_TYPE_TCPV4;
  455. gso->u.gso.pad = 0;
  456. gso->u.gso.features = 0;
  457. gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
  458. gso->flags = 0;
  459. extra = gso;
  460. }
  461. np->tx.req_prod_pvt = i + 1;
  462. xennet_make_frags(skb, dev, tx);
  463. tx->size = skb->len;
  464. RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&np->tx, notify);
  465. if (notify)
  466. notify_remote_via_irq(np->netdev->irq);
  467. u64_stats_update_begin(&stats->syncp);
  468. stats->tx_bytes += skb->len;
  469. stats->tx_packets++;
  470. u64_stats_update_end(&stats->syncp);
  471. /* Note: It is not safe to access skb after xennet_tx_buf_gc()! */
  472. xennet_tx_buf_gc(dev);
  473. if (!netfront_tx_slot_available(np))
  474. netif_stop_queue(dev);
  475. spin_unlock_irq(&np->tx_lock);
  476. return NETDEV_TX_OK;
  477. drop:
  478. dev->stats.tx_dropped++;
  479. dev_kfree_skb(skb);
  480. return NETDEV_TX_OK;
  481. }
  482. static int xennet_close(struct net_device *dev)
  483. {
  484. struct netfront_info *np = netdev_priv(dev);
  485. netif_stop_queue(np->netdev);
  486. napi_disable(&np->napi);
  487. return 0;
  488. }
  489. static void xennet_move_rx_slot(struct netfront_info *np, struct sk_buff *skb,
  490. grant_ref_t ref)
  491. {
  492. int new = xennet_rxidx(np->rx.req_prod_pvt);
  493. BUG_ON(np->rx_skbs[new]);
  494. np->rx_skbs[new] = skb;
  495. np->grant_rx_ref[new] = ref;
  496. RING_GET_REQUEST(&np->rx, np->rx.req_prod_pvt)->id = new;
  497. RING_GET_REQUEST(&np->rx, np->rx.req_prod_pvt)->gref = ref;
  498. np->rx.req_prod_pvt++;
  499. }
  500. static int xennet_get_extras(struct netfront_info *np,
  501. struct xen_netif_extra_info *extras,
  502. RING_IDX rp)
  503. {
  504. struct xen_netif_extra_info *extra;
  505. struct device *dev = &np->netdev->dev;
  506. RING_IDX cons = np->rx.rsp_cons;
  507. int err = 0;
  508. do {
  509. struct sk_buff *skb;
  510. grant_ref_t ref;
  511. if (unlikely(cons + 1 == rp)) {
  512. if (net_ratelimit())
  513. dev_warn(dev, "Missing extra info\n");
  514. err = -EBADR;
  515. break;
  516. }
  517. extra = (struct xen_netif_extra_info *)
  518. RING_GET_RESPONSE(&np->rx, ++cons);
  519. if (unlikely(!extra->type ||
  520. extra->type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
  521. if (net_ratelimit())
  522. dev_warn(dev, "Invalid extra type: %d\n",
  523. extra->type);
  524. err = -EINVAL;
  525. } else {
  526. memcpy(&extras[extra->type - 1], extra,
  527. sizeof(*extra));
  528. }
  529. skb = xennet_get_rx_skb(np, cons);
  530. ref = xennet_get_rx_ref(np, cons);
  531. xennet_move_rx_slot(np, skb, ref);
  532. } while (extra->flags & XEN_NETIF_EXTRA_FLAG_MORE);
  533. np->rx.rsp_cons = cons;
  534. return err;
  535. }
  536. static int xennet_get_responses(struct netfront_info *np,
  537. struct netfront_rx_info *rinfo, RING_IDX rp,
  538. struct sk_buff_head *list)
  539. {
  540. struct xen_netif_rx_response *rx = &rinfo->rx;
  541. struct xen_netif_extra_info *extras = rinfo->extras;
  542. struct device *dev = &np->netdev->dev;
  543. RING_IDX cons = np->rx.rsp_cons;
  544. struct sk_buff *skb = xennet_get_rx_skb(np, cons);
  545. grant_ref_t ref = xennet_get_rx_ref(np, cons);
  546. int max = MAX_SKB_FRAGS + (rx->status <= RX_COPY_THRESHOLD);
  547. int frags = 1;
  548. int err = 0;
  549. unsigned long ret;
  550. if (rx->flags & XEN_NETRXF_extra_info) {
  551. err = xennet_get_extras(np, extras, rp);
  552. cons = np->rx.rsp_cons;
  553. }
  554. for (;;) {
  555. if (unlikely(rx->status < 0 ||
  556. rx->offset + rx->status > PAGE_SIZE)) {
  557. if (net_ratelimit())
  558. dev_warn(dev, "rx->offset: %x, size: %u\n",
  559. rx->offset, rx->status);
  560. xennet_move_rx_slot(np, skb, ref);
  561. err = -EINVAL;
  562. goto next;
  563. }
  564. /*
  565. * This definitely indicates a bug, either in this driver or in
  566. * the backend driver. In future this should flag the bad
  567. * situation to the system controller to reboot the backed.
  568. */
  569. if (ref == GRANT_INVALID_REF) {
  570. if (net_ratelimit())
  571. dev_warn(dev, "Bad rx response id %d.\n",
  572. rx->id);
  573. err = -EINVAL;
  574. goto next;
  575. }
  576. ret = gnttab_end_foreign_access_ref(ref, 0);
  577. BUG_ON(!ret);
  578. gnttab_release_grant_reference(&np->gref_rx_head, ref);
  579. __skb_queue_tail(list, skb);
  580. next:
  581. if (!(rx->flags & XEN_NETRXF_more_data))
  582. break;
  583. if (cons + frags == rp) {
  584. if (net_ratelimit())
  585. dev_warn(dev, "Need more frags\n");
  586. err = -ENOENT;
  587. break;
  588. }
  589. rx = RING_GET_RESPONSE(&np->rx, cons + frags);
  590. skb = xennet_get_rx_skb(np, cons + frags);
  591. ref = xennet_get_rx_ref(np, cons + frags);
  592. frags++;
  593. }
  594. if (unlikely(frags > max)) {
  595. if (net_ratelimit())
  596. dev_warn(dev, "Too many frags\n");
  597. err = -E2BIG;
  598. }
  599. if (unlikely(err))
  600. np->rx.rsp_cons = cons + frags;
  601. return err;
  602. }
  603. static int xennet_set_skb_gso(struct sk_buff *skb,
  604. struct xen_netif_extra_info *gso)
  605. {
  606. if (!gso->u.gso.size) {
  607. if (net_ratelimit())
  608. printk(KERN_WARNING "GSO size must not be zero.\n");
  609. return -EINVAL;
  610. }
  611. /* Currently only TCPv4 S.O. is supported. */
  612. if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4) {
  613. if (net_ratelimit())
  614. printk(KERN_WARNING "Bad GSO type %d.\n", gso->u.gso.type);
  615. return -EINVAL;
  616. }
  617. skb_shinfo(skb)->gso_size = gso->u.gso.size;
  618. skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
  619. /* Header must be checked, and gso_segs computed. */
  620. skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
  621. skb_shinfo(skb)->gso_segs = 0;
  622. return 0;
  623. }
  624. static RING_IDX xennet_fill_frags(struct netfront_info *np,
  625. struct sk_buff *skb,
  626. struct sk_buff_head *list)
  627. {
  628. struct skb_shared_info *shinfo = skb_shinfo(skb);
  629. int nr_frags = shinfo->nr_frags;
  630. RING_IDX cons = np->rx.rsp_cons;
  631. struct sk_buff *nskb;
  632. while ((nskb = __skb_dequeue(list))) {
  633. struct xen_netif_rx_response *rx =
  634. RING_GET_RESPONSE(&np->rx, ++cons);
  635. skb_frag_t *nfrag = &skb_shinfo(nskb)->frags[0];
  636. __skb_fill_page_desc(skb, nr_frags,
  637. skb_frag_page(nfrag),
  638. rx->offset, rx->status);
  639. skb->data_len += rx->status;
  640. skb_shinfo(nskb)->nr_frags = 0;
  641. kfree_skb(nskb);
  642. nr_frags++;
  643. }
  644. shinfo->nr_frags = nr_frags;
  645. return cons;
  646. }
  647. static int checksum_setup(struct net_device *dev, struct sk_buff *skb)
  648. {
  649. struct iphdr *iph;
  650. unsigned char *th;
  651. int err = -EPROTO;
  652. int recalculate_partial_csum = 0;
  653. /*
  654. * A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
  655. * peers can fail to set NETRXF_csum_blank when sending a GSO
  656. * frame. In this case force the SKB to CHECKSUM_PARTIAL and
  657. * recalculate the partial checksum.
  658. */
  659. if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
  660. struct netfront_info *np = netdev_priv(dev);
  661. np->rx_gso_checksum_fixup++;
  662. skb->ip_summed = CHECKSUM_PARTIAL;
  663. recalculate_partial_csum = 1;
  664. }
  665. /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
  666. if (skb->ip_summed != CHECKSUM_PARTIAL)
  667. return 0;
  668. if (skb->protocol != htons(ETH_P_IP))
  669. goto out;
  670. iph = (void *)skb->data;
  671. th = skb->data + 4 * iph->ihl;
  672. if (th >= skb_tail_pointer(skb))
  673. goto out;
  674. skb->csum_start = th - skb->head;
  675. switch (iph->protocol) {
  676. case IPPROTO_TCP:
  677. skb->csum_offset = offsetof(struct tcphdr, check);
  678. if (recalculate_partial_csum) {
  679. struct tcphdr *tcph = (struct tcphdr *)th;
  680. tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
  681. skb->len - iph->ihl*4,
  682. IPPROTO_TCP, 0);
  683. }
  684. break;
  685. case IPPROTO_UDP:
  686. skb->csum_offset = offsetof(struct udphdr, check);
  687. if (recalculate_partial_csum) {
  688. struct udphdr *udph = (struct udphdr *)th;
  689. udph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
  690. skb->len - iph->ihl*4,
  691. IPPROTO_UDP, 0);
  692. }
  693. break;
  694. default:
  695. if (net_ratelimit())
  696. printk(KERN_ERR "Attempting to checksum a non-"
  697. "TCP/UDP packet, dropping a protocol"
  698. " %d packet", iph->protocol);
  699. goto out;
  700. }
  701. if ((th + skb->csum_offset + 2) > skb_tail_pointer(skb))
  702. goto out;
  703. err = 0;
  704. out:
  705. return err;
  706. }
  707. static int handle_incoming_queue(struct net_device *dev,
  708. struct sk_buff_head *rxq)
  709. {
  710. struct netfront_info *np = netdev_priv(dev);
  711. struct netfront_stats *stats = this_cpu_ptr(np->stats);
  712. int packets_dropped = 0;
  713. struct sk_buff *skb;
  714. while ((skb = __skb_dequeue(rxq)) != NULL) {
  715. struct page *page = NETFRONT_SKB_CB(skb)->page;
  716. void *vaddr = page_address(page);
  717. unsigned offset = NETFRONT_SKB_CB(skb)->offset;
  718. memcpy(skb->data, vaddr + offset,
  719. skb_headlen(skb));
  720. if (page != skb_frag_page(&skb_shinfo(skb)->frags[0]))
  721. __free_page(page);
  722. /* Ethernet work: Delayed to here as it peeks the header. */
  723. skb->protocol = eth_type_trans(skb, dev);
  724. if (checksum_setup(dev, skb)) {
  725. kfree_skb(skb);
  726. packets_dropped++;
  727. dev->stats.rx_errors++;
  728. continue;
  729. }
  730. u64_stats_update_begin(&stats->syncp);
  731. stats->rx_packets++;
  732. stats->rx_bytes += skb->len;
  733. u64_stats_update_end(&stats->syncp);
  734. /* Pass it up. */
  735. netif_receive_skb(skb);
  736. }
  737. return packets_dropped;
  738. }
  739. static int xennet_poll(struct napi_struct *napi, int budget)
  740. {
  741. struct netfront_info *np = container_of(napi, struct netfront_info, napi);
  742. struct net_device *dev = np->netdev;
  743. struct sk_buff *skb;
  744. struct netfront_rx_info rinfo;
  745. struct xen_netif_rx_response *rx = &rinfo.rx;
  746. struct xen_netif_extra_info *extras = rinfo.extras;
  747. RING_IDX i, rp;
  748. int work_done;
  749. struct sk_buff_head rxq;
  750. struct sk_buff_head errq;
  751. struct sk_buff_head tmpq;
  752. unsigned long flags;
  753. unsigned int len;
  754. int err;
  755. spin_lock(&np->rx_lock);
  756. skb_queue_head_init(&rxq);
  757. skb_queue_head_init(&errq);
  758. skb_queue_head_init(&tmpq);
  759. rp = np->rx.sring->rsp_prod;
  760. rmb(); /* Ensure we see queued responses up to 'rp'. */
  761. i = np->rx.rsp_cons;
  762. work_done = 0;
  763. while ((i != rp) && (work_done < budget)) {
  764. memcpy(rx, RING_GET_RESPONSE(&np->rx, i), sizeof(*rx));
  765. memset(extras, 0, sizeof(rinfo.extras));
  766. err = xennet_get_responses(np, &rinfo, rp, &tmpq);
  767. if (unlikely(err)) {
  768. err:
  769. while ((skb = __skb_dequeue(&tmpq)))
  770. __skb_queue_tail(&errq, skb);
  771. dev->stats.rx_errors++;
  772. i = np->rx.rsp_cons;
  773. continue;
  774. }
  775. skb = __skb_dequeue(&tmpq);
  776. if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
  777. struct xen_netif_extra_info *gso;
  778. gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
  779. if (unlikely(xennet_set_skb_gso(skb, gso))) {
  780. __skb_queue_head(&tmpq, skb);
  781. np->rx.rsp_cons += skb_queue_len(&tmpq);
  782. goto err;
  783. }
  784. }
  785. NETFRONT_SKB_CB(skb)->page =
  786. skb_frag_page(&skb_shinfo(skb)->frags[0]);
  787. NETFRONT_SKB_CB(skb)->offset = rx->offset;
  788. len = rx->status;
  789. if (len > RX_COPY_THRESHOLD)
  790. len = RX_COPY_THRESHOLD;
  791. skb_put(skb, len);
  792. if (rx->status > len) {
  793. skb_shinfo(skb)->frags[0].page_offset =
  794. rx->offset + len;
  795. skb_frag_size_set(&skb_shinfo(skb)->frags[0], rx->status - len);
  796. skb->data_len = rx->status - len;
  797. } else {
  798. __skb_fill_page_desc(skb, 0, NULL, 0, 0);
  799. skb_shinfo(skb)->nr_frags = 0;
  800. }
  801. i = xennet_fill_frags(np, skb, &tmpq);
  802. /*
  803. * Truesize approximates the size of true data plus
  804. * any supervisor overheads. Adding hypervisor
  805. * overheads has been shown to significantly reduce
  806. * achievable bandwidth with the default receive
  807. * buffer size. It is therefore not wise to account
  808. * for it here.
  809. *
  810. * After alloc_skb(RX_COPY_THRESHOLD), truesize is set
  811. * to RX_COPY_THRESHOLD + the supervisor
  812. * overheads. Here, we add the size of the data pulled
  813. * in xennet_fill_frags().
  814. *
  815. * We also adjust for any unused space in the main
  816. * data area by subtracting (RX_COPY_THRESHOLD -
  817. * len). This is especially important with drivers
  818. * which split incoming packets into header and data,
  819. * using only 66 bytes of the main data area (see the
  820. * e1000 driver for example.) On such systems,
  821. * without this last adjustement, our achievable
  822. * receive throughout using the standard receive
  823. * buffer size was cut by 25%(!!!).
  824. */
  825. skb->truesize += skb->data_len - (RX_COPY_THRESHOLD - len);
  826. skb->len += skb->data_len;
  827. if (rx->flags & XEN_NETRXF_csum_blank)
  828. skb->ip_summed = CHECKSUM_PARTIAL;
  829. else if (rx->flags & XEN_NETRXF_data_validated)
  830. skb->ip_summed = CHECKSUM_UNNECESSARY;
  831. __skb_queue_tail(&rxq, skb);
  832. np->rx.rsp_cons = ++i;
  833. work_done++;
  834. }
  835. __skb_queue_purge(&errq);
  836. work_done -= handle_incoming_queue(dev, &rxq);
  837. /* If we get a callback with very few responses, reduce fill target. */
  838. /* NB. Note exponential increase, linear decrease. */
  839. if (((np->rx.req_prod_pvt - np->rx.sring->rsp_prod) >
  840. ((3*np->rx_target) / 4)) &&
  841. (--np->rx_target < np->rx_min_target))
  842. np->rx_target = np->rx_min_target;
  843. xennet_alloc_rx_buffers(dev);
  844. if (work_done < budget) {
  845. int more_to_do = 0;
  846. local_irq_save(flags);
  847. RING_FINAL_CHECK_FOR_RESPONSES(&np->rx, more_to_do);
  848. if (!more_to_do)
  849. __napi_complete(napi);
  850. local_irq_restore(flags);
  851. }
  852. spin_unlock(&np->rx_lock);
  853. return work_done;
  854. }
  855. static int xennet_change_mtu(struct net_device *dev, int mtu)
  856. {
  857. int max = xennet_can_sg(dev) ? 65535 - ETH_HLEN : ETH_DATA_LEN;
  858. if (mtu > max)
  859. return -EINVAL;
  860. dev->mtu = mtu;
  861. return 0;
  862. }
  863. static struct rtnl_link_stats64 *xennet_get_stats64(struct net_device *dev,
  864. struct rtnl_link_stats64 *tot)
  865. {
  866. struct netfront_info *np = netdev_priv(dev);
  867. int cpu;
  868. for_each_possible_cpu(cpu) {
  869. struct netfront_stats *stats = per_cpu_ptr(np->stats, cpu);
  870. u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
  871. unsigned int start;
  872. do {
  873. start = u64_stats_fetch_begin_bh(&stats->syncp);
  874. rx_packets = stats->rx_packets;
  875. tx_packets = stats->tx_packets;
  876. rx_bytes = stats->rx_bytes;
  877. tx_bytes = stats->tx_bytes;
  878. } while (u64_stats_fetch_retry_bh(&stats->syncp, start));
  879. tot->rx_packets += rx_packets;
  880. tot->tx_packets += tx_packets;
  881. tot->rx_bytes += rx_bytes;
  882. tot->tx_bytes += tx_bytes;
  883. }
  884. tot->rx_errors = dev->stats.rx_errors;
  885. tot->tx_dropped = dev->stats.tx_dropped;
  886. return tot;
  887. }
  888. static void xennet_release_tx_bufs(struct netfront_info *np)
  889. {
  890. struct sk_buff *skb;
  891. int i;
  892. for (i = 0; i < NET_TX_RING_SIZE; i++) {
  893. /* Skip over entries which are actually freelist references */
  894. if (skb_entry_is_link(&np->tx_skbs[i]))
  895. continue;
  896. skb = np->tx_skbs[i].skb;
  897. gnttab_end_foreign_access_ref(np->grant_tx_ref[i],
  898. GNTMAP_readonly);
  899. gnttab_release_grant_reference(&np->gref_tx_head,
  900. np->grant_tx_ref[i]);
  901. np->grant_tx_ref[i] = GRANT_INVALID_REF;
  902. add_id_to_freelist(&np->tx_skb_freelist, np->tx_skbs, i);
  903. dev_kfree_skb_irq(skb);
  904. }
  905. }
  906. static void xennet_release_rx_bufs(struct netfront_info *np)
  907. {
  908. struct mmu_update *mmu = np->rx_mmu;
  909. struct multicall_entry *mcl = np->rx_mcl;
  910. struct sk_buff_head free_list;
  911. struct sk_buff *skb;
  912. unsigned long mfn;
  913. int xfer = 0, noxfer = 0, unused = 0;
  914. int id, ref;
  915. dev_warn(&np->netdev->dev, "%s: fix me for copying receiver.\n",
  916. __func__);
  917. return;
  918. skb_queue_head_init(&free_list);
  919. spin_lock_bh(&np->rx_lock);
  920. for (id = 0; id < NET_RX_RING_SIZE; id++) {
  921. ref = np->grant_rx_ref[id];
  922. if (ref == GRANT_INVALID_REF) {
  923. unused++;
  924. continue;
  925. }
  926. skb = np->rx_skbs[id];
  927. mfn = gnttab_end_foreign_transfer_ref(ref);
  928. gnttab_release_grant_reference(&np->gref_rx_head, ref);
  929. np->grant_rx_ref[id] = GRANT_INVALID_REF;
  930. if (0 == mfn) {
  931. skb_shinfo(skb)->nr_frags = 0;
  932. dev_kfree_skb(skb);
  933. noxfer++;
  934. continue;
  935. }
  936. if (!xen_feature(XENFEAT_auto_translated_physmap)) {
  937. /* Remap the page. */
  938. const struct page *page =
  939. skb_frag_page(&skb_shinfo(skb)->frags[0]);
  940. unsigned long pfn = page_to_pfn(page);
  941. void *vaddr = page_address(page);
  942. MULTI_update_va_mapping(mcl, (unsigned long)vaddr,
  943. mfn_pte(mfn, PAGE_KERNEL),
  944. 0);
  945. mcl++;
  946. mmu->ptr = ((u64)mfn << PAGE_SHIFT)
  947. | MMU_MACHPHYS_UPDATE;
  948. mmu->val = pfn;
  949. mmu++;
  950. set_phys_to_machine(pfn, mfn);
  951. }
  952. __skb_queue_tail(&free_list, skb);
  953. xfer++;
  954. }
  955. dev_info(&np->netdev->dev, "%s: %d xfer, %d noxfer, %d unused\n",
  956. __func__, xfer, noxfer, unused);
  957. if (xfer) {
  958. if (!xen_feature(XENFEAT_auto_translated_physmap)) {
  959. /* Do all the remapping work and M2P updates. */
  960. MULTI_mmu_update(mcl, np->rx_mmu, mmu - np->rx_mmu,
  961. NULL, DOMID_SELF);
  962. mcl++;
  963. HYPERVISOR_multicall(np->rx_mcl, mcl - np->rx_mcl);
  964. }
  965. }
  966. __skb_queue_purge(&free_list);
  967. spin_unlock_bh(&np->rx_lock);
  968. }
  969. static void xennet_uninit(struct net_device *dev)
  970. {
  971. struct netfront_info *np = netdev_priv(dev);
  972. xennet_release_tx_bufs(np);
  973. xennet_release_rx_bufs(np);
  974. gnttab_free_grant_references(np->gref_tx_head);
  975. gnttab_free_grant_references(np->gref_rx_head);
  976. }
  977. static u32 xennet_fix_features(struct net_device *dev, u32 features)
  978. {
  979. struct netfront_info *np = netdev_priv(dev);
  980. int val;
  981. if (features & NETIF_F_SG) {
  982. if (xenbus_scanf(XBT_NIL, np->xbdev->otherend, "feature-sg",
  983. "%d", &val) < 0)
  984. val = 0;
  985. if (!val)
  986. features &= ~NETIF_F_SG;
  987. }
  988. if (features & NETIF_F_TSO) {
  989. if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
  990. "feature-gso-tcpv4", "%d", &val) < 0)
  991. val = 0;
  992. if (!val)
  993. features &= ~NETIF_F_TSO;
  994. }
  995. return features;
  996. }
  997. static int xennet_set_features(struct net_device *dev, u32 features)
  998. {
  999. if (!(features & NETIF_F_SG) && dev->mtu > ETH_DATA_LEN) {
  1000. netdev_info(dev, "Reducing MTU because no SG offload");
  1001. dev->mtu = ETH_DATA_LEN;
  1002. }
  1003. return 0;
  1004. }
  1005. static const struct net_device_ops xennet_netdev_ops = {
  1006. .ndo_open = xennet_open,
  1007. .ndo_uninit = xennet_uninit,
  1008. .ndo_stop = xennet_close,
  1009. .ndo_start_xmit = xennet_start_xmit,
  1010. .ndo_change_mtu = xennet_change_mtu,
  1011. .ndo_get_stats64 = xennet_get_stats64,
  1012. .ndo_set_mac_address = eth_mac_addr,
  1013. .ndo_validate_addr = eth_validate_addr,
  1014. .ndo_fix_features = xennet_fix_features,
  1015. .ndo_set_features = xennet_set_features,
  1016. };
  1017. static struct net_device * __devinit xennet_create_dev(struct xenbus_device *dev)
  1018. {
  1019. int i, err;
  1020. struct net_device *netdev;
  1021. struct netfront_info *np;
  1022. netdev = alloc_etherdev(sizeof(struct netfront_info));
  1023. if (!netdev) {
  1024. printk(KERN_WARNING "%s> alloc_etherdev failed.\n",
  1025. __func__);
  1026. return ERR_PTR(-ENOMEM);
  1027. }
  1028. np = netdev_priv(netdev);
  1029. np->xbdev = dev;
  1030. spin_lock_init(&np->tx_lock);
  1031. spin_lock_init(&np->rx_lock);
  1032. skb_queue_head_init(&np->rx_batch);
  1033. np->rx_target = RX_DFL_MIN_TARGET;
  1034. np->rx_min_target = RX_DFL_MIN_TARGET;
  1035. np->rx_max_target = RX_MAX_TARGET;
  1036. init_timer(&np->rx_refill_timer);
  1037. np->rx_refill_timer.data = (unsigned long)netdev;
  1038. np->rx_refill_timer.function = rx_refill_timeout;
  1039. err = -ENOMEM;
  1040. np->stats = alloc_percpu(struct netfront_stats);
  1041. if (np->stats == NULL)
  1042. goto exit;
  1043. /* Initialise tx_skbs as a free chain containing every entry. */
  1044. np->tx_skb_freelist = 0;
  1045. for (i = 0; i < NET_TX_RING_SIZE; i++) {
  1046. skb_entry_set_link(&np->tx_skbs[i], i+1);
  1047. np->grant_tx_ref[i] = GRANT_INVALID_REF;
  1048. }
  1049. /* Clear out rx_skbs */
  1050. for (i = 0; i < NET_RX_RING_SIZE; i++) {
  1051. np->rx_skbs[i] = NULL;
  1052. np->grant_rx_ref[i] = GRANT_INVALID_REF;
  1053. }
  1054. /* A grant for every tx ring slot */
  1055. if (gnttab_alloc_grant_references(TX_MAX_TARGET,
  1056. &np->gref_tx_head) < 0) {
  1057. printk(KERN_ALERT "#### netfront can't alloc tx grant refs\n");
  1058. err = -ENOMEM;
  1059. goto exit_free_stats;
  1060. }
  1061. /* A grant for every rx ring slot */
  1062. if (gnttab_alloc_grant_references(RX_MAX_TARGET,
  1063. &np->gref_rx_head) < 0) {
  1064. printk(KERN_ALERT "#### netfront can't alloc rx grant refs\n");
  1065. err = -ENOMEM;
  1066. goto exit_free_tx;
  1067. }
  1068. netdev->netdev_ops = &xennet_netdev_ops;
  1069. netif_napi_add(netdev, &np->napi, xennet_poll, 64);
  1070. netdev->features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM |
  1071. NETIF_F_GSO_ROBUST;
  1072. netdev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_TSO;
  1073. /*
  1074. * Assume that all hw features are available for now. This set
  1075. * will be adjusted by the call to netdev_update_features() in
  1076. * xennet_connect() which is the earliest point where we can
  1077. * negotiate with the backend regarding supported features.
  1078. */
  1079. netdev->features |= netdev->hw_features;
  1080. SET_ETHTOOL_OPS(netdev, &xennet_ethtool_ops);
  1081. SET_NETDEV_DEV(netdev, &dev->dev);
  1082. np->netdev = netdev;
  1083. netif_carrier_off(netdev);
  1084. return netdev;
  1085. exit_free_tx:
  1086. gnttab_free_grant_references(np->gref_tx_head);
  1087. exit_free_stats:
  1088. free_percpu(np->stats);
  1089. exit:
  1090. free_netdev(netdev);
  1091. return ERR_PTR(err);
  1092. }
  1093. /**
  1094. * Entry point to this code when a new device is created. Allocate the basic
  1095. * structures and the ring buffers for communication with the backend, and
  1096. * inform the backend of the appropriate details for those.
  1097. */
  1098. static int __devinit netfront_probe(struct xenbus_device *dev,
  1099. const struct xenbus_device_id *id)
  1100. {
  1101. int err;
  1102. struct net_device *netdev;
  1103. struct netfront_info *info;
  1104. netdev = xennet_create_dev(dev);
  1105. if (IS_ERR(netdev)) {
  1106. err = PTR_ERR(netdev);
  1107. xenbus_dev_fatal(dev, err, "creating netdev");
  1108. return err;
  1109. }
  1110. info = netdev_priv(netdev);
  1111. dev_set_drvdata(&dev->dev, info);
  1112. err = register_netdev(info->netdev);
  1113. if (err) {
  1114. printk(KERN_WARNING "%s: register_netdev err=%d\n",
  1115. __func__, err);
  1116. goto fail;
  1117. }
  1118. err = xennet_sysfs_addif(info->netdev);
  1119. if (err) {
  1120. unregister_netdev(info->netdev);
  1121. printk(KERN_WARNING "%s: add sysfs failed err=%d\n",
  1122. __func__, err);
  1123. goto fail;
  1124. }
  1125. return 0;
  1126. fail:
  1127. free_netdev(netdev);
  1128. dev_set_drvdata(&dev->dev, NULL);
  1129. return err;
  1130. }
  1131. static void xennet_end_access(int ref, void *page)
  1132. {
  1133. /* This frees the page as a side-effect */
  1134. if (ref != GRANT_INVALID_REF)
  1135. gnttab_end_foreign_access(ref, 0, (unsigned long)page);
  1136. }
  1137. static void xennet_disconnect_backend(struct netfront_info *info)
  1138. {
  1139. /* Stop old i/f to prevent errors whilst we rebuild the state. */
  1140. spin_lock_bh(&info->rx_lock);
  1141. spin_lock_irq(&info->tx_lock);
  1142. netif_carrier_off(info->netdev);
  1143. spin_unlock_irq(&info->tx_lock);
  1144. spin_unlock_bh(&info->rx_lock);
  1145. if (info->netdev->irq)
  1146. unbind_from_irqhandler(info->netdev->irq, info->netdev);
  1147. info->evtchn = info->netdev->irq = 0;
  1148. /* End access and free the pages */
  1149. xennet_end_access(info->tx_ring_ref, info->tx.sring);
  1150. xennet_end_access(info->rx_ring_ref, info->rx.sring);
  1151. info->tx_ring_ref = GRANT_INVALID_REF;
  1152. info->rx_ring_ref = GRANT_INVALID_REF;
  1153. info->tx.sring = NULL;
  1154. info->rx.sring = NULL;
  1155. }
  1156. /**
  1157. * We are reconnecting to the backend, due to a suspend/resume, or a backend
  1158. * driver restart. We tear down our netif structure and recreate it, but
  1159. * leave the device-layer structures intact so that this is transparent to the
  1160. * rest of the kernel.
  1161. */
  1162. static int netfront_resume(struct xenbus_device *dev)
  1163. {
  1164. struct netfront_info *info = dev_get_drvdata(&dev->dev);
  1165. dev_dbg(&dev->dev, "%s\n", dev->nodename);
  1166. xennet_disconnect_backend(info);
  1167. return 0;
  1168. }
  1169. static int xen_net_read_mac(struct xenbus_device *dev, u8 mac[])
  1170. {
  1171. char *s, *e, *macstr;
  1172. int i;
  1173. macstr = s = xenbus_read(XBT_NIL, dev->nodename, "mac", NULL);
  1174. if (IS_ERR(macstr))
  1175. return PTR_ERR(macstr);
  1176. for (i = 0; i < ETH_ALEN; i++) {
  1177. mac[i] = simple_strtoul(s, &e, 16);
  1178. if ((s == e) || (*e != ((i == ETH_ALEN-1) ? '\0' : ':'))) {
  1179. kfree(macstr);
  1180. return -ENOENT;
  1181. }
  1182. s = e+1;
  1183. }
  1184. kfree(macstr);
  1185. return 0;
  1186. }
  1187. static irqreturn_t xennet_interrupt(int irq, void *dev_id)
  1188. {
  1189. struct net_device *dev = dev_id;
  1190. struct netfront_info *np = netdev_priv(dev);
  1191. unsigned long flags;
  1192. spin_lock_irqsave(&np->tx_lock, flags);
  1193. if (likely(netif_carrier_ok(dev))) {
  1194. xennet_tx_buf_gc(dev);
  1195. /* Under tx_lock: protects access to rx shared-ring indexes. */
  1196. if (RING_HAS_UNCONSUMED_RESPONSES(&np->rx))
  1197. napi_schedule(&np->napi);
  1198. }
  1199. spin_unlock_irqrestore(&np->tx_lock, flags);
  1200. return IRQ_HANDLED;
  1201. }
  1202. static int setup_netfront(struct xenbus_device *dev, struct netfront_info *info)
  1203. {
  1204. struct xen_netif_tx_sring *txs;
  1205. struct xen_netif_rx_sring *rxs;
  1206. int err;
  1207. struct net_device *netdev = info->netdev;
  1208. info->tx_ring_ref = GRANT_INVALID_REF;
  1209. info->rx_ring_ref = GRANT_INVALID_REF;
  1210. info->rx.sring = NULL;
  1211. info->tx.sring = NULL;
  1212. netdev->irq = 0;
  1213. err = xen_net_read_mac(dev, netdev->dev_addr);
  1214. if (err) {
  1215. xenbus_dev_fatal(dev, err, "parsing %s/mac", dev->nodename);
  1216. goto fail;
  1217. }
  1218. txs = (struct xen_netif_tx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
  1219. if (!txs) {
  1220. err = -ENOMEM;
  1221. xenbus_dev_fatal(dev, err, "allocating tx ring page");
  1222. goto fail;
  1223. }
  1224. SHARED_RING_INIT(txs);
  1225. FRONT_RING_INIT(&info->tx, txs, PAGE_SIZE);
  1226. err = xenbus_grant_ring(dev, virt_to_mfn(txs));
  1227. if (err < 0) {
  1228. free_page((unsigned long)txs);
  1229. goto fail;
  1230. }
  1231. info->tx_ring_ref = err;
  1232. rxs = (struct xen_netif_rx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
  1233. if (!rxs) {
  1234. err = -ENOMEM;
  1235. xenbus_dev_fatal(dev, err, "allocating rx ring page");
  1236. goto fail;
  1237. }
  1238. SHARED_RING_INIT(rxs);
  1239. FRONT_RING_INIT(&info->rx, rxs, PAGE_SIZE);
  1240. err = xenbus_grant_ring(dev, virt_to_mfn(rxs));
  1241. if (err < 0) {
  1242. free_page((unsigned long)rxs);
  1243. goto fail;
  1244. }
  1245. info->rx_ring_ref = err;
  1246. err = xenbus_alloc_evtchn(dev, &info->evtchn);
  1247. if (err)
  1248. goto fail;
  1249. err = bind_evtchn_to_irqhandler(info->evtchn, xennet_interrupt,
  1250. 0, netdev->name, netdev);
  1251. if (err < 0)
  1252. goto fail;
  1253. netdev->irq = err;
  1254. return 0;
  1255. fail:
  1256. return err;
  1257. }
  1258. /* Common code used when first setting up, and when resuming. */
  1259. static int talk_to_netback(struct xenbus_device *dev,
  1260. struct netfront_info *info)
  1261. {
  1262. const char *message;
  1263. struct xenbus_transaction xbt;
  1264. int err;
  1265. /* Create shared ring, alloc event channel. */
  1266. err = setup_netfront(dev, info);
  1267. if (err)
  1268. goto out;
  1269. again:
  1270. err = xenbus_transaction_start(&xbt);
  1271. if (err) {
  1272. xenbus_dev_fatal(dev, err, "starting transaction");
  1273. goto destroy_ring;
  1274. }
  1275. err = xenbus_printf(xbt, dev->nodename, "tx-ring-ref", "%u",
  1276. info->tx_ring_ref);
  1277. if (err) {
  1278. message = "writing tx ring-ref";
  1279. goto abort_transaction;
  1280. }
  1281. err = xenbus_printf(xbt, dev->nodename, "rx-ring-ref", "%u",
  1282. info->rx_ring_ref);
  1283. if (err) {
  1284. message = "writing rx ring-ref";
  1285. goto abort_transaction;
  1286. }
  1287. err = xenbus_printf(xbt, dev->nodename,
  1288. "event-channel", "%u", info->evtchn);
  1289. if (err) {
  1290. message = "writing event-channel";
  1291. goto abort_transaction;
  1292. }
  1293. err = xenbus_printf(xbt, dev->nodename, "request-rx-copy", "%u",
  1294. 1);
  1295. if (err) {
  1296. message = "writing request-rx-copy";
  1297. goto abort_transaction;
  1298. }
  1299. err = xenbus_printf(xbt, dev->nodename, "feature-rx-notify", "%d", 1);
  1300. if (err) {
  1301. message = "writing feature-rx-notify";
  1302. goto abort_transaction;
  1303. }
  1304. err = xenbus_printf(xbt, dev->nodename, "feature-sg", "%d", 1);
  1305. if (err) {
  1306. message = "writing feature-sg";
  1307. goto abort_transaction;
  1308. }
  1309. err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4", "%d", 1);
  1310. if (err) {
  1311. message = "writing feature-gso-tcpv4";
  1312. goto abort_transaction;
  1313. }
  1314. err = xenbus_transaction_end(xbt, 0);
  1315. if (err) {
  1316. if (err == -EAGAIN)
  1317. goto again;
  1318. xenbus_dev_fatal(dev, err, "completing transaction");
  1319. goto destroy_ring;
  1320. }
  1321. return 0;
  1322. abort_transaction:
  1323. xenbus_transaction_end(xbt, 1);
  1324. xenbus_dev_fatal(dev, err, "%s", message);
  1325. destroy_ring:
  1326. xennet_disconnect_backend(info);
  1327. out:
  1328. return err;
  1329. }
  1330. static int xennet_connect(struct net_device *dev)
  1331. {
  1332. struct netfront_info *np = netdev_priv(dev);
  1333. int i, requeue_idx, err;
  1334. struct sk_buff *skb;
  1335. grant_ref_t ref;
  1336. struct xen_netif_rx_request *req;
  1337. unsigned int feature_rx_copy;
  1338. err = xenbus_scanf(XBT_NIL, np->xbdev->otherend,
  1339. "feature-rx-copy", "%u", &feature_rx_copy);
  1340. if (err != 1)
  1341. feature_rx_copy = 0;
  1342. if (!feature_rx_copy) {
  1343. dev_info(&dev->dev,
  1344. "backend does not support copying receive path\n");
  1345. return -ENODEV;
  1346. }
  1347. err = talk_to_netback(np->xbdev, np);
  1348. if (err)
  1349. return err;
  1350. rtnl_lock();
  1351. netdev_update_features(dev);
  1352. rtnl_unlock();
  1353. spin_lock_bh(&np->rx_lock);
  1354. spin_lock_irq(&np->tx_lock);
  1355. /* Step 1: Discard all pending TX packet fragments. */
  1356. xennet_release_tx_bufs(np);
  1357. /* Step 2: Rebuild the RX buffer freelist and the RX ring itself. */
  1358. for (requeue_idx = 0, i = 0; i < NET_RX_RING_SIZE; i++) {
  1359. skb_frag_t *frag;
  1360. const struct page *page;
  1361. if (!np->rx_skbs[i])
  1362. continue;
  1363. skb = np->rx_skbs[requeue_idx] = xennet_get_rx_skb(np, i);
  1364. ref = np->grant_rx_ref[requeue_idx] = xennet_get_rx_ref(np, i);
  1365. req = RING_GET_REQUEST(&np->rx, requeue_idx);
  1366. frag = &skb_shinfo(skb)->frags[0];
  1367. page = skb_frag_page(frag);
  1368. gnttab_grant_foreign_access_ref(
  1369. ref, np->xbdev->otherend_id,
  1370. pfn_to_mfn(page_to_pfn(page)),
  1371. 0);
  1372. req->gref = ref;
  1373. req->id = requeue_idx;
  1374. requeue_idx++;
  1375. }
  1376. np->rx.req_prod_pvt = requeue_idx;
  1377. /*
  1378. * Step 3: All public and private state should now be sane. Get
  1379. * ready to start sending and receiving packets and give the driver
  1380. * domain a kick because we've probably just requeued some
  1381. * packets.
  1382. */
  1383. netif_carrier_on(np->netdev);
  1384. notify_remote_via_irq(np->netdev->irq);
  1385. xennet_tx_buf_gc(dev);
  1386. xennet_alloc_rx_buffers(dev);
  1387. spin_unlock_irq(&np->tx_lock);
  1388. spin_unlock_bh(&np->rx_lock);
  1389. return 0;
  1390. }
  1391. /**
  1392. * Callback received when the backend's state changes.
  1393. */
  1394. static void netback_changed(struct xenbus_device *dev,
  1395. enum xenbus_state backend_state)
  1396. {
  1397. struct netfront_info *np = dev_get_drvdata(&dev->dev);
  1398. struct net_device *netdev = np->netdev;
  1399. dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state));
  1400. switch (backend_state) {
  1401. case XenbusStateInitialising:
  1402. case XenbusStateInitialised:
  1403. case XenbusStateReconfiguring:
  1404. case XenbusStateReconfigured:
  1405. case XenbusStateConnected:
  1406. case XenbusStateUnknown:
  1407. case XenbusStateClosed:
  1408. break;
  1409. case XenbusStateInitWait:
  1410. if (dev->state != XenbusStateInitialising)
  1411. break;
  1412. if (xennet_connect(netdev) != 0)
  1413. break;
  1414. xenbus_switch_state(dev, XenbusStateConnected);
  1415. netif_notify_peers(netdev);
  1416. break;
  1417. case XenbusStateClosing:
  1418. xenbus_frontend_closed(dev);
  1419. break;
  1420. }
  1421. }
  1422. static const struct xennet_stat {
  1423. char name[ETH_GSTRING_LEN];
  1424. u16 offset;
  1425. } xennet_stats[] = {
  1426. {
  1427. "rx_gso_checksum_fixup",
  1428. offsetof(struct netfront_info, rx_gso_checksum_fixup)
  1429. },
  1430. };
  1431. static int xennet_get_sset_count(struct net_device *dev, int string_set)
  1432. {
  1433. switch (string_set) {
  1434. case ETH_SS_STATS:
  1435. return ARRAY_SIZE(xennet_stats);
  1436. default:
  1437. return -EINVAL;
  1438. }
  1439. }
  1440. static void xennet_get_ethtool_stats(struct net_device *dev,
  1441. struct ethtool_stats *stats, u64 * data)
  1442. {
  1443. void *np = netdev_priv(dev);
  1444. int i;
  1445. for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
  1446. data[i] = *(unsigned long *)(np + xennet_stats[i].offset);
  1447. }
  1448. static void xennet_get_strings(struct net_device *dev, u32 stringset, u8 * data)
  1449. {
  1450. int i;
  1451. switch (stringset) {
  1452. case ETH_SS_STATS:
  1453. for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
  1454. memcpy(data + i * ETH_GSTRING_LEN,
  1455. xennet_stats[i].name, ETH_GSTRING_LEN);
  1456. break;
  1457. }
  1458. }
  1459. static const struct ethtool_ops xennet_ethtool_ops =
  1460. {
  1461. .get_link = ethtool_op_get_link,
  1462. .get_sset_count = xennet_get_sset_count,
  1463. .get_ethtool_stats = xennet_get_ethtool_stats,
  1464. .get_strings = xennet_get_strings,
  1465. };
  1466. #ifdef CONFIG_SYSFS
  1467. static ssize_t show_rxbuf_min(struct device *dev,
  1468. struct device_attribute *attr, char *buf)
  1469. {
  1470. struct net_device *netdev = to_net_dev(dev);
  1471. struct netfront_info *info = netdev_priv(netdev);
  1472. return sprintf(buf, "%u\n", info->rx_min_target);
  1473. }
  1474. static ssize_t store_rxbuf_min(struct device *dev,
  1475. struct device_attribute *attr,
  1476. const char *buf, size_t len)
  1477. {
  1478. struct net_device *netdev = to_net_dev(dev);
  1479. struct netfront_info *np = netdev_priv(netdev);
  1480. char *endp;
  1481. unsigned long target;
  1482. if (!capable(CAP_NET_ADMIN))
  1483. return -EPERM;
  1484. target = simple_strtoul(buf, &endp, 0);
  1485. if (endp == buf)
  1486. return -EBADMSG;
  1487. if (target < RX_MIN_TARGET)
  1488. target = RX_MIN_TARGET;
  1489. if (target > RX_MAX_TARGET)
  1490. target = RX_MAX_TARGET;
  1491. spin_lock_bh(&np->rx_lock);
  1492. if (target > np->rx_max_target)
  1493. np->rx_max_target = target;
  1494. np->rx_min_target = target;
  1495. if (target > np->rx_target)
  1496. np->rx_target = target;
  1497. xennet_alloc_rx_buffers(netdev);
  1498. spin_unlock_bh(&np->rx_lock);
  1499. return len;
  1500. }
  1501. static ssize_t show_rxbuf_max(struct device *dev,
  1502. struct device_attribute *attr, char *buf)
  1503. {
  1504. struct net_device *netdev = to_net_dev(dev);
  1505. struct netfront_info *info = netdev_priv(netdev);
  1506. return sprintf(buf, "%u\n", info->rx_max_target);
  1507. }
  1508. static ssize_t store_rxbuf_max(struct device *dev,
  1509. struct device_attribute *attr,
  1510. const char *buf, size_t len)
  1511. {
  1512. struct net_device *netdev = to_net_dev(dev);
  1513. struct netfront_info *np = netdev_priv(netdev);
  1514. char *endp;
  1515. unsigned long target;
  1516. if (!capable(CAP_NET_ADMIN))
  1517. return -EPERM;
  1518. target = simple_strtoul(buf, &endp, 0);
  1519. if (endp == buf)
  1520. return -EBADMSG;
  1521. if (target < RX_MIN_TARGET)
  1522. target = RX_MIN_TARGET;
  1523. if (target > RX_MAX_TARGET)
  1524. target = RX_MAX_TARGET;
  1525. spin_lock_bh(&np->rx_lock);
  1526. if (target < np->rx_min_target)
  1527. np->rx_min_target = target;
  1528. np->rx_max_target = target;
  1529. if (target < np->rx_target)
  1530. np->rx_target = target;
  1531. xennet_alloc_rx_buffers(netdev);
  1532. spin_unlock_bh(&np->rx_lock);
  1533. return len;
  1534. }
  1535. static ssize_t show_rxbuf_cur(struct device *dev,
  1536. struct device_attribute *attr, char *buf)
  1537. {
  1538. struct net_device *netdev = to_net_dev(dev);
  1539. struct netfront_info *info = netdev_priv(netdev);
  1540. return sprintf(buf, "%u\n", info->rx_target);
  1541. }
  1542. static struct device_attribute xennet_attrs[] = {
  1543. __ATTR(rxbuf_min, S_IRUGO|S_IWUSR, show_rxbuf_min, store_rxbuf_min),
  1544. __ATTR(rxbuf_max, S_IRUGO|S_IWUSR, show_rxbuf_max, store_rxbuf_max),
  1545. __ATTR(rxbuf_cur, S_IRUGO, show_rxbuf_cur, NULL),
  1546. };
  1547. static int xennet_sysfs_addif(struct net_device *netdev)
  1548. {
  1549. int i;
  1550. int err;
  1551. for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++) {
  1552. err = device_create_file(&netdev->dev,
  1553. &xennet_attrs[i]);
  1554. if (err)
  1555. goto fail;
  1556. }
  1557. return 0;
  1558. fail:
  1559. while (--i >= 0)
  1560. device_remove_file(&netdev->dev, &xennet_attrs[i]);
  1561. return err;
  1562. }
  1563. static void xennet_sysfs_delif(struct net_device *netdev)
  1564. {
  1565. int i;
  1566. for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++)
  1567. device_remove_file(&netdev->dev, &xennet_attrs[i]);
  1568. }
  1569. #endif /* CONFIG_SYSFS */
  1570. static struct xenbus_device_id netfront_ids[] = {
  1571. { "vif" },
  1572. { "" }
  1573. };
  1574. static int __devexit xennet_remove(struct xenbus_device *dev)
  1575. {
  1576. struct netfront_info *info = dev_get_drvdata(&dev->dev);
  1577. dev_dbg(&dev->dev, "%s\n", dev->nodename);
  1578. unregister_netdev(info->netdev);
  1579. xennet_disconnect_backend(info);
  1580. del_timer_sync(&info->rx_refill_timer);
  1581. xennet_sysfs_delif(info->netdev);
  1582. free_percpu(info->stats);
  1583. free_netdev(info->netdev);
  1584. return 0;
  1585. }
  1586. static struct xenbus_driver netfront_driver = {
  1587. .name = "vif",
  1588. .owner = THIS_MODULE,
  1589. .ids = netfront_ids,
  1590. .probe = netfront_probe,
  1591. .remove = __devexit_p(xennet_remove),
  1592. .resume = netfront_resume,
  1593. .otherend_changed = netback_changed,
  1594. };
  1595. static int __init netif_init(void)
  1596. {
  1597. if (!xen_domain())
  1598. return -ENODEV;
  1599. if (xen_initial_domain())
  1600. return 0;
  1601. printk(KERN_INFO "Initialising Xen virtual ethernet driver.\n");
  1602. return xenbus_register_frontend(&netfront_driver);
  1603. }
  1604. module_init(netif_init);
  1605. static void __exit netif_exit(void)
  1606. {
  1607. if (xen_initial_domain())
  1608. return;
  1609. xenbus_unregister_driver(&netfront_driver);
  1610. }
  1611. module_exit(netif_exit);
  1612. MODULE_DESCRIPTION("Xen virtual network device frontend");
  1613. MODULE_LICENSE("GPL");
  1614. MODULE_ALIAS("xen:vif");
  1615. MODULE_ALIAS("xennet");