skbuff.h 58 KB

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