skbuff.h 62 KB

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