skbuff.h 45 KB

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