skbuff.h 48 KB

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