skbuff.h 69 KB

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