skbuff.h 59 KB

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