skbuff.h 40 KB

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