skbuff.h 40 KB

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