skbuff.h 41 KB

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