skbuff.h 40 KB

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