netdevice.h 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * Definitions for the Interfaces handler.
  7. *
  8. * Version: @(#)dev.h 1.0.10 08/12/93
  9. *
  10. * Authors: Ross Biro
  11. * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12. * Corey Minyard <wf-rch!minyard@relay.EU.net>
  13. * Donald J. Becker, <becker@cesdis.gsfc.nasa.gov>
  14. * Alan Cox, <alan@lxorguk.ukuu.org.uk>
  15. * Bjorn Ekwall. <bj0rn@blox.se>
  16. * Pekka Riikonen <priikone@poseidon.pspt.fi>
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License
  20. * as published by the Free Software Foundation; either version
  21. * 2 of the License, or (at your option) any later version.
  22. *
  23. * Moved to /usr/include/linux for NET3
  24. */
  25. #ifndef _LINUX_NETDEVICE_H
  26. #define _LINUX_NETDEVICE_H
  27. #include <linux/if.h>
  28. #include <linux/if_ether.h>
  29. #include <linux/if_packet.h>
  30. #include <linux/if_link.h>
  31. #ifdef __KERNEL__
  32. #include <linux/pm_qos.h>
  33. #include <linux/timer.h>
  34. #include <linux/delay.h>
  35. #include <linux/atomic.h>
  36. #include <asm/cache.h>
  37. #include <asm/byteorder.h>
  38. #include <linux/device.h>
  39. #include <linux/percpu.h>
  40. #include <linux/rculist.h>
  41. #include <linux/dmaengine.h>
  42. #include <linux/workqueue.h>
  43. #include <linux/ethtool.h>
  44. #include <net/net_namespace.h>
  45. #include <net/dsa.h>
  46. #ifdef CONFIG_DCB
  47. #include <net/dcbnl.h>
  48. #endif
  49. #include <net/netprio_cgroup.h>
  50. #include <linux/netdev_features.h>
  51. struct vlan_group;
  52. struct netpoll_info;
  53. struct phy_device;
  54. /* 802.11 specific */
  55. struct wireless_dev;
  56. /* source back-compat hooks */
  57. #define SET_ETHTOOL_OPS(netdev,ops) \
  58. ( (netdev)->ethtool_ops = (ops) )
  59. /* hardware address assignment types */
  60. #define NET_ADDR_PERM 0 /* address is permanent (default) */
  61. #define NET_ADDR_RANDOM 1 /* address is generated randomly */
  62. #define NET_ADDR_STOLEN 2 /* address is stolen from other device */
  63. /* Backlog congestion levels */
  64. #define NET_RX_SUCCESS 0 /* keep 'em coming, baby */
  65. #define NET_RX_DROP 1 /* packet dropped */
  66. /*
  67. * Transmit return codes: transmit return codes originate from three different
  68. * namespaces:
  69. *
  70. * - qdisc return codes
  71. * - driver transmit return codes
  72. * - errno values
  73. *
  74. * Drivers are allowed to return any one of those in their hard_start_xmit()
  75. * function. Real network devices commonly used with qdiscs should only return
  76. * the driver transmit return codes though - when qdiscs are used, the actual
  77. * transmission happens asynchronously, so the value is not propagated to
  78. * higher layers. Virtual network devices transmit synchronously, in this case
  79. * the driver transmit return codes are consumed by dev_queue_xmit(), all
  80. * others are propagated to higher layers.
  81. */
  82. /* qdisc ->enqueue() return codes. */
  83. #define NET_XMIT_SUCCESS 0x00
  84. #define NET_XMIT_DROP 0x01 /* skb dropped */
  85. #define NET_XMIT_CN 0x02 /* congestion notification */
  86. #define NET_XMIT_POLICED 0x03 /* skb is shot by police */
  87. #define NET_XMIT_MASK 0x0f /* qdisc flags in net/sch_generic.h */
  88. /* NET_XMIT_CN is special. It does not guarantee that this packet is lost. It
  89. * indicates that the device will soon be dropping packets, or already drops
  90. * some packets of the same priority; prompting us to send less aggressively. */
  91. #define net_xmit_eval(e) ((e) == NET_XMIT_CN ? 0 : (e))
  92. #define net_xmit_errno(e) ((e) != NET_XMIT_CN ? -ENOBUFS : 0)
  93. /* Driver transmit return codes */
  94. #define NETDEV_TX_MASK 0xf0
  95. enum netdev_tx {
  96. __NETDEV_TX_MIN = INT_MIN, /* make sure enum is signed */
  97. NETDEV_TX_OK = 0x00, /* driver took care of packet */
  98. NETDEV_TX_BUSY = 0x10, /* driver tx path was busy*/
  99. NETDEV_TX_LOCKED = 0x20, /* driver tx lock was already taken */
  100. };
  101. typedef enum netdev_tx netdev_tx_t;
  102. /*
  103. * Current order: NETDEV_TX_MASK > NET_XMIT_MASK >= 0 is significant;
  104. * hard_start_xmit() return < NET_XMIT_MASK means skb was consumed.
  105. */
  106. static inline bool dev_xmit_complete(int rc)
  107. {
  108. /*
  109. * Positive cases with an skb consumed by a driver:
  110. * - successful transmission (rc == NETDEV_TX_OK)
  111. * - error while transmitting (rc < 0)
  112. * - error while queueing to a different device (rc & NET_XMIT_MASK)
  113. */
  114. if (likely(rc < NET_XMIT_MASK))
  115. return true;
  116. return false;
  117. }
  118. #endif
  119. #define MAX_ADDR_LEN 32 /* Largest hardware address length */
  120. /* Initial net device group. All devices belong to group 0 by default. */
  121. #define INIT_NETDEV_GROUP 0
  122. #ifdef __KERNEL__
  123. /*
  124. * Compute the worst case header length according to the protocols
  125. * used.
  126. */
  127. #if defined(CONFIG_WLAN) || IS_ENABLED(CONFIG_AX25)
  128. # if defined(CONFIG_MAC80211_MESH)
  129. # define LL_MAX_HEADER 128
  130. # else
  131. # define LL_MAX_HEADER 96
  132. # endif
  133. #elif IS_ENABLED(CONFIG_TR)
  134. # define LL_MAX_HEADER 48
  135. #else
  136. # define LL_MAX_HEADER 32
  137. #endif
  138. #if !IS_ENABLED(CONFIG_NET_IPIP) && !IS_ENABLED(CONFIG_NET_IPGRE) && \
  139. !IS_ENABLED(CONFIG_IPV6_SIT) && !IS_ENABLED(CONFIG_IPV6_TUNNEL)
  140. #define MAX_HEADER LL_MAX_HEADER
  141. #else
  142. #define MAX_HEADER (LL_MAX_HEADER + 48)
  143. #endif
  144. /*
  145. * Old network device statistics. Fields are native words
  146. * (unsigned long) so they can be read and written atomically.
  147. */
  148. struct net_device_stats {
  149. unsigned long rx_packets;
  150. unsigned long tx_packets;
  151. unsigned long rx_bytes;
  152. unsigned long tx_bytes;
  153. unsigned long rx_errors;
  154. unsigned long tx_errors;
  155. unsigned long rx_dropped;
  156. unsigned long tx_dropped;
  157. unsigned long multicast;
  158. unsigned long collisions;
  159. unsigned long rx_length_errors;
  160. unsigned long rx_over_errors;
  161. unsigned long rx_crc_errors;
  162. unsigned long rx_frame_errors;
  163. unsigned long rx_fifo_errors;
  164. unsigned long rx_missed_errors;
  165. unsigned long tx_aborted_errors;
  166. unsigned long tx_carrier_errors;
  167. unsigned long tx_fifo_errors;
  168. unsigned long tx_heartbeat_errors;
  169. unsigned long tx_window_errors;
  170. unsigned long rx_compressed;
  171. unsigned long tx_compressed;
  172. };
  173. #endif /* __KERNEL__ */
  174. /* Media selection options. */
  175. enum {
  176. IF_PORT_UNKNOWN = 0,
  177. IF_PORT_10BASE2,
  178. IF_PORT_10BASET,
  179. IF_PORT_AUI,
  180. IF_PORT_100BASET,
  181. IF_PORT_100BASETX,
  182. IF_PORT_100BASEFX
  183. };
  184. #ifdef __KERNEL__
  185. #include <linux/cache.h>
  186. #include <linux/skbuff.h>
  187. #ifdef CONFIG_RPS
  188. #include <linux/jump_label.h>
  189. extern struct jump_label_key rps_needed;
  190. #endif
  191. struct neighbour;
  192. struct neigh_parms;
  193. struct sk_buff;
  194. struct netdev_hw_addr {
  195. struct list_head list;
  196. unsigned char addr[MAX_ADDR_LEN];
  197. unsigned char type;
  198. #define NETDEV_HW_ADDR_T_LAN 1
  199. #define NETDEV_HW_ADDR_T_SAN 2
  200. #define NETDEV_HW_ADDR_T_SLAVE 3
  201. #define NETDEV_HW_ADDR_T_UNICAST 4
  202. #define NETDEV_HW_ADDR_T_MULTICAST 5
  203. bool synced;
  204. bool global_use;
  205. int refcount;
  206. struct rcu_head rcu_head;
  207. };
  208. struct netdev_hw_addr_list {
  209. struct list_head list;
  210. int count;
  211. };
  212. #define netdev_hw_addr_list_count(l) ((l)->count)
  213. #define netdev_hw_addr_list_empty(l) (netdev_hw_addr_list_count(l) == 0)
  214. #define netdev_hw_addr_list_for_each(ha, l) \
  215. list_for_each_entry(ha, &(l)->list, list)
  216. #define netdev_uc_count(dev) netdev_hw_addr_list_count(&(dev)->uc)
  217. #define netdev_uc_empty(dev) netdev_hw_addr_list_empty(&(dev)->uc)
  218. #define netdev_for_each_uc_addr(ha, dev) \
  219. netdev_hw_addr_list_for_each(ha, &(dev)->uc)
  220. #define netdev_mc_count(dev) netdev_hw_addr_list_count(&(dev)->mc)
  221. #define netdev_mc_empty(dev) netdev_hw_addr_list_empty(&(dev)->mc)
  222. #define netdev_for_each_mc_addr(ha, dev) \
  223. netdev_hw_addr_list_for_each(ha, &(dev)->mc)
  224. struct hh_cache {
  225. u16 hh_len;
  226. u16 __pad;
  227. seqlock_t hh_lock;
  228. /* cached hardware header; allow for machine alignment needs. */
  229. #define HH_DATA_MOD 16
  230. #define HH_DATA_OFF(__len) \
  231. (HH_DATA_MOD - (((__len - 1) & (HH_DATA_MOD - 1)) + 1))
  232. #define HH_DATA_ALIGN(__len) \
  233. (((__len)+(HH_DATA_MOD-1))&~(HH_DATA_MOD - 1))
  234. unsigned long hh_data[HH_DATA_ALIGN(LL_MAX_HEADER) / sizeof(long)];
  235. };
  236. /* Reserve HH_DATA_MOD byte aligned hard_header_len, but at least that much.
  237. * Alternative is:
  238. * dev->hard_header_len ? (dev->hard_header_len +
  239. * (HH_DATA_MOD - 1)) & ~(HH_DATA_MOD - 1) : 0
  240. *
  241. * We could use other alignment values, but we must maintain the
  242. * relationship HH alignment <= LL alignment.
  243. */
  244. #define LL_RESERVED_SPACE(dev) \
  245. ((((dev)->hard_header_len+(dev)->needed_headroom)&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
  246. #define LL_RESERVED_SPACE_EXTRA(dev,extra) \
  247. ((((dev)->hard_header_len+(dev)->needed_headroom+(extra))&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
  248. struct header_ops {
  249. int (*create) (struct sk_buff *skb, struct net_device *dev,
  250. unsigned short type, const void *daddr,
  251. const void *saddr, unsigned len);
  252. int (*parse)(const struct sk_buff *skb, unsigned char *haddr);
  253. int (*rebuild)(struct sk_buff *skb);
  254. int (*cache)(const struct neighbour *neigh, struct hh_cache *hh, __be16 type);
  255. void (*cache_update)(struct hh_cache *hh,
  256. const struct net_device *dev,
  257. const unsigned char *haddr);
  258. };
  259. /* These flag bits are private to the generic network queueing
  260. * layer, they may not be explicitly referenced by any other
  261. * code.
  262. */
  263. enum netdev_state_t {
  264. __LINK_STATE_START,
  265. __LINK_STATE_PRESENT,
  266. __LINK_STATE_NOCARRIER,
  267. __LINK_STATE_LINKWATCH_PENDING,
  268. __LINK_STATE_DORMANT,
  269. };
  270. /*
  271. * This structure holds at boot time configured netdevice settings. They
  272. * are then used in the device probing.
  273. */
  274. struct netdev_boot_setup {
  275. char name[IFNAMSIZ];
  276. struct ifmap map;
  277. };
  278. #define NETDEV_BOOT_SETUP_MAX 8
  279. extern int __init netdev_boot_setup(char *str);
  280. /*
  281. * Structure for NAPI scheduling similar to tasklet but with weighting
  282. */
  283. struct napi_struct {
  284. /* The poll_list must only be managed by the entity which
  285. * changes the state of the NAPI_STATE_SCHED bit. This means
  286. * whoever atomically sets that bit can add this napi_struct
  287. * to the per-cpu poll_list, and whoever clears that bit
  288. * can remove from the list right before clearing the bit.
  289. */
  290. struct list_head poll_list;
  291. unsigned long state;
  292. int weight;
  293. int (*poll)(struct napi_struct *, int);
  294. #ifdef CONFIG_NETPOLL
  295. spinlock_t poll_lock;
  296. int poll_owner;
  297. #endif
  298. unsigned int gro_count;
  299. struct net_device *dev;
  300. struct list_head dev_list;
  301. struct sk_buff *gro_list;
  302. struct sk_buff *skb;
  303. };
  304. enum {
  305. NAPI_STATE_SCHED, /* Poll is scheduled */
  306. NAPI_STATE_DISABLE, /* Disable pending */
  307. NAPI_STATE_NPSVC, /* Netpoll - don't dequeue from poll_list */
  308. };
  309. enum gro_result {
  310. GRO_MERGED,
  311. GRO_MERGED_FREE,
  312. GRO_HELD,
  313. GRO_NORMAL,
  314. GRO_DROP,
  315. };
  316. typedef enum gro_result gro_result_t;
  317. /*
  318. * enum rx_handler_result - Possible return values for rx_handlers.
  319. * @RX_HANDLER_CONSUMED: skb was consumed by rx_handler, do not process it
  320. * further.
  321. * @RX_HANDLER_ANOTHER: Do another round in receive path. This is indicated in
  322. * case skb->dev was changed by rx_handler.
  323. * @RX_HANDLER_EXACT: Force exact delivery, no wildcard.
  324. * @RX_HANDLER_PASS: Do nothing, passe the skb as if no rx_handler was called.
  325. *
  326. * rx_handlers are functions called from inside __netif_receive_skb(), to do
  327. * special processing of the skb, prior to delivery to protocol handlers.
  328. *
  329. * Currently, a net_device can only have a single rx_handler registered. Trying
  330. * to register a second rx_handler will return -EBUSY.
  331. *
  332. * To register a rx_handler on a net_device, use netdev_rx_handler_register().
  333. * To unregister a rx_handler on a net_device, use
  334. * netdev_rx_handler_unregister().
  335. *
  336. * Upon return, rx_handler is expected to tell __netif_receive_skb() what to
  337. * do with the skb.
  338. *
  339. * If the rx_handler consumed to skb in some way, it should return
  340. * RX_HANDLER_CONSUMED. This is appropriate when the rx_handler arranged for
  341. * the skb to be delivered in some other ways.
  342. *
  343. * If the rx_handler changed skb->dev, to divert the skb to another
  344. * net_device, it should return RX_HANDLER_ANOTHER. The rx_handler for the
  345. * new device will be called if it exists.
  346. *
  347. * If the rx_handler consider the skb should be ignored, it should return
  348. * RX_HANDLER_EXACT. The skb will only be delivered to protocol handlers that
  349. * are registred on exact device (ptype->dev == skb->dev).
  350. *
  351. * If the rx_handler didn't changed skb->dev, but want the skb to be normally
  352. * delivered, it should return RX_HANDLER_PASS.
  353. *
  354. * A device without a registered rx_handler will behave as if rx_handler
  355. * returned RX_HANDLER_PASS.
  356. */
  357. enum rx_handler_result {
  358. RX_HANDLER_CONSUMED,
  359. RX_HANDLER_ANOTHER,
  360. RX_HANDLER_EXACT,
  361. RX_HANDLER_PASS,
  362. };
  363. typedef enum rx_handler_result rx_handler_result_t;
  364. typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **pskb);
  365. extern void __napi_schedule(struct napi_struct *n);
  366. static inline int napi_disable_pending(struct napi_struct *n)
  367. {
  368. return test_bit(NAPI_STATE_DISABLE, &n->state);
  369. }
  370. /**
  371. * napi_schedule_prep - check if napi can be scheduled
  372. * @n: napi context
  373. *
  374. * Test if NAPI routine is already running, and if not mark
  375. * it as running. This is used as a condition variable
  376. * insure only one NAPI poll instance runs. We also make
  377. * sure there is no pending NAPI disable.
  378. */
  379. static inline int napi_schedule_prep(struct napi_struct *n)
  380. {
  381. return !napi_disable_pending(n) &&
  382. !test_and_set_bit(NAPI_STATE_SCHED, &n->state);
  383. }
  384. /**
  385. * napi_schedule - schedule NAPI poll
  386. * @n: napi context
  387. *
  388. * Schedule NAPI poll routine to be called if it is not already
  389. * running.
  390. */
  391. static inline void napi_schedule(struct napi_struct *n)
  392. {
  393. if (napi_schedule_prep(n))
  394. __napi_schedule(n);
  395. }
  396. /* Try to reschedule poll. Called by dev->poll() after napi_complete(). */
  397. static inline int napi_reschedule(struct napi_struct *napi)
  398. {
  399. if (napi_schedule_prep(napi)) {
  400. __napi_schedule(napi);
  401. return 1;
  402. }
  403. return 0;
  404. }
  405. /**
  406. * napi_complete - NAPI processing complete
  407. * @n: napi context
  408. *
  409. * Mark NAPI processing as complete.
  410. */
  411. extern void __napi_complete(struct napi_struct *n);
  412. extern void napi_complete(struct napi_struct *n);
  413. /**
  414. * napi_disable - prevent NAPI from scheduling
  415. * @n: napi context
  416. *
  417. * Stop NAPI from being scheduled on this context.
  418. * Waits till any outstanding processing completes.
  419. */
  420. static inline void napi_disable(struct napi_struct *n)
  421. {
  422. set_bit(NAPI_STATE_DISABLE, &n->state);
  423. while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
  424. msleep(1);
  425. clear_bit(NAPI_STATE_DISABLE, &n->state);
  426. }
  427. /**
  428. * napi_enable - enable NAPI scheduling
  429. * @n: napi context
  430. *
  431. * Resume NAPI from being scheduled on this context.
  432. * Must be paired with napi_disable.
  433. */
  434. static inline void napi_enable(struct napi_struct *n)
  435. {
  436. BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
  437. smp_mb__before_clear_bit();
  438. clear_bit(NAPI_STATE_SCHED, &n->state);
  439. }
  440. #ifdef CONFIG_SMP
  441. /**
  442. * napi_synchronize - wait until NAPI is not running
  443. * @n: napi context
  444. *
  445. * Wait until NAPI is done being scheduled on this context.
  446. * Waits till any outstanding processing completes but
  447. * does not disable future activations.
  448. */
  449. static inline void napi_synchronize(const struct napi_struct *n)
  450. {
  451. while (test_bit(NAPI_STATE_SCHED, &n->state))
  452. msleep(1);
  453. }
  454. #else
  455. # define napi_synchronize(n) barrier()
  456. #endif
  457. enum netdev_queue_state_t {
  458. __QUEUE_STATE_DRV_XOFF,
  459. __QUEUE_STATE_STACK_XOFF,
  460. __QUEUE_STATE_FROZEN,
  461. #define QUEUE_STATE_ANY_XOFF ((1 << __QUEUE_STATE_DRV_XOFF) | \
  462. (1 << __QUEUE_STATE_STACK_XOFF))
  463. #define QUEUE_STATE_ANY_XOFF_OR_FROZEN (QUEUE_STATE_ANY_XOFF | \
  464. (1 << __QUEUE_STATE_FROZEN))
  465. };
  466. /*
  467. * __QUEUE_STATE_DRV_XOFF is used by drivers to stop the transmit queue. The
  468. * netif_tx_* functions below are used to manipulate this flag. The
  469. * __QUEUE_STATE_STACK_XOFF flag is used by the stack to stop the transmit
  470. * queue independently. The netif_xmit_*stopped functions below are called
  471. * to check if the queue has been stopped by the driver or stack (either
  472. * of the XOFF bits are set in the state). Drivers should not need to call
  473. * netif_xmit*stopped functions, they should only be using netif_tx_*.
  474. */
  475. struct netdev_queue {
  476. /*
  477. * read mostly part
  478. */
  479. struct net_device *dev;
  480. struct Qdisc *qdisc;
  481. unsigned long state;
  482. struct Qdisc *qdisc_sleeping;
  483. #ifdef CONFIG_SYSFS
  484. struct kobject kobj;
  485. #endif
  486. #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
  487. int numa_node;
  488. #endif
  489. /*
  490. * write mostly part
  491. */
  492. spinlock_t _xmit_lock ____cacheline_aligned_in_smp;
  493. int xmit_lock_owner;
  494. /*
  495. * please use this field instead of dev->trans_start
  496. */
  497. unsigned long trans_start;
  498. /*
  499. * Number of TX timeouts for this queue
  500. * (/sys/class/net/DEV/Q/trans_timeout)
  501. */
  502. unsigned long trans_timeout;
  503. } ____cacheline_aligned_in_smp;
  504. static inline int netdev_queue_numa_node_read(const struct netdev_queue *q)
  505. {
  506. #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
  507. return q->numa_node;
  508. #else
  509. return NUMA_NO_NODE;
  510. #endif
  511. }
  512. static inline void netdev_queue_numa_node_write(struct netdev_queue *q, int node)
  513. {
  514. #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
  515. q->numa_node = node;
  516. #endif
  517. }
  518. #ifdef CONFIG_RPS
  519. /*
  520. * This structure holds an RPS map which can be of variable length. The
  521. * map is an array of CPUs.
  522. */
  523. struct rps_map {
  524. unsigned int len;
  525. struct rcu_head rcu;
  526. u16 cpus[0];
  527. };
  528. #define RPS_MAP_SIZE(_num) (sizeof(struct rps_map) + (_num * sizeof(u16)))
  529. /*
  530. * The rps_dev_flow structure contains the mapping of a flow to a CPU, the
  531. * tail pointer for that CPU's input queue at the time of last enqueue, and
  532. * a hardware filter index.
  533. */
  534. struct rps_dev_flow {
  535. u16 cpu;
  536. u16 filter;
  537. unsigned int last_qtail;
  538. };
  539. #define RPS_NO_FILTER 0xffff
  540. /*
  541. * The rps_dev_flow_table structure contains a table of flow mappings.
  542. */
  543. struct rps_dev_flow_table {
  544. unsigned int mask;
  545. struct rcu_head rcu;
  546. struct work_struct free_work;
  547. struct rps_dev_flow flows[0];
  548. };
  549. #define RPS_DEV_FLOW_TABLE_SIZE(_num) (sizeof(struct rps_dev_flow_table) + \
  550. (_num * sizeof(struct rps_dev_flow)))
  551. /*
  552. * The rps_sock_flow_table contains mappings of flows to the last CPU
  553. * on which they were processed by the application (set in recvmsg).
  554. */
  555. struct rps_sock_flow_table {
  556. unsigned int mask;
  557. u16 ents[0];
  558. };
  559. #define RPS_SOCK_FLOW_TABLE_SIZE(_num) (sizeof(struct rps_sock_flow_table) + \
  560. (_num * sizeof(u16)))
  561. #define RPS_NO_CPU 0xffff
  562. static inline void rps_record_sock_flow(struct rps_sock_flow_table *table,
  563. u32 hash)
  564. {
  565. if (table && hash) {
  566. unsigned int cpu, index = hash & table->mask;
  567. /* We only give a hint, preemption can change cpu under us */
  568. cpu = raw_smp_processor_id();
  569. if (table->ents[index] != cpu)
  570. table->ents[index] = cpu;
  571. }
  572. }
  573. static inline void rps_reset_sock_flow(struct rps_sock_flow_table *table,
  574. u32 hash)
  575. {
  576. if (table && hash)
  577. table->ents[hash & table->mask] = RPS_NO_CPU;
  578. }
  579. extern struct rps_sock_flow_table __rcu *rps_sock_flow_table;
  580. #ifdef CONFIG_RFS_ACCEL
  581. extern bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
  582. u32 flow_id, u16 filter_id);
  583. #endif
  584. /* This structure contains an instance of an RX queue. */
  585. struct netdev_rx_queue {
  586. struct rps_map __rcu *rps_map;
  587. struct rps_dev_flow_table __rcu *rps_flow_table;
  588. struct kobject kobj;
  589. struct net_device *dev;
  590. } ____cacheline_aligned_in_smp;
  591. #endif /* CONFIG_RPS */
  592. #ifdef CONFIG_XPS
  593. /*
  594. * This structure holds an XPS map which can be of variable length. The
  595. * map is an array of queues.
  596. */
  597. struct xps_map {
  598. unsigned int len;
  599. unsigned int alloc_len;
  600. struct rcu_head rcu;
  601. u16 queues[0];
  602. };
  603. #define XPS_MAP_SIZE(_num) (sizeof(struct xps_map) + (_num * sizeof(u16)))
  604. #define XPS_MIN_MAP_ALLOC ((L1_CACHE_BYTES - sizeof(struct xps_map)) \
  605. / sizeof(u16))
  606. /*
  607. * This structure holds all XPS maps for device. Maps are indexed by CPU.
  608. */
  609. struct xps_dev_maps {
  610. struct rcu_head rcu;
  611. struct xps_map __rcu *cpu_map[0];
  612. };
  613. #define XPS_DEV_MAPS_SIZE (sizeof(struct xps_dev_maps) + \
  614. (nr_cpu_ids * sizeof(struct xps_map *)))
  615. #endif /* CONFIG_XPS */
  616. #define TC_MAX_QUEUE 16
  617. #define TC_BITMASK 15
  618. /* HW offloaded queuing disciplines txq count and offset maps */
  619. struct netdev_tc_txq {
  620. u16 count;
  621. u16 offset;
  622. };
  623. /*
  624. * This structure defines the management hooks for network devices.
  625. * The following hooks can be defined; unless noted otherwise, they are
  626. * optional and can be filled with a null pointer.
  627. *
  628. * int (*ndo_init)(struct net_device *dev);
  629. * This function is called once when network device is registered.
  630. * The network device can use this to any late stage initializaton
  631. * or semantic validattion. It can fail with an error code which will
  632. * be propogated back to register_netdev
  633. *
  634. * void (*ndo_uninit)(struct net_device *dev);
  635. * This function is called when device is unregistered or when registration
  636. * fails. It is not called if init fails.
  637. *
  638. * int (*ndo_open)(struct net_device *dev);
  639. * This function is called when network device transistions to the up
  640. * state.
  641. *
  642. * int (*ndo_stop)(struct net_device *dev);
  643. * This function is called when network device transistions to the down
  644. * state.
  645. *
  646. * netdev_tx_t (*ndo_start_xmit)(struct sk_buff *skb,
  647. * struct net_device *dev);
  648. * Called when a packet needs to be transmitted.
  649. * Must return NETDEV_TX_OK , NETDEV_TX_BUSY.
  650. * (can also return NETDEV_TX_LOCKED iff NETIF_F_LLTX)
  651. * Required can not be NULL.
  652. *
  653. * u16 (*ndo_select_queue)(struct net_device *dev, struct sk_buff *skb);
  654. * Called to decide which queue to when device supports multiple
  655. * transmit queues.
  656. *
  657. * void (*ndo_change_rx_flags)(struct net_device *dev, int flags);
  658. * This function is called to allow device receiver to make
  659. * changes to configuration when multicast or promiscious is enabled.
  660. *
  661. * void (*ndo_set_rx_mode)(struct net_device *dev);
  662. * This function is called device changes address list filtering.
  663. * If driver handles unicast address filtering, it should set
  664. * IFF_UNICAST_FLT to its priv_flags.
  665. *
  666. * int (*ndo_set_mac_address)(struct net_device *dev, void *addr);
  667. * This function is called when the Media Access Control address
  668. * needs to be changed. If this interface is not defined, the
  669. * mac address can not be changed.
  670. *
  671. * int (*ndo_validate_addr)(struct net_device *dev);
  672. * Test if Media Access Control address is valid for the device.
  673. *
  674. * int (*ndo_do_ioctl)(struct net_device *dev, struct ifreq *ifr, int cmd);
  675. * Called when a user request an ioctl which can't be handled by
  676. * the generic interface code. If not defined ioctl's return
  677. * not supported error code.
  678. *
  679. * int (*ndo_set_config)(struct net_device *dev, struct ifmap *map);
  680. * Used to set network devices bus interface parameters. This interface
  681. * is retained for legacy reason, new devices should use the bus
  682. * interface (PCI) for low level management.
  683. *
  684. * int (*ndo_change_mtu)(struct net_device *dev, int new_mtu);
  685. * Called when a user wants to change the Maximum Transfer Unit
  686. * of a device. If not defined, any request to change MTU will
  687. * will return an error.
  688. *
  689. * void (*ndo_tx_timeout)(struct net_device *dev);
  690. * Callback uses when the transmitter has not made any progress
  691. * for dev->watchdog ticks.
  692. *
  693. * struct rtnl_link_stats64* (*ndo_get_stats64)(struct net_device *dev,
  694. * struct rtnl_link_stats64 *storage);
  695. * struct net_device_stats* (*ndo_get_stats)(struct net_device *dev);
  696. * Called when a user wants to get the network device usage
  697. * statistics. Drivers must do one of the following:
  698. * 1. Define @ndo_get_stats64 to fill in a zero-initialised
  699. * rtnl_link_stats64 structure passed by the caller.
  700. * 2. Define @ndo_get_stats to update a net_device_stats structure
  701. * (which should normally be dev->stats) and return a pointer to
  702. * it. The structure may be changed asynchronously only if each
  703. * field is written atomically.
  704. * 3. Update dev->stats asynchronously and atomically, and define
  705. * neither operation.
  706. *
  707. * void (*ndo_vlan_rx_add_vid)(struct net_device *dev, unsigned short vid);
  708. * If device support VLAN filtering (dev->features & NETIF_F_HW_VLAN_FILTER)
  709. * this function is called when a VLAN id is registered.
  710. *
  711. * void (*ndo_vlan_rx_kill_vid)(struct net_device *dev, unsigned short vid);
  712. * If device support VLAN filtering (dev->features & NETIF_F_HW_VLAN_FILTER)
  713. * this function is called when a VLAN id is unregistered.
  714. *
  715. * void (*ndo_poll_controller)(struct net_device *dev);
  716. *
  717. * SR-IOV management functions.
  718. * int (*ndo_set_vf_mac)(struct net_device *dev, int vf, u8* mac);
  719. * int (*ndo_set_vf_vlan)(struct net_device *dev, int vf, u16 vlan, u8 qos);
  720. * int (*ndo_set_vf_tx_rate)(struct net_device *dev, int vf, int rate);
  721. * int (*ndo_set_vf_spoofchk)(struct net_device *dev, int vf, bool setting);
  722. * int (*ndo_get_vf_config)(struct net_device *dev,
  723. * int vf, struct ifla_vf_info *ivf);
  724. * int (*ndo_set_vf_port)(struct net_device *dev, int vf,
  725. * struct nlattr *port[]);
  726. * int (*ndo_get_vf_port)(struct net_device *dev, int vf, struct sk_buff *skb);
  727. * int (*ndo_setup_tc)(struct net_device *dev, u8 tc)
  728. * Called to setup 'tc' number of traffic classes in the net device. This
  729. * is always called from the stack with the rtnl lock held and netif tx
  730. * queues stopped. This allows the netdevice to perform queue management
  731. * safely.
  732. *
  733. * Fiber Channel over Ethernet (FCoE) offload functions.
  734. * int (*ndo_fcoe_enable)(struct net_device *dev);
  735. * Called when the FCoE protocol stack wants to start using LLD for FCoE
  736. * so the underlying device can perform whatever needed configuration or
  737. * initialization to support acceleration of FCoE traffic.
  738. *
  739. * int (*ndo_fcoe_disable)(struct net_device *dev);
  740. * Called when the FCoE protocol stack wants to stop using LLD for FCoE
  741. * so the underlying device can perform whatever needed clean-ups to
  742. * stop supporting acceleration of FCoE traffic.
  743. *
  744. * int (*ndo_fcoe_ddp_setup)(struct net_device *dev, u16 xid,
  745. * struct scatterlist *sgl, unsigned int sgc);
  746. * Called when the FCoE Initiator wants to initialize an I/O that
  747. * is a possible candidate for Direct Data Placement (DDP). The LLD can
  748. * perform necessary setup and returns 1 to indicate the device is set up
  749. * successfully to perform DDP on this I/O, otherwise this returns 0.
  750. *
  751. * int (*ndo_fcoe_ddp_done)(struct net_device *dev, u16 xid);
  752. * Called when the FCoE Initiator/Target is done with the DDPed I/O as
  753. * indicated by the FC exchange id 'xid', so the underlying device can
  754. * clean up and reuse resources for later DDP requests.
  755. *
  756. * int (*ndo_fcoe_ddp_target)(struct net_device *dev, u16 xid,
  757. * struct scatterlist *sgl, unsigned int sgc);
  758. * Called when the FCoE Target wants to initialize an I/O that
  759. * is a possible candidate for Direct Data Placement (DDP). The LLD can
  760. * perform necessary setup and returns 1 to indicate the device is set up
  761. * successfully to perform DDP on this I/O, otherwise this returns 0.
  762. *
  763. * int (*ndo_fcoe_get_wwn)(struct net_device *dev, u64 *wwn, int type);
  764. * Called when the underlying device wants to override default World Wide
  765. * Name (WWN) generation mechanism in FCoE protocol stack to pass its own
  766. * World Wide Port Name (WWPN) or World Wide Node Name (WWNN) to the FCoE
  767. * protocol stack to use.
  768. *
  769. * RFS acceleration.
  770. * int (*ndo_rx_flow_steer)(struct net_device *dev, const struct sk_buff *skb,
  771. * u16 rxq_index, u32 flow_id);
  772. * Set hardware filter for RFS. rxq_index is the target queue index;
  773. * flow_id is a flow ID to be passed to rps_may_expire_flow() later.
  774. * Return the filter ID on success, or a negative error code.
  775. *
  776. * Slave management functions (for bridge, bonding, etc). User should
  777. * call netdev_set_master() to set dev->master properly.
  778. * int (*ndo_add_slave)(struct net_device *dev, struct net_device *slave_dev);
  779. * Called to make another netdev an underling.
  780. *
  781. * int (*ndo_del_slave)(struct net_device *dev, struct net_device *slave_dev);
  782. * Called to release previously enslaved netdev.
  783. *
  784. * Feature/offload setting functions.
  785. * netdev_features_t (*ndo_fix_features)(struct net_device *dev,
  786. * netdev_features_t features);
  787. * Adjusts the requested feature flags according to device-specific
  788. * constraints, and returns the resulting flags. Must not modify
  789. * the device state.
  790. *
  791. * int (*ndo_set_features)(struct net_device *dev, netdev_features_t features);
  792. * Called to update device configuration to new features. Passed
  793. * feature set might be less than what was returned by ndo_fix_features()).
  794. * Must return >0 or -errno if it changed dev->features itself.
  795. *
  796. */
  797. struct net_device_ops {
  798. int (*ndo_init)(struct net_device *dev);
  799. void (*ndo_uninit)(struct net_device *dev);
  800. int (*ndo_open)(struct net_device *dev);
  801. int (*ndo_stop)(struct net_device *dev);
  802. netdev_tx_t (*ndo_start_xmit) (struct sk_buff *skb,
  803. struct net_device *dev);
  804. u16 (*ndo_select_queue)(struct net_device *dev,
  805. struct sk_buff *skb);
  806. void (*ndo_change_rx_flags)(struct net_device *dev,
  807. int flags);
  808. void (*ndo_set_rx_mode)(struct net_device *dev);
  809. int (*ndo_set_mac_address)(struct net_device *dev,
  810. void *addr);
  811. int (*ndo_validate_addr)(struct net_device *dev);
  812. int (*ndo_do_ioctl)(struct net_device *dev,
  813. struct ifreq *ifr, int cmd);
  814. int (*ndo_set_config)(struct net_device *dev,
  815. struct ifmap *map);
  816. int (*ndo_change_mtu)(struct net_device *dev,
  817. int new_mtu);
  818. int (*ndo_neigh_setup)(struct net_device *dev,
  819. struct neigh_parms *);
  820. void (*ndo_tx_timeout) (struct net_device *dev);
  821. struct rtnl_link_stats64* (*ndo_get_stats64)(struct net_device *dev,
  822. struct rtnl_link_stats64 *storage);
  823. struct net_device_stats* (*ndo_get_stats)(struct net_device *dev);
  824. void (*ndo_vlan_rx_add_vid)(struct net_device *dev,
  825. unsigned short vid);
  826. void (*ndo_vlan_rx_kill_vid)(struct net_device *dev,
  827. unsigned short vid);
  828. #ifdef CONFIG_NET_POLL_CONTROLLER
  829. void (*ndo_poll_controller)(struct net_device *dev);
  830. int (*ndo_netpoll_setup)(struct net_device *dev,
  831. struct netpoll_info *info);
  832. void (*ndo_netpoll_cleanup)(struct net_device *dev);
  833. #endif
  834. int (*ndo_set_vf_mac)(struct net_device *dev,
  835. int queue, u8 *mac);
  836. int (*ndo_set_vf_vlan)(struct net_device *dev,
  837. int queue, u16 vlan, u8 qos);
  838. int (*ndo_set_vf_tx_rate)(struct net_device *dev,
  839. int vf, int rate);
  840. int (*ndo_set_vf_spoofchk)(struct net_device *dev,
  841. int vf, bool setting);
  842. int (*ndo_get_vf_config)(struct net_device *dev,
  843. int vf,
  844. struct ifla_vf_info *ivf);
  845. int (*ndo_set_vf_port)(struct net_device *dev,
  846. int vf,
  847. struct nlattr *port[]);
  848. int (*ndo_get_vf_port)(struct net_device *dev,
  849. int vf, struct sk_buff *skb);
  850. int (*ndo_setup_tc)(struct net_device *dev, u8 tc);
  851. #if IS_ENABLED(CONFIG_FCOE)
  852. int (*ndo_fcoe_enable)(struct net_device *dev);
  853. int (*ndo_fcoe_disable)(struct net_device *dev);
  854. int (*ndo_fcoe_ddp_setup)(struct net_device *dev,
  855. u16 xid,
  856. struct scatterlist *sgl,
  857. unsigned int sgc);
  858. int (*ndo_fcoe_ddp_done)(struct net_device *dev,
  859. u16 xid);
  860. int (*ndo_fcoe_ddp_target)(struct net_device *dev,
  861. u16 xid,
  862. struct scatterlist *sgl,
  863. unsigned int sgc);
  864. #endif
  865. #if IS_ENABLED(CONFIG_LIBFCOE)
  866. #define NETDEV_FCOE_WWNN 0
  867. #define NETDEV_FCOE_WWPN 1
  868. int (*ndo_fcoe_get_wwn)(struct net_device *dev,
  869. u64 *wwn, int type);
  870. #endif
  871. #ifdef CONFIG_RFS_ACCEL
  872. int (*ndo_rx_flow_steer)(struct net_device *dev,
  873. const struct sk_buff *skb,
  874. u16 rxq_index,
  875. u32 flow_id);
  876. #endif
  877. int (*ndo_add_slave)(struct net_device *dev,
  878. struct net_device *slave_dev);
  879. int (*ndo_del_slave)(struct net_device *dev,
  880. struct net_device *slave_dev);
  881. netdev_features_t (*ndo_fix_features)(struct net_device *dev,
  882. netdev_features_t features);
  883. int (*ndo_set_features)(struct net_device *dev,
  884. netdev_features_t features);
  885. };
  886. /*
  887. * The DEVICE structure.
  888. * Actually, this whole structure is a big mistake. It mixes I/O
  889. * data with strictly "high-level" data, and it has to know about
  890. * almost every data structure used in the INET module.
  891. *
  892. * FIXME: cleanup struct net_device such that network protocol info
  893. * moves out.
  894. */
  895. struct net_device {
  896. /*
  897. * This is the first field of the "visible" part of this structure
  898. * (i.e. as seen by users in the "Space.c" file). It is the name
  899. * of the interface.
  900. */
  901. char name[IFNAMSIZ];
  902. struct pm_qos_request pm_qos_req;
  903. /* device name hash chain */
  904. struct hlist_node name_hlist;
  905. /* snmp alias */
  906. char *ifalias;
  907. /*
  908. * I/O specific fields
  909. * FIXME: Merge these and struct ifmap into one
  910. */
  911. unsigned long mem_end; /* shared mem end */
  912. unsigned long mem_start; /* shared mem start */
  913. unsigned long base_addr; /* device I/O address */
  914. unsigned int irq; /* device IRQ number */
  915. /*
  916. * Some hardware also needs these fields, but they are not
  917. * part of the usual set specified in Space.c.
  918. */
  919. unsigned long state;
  920. struct list_head dev_list;
  921. struct list_head napi_list;
  922. struct list_head unreg_list;
  923. /* currently active device features */
  924. netdev_features_t features;
  925. /* user-changeable features */
  926. netdev_features_t hw_features;
  927. /* user-requested features */
  928. netdev_features_t wanted_features;
  929. /* mask of features inheritable by VLAN devices */
  930. netdev_features_t vlan_features;
  931. /* Interface index. Unique device identifier */
  932. int ifindex;
  933. int iflink;
  934. struct net_device_stats stats;
  935. atomic_long_t rx_dropped; /* dropped packets by core network
  936. * Do not use this in drivers.
  937. */
  938. #ifdef CONFIG_WIRELESS_EXT
  939. /* List of functions to handle Wireless Extensions (instead of ioctl).
  940. * See <net/iw_handler.h> for details. Jean II */
  941. const struct iw_handler_def * wireless_handlers;
  942. /* Instance data managed by the core of Wireless Extensions. */
  943. struct iw_public_data * wireless_data;
  944. #endif
  945. /* Management operations */
  946. const struct net_device_ops *netdev_ops;
  947. const struct ethtool_ops *ethtool_ops;
  948. /* Hardware header description */
  949. const struct header_ops *header_ops;
  950. unsigned int flags; /* interface flags (a la BSD) */
  951. unsigned int priv_flags; /* Like 'flags' but invisible to userspace. */
  952. unsigned short gflags;
  953. unsigned short padded; /* How much padding added by alloc_netdev() */
  954. unsigned char operstate; /* RFC2863 operstate */
  955. unsigned char link_mode; /* mapping policy to operstate */
  956. unsigned char if_port; /* Selectable AUI, TP,..*/
  957. unsigned char dma; /* DMA channel */
  958. unsigned int mtu; /* interface MTU value */
  959. unsigned short type; /* interface hardware type */
  960. unsigned short hard_header_len; /* hardware hdr length */
  961. /* extra head- and tailroom the hardware may need, but not in all cases
  962. * can this be guaranteed, especially tailroom. Some cases also use
  963. * LL_MAX_HEADER instead to allocate the skb.
  964. */
  965. unsigned short needed_headroom;
  966. unsigned short needed_tailroom;
  967. /* Interface address info. */
  968. unsigned char perm_addr[MAX_ADDR_LEN]; /* permanent hw address */
  969. unsigned char addr_assign_type; /* hw address assignment type */
  970. unsigned char addr_len; /* hardware address length */
  971. unsigned short dev_id; /* for shared network cards */
  972. spinlock_t addr_list_lock;
  973. struct netdev_hw_addr_list uc; /* Unicast mac addresses */
  974. struct netdev_hw_addr_list mc; /* Multicast mac addresses */
  975. bool uc_promisc;
  976. unsigned int promiscuity;
  977. unsigned int allmulti;
  978. /* Protocol specific pointers */
  979. #if IS_ENABLED(CONFIG_VLAN_8021Q)
  980. struct vlan_group __rcu *vlgrp; /* VLAN group */
  981. #endif
  982. #if IS_ENABLED(CONFIG_NET_DSA)
  983. struct dsa_switch_tree *dsa_ptr; /* dsa specific data */
  984. #endif
  985. void *atalk_ptr; /* AppleTalk link */
  986. struct in_device __rcu *ip_ptr; /* IPv4 specific data */
  987. struct dn_dev __rcu *dn_ptr; /* DECnet specific data */
  988. struct inet6_dev __rcu *ip6_ptr; /* IPv6 specific data */
  989. void *ec_ptr; /* Econet specific data */
  990. void *ax25_ptr; /* AX.25 specific data */
  991. struct wireless_dev *ieee80211_ptr; /* IEEE 802.11 specific data,
  992. assign before registering */
  993. /*
  994. * Cache lines mostly used on receive path (including eth_type_trans())
  995. */
  996. unsigned long last_rx; /* Time of last Rx
  997. * This should not be set in
  998. * drivers, unless really needed,
  999. * because network stack (bonding)
  1000. * use it if/when necessary, to
  1001. * avoid dirtying this cache line.
  1002. */
  1003. struct net_device *master; /* Pointer to master device of a group,
  1004. * which this device is member of.
  1005. */
  1006. /* Interface address info used in eth_type_trans() */
  1007. unsigned char *dev_addr; /* hw address, (before bcast
  1008. because most packets are
  1009. unicast) */
  1010. struct netdev_hw_addr_list dev_addrs; /* list of device
  1011. hw addresses */
  1012. unsigned char broadcast[MAX_ADDR_LEN]; /* hw bcast add */
  1013. #ifdef CONFIG_SYSFS
  1014. struct kset *queues_kset;
  1015. #endif
  1016. #ifdef CONFIG_RPS
  1017. struct netdev_rx_queue *_rx;
  1018. /* Number of RX queues allocated at register_netdev() time */
  1019. unsigned int num_rx_queues;
  1020. /* Number of RX queues currently active in device */
  1021. unsigned int real_num_rx_queues;
  1022. #ifdef CONFIG_RFS_ACCEL
  1023. /* CPU reverse-mapping for RX completion interrupts, indexed
  1024. * by RX queue number. Assigned by driver. This must only be
  1025. * set if the ndo_rx_flow_steer operation is defined. */
  1026. struct cpu_rmap *rx_cpu_rmap;
  1027. #endif
  1028. #endif
  1029. rx_handler_func_t __rcu *rx_handler;
  1030. void __rcu *rx_handler_data;
  1031. struct netdev_queue __rcu *ingress_queue;
  1032. /*
  1033. * Cache lines mostly used on transmit path
  1034. */
  1035. struct netdev_queue *_tx ____cacheline_aligned_in_smp;
  1036. /* Number of TX queues allocated at alloc_netdev_mq() time */
  1037. unsigned int num_tx_queues;
  1038. /* Number of TX queues currently active in device */
  1039. unsigned int real_num_tx_queues;
  1040. /* root qdisc from userspace point of view */
  1041. struct Qdisc *qdisc;
  1042. unsigned long tx_queue_len; /* Max frames per queue allowed */
  1043. spinlock_t tx_global_lock;
  1044. #ifdef CONFIG_XPS
  1045. struct xps_dev_maps __rcu *xps_maps;
  1046. #endif
  1047. /* These may be needed for future network-power-down code. */
  1048. /*
  1049. * trans_start here is expensive for high speed devices on SMP,
  1050. * please use netdev_queue->trans_start instead.
  1051. */
  1052. unsigned long trans_start; /* Time (in jiffies) of last Tx */
  1053. int watchdog_timeo; /* used by dev_watchdog() */
  1054. struct timer_list watchdog_timer;
  1055. /* Number of references to this device */
  1056. int __percpu *pcpu_refcnt;
  1057. /* delayed register/unregister */
  1058. struct list_head todo_list;
  1059. /* device index hash chain */
  1060. struct hlist_node index_hlist;
  1061. struct list_head link_watch_list;
  1062. /* register/unregister state machine */
  1063. enum { NETREG_UNINITIALIZED=0,
  1064. NETREG_REGISTERED, /* completed register_netdevice */
  1065. NETREG_UNREGISTERING, /* called unregister_netdevice */
  1066. NETREG_UNREGISTERED, /* completed unregister todo */
  1067. NETREG_RELEASED, /* called free_netdev */
  1068. NETREG_DUMMY, /* dummy device for NAPI poll */
  1069. } reg_state:8;
  1070. bool dismantle; /* device is going do be freed */
  1071. enum {
  1072. RTNL_LINK_INITIALIZED,
  1073. RTNL_LINK_INITIALIZING,
  1074. } rtnl_link_state:16;
  1075. /* Called from unregister, can be used to call free_netdev */
  1076. void (*destructor)(struct net_device *dev);
  1077. #ifdef CONFIG_NETPOLL
  1078. struct netpoll_info *npinfo;
  1079. #endif
  1080. #ifdef CONFIG_NET_NS
  1081. /* Network namespace this network device is inside */
  1082. struct net *nd_net;
  1083. #endif
  1084. /* mid-layer private */
  1085. union {
  1086. void *ml_priv;
  1087. struct pcpu_lstats __percpu *lstats; /* loopback stats */
  1088. struct pcpu_tstats __percpu *tstats; /* tunnel stats */
  1089. struct pcpu_dstats __percpu *dstats; /* dummy stats */
  1090. };
  1091. /* GARP */
  1092. struct garp_port __rcu *garp_port;
  1093. /* class/net/name entry */
  1094. struct device dev;
  1095. /* space for optional device, statistics, and wireless sysfs groups */
  1096. const struct attribute_group *sysfs_groups[4];
  1097. /* rtnetlink link ops */
  1098. const struct rtnl_link_ops *rtnl_link_ops;
  1099. /* for setting kernel sock attribute on TCP connection setup */
  1100. #define GSO_MAX_SIZE 65536
  1101. unsigned int gso_max_size;
  1102. #ifdef CONFIG_DCB
  1103. /* Data Center Bridging netlink ops */
  1104. const struct dcbnl_rtnl_ops *dcbnl_ops;
  1105. #endif
  1106. u8 num_tc;
  1107. struct netdev_tc_txq tc_to_txq[TC_MAX_QUEUE];
  1108. u8 prio_tc_map[TC_BITMASK + 1];
  1109. #if IS_ENABLED(CONFIG_FCOE)
  1110. /* max exchange id for FCoE LRO by ddp */
  1111. unsigned int fcoe_ddp_xid;
  1112. #endif
  1113. #if IS_ENABLED(CONFIG_NETPRIO_CGROUP)
  1114. struct netprio_map __rcu *priomap;
  1115. #endif
  1116. /* phy device may attach itself for hardware timestamping */
  1117. struct phy_device *phydev;
  1118. /* group the device belongs to */
  1119. int group;
  1120. };
  1121. #define to_net_dev(d) container_of(d, struct net_device, dev)
  1122. #define NETDEV_ALIGN 32
  1123. static inline
  1124. int netdev_get_prio_tc_map(const struct net_device *dev, u32 prio)
  1125. {
  1126. return dev->prio_tc_map[prio & TC_BITMASK];
  1127. }
  1128. static inline
  1129. int netdev_set_prio_tc_map(struct net_device *dev, u8 prio, u8 tc)
  1130. {
  1131. if (tc >= dev->num_tc)
  1132. return -EINVAL;
  1133. dev->prio_tc_map[prio & TC_BITMASK] = tc & TC_BITMASK;
  1134. return 0;
  1135. }
  1136. static inline
  1137. void netdev_reset_tc(struct net_device *dev)
  1138. {
  1139. dev->num_tc = 0;
  1140. memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
  1141. memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
  1142. }
  1143. static inline
  1144. int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
  1145. {
  1146. if (tc >= dev->num_tc)
  1147. return -EINVAL;
  1148. dev->tc_to_txq[tc].count = count;
  1149. dev->tc_to_txq[tc].offset = offset;
  1150. return 0;
  1151. }
  1152. static inline
  1153. int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
  1154. {
  1155. if (num_tc > TC_MAX_QUEUE)
  1156. return -EINVAL;
  1157. dev->num_tc = num_tc;
  1158. return 0;
  1159. }
  1160. static inline
  1161. int netdev_get_num_tc(struct net_device *dev)
  1162. {
  1163. return dev->num_tc;
  1164. }
  1165. static inline
  1166. struct netdev_queue *netdev_get_tx_queue(const struct net_device *dev,
  1167. unsigned int index)
  1168. {
  1169. return &dev->_tx[index];
  1170. }
  1171. static inline void netdev_for_each_tx_queue(struct net_device *dev,
  1172. void (*f)(struct net_device *,
  1173. struct netdev_queue *,
  1174. void *),
  1175. void *arg)
  1176. {
  1177. unsigned int i;
  1178. for (i = 0; i < dev->num_tx_queues; i++)
  1179. f(dev, &dev->_tx[i], arg);
  1180. }
  1181. /*
  1182. * Net namespace inlines
  1183. */
  1184. static inline
  1185. struct net *dev_net(const struct net_device *dev)
  1186. {
  1187. return read_pnet(&dev->nd_net);
  1188. }
  1189. static inline
  1190. void dev_net_set(struct net_device *dev, struct net *net)
  1191. {
  1192. #ifdef CONFIG_NET_NS
  1193. release_net(dev->nd_net);
  1194. dev->nd_net = hold_net(net);
  1195. #endif
  1196. }
  1197. static inline bool netdev_uses_dsa_tags(struct net_device *dev)
  1198. {
  1199. #ifdef CONFIG_NET_DSA_TAG_DSA
  1200. if (dev->dsa_ptr != NULL)
  1201. return dsa_uses_dsa_tags(dev->dsa_ptr);
  1202. #endif
  1203. return 0;
  1204. }
  1205. #ifndef CONFIG_NET_NS
  1206. static inline void skb_set_dev(struct sk_buff *skb, struct net_device *dev)
  1207. {
  1208. skb->dev = dev;
  1209. }
  1210. #else /* CONFIG_NET_NS */
  1211. void skb_set_dev(struct sk_buff *skb, struct net_device *dev);
  1212. #endif
  1213. static inline bool netdev_uses_trailer_tags(struct net_device *dev)
  1214. {
  1215. #ifdef CONFIG_NET_DSA_TAG_TRAILER
  1216. if (dev->dsa_ptr != NULL)
  1217. return dsa_uses_trailer_tags(dev->dsa_ptr);
  1218. #endif
  1219. return 0;
  1220. }
  1221. /**
  1222. * netdev_priv - access network device private data
  1223. * @dev: network device
  1224. *
  1225. * Get network device private data
  1226. */
  1227. static inline void *netdev_priv(const struct net_device *dev)
  1228. {
  1229. return (char *)dev + ALIGN(sizeof(struct net_device), NETDEV_ALIGN);
  1230. }
  1231. /* Set the sysfs physical device reference for the network logical device
  1232. * if set prior to registration will cause a symlink during initialization.
  1233. */
  1234. #define SET_NETDEV_DEV(net, pdev) ((net)->dev.parent = (pdev))
  1235. /* Set the sysfs device type for the network logical device to allow
  1236. * fin grained indentification of different network device types. For
  1237. * example Ethernet, Wirelss LAN, Bluetooth, WiMAX etc.
  1238. */
  1239. #define SET_NETDEV_DEVTYPE(net, devtype) ((net)->dev.type = (devtype))
  1240. /**
  1241. * netif_napi_add - initialize a napi context
  1242. * @dev: network device
  1243. * @napi: napi context
  1244. * @poll: polling function
  1245. * @weight: default weight
  1246. *
  1247. * netif_napi_add() must be used to initialize a napi context prior to calling
  1248. * *any* of the other napi related functions.
  1249. */
  1250. void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
  1251. int (*poll)(struct napi_struct *, int), int weight);
  1252. /**
  1253. * netif_napi_del - remove a napi context
  1254. * @napi: napi context
  1255. *
  1256. * netif_napi_del() removes a napi context from the network device napi list
  1257. */
  1258. void netif_napi_del(struct napi_struct *napi);
  1259. struct napi_gro_cb {
  1260. /* Virtual address of skb_shinfo(skb)->frags[0].page + offset. */
  1261. void *frag0;
  1262. /* Length of frag0. */
  1263. unsigned int frag0_len;
  1264. /* This indicates where we are processing relative to skb->data. */
  1265. int data_offset;
  1266. /* This is non-zero if the packet may be of the same flow. */
  1267. int same_flow;
  1268. /* This is non-zero if the packet cannot be merged with the new skb. */
  1269. int flush;
  1270. /* Number of segments aggregated. */
  1271. int count;
  1272. /* Free the skb? */
  1273. int free;
  1274. };
  1275. #define NAPI_GRO_CB(skb) ((struct napi_gro_cb *)(skb)->cb)
  1276. struct packet_type {
  1277. __be16 type; /* This is really htons(ether_type). */
  1278. struct net_device *dev; /* NULL is wildcarded here */
  1279. int (*func) (struct sk_buff *,
  1280. struct net_device *,
  1281. struct packet_type *,
  1282. struct net_device *);
  1283. struct sk_buff *(*gso_segment)(struct sk_buff *skb,
  1284. netdev_features_t features);
  1285. int (*gso_send_check)(struct sk_buff *skb);
  1286. struct sk_buff **(*gro_receive)(struct sk_buff **head,
  1287. struct sk_buff *skb);
  1288. int (*gro_complete)(struct sk_buff *skb);
  1289. void *af_packet_priv;
  1290. struct list_head list;
  1291. };
  1292. #include <linux/notifier.h>
  1293. /* netdevice notifier chain. Please remember to update the rtnetlink
  1294. * notification exclusion list in rtnetlink_event() when adding new
  1295. * types.
  1296. */
  1297. #define NETDEV_UP 0x0001 /* For now you can't veto a device up/down */
  1298. #define NETDEV_DOWN 0x0002
  1299. #define NETDEV_REBOOT 0x0003 /* Tell a protocol stack a network interface
  1300. detected a hardware crash and restarted
  1301. - we can use this eg to kick tcp sessions
  1302. once done */
  1303. #define NETDEV_CHANGE 0x0004 /* Notify device state change */
  1304. #define NETDEV_REGISTER 0x0005
  1305. #define NETDEV_UNREGISTER 0x0006
  1306. #define NETDEV_CHANGEMTU 0x0007
  1307. #define NETDEV_CHANGEADDR 0x0008
  1308. #define NETDEV_GOING_DOWN 0x0009
  1309. #define NETDEV_CHANGENAME 0x000A
  1310. #define NETDEV_FEAT_CHANGE 0x000B
  1311. #define NETDEV_BONDING_FAILOVER 0x000C
  1312. #define NETDEV_PRE_UP 0x000D
  1313. #define NETDEV_PRE_TYPE_CHANGE 0x000E
  1314. #define NETDEV_POST_TYPE_CHANGE 0x000F
  1315. #define NETDEV_POST_INIT 0x0010
  1316. #define NETDEV_UNREGISTER_BATCH 0x0011
  1317. #define NETDEV_RELEASE 0x0012
  1318. #define NETDEV_NOTIFY_PEERS 0x0013
  1319. #define NETDEV_JOIN 0x0014
  1320. extern int register_netdevice_notifier(struct notifier_block *nb);
  1321. extern int unregister_netdevice_notifier(struct notifier_block *nb);
  1322. extern int call_netdevice_notifiers(unsigned long val, struct net_device *dev);
  1323. extern rwlock_t dev_base_lock; /* Device list lock */
  1324. #define for_each_netdev(net, d) \
  1325. list_for_each_entry(d, &(net)->dev_base_head, dev_list)
  1326. #define for_each_netdev_reverse(net, d) \
  1327. list_for_each_entry_reverse(d, &(net)->dev_base_head, dev_list)
  1328. #define for_each_netdev_rcu(net, d) \
  1329. list_for_each_entry_rcu(d, &(net)->dev_base_head, dev_list)
  1330. #define for_each_netdev_safe(net, d, n) \
  1331. list_for_each_entry_safe(d, n, &(net)->dev_base_head, dev_list)
  1332. #define for_each_netdev_continue(net, d) \
  1333. list_for_each_entry_continue(d, &(net)->dev_base_head, dev_list)
  1334. #define for_each_netdev_continue_rcu(net, d) \
  1335. list_for_each_entry_continue_rcu(d, &(net)->dev_base_head, dev_list)
  1336. #define net_device_entry(lh) list_entry(lh, struct net_device, dev_list)
  1337. static inline struct net_device *next_net_device(struct net_device *dev)
  1338. {
  1339. struct list_head *lh;
  1340. struct net *net;
  1341. net = dev_net(dev);
  1342. lh = dev->dev_list.next;
  1343. return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
  1344. }
  1345. static inline struct net_device *next_net_device_rcu(struct net_device *dev)
  1346. {
  1347. struct list_head *lh;
  1348. struct net *net;
  1349. net = dev_net(dev);
  1350. lh = rcu_dereference(list_next_rcu(&dev->dev_list));
  1351. return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
  1352. }
  1353. static inline struct net_device *first_net_device(struct net *net)
  1354. {
  1355. return list_empty(&net->dev_base_head) ? NULL :
  1356. net_device_entry(net->dev_base_head.next);
  1357. }
  1358. static inline struct net_device *first_net_device_rcu(struct net *net)
  1359. {
  1360. struct list_head *lh = rcu_dereference(list_next_rcu(&net->dev_base_head));
  1361. return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
  1362. }
  1363. extern int netdev_boot_setup_check(struct net_device *dev);
  1364. extern unsigned long netdev_boot_base(const char *prefix, int unit);
  1365. extern struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
  1366. const char *hwaddr);
  1367. extern struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type);
  1368. extern struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type);
  1369. extern void dev_add_pack(struct packet_type *pt);
  1370. extern void dev_remove_pack(struct packet_type *pt);
  1371. extern void __dev_remove_pack(struct packet_type *pt);
  1372. extern struct net_device *dev_get_by_flags_rcu(struct net *net, unsigned short flags,
  1373. unsigned short mask);
  1374. extern struct net_device *dev_get_by_name(struct net *net, const char *name);
  1375. extern struct net_device *dev_get_by_name_rcu(struct net *net, const char *name);
  1376. extern struct net_device *__dev_get_by_name(struct net *net, const char *name);
  1377. extern int dev_alloc_name(struct net_device *dev, const char *name);
  1378. extern int dev_open(struct net_device *dev);
  1379. extern int dev_close(struct net_device *dev);
  1380. extern void dev_disable_lro(struct net_device *dev);
  1381. extern int dev_queue_xmit(struct sk_buff *skb);
  1382. extern int register_netdevice(struct net_device *dev);
  1383. extern void unregister_netdevice_queue(struct net_device *dev,
  1384. struct list_head *head);
  1385. extern void unregister_netdevice_many(struct list_head *head);
  1386. static inline void unregister_netdevice(struct net_device *dev)
  1387. {
  1388. unregister_netdevice_queue(dev, NULL);
  1389. }
  1390. extern int netdev_refcnt_read(const struct net_device *dev);
  1391. extern void free_netdev(struct net_device *dev);
  1392. extern void synchronize_net(void);
  1393. extern int init_dummy_netdev(struct net_device *dev);
  1394. extern void netdev_resync_ops(struct net_device *dev);
  1395. extern struct net_device *dev_get_by_index(struct net *net, int ifindex);
  1396. extern struct net_device *__dev_get_by_index(struct net *net, int ifindex);
  1397. extern struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex);
  1398. extern int dev_restart(struct net_device *dev);
  1399. #ifdef CONFIG_NETPOLL_TRAP
  1400. extern int netpoll_trap(void);
  1401. #endif
  1402. extern int skb_gro_receive(struct sk_buff **head,
  1403. struct sk_buff *skb);
  1404. extern void skb_gro_reset_offset(struct sk_buff *skb);
  1405. static inline unsigned int skb_gro_offset(const struct sk_buff *skb)
  1406. {
  1407. return NAPI_GRO_CB(skb)->data_offset;
  1408. }
  1409. static inline unsigned int skb_gro_len(const struct sk_buff *skb)
  1410. {
  1411. return skb->len - NAPI_GRO_CB(skb)->data_offset;
  1412. }
  1413. static inline void skb_gro_pull(struct sk_buff *skb, unsigned int len)
  1414. {
  1415. NAPI_GRO_CB(skb)->data_offset += len;
  1416. }
  1417. static inline void *skb_gro_header_fast(struct sk_buff *skb,
  1418. unsigned int offset)
  1419. {
  1420. return NAPI_GRO_CB(skb)->frag0 + offset;
  1421. }
  1422. static inline int skb_gro_header_hard(struct sk_buff *skb, unsigned int hlen)
  1423. {
  1424. return NAPI_GRO_CB(skb)->frag0_len < hlen;
  1425. }
  1426. static inline void *skb_gro_header_slow(struct sk_buff *skb, unsigned int hlen,
  1427. unsigned int offset)
  1428. {
  1429. if (!pskb_may_pull(skb, hlen))
  1430. return NULL;
  1431. NAPI_GRO_CB(skb)->frag0 = NULL;
  1432. NAPI_GRO_CB(skb)->frag0_len = 0;
  1433. return skb->data + offset;
  1434. }
  1435. static inline void *skb_gro_mac_header(struct sk_buff *skb)
  1436. {
  1437. return NAPI_GRO_CB(skb)->frag0 ?: skb_mac_header(skb);
  1438. }
  1439. static inline void *skb_gro_network_header(struct sk_buff *skb)
  1440. {
  1441. return (NAPI_GRO_CB(skb)->frag0 ?: skb->data) +
  1442. skb_network_offset(skb);
  1443. }
  1444. static inline int dev_hard_header(struct sk_buff *skb, struct net_device *dev,
  1445. unsigned short type,
  1446. const void *daddr, const void *saddr,
  1447. unsigned len)
  1448. {
  1449. if (!dev->header_ops || !dev->header_ops->create)
  1450. return 0;
  1451. return dev->header_ops->create(skb, dev, type, daddr, saddr, len);
  1452. }
  1453. static inline int dev_parse_header(const struct sk_buff *skb,
  1454. unsigned char *haddr)
  1455. {
  1456. const struct net_device *dev = skb->dev;
  1457. if (!dev->header_ops || !dev->header_ops->parse)
  1458. return 0;
  1459. return dev->header_ops->parse(skb, haddr);
  1460. }
  1461. typedef int gifconf_func_t(struct net_device * dev, char __user * bufptr, int len);
  1462. extern int register_gifconf(unsigned int family, gifconf_func_t * gifconf);
  1463. static inline int unregister_gifconf(unsigned int family)
  1464. {
  1465. return register_gifconf(family, NULL);
  1466. }
  1467. /*
  1468. * Incoming packets are placed on per-cpu queues
  1469. */
  1470. struct softnet_data {
  1471. struct Qdisc *output_queue;
  1472. struct Qdisc **output_queue_tailp;
  1473. struct list_head poll_list;
  1474. struct sk_buff *completion_queue;
  1475. struct sk_buff_head process_queue;
  1476. /* stats */
  1477. unsigned int processed;
  1478. unsigned int time_squeeze;
  1479. unsigned int cpu_collision;
  1480. unsigned int received_rps;
  1481. #ifdef CONFIG_RPS
  1482. struct softnet_data *rps_ipi_list;
  1483. /* Elements below can be accessed between CPUs for RPS */
  1484. struct call_single_data csd ____cacheline_aligned_in_smp;
  1485. struct softnet_data *rps_ipi_next;
  1486. unsigned int cpu;
  1487. unsigned int input_queue_head;
  1488. unsigned int input_queue_tail;
  1489. #endif
  1490. unsigned dropped;
  1491. struct sk_buff_head input_pkt_queue;
  1492. struct napi_struct backlog;
  1493. };
  1494. static inline void input_queue_head_incr(struct softnet_data *sd)
  1495. {
  1496. #ifdef CONFIG_RPS
  1497. sd->input_queue_head++;
  1498. #endif
  1499. }
  1500. static inline void input_queue_tail_incr_save(struct softnet_data *sd,
  1501. unsigned int *qtail)
  1502. {
  1503. #ifdef CONFIG_RPS
  1504. *qtail = ++sd->input_queue_tail;
  1505. #endif
  1506. }
  1507. DECLARE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
  1508. extern void __netif_schedule(struct Qdisc *q);
  1509. static inline void netif_schedule_queue(struct netdev_queue *txq)
  1510. {
  1511. if (!(txq->state & QUEUE_STATE_ANY_XOFF))
  1512. __netif_schedule(txq->qdisc);
  1513. }
  1514. static inline void netif_tx_schedule_all(struct net_device *dev)
  1515. {
  1516. unsigned int i;
  1517. for (i = 0; i < dev->num_tx_queues; i++)
  1518. netif_schedule_queue(netdev_get_tx_queue(dev, i));
  1519. }
  1520. static inline void netif_tx_start_queue(struct netdev_queue *dev_queue)
  1521. {
  1522. clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
  1523. }
  1524. /**
  1525. * netif_start_queue - allow transmit
  1526. * @dev: network device
  1527. *
  1528. * Allow upper layers to call the device hard_start_xmit routine.
  1529. */
  1530. static inline void netif_start_queue(struct net_device *dev)
  1531. {
  1532. netif_tx_start_queue(netdev_get_tx_queue(dev, 0));
  1533. }
  1534. static inline void netif_tx_start_all_queues(struct net_device *dev)
  1535. {
  1536. unsigned int i;
  1537. for (i = 0; i < dev->num_tx_queues; i++) {
  1538. struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
  1539. netif_tx_start_queue(txq);
  1540. }
  1541. }
  1542. static inline void netif_tx_wake_queue(struct netdev_queue *dev_queue)
  1543. {
  1544. #ifdef CONFIG_NETPOLL_TRAP
  1545. if (netpoll_trap()) {
  1546. netif_tx_start_queue(dev_queue);
  1547. return;
  1548. }
  1549. #endif
  1550. if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state))
  1551. __netif_schedule(dev_queue->qdisc);
  1552. }
  1553. /**
  1554. * netif_wake_queue - restart transmit
  1555. * @dev: network device
  1556. *
  1557. * Allow upper layers to call the device hard_start_xmit routine.
  1558. * Used for flow control when transmit resources are available.
  1559. */
  1560. static inline void netif_wake_queue(struct net_device *dev)
  1561. {
  1562. netif_tx_wake_queue(netdev_get_tx_queue(dev, 0));
  1563. }
  1564. static inline void netif_tx_wake_all_queues(struct net_device *dev)
  1565. {
  1566. unsigned int i;
  1567. for (i = 0; i < dev->num_tx_queues; i++) {
  1568. struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
  1569. netif_tx_wake_queue(txq);
  1570. }
  1571. }
  1572. static inline void netif_tx_stop_queue(struct netdev_queue *dev_queue)
  1573. {
  1574. if (WARN_ON(!dev_queue)) {
  1575. pr_info("netif_stop_queue() cannot be called before register_netdev()\n");
  1576. return;
  1577. }
  1578. set_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
  1579. }
  1580. /**
  1581. * netif_stop_queue - stop transmitted packets
  1582. * @dev: network device
  1583. *
  1584. * Stop upper layers calling the device hard_start_xmit routine.
  1585. * Used for flow control when transmit resources are unavailable.
  1586. */
  1587. static inline void netif_stop_queue(struct net_device *dev)
  1588. {
  1589. netif_tx_stop_queue(netdev_get_tx_queue(dev, 0));
  1590. }
  1591. static inline void netif_tx_stop_all_queues(struct net_device *dev)
  1592. {
  1593. unsigned int i;
  1594. for (i = 0; i < dev->num_tx_queues; i++) {
  1595. struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
  1596. netif_tx_stop_queue(txq);
  1597. }
  1598. }
  1599. static inline int netif_tx_queue_stopped(const struct netdev_queue *dev_queue)
  1600. {
  1601. return test_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
  1602. }
  1603. /**
  1604. * netif_queue_stopped - test if transmit queue is flowblocked
  1605. * @dev: network device
  1606. *
  1607. * Test if transmit queue on device is currently unable to send.
  1608. */
  1609. static inline int netif_queue_stopped(const struct net_device *dev)
  1610. {
  1611. return netif_tx_queue_stopped(netdev_get_tx_queue(dev, 0));
  1612. }
  1613. static inline int netif_xmit_stopped(const struct netdev_queue *dev_queue)
  1614. {
  1615. return dev_queue->state & QUEUE_STATE_ANY_XOFF;
  1616. }
  1617. static inline int netif_xmit_frozen_or_stopped(const struct netdev_queue *dev_queue)
  1618. {
  1619. return dev_queue->state & QUEUE_STATE_ANY_XOFF_OR_FROZEN;
  1620. }
  1621. }
  1622. /**
  1623. * netif_running - test if up
  1624. * @dev: network device
  1625. *
  1626. * Test if the device has been brought up.
  1627. */
  1628. static inline int netif_running(const struct net_device *dev)
  1629. {
  1630. return test_bit(__LINK_STATE_START, &dev->state);
  1631. }
  1632. /*
  1633. * Routines to manage the subqueues on a device. We only need start
  1634. * stop, and a check if it's stopped. All other device management is
  1635. * done at the overall netdevice level.
  1636. * Also test the device if we're multiqueue.
  1637. */
  1638. /**
  1639. * netif_start_subqueue - allow sending packets on subqueue
  1640. * @dev: network device
  1641. * @queue_index: sub queue index
  1642. *
  1643. * Start individual transmit queue of a device with multiple transmit queues.
  1644. */
  1645. static inline void netif_start_subqueue(struct net_device *dev, u16 queue_index)
  1646. {
  1647. struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
  1648. netif_tx_start_queue(txq);
  1649. }
  1650. /**
  1651. * netif_stop_subqueue - stop sending packets on subqueue
  1652. * @dev: network device
  1653. * @queue_index: sub queue index
  1654. *
  1655. * Stop individual transmit queue of a device with multiple transmit queues.
  1656. */
  1657. static inline void netif_stop_subqueue(struct net_device *dev, u16 queue_index)
  1658. {
  1659. struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
  1660. #ifdef CONFIG_NETPOLL_TRAP
  1661. if (netpoll_trap())
  1662. return;
  1663. #endif
  1664. netif_tx_stop_queue(txq);
  1665. }
  1666. /**
  1667. * netif_subqueue_stopped - test status of subqueue
  1668. * @dev: network device
  1669. * @queue_index: sub queue index
  1670. *
  1671. * Check individual transmit queue of a device with multiple transmit queues.
  1672. */
  1673. static inline int __netif_subqueue_stopped(const struct net_device *dev,
  1674. u16 queue_index)
  1675. {
  1676. struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
  1677. return netif_tx_queue_stopped(txq);
  1678. }
  1679. static inline int netif_subqueue_stopped(const struct net_device *dev,
  1680. struct sk_buff *skb)
  1681. {
  1682. return __netif_subqueue_stopped(dev, skb_get_queue_mapping(skb));
  1683. }
  1684. /**
  1685. * netif_wake_subqueue - allow sending packets on subqueue
  1686. * @dev: network device
  1687. * @queue_index: sub queue index
  1688. *
  1689. * Resume individual transmit queue of a device with multiple transmit queues.
  1690. */
  1691. static inline void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
  1692. {
  1693. struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
  1694. #ifdef CONFIG_NETPOLL_TRAP
  1695. if (netpoll_trap())
  1696. return;
  1697. #endif
  1698. if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &txq->state))
  1699. __netif_schedule(txq->qdisc);
  1700. }
  1701. /*
  1702. * Returns a Tx hash for the given packet when dev->real_num_tx_queues is used
  1703. * as a distribution range limit for the returned value.
  1704. */
  1705. static inline u16 skb_tx_hash(const struct net_device *dev,
  1706. const struct sk_buff *skb)
  1707. {
  1708. return __skb_tx_hash(dev, skb, dev->real_num_tx_queues);
  1709. }
  1710. /**
  1711. * netif_is_multiqueue - test if device has multiple transmit queues
  1712. * @dev: network device
  1713. *
  1714. * Check if device has multiple transmit queues
  1715. */
  1716. static inline int netif_is_multiqueue(const struct net_device *dev)
  1717. {
  1718. return dev->num_tx_queues > 1;
  1719. }
  1720. extern int netif_set_real_num_tx_queues(struct net_device *dev,
  1721. unsigned int txq);
  1722. #ifdef CONFIG_RPS
  1723. extern int netif_set_real_num_rx_queues(struct net_device *dev,
  1724. unsigned int rxq);
  1725. #else
  1726. static inline int netif_set_real_num_rx_queues(struct net_device *dev,
  1727. unsigned int rxq)
  1728. {
  1729. return 0;
  1730. }
  1731. #endif
  1732. static inline int netif_copy_real_num_queues(struct net_device *to_dev,
  1733. const struct net_device *from_dev)
  1734. {
  1735. netif_set_real_num_tx_queues(to_dev, from_dev->real_num_tx_queues);
  1736. #ifdef CONFIG_RPS
  1737. return netif_set_real_num_rx_queues(to_dev,
  1738. from_dev->real_num_rx_queues);
  1739. #else
  1740. return 0;
  1741. #endif
  1742. }
  1743. /* Use this variant when it is known for sure that it
  1744. * is executing from hardware interrupt context or with hardware interrupts
  1745. * disabled.
  1746. */
  1747. extern void dev_kfree_skb_irq(struct sk_buff *skb);
  1748. /* Use this variant in places where it could be invoked
  1749. * from either hardware interrupt or other context, with hardware interrupts
  1750. * either disabled or enabled.
  1751. */
  1752. extern void dev_kfree_skb_any(struct sk_buff *skb);
  1753. extern int netif_rx(struct sk_buff *skb);
  1754. extern int netif_rx_ni(struct sk_buff *skb);
  1755. extern int netif_receive_skb(struct sk_buff *skb);
  1756. extern gro_result_t dev_gro_receive(struct napi_struct *napi,
  1757. struct sk_buff *skb);
  1758. extern gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb);
  1759. extern gro_result_t napi_gro_receive(struct napi_struct *napi,
  1760. struct sk_buff *skb);
  1761. extern void napi_gro_flush(struct napi_struct *napi);
  1762. extern struct sk_buff * napi_get_frags(struct napi_struct *napi);
  1763. extern gro_result_t napi_frags_finish(struct napi_struct *napi,
  1764. struct sk_buff *skb,
  1765. gro_result_t ret);
  1766. extern struct sk_buff * napi_frags_skb(struct napi_struct *napi);
  1767. extern gro_result_t napi_gro_frags(struct napi_struct *napi);
  1768. static inline void napi_free_frags(struct napi_struct *napi)
  1769. {
  1770. kfree_skb(napi->skb);
  1771. napi->skb = NULL;
  1772. }
  1773. extern int netdev_rx_handler_register(struct net_device *dev,
  1774. rx_handler_func_t *rx_handler,
  1775. void *rx_handler_data);
  1776. extern void netdev_rx_handler_unregister(struct net_device *dev);
  1777. extern int dev_valid_name(const char *name);
  1778. extern int dev_ioctl(struct net *net, unsigned int cmd, void __user *);
  1779. extern int dev_ethtool(struct net *net, struct ifreq *);
  1780. extern unsigned dev_get_flags(const struct net_device *);
  1781. extern int __dev_change_flags(struct net_device *, unsigned int flags);
  1782. extern int dev_change_flags(struct net_device *, unsigned);
  1783. extern void __dev_notify_flags(struct net_device *, unsigned int old_flags);
  1784. extern int dev_change_name(struct net_device *, const char *);
  1785. extern int dev_set_alias(struct net_device *, const char *, size_t);
  1786. extern int dev_change_net_namespace(struct net_device *,
  1787. struct net *, const char *);
  1788. extern int dev_set_mtu(struct net_device *, int);
  1789. extern void dev_set_group(struct net_device *, int);
  1790. extern int dev_set_mac_address(struct net_device *,
  1791. struct sockaddr *);
  1792. extern int dev_hard_start_xmit(struct sk_buff *skb,
  1793. struct net_device *dev,
  1794. struct netdev_queue *txq);
  1795. extern int dev_forward_skb(struct net_device *dev,
  1796. struct sk_buff *skb);
  1797. extern int netdev_budget;
  1798. /* Called by rtnetlink.c:rtnl_unlock() */
  1799. extern void netdev_run_todo(void);
  1800. /**
  1801. * dev_put - release reference to device
  1802. * @dev: network device
  1803. *
  1804. * Release reference to device to allow it to be freed.
  1805. */
  1806. static inline void dev_put(struct net_device *dev)
  1807. {
  1808. irqsafe_cpu_dec(*dev->pcpu_refcnt);
  1809. }
  1810. /**
  1811. * dev_hold - get reference to device
  1812. * @dev: network device
  1813. *
  1814. * Hold reference to device to keep it from being freed.
  1815. */
  1816. static inline void dev_hold(struct net_device *dev)
  1817. {
  1818. irqsafe_cpu_inc(*dev->pcpu_refcnt);
  1819. }
  1820. /* Carrier loss detection, dial on demand. The functions netif_carrier_on
  1821. * and _off may be called from IRQ context, but it is caller
  1822. * who is responsible for serialization of these calls.
  1823. *
  1824. * The name carrier is inappropriate, these functions should really be
  1825. * called netif_lowerlayer_*() because they represent the state of any
  1826. * kind of lower layer not just hardware media.
  1827. */
  1828. extern void linkwatch_fire_event(struct net_device *dev);
  1829. extern void linkwatch_forget_dev(struct net_device *dev);
  1830. /**
  1831. * netif_carrier_ok - test if carrier present
  1832. * @dev: network device
  1833. *
  1834. * Check if carrier is present on device
  1835. */
  1836. static inline int netif_carrier_ok(const struct net_device *dev)
  1837. {
  1838. return !test_bit(__LINK_STATE_NOCARRIER, &dev->state);
  1839. }
  1840. extern unsigned long dev_trans_start(struct net_device *dev);
  1841. extern void __netdev_watchdog_up(struct net_device *dev);
  1842. extern void netif_carrier_on(struct net_device *dev);
  1843. extern void netif_carrier_off(struct net_device *dev);
  1844. extern void netif_notify_peers(struct net_device *dev);
  1845. /**
  1846. * netif_dormant_on - mark device as dormant.
  1847. * @dev: network device
  1848. *
  1849. * Mark device as dormant (as per RFC2863).
  1850. *
  1851. * The dormant state indicates that the relevant interface is not
  1852. * actually in a condition to pass packets (i.e., it is not 'up') but is
  1853. * in a "pending" state, waiting for some external event. For "on-
  1854. * demand" interfaces, this new state identifies the situation where the
  1855. * interface is waiting for events to place it in the up state.
  1856. *
  1857. */
  1858. static inline void netif_dormant_on(struct net_device *dev)
  1859. {
  1860. if (!test_and_set_bit(__LINK_STATE_DORMANT, &dev->state))
  1861. linkwatch_fire_event(dev);
  1862. }
  1863. /**
  1864. * netif_dormant_off - set device as not dormant.
  1865. * @dev: network device
  1866. *
  1867. * Device is not in dormant state.
  1868. */
  1869. static inline void netif_dormant_off(struct net_device *dev)
  1870. {
  1871. if (test_and_clear_bit(__LINK_STATE_DORMANT, &dev->state))
  1872. linkwatch_fire_event(dev);
  1873. }
  1874. /**
  1875. * netif_dormant - test if carrier present
  1876. * @dev: network device
  1877. *
  1878. * Check if carrier is present on device
  1879. */
  1880. static inline int netif_dormant(const struct net_device *dev)
  1881. {
  1882. return test_bit(__LINK_STATE_DORMANT, &dev->state);
  1883. }
  1884. /**
  1885. * netif_oper_up - test if device is operational
  1886. * @dev: network device
  1887. *
  1888. * Check if carrier is operational
  1889. */
  1890. static inline int netif_oper_up(const struct net_device *dev)
  1891. {
  1892. return (dev->operstate == IF_OPER_UP ||
  1893. dev->operstate == IF_OPER_UNKNOWN /* backward compat */);
  1894. }
  1895. /**
  1896. * netif_device_present - is device available or removed
  1897. * @dev: network device
  1898. *
  1899. * Check if device has not been removed from system.
  1900. */
  1901. static inline int netif_device_present(struct net_device *dev)
  1902. {
  1903. return test_bit(__LINK_STATE_PRESENT, &dev->state);
  1904. }
  1905. extern void netif_device_detach(struct net_device *dev);
  1906. extern void netif_device_attach(struct net_device *dev);
  1907. /*
  1908. * Network interface message level settings
  1909. */
  1910. enum {
  1911. NETIF_MSG_DRV = 0x0001,
  1912. NETIF_MSG_PROBE = 0x0002,
  1913. NETIF_MSG_LINK = 0x0004,
  1914. NETIF_MSG_TIMER = 0x0008,
  1915. NETIF_MSG_IFDOWN = 0x0010,
  1916. NETIF_MSG_IFUP = 0x0020,
  1917. NETIF_MSG_RX_ERR = 0x0040,
  1918. NETIF_MSG_TX_ERR = 0x0080,
  1919. NETIF_MSG_TX_QUEUED = 0x0100,
  1920. NETIF_MSG_INTR = 0x0200,
  1921. NETIF_MSG_TX_DONE = 0x0400,
  1922. NETIF_MSG_RX_STATUS = 0x0800,
  1923. NETIF_MSG_PKTDATA = 0x1000,
  1924. NETIF_MSG_HW = 0x2000,
  1925. NETIF_MSG_WOL = 0x4000,
  1926. };
  1927. #define netif_msg_drv(p) ((p)->msg_enable & NETIF_MSG_DRV)
  1928. #define netif_msg_probe(p) ((p)->msg_enable & NETIF_MSG_PROBE)
  1929. #define netif_msg_link(p) ((p)->msg_enable & NETIF_MSG_LINK)
  1930. #define netif_msg_timer(p) ((p)->msg_enable & NETIF_MSG_TIMER)
  1931. #define netif_msg_ifdown(p) ((p)->msg_enable & NETIF_MSG_IFDOWN)
  1932. #define netif_msg_ifup(p) ((p)->msg_enable & NETIF_MSG_IFUP)
  1933. #define netif_msg_rx_err(p) ((p)->msg_enable & NETIF_MSG_RX_ERR)
  1934. #define netif_msg_tx_err(p) ((p)->msg_enable & NETIF_MSG_TX_ERR)
  1935. #define netif_msg_tx_queued(p) ((p)->msg_enable & NETIF_MSG_TX_QUEUED)
  1936. #define netif_msg_intr(p) ((p)->msg_enable & NETIF_MSG_INTR)
  1937. #define netif_msg_tx_done(p) ((p)->msg_enable & NETIF_MSG_TX_DONE)
  1938. #define netif_msg_rx_status(p) ((p)->msg_enable & NETIF_MSG_RX_STATUS)
  1939. #define netif_msg_pktdata(p) ((p)->msg_enable & NETIF_MSG_PKTDATA)
  1940. #define netif_msg_hw(p) ((p)->msg_enable & NETIF_MSG_HW)
  1941. #define netif_msg_wol(p) ((p)->msg_enable & NETIF_MSG_WOL)
  1942. static inline u32 netif_msg_init(int debug_value, int default_msg_enable_bits)
  1943. {
  1944. /* use default */
  1945. if (debug_value < 0 || debug_value >= (sizeof(u32) * 8))
  1946. return default_msg_enable_bits;
  1947. if (debug_value == 0) /* no output */
  1948. return 0;
  1949. /* set low N bits */
  1950. return (1 << debug_value) - 1;
  1951. }
  1952. static inline void __netif_tx_lock(struct netdev_queue *txq, int cpu)
  1953. {
  1954. spin_lock(&txq->_xmit_lock);
  1955. txq->xmit_lock_owner = cpu;
  1956. }
  1957. static inline void __netif_tx_lock_bh(struct netdev_queue *txq)
  1958. {
  1959. spin_lock_bh(&txq->_xmit_lock);
  1960. txq->xmit_lock_owner = smp_processor_id();
  1961. }
  1962. static inline int __netif_tx_trylock(struct netdev_queue *txq)
  1963. {
  1964. int ok = spin_trylock(&txq->_xmit_lock);
  1965. if (likely(ok))
  1966. txq->xmit_lock_owner = smp_processor_id();
  1967. return ok;
  1968. }
  1969. static inline void __netif_tx_unlock(struct netdev_queue *txq)
  1970. {
  1971. txq->xmit_lock_owner = -1;
  1972. spin_unlock(&txq->_xmit_lock);
  1973. }
  1974. static inline void __netif_tx_unlock_bh(struct netdev_queue *txq)
  1975. {
  1976. txq->xmit_lock_owner = -1;
  1977. spin_unlock_bh(&txq->_xmit_lock);
  1978. }
  1979. static inline void txq_trans_update(struct netdev_queue *txq)
  1980. {
  1981. if (txq->xmit_lock_owner != -1)
  1982. txq->trans_start = jiffies;
  1983. }
  1984. /**
  1985. * netif_tx_lock - grab network device transmit lock
  1986. * @dev: network device
  1987. *
  1988. * Get network device transmit lock
  1989. */
  1990. static inline void netif_tx_lock(struct net_device *dev)
  1991. {
  1992. unsigned int i;
  1993. int cpu;
  1994. spin_lock(&dev->tx_global_lock);
  1995. cpu = smp_processor_id();
  1996. for (i = 0; i < dev->num_tx_queues; i++) {
  1997. struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
  1998. /* We are the only thread of execution doing a
  1999. * freeze, but we have to grab the _xmit_lock in
  2000. * order to synchronize with threads which are in
  2001. * the ->hard_start_xmit() handler and already
  2002. * checked the frozen bit.
  2003. */
  2004. __netif_tx_lock(txq, cpu);
  2005. set_bit(__QUEUE_STATE_FROZEN, &txq->state);
  2006. __netif_tx_unlock(txq);
  2007. }
  2008. }
  2009. static inline void netif_tx_lock_bh(struct net_device *dev)
  2010. {
  2011. local_bh_disable();
  2012. netif_tx_lock(dev);
  2013. }
  2014. static inline void netif_tx_unlock(struct net_device *dev)
  2015. {
  2016. unsigned int i;
  2017. for (i = 0; i < dev->num_tx_queues; i++) {
  2018. struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
  2019. /* No need to grab the _xmit_lock here. If the
  2020. * queue is not stopped for another reason, we
  2021. * force a schedule.
  2022. */
  2023. clear_bit(__QUEUE_STATE_FROZEN, &txq->state);
  2024. netif_schedule_queue(txq);
  2025. }
  2026. spin_unlock(&dev->tx_global_lock);
  2027. }
  2028. static inline void netif_tx_unlock_bh(struct net_device *dev)
  2029. {
  2030. netif_tx_unlock(dev);
  2031. local_bh_enable();
  2032. }
  2033. #define HARD_TX_LOCK(dev, txq, cpu) { \
  2034. if ((dev->features & NETIF_F_LLTX) == 0) { \
  2035. __netif_tx_lock(txq, cpu); \
  2036. } \
  2037. }
  2038. #define HARD_TX_UNLOCK(dev, txq) { \
  2039. if ((dev->features & NETIF_F_LLTX) == 0) { \
  2040. __netif_tx_unlock(txq); \
  2041. } \
  2042. }
  2043. static inline void netif_tx_disable(struct net_device *dev)
  2044. {
  2045. unsigned int i;
  2046. int cpu;
  2047. local_bh_disable();
  2048. cpu = smp_processor_id();
  2049. for (i = 0; i < dev->num_tx_queues; i++) {
  2050. struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
  2051. __netif_tx_lock(txq, cpu);
  2052. netif_tx_stop_queue(txq);
  2053. __netif_tx_unlock(txq);
  2054. }
  2055. local_bh_enable();
  2056. }
  2057. static inline void netif_addr_lock(struct net_device *dev)
  2058. {
  2059. spin_lock(&dev->addr_list_lock);
  2060. }
  2061. static inline void netif_addr_lock_bh(struct net_device *dev)
  2062. {
  2063. spin_lock_bh(&dev->addr_list_lock);
  2064. }
  2065. static inline void netif_addr_unlock(struct net_device *dev)
  2066. {
  2067. spin_unlock(&dev->addr_list_lock);
  2068. }
  2069. static inline void netif_addr_unlock_bh(struct net_device *dev)
  2070. {
  2071. spin_unlock_bh(&dev->addr_list_lock);
  2072. }
  2073. /*
  2074. * dev_addrs walker. Should be used only for read access. Call with
  2075. * rcu_read_lock held.
  2076. */
  2077. #define for_each_dev_addr(dev, ha) \
  2078. list_for_each_entry_rcu(ha, &dev->dev_addrs.list, list)
  2079. /* These functions live elsewhere (drivers/net/net_init.c, but related) */
  2080. extern void ether_setup(struct net_device *dev);
  2081. /* Support for loadable net-drivers */
  2082. extern struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
  2083. void (*setup)(struct net_device *),
  2084. unsigned int txqs, unsigned int rxqs);
  2085. #define alloc_netdev(sizeof_priv, name, setup) \
  2086. alloc_netdev_mqs(sizeof_priv, name, setup, 1, 1)
  2087. #define alloc_netdev_mq(sizeof_priv, name, setup, count) \
  2088. alloc_netdev_mqs(sizeof_priv, name, setup, count, count)
  2089. extern int register_netdev(struct net_device *dev);
  2090. extern void unregister_netdev(struct net_device *dev);
  2091. /* General hardware address lists handling functions */
  2092. extern int __hw_addr_add_multiple(struct netdev_hw_addr_list *to_list,
  2093. struct netdev_hw_addr_list *from_list,
  2094. int addr_len, unsigned char addr_type);
  2095. extern void __hw_addr_del_multiple(struct netdev_hw_addr_list *to_list,
  2096. struct netdev_hw_addr_list *from_list,
  2097. int addr_len, unsigned char addr_type);
  2098. extern int __hw_addr_sync(struct netdev_hw_addr_list *to_list,
  2099. struct netdev_hw_addr_list *from_list,
  2100. int addr_len);
  2101. extern void __hw_addr_unsync(struct netdev_hw_addr_list *to_list,
  2102. struct netdev_hw_addr_list *from_list,
  2103. int addr_len);
  2104. extern void __hw_addr_flush(struct netdev_hw_addr_list *list);
  2105. extern void __hw_addr_init(struct netdev_hw_addr_list *list);
  2106. /* Functions used for device addresses handling */
  2107. extern int dev_addr_add(struct net_device *dev, unsigned char *addr,
  2108. unsigned char addr_type);
  2109. extern int dev_addr_del(struct net_device *dev, unsigned char *addr,
  2110. unsigned char addr_type);
  2111. extern int dev_addr_add_multiple(struct net_device *to_dev,
  2112. struct net_device *from_dev,
  2113. unsigned char addr_type);
  2114. extern int dev_addr_del_multiple(struct net_device *to_dev,
  2115. struct net_device *from_dev,
  2116. unsigned char addr_type);
  2117. extern void dev_addr_flush(struct net_device *dev);
  2118. extern int dev_addr_init(struct net_device *dev);
  2119. /* Functions used for unicast addresses handling */
  2120. extern int dev_uc_add(struct net_device *dev, unsigned char *addr);
  2121. extern int dev_uc_del(struct net_device *dev, unsigned char *addr);
  2122. extern int dev_uc_sync(struct net_device *to, struct net_device *from);
  2123. extern void dev_uc_unsync(struct net_device *to, struct net_device *from);
  2124. extern void dev_uc_flush(struct net_device *dev);
  2125. extern void dev_uc_init(struct net_device *dev);
  2126. /* Functions used for multicast addresses handling */
  2127. extern int dev_mc_add(struct net_device *dev, unsigned char *addr);
  2128. extern int dev_mc_add_global(struct net_device *dev, unsigned char *addr);
  2129. extern int dev_mc_del(struct net_device *dev, unsigned char *addr);
  2130. extern int dev_mc_del_global(struct net_device *dev, unsigned char *addr);
  2131. extern int dev_mc_sync(struct net_device *to, struct net_device *from);
  2132. extern void dev_mc_unsync(struct net_device *to, struct net_device *from);
  2133. extern void dev_mc_flush(struct net_device *dev);
  2134. extern void dev_mc_init(struct net_device *dev);
  2135. /* Functions used for secondary unicast and multicast support */
  2136. extern void dev_set_rx_mode(struct net_device *dev);
  2137. extern void __dev_set_rx_mode(struct net_device *dev);
  2138. extern int dev_set_promiscuity(struct net_device *dev, int inc);
  2139. extern int dev_set_allmulti(struct net_device *dev, int inc);
  2140. extern void netdev_state_change(struct net_device *dev);
  2141. extern int netdev_bonding_change(struct net_device *dev,
  2142. unsigned long event);
  2143. extern void netdev_features_change(struct net_device *dev);
  2144. /* Load a device via the kmod */
  2145. extern void dev_load(struct net *net, const char *name);
  2146. extern void dev_mcast_init(void);
  2147. extern struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
  2148. struct rtnl_link_stats64 *storage);
  2149. extern int netdev_max_backlog;
  2150. extern int netdev_tstamp_prequeue;
  2151. extern int weight_p;
  2152. extern int bpf_jit_enable;
  2153. extern int netdev_set_master(struct net_device *dev, struct net_device *master);
  2154. extern int netdev_set_bond_master(struct net_device *dev,
  2155. struct net_device *master);
  2156. extern int skb_checksum_help(struct sk_buff *skb);
  2157. extern struct sk_buff *skb_gso_segment(struct sk_buff *skb,
  2158. netdev_features_t features);
  2159. #ifdef CONFIG_BUG
  2160. extern void netdev_rx_csum_fault(struct net_device *dev);
  2161. #else
  2162. static inline void netdev_rx_csum_fault(struct net_device *dev)
  2163. {
  2164. }
  2165. #endif
  2166. /* rx skb timestamps */
  2167. extern void net_enable_timestamp(void);
  2168. extern void net_disable_timestamp(void);
  2169. #ifdef CONFIG_PROC_FS
  2170. extern void *dev_seq_start(struct seq_file *seq, loff_t *pos);
  2171. extern void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos);
  2172. extern void dev_seq_stop(struct seq_file *seq, void *v);
  2173. #endif
  2174. extern int netdev_class_create_file(struct class_attribute *class_attr);
  2175. extern void netdev_class_remove_file(struct class_attribute *class_attr);
  2176. extern struct kobj_ns_type_operations net_ns_type_operations;
  2177. extern const char *netdev_drivername(const struct net_device *dev);
  2178. extern void linkwatch_run_queue(void);
  2179. static inline netdev_features_t netdev_get_wanted_features(
  2180. struct net_device *dev)
  2181. {
  2182. return (dev->features & ~dev->hw_features) | dev->wanted_features;
  2183. }
  2184. netdev_features_t netdev_increment_features(netdev_features_t all,
  2185. netdev_features_t one, netdev_features_t mask);
  2186. int __netdev_update_features(struct net_device *dev);
  2187. void netdev_update_features(struct net_device *dev);
  2188. void netdev_change_features(struct net_device *dev);
  2189. void netif_stacked_transfer_operstate(const struct net_device *rootdev,
  2190. struct net_device *dev);
  2191. netdev_features_t netif_skb_features(struct sk_buff *skb);
  2192. static inline int net_gso_ok(netdev_features_t features, int gso_type)
  2193. {
  2194. netdev_features_t feature = gso_type << NETIF_F_GSO_SHIFT;
  2195. /* check flags correspondence */
  2196. BUILD_BUG_ON(SKB_GSO_TCPV4 != (NETIF_F_TSO >> NETIF_F_GSO_SHIFT));
  2197. BUILD_BUG_ON(SKB_GSO_UDP != (NETIF_F_UFO >> NETIF_F_GSO_SHIFT));
  2198. BUILD_BUG_ON(SKB_GSO_DODGY != (NETIF_F_GSO_ROBUST >> NETIF_F_GSO_SHIFT));
  2199. BUILD_BUG_ON(SKB_GSO_TCP_ECN != (NETIF_F_TSO_ECN >> NETIF_F_GSO_SHIFT));
  2200. BUILD_BUG_ON(SKB_GSO_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT));
  2201. BUILD_BUG_ON(SKB_GSO_FCOE != (NETIF_F_FSO >> NETIF_F_GSO_SHIFT));
  2202. return (features & feature) == feature;
  2203. }
  2204. static inline int skb_gso_ok(struct sk_buff *skb, netdev_features_t features)
  2205. {
  2206. return net_gso_ok(features, skb_shinfo(skb)->gso_type) &&
  2207. (!skb_has_frag_list(skb) || (features & NETIF_F_FRAGLIST));
  2208. }
  2209. static inline int netif_needs_gso(struct sk_buff *skb,
  2210. netdev_features_t features)
  2211. {
  2212. return skb_is_gso(skb) && (!skb_gso_ok(skb, features) ||
  2213. unlikely(skb->ip_summed != CHECKSUM_PARTIAL));
  2214. }
  2215. static inline void netif_set_gso_max_size(struct net_device *dev,
  2216. unsigned int size)
  2217. {
  2218. dev->gso_max_size = size;
  2219. }
  2220. static inline int netif_is_bond_slave(struct net_device *dev)
  2221. {
  2222. return dev->flags & IFF_SLAVE && dev->priv_flags & IFF_BONDING;
  2223. }
  2224. extern struct pernet_operations __net_initdata loopback_net_ops;
  2225. /* Logging, debugging and troubleshooting/diagnostic helpers. */
  2226. /* netdev_printk helpers, similar to dev_printk */
  2227. static inline const char *netdev_name(const struct net_device *dev)
  2228. {
  2229. if (dev->reg_state != NETREG_REGISTERED)
  2230. return "(unregistered net_device)";
  2231. return dev->name;
  2232. }
  2233. extern int __netdev_printk(const char *level, const struct net_device *dev,
  2234. struct va_format *vaf);
  2235. extern __printf(3, 4)
  2236. int netdev_printk(const char *level, const struct net_device *dev,
  2237. const char *format, ...);
  2238. extern __printf(2, 3)
  2239. int netdev_emerg(const struct net_device *dev, const char *format, ...);
  2240. extern __printf(2, 3)
  2241. int netdev_alert(const struct net_device *dev, const char *format, ...);
  2242. extern __printf(2, 3)
  2243. int netdev_crit(const struct net_device *dev, const char *format, ...);
  2244. extern __printf(2, 3)
  2245. int netdev_err(const struct net_device *dev, const char *format, ...);
  2246. extern __printf(2, 3)
  2247. int netdev_warn(const struct net_device *dev, const char *format, ...);
  2248. extern __printf(2, 3)
  2249. int netdev_notice(const struct net_device *dev, const char *format, ...);
  2250. extern __printf(2, 3)
  2251. int netdev_info(const struct net_device *dev, const char *format, ...);
  2252. #define MODULE_ALIAS_NETDEV(device) \
  2253. MODULE_ALIAS("netdev-" device)
  2254. #if defined(DEBUG)
  2255. #define netdev_dbg(__dev, format, args...) \
  2256. netdev_printk(KERN_DEBUG, __dev, format, ##args)
  2257. #elif defined(CONFIG_DYNAMIC_DEBUG)
  2258. #define netdev_dbg(__dev, format, args...) \
  2259. do { \
  2260. dynamic_netdev_dbg(__dev, format, ##args); \
  2261. } while (0)
  2262. #else
  2263. #define netdev_dbg(__dev, format, args...) \
  2264. ({ \
  2265. if (0) \
  2266. netdev_printk(KERN_DEBUG, __dev, format, ##args); \
  2267. 0; \
  2268. })
  2269. #endif
  2270. #if defined(VERBOSE_DEBUG)
  2271. #define netdev_vdbg netdev_dbg
  2272. #else
  2273. #define netdev_vdbg(dev, format, args...) \
  2274. ({ \
  2275. if (0) \
  2276. netdev_printk(KERN_DEBUG, dev, format, ##args); \
  2277. 0; \
  2278. })
  2279. #endif
  2280. /*
  2281. * netdev_WARN() acts like dev_printk(), but with the key difference
  2282. * of using a WARN/WARN_ON to get the message out, including the
  2283. * file/line information and a backtrace.
  2284. */
  2285. #define netdev_WARN(dev, format, args...) \
  2286. WARN(1, "netdevice: %s\n" format, netdev_name(dev), ##args);
  2287. /* netif printk helpers, similar to netdev_printk */
  2288. #define netif_printk(priv, type, level, dev, fmt, args...) \
  2289. do { \
  2290. if (netif_msg_##type(priv)) \
  2291. netdev_printk(level, (dev), fmt, ##args); \
  2292. } while (0)
  2293. #define netif_level(level, priv, type, dev, fmt, args...) \
  2294. do { \
  2295. if (netif_msg_##type(priv)) \
  2296. netdev_##level(dev, fmt, ##args); \
  2297. } while (0)
  2298. #define netif_emerg(priv, type, dev, fmt, args...) \
  2299. netif_level(emerg, priv, type, dev, fmt, ##args)
  2300. #define netif_alert(priv, type, dev, fmt, args...) \
  2301. netif_level(alert, priv, type, dev, fmt, ##args)
  2302. #define netif_crit(priv, type, dev, fmt, args...) \
  2303. netif_level(crit, priv, type, dev, fmt, ##args)
  2304. #define netif_err(priv, type, dev, fmt, args...) \
  2305. netif_level(err, priv, type, dev, fmt, ##args)
  2306. #define netif_warn(priv, type, dev, fmt, args...) \
  2307. netif_level(warn, priv, type, dev, fmt, ##args)
  2308. #define netif_notice(priv, type, dev, fmt, args...) \
  2309. netif_level(notice, priv, type, dev, fmt, ##args)
  2310. #define netif_info(priv, type, dev, fmt, args...) \
  2311. netif_level(info, priv, type, dev, fmt, ##args)
  2312. #if defined(DEBUG)
  2313. #define netif_dbg(priv, type, dev, format, args...) \
  2314. netif_printk(priv, type, KERN_DEBUG, dev, format, ##args)
  2315. #elif defined(CONFIG_DYNAMIC_DEBUG)
  2316. #define netif_dbg(priv, type, netdev, format, args...) \
  2317. do { \
  2318. if (netif_msg_##type(priv)) \
  2319. dynamic_netdev_dbg(netdev, format, ##args); \
  2320. } while (0)
  2321. #else
  2322. #define netif_dbg(priv, type, dev, format, args...) \
  2323. ({ \
  2324. if (0) \
  2325. netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
  2326. 0; \
  2327. })
  2328. #endif
  2329. #if defined(VERBOSE_DEBUG)
  2330. #define netif_vdbg netif_dbg
  2331. #else
  2332. #define netif_vdbg(priv, type, dev, format, args...) \
  2333. ({ \
  2334. if (0) \
  2335. netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
  2336. 0; \
  2337. })
  2338. #endif
  2339. #endif /* __KERNEL__ */
  2340. #endif /* _LINUX_NETDEVICE_H */