skbuff.h 47 KB

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