skbuff.h 81 KB

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