skbuff.h 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550
  1. /*
  2. * Definitions for the 'struct sk_buff' memory handlers.
  3. *
  4. * Authors:
  5. * Alan Cox, <gw4pts@gw4pts.ampr.org>
  6. * Florian La Roche, <rzsfl@rz.uni-sb.de>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. #ifndef _LINUX_SKBUFF_H
  14. #define _LINUX_SKBUFF_H
  15. #include <linux/kernel.h>
  16. #include <linux/kmemcheck.h>
  17. #include <linux/compiler.h>
  18. #include <linux/time.h>
  19. #include <linux/cache.h>
  20. #include <linux/atomic.h>
  21. #include <asm/types.h>
  22. #include <linux/spinlock.h>
  23. #include <linux/net.h>
  24. #include <linux/textsearch.h>
  25. #include <net/checksum.h>
  26. #include <linux/rcupdate.h>
  27. #include <linux/dmaengine.h>
  28. #include <linux/hrtimer.h>
  29. #include <linux/dma-mapping.h>
  30. #include <linux/netdev_features.h>
  31. /* Don't change this without changing skb_csum_unnecessary! */
  32. #define CHECKSUM_NONE 0
  33. #define CHECKSUM_UNNECESSARY 1
  34. #define CHECKSUM_COMPLETE 2
  35. #define CHECKSUM_PARTIAL 3
  36. #define SKB_DATA_ALIGN(X) (((X) + (SMP_CACHE_BYTES - 1)) & \
  37. ~(SMP_CACHE_BYTES - 1))
  38. #define SKB_WITH_OVERHEAD(X) \
  39. ((X) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
  40. #define SKB_MAX_ORDER(X, ORDER) \
  41. SKB_WITH_OVERHEAD((PAGE_SIZE << (ORDER)) - (X))
  42. #define SKB_MAX_HEAD(X) (SKB_MAX_ORDER((X), 0))
  43. #define SKB_MAX_ALLOC (SKB_MAX_ORDER(0, 2))
  44. /* return minimum truesize of one skb containing X bytes of data */
  45. #define SKB_TRUESIZE(X) ((X) + \
  46. SKB_DATA_ALIGN(sizeof(struct sk_buff)) + \
  47. SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
  48. /* A. Checksumming of received packets by device.
  49. *
  50. * NONE: device failed to checksum this packet.
  51. * skb->csum is undefined.
  52. *
  53. * UNNECESSARY: device parsed packet and wouldbe verified checksum.
  54. * skb->csum is undefined.
  55. * It is bad option, but, unfortunately, many of vendors do this.
  56. * Apparently with secret goal to sell you new device, when you
  57. * will add new protocol to your host. F.e. IPv6. 8)
  58. *
  59. * COMPLETE: the most generic way. Device supplied checksum of _all_
  60. * the packet as seen by netif_rx in skb->csum.
  61. * NOTE: Even if device supports only some protocols, but
  62. * is able to produce some skb->csum, it MUST use COMPLETE,
  63. * not UNNECESSARY.
  64. *
  65. * PARTIAL: identical to the case for output below. This may occur
  66. * on a packet received directly from another Linux OS, e.g.,
  67. * a virtualised Linux kernel on the same host. The packet can
  68. * be treated in the same way as UNNECESSARY except that on
  69. * output (i.e., forwarding) the checksum must be filled in
  70. * by the OS or the hardware.
  71. *
  72. * B. Checksumming on output.
  73. *
  74. * NONE: skb is checksummed by protocol or csum is not required.
  75. *
  76. * PARTIAL: device is required to csum packet as seen by hard_start_xmit
  77. * from skb->csum_start to the end and to record the checksum
  78. * at skb->csum_start + skb->csum_offset.
  79. *
  80. * Device must show its capabilities in dev->features, set
  81. * at device setup time.
  82. * NETIF_F_HW_CSUM - it is clever device, it is able to checksum
  83. * everything.
  84. * NETIF_F_IP_CSUM - device is dumb. It is able to csum only
  85. * TCP/UDP over IPv4. Sigh. Vendors like this
  86. * way by an unknown reason. Though, see comment above
  87. * about CHECKSUM_UNNECESSARY. 8)
  88. * NETIF_F_IPV6_CSUM about as dumb as the last one but does IPv6 instead.
  89. *
  90. * UNNECESSARY: device will do per protocol specific csum. Protocol drivers
  91. * that do not want net to perform the checksum calculation should use
  92. * this flag in their outgoing skbs.
  93. * NETIF_F_FCOE_CRC this indicates the device can do FCoE FC CRC
  94. * offload. Correspondingly, the FCoE protocol driver
  95. * stack should use CHECKSUM_UNNECESSARY.
  96. *
  97. * Any questions? No questions, good. --ANK
  98. */
  99. struct net_device;
  100. struct scatterlist;
  101. struct pipe_inode_info;
  102. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  103. struct nf_conntrack {
  104. atomic_t use;
  105. };
  106. #endif
  107. #ifdef CONFIG_BRIDGE_NETFILTER
  108. struct nf_bridge_info {
  109. atomic_t use;
  110. struct net_device *physindev;
  111. struct net_device *physoutdev;
  112. unsigned int mask;
  113. unsigned long data[32 / sizeof(unsigned long)];
  114. };
  115. #endif
  116. struct sk_buff_head {
  117. /* These two members must be first. */
  118. struct sk_buff *next;
  119. struct sk_buff *prev;
  120. __u32 qlen;
  121. spinlock_t lock;
  122. };
  123. struct sk_buff;
  124. /* To allow 64K frame to be packed as single skb without frag_list we
  125. * require 64K/PAGE_SIZE pages plus 1 additional page to allow for
  126. * buffers which do not start on a page boundary.
  127. *
  128. * Since GRO uses frags we allocate at least 16 regardless of page
  129. * size.
  130. */
  131. #if (65536/PAGE_SIZE + 1) < 16
  132. #define MAX_SKB_FRAGS 16UL
  133. #else
  134. #define MAX_SKB_FRAGS (65536/PAGE_SIZE + 1)
  135. #endif
  136. typedef struct skb_frag_struct skb_frag_t;
  137. struct skb_frag_struct {
  138. struct {
  139. struct page *p;
  140. } page;
  141. #if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536)
  142. __u32 page_offset;
  143. __u32 size;
  144. #else
  145. __u16 page_offset;
  146. __u16 size;
  147. #endif
  148. };
  149. static inline unsigned int skb_frag_size(const skb_frag_t *frag)
  150. {
  151. return frag->size;
  152. }
  153. static inline void skb_frag_size_set(skb_frag_t *frag, unsigned int size)
  154. {
  155. frag->size = size;
  156. }
  157. static inline void skb_frag_size_add(skb_frag_t *frag, int delta)
  158. {
  159. frag->size += delta;
  160. }
  161. static inline void skb_frag_size_sub(skb_frag_t *frag, int delta)
  162. {
  163. frag->size -= delta;
  164. }
  165. #define HAVE_HW_TIME_STAMP
  166. /**
  167. * struct skb_shared_hwtstamps - hardware time stamps
  168. * @hwtstamp: hardware time stamp transformed into duration
  169. * since arbitrary point in time
  170. * @syststamp: hwtstamp transformed to system time base
  171. *
  172. * Software time stamps generated by ktime_get_real() are stored in
  173. * skb->tstamp. The relation between the different kinds of time
  174. * stamps is as follows:
  175. *
  176. * syststamp and tstamp can be compared against each other in
  177. * arbitrary combinations. The accuracy of a
  178. * syststamp/tstamp/"syststamp from other device" comparison is
  179. * limited by the accuracy of the transformation into system time
  180. * base. This depends on the device driver and its underlying
  181. * hardware.
  182. *
  183. * hwtstamps can only be compared against other hwtstamps from
  184. * the same device.
  185. *
  186. * This structure is attached to packets as part of the
  187. * &skb_shared_info. Use skb_hwtstamps() to get a pointer.
  188. */
  189. struct skb_shared_hwtstamps {
  190. ktime_t hwtstamp;
  191. ktime_t syststamp;
  192. };
  193. /* Definitions for tx_flags in struct skb_shared_info */
  194. enum {
  195. /* generate hardware time stamp */
  196. SKBTX_HW_TSTAMP = 1 << 0,
  197. /* generate software time stamp */
  198. SKBTX_SW_TSTAMP = 1 << 1,
  199. /* device driver is going to provide hardware time stamp */
  200. SKBTX_IN_PROGRESS = 1 << 2,
  201. /* ensure the originating sk reference is available on driver level */
  202. SKBTX_DRV_NEEDS_SK_REF = 1 << 3,
  203. /* device driver supports TX zero-copy buffers */
  204. SKBTX_DEV_ZEROCOPY = 1 << 4,
  205. /* generate wifi status information (where possible) */
  206. SKBTX_WIFI_STATUS = 1 << 5,
  207. };
  208. /*
  209. * The callback notifies userspace to release buffers when skb DMA is done in
  210. * lower device, the skb last reference should be 0 when calling this.
  211. * The desc is used to track userspace buffer index.
  212. */
  213. struct ubuf_info {
  214. void (*callback)(void *);
  215. void *arg;
  216. unsigned long desc;
  217. };
  218. /* This data is invariant across clones and lives at
  219. * the end of the header data, ie. at skb->end.
  220. */
  221. struct skb_shared_info {
  222. unsigned char nr_frags;
  223. __u8 tx_flags;
  224. unsigned short gso_size;
  225. /* Warning: this field is not always filled in (UFO)! */
  226. unsigned short gso_segs;
  227. unsigned short gso_type;
  228. struct sk_buff *frag_list;
  229. struct skb_shared_hwtstamps hwtstamps;
  230. __be32 ip6_frag_id;
  231. /*
  232. * Warning : all fields before dataref are cleared in __alloc_skb()
  233. */
  234. atomic_t dataref;
  235. /* Intermediate layers must ensure that destructor_arg
  236. * remains valid until skb destructor */
  237. void * destructor_arg;
  238. /* must be last field, see pskb_expand_head() */
  239. skb_frag_t frags[MAX_SKB_FRAGS];
  240. };
  241. /* We divide dataref into two halves. The higher 16 bits hold references
  242. * to the payload part of skb->data. The lower 16 bits hold references to
  243. * the entire skb->data. A clone of a headerless skb holds the length of
  244. * the header in skb->hdr_len.
  245. *
  246. * All users must obey the rule that the skb->data reference count must be
  247. * greater than or equal to the payload reference count.
  248. *
  249. * Holding a reference to the payload part means that the user does not
  250. * care about modifications to the header part of skb->data.
  251. */
  252. #define SKB_DATAREF_SHIFT 16
  253. #define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1)
  254. enum {
  255. SKB_FCLONE_UNAVAILABLE,
  256. SKB_FCLONE_ORIG,
  257. SKB_FCLONE_CLONE,
  258. };
  259. enum {
  260. SKB_GSO_TCPV4 = 1 << 0,
  261. SKB_GSO_UDP = 1 << 1,
  262. /* This indicates the skb is from an untrusted source. */
  263. SKB_GSO_DODGY = 1 << 2,
  264. /* This indicates the tcp segment has CWR set. */
  265. SKB_GSO_TCP_ECN = 1 << 3,
  266. SKB_GSO_TCPV6 = 1 << 4,
  267. SKB_GSO_FCOE = 1 << 5,
  268. };
  269. #if BITS_PER_LONG > 32
  270. #define NET_SKBUFF_DATA_USES_OFFSET 1
  271. #endif
  272. #ifdef NET_SKBUFF_DATA_USES_OFFSET
  273. typedef unsigned int sk_buff_data_t;
  274. #else
  275. typedef unsigned char *sk_buff_data_t;
  276. #endif
  277. #if defined(CONFIG_NF_DEFRAG_IPV4) || defined(CONFIG_NF_DEFRAG_IPV4_MODULE) || \
  278. defined(CONFIG_NF_DEFRAG_IPV6) || defined(CONFIG_NF_DEFRAG_IPV6_MODULE)
  279. #define NET_SKBUFF_NF_DEFRAG_NEEDED 1
  280. #endif
  281. /**
  282. * struct sk_buff - socket buffer
  283. * @next: Next buffer in list
  284. * @prev: Previous buffer in list
  285. * @tstamp: Time we arrived
  286. * @sk: Socket we are owned by
  287. * @dev: Device we arrived on/are leaving by
  288. * @cb: Control buffer. Free for use by every layer. Put private vars here
  289. * @_skb_refdst: destination entry (with norefcount bit)
  290. * @sp: the security path, used for xfrm
  291. * @len: Length of actual data
  292. * @data_len: Data length
  293. * @mac_len: Length of link layer header
  294. * @hdr_len: writable header length of cloned skb
  295. * @csum: Checksum (must include start/offset pair)
  296. * @csum_start: Offset from skb->head where checksumming should start
  297. * @csum_offset: Offset from csum_start where checksum should be stored
  298. * @priority: Packet queueing priority
  299. * @local_df: allow local fragmentation
  300. * @cloned: Head may be cloned (check refcnt to be sure)
  301. * @ip_summed: Driver fed us an IP checksum
  302. * @nohdr: Payload reference only, must not modify header
  303. * @nfctinfo: Relationship of this skb to the connection
  304. * @pkt_type: Packet class
  305. * @fclone: skbuff clone status
  306. * @ipvs_property: skbuff is owned by ipvs
  307. * @peeked: this packet has been seen already, so stats have been
  308. * done for it, don't do them again
  309. * @nf_trace: netfilter packet trace flag
  310. * @protocol: Packet protocol from driver
  311. * @destructor: Destruct function
  312. * @nfct: Associated connection, if any
  313. * @nfct_reasm: netfilter conntrack re-assembly pointer
  314. * @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
  315. * @skb_iif: ifindex of device we arrived on
  316. * @tc_index: Traffic control index
  317. * @tc_verd: traffic control verdict
  318. * @rxhash: the packet hash computed on receive
  319. * @queue_mapping: Queue mapping for multiqueue devices
  320. * @ndisc_nodetype: router type (from link layer)
  321. * @ooo_okay: allow the mapping of a socket to a queue to be changed
  322. * @l4_rxhash: indicate rxhash is a canonical 4-tuple hash over transport
  323. * ports.
  324. * @wifi_acked_valid: wifi_acked was set
  325. * @wifi_acked: whether frame was acked on wifi or not
  326. * @no_fcs: Request NIC to treat last 4 bytes as Ethernet FCS
  327. * @dma_cookie: a cookie to one of several possible DMA operations
  328. * done by skb DMA functions
  329. * @secmark: security marking
  330. * @mark: Generic packet mark
  331. * @dropcount: total number of sk_receive_queue overflows
  332. * @vlan_tci: vlan tag control information
  333. * @transport_header: Transport layer header
  334. * @network_header: Network layer header
  335. * @mac_header: Link layer header
  336. * @tail: Tail pointer
  337. * @end: End pointer
  338. * @head: Head of buffer
  339. * @data: Data head pointer
  340. * @truesize: Buffer size
  341. * @users: User count - see {datagram,tcp}.c
  342. */
  343. struct sk_buff {
  344. /* These two members must be first. */
  345. struct sk_buff *next;
  346. struct sk_buff *prev;
  347. ktime_t tstamp;
  348. struct sock *sk;
  349. struct net_device *dev;
  350. /*
  351. * This is the control buffer. It is free to use for every
  352. * layer. Please put your private variables there. If you
  353. * want to keep them across layers you have to do a skb_clone()
  354. * first. This is owned by whoever has the skb queued ATM.
  355. */
  356. char cb[48] __aligned(8);
  357. unsigned long _skb_refdst;
  358. #ifdef CONFIG_XFRM
  359. struct sec_path *sp;
  360. #endif
  361. unsigned int len,
  362. data_len;
  363. __u16 mac_len,
  364. hdr_len;
  365. union {
  366. __wsum csum;
  367. struct {
  368. __u16 csum_start;
  369. __u16 csum_offset;
  370. };
  371. };
  372. __u32 priority;
  373. kmemcheck_bitfield_begin(flags1);
  374. __u8 local_df:1,
  375. cloned:1,
  376. ip_summed:2,
  377. nohdr:1,
  378. nfctinfo:3;
  379. __u8 pkt_type:3,
  380. fclone:2,
  381. ipvs_property:1,
  382. peeked:1,
  383. nf_trace:1;
  384. kmemcheck_bitfield_end(flags1);
  385. __be16 protocol;
  386. void (*destructor)(struct sk_buff *skb);
  387. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  388. struct nf_conntrack *nfct;
  389. #endif
  390. #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
  391. struct sk_buff *nfct_reasm;
  392. #endif
  393. #ifdef CONFIG_BRIDGE_NETFILTER
  394. struct nf_bridge_info *nf_bridge;
  395. #endif
  396. int skb_iif;
  397. __u32 rxhash;
  398. __u16 vlan_tci;
  399. #ifdef CONFIG_NET_SCHED
  400. __u16 tc_index; /* traffic control index */
  401. #ifdef CONFIG_NET_CLS_ACT
  402. __u16 tc_verd; /* traffic control verdict */
  403. #endif
  404. #endif
  405. __u16 queue_mapping;
  406. kmemcheck_bitfield_begin(flags2);
  407. #ifdef CONFIG_IPV6_NDISC_NODETYPE
  408. __u8 ndisc_nodetype:2;
  409. #endif
  410. __u8 ooo_okay:1;
  411. __u8 l4_rxhash:1;
  412. __u8 wifi_acked_valid:1;
  413. __u8 wifi_acked:1;
  414. __u8 no_fcs:1;
  415. /* 9/11 bit hole (depending on ndisc_nodetype presence) */
  416. kmemcheck_bitfield_end(flags2);
  417. #ifdef CONFIG_NET_DMA
  418. dma_cookie_t dma_cookie;
  419. #endif
  420. #ifdef CONFIG_NETWORK_SECMARK
  421. __u32 secmark;
  422. #endif
  423. union {
  424. __u32 mark;
  425. __u32 dropcount;
  426. };
  427. sk_buff_data_t transport_header;
  428. sk_buff_data_t network_header;
  429. sk_buff_data_t mac_header;
  430. /* These elements must be at the end, see alloc_skb() for details. */
  431. sk_buff_data_t tail;
  432. sk_buff_data_t end;
  433. unsigned char *head,
  434. *data;
  435. unsigned int truesize;
  436. atomic_t users;
  437. };
  438. #ifdef __KERNEL__
  439. /*
  440. * Handling routines are only of interest to the kernel
  441. */
  442. #include <linux/slab.h>
  443. #include <asm/system.h>
  444. /*
  445. * skb might have a dst pointer attached, refcounted or not.
  446. * _skb_refdst low order bit is set if refcount was _not_ taken
  447. */
  448. #define SKB_DST_NOREF 1UL
  449. #define SKB_DST_PTRMASK ~(SKB_DST_NOREF)
  450. /**
  451. * skb_dst - returns skb dst_entry
  452. * @skb: buffer
  453. *
  454. * Returns skb dst_entry, regardless of reference taken or not.
  455. */
  456. static inline struct dst_entry *skb_dst(const struct sk_buff *skb)
  457. {
  458. /* If refdst was not refcounted, check we still are in a
  459. * rcu_read_lock section
  460. */
  461. WARN_ON((skb->_skb_refdst & SKB_DST_NOREF) &&
  462. !rcu_read_lock_held() &&
  463. !rcu_read_lock_bh_held());
  464. return (struct dst_entry *)(skb->_skb_refdst & SKB_DST_PTRMASK);
  465. }
  466. /**
  467. * skb_dst_set - sets skb dst
  468. * @skb: buffer
  469. * @dst: dst entry
  470. *
  471. * Sets skb dst, assuming a reference was taken on dst and should
  472. * be released by skb_dst_drop()
  473. */
  474. static inline void skb_dst_set(struct sk_buff *skb, struct dst_entry *dst)
  475. {
  476. skb->_skb_refdst = (unsigned long)dst;
  477. }
  478. extern void skb_dst_set_noref(struct sk_buff *skb, struct dst_entry *dst);
  479. /**
  480. * skb_dst_is_noref - Test if skb dst isn't refcounted
  481. * @skb: buffer
  482. */
  483. static inline bool skb_dst_is_noref(const struct sk_buff *skb)
  484. {
  485. return (skb->_skb_refdst & SKB_DST_NOREF) && skb_dst(skb);
  486. }
  487. static inline struct rtable *skb_rtable(const struct sk_buff *skb)
  488. {
  489. return (struct rtable *)skb_dst(skb);
  490. }
  491. extern void kfree_skb(struct sk_buff *skb);
  492. extern void consume_skb(struct sk_buff *skb);
  493. extern void __kfree_skb(struct sk_buff *skb);
  494. extern struct sk_buff *__alloc_skb(unsigned int size,
  495. gfp_t priority, int fclone, int node);
  496. extern struct sk_buff *build_skb(void *data);
  497. static inline struct sk_buff *alloc_skb(unsigned int size,
  498. gfp_t priority)
  499. {
  500. return __alloc_skb(size, priority, 0, NUMA_NO_NODE);
  501. }
  502. static inline struct sk_buff *alloc_skb_fclone(unsigned int size,
  503. gfp_t priority)
  504. {
  505. return __alloc_skb(size, priority, 1, NUMA_NO_NODE);
  506. }
  507. extern void skb_recycle(struct sk_buff *skb);
  508. extern bool skb_recycle_check(struct sk_buff *skb, int skb_size);
  509. extern struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src);
  510. extern int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask);
  511. extern struct sk_buff *skb_clone(struct sk_buff *skb,
  512. gfp_t priority);
  513. extern struct sk_buff *skb_copy(const struct sk_buff *skb,
  514. gfp_t priority);
  515. extern struct sk_buff *__pskb_copy(struct sk_buff *skb,
  516. int headroom, gfp_t gfp_mask);
  517. extern int pskb_expand_head(struct sk_buff *skb,
  518. int nhead, int ntail,
  519. gfp_t gfp_mask);
  520. extern struct sk_buff *skb_realloc_headroom(struct sk_buff *skb,
  521. unsigned int headroom);
  522. extern struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
  523. int newheadroom, int newtailroom,
  524. gfp_t priority);
  525. extern int skb_to_sgvec(struct sk_buff *skb,
  526. struct scatterlist *sg, int offset,
  527. int len);
  528. extern int skb_cow_data(struct sk_buff *skb, int tailbits,
  529. struct sk_buff **trailer);
  530. extern int skb_pad(struct sk_buff *skb, int pad);
  531. #define dev_kfree_skb(a) consume_skb(a)
  532. extern int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
  533. int getfrag(void *from, char *to, int offset,
  534. int len,int odd, struct sk_buff *skb),
  535. void *from, int length);
  536. struct skb_seq_state {
  537. __u32 lower_offset;
  538. __u32 upper_offset;
  539. __u32 frag_idx;
  540. __u32 stepped_offset;
  541. struct sk_buff *root_skb;
  542. struct sk_buff *cur_skb;
  543. __u8 *frag_data;
  544. };
  545. extern void skb_prepare_seq_read(struct sk_buff *skb,
  546. unsigned int from, unsigned int to,
  547. struct skb_seq_state *st);
  548. extern unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
  549. struct skb_seq_state *st);
  550. extern void skb_abort_seq_read(struct skb_seq_state *st);
  551. extern unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
  552. unsigned int to, struct ts_config *config,
  553. struct ts_state *state);
  554. extern void __skb_get_rxhash(struct sk_buff *skb);
  555. static inline __u32 skb_get_rxhash(struct sk_buff *skb)
  556. {
  557. if (!skb->rxhash)
  558. __skb_get_rxhash(skb);
  559. return skb->rxhash;
  560. }
  561. #ifdef NET_SKBUFF_DATA_USES_OFFSET
  562. static inline unsigned char *skb_end_pointer(const struct sk_buff *skb)
  563. {
  564. return skb->head + skb->end;
  565. }
  566. #else
  567. static inline unsigned char *skb_end_pointer(const struct sk_buff *skb)
  568. {
  569. return skb->end;
  570. }
  571. #endif
  572. /* Internal */
  573. #define skb_shinfo(SKB) ((struct skb_shared_info *)(skb_end_pointer(SKB)))
  574. static inline struct skb_shared_hwtstamps *skb_hwtstamps(struct sk_buff *skb)
  575. {
  576. return &skb_shinfo(skb)->hwtstamps;
  577. }
  578. /**
  579. * skb_queue_empty - check if a queue is empty
  580. * @list: queue head
  581. *
  582. * Returns true if the queue is empty, false otherwise.
  583. */
  584. static inline int skb_queue_empty(const struct sk_buff_head *list)
  585. {
  586. return list->next == (struct sk_buff *)list;
  587. }
  588. /**
  589. * skb_queue_is_last - check if skb is the last entry in the queue
  590. * @list: queue head
  591. * @skb: buffer
  592. *
  593. * Returns true if @skb is the last buffer on the list.
  594. */
  595. static inline bool skb_queue_is_last(const struct sk_buff_head *list,
  596. const struct sk_buff *skb)
  597. {
  598. return skb->next == (struct sk_buff *)list;
  599. }
  600. /**
  601. * skb_queue_is_first - check if skb is the first entry in the queue
  602. * @list: queue head
  603. * @skb: buffer
  604. *
  605. * Returns true if @skb is the first buffer on the list.
  606. */
  607. static inline bool skb_queue_is_first(const struct sk_buff_head *list,
  608. const struct sk_buff *skb)
  609. {
  610. return skb->prev == (struct sk_buff *)list;
  611. }
  612. /**
  613. * skb_queue_next - return the next packet in the queue
  614. * @list: queue head
  615. * @skb: current buffer
  616. *
  617. * Return the next packet in @list after @skb. It is only valid to
  618. * call this if skb_queue_is_last() evaluates to false.
  619. */
  620. static inline struct sk_buff *skb_queue_next(const struct sk_buff_head *list,
  621. const struct sk_buff *skb)
  622. {
  623. /* This BUG_ON may seem severe, but if we just return then we
  624. * are going to dereference garbage.
  625. */
  626. BUG_ON(skb_queue_is_last(list, skb));
  627. return skb->next;
  628. }
  629. /**
  630. * skb_queue_prev - return the prev packet in the queue
  631. * @list: queue head
  632. * @skb: current buffer
  633. *
  634. * Return the prev packet in @list before @skb. It is only valid to
  635. * call this if skb_queue_is_first() evaluates to false.
  636. */
  637. static inline struct sk_buff *skb_queue_prev(const struct sk_buff_head *list,
  638. const struct sk_buff *skb)
  639. {
  640. /* This BUG_ON may seem severe, but if we just return then we
  641. * are going to dereference garbage.
  642. */
  643. BUG_ON(skb_queue_is_first(list, skb));
  644. return skb->prev;
  645. }
  646. /**
  647. * skb_get - reference buffer
  648. * @skb: buffer to reference
  649. *
  650. * Makes another reference to a socket buffer and returns a pointer
  651. * to the buffer.
  652. */
  653. static inline struct sk_buff *skb_get(struct sk_buff *skb)
  654. {
  655. atomic_inc(&skb->users);
  656. return skb;
  657. }
  658. /*
  659. * If users == 1, we are the only owner and are can avoid redundant
  660. * atomic change.
  661. */
  662. /**
  663. * skb_cloned - is the buffer a clone
  664. * @skb: buffer to check
  665. *
  666. * Returns true if the buffer was generated with skb_clone() and is
  667. * one of multiple shared copies of the buffer. Cloned buffers are
  668. * shared data so must not be written to under normal circumstances.
  669. */
  670. static inline int skb_cloned(const struct sk_buff *skb)
  671. {
  672. return skb->cloned &&
  673. (atomic_read(&skb_shinfo(skb)->dataref) & SKB_DATAREF_MASK) != 1;
  674. }
  675. /**
  676. * skb_header_cloned - is the header a clone
  677. * @skb: buffer to check
  678. *
  679. * Returns true if modifying the header part of the buffer requires
  680. * the data to be copied.
  681. */
  682. static inline int skb_header_cloned(const struct sk_buff *skb)
  683. {
  684. int dataref;
  685. if (!skb->cloned)
  686. return 0;
  687. dataref = atomic_read(&skb_shinfo(skb)->dataref);
  688. dataref = (dataref & SKB_DATAREF_MASK) - (dataref >> SKB_DATAREF_SHIFT);
  689. return dataref != 1;
  690. }
  691. /**
  692. * skb_header_release - release reference to header
  693. * @skb: buffer to operate on
  694. *
  695. * Drop a reference to the header part of the buffer. This is done
  696. * by acquiring a payload reference. You must not read from the header
  697. * part of skb->data after this.
  698. */
  699. static inline void skb_header_release(struct sk_buff *skb)
  700. {
  701. BUG_ON(skb->nohdr);
  702. skb->nohdr = 1;
  703. atomic_add(1 << SKB_DATAREF_SHIFT, &skb_shinfo(skb)->dataref);
  704. }
  705. /**
  706. * skb_shared - is the buffer shared
  707. * @skb: buffer to check
  708. *
  709. * Returns true if more than one person has a reference to this
  710. * buffer.
  711. */
  712. static inline int skb_shared(const struct sk_buff *skb)
  713. {
  714. return atomic_read(&skb->users) != 1;
  715. }
  716. /**
  717. * skb_share_check - check if buffer is shared and if so clone it
  718. * @skb: buffer to check
  719. * @pri: priority for memory allocation
  720. *
  721. * If the buffer is shared the buffer is cloned and the old copy
  722. * drops a reference. A new clone with a single reference is returned.
  723. * If the buffer is not shared the original buffer is returned. When
  724. * being called from interrupt status or with spinlocks held pri must
  725. * be GFP_ATOMIC.
  726. *
  727. * NULL is returned on a memory allocation failure.
  728. */
  729. static inline struct sk_buff *skb_share_check(struct sk_buff *skb,
  730. gfp_t pri)
  731. {
  732. might_sleep_if(pri & __GFP_WAIT);
  733. if (skb_shared(skb)) {
  734. struct sk_buff *nskb = skb_clone(skb, pri);
  735. kfree_skb(skb);
  736. skb = nskb;
  737. }
  738. return skb;
  739. }
  740. /*
  741. * Copy shared buffers into a new sk_buff. We effectively do COW on
  742. * packets to handle cases where we have a local reader and forward
  743. * and a couple of other messy ones. The normal one is tcpdumping
  744. * a packet thats being forwarded.
  745. */
  746. /**
  747. * skb_unshare - make a copy of a shared buffer
  748. * @skb: buffer to check
  749. * @pri: priority for memory allocation
  750. *
  751. * If the socket buffer is a clone then this function creates a new
  752. * copy of the data, drops a reference count on the old copy and returns
  753. * the new copy with the reference count at 1. If the buffer is not a clone
  754. * the original buffer is returned. When called with a spinlock held or
  755. * from interrupt state @pri must be %GFP_ATOMIC
  756. *
  757. * %NULL is returned on a memory allocation failure.
  758. */
  759. static inline struct sk_buff *skb_unshare(struct sk_buff *skb,
  760. gfp_t pri)
  761. {
  762. might_sleep_if(pri & __GFP_WAIT);
  763. if (skb_cloned(skb)) {
  764. struct sk_buff *nskb = skb_copy(skb, pri);
  765. kfree_skb(skb); /* Free our shared copy */
  766. skb = nskb;
  767. }
  768. return skb;
  769. }
  770. /**
  771. * skb_peek - peek at the head of an &sk_buff_head
  772. * @list_: list to peek at
  773. *
  774. * Peek an &sk_buff. Unlike most other operations you _MUST_
  775. * be careful with this one. A peek leaves the buffer on the
  776. * list and someone else may run off with it. You must hold
  777. * the appropriate locks or have a private queue to do this.
  778. *
  779. * Returns %NULL for an empty list or a pointer to the head element.
  780. * The reference count is not incremented and the reference is therefore
  781. * volatile. Use with caution.
  782. */
  783. static inline struct sk_buff *skb_peek(const struct sk_buff_head *list_)
  784. {
  785. struct sk_buff *list = ((const struct sk_buff *)list_)->next;
  786. if (list == (struct sk_buff *)list_)
  787. list = NULL;
  788. return list;
  789. }
  790. /**
  791. * skb_peek_next - peek skb following the given one from a queue
  792. * @skb: skb to start from
  793. * @list_: list to peek at
  794. *
  795. * Returns %NULL when the end of the list is met or a pointer to the
  796. * next element. The reference count is not incremented and the
  797. * reference is therefore volatile. Use with caution.
  798. */
  799. static inline struct sk_buff *skb_peek_next(struct sk_buff *skb,
  800. const struct sk_buff_head *list_)
  801. {
  802. struct sk_buff *next = skb->next;
  803. if (next == (struct sk_buff *)list_)
  804. next = NULL;
  805. return next;
  806. }
  807. /**
  808. * skb_peek_tail - peek at the tail of an &sk_buff_head
  809. * @list_: list to peek at
  810. *
  811. * Peek an &sk_buff. Unlike most other operations you _MUST_
  812. * be careful with this one. A peek leaves the buffer on the
  813. * list and someone else may run off with it. You must hold
  814. * the appropriate locks or have a private queue to do this.
  815. *
  816. * Returns %NULL for an empty list or a pointer to the tail element.
  817. * The reference count is not incremented and the reference is therefore
  818. * volatile. Use with caution.
  819. */
  820. static inline struct sk_buff *skb_peek_tail(const struct sk_buff_head *list_)
  821. {
  822. struct sk_buff *list = ((const struct sk_buff *)list_)->prev;
  823. if (list == (struct sk_buff *)list_)
  824. list = NULL;
  825. return list;
  826. }
  827. /**
  828. * skb_queue_len - get queue length
  829. * @list_: list to measure
  830. *
  831. * Return the length of an &sk_buff queue.
  832. */
  833. static inline __u32 skb_queue_len(const struct sk_buff_head *list_)
  834. {
  835. return list_->qlen;
  836. }
  837. /**
  838. * __skb_queue_head_init - initialize non-spinlock portions of sk_buff_head
  839. * @list: queue to initialize
  840. *
  841. * This initializes only the list and queue length aspects of
  842. * an sk_buff_head object. This allows to initialize the list
  843. * aspects of an sk_buff_head without reinitializing things like
  844. * the spinlock. It can also be used for on-stack sk_buff_head
  845. * objects where the spinlock is known to not be used.
  846. */
  847. static inline void __skb_queue_head_init(struct sk_buff_head *list)
  848. {
  849. list->prev = list->next = (struct sk_buff *)list;
  850. list->qlen = 0;
  851. }
  852. /*
  853. * This function creates a split out lock class for each invocation;
  854. * this is needed for now since a whole lot of users of the skb-queue
  855. * infrastructure in drivers have different locking usage (in hardirq)
  856. * than the networking core (in softirq only). In the long run either the
  857. * network layer or drivers should need annotation to consolidate the
  858. * main types of usage into 3 classes.
  859. */
  860. static inline void skb_queue_head_init(struct sk_buff_head *list)
  861. {
  862. spin_lock_init(&list->lock);
  863. __skb_queue_head_init(list);
  864. }
  865. static inline void skb_queue_head_init_class(struct sk_buff_head *list,
  866. struct lock_class_key *class)
  867. {
  868. skb_queue_head_init(list);
  869. lockdep_set_class(&list->lock, class);
  870. }
  871. /*
  872. * Insert an sk_buff on a list.
  873. *
  874. * The "__skb_xxxx()" functions are the non-atomic ones that
  875. * can only be called with interrupts disabled.
  876. */
  877. extern void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list);
  878. static inline void __skb_insert(struct sk_buff *newsk,
  879. struct sk_buff *prev, struct sk_buff *next,
  880. struct sk_buff_head *list)
  881. {
  882. newsk->next = next;
  883. newsk->prev = prev;
  884. next->prev = prev->next = newsk;
  885. list->qlen++;
  886. }
  887. static inline void __skb_queue_splice(const struct sk_buff_head *list,
  888. struct sk_buff *prev,
  889. struct sk_buff *next)
  890. {
  891. struct sk_buff *first = list->next;
  892. struct sk_buff *last = list->prev;
  893. first->prev = prev;
  894. prev->next = first;
  895. last->next = next;
  896. next->prev = last;
  897. }
  898. /**
  899. * skb_queue_splice - join two skb lists, this is designed for stacks
  900. * @list: the new list to add
  901. * @head: the place to add it in the first list
  902. */
  903. static inline void skb_queue_splice(const struct sk_buff_head *list,
  904. struct sk_buff_head *head)
  905. {
  906. if (!skb_queue_empty(list)) {
  907. __skb_queue_splice(list, (struct sk_buff *) head, head->next);
  908. head->qlen += list->qlen;
  909. }
  910. }
  911. /**
  912. * skb_queue_splice - join two skb lists and reinitialise the emptied list
  913. * @list: the new list to add
  914. * @head: the place to add it in the first list
  915. *
  916. * The list at @list is reinitialised
  917. */
  918. static inline void skb_queue_splice_init(struct sk_buff_head *list,
  919. struct sk_buff_head *head)
  920. {
  921. if (!skb_queue_empty(list)) {
  922. __skb_queue_splice(list, (struct sk_buff *) head, head->next);
  923. head->qlen += list->qlen;
  924. __skb_queue_head_init(list);
  925. }
  926. }
  927. /**
  928. * skb_queue_splice_tail - join two skb lists, each list being a queue
  929. * @list: the new list to add
  930. * @head: the place to add it in the first list
  931. */
  932. static inline void skb_queue_splice_tail(const struct sk_buff_head *list,
  933. struct sk_buff_head *head)
  934. {
  935. if (!skb_queue_empty(list)) {
  936. __skb_queue_splice(list, head->prev, (struct sk_buff *) head);
  937. head->qlen += list->qlen;
  938. }
  939. }
  940. /**
  941. * skb_queue_splice_tail - join two skb lists and reinitialise the emptied list
  942. * @list: the new list to add
  943. * @head: the place to add it in the first list
  944. *
  945. * Each of the lists is a queue.
  946. * The list at @list is reinitialised
  947. */
  948. static inline void skb_queue_splice_tail_init(struct sk_buff_head *list,
  949. struct sk_buff_head *head)
  950. {
  951. if (!skb_queue_empty(list)) {
  952. __skb_queue_splice(list, head->prev, (struct sk_buff *) head);
  953. head->qlen += list->qlen;
  954. __skb_queue_head_init(list);
  955. }
  956. }
  957. /**
  958. * __skb_queue_after - queue a buffer at the list head
  959. * @list: list to use
  960. * @prev: place after this buffer
  961. * @newsk: buffer to queue
  962. *
  963. * Queue a buffer int the middle of a list. This function takes no locks
  964. * and you must therefore hold required locks before calling it.
  965. *
  966. * A buffer cannot be placed on two lists at the same time.
  967. */
  968. static inline void __skb_queue_after(struct sk_buff_head *list,
  969. struct sk_buff *prev,
  970. struct sk_buff *newsk)
  971. {
  972. __skb_insert(newsk, prev, prev->next, list);
  973. }
  974. extern void skb_append(struct sk_buff *old, struct sk_buff *newsk,
  975. struct sk_buff_head *list);
  976. static inline void __skb_queue_before(struct sk_buff_head *list,
  977. struct sk_buff *next,
  978. struct sk_buff *newsk)
  979. {
  980. __skb_insert(newsk, next->prev, next, list);
  981. }
  982. /**
  983. * __skb_queue_head - queue a buffer at the list head
  984. * @list: list to use
  985. * @newsk: buffer to queue
  986. *
  987. * Queue a buffer at the start of a list. This function takes no locks
  988. * and you must therefore hold required locks before calling it.
  989. *
  990. * A buffer cannot be placed on two lists at the same time.
  991. */
  992. extern void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk);
  993. static inline void __skb_queue_head(struct sk_buff_head *list,
  994. struct sk_buff *newsk)
  995. {
  996. __skb_queue_after(list, (struct sk_buff *)list, newsk);
  997. }
  998. /**
  999. * __skb_queue_tail - queue a buffer at the list tail
  1000. * @list: list to use
  1001. * @newsk: buffer to queue
  1002. *
  1003. * Queue a buffer at the end of a list. This function takes no locks
  1004. * and you must therefore hold required locks before calling it.
  1005. *
  1006. * A buffer cannot be placed on two lists at the same time.
  1007. */
  1008. extern void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk);
  1009. static inline void __skb_queue_tail(struct sk_buff_head *list,
  1010. struct sk_buff *newsk)
  1011. {
  1012. __skb_queue_before(list, (struct sk_buff *)list, newsk);
  1013. }
  1014. /*
  1015. * remove sk_buff from list. _Must_ be called atomically, and with
  1016. * the list known..
  1017. */
  1018. extern void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list);
  1019. static inline void __skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
  1020. {
  1021. struct sk_buff *next, *prev;
  1022. list->qlen--;
  1023. next = skb->next;
  1024. prev = skb->prev;
  1025. skb->next = skb->prev = NULL;
  1026. next->prev = prev;
  1027. prev->next = next;
  1028. }
  1029. /**
  1030. * __skb_dequeue - remove from the head of the queue
  1031. * @list: list to dequeue from
  1032. *
  1033. * Remove the head of the list. This function does not take any locks
  1034. * so must be used with appropriate locks held only. The head item is
  1035. * returned or %NULL if the list is empty.
  1036. */
  1037. extern struct sk_buff *skb_dequeue(struct sk_buff_head *list);
  1038. static inline struct sk_buff *__skb_dequeue(struct sk_buff_head *list)
  1039. {
  1040. struct sk_buff *skb = skb_peek(list);
  1041. if (skb)
  1042. __skb_unlink(skb, list);
  1043. return skb;
  1044. }
  1045. /**
  1046. * __skb_dequeue_tail - remove from the tail of the queue
  1047. * @list: list to dequeue from
  1048. *
  1049. * Remove the tail of the list. This function does not take any locks
  1050. * so must be used with appropriate locks held only. The tail item is
  1051. * returned or %NULL if the list is empty.
  1052. */
  1053. extern struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list);
  1054. static inline struct sk_buff *__skb_dequeue_tail(struct sk_buff_head *list)
  1055. {
  1056. struct sk_buff *skb = skb_peek_tail(list);
  1057. if (skb)
  1058. __skb_unlink(skb, list);
  1059. return skb;
  1060. }
  1061. static inline bool skb_is_nonlinear(const struct sk_buff *skb)
  1062. {
  1063. return skb->data_len;
  1064. }
  1065. static inline unsigned int skb_headlen(const struct sk_buff *skb)
  1066. {
  1067. return skb->len - skb->data_len;
  1068. }
  1069. static inline int skb_pagelen(const struct sk_buff *skb)
  1070. {
  1071. int i, len = 0;
  1072. for (i = (int)skb_shinfo(skb)->nr_frags - 1; i >= 0; i--)
  1073. len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
  1074. return len + skb_headlen(skb);
  1075. }
  1076. /**
  1077. * __skb_fill_page_desc - initialise a paged fragment in an skb
  1078. * @skb: buffer containing fragment to be initialised
  1079. * @i: paged fragment index to initialise
  1080. * @page: the page to use for this fragment
  1081. * @off: the offset to the data with @page
  1082. * @size: the length of the data
  1083. *
  1084. * Initialises the @i'th fragment of @skb to point to &size bytes at
  1085. * offset @off within @page.
  1086. *
  1087. * Does not take any additional reference on the fragment.
  1088. */
  1089. static inline void __skb_fill_page_desc(struct sk_buff *skb, int i,
  1090. struct page *page, int off, int size)
  1091. {
  1092. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  1093. frag->page.p = page;
  1094. frag->page_offset = off;
  1095. skb_frag_size_set(frag, size);
  1096. }
  1097. /**
  1098. * skb_fill_page_desc - initialise a paged fragment in an skb
  1099. * @skb: buffer containing fragment to be initialised
  1100. * @i: paged fragment index to initialise
  1101. * @page: the page to use for this fragment
  1102. * @off: the offset to the data with @page
  1103. * @size: the length of the data
  1104. *
  1105. * As per __skb_fill_page_desc() -- initialises the @i'th fragment of
  1106. * @skb to point to &size bytes at offset @off within @page. In
  1107. * addition updates @skb such that @i is the last fragment.
  1108. *
  1109. * Does not take any additional reference on the fragment.
  1110. */
  1111. static inline void skb_fill_page_desc(struct sk_buff *skb, int i,
  1112. struct page *page, int off, int size)
  1113. {
  1114. __skb_fill_page_desc(skb, i, page, off, size);
  1115. skb_shinfo(skb)->nr_frags = i + 1;
  1116. }
  1117. extern void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page,
  1118. int off, int size);
  1119. #define SKB_PAGE_ASSERT(skb) BUG_ON(skb_shinfo(skb)->nr_frags)
  1120. #define SKB_FRAG_ASSERT(skb) BUG_ON(skb_has_frag_list(skb))
  1121. #define SKB_LINEAR_ASSERT(skb) BUG_ON(skb_is_nonlinear(skb))
  1122. #ifdef NET_SKBUFF_DATA_USES_OFFSET
  1123. static inline unsigned char *skb_tail_pointer(const struct sk_buff *skb)
  1124. {
  1125. return skb->head + skb->tail;
  1126. }
  1127. static inline void skb_reset_tail_pointer(struct sk_buff *skb)
  1128. {
  1129. skb->tail = skb->data - skb->head;
  1130. }
  1131. static inline void skb_set_tail_pointer(struct sk_buff *skb, const int offset)
  1132. {
  1133. skb_reset_tail_pointer(skb);
  1134. skb->tail += offset;
  1135. }
  1136. #else /* NET_SKBUFF_DATA_USES_OFFSET */
  1137. static inline unsigned char *skb_tail_pointer(const struct sk_buff *skb)
  1138. {
  1139. return skb->tail;
  1140. }
  1141. static inline void skb_reset_tail_pointer(struct sk_buff *skb)
  1142. {
  1143. skb->tail = skb->data;
  1144. }
  1145. static inline void skb_set_tail_pointer(struct sk_buff *skb, const int offset)
  1146. {
  1147. skb->tail = skb->data + offset;
  1148. }
  1149. #endif /* NET_SKBUFF_DATA_USES_OFFSET */
  1150. /*
  1151. * Add data to an sk_buff
  1152. */
  1153. extern unsigned char *skb_put(struct sk_buff *skb, unsigned int len);
  1154. static inline unsigned char *__skb_put(struct sk_buff *skb, unsigned int len)
  1155. {
  1156. unsigned char *tmp = skb_tail_pointer(skb);
  1157. SKB_LINEAR_ASSERT(skb);
  1158. skb->tail += len;
  1159. skb->len += len;
  1160. return tmp;
  1161. }
  1162. extern unsigned char *skb_push(struct sk_buff *skb, unsigned int len);
  1163. static inline unsigned char *__skb_push(struct sk_buff *skb, unsigned int len)
  1164. {
  1165. skb->data -= len;
  1166. skb->len += len;
  1167. return skb->data;
  1168. }
  1169. extern unsigned char *skb_pull(struct sk_buff *skb, unsigned int len);
  1170. static inline unsigned char *__skb_pull(struct sk_buff *skb, unsigned int len)
  1171. {
  1172. skb->len -= len;
  1173. BUG_ON(skb->len < skb->data_len);
  1174. return skb->data += len;
  1175. }
  1176. static inline unsigned char *skb_pull_inline(struct sk_buff *skb, unsigned int len)
  1177. {
  1178. return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
  1179. }
  1180. extern unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta);
  1181. static inline unsigned char *__pskb_pull(struct sk_buff *skb, unsigned int len)
  1182. {
  1183. if (len > skb_headlen(skb) &&
  1184. !__pskb_pull_tail(skb, len - skb_headlen(skb)))
  1185. return NULL;
  1186. skb->len -= len;
  1187. return skb->data += len;
  1188. }
  1189. static inline unsigned char *pskb_pull(struct sk_buff *skb, unsigned int len)
  1190. {
  1191. return unlikely(len > skb->len) ? NULL : __pskb_pull(skb, len);
  1192. }
  1193. static inline int pskb_may_pull(struct sk_buff *skb, unsigned int len)
  1194. {
  1195. if (likely(len <= skb_headlen(skb)))
  1196. return 1;
  1197. if (unlikely(len > skb->len))
  1198. return 0;
  1199. return __pskb_pull_tail(skb, len - skb_headlen(skb)) != NULL;
  1200. }
  1201. /**
  1202. * skb_headroom - bytes at buffer head
  1203. * @skb: buffer to check
  1204. *
  1205. * Return the number of bytes of free space at the head of an &sk_buff.
  1206. */
  1207. static inline unsigned int skb_headroom(const struct sk_buff *skb)
  1208. {
  1209. return skb->data - skb->head;
  1210. }
  1211. /**
  1212. * skb_tailroom - bytes at buffer end
  1213. * @skb: buffer to check
  1214. *
  1215. * Return the number of bytes of free space at the tail of an sk_buff
  1216. */
  1217. static inline int skb_tailroom(const struct sk_buff *skb)
  1218. {
  1219. return skb_is_nonlinear(skb) ? 0 : skb->end - skb->tail;
  1220. }
  1221. /**
  1222. * skb_reserve - adjust headroom
  1223. * @skb: buffer to alter
  1224. * @len: bytes to move
  1225. *
  1226. * Increase the headroom of an empty &sk_buff by reducing the tail
  1227. * room. This is only allowed for an empty buffer.
  1228. */
  1229. static inline void skb_reserve(struct sk_buff *skb, int len)
  1230. {
  1231. skb->data += len;
  1232. skb->tail += len;
  1233. }
  1234. static inline void skb_reset_mac_len(struct sk_buff *skb)
  1235. {
  1236. skb->mac_len = skb->network_header - skb->mac_header;
  1237. }
  1238. #ifdef NET_SKBUFF_DATA_USES_OFFSET
  1239. static inline unsigned char *skb_transport_header(const struct sk_buff *skb)
  1240. {
  1241. return skb->head + skb->transport_header;
  1242. }
  1243. static inline void skb_reset_transport_header(struct sk_buff *skb)
  1244. {
  1245. skb->transport_header = skb->data - skb->head;
  1246. }
  1247. static inline void skb_set_transport_header(struct sk_buff *skb,
  1248. const int offset)
  1249. {
  1250. skb_reset_transport_header(skb);
  1251. skb->transport_header += offset;
  1252. }
  1253. static inline unsigned char *skb_network_header(const struct sk_buff *skb)
  1254. {
  1255. return skb->head + skb->network_header;
  1256. }
  1257. static inline void skb_reset_network_header(struct sk_buff *skb)
  1258. {
  1259. skb->network_header = skb->data - skb->head;
  1260. }
  1261. static inline void skb_set_network_header(struct sk_buff *skb, const int offset)
  1262. {
  1263. skb_reset_network_header(skb);
  1264. skb->network_header += offset;
  1265. }
  1266. static inline unsigned char *skb_mac_header(const struct sk_buff *skb)
  1267. {
  1268. return skb->head + skb->mac_header;
  1269. }
  1270. static inline int skb_mac_header_was_set(const struct sk_buff *skb)
  1271. {
  1272. return skb->mac_header != ~0U;
  1273. }
  1274. static inline void skb_reset_mac_header(struct sk_buff *skb)
  1275. {
  1276. skb->mac_header = skb->data - skb->head;
  1277. }
  1278. static inline void skb_set_mac_header(struct sk_buff *skb, const int offset)
  1279. {
  1280. skb_reset_mac_header(skb);
  1281. skb->mac_header += offset;
  1282. }
  1283. #else /* NET_SKBUFF_DATA_USES_OFFSET */
  1284. static inline unsigned char *skb_transport_header(const struct sk_buff *skb)
  1285. {
  1286. return skb->transport_header;
  1287. }
  1288. static inline void skb_reset_transport_header(struct sk_buff *skb)
  1289. {
  1290. skb->transport_header = skb->data;
  1291. }
  1292. static inline void skb_set_transport_header(struct sk_buff *skb,
  1293. const int offset)
  1294. {
  1295. skb->transport_header = skb->data + offset;
  1296. }
  1297. static inline unsigned char *skb_network_header(const struct sk_buff *skb)
  1298. {
  1299. return skb->network_header;
  1300. }
  1301. static inline void skb_reset_network_header(struct sk_buff *skb)
  1302. {
  1303. skb->network_header = skb->data;
  1304. }
  1305. static inline void skb_set_network_header(struct sk_buff *skb, const int offset)
  1306. {
  1307. skb->network_header = skb->data + offset;
  1308. }
  1309. static inline unsigned char *skb_mac_header(const struct sk_buff *skb)
  1310. {
  1311. return skb->mac_header;
  1312. }
  1313. static inline int skb_mac_header_was_set(const struct sk_buff *skb)
  1314. {
  1315. return skb->mac_header != NULL;
  1316. }
  1317. static inline void skb_reset_mac_header(struct sk_buff *skb)
  1318. {
  1319. skb->mac_header = skb->data;
  1320. }
  1321. static inline void skb_set_mac_header(struct sk_buff *skb, const int offset)
  1322. {
  1323. skb->mac_header = skb->data + offset;
  1324. }
  1325. #endif /* NET_SKBUFF_DATA_USES_OFFSET */
  1326. static inline void skb_mac_header_rebuild(struct sk_buff *skb)
  1327. {
  1328. if (skb_mac_header_was_set(skb)) {
  1329. const unsigned char *old_mac = skb_mac_header(skb);
  1330. skb_set_mac_header(skb, -skb->mac_len);
  1331. memmove(skb_mac_header(skb), old_mac, skb->mac_len);
  1332. }
  1333. }
  1334. static inline int skb_checksum_start_offset(const struct sk_buff *skb)
  1335. {
  1336. return skb->csum_start - skb_headroom(skb);
  1337. }
  1338. static inline int skb_transport_offset(const struct sk_buff *skb)
  1339. {
  1340. return skb_transport_header(skb) - skb->data;
  1341. }
  1342. static inline u32 skb_network_header_len(const struct sk_buff *skb)
  1343. {
  1344. return skb->transport_header - skb->network_header;
  1345. }
  1346. static inline int skb_network_offset(const struct sk_buff *skb)
  1347. {
  1348. return skb_network_header(skb) - skb->data;
  1349. }
  1350. static inline int pskb_network_may_pull(struct sk_buff *skb, unsigned int len)
  1351. {
  1352. return pskb_may_pull(skb, skb_network_offset(skb) + len);
  1353. }
  1354. /*
  1355. * CPUs often take a performance hit when accessing unaligned memory
  1356. * locations. The actual performance hit varies, it can be small if the
  1357. * hardware handles it or large if we have to take an exception and fix it
  1358. * in software.
  1359. *
  1360. * Since an ethernet header is 14 bytes network drivers often end up with
  1361. * the IP header at an unaligned offset. The IP header can be aligned by
  1362. * shifting the start of the packet by 2 bytes. Drivers should do this
  1363. * with:
  1364. *
  1365. * skb_reserve(skb, NET_IP_ALIGN);
  1366. *
  1367. * The downside to this alignment of the IP header is that the DMA is now
  1368. * unaligned. On some architectures the cost of an unaligned DMA is high
  1369. * and this cost outweighs the gains made by aligning the IP header.
  1370. *
  1371. * Since this trade off varies between architectures, we allow NET_IP_ALIGN
  1372. * to be overridden.
  1373. */
  1374. #ifndef NET_IP_ALIGN
  1375. #define NET_IP_ALIGN 2
  1376. #endif
  1377. /*
  1378. * The networking layer reserves some headroom in skb data (via
  1379. * dev_alloc_skb). This is used to avoid having to reallocate skb data when
  1380. * the header has to grow. In the default case, if the header has to grow
  1381. * 32 bytes or less we avoid the reallocation.
  1382. *
  1383. * Unfortunately this headroom changes the DMA alignment of the resulting
  1384. * network packet. As for NET_IP_ALIGN, this unaligned DMA is expensive
  1385. * on some architectures. An architecture can override this value,
  1386. * perhaps setting it to a cacheline in size (since that will maintain
  1387. * cacheline alignment of the DMA). It must be a power of 2.
  1388. *
  1389. * Various parts of the networking layer expect at least 32 bytes of
  1390. * headroom, you should not reduce this.
  1391. *
  1392. * Using max(32, L1_CACHE_BYTES) makes sense (especially with RPS)
  1393. * to reduce average number of cache lines per packet.
  1394. * get_rps_cpus() for example only access one 64 bytes aligned block :
  1395. * NET_IP_ALIGN(2) + ethernet_header(14) + IP_header(20/40) + ports(8)
  1396. */
  1397. #ifndef NET_SKB_PAD
  1398. #define NET_SKB_PAD max(32, L1_CACHE_BYTES)
  1399. #endif
  1400. extern int ___pskb_trim(struct sk_buff *skb, unsigned int len);
  1401. static inline void __skb_trim(struct sk_buff *skb, unsigned int len)
  1402. {
  1403. if (unlikely(skb_is_nonlinear(skb))) {
  1404. WARN_ON(1);
  1405. return;
  1406. }
  1407. skb->len = len;
  1408. skb_set_tail_pointer(skb, len);
  1409. }
  1410. extern void skb_trim(struct sk_buff *skb, unsigned int len);
  1411. static inline int __pskb_trim(struct sk_buff *skb, unsigned int len)
  1412. {
  1413. if (skb->data_len)
  1414. return ___pskb_trim(skb, len);
  1415. __skb_trim(skb, len);
  1416. return 0;
  1417. }
  1418. static inline int pskb_trim(struct sk_buff *skb, unsigned int len)
  1419. {
  1420. return (len < skb->len) ? __pskb_trim(skb, len) : 0;
  1421. }
  1422. /**
  1423. * pskb_trim_unique - remove end from a paged unique (not cloned) buffer
  1424. * @skb: buffer to alter
  1425. * @len: new length
  1426. *
  1427. * This is identical to pskb_trim except that the caller knows that
  1428. * the skb is not cloned so we should never get an error due to out-
  1429. * of-memory.
  1430. */
  1431. static inline void pskb_trim_unique(struct sk_buff *skb, unsigned int len)
  1432. {
  1433. int err = pskb_trim(skb, len);
  1434. BUG_ON(err);
  1435. }
  1436. /**
  1437. * skb_orphan - orphan a buffer
  1438. * @skb: buffer to orphan
  1439. *
  1440. * If a buffer currently has an owner then we call the owner's
  1441. * destructor function and make the @skb unowned. The buffer continues
  1442. * to exist but is no longer charged to its former owner.
  1443. */
  1444. static inline void skb_orphan(struct sk_buff *skb)
  1445. {
  1446. if (skb->destructor)
  1447. skb->destructor(skb);
  1448. skb->destructor = NULL;
  1449. skb->sk = NULL;
  1450. }
  1451. /**
  1452. * __skb_queue_purge - empty a list
  1453. * @list: list to empty
  1454. *
  1455. * Delete all buffers on an &sk_buff list. Each buffer is removed from
  1456. * the list and one reference dropped. This function does not take the
  1457. * list lock and the caller must hold the relevant locks to use it.
  1458. */
  1459. extern void skb_queue_purge(struct sk_buff_head *list);
  1460. static inline void __skb_queue_purge(struct sk_buff_head *list)
  1461. {
  1462. struct sk_buff *skb;
  1463. while ((skb = __skb_dequeue(list)) != NULL)
  1464. kfree_skb(skb);
  1465. }
  1466. /**
  1467. * __dev_alloc_skb - allocate an skbuff for receiving
  1468. * @length: length to allocate
  1469. * @gfp_mask: get_free_pages mask, passed to alloc_skb
  1470. *
  1471. * Allocate a new &sk_buff and assign it a usage count of one. The
  1472. * buffer has unspecified headroom built in. Users should allocate
  1473. * the headroom they think they need without accounting for the
  1474. * built in space. The built in space is used for optimisations.
  1475. *
  1476. * %NULL is returned if there is no free memory.
  1477. */
  1478. static inline struct sk_buff *__dev_alloc_skb(unsigned int length,
  1479. gfp_t gfp_mask)
  1480. {
  1481. struct sk_buff *skb = alloc_skb(length + NET_SKB_PAD, gfp_mask);
  1482. if (likely(skb))
  1483. skb_reserve(skb, NET_SKB_PAD);
  1484. return skb;
  1485. }
  1486. extern struct sk_buff *dev_alloc_skb(unsigned int length);
  1487. extern struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
  1488. unsigned int length, gfp_t gfp_mask);
  1489. /**
  1490. * netdev_alloc_skb - allocate an skbuff for rx on a specific device
  1491. * @dev: network device to receive on
  1492. * @length: length to allocate
  1493. *
  1494. * Allocate a new &sk_buff and assign it a usage count of one. The
  1495. * buffer has unspecified headroom built in. Users should allocate
  1496. * the headroom they think they need without accounting for the
  1497. * built in space. The built in space is used for optimisations.
  1498. *
  1499. * %NULL is returned if there is no free memory. Although this function
  1500. * allocates memory it can be called from an interrupt.
  1501. */
  1502. static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
  1503. unsigned int length)
  1504. {
  1505. return __netdev_alloc_skb(dev, length, GFP_ATOMIC);
  1506. }
  1507. static inline struct sk_buff *__netdev_alloc_skb_ip_align(struct net_device *dev,
  1508. unsigned int length, gfp_t gfp)
  1509. {
  1510. struct sk_buff *skb = __netdev_alloc_skb(dev, length + NET_IP_ALIGN, gfp);
  1511. if (NET_IP_ALIGN && skb)
  1512. skb_reserve(skb, NET_IP_ALIGN);
  1513. return skb;
  1514. }
  1515. static inline struct sk_buff *netdev_alloc_skb_ip_align(struct net_device *dev,
  1516. unsigned int length)
  1517. {
  1518. return __netdev_alloc_skb_ip_align(dev, length, GFP_ATOMIC);
  1519. }
  1520. /**
  1521. * skb_frag_page - retrieve the page refered to by a paged fragment
  1522. * @frag: the paged fragment
  1523. *
  1524. * Returns the &struct page associated with @frag.
  1525. */
  1526. static inline struct page *skb_frag_page(const skb_frag_t *frag)
  1527. {
  1528. return frag->page.p;
  1529. }
  1530. /**
  1531. * __skb_frag_ref - take an addition reference on a paged fragment.
  1532. * @frag: the paged fragment
  1533. *
  1534. * Takes an additional reference on the paged fragment @frag.
  1535. */
  1536. static inline void __skb_frag_ref(skb_frag_t *frag)
  1537. {
  1538. get_page(skb_frag_page(frag));
  1539. }
  1540. /**
  1541. * skb_frag_ref - take an addition reference on a paged fragment of an skb.
  1542. * @skb: the buffer
  1543. * @f: the fragment offset.
  1544. *
  1545. * Takes an additional reference on the @f'th paged fragment of @skb.
  1546. */
  1547. static inline void skb_frag_ref(struct sk_buff *skb, int f)
  1548. {
  1549. __skb_frag_ref(&skb_shinfo(skb)->frags[f]);
  1550. }
  1551. /**
  1552. * __skb_frag_unref - release a reference on a paged fragment.
  1553. * @frag: the paged fragment
  1554. *
  1555. * Releases a reference on the paged fragment @frag.
  1556. */
  1557. static inline void __skb_frag_unref(skb_frag_t *frag)
  1558. {
  1559. put_page(skb_frag_page(frag));
  1560. }
  1561. /**
  1562. * skb_frag_unref - release a reference on a paged fragment of an skb.
  1563. * @skb: the buffer
  1564. * @f: the fragment offset
  1565. *
  1566. * Releases a reference on the @f'th paged fragment of @skb.
  1567. */
  1568. static inline void skb_frag_unref(struct sk_buff *skb, int f)
  1569. {
  1570. __skb_frag_unref(&skb_shinfo(skb)->frags[f]);
  1571. }
  1572. /**
  1573. * skb_frag_address - gets the address of the data contained in a paged fragment
  1574. * @frag: the paged fragment buffer
  1575. *
  1576. * Returns the address of the data within @frag. The page must already
  1577. * be mapped.
  1578. */
  1579. static inline void *skb_frag_address(const skb_frag_t *frag)
  1580. {
  1581. return page_address(skb_frag_page(frag)) + frag->page_offset;
  1582. }
  1583. /**
  1584. * skb_frag_address_safe - gets the address of the data contained in a paged fragment
  1585. * @frag: the paged fragment buffer
  1586. *
  1587. * Returns the address of the data within @frag. Checks that the page
  1588. * is mapped and returns %NULL otherwise.
  1589. */
  1590. static inline void *skb_frag_address_safe(const skb_frag_t *frag)
  1591. {
  1592. void *ptr = page_address(skb_frag_page(frag));
  1593. if (unlikely(!ptr))
  1594. return NULL;
  1595. return ptr + frag->page_offset;
  1596. }
  1597. /**
  1598. * __skb_frag_set_page - sets the page contained in a paged fragment
  1599. * @frag: the paged fragment
  1600. * @page: the page to set
  1601. *
  1602. * Sets the fragment @frag to contain @page.
  1603. */
  1604. static inline void __skb_frag_set_page(skb_frag_t *frag, struct page *page)
  1605. {
  1606. frag->page.p = page;
  1607. }
  1608. /**
  1609. * skb_frag_set_page - sets the page contained in a paged fragment of an skb
  1610. * @skb: the buffer
  1611. * @f: the fragment offset
  1612. * @page: the page to set
  1613. *
  1614. * Sets the @f'th fragment of @skb to contain @page.
  1615. */
  1616. static inline void skb_frag_set_page(struct sk_buff *skb, int f,
  1617. struct page *page)
  1618. {
  1619. __skb_frag_set_page(&skb_shinfo(skb)->frags[f], page);
  1620. }
  1621. /**
  1622. * skb_frag_dma_map - maps a paged fragment via the DMA API
  1623. * @dev: the device to map the fragment to
  1624. * @frag: the paged fragment to map
  1625. * @offset: the offset within the fragment (starting at the
  1626. * fragment's own offset)
  1627. * @size: the number of bytes to map
  1628. * @dir: the direction of the mapping (%PCI_DMA_*)
  1629. *
  1630. * Maps the page associated with @frag to @device.
  1631. */
  1632. static inline dma_addr_t skb_frag_dma_map(struct device *dev,
  1633. const skb_frag_t *frag,
  1634. size_t offset, size_t size,
  1635. enum dma_data_direction dir)
  1636. {
  1637. return dma_map_page(dev, skb_frag_page(frag),
  1638. frag->page_offset + offset, size, dir);
  1639. }
  1640. static inline struct sk_buff *pskb_copy(struct sk_buff *skb,
  1641. gfp_t gfp_mask)
  1642. {
  1643. return __pskb_copy(skb, skb_headroom(skb), gfp_mask);
  1644. }
  1645. /**
  1646. * skb_clone_writable - is the header of a clone writable
  1647. * @skb: buffer to check
  1648. * @len: length up to which to write
  1649. *
  1650. * Returns true if modifying the header part of the cloned buffer
  1651. * does not requires the data to be copied.
  1652. */
  1653. static inline int skb_clone_writable(const struct sk_buff *skb, unsigned int len)
  1654. {
  1655. return !skb_header_cloned(skb) &&
  1656. skb_headroom(skb) + len <= skb->hdr_len;
  1657. }
  1658. static inline int __skb_cow(struct sk_buff *skb, unsigned int headroom,
  1659. int cloned)
  1660. {
  1661. int delta = 0;
  1662. if (headroom < NET_SKB_PAD)
  1663. headroom = NET_SKB_PAD;
  1664. if (headroom > skb_headroom(skb))
  1665. delta = headroom - skb_headroom(skb);
  1666. if (delta || cloned)
  1667. return pskb_expand_head(skb, ALIGN(delta, NET_SKB_PAD), 0,
  1668. GFP_ATOMIC);
  1669. return 0;
  1670. }
  1671. /**
  1672. * skb_cow - copy header of skb when it is required
  1673. * @skb: buffer to cow
  1674. * @headroom: needed headroom
  1675. *
  1676. * If the skb passed lacks sufficient headroom or its data part
  1677. * is shared, data is reallocated. If reallocation fails, an error
  1678. * is returned and original skb is not changed.
  1679. *
  1680. * The result is skb with writable area skb->head...skb->tail
  1681. * and at least @headroom of space at head.
  1682. */
  1683. static inline int skb_cow(struct sk_buff *skb, unsigned int headroom)
  1684. {
  1685. return __skb_cow(skb, headroom, skb_cloned(skb));
  1686. }
  1687. /**
  1688. * skb_cow_head - skb_cow but only making the head writable
  1689. * @skb: buffer to cow
  1690. * @headroom: needed headroom
  1691. *
  1692. * This function is identical to skb_cow except that we replace the
  1693. * skb_cloned check by skb_header_cloned. It should be used when
  1694. * you only need to push on some header and do not need to modify
  1695. * the data.
  1696. */
  1697. static inline int skb_cow_head(struct sk_buff *skb, unsigned int headroom)
  1698. {
  1699. return __skb_cow(skb, headroom, skb_header_cloned(skb));
  1700. }
  1701. /**
  1702. * skb_padto - pad an skbuff up to a minimal size
  1703. * @skb: buffer to pad
  1704. * @len: minimal length
  1705. *
  1706. * Pads up a buffer to ensure the trailing bytes exist and are
  1707. * blanked. If the buffer already contains sufficient data it
  1708. * is untouched. Otherwise it is extended. Returns zero on
  1709. * success. The skb is freed on error.
  1710. */
  1711. static inline int skb_padto(struct sk_buff *skb, unsigned int len)
  1712. {
  1713. unsigned int size = skb->len;
  1714. if (likely(size >= len))
  1715. return 0;
  1716. return skb_pad(skb, len - size);
  1717. }
  1718. static inline int skb_add_data(struct sk_buff *skb,
  1719. char __user *from, int copy)
  1720. {
  1721. const int off = skb->len;
  1722. if (skb->ip_summed == CHECKSUM_NONE) {
  1723. int err = 0;
  1724. __wsum csum = csum_and_copy_from_user(from, skb_put(skb, copy),
  1725. copy, 0, &err);
  1726. if (!err) {
  1727. skb->csum = csum_block_add(skb->csum, csum, off);
  1728. return 0;
  1729. }
  1730. } else if (!copy_from_user(skb_put(skb, copy), from, copy))
  1731. return 0;
  1732. __skb_trim(skb, off);
  1733. return -EFAULT;
  1734. }
  1735. static inline int skb_can_coalesce(struct sk_buff *skb, int i,
  1736. const struct page *page, int off)
  1737. {
  1738. if (i) {
  1739. const struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
  1740. return page == skb_frag_page(frag) &&
  1741. off == frag->page_offset + skb_frag_size(frag);
  1742. }
  1743. return 0;
  1744. }
  1745. static inline int __skb_linearize(struct sk_buff *skb)
  1746. {
  1747. return __pskb_pull_tail(skb, skb->data_len) ? 0 : -ENOMEM;
  1748. }
  1749. /**
  1750. * skb_linearize - convert paged skb to linear one
  1751. * @skb: buffer to linarize
  1752. *
  1753. * If there is no free memory -ENOMEM is returned, otherwise zero
  1754. * is returned and the old skb data released.
  1755. */
  1756. static inline int skb_linearize(struct sk_buff *skb)
  1757. {
  1758. return skb_is_nonlinear(skb) ? __skb_linearize(skb) : 0;
  1759. }
  1760. /**
  1761. * skb_linearize_cow - make sure skb is linear and writable
  1762. * @skb: buffer to process
  1763. *
  1764. * If there is no free memory -ENOMEM is returned, otherwise zero
  1765. * is returned and the old skb data released.
  1766. */
  1767. static inline int skb_linearize_cow(struct sk_buff *skb)
  1768. {
  1769. return skb_is_nonlinear(skb) || skb_cloned(skb) ?
  1770. __skb_linearize(skb) : 0;
  1771. }
  1772. /**
  1773. * skb_postpull_rcsum - update checksum for received skb after pull
  1774. * @skb: buffer to update
  1775. * @start: start of data before pull
  1776. * @len: length of data pulled
  1777. *
  1778. * After doing a pull on a received packet, you need to call this to
  1779. * update the CHECKSUM_COMPLETE checksum, or set ip_summed to
  1780. * CHECKSUM_NONE so that it can be recomputed from scratch.
  1781. */
  1782. static inline void skb_postpull_rcsum(struct sk_buff *skb,
  1783. const void *start, unsigned int len)
  1784. {
  1785. if (skb->ip_summed == CHECKSUM_COMPLETE)
  1786. skb->csum = csum_sub(skb->csum, csum_partial(start, len, 0));
  1787. }
  1788. unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len);
  1789. /**
  1790. * pskb_trim_rcsum - trim received skb and update checksum
  1791. * @skb: buffer to trim
  1792. * @len: new length
  1793. *
  1794. * This is exactly the same as pskb_trim except that it ensures the
  1795. * checksum of received packets are still valid after the operation.
  1796. */
  1797. static inline int pskb_trim_rcsum(struct sk_buff *skb, unsigned int len)
  1798. {
  1799. if (likely(len >= skb->len))
  1800. return 0;
  1801. if (skb->ip_summed == CHECKSUM_COMPLETE)
  1802. skb->ip_summed = CHECKSUM_NONE;
  1803. return __pskb_trim(skb, len);
  1804. }
  1805. #define skb_queue_walk(queue, skb) \
  1806. for (skb = (queue)->next; \
  1807. skb != (struct sk_buff *)(queue); \
  1808. skb = skb->next)
  1809. #define skb_queue_walk_safe(queue, skb, tmp) \
  1810. for (skb = (queue)->next, tmp = skb->next; \
  1811. skb != (struct sk_buff *)(queue); \
  1812. skb = tmp, tmp = skb->next)
  1813. #define skb_queue_walk_from(queue, skb) \
  1814. for (; skb != (struct sk_buff *)(queue); \
  1815. skb = skb->next)
  1816. #define skb_queue_walk_from_safe(queue, skb, tmp) \
  1817. for (tmp = skb->next; \
  1818. skb != (struct sk_buff *)(queue); \
  1819. skb = tmp, tmp = skb->next)
  1820. #define skb_queue_reverse_walk(queue, skb) \
  1821. for (skb = (queue)->prev; \
  1822. skb != (struct sk_buff *)(queue); \
  1823. skb = skb->prev)
  1824. #define skb_queue_reverse_walk_safe(queue, skb, tmp) \
  1825. for (skb = (queue)->prev, tmp = skb->prev; \
  1826. skb != (struct sk_buff *)(queue); \
  1827. skb = tmp, tmp = skb->prev)
  1828. #define skb_queue_reverse_walk_from_safe(queue, skb, tmp) \
  1829. for (tmp = skb->prev; \
  1830. skb != (struct sk_buff *)(queue); \
  1831. skb = tmp, tmp = skb->prev)
  1832. static inline bool skb_has_frag_list(const struct sk_buff *skb)
  1833. {
  1834. return skb_shinfo(skb)->frag_list != NULL;
  1835. }
  1836. static inline void skb_frag_list_init(struct sk_buff *skb)
  1837. {
  1838. skb_shinfo(skb)->frag_list = NULL;
  1839. }
  1840. static inline void skb_frag_add_head(struct sk_buff *skb, struct sk_buff *frag)
  1841. {
  1842. frag->next = skb_shinfo(skb)->frag_list;
  1843. skb_shinfo(skb)->frag_list = frag;
  1844. }
  1845. #define skb_walk_frags(skb, iter) \
  1846. for (iter = skb_shinfo(skb)->frag_list; iter; iter = iter->next)
  1847. extern struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned flags,
  1848. int *peeked, int *off, int *err);
  1849. extern struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags,
  1850. int noblock, int *err);
  1851. extern unsigned int datagram_poll(struct file *file, struct socket *sock,
  1852. struct poll_table_struct *wait);
  1853. extern int skb_copy_datagram_iovec(const struct sk_buff *from,
  1854. int offset, struct iovec *to,
  1855. int size);
  1856. extern int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
  1857. int hlen,
  1858. struct iovec *iov);
  1859. extern int skb_copy_datagram_from_iovec(struct sk_buff *skb,
  1860. int offset,
  1861. const struct iovec *from,
  1862. int from_offset,
  1863. int len);
  1864. extern int skb_copy_datagram_const_iovec(const struct sk_buff *from,
  1865. int offset,
  1866. const struct iovec *to,
  1867. int to_offset,
  1868. int size);
  1869. extern void skb_free_datagram(struct sock *sk, struct sk_buff *skb);
  1870. extern void skb_free_datagram_locked(struct sock *sk,
  1871. struct sk_buff *skb);
  1872. extern int skb_kill_datagram(struct sock *sk, struct sk_buff *skb,
  1873. unsigned int flags);
  1874. extern __wsum skb_checksum(const struct sk_buff *skb, int offset,
  1875. int len, __wsum csum);
  1876. extern int skb_copy_bits(const struct sk_buff *skb, int offset,
  1877. void *to, int len);
  1878. extern int skb_store_bits(struct sk_buff *skb, int offset,
  1879. const void *from, int len);
  1880. extern __wsum skb_copy_and_csum_bits(const struct sk_buff *skb,
  1881. int offset, u8 *to, int len,
  1882. __wsum csum);
  1883. extern int skb_splice_bits(struct sk_buff *skb,
  1884. unsigned int offset,
  1885. struct pipe_inode_info *pipe,
  1886. unsigned int len,
  1887. unsigned int flags);
  1888. extern void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to);
  1889. extern void skb_split(struct sk_buff *skb,
  1890. struct sk_buff *skb1, const u32 len);
  1891. extern int skb_shift(struct sk_buff *tgt, struct sk_buff *skb,
  1892. int shiftlen);
  1893. extern struct sk_buff *skb_segment(struct sk_buff *skb,
  1894. netdev_features_t features);
  1895. static inline void *skb_header_pointer(const struct sk_buff *skb, int offset,
  1896. int len, void *buffer)
  1897. {
  1898. int hlen = skb_headlen(skb);
  1899. if (hlen - offset >= len)
  1900. return skb->data + offset;
  1901. if (skb_copy_bits(skb, offset, buffer, len) < 0)
  1902. return NULL;
  1903. return buffer;
  1904. }
  1905. static inline void skb_copy_from_linear_data(const struct sk_buff *skb,
  1906. void *to,
  1907. const unsigned int len)
  1908. {
  1909. memcpy(to, skb->data, len);
  1910. }
  1911. static inline void skb_copy_from_linear_data_offset(const struct sk_buff *skb,
  1912. const int offset, void *to,
  1913. const unsigned int len)
  1914. {
  1915. memcpy(to, skb->data + offset, len);
  1916. }
  1917. static inline void skb_copy_to_linear_data(struct sk_buff *skb,
  1918. const void *from,
  1919. const unsigned int len)
  1920. {
  1921. memcpy(skb->data, from, len);
  1922. }
  1923. static inline void skb_copy_to_linear_data_offset(struct sk_buff *skb,
  1924. const int offset,
  1925. const void *from,
  1926. const unsigned int len)
  1927. {
  1928. memcpy(skb->data + offset, from, len);
  1929. }
  1930. extern void skb_init(void);
  1931. static inline ktime_t skb_get_ktime(const struct sk_buff *skb)
  1932. {
  1933. return skb->tstamp;
  1934. }
  1935. /**
  1936. * skb_get_timestamp - get timestamp from a skb
  1937. * @skb: skb to get stamp from
  1938. * @stamp: pointer to struct timeval to store stamp in
  1939. *
  1940. * Timestamps are stored in the skb as offsets to a base timestamp.
  1941. * This function converts the offset back to a struct timeval and stores
  1942. * it in stamp.
  1943. */
  1944. static inline void skb_get_timestamp(const struct sk_buff *skb,
  1945. struct timeval *stamp)
  1946. {
  1947. *stamp = ktime_to_timeval(skb->tstamp);
  1948. }
  1949. static inline void skb_get_timestampns(const struct sk_buff *skb,
  1950. struct timespec *stamp)
  1951. {
  1952. *stamp = ktime_to_timespec(skb->tstamp);
  1953. }
  1954. static inline void __net_timestamp(struct sk_buff *skb)
  1955. {
  1956. skb->tstamp = ktime_get_real();
  1957. }
  1958. static inline ktime_t net_timedelta(ktime_t t)
  1959. {
  1960. return ktime_sub(ktime_get_real(), t);
  1961. }
  1962. static inline ktime_t net_invalid_timestamp(void)
  1963. {
  1964. return ktime_set(0, 0);
  1965. }
  1966. extern void skb_timestamping_init(void);
  1967. #ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
  1968. extern void skb_clone_tx_timestamp(struct sk_buff *skb);
  1969. extern bool skb_defer_rx_timestamp(struct sk_buff *skb);
  1970. #else /* CONFIG_NETWORK_PHY_TIMESTAMPING */
  1971. static inline void skb_clone_tx_timestamp(struct sk_buff *skb)
  1972. {
  1973. }
  1974. static inline bool skb_defer_rx_timestamp(struct sk_buff *skb)
  1975. {
  1976. return false;
  1977. }
  1978. #endif /* !CONFIG_NETWORK_PHY_TIMESTAMPING */
  1979. /**
  1980. * skb_complete_tx_timestamp() - deliver cloned skb with tx timestamps
  1981. *
  1982. * PHY drivers may accept clones of transmitted packets for
  1983. * timestamping via their phy_driver.txtstamp method. These drivers
  1984. * must call this function to return the skb back to the stack, with
  1985. * or without a timestamp.
  1986. *
  1987. * @skb: clone of the the original outgoing packet
  1988. * @hwtstamps: hardware time stamps, may be NULL if not available
  1989. *
  1990. */
  1991. void skb_complete_tx_timestamp(struct sk_buff *skb,
  1992. struct skb_shared_hwtstamps *hwtstamps);
  1993. /**
  1994. * skb_tstamp_tx - queue clone of skb with send time stamps
  1995. * @orig_skb: the original outgoing packet
  1996. * @hwtstamps: hardware time stamps, may be NULL if not available
  1997. *
  1998. * If the skb has a socket associated, then this function clones the
  1999. * skb (thus sharing the actual data and optional structures), stores
  2000. * the optional hardware time stamping information (if non NULL) or
  2001. * generates a software time stamp (otherwise), then queues the clone
  2002. * to the error queue of the socket. Errors are silently ignored.
  2003. */
  2004. extern void skb_tstamp_tx(struct sk_buff *orig_skb,
  2005. struct skb_shared_hwtstamps *hwtstamps);
  2006. static inline void sw_tx_timestamp(struct sk_buff *skb)
  2007. {
  2008. if (skb_shinfo(skb)->tx_flags & SKBTX_SW_TSTAMP &&
  2009. !(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS))
  2010. skb_tstamp_tx(skb, NULL);
  2011. }
  2012. /**
  2013. * skb_tx_timestamp() - Driver hook for transmit timestamping
  2014. *
  2015. * Ethernet MAC Drivers should call this function in their hard_xmit()
  2016. * function immediately before giving the sk_buff to the MAC hardware.
  2017. *
  2018. * @skb: A socket buffer.
  2019. */
  2020. static inline void skb_tx_timestamp(struct sk_buff *skb)
  2021. {
  2022. skb_clone_tx_timestamp(skb);
  2023. sw_tx_timestamp(skb);
  2024. }
  2025. /**
  2026. * skb_complete_wifi_ack - deliver skb with wifi status
  2027. *
  2028. * @skb: the original outgoing packet
  2029. * @acked: ack status
  2030. *
  2031. */
  2032. void skb_complete_wifi_ack(struct sk_buff *skb, bool acked);
  2033. extern __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len);
  2034. extern __sum16 __skb_checksum_complete(struct sk_buff *skb);
  2035. static inline int skb_csum_unnecessary(const struct sk_buff *skb)
  2036. {
  2037. return skb->ip_summed & CHECKSUM_UNNECESSARY;
  2038. }
  2039. /**
  2040. * skb_checksum_complete - Calculate checksum of an entire packet
  2041. * @skb: packet to process
  2042. *
  2043. * This function calculates the checksum over the entire packet plus
  2044. * the value of skb->csum. The latter can be used to supply the
  2045. * checksum of a pseudo header as used by TCP/UDP. It returns the
  2046. * checksum.
  2047. *
  2048. * For protocols that contain complete checksums such as ICMP/TCP/UDP,
  2049. * this function can be used to verify that checksum on received
  2050. * packets. In that case the function should return zero if the
  2051. * checksum is correct. In particular, this function will return zero
  2052. * if skb->ip_summed is CHECKSUM_UNNECESSARY which indicates that the
  2053. * hardware has already verified the correctness of the checksum.
  2054. */
  2055. static inline __sum16 skb_checksum_complete(struct sk_buff *skb)
  2056. {
  2057. return skb_csum_unnecessary(skb) ?
  2058. 0 : __skb_checksum_complete(skb);
  2059. }
  2060. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  2061. extern void nf_conntrack_destroy(struct nf_conntrack *nfct);
  2062. static inline void nf_conntrack_put(struct nf_conntrack *nfct)
  2063. {
  2064. if (nfct && atomic_dec_and_test(&nfct->use))
  2065. nf_conntrack_destroy(nfct);
  2066. }
  2067. static inline void nf_conntrack_get(struct nf_conntrack *nfct)
  2068. {
  2069. if (nfct)
  2070. atomic_inc(&nfct->use);
  2071. }
  2072. #endif
  2073. #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
  2074. static inline void nf_conntrack_get_reasm(struct sk_buff *skb)
  2075. {
  2076. if (skb)
  2077. atomic_inc(&skb->users);
  2078. }
  2079. static inline void nf_conntrack_put_reasm(struct sk_buff *skb)
  2080. {
  2081. if (skb)
  2082. kfree_skb(skb);
  2083. }
  2084. #endif
  2085. #ifdef CONFIG_BRIDGE_NETFILTER
  2086. static inline void nf_bridge_put(struct nf_bridge_info *nf_bridge)
  2087. {
  2088. if (nf_bridge && atomic_dec_and_test(&nf_bridge->use))
  2089. kfree(nf_bridge);
  2090. }
  2091. static inline void nf_bridge_get(struct nf_bridge_info *nf_bridge)
  2092. {
  2093. if (nf_bridge)
  2094. atomic_inc(&nf_bridge->use);
  2095. }
  2096. #endif /* CONFIG_BRIDGE_NETFILTER */
  2097. static inline void nf_reset(struct sk_buff *skb)
  2098. {
  2099. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  2100. nf_conntrack_put(skb->nfct);
  2101. skb->nfct = NULL;
  2102. #endif
  2103. #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
  2104. nf_conntrack_put_reasm(skb->nfct_reasm);
  2105. skb->nfct_reasm = NULL;
  2106. #endif
  2107. #ifdef CONFIG_BRIDGE_NETFILTER
  2108. nf_bridge_put(skb->nf_bridge);
  2109. skb->nf_bridge = NULL;
  2110. #endif
  2111. }
  2112. /* Note: This doesn't put any conntrack and bridge info in dst. */
  2113. static inline void __nf_copy(struct sk_buff *dst, const struct sk_buff *src)
  2114. {
  2115. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  2116. dst->nfct = src->nfct;
  2117. nf_conntrack_get(src->nfct);
  2118. dst->nfctinfo = src->nfctinfo;
  2119. #endif
  2120. #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
  2121. dst->nfct_reasm = src->nfct_reasm;
  2122. nf_conntrack_get_reasm(src->nfct_reasm);
  2123. #endif
  2124. #ifdef CONFIG_BRIDGE_NETFILTER
  2125. dst->nf_bridge = src->nf_bridge;
  2126. nf_bridge_get(src->nf_bridge);
  2127. #endif
  2128. }
  2129. static inline void nf_copy(struct sk_buff *dst, const struct sk_buff *src)
  2130. {
  2131. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  2132. nf_conntrack_put(dst->nfct);
  2133. #endif
  2134. #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
  2135. nf_conntrack_put_reasm(dst->nfct_reasm);
  2136. #endif
  2137. #ifdef CONFIG_BRIDGE_NETFILTER
  2138. nf_bridge_put(dst->nf_bridge);
  2139. #endif
  2140. __nf_copy(dst, src);
  2141. }
  2142. #ifdef CONFIG_NETWORK_SECMARK
  2143. static inline void skb_copy_secmark(struct sk_buff *to, const struct sk_buff *from)
  2144. {
  2145. to->secmark = from->secmark;
  2146. }
  2147. static inline void skb_init_secmark(struct sk_buff *skb)
  2148. {
  2149. skb->secmark = 0;
  2150. }
  2151. #else
  2152. static inline void skb_copy_secmark(struct sk_buff *to, const struct sk_buff *from)
  2153. { }
  2154. static inline void skb_init_secmark(struct sk_buff *skb)
  2155. { }
  2156. #endif
  2157. static inline void skb_set_queue_mapping(struct sk_buff *skb, u16 queue_mapping)
  2158. {
  2159. skb->queue_mapping = queue_mapping;
  2160. }
  2161. static inline u16 skb_get_queue_mapping(const struct sk_buff *skb)
  2162. {
  2163. return skb->queue_mapping;
  2164. }
  2165. static inline void skb_copy_queue_mapping(struct sk_buff *to, const struct sk_buff *from)
  2166. {
  2167. to->queue_mapping = from->queue_mapping;
  2168. }
  2169. static inline void skb_record_rx_queue(struct sk_buff *skb, u16 rx_queue)
  2170. {
  2171. skb->queue_mapping = rx_queue + 1;
  2172. }
  2173. static inline u16 skb_get_rx_queue(const struct sk_buff *skb)
  2174. {
  2175. return skb->queue_mapping - 1;
  2176. }
  2177. static inline bool skb_rx_queue_recorded(const struct sk_buff *skb)
  2178. {
  2179. return skb->queue_mapping != 0;
  2180. }
  2181. extern u16 __skb_tx_hash(const struct net_device *dev,
  2182. const struct sk_buff *skb,
  2183. unsigned int num_tx_queues);
  2184. #ifdef CONFIG_XFRM
  2185. static inline struct sec_path *skb_sec_path(struct sk_buff *skb)
  2186. {
  2187. return skb->sp;
  2188. }
  2189. #else
  2190. static inline struct sec_path *skb_sec_path(struct sk_buff *skb)
  2191. {
  2192. return NULL;
  2193. }
  2194. #endif
  2195. static inline bool skb_is_gso(const struct sk_buff *skb)
  2196. {
  2197. return skb_shinfo(skb)->gso_size;
  2198. }
  2199. static inline bool skb_is_gso_v6(const struct sk_buff *skb)
  2200. {
  2201. return skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6;
  2202. }
  2203. extern void __skb_warn_lro_forwarding(const struct sk_buff *skb);
  2204. static inline bool skb_warn_if_lro(const struct sk_buff *skb)
  2205. {
  2206. /* LRO sets gso_size but not gso_type, whereas if GSO is really
  2207. * wanted then gso_type will be set. */
  2208. const struct skb_shared_info *shinfo = skb_shinfo(skb);
  2209. if (skb_is_nonlinear(skb) && shinfo->gso_size != 0 &&
  2210. unlikely(shinfo->gso_type == 0)) {
  2211. __skb_warn_lro_forwarding(skb);
  2212. return true;
  2213. }
  2214. return false;
  2215. }
  2216. static inline void skb_forward_csum(struct sk_buff *skb)
  2217. {
  2218. /* Unfortunately we don't support this one. Any brave souls? */
  2219. if (skb->ip_summed == CHECKSUM_COMPLETE)
  2220. skb->ip_summed = CHECKSUM_NONE;
  2221. }
  2222. /**
  2223. * skb_checksum_none_assert - make sure skb ip_summed is CHECKSUM_NONE
  2224. * @skb: skb to check
  2225. *
  2226. * fresh skbs have their ip_summed set to CHECKSUM_NONE.
  2227. * Instead of forcing ip_summed to CHECKSUM_NONE, we can
  2228. * use this helper, to document places where we make this assertion.
  2229. */
  2230. static inline void skb_checksum_none_assert(const struct sk_buff *skb)
  2231. {
  2232. #ifdef DEBUG
  2233. BUG_ON(skb->ip_summed != CHECKSUM_NONE);
  2234. #endif
  2235. }
  2236. bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off);
  2237. static inline bool skb_is_recycleable(const struct sk_buff *skb, int skb_size)
  2238. {
  2239. if (irqs_disabled())
  2240. return false;
  2241. if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY)
  2242. return false;
  2243. if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
  2244. return false;
  2245. skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
  2246. if (skb_end_pointer(skb) - skb->head < skb_size)
  2247. return false;
  2248. if (skb_shared(skb) || skb_cloned(skb))
  2249. return false;
  2250. return true;
  2251. }
  2252. #endif /* __KERNEL__ */
  2253. #endif /* _LINUX_SKBUFF_H */