skbuff.h 36 KB

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