skbuff.h 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381
  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/config.h>
  16. #include <linux/kernel.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/mm.h>
  24. #include <linux/highmem.h>
  25. #include <linux/poll.h>
  26. #include <linux/net.h>
  27. #include <linux/textsearch.h>
  28. #include <net/checksum.h>
  29. #define HAVE_ALLOC_SKB /* For the drivers to know */
  30. #define HAVE_ALIGNABLE_SKB /* Ditto 8) */
  31. #define CHECKSUM_NONE 0
  32. #define CHECKSUM_HW 1
  33. #define CHECKSUM_UNNECESSARY 2
  34. #define SKB_DATA_ALIGN(X) (((X) + (SMP_CACHE_BYTES - 1)) & \
  35. ~(SMP_CACHE_BYTES - 1))
  36. #define SKB_MAX_ORDER(X, ORDER) (((PAGE_SIZE << (ORDER)) - (X) - \
  37. sizeof(struct skb_shared_info)) & \
  38. ~(SMP_CACHE_BYTES - 1))
  39. #define SKB_MAX_HEAD(X) (SKB_MAX_ORDER((X), 0))
  40. #define SKB_MAX_ALLOC (SKB_MAX_ORDER(0, 2))
  41. /* A. Checksumming of received packets by device.
  42. *
  43. * NONE: device failed to checksum this packet.
  44. * skb->csum is undefined.
  45. *
  46. * UNNECESSARY: device parsed packet and wouldbe verified checksum.
  47. * skb->csum is undefined.
  48. * It is bad option, but, unfortunately, many of vendors do this.
  49. * Apparently with secret goal to sell you new device, when you
  50. * will add new protocol to your host. F.e. IPv6. 8)
  51. *
  52. * HW: the most generic way. Device supplied checksum of _all_
  53. * the packet as seen by netif_rx in skb->csum.
  54. * NOTE: Even if device supports only some protocols, but
  55. * is able to produce some skb->csum, it MUST use HW,
  56. * not UNNECESSARY.
  57. *
  58. * B. Checksumming on output.
  59. *
  60. * NONE: skb is checksummed by protocol or csum is not required.
  61. *
  62. * HW: device is required to csum packet as seen by hard_start_xmit
  63. * from skb->h.raw to the end and to record the checksum
  64. * at skb->h.raw+skb->csum.
  65. *
  66. * Device must show its capabilities in dev->features, set
  67. * at device setup time.
  68. * NETIF_F_HW_CSUM - it is clever device, it is able to checksum
  69. * everything.
  70. * NETIF_F_NO_CSUM - loopback or reliable single hop media.
  71. * NETIF_F_IP_CSUM - device is dumb. It is able to csum only
  72. * TCP/UDP over IPv4. Sigh. Vendors like this
  73. * way by an unknown reason. Though, see comment above
  74. * about CHECKSUM_UNNECESSARY. 8)
  75. *
  76. * Any questions? No questions, good. --ANK
  77. */
  78. struct net_device;
  79. #ifdef CONFIG_NETFILTER
  80. struct nf_conntrack {
  81. atomic_t use;
  82. void (*destroy)(struct nf_conntrack *);
  83. };
  84. #ifdef CONFIG_BRIDGE_NETFILTER
  85. struct nf_bridge_info {
  86. atomic_t use;
  87. struct net_device *physindev;
  88. struct net_device *physoutdev;
  89. #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
  90. struct net_device *netoutdev;
  91. #endif
  92. unsigned int mask;
  93. unsigned long data[32 / sizeof(unsigned long)];
  94. };
  95. #endif
  96. #endif
  97. struct sk_buff_head {
  98. /* These two members must be first. */
  99. struct sk_buff *next;
  100. struct sk_buff *prev;
  101. __u32 qlen;
  102. spinlock_t lock;
  103. };
  104. struct sk_buff;
  105. /* To allow 64K frame to be packed as single skb without frag_list */
  106. #define MAX_SKB_FRAGS (65536/PAGE_SIZE + 2)
  107. typedef struct skb_frag_struct skb_frag_t;
  108. struct skb_frag_struct {
  109. struct page *page;
  110. __u16 page_offset;
  111. __u16 size;
  112. };
  113. /* This data is invariant across clones and lives at
  114. * the end of the header data, ie. at skb->end.
  115. */
  116. struct skb_shared_info {
  117. atomic_t dataref;
  118. unsigned short nr_frags;
  119. unsigned short tso_size;
  120. unsigned short tso_segs;
  121. unsigned short ufo_size;
  122. unsigned int ip6_frag_id;
  123. struct sk_buff *frag_list;
  124. skb_frag_t frags[MAX_SKB_FRAGS];
  125. };
  126. /* We divide dataref into two halves. The higher 16 bits hold references
  127. * to the payload part of skb->data. The lower 16 bits hold references to
  128. * the entire skb->data. It is up to the users of the skb to agree on
  129. * where the payload starts.
  130. *
  131. * All users must obey the rule that the skb->data reference count must be
  132. * greater than or equal to the payload reference count.
  133. *
  134. * Holding a reference to the payload part means that the user does not
  135. * care about modifications to the header part of skb->data.
  136. */
  137. #define SKB_DATAREF_SHIFT 16
  138. #define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1)
  139. struct skb_timeval {
  140. u32 off_sec;
  141. u32 off_usec;
  142. };
  143. enum {
  144. SKB_FCLONE_UNAVAILABLE,
  145. SKB_FCLONE_ORIG,
  146. SKB_FCLONE_CLONE,
  147. };
  148. /**
  149. * struct sk_buff - socket buffer
  150. * @next: Next buffer in list
  151. * @prev: Previous buffer in list
  152. * @sk: Socket we are owned by
  153. * @tstamp: Time we arrived
  154. * @dev: Device we arrived on/are leaving by
  155. * @input_dev: Device we arrived on
  156. * @h: Transport layer header
  157. * @nh: Network layer header
  158. * @mac: Link layer header
  159. * @dst: destination entry
  160. * @sp: the security path, used for xfrm
  161. * @cb: Control buffer. Free for use by every layer. Put private vars here
  162. * @len: Length of actual data
  163. * @data_len: Data length
  164. * @mac_len: Length of link layer header
  165. * @csum: Checksum
  166. * @local_df: allow local fragmentation
  167. * @cloned: Head may be cloned (check refcnt to be sure)
  168. * @nohdr: Payload reference only, must not modify header
  169. * @pkt_type: Packet class
  170. * @fclone: skbuff clone status
  171. * @ip_summed: Driver fed us an IP checksum
  172. * @priority: Packet queueing priority
  173. * @users: User count - see {datagram,tcp}.c
  174. * @protocol: Packet protocol from driver
  175. * @truesize: Buffer size
  176. * @head: Head of buffer
  177. * @data: Data head pointer
  178. * @tail: Tail pointer
  179. * @end: End pointer
  180. * @destructor: Destruct function
  181. * @nfmark: Can be used for communication between hooks
  182. * @nfct: Associated connection, if any
  183. * @ipvs_property: skbuff is owned by ipvs
  184. * @nfctinfo: Relationship of this skb to the connection
  185. * @nfct_reasm: netfilter conntrack re-assembly pointer
  186. * @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
  187. * @tc_index: Traffic control index
  188. * @tc_verd: traffic control verdict
  189. */
  190. struct sk_buff {
  191. /* These two members must be first. */
  192. struct sk_buff *next;
  193. struct sk_buff *prev;
  194. struct sock *sk;
  195. struct skb_timeval tstamp;
  196. struct net_device *dev;
  197. struct net_device *input_dev;
  198. union {
  199. struct tcphdr *th;
  200. struct udphdr *uh;
  201. struct icmphdr *icmph;
  202. struct igmphdr *igmph;
  203. struct iphdr *ipiph;
  204. struct ipv6hdr *ipv6h;
  205. unsigned char *raw;
  206. } h;
  207. union {
  208. struct iphdr *iph;
  209. struct ipv6hdr *ipv6h;
  210. struct arphdr *arph;
  211. unsigned char *raw;
  212. } nh;
  213. union {
  214. unsigned char *raw;
  215. } mac;
  216. struct dst_entry *dst;
  217. struct sec_path *sp;
  218. /*
  219. * This is the control buffer. It is free to use for every
  220. * layer. Please put your private variables there. If you
  221. * want to keep them across layers you have to do a skb_clone()
  222. * first. This is owned by whoever has the skb queued ATM.
  223. */
  224. char cb[48];
  225. unsigned int len,
  226. data_len,
  227. mac_len,
  228. csum;
  229. __u32 priority;
  230. __u8 local_df:1,
  231. cloned:1,
  232. ip_summed:2,
  233. nohdr:1,
  234. nfctinfo:3;
  235. __u8 pkt_type:3,
  236. fclone:2,
  237. ipvs_property:1;
  238. __be16 protocol;
  239. void (*destructor)(struct sk_buff *skb);
  240. #ifdef CONFIG_NETFILTER
  241. __u32 nfmark;
  242. struct nf_conntrack *nfct;
  243. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  244. struct sk_buff *nfct_reasm;
  245. #endif
  246. #ifdef CONFIG_BRIDGE_NETFILTER
  247. struct nf_bridge_info *nf_bridge;
  248. #endif
  249. #endif /* CONFIG_NETFILTER */
  250. #ifdef CONFIG_NET_SCHED
  251. __u16 tc_index; /* traffic control index */
  252. #ifdef CONFIG_NET_CLS_ACT
  253. __u16 tc_verd; /* traffic control verdict */
  254. #endif
  255. #endif
  256. /* These elements must be at the end, see alloc_skb() for details. */
  257. unsigned int truesize;
  258. atomic_t users;
  259. unsigned char *head,
  260. *data,
  261. *tail,
  262. *end;
  263. };
  264. #ifdef __KERNEL__
  265. /*
  266. * Handling routines are only of interest to the kernel
  267. */
  268. #include <linux/slab.h>
  269. #include <asm/system.h>
  270. extern void __kfree_skb(struct sk_buff *skb);
  271. extern struct sk_buff *__alloc_skb(unsigned int size,
  272. gfp_t priority, int fclone);
  273. static inline struct sk_buff *alloc_skb(unsigned int size,
  274. gfp_t priority)
  275. {
  276. return __alloc_skb(size, priority, 0);
  277. }
  278. static inline struct sk_buff *alloc_skb_fclone(unsigned int size,
  279. gfp_t priority)
  280. {
  281. return __alloc_skb(size, priority, 1);
  282. }
  283. extern struct sk_buff *alloc_skb_from_cache(kmem_cache_t *cp,
  284. unsigned int size,
  285. gfp_t priority);
  286. extern void kfree_skbmem(struct sk_buff *skb);
  287. extern struct sk_buff *skb_clone(struct sk_buff *skb,
  288. gfp_t priority);
  289. extern struct sk_buff *skb_copy(const struct sk_buff *skb,
  290. gfp_t priority);
  291. extern struct sk_buff *pskb_copy(struct sk_buff *skb,
  292. gfp_t gfp_mask);
  293. extern int pskb_expand_head(struct sk_buff *skb,
  294. int nhead, int ntail,
  295. gfp_t gfp_mask);
  296. extern struct sk_buff *skb_realloc_headroom(struct sk_buff *skb,
  297. unsigned int headroom);
  298. extern struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
  299. int newheadroom, int newtailroom,
  300. gfp_t priority);
  301. extern struct sk_buff * skb_pad(struct sk_buff *skb, int pad);
  302. #define dev_kfree_skb(a) kfree_skb(a)
  303. extern void skb_over_panic(struct sk_buff *skb, int len,
  304. void *here);
  305. extern void skb_under_panic(struct sk_buff *skb, int len,
  306. void *here);
  307. extern int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
  308. int getfrag(void *from, char *to, int offset,
  309. int len,int odd, struct sk_buff *skb),
  310. void *from, int length);
  311. struct skb_seq_state
  312. {
  313. __u32 lower_offset;
  314. __u32 upper_offset;
  315. __u32 frag_idx;
  316. __u32 stepped_offset;
  317. struct sk_buff *root_skb;
  318. struct sk_buff *cur_skb;
  319. __u8 *frag_data;
  320. };
  321. extern void skb_prepare_seq_read(struct sk_buff *skb,
  322. unsigned int from, unsigned int to,
  323. struct skb_seq_state *st);
  324. extern unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
  325. struct skb_seq_state *st);
  326. extern void skb_abort_seq_read(struct skb_seq_state *st);
  327. extern unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
  328. unsigned int to, struct ts_config *config,
  329. struct ts_state *state);
  330. /* Internal */
  331. #define skb_shinfo(SKB) ((struct skb_shared_info *)((SKB)->end))
  332. /**
  333. * skb_queue_empty - check if a queue is empty
  334. * @list: queue head
  335. *
  336. * Returns true if the queue is empty, false otherwise.
  337. */
  338. static inline int skb_queue_empty(const struct sk_buff_head *list)
  339. {
  340. return list->next == (struct sk_buff *)list;
  341. }
  342. /**
  343. * skb_get - reference buffer
  344. * @skb: buffer to reference
  345. *
  346. * Makes another reference to a socket buffer and returns a pointer
  347. * to the buffer.
  348. */
  349. static inline struct sk_buff *skb_get(struct sk_buff *skb)
  350. {
  351. atomic_inc(&skb->users);
  352. return skb;
  353. }
  354. /*
  355. * If users == 1, we are the only owner and are can avoid redundant
  356. * atomic change.
  357. */
  358. /**
  359. * kfree_skb - free an sk_buff
  360. * @skb: buffer to free
  361. *
  362. * Drop a reference to the buffer and free it if the usage count has
  363. * hit zero.
  364. */
  365. static inline void kfree_skb(struct sk_buff *skb)
  366. {
  367. if (likely(atomic_read(&skb->users) == 1))
  368. smp_rmb();
  369. else if (likely(!atomic_dec_and_test(&skb->users)))
  370. return;
  371. __kfree_skb(skb);
  372. }
  373. /**
  374. * skb_cloned - is the buffer a clone
  375. * @skb: buffer to check
  376. *
  377. * Returns true if the buffer was generated with skb_clone() and is
  378. * one of multiple shared copies of the buffer. Cloned buffers are
  379. * shared data so must not be written to under normal circumstances.
  380. */
  381. static inline int skb_cloned(const struct sk_buff *skb)
  382. {
  383. return skb->cloned &&
  384. (atomic_read(&skb_shinfo(skb)->dataref) & SKB_DATAREF_MASK) != 1;
  385. }
  386. /**
  387. * skb_header_cloned - is the header a clone
  388. * @skb: buffer to check
  389. *
  390. * Returns true if modifying the header part of the buffer requires
  391. * the data to be copied.
  392. */
  393. static inline int skb_header_cloned(const struct sk_buff *skb)
  394. {
  395. int dataref;
  396. if (!skb->cloned)
  397. return 0;
  398. dataref = atomic_read(&skb_shinfo(skb)->dataref);
  399. dataref = (dataref & SKB_DATAREF_MASK) - (dataref >> SKB_DATAREF_SHIFT);
  400. return dataref != 1;
  401. }
  402. /**
  403. * skb_header_release - release reference to header
  404. * @skb: buffer to operate on
  405. *
  406. * Drop a reference to the header part of the buffer. This is done
  407. * by acquiring a payload reference. You must not read from the header
  408. * part of skb->data after this.
  409. */
  410. static inline void skb_header_release(struct sk_buff *skb)
  411. {
  412. BUG_ON(skb->nohdr);
  413. skb->nohdr = 1;
  414. atomic_add(1 << SKB_DATAREF_SHIFT, &skb_shinfo(skb)->dataref);
  415. }
  416. /**
  417. * skb_shared - is the buffer shared
  418. * @skb: buffer to check
  419. *
  420. * Returns true if more than one person has a reference to this
  421. * buffer.
  422. */
  423. static inline int skb_shared(const struct sk_buff *skb)
  424. {
  425. return atomic_read(&skb->users) != 1;
  426. }
  427. /**
  428. * skb_share_check - check if buffer is shared and if so clone it
  429. * @skb: buffer to check
  430. * @pri: priority for memory allocation
  431. *
  432. * If the buffer is shared the buffer is cloned and the old copy
  433. * drops a reference. A new clone with a single reference is returned.
  434. * If the buffer is not shared the original buffer is returned. When
  435. * being called from interrupt status or with spinlocks held pri must
  436. * be GFP_ATOMIC.
  437. *
  438. * NULL is returned on a memory allocation failure.
  439. */
  440. static inline struct sk_buff *skb_share_check(struct sk_buff *skb,
  441. gfp_t pri)
  442. {
  443. might_sleep_if(pri & __GFP_WAIT);
  444. if (skb_shared(skb)) {
  445. struct sk_buff *nskb = skb_clone(skb, pri);
  446. kfree_skb(skb);
  447. skb = nskb;
  448. }
  449. return skb;
  450. }
  451. /*
  452. * Copy shared buffers into a new sk_buff. We effectively do COW on
  453. * packets to handle cases where we have a local reader and forward
  454. * and a couple of other messy ones. The normal one is tcpdumping
  455. * a packet thats being forwarded.
  456. */
  457. /**
  458. * skb_unshare - make a copy of a shared buffer
  459. * @skb: buffer to check
  460. * @pri: priority for memory allocation
  461. *
  462. * If the socket buffer is a clone then this function creates a new
  463. * copy of the data, drops a reference count on the old copy and returns
  464. * the new copy with the reference count at 1. If the buffer is not a clone
  465. * the original buffer is returned. When called with a spinlock held or
  466. * from interrupt state @pri must be %GFP_ATOMIC
  467. *
  468. * %NULL is returned on a memory allocation failure.
  469. */
  470. static inline struct sk_buff *skb_unshare(struct sk_buff *skb,
  471. gfp_t pri)
  472. {
  473. might_sleep_if(pri & __GFP_WAIT);
  474. if (skb_cloned(skb)) {
  475. struct sk_buff *nskb = skb_copy(skb, pri);
  476. kfree_skb(skb); /* Free our shared copy */
  477. skb = nskb;
  478. }
  479. return skb;
  480. }
  481. /**
  482. * skb_peek
  483. * @list_: list to peek at
  484. *
  485. * Peek an &sk_buff. Unlike most other operations you _MUST_
  486. * be careful with this one. A peek leaves the buffer on the
  487. * list and someone else may run off with it. You must hold
  488. * the appropriate locks or have a private queue to do this.
  489. *
  490. * Returns %NULL for an empty list or a pointer to the head element.
  491. * The reference count is not incremented and the reference is therefore
  492. * volatile. Use with caution.
  493. */
  494. static inline struct sk_buff *skb_peek(struct sk_buff_head *list_)
  495. {
  496. struct sk_buff *list = ((struct sk_buff *)list_)->next;
  497. if (list == (struct sk_buff *)list_)
  498. list = NULL;
  499. return list;
  500. }
  501. /**
  502. * skb_peek_tail
  503. * @list_: list to peek at
  504. *
  505. * Peek an &sk_buff. Unlike most other operations you _MUST_
  506. * be careful with this one. A peek leaves the buffer on the
  507. * list and someone else may run off with it. You must hold
  508. * the appropriate locks or have a private queue to do this.
  509. *
  510. * Returns %NULL for an empty list or a pointer to the tail element.
  511. * The reference count is not incremented and the reference is therefore
  512. * volatile. Use with caution.
  513. */
  514. static inline struct sk_buff *skb_peek_tail(struct sk_buff_head *list_)
  515. {
  516. struct sk_buff *list = ((struct sk_buff *)list_)->prev;
  517. if (list == (struct sk_buff *)list_)
  518. list = NULL;
  519. return list;
  520. }
  521. /**
  522. * skb_queue_len - get queue length
  523. * @list_: list to measure
  524. *
  525. * Return the length of an &sk_buff queue.
  526. */
  527. static inline __u32 skb_queue_len(const struct sk_buff_head *list_)
  528. {
  529. return list_->qlen;
  530. }
  531. static inline void skb_queue_head_init(struct sk_buff_head *list)
  532. {
  533. spin_lock_init(&list->lock);
  534. list->prev = list->next = (struct sk_buff *)list;
  535. list->qlen = 0;
  536. }
  537. /*
  538. * Insert an sk_buff at the start of a list.
  539. *
  540. * The "__skb_xxxx()" functions are the non-atomic ones that
  541. * can only be called with interrupts disabled.
  542. */
  543. /**
  544. * __skb_queue_after - queue a buffer at the list head
  545. * @list: list to use
  546. * @prev: place after this buffer
  547. * @newsk: buffer to queue
  548. *
  549. * Queue a buffer int the middle of a list. This function takes no locks
  550. * and you must therefore hold required locks before calling it.
  551. *
  552. * A buffer cannot be placed on two lists at the same time.
  553. */
  554. static inline void __skb_queue_after(struct sk_buff_head *list,
  555. struct sk_buff *prev,
  556. struct sk_buff *newsk)
  557. {
  558. struct sk_buff *next;
  559. list->qlen++;
  560. next = prev->next;
  561. newsk->next = next;
  562. newsk->prev = prev;
  563. next->prev = prev->next = newsk;
  564. }
  565. /**
  566. * __skb_queue_head - queue a buffer at the list head
  567. * @list: list to use
  568. * @newsk: buffer to queue
  569. *
  570. * Queue a buffer at the start of a list. This function takes no locks
  571. * and you must therefore hold required locks before calling it.
  572. *
  573. * A buffer cannot be placed on two lists at the same time.
  574. */
  575. extern void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk);
  576. static inline void __skb_queue_head(struct sk_buff_head *list,
  577. struct sk_buff *newsk)
  578. {
  579. __skb_queue_after(list, (struct sk_buff *)list, newsk);
  580. }
  581. /**
  582. * __skb_queue_tail - queue a buffer at the list tail
  583. * @list: list to use
  584. * @newsk: buffer to queue
  585. *
  586. * Queue a buffer at the end of a list. This function takes no locks
  587. * and you must therefore hold required locks before calling it.
  588. *
  589. * A buffer cannot be placed on two lists at the same time.
  590. */
  591. extern void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk);
  592. static inline void __skb_queue_tail(struct sk_buff_head *list,
  593. struct sk_buff *newsk)
  594. {
  595. struct sk_buff *prev, *next;
  596. list->qlen++;
  597. next = (struct sk_buff *)list;
  598. prev = next->prev;
  599. newsk->next = next;
  600. newsk->prev = prev;
  601. next->prev = prev->next = newsk;
  602. }
  603. /**
  604. * __skb_dequeue - remove from the head of the queue
  605. * @list: list to dequeue from
  606. *
  607. * Remove the head of the list. This function does not take any locks
  608. * so must be used with appropriate locks held only. The head item is
  609. * returned or %NULL if the list is empty.
  610. */
  611. extern struct sk_buff *skb_dequeue(struct sk_buff_head *list);
  612. static inline struct sk_buff *__skb_dequeue(struct sk_buff_head *list)
  613. {
  614. struct sk_buff *next, *prev, *result;
  615. prev = (struct sk_buff *) list;
  616. next = prev->next;
  617. result = NULL;
  618. if (next != prev) {
  619. result = next;
  620. next = next->next;
  621. list->qlen--;
  622. next->prev = prev;
  623. prev->next = next;
  624. result->next = result->prev = NULL;
  625. }
  626. return result;
  627. }
  628. /*
  629. * Insert a packet on a list.
  630. */
  631. extern void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list);
  632. static inline void __skb_insert(struct sk_buff *newsk,
  633. struct sk_buff *prev, struct sk_buff *next,
  634. struct sk_buff_head *list)
  635. {
  636. newsk->next = next;
  637. newsk->prev = prev;
  638. next->prev = prev->next = newsk;
  639. list->qlen++;
  640. }
  641. /*
  642. * Place a packet after a given packet in a list.
  643. */
  644. extern void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list);
  645. static inline void __skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
  646. {
  647. __skb_insert(newsk, old, old->next, list);
  648. }
  649. /*
  650. * remove sk_buff from list. _Must_ be called atomically, and with
  651. * the list known..
  652. */
  653. extern void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list);
  654. static inline void __skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
  655. {
  656. struct sk_buff *next, *prev;
  657. list->qlen--;
  658. next = skb->next;
  659. prev = skb->prev;
  660. skb->next = skb->prev = NULL;
  661. next->prev = prev;
  662. prev->next = next;
  663. }
  664. /* XXX: more streamlined implementation */
  665. /**
  666. * __skb_dequeue_tail - remove from the tail of the queue
  667. * @list: list to dequeue from
  668. *
  669. * Remove the tail of the list. This function does not take any locks
  670. * so must be used with appropriate locks held only. The tail item is
  671. * returned or %NULL if the list is empty.
  672. */
  673. extern struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list);
  674. static inline struct sk_buff *__skb_dequeue_tail(struct sk_buff_head *list)
  675. {
  676. struct sk_buff *skb = skb_peek_tail(list);
  677. if (skb)
  678. __skb_unlink(skb, list);
  679. return skb;
  680. }
  681. static inline int skb_is_nonlinear(const struct sk_buff *skb)
  682. {
  683. return skb->data_len;
  684. }
  685. static inline unsigned int skb_headlen(const struct sk_buff *skb)
  686. {
  687. return skb->len - skb->data_len;
  688. }
  689. static inline int skb_pagelen(const struct sk_buff *skb)
  690. {
  691. int i, len = 0;
  692. for (i = (int)skb_shinfo(skb)->nr_frags - 1; i >= 0; i--)
  693. len += skb_shinfo(skb)->frags[i].size;
  694. return len + skb_headlen(skb);
  695. }
  696. static inline void skb_fill_page_desc(struct sk_buff *skb, int i,
  697. struct page *page, int off, int size)
  698. {
  699. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  700. frag->page = page;
  701. frag->page_offset = off;
  702. frag->size = size;
  703. skb_shinfo(skb)->nr_frags = i + 1;
  704. }
  705. #define SKB_PAGE_ASSERT(skb) BUG_ON(skb_shinfo(skb)->nr_frags)
  706. #define SKB_FRAG_ASSERT(skb) BUG_ON(skb_shinfo(skb)->frag_list)
  707. #define SKB_LINEAR_ASSERT(skb) BUG_ON(skb_is_nonlinear(skb))
  708. /*
  709. * Add data to an sk_buff
  710. */
  711. static inline unsigned char *__skb_put(struct sk_buff *skb, unsigned int len)
  712. {
  713. unsigned char *tmp = skb->tail;
  714. SKB_LINEAR_ASSERT(skb);
  715. skb->tail += len;
  716. skb->len += len;
  717. return tmp;
  718. }
  719. /**
  720. * skb_put - add data to a buffer
  721. * @skb: buffer to use
  722. * @len: amount of data to add
  723. *
  724. * This function extends the used data area of the buffer. If this would
  725. * exceed the total buffer size the kernel will panic. A pointer to the
  726. * first byte of the extra data is returned.
  727. */
  728. static inline unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
  729. {
  730. unsigned char *tmp = skb->tail;
  731. SKB_LINEAR_ASSERT(skb);
  732. skb->tail += len;
  733. skb->len += len;
  734. if (unlikely(skb->tail>skb->end))
  735. skb_over_panic(skb, len, current_text_addr());
  736. return tmp;
  737. }
  738. static inline unsigned char *__skb_push(struct sk_buff *skb, unsigned int len)
  739. {
  740. skb->data -= len;
  741. skb->len += len;
  742. return skb->data;
  743. }
  744. /**
  745. * skb_push - add data to the start of a buffer
  746. * @skb: buffer to use
  747. * @len: amount of data to add
  748. *
  749. * This function extends the used data area of the buffer at the buffer
  750. * start. If this would exceed the total buffer headroom the kernel will
  751. * panic. A pointer to the first byte of the extra data is returned.
  752. */
  753. static inline unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
  754. {
  755. skb->data -= len;
  756. skb->len += len;
  757. if (unlikely(skb->data<skb->head))
  758. skb_under_panic(skb, len, current_text_addr());
  759. return skb->data;
  760. }
  761. static inline unsigned char *__skb_pull(struct sk_buff *skb, unsigned int len)
  762. {
  763. skb->len -= len;
  764. BUG_ON(skb->len < skb->data_len);
  765. return skb->data += len;
  766. }
  767. /**
  768. * skb_pull - remove data from the start of a buffer
  769. * @skb: buffer to use
  770. * @len: amount of data to remove
  771. *
  772. * This function removes data from the start of a buffer, returning
  773. * the memory to the headroom. A pointer to the next data in the buffer
  774. * is returned. Once the data has been pulled future pushes will overwrite
  775. * the old data.
  776. */
  777. static inline unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
  778. {
  779. return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
  780. }
  781. extern unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta);
  782. static inline unsigned char *__pskb_pull(struct sk_buff *skb, unsigned int len)
  783. {
  784. if (len > skb_headlen(skb) &&
  785. !__pskb_pull_tail(skb, len-skb_headlen(skb)))
  786. return NULL;
  787. skb->len -= len;
  788. return skb->data += len;
  789. }
  790. static inline unsigned char *pskb_pull(struct sk_buff *skb, unsigned int len)
  791. {
  792. return unlikely(len > skb->len) ? NULL : __pskb_pull(skb, len);
  793. }
  794. static inline int pskb_may_pull(struct sk_buff *skb, unsigned int len)
  795. {
  796. if (likely(len <= skb_headlen(skb)))
  797. return 1;
  798. if (unlikely(len > skb->len))
  799. return 0;
  800. return __pskb_pull_tail(skb, len-skb_headlen(skb)) != NULL;
  801. }
  802. /**
  803. * skb_headroom - bytes at buffer head
  804. * @skb: buffer to check
  805. *
  806. * Return the number of bytes of free space at the head of an &sk_buff.
  807. */
  808. static inline int skb_headroom(const struct sk_buff *skb)
  809. {
  810. return skb->data - skb->head;
  811. }
  812. /**
  813. * skb_tailroom - bytes at buffer end
  814. * @skb: buffer to check
  815. *
  816. * Return the number of bytes of free space at the tail of an sk_buff
  817. */
  818. static inline int skb_tailroom(const struct sk_buff *skb)
  819. {
  820. return skb_is_nonlinear(skb) ? 0 : skb->end - skb->tail;
  821. }
  822. /**
  823. * skb_reserve - adjust headroom
  824. * @skb: buffer to alter
  825. * @len: bytes to move
  826. *
  827. * Increase the headroom of an empty &sk_buff by reducing the tail
  828. * room. This is only allowed for an empty buffer.
  829. */
  830. static inline void skb_reserve(struct sk_buff *skb, unsigned int len)
  831. {
  832. skb->data += len;
  833. skb->tail += len;
  834. }
  835. /*
  836. * CPUs often take a performance hit when accessing unaligned memory
  837. * locations. The actual performance hit varies, it can be small if the
  838. * hardware handles it or large if we have to take an exception and fix it
  839. * in software.
  840. *
  841. * Since an ethernet header is 14 bytes network drivers often end up with
  842. * the IP header at an unaligned offset. The IP header can be aligned by
  843. * shifting the start of the packet by 2 bytes. Drivers should do this
  844. * with:
  845. *
  846. * skb_reserve(NET_IP_ALIGN);
  847. *
  848. * The downside to this alignment of the IP header is that the DMA is now
  849. * unaligned. On some architectures the cost of an unaligned DMA is high
  850. * and this cost outweighs the gains made by aligning the IP header.
  851. *
  852. * Since this trade off varies between architectures, we allow NET_IP_ALIGN
  853. * to be overridden.
  854. */
  855. #ifndef NET_IP_ALIGN
  856. #define NET_IP_ALIGN 2
  857. #endif
  858. extern int ___pskb_trim(struct sk_buff *skb, unsigned int len, int realloc);
  859. static inline void __skb_trim(struct sk_buff *skb, unsigned int len)
  860. {
  861. if (!skb->data_len) {
  862. skb->len = len;
  863. skb->tail = skb->data + len;
  864. } else
  865. ___pskb_trim(skb, len, 0);
  866. }
  867. /**
  868. * skb_trim - remove end from a buffer
  869. * @skb: buffer to alter
  870. * @len: new length
  871. *
  872. * Cut the length of a buffer down by removing data from the tail. If
  873. * the buffer is already under the length specified it is not modified.
  874. */
  875. static inline void skb_trim(struct sk_buff *skb, unsigned int len)
  876. {
  877. if (skb->len > len)
  878. __skb_trim(skb, len);
  879. }
  880. static inline int __pskb_trim(struct sk_buff *skb, unsigned int len)
  881. {
  882. if (!skb->data_len) {
  883. skb->len = len;
  884. skb->tail = skb->data+len;
  885. return 0;
  886. }
  887. return ___pskb_trim(skb, len, 1);
  888. }
  889. static inline int pskb_trim(struct sk_buff *skb, unsigned int len)
  890. {
  891. return (len < skb->len) ? __pskb_trim(skb, len) : 0;
  892. }
  893. /**
  894. * skb_orphan - orphan a buffer
  895. * @skb: buffer to orphan
  896. *
  897. * If a buffer currently has an owner then we call the owner's
  898. * destructor function and make the @skb unowned. The buffer continues
  899. * to exist but is no longer charged to its former owner.
  900. */
  901. static inline void skb_orphan(struct sk_buff *skb)
  902. {
  903. if (skb->destructor)
  904. skb->destructor(skb);
  905. skb->destructor = NULL;
  906. skb->sk = NULL;
  907. }
  908. /**
  909. * __skb_queue_purge - empty a list
  910. * @list: list to empty
  911. *
  912. * Delete all buffers on an &sk_buff list. Each buffer is removed from
  913. * the list and one reference dropped. This function does not take the
  914. * list lock and the caller must hold the relevant locks to use it.
  915. */
  916. extern void skb_queue_purge(struct sk_buff_head *list);
  917. static inline void __skb_queue_purge(struct sk_buff_head *list)
  918. {
  919. struct sk_buff *skb;
  920. while ((skb = __skb_dequeue(list)) != NULL)
  921. kfree_skb(skb);
  922. }
  923. #ifndef CONFIG_HAVE_ARCH_DEV_ALLOC_SKB
  924. /**
  925. * __dev_alloc_skb - allocate an skbuff for sending
  926. * @length: length to allocate
  927. * @gfp_mask: get_free_pages mask, passed to alloc_skb
  928. *
  929. * Allocate a new &sk_buff and assign it a usage count of one. The
  930. * buffer has unspecified headroom built in. Users should allocate
  931. * the headroom they think they need without accounting for the
  932. * built in space. The built in space is used for optimisations.
  933. *
  934. * %NULL is returned in there is no free memory.
  935. */
  936. static inline struct sk_buff *__dev_alloc_skb(unsigned int length,
  937. gfp_t gfp_mask)
  938. {
  939. struct sk_buff *skb = alloc_skb(length + 16, gfp_mask);
  940. if (likely(skb))
  941. skb_reserve(skb, 16);
  942. return skb;
  943. }
  944. #else
  945. extern struct sk_buff *__dev_alloc_skb(unsigned int length, int gfp_mask);
  946. #endif
  947. /**
  948. * dev_alloc_skb - allocate an skbuff for sending
  949. * @length: length to allocate
  950. *
  951. * Allocate a new &sk_buff and assign it a usage count of one. The
  952. * buffer has unspecified headroom built in. Users should allocate
  953. * the headroom they think they need without accounting for the
  954. * built in space. The built in space is used for optimisations.
  955. *
  956. * %NULL is returned in there is no free memory. Although this function
  957. * allocates memory it can be called from an interrupt.
  958. */
  959. static inline struct sk_buff *dev_alloc_skb(unsigned int length)
  960. {
  961. return __dev_alloc_skb(length, GFP_ATOMIC);
  962. }
  963. /**
  964. * skb_cow - copy header of skb when it is required
  965. * @skb: buffer to cow
  966. * @headroom: needed headroom
  967. *
  968. * If the skb passed lacks sufficient headroom or its data part
  969. * is shared, data is reallocated. If reallocation fails, an error
  970. * is returned and original skb is not changed.
  971. *
  972. * The result is skb with writable area skb->head...skb->tail
  973. * and at least @headroom of space at head.
  974. */
  975. static inline int skb_cow(struct sk_buff *skb, unsigned int headroom)
  976. {
  977. int delta = (headroom > 16 ? headroom : 16) - skb_headroom(skb);
  978. if (delta < 0)
  979. delta = 0;
  980. if (delta || skb_cloned(skb))
  981. return pskb_expand_head(skb, (delta + 15) & ~15, 0, GFP_ATOMIC);
  982. return 0;
  983. }
  984. /**
  985. * skb_padto - pad an skbuff up to a minimal size
  986. * @skb: buffer to pad
  987. * @len: minimal length
  988. *
  989. * Pads up a buffer to ensure the trailing bytes exist and are
  990. * blanked. If the buffer already contains sufficient data it
  991. * is untouched. Returns the buffer, which may be a replacement
  992. * for the original, or NULL for out of memory - in which case
  993. * the original buffer is still freed.
  994. */
  995. static inline struct sk_buff *skb_padto(struct sk_buff *skb, unsigned int len)
  996. {
  997. unsigned int size = skb->len;
  998. if (likely(size >= len))
  999. return skb;
  1000. return skb_pad(skb, len-size);
  1001. }
  1002. static inline int skb_add_data(struct sk_buff *skb,
  1003. char __user *from, int copy)
  1004. {
  1005. const int off = skb->len;
  1006. if (skb->ip_summed == CHECKSUM_NONE) {
  1007. int err = 0;
  1008. unsigned int csum = csum_and_copy_from_user(from,
  1009. skb_put(skb, copy),
  1010. copy, 0, &err);
  1011. if (!err) {
  1012. skb->csum = csum_block_add(skb->csum, csum, off);
  1013. return 0;
  1014. }
  1015. } else if (!copy_from_user(skb_put(skb, copy), from, copy))
  1016. return 0;
  1017. __skb_trim(skb, off);
  1018. return -EFAULT;
  1019. }
  1020. static inline int skb_can_coalesce(struct sk_buff *skb, int i,
  1021. struct page *page, int off)
  1022. {
  1023. if (i) {
  1024. struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
  1025. return page == frag->page &&
  1026. off == frag->page_offset + frag->size;
  1027. }
  1028. return 0;
  1029. }
  1030. /**
  1031. * skb_linearize - convert paged skb to linear one
  1032. * @skb: buffer to linarize
  1033. * @gfp: allocation mode
  1034. *
  1035. * If there is no free memory -ENOMEM is returned, otherwise zero
  1036. * is returned and the old skb data released.
  1037. */
  1038. extern int __skb_linearize(struct sk_buff *skb, gfp_t gfp);
  1039. static inline int skb_linearize(struct sk_buff *skb, gfp_t gfp)
  1040. {
  1041. return __skb_linearize(skb, gfp);
  1042. }
  1043. /**
  1044. * skb_postpull_rcsum - update checksum for received skb after pull
  1045. * @skb: buffer to update
  1046. * @start: start of data before pull
  1047. * @len: length of data pulled
  1048. *
  1049. * After doing a pull on a received packet, you need to call this to
  1050. * update the CHECKSUM_HW checksum, or set ip_summed to CHECKSUM_NONE
  1051. * so that it can be recomputed from scratch.
  1052. */
  1053. static inline void skb_postpull_rcsum(struct sk_buff *skb,
  1054. const void *start, int len)
  1055. {
  1056. if (skb->ip_summed == CHECKSUM_HW)
  1057. skb->csum = csum_sub(skb->csum, csum_partial(start, len, 0));
  1058. }
  1059. /**
  1060. * pskb_trim_rcsum - trim received skb and update checksum
  1061. * @skb: buffer to trim
  1062. * @len: new length
  1063. *
  1064. * This is exactly the same as pskb_trim except that it ensures the
  1065. * checksum of received packets are still valid after the operation.
  1066. */
  1067. static inline int pskb_trim_rcsum(struct sk_buff *skb, unsigned int len)
  1068. {
  1069. if (likely(len >= skb->len))
  1070. return 0;
  1071. if (skb->ip_summed == CHECKSUM_HW)
  1072. skb->ip_summed = CHECKSUM_NONE;
  1073. return __pskb_trim(skb, len);
  1074. }
  1075. static inline void *kmap_skb_frag(const skb_frag_t *frag)
  1076. {
  1077. #ifdef CONFIG_HIGHMEM
  1078. BUG_ON(in_irq());
  1079. local_bh_disable();
  1080. #endif
  1081. return kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ);
  1082. }
  1083. static inline void kunmap_skb_frag(void *vaddr)
  1084. {
  1085. kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
  1086. #ifdef CONFIG_HIGHMEM
  1087. local_bh_enable();
  1088. #endif
  1089. }
  1090. #define skb_queue_walk(queue, skb) \
  1091. for (skb = (queue)->next; \
  1092. prefetch(skb->next), (skb != (struct sk_buff *)(queue)); \
  1093. skb = skb->next)
  1094. #define skb_queue_reverse_walk(queue, skb) \
  1095. for (skb = (queue)->prev; \
  1096. prefetch(skb->prev), (skb != (struct sk_buff *)(queue)); \
  1097. skb = skb->prev)
  1098. extern struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags,
  1099. int noblock, int *err);
  1100. extern unsigned int datagram_poll(struct file *file, struct socket *sock,
  1101. struct poll_table_struct *wait);
  1102. extern int skb_copy_datagram_iovec(const struct sk_buff *from,
  1103. int offset, struct iovec *to,
  1104. int size);
  1105. extern int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
  1106. int hlen,
  1107. struct iovec *iov);
  1108. extern void skb_free_datagram(struct sock *sk, struct sk_buff *skb);
  1109. extern void skb_kill_datagram(struct sock *sk, struct sk_buff *skb,
  1110. unsigned int flags);
  1111. extern unsigned int skb_checksum(const struct sk_buff *skb, int offset,
  1112. int len, unsigned int csum);
  1113. extern int skb_copy_bits(const struct sk_buff *skb, int offset,
  1114. void *to, int len);
  1115. extern int skb_store_bits(const struct sk_buff *skb, int offset,
  1116. void *from, int len);
  1117. extern unsigned int skb_copy_and_csum_bits(const struct sk_buff *skb,
  1118. int offset, u8 *to, int len,
  1119. unsigned int csum);
  1120. extern void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to);
  1121. extern void skb_split(struct sk_buff *skb,
  1122. struct sk_buff *skb1, const u32 len);
  1123. extern void skb_release_data(struct sk_buff *skb);
  1124. static inline void *skb_header_pointer(const struct sk_buff *skb, int offset,
  1125. int len, void *buffer)
  1126. {
  1127. int hlen = skb_headlen(skb);
  1128. if (hlen - offset >= len)
  1129. return skb->data + offset;
  1130. if (skb_copy_bits(skb, offset, buffer, len) < 0)
  1131. return NULL;
  1132. return buffer;
  1133. }
  1134. extern void skb_init(void);
  1135. extern void skb_add_mtu(int mtu);
  1136. /**
  1137. * skb_get_timestamp - get timestamp from a skb
  1138. * @skb: skb to get stamp from
  1139. * @stamp: pointer to struct timeval to store stamp in
  1140. *
  1141. * Timestamps are stored in the skb as offsets to a base timestamp.
  1142. * This function converts the offset back to a struct timeval and stores
  1143. * it in stamp.
  1144. */
  1145. static inline void skb_get_timestamp(const struct sk_buff *skb, struct timeval *stamp)
  1146. {
  1147. stamp->tv_sec = skb->tstamp.off_sec;
  1148. stamp->tv_usec = skb->tstamp.off_usec;
  1149. }
  1150. /**
  1151. * skb_set_timestamp - set timestamp of a skb
  1152. * @skb: skb to set stamp of
  1153. * @stamp: pointer to struct timeval to get stamp from
  1154. *
  1155. * Timestamps are stored in the skb as offsets to a base timestamp.
  1156. * This function converts a struct timeval to an offset and stores
  1157. * it in the skb.
  1158. */
  1159. static inline void skb_set_timestamp(struct sk_buff *skb, const struct timeval *stamp)
  1160. {
  1161. skb->tstamp.off_sec = stamp->tv_sec;
  1162. skb->tstamp.off_usec = stamp->tv_usec;
  1163. }
  1164. extern void __net_timestamp(struct sk_buff *skb);
  1165. extern unsigned int __skb_checksum_complete(struct sk_buff *skb);
  1166. /**
  1167. * skb_checksum_complete - Calculate checksum of an entire packet
  1168. * @skb: packet to process
  1169. *
  1170. * This function calculates the checksum over the entire packet plus
  1171. * the value of skb->csum. The latter can be used to supply the
  1172. * checksum of a pseudo header as used by TCP/UDP. It returns the
  1173. * checksum.
  1174. *
  1175. * For protocols that contain complete checksums such as ICMP/TCP/UDP,
  1176. * this function can be used to verify that checksum on received
  1177. * packets. In that case the function should return zero if the
  1178. * checksum is correct. In particular, this function will return zero
  1179. * if skb->ip_summed is CHECKSUM_UNNECESSARY which indicates that the
  1180. * hardware has already verified the correctness of the checksum.
  1181. */
  1182. static inline unsigned int skb_checksum_complete(struct sk_buff *skb)
  1183. {
  1184. return skb->ip_summed != CHECKSUM_UNNECESSARY &&
  1185. __skb_checksum_complete(skb);
  1186. }
  1187. #ifdef CONFIG_NETFILTER
  1188. static inline void nf_conntrack_put(struct nf_conntrack *nfct)
  1189. {
  1190. if (nfct && atomic_dec_and_test(&nfct->use))
  1191. nfct->destroy(nfct);
  1192. }
  1193. static inline void nf_conntrack_get(struct nf_conntrack *nfct)
  1194. {
  1195. if (nfct)
  1196. atomic_inc(&nfct->use);
  1197. }
  1198. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  1199. static inline void nf_conntrack_get_reasm(struct sk_buff *skb)
  1200. {
  1201. if (skb)
  1202. atomic_inc(&skb->users);
  1203. }
  1204. static inline void nf_conntrack_put_reasm(struct sk_buff *skb)
  1205. {
  1206. if (skb)
  1207. kfree_skb(skb);
  1208. }
  1209. #endif
  1210. static inline void nf_reset(struct sk_buff *skb)
  1211. {
  1212. nf_conntrack_put(skb->nfct);
  1213. skb->nfct = NULL;
  1214. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  1215. nf_conntrack_put_reasm(skb->nfct_reasm);
  1216. skb->nfct_reasm = NULL;
  1217. #endif
  1218. }
  1219. #ifdef CONFIG_BRIDGE_NETFILTER
  1220. static inline void nf_bridge_put(struct nf_bridge_info *nf_bridge)
  1221. {
  1222. if (nf_bridge && atomic_dec_and_test(&nf_bridge->use))
  1223. kfree(nf_bridge);
  1224. }
  1225. static inline void nf_bridge_get(struct nf_bridge_info *nf_bridge)
  1226. {
  1227. if (nf_bridge)
  1228. atomic_inc(&nf_bridge->use);
  1229. }
  1230. #endif /* CONFIG_BRIDGE_NETFILTER */
  1231. #else /* CONFIG_NETFILTER */
  1232. static inline void nf_reset(struct sk_buff *skb) {}
  1233. #endif /* CONFIG_NETFILTER */
  1234. #endif /* __KERNEL__ */
  1235. #endif /* _LINUX_SKBUFF_H */