structs.h 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106
  1. /* SCTP kernel implementation
  2. * (C) Copyright IBM Corp. 2001, 2004
  3. * Copyright (c) 1999-2000 Cisco, Inc.
  4. * Copyright (c) 1999-2001 Motorola, Inc.
  5. * Copyright (c) 2001 Intel Corp.
  6. *
  7. * This file is part of the SCTP kernel implementation
  8. *
  9. * This SCTP implementation is free software;
  10. * you can redistribute it and/or modify it under the terms of
  11. * the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2, or (at your option)
  13. * any later version.
  14. *
  15. * This SCTP implementation is distributed in the hope that it
  16. * will be useful, but WITHOUT ANY WARRANTY; without even the implied
  17. * ************************
  18. * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  19. * See the GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with GNU CC; see the file COPYING. If not, see
  23. * <http://www.gnu.org/licenses/>.
  24. *
  25. * Please send any bug reports or fixes you make to the
  26. * email addresses:
  27. * lksctp developers <linux-sctp@vger.kernel.org>
  28. *
  29. * Written or modified by:
  30. * Randall Stewart <randall@sctp.chicago.il.us>
  31. * Ken Morneau <kmorneau@cisco.com>
  32. * Qiaobing Xie <qxie1@email.mot.com>
  33. * La Monte H.P. Yarroll <piggy@acm.org>
  34. * Karl Knutson <karl@athena.chicago.il.us>
  35. * Jon Grimm <jgrimm@us.ibm.com>
  36. * Xingang Guo <xingang.guo@intel.com>
  37. * Hui Huang <hui.huang@nokia.com>
  38. * Sridhar Samudrala <sri@us.ibm.com>
  39. * Daisy Chang <daisyc@us.ibm.com>
  40. * Dajiang Zhang <dajiang.zhang@nokia.com>
  41. * Ardelle Fan <ardelle.fan@intel.com>
  42. * Ryan Layer <rmlayer@us.ibm.com>
  43. * Anup Pemmaiah <pemmaiah@cc.usu.edu>
  44. * Kevin Gao <kevin.gao@intel.com>
  45. */
  46. #ifndef __sctp_structs_h__
  47. #define __sctp_structs_h__
  48. #include <linux/ktime.h>
  49. #include <linux/rhashtable.h>
  50. #include <linux/socket.h> /* linux/in.h needs this!! */
  51. #include <linux/in.h> /* We get struct sockaddr_in. */
  52. #include <linux/in6.h> /* We get struct in6_addr */
  53. #include <linux/ipv6.h>
  54. #include <asm/param.h> /* We get MAXHOSTNAMELEN. */
  55. #include <linux/atomic.h> /* This gets us atomic counters. */
  56. #include <linux/skbuff.h> /* We need sk_buff_head. */
  57. #include <linux/workqueue.h> /* We need tq_struct. */
  58. #include <linux/sctp.h> /* We need sctp* header structs. */
  59. #include <net/sctp/auth.h> /* We need auth specific structs */
  60. #include <net/ip.h> /* For inet_skb_parm */
  61. /* A convenience structure for handling sockaddr structures.
  62. * We should wean ourselves off this.
  63. */
  64. union sctp_addr {
  65. struct sockaddr_in v4;
  66. struct sockaddr_in6 v6;
  67. struct sockaddr sa;
  68. };
  69. /* Forward declarations for data structures. */
  70. struct sctp_globals;
  71. struct sctp_endpoint;
  72. struct sctp_association;
  73. struct sctp_transport;
  74. struct sctp_packet;
  75. struct sctp_chunk;
  76. struct sctp_inq;
  77. struct sctp_outq;
  78. struct sctp_bind_addr;
  79. struct sctp_ulpq;
  80. struct sctp_ep_common;
  81. struct crypto_shash;
  82. struct sctp_stream;
  83. #include <net/sctp/tsnmap.h>
  84. #include <net/sctp/ulpevent.h>
  85. #include <net/sctp/ulpqueue.h>
  86. #include <net/sctp/stream_interleave.h>
  87. /* Structures useful for managing bind/connect. */
  88. struct sctp_bind_bucket {
  89. unsigned short port;
  90. unsigned short fastreuse;
  91. struct hlist_node node;
  92. struct hlist_head owner;
  93. struct net *net;
  94. };
  95. struct sctp_bind_hashbucket {
  96. spinlock_t lock;
  97. struct hlist_head chain;
  98. };
  99. /* Used for hashing all associations. */
  100. struct sctp_hashbucket {
  101. rwlock_t lock;
  102. struct hlist_head chain;
  103. } __attribute__((__aligned__(8)));
  104. /* The SCTP globals structure. */
  105. extern struct sctp_globals {
  106. /* This is a list of groups of functions for each address
  107. * family that we support.
  108. */
  109. struct list_head address_families;
  110. /* This is the hash of all endpoints. */
  111. struct sctp_hashbucket *ep_hashtable;
  112. /* This is the sctp port control hash. */
  113. struct sctp_bind_hashbucket *port_hashtable;
  114. /* This is the hash of all transports. */
  115. struct rhltable transport_hashtable;
  116. /* Sizes of above hashtables. */
  117. int ep_hashsize;
  118. int port_hashsize;
  119. /* Default initialization values to be applied to new associations. */
  120. __u16 max_instreams;
  121. __u16 max_outstreams;
  122. /* Flag to indicate whether computing and verifying checksum
  123. * is disabled. */
  124. bool checksum_disable;
  125. } sctp_globals;
  126. #define sctp_max_instreams (sctp_globals.max_instreams)
  127. #define sctp_max_outstreams (sctp_globals.max_outstreams)
  128. #define sctp_address_families (sctp_globals.address_families)
  129. #define sctp_ep_hashsize (sctp_globals.ep_hashsize)
  130. #define sctp_ep_hashtable (sctp_globals.ep_hashtable)
  131. #define sctp_port_hashsize (sctp_globals.port_hashsize)
  132. #define sctp_port_hashtable (sctp_globals.port_hashtable)
  133. #define sctp_transport_hashtable (sctp_globals.transport_hashtable)
  134. #define sctp_checksum_disable (sctp_globals.checksum_disable)
  135. /* SCTP Socket type: UDP or TCP style. */
  136. enum sctp_socket_type {
  137. SCTP_SOCKET_UDP = 0,
  138. SCTP_SOCKET_UDP_HIGH_BANDWIDTH,
  139. SCTP_SOCKET_TCP
  140. };
  141. /* Per socket SCTP information. */
  142. struct sctp_sock {
  143. /* inet_sock has to be the first member of sctp_sock */
  144. struct inet_sock inet;
  145. /* What kind of a socket is this? */
  146. enum sctp_socket_type type;
  147. /* PF_ family specific functions. */
  148. struct sctp_pf *pf;
  149. /* Access to HMAC transform. */
  150. struct crypto_shash *hmac;
  151. char *sctp_hmac_alg;
  152. /* What is our base endpointer? */
  153. struct sctp_endpoint *ep;
  154. struct sctp_bind_bucket *bind_hash;
  155. /* Various Socket Options. */
  156. __u16 default_stream;
  157. __u32 default_ppid;
  158. __u16 default_flags;
  159. __u32 default_context;
  160. __u32 default_timetolive;
  161. __u32 default_rcv_context;
  162. int max_burst;
  163. /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
  164. * the destination address every heartbeat interval. This value
  165. * will be inherited by all new associations.
  166. */
  167. __u32 hbinterval;
  168. /* This is the max_retrans value for new associations. */
  169. __u16 pathmaxrxt;
  170. /* The initial Path MTU to use for new associations. */
  171. __u32 pathmtu;
  172. /* The default SACK delay timeout for new associations. */
  173. __u32 sackdelay;
  174. __u32 sackfreq;
  175. /* Flags controlling Heartbeat, SACK delay, and Path MTU Discovery. */
  176. __u32 param_flags;
  177. struct sctp_initmsg initmsg;
  178. struct sctp_rtoinfo rtoinfo;
  179. struct sctp_paddrparams paddrparam;
  180. struct sctp_event_subscribe subscribe;
  181. struct sctp_assocparams assocparams;
  182. int user_frag;
  183. __u32 autoclose;
  184. __u32 adaptation_ind;
  185. __u32 pd_point;
  186. __u16 nodelay:1,
  187. disable_fragments:1,
  188. v4mapped:1,
  189. frag_interleave:1,
  190. strm_interleave:1,
  191. recvrcvinfo:1,
  192. recvnxtinfo:1,
  193. data_ready_signalled:1;
  194. atomic_t pd_mode;
  195. /* Receive to here while partial delivery is in effect. */
  196. struct sk_buff_head pd_lobby;
  197. /* These must be the last fields, as they will skipped on copies,
  198. * like on accept and peeloff operations
  199. */
  200. struct list_head auto_asconf_list;
  201. int do_auto_asconf;
  202. };
  203. static inline struct sctp_sock *sctp_sk(const struct sock *sk)
  204. {
  205. return (struct sctp_sock *)sk;
  206. }
  207. static inline struct sock *sctp_opt2sk(const struct sctp_sock *sp)
  208. {
  209. return (struct sock *)sp;
  210. }
  211. #if IS_ENABLED(CONFIG_IPV6)
  212. struct sctp6_sock {
  213. struct sctp_sock sctp;
  214. struct ipv6_pinfo inet6;
  215. };
  216. #endif /* CONFIG_IPV6 */
  217. /* This is our APPLICATION-SPECIFIC state cookie.
  218. * THIS IS NOT DICTATED BY THE SPECIFICATION.
  219. */
  220. /* These are the parts of an association which we send in the cookie.
  221. * Most of these are straight out of:
  222. * RFC2960 12.2 Parameters necessary per association (i.e. the TCB)
  223. *
  224. */
  225. struct sctp_cookie {
  226. /* My : Tag expected in every inbound packet and sent
  227. * Verification: in the INIT or INIT ACK chunk.
  228. * Tag :
  229. */
  230. __u32 my_vtag;
  231. /* Peer's : Tag expected in every outbound packet except
  232. * Verification: in the INIT chunk.
  233. * Tag :
  234. */
  235. __u32 peer_vtag;
  236. /* The rest of these are not from the spec, but really need to
  237. * be in the cookie.
  238. */
  239. /* My Tie Tag : Assist in discovering a restarting association. */
  240. __u32 my_ttag;
  241. /* Peer's Tie Tag: Assist in discovering a restarting association. */
  242. __u32 peer_ttag;
  243. /* When does this cookie expire? */
  244. ktime_t expiration;
  245. /* Number of inbound/outbound streams which are set
  246. * and negotiated during the INIT process.
  247. */
  248. __u16 sinit_num_ostreams;
  249. __u16 sinit_max_instreams;
  250. /* This is the first sequence number I used. */
  251. __u32 initial_tsn;
  252. /* This holds the originating address of the INIT packet. */
  253. union sctp_addr peer_addr;
  254. /* IG Section 2.35.3
  255. * Include the source port of the INIT-ACK
  256. */
  257. __u16 my_port;
  258. __u8 prsctp_capable;
  259. /* Padding for future use */
  260. __u8 padding;
  261. __u32 adaptation_ind;
  262. __u8 auth_random[sizeof(struct sctp_paramhdr) +
  263. SCTP_AUTH_RANDOM_LENGTH];
  264. __u8 auth_hmacs[SCTP_AUTH_NUM_HMACS * sizeof(__u16) + 2];
  265. __u8 auth_chunks[sizeof(struct sctp_paramhdr) + SCTP_AUTH_MAX_CHUNKS];
  266. /* This is a shim for my peer's INIT packet, followed by
  267. * a copy of the raw address list of the association.
  268. * The length of the raw address list is saved in the
  269. * raw_addr_list_len field, which will be used at the time when
  270. * the association TCB is re-constructed from the cookie.
  271. */
  272. __u32 raw_addr_list_len;
  273. struct sctp_init_chunk peer_init[0];
  274. };
  275. /* The format of our cookie that we send to our peer. */
  276. struct sctp_signed_cookie {
  277. __u8 signature[SCTP_SECRET_SIZE];
  278. __u32 __pad; /* force sctp_cookie alignment to 64 bits */
  279. struct sctp_cookie c;
  280. } __packed;
  281. /* This is another convenience type to allocate memory for address
  282. * params for the maximum size and pass such structures around
  283. * internally.
  284. */
  285. union sctp_addr_param {
  286. struct sctp_paramhdr p;
  287. struct sctp_ipv4addr_param v4;
  288. struct sctp_ipv6addr_param v6;
  289. };
  290. /* A convenience type to allow walking through the various
  291. * parameters and avoid casting all over the place.
  292. */
  293. union sctp_params {
  294. void *v;
  295. struct sctp_paramhdr *p;
  296. struct sctp_cookie_preserve_param *life;
  297. struct sctp_hostname_param *dns;
  298. struct sctp_cookie_param *cookie;
  299. struct sctp_supported_addrs_param *sat;
  300. struct sctp_ipv4addr_param *v4;
  301. struct sctp_ipv6addr_param *v6;
  302. union sctp_addr_param *addr;
  303. struct sctp_adaptation_ind_param *aind;
  304. struct sctp_supported_ext_param *ext;
  305. struct sctp_random_param *random;
  306. struct sctp_chunks_param *chunks;
  307. struct sctp_hmac_algo_param *hmac_algo;
  308. struct sctp_addip_param *addip;
  309. };
  310. /* RFC 2960. Section 3.3.5 Heartbeat.
  311. * Heartbeat Information: variable length
  312. * The Sender-specific Heartbeat Info field should normally include
  313. * information about the sender's current time when this HEARTBEAT
  314. * chunk is sent and the destination transport address to which this
  315. * HEARTBEAT is sent (see Section 8.3).
  316. */
  317. struct sctp_sender_hb_info {
  318. struct sctp_paramhdr param_hdr;
  319. union sctp_addr daddr;
  320. unsigned long sent_at;
  321. __u64 hb_nonce;
  322. };
  323. int sctp_stream_init(struct sctp_stream *stream, __u16 outcnt, __u16 incnt,
  324. gfp_t gfp);
  325. int sctp_stream_init_ext(struct sctp_stream *stream, __u16 sid);
  326. void sctp_stream_free(struct sctp_stream *stream);
  327. void sctp_stream_clear(struct sctp_stream *stream);
  328. void sctp_stream_update(struct sctp_stream *stream, struct sctp_stream *new);
  329. /* What is the current SSN number for this stream? */
  330. #define sctp_ssn_peek(stream, type, sid) \
  331. ((stream)->type[sid].ssn)
  332. /* Return the next SSN number for this stream. */
  333. #define sctp_ssn_next(stream, type, sid) \
  334. ((stream)->type[sid].ssn++)
  335. /* Skip over this ssn and all below. */
  336. #define sctp_ssn_skip(stream, type, sid, ssn) \
  337. ((stream)->type[sid].ssn = ssn + 1)
  338. /* What is the current MID number for this stream? */
  339. #define sctp_mid_peek(stream, type, sid) \
  340. ((stream)->type[sid].mid)
  341. /* Return the next MID number for this stream. */
  342. #define sctp_mid_next(stream, type, sid) \
  343. ((stream)->type[sid].mid++)
  344. /* Skip over this mid and all below. */
  345. #define sctp_mid_skip(stream, type, sid, mid) \
  346. ((stream)->type[sid].mid = mid + 1)
  347. #define sctp_stream_in(asoc, sid) (&(asoc)->stream.in[sid])
  348. /* What is the current MID_uo number for this stream? */
  349. #define sctp_mid_uo_peek(stream, type, sid) \
  350. ((stream)->type[sid].mid_uo)
  351. /* Return the next MID_uo number for this stream. */
  352. #define sctp_mid_uo_next(stream, type, sid) \
  353. ((stream)->type[sid].mid_uo++)
  354. /*
  355. * Pointers to address related SCTP functions.
  356. * (i.e. things that depend on the address family.)
  357. */
  358. struct sctp_af {
  359. int (*sctp_xmit) (struct sk_buff *skb,
  360. struct sctp_transport *);
  361. int (*setsockopt) (struct sock *sk,
  362. int level,
  363. int optname,
  364. char __user *optval,
  365. unsigned int optlen);
  366. int (*getsockopt) (struct sock *sk,
  367. int level,
  368. int optname,
  369. char __user *optval,
  370. int __user *optlen);
  371. int (*compat_setsockopt) (struct sock *sk,
  372. int level,
  373. int optname,
  374. char __user *optval,
  375. unsigned int optlen);
  376. int (*compat_getsockopt) (struct sock *sk,
  377. int level,
  378. int optname,
  379. char __user *optval,
  380. int __user *optlen);
  381. void (*get_dst) (struct sctp_transport *t,
  382. union sctp_addr *saddr,
  383. struct flowi *fl,
  384. struct sock *sk);
  385. void (*get_saddr) (struct sctp_sock *sk,
  386. struct sctp_transport *t,
  387. struct flowi *fl);
  388. void (*copy_addrlist) (struct list_head *,
  389. struct net_device *);
  390. int (*cmp_addr) (const union sctp_addr *addr1,
  391. const union sctp_addr *addr2);
  392. void (*addr_copy) (union sctp_addr *dst,
  393. union sctp_addr *src);
  394. void (*from_skb) (union sctp_addr *,
  395. struct sk_buff *skb,
  396. int saddr);
  397. void (*from_sk) (union sctp_addr *,
  398. struct sock *sk);
  399. void (*from_addr_param) (union sctp_addr *,
  400. union sctp_addr_param *,
  401. __be16 port, int iif);
  402. int (*to_addr_param) (const union sctp_addr *,
  403. union sctp_addr_param *);
  404. int (*addr_valid) (union sctp_addr *,
  405. struct sctp_sock *,
  406. const struct sk_buff *);
  407. enum sctp_scope (*scope)(union sctp_addr *);
  408. void (*inaddr_any) (union sctp_addr *, __be16);
  409. int (*is_any) (const union sctp_addr *);
  410. int (*available) (union sctp_addr *,
  411. struct sctp_sock *);
  412. int (*skb_iif) (const struct sk_buff *sk);
  413. int (*is_ce) (const struct sk_buff *sk);
  414. void (*seq_dump_addr)(struct seq_file *seq,
  415. union sctp_addr *addr);
  416. void (*ecn_capable)(struct sock *sk);
  417. __u16 net_header_len;
  418. int sockaddr_len;
  419. sa_family_t sa_family;
  420. struct list_head list;
  421. };
  422. struct sctp_af *sctp_get_af_specific(sa_family_t);
  423. int sctp_register_af(struct sctp_af *);
  424. /* Protocol family functions. */
  425. struct sctp_pf {
  426. void (*event_msgname)(struct sctp_ulpevent *, char *, int *);
  427. void (*skb_msgname) (struct sk_buff *, char *, int *);
  428. int (*af_supported) (sa_family_t, struct sctp_sock *);
  429. int (*cmp_addr) (const union sctp_addr *,
  430. const union sctp_addr *,
  431. struct sctp_sock *);
  432. int (*bind_verify) (struct sctp_sock *, union sctp_addr *);
  433. int (*send_verify) (struct sctp_sock *, union sctp_addr *);
  434. int (*supported_addrs)(const struct sctp_sock *, __be16 *);
  435. struct sock *(*create_accept_sk) (struct sock *sk,
  436. struct sctp_association *asoc,
  437. bool kern);
  438. int (*addr_to_user)(struct sctp_sock *sk, union sctp_addr *addr);
  439. void (*to_sk_saddr)(union sctp_addr *, struct sock *sk);
  440. void (*to_sk_daddr)(union sctp_addr *, struct sock *sk);
  441. struct sctp_af *af;
  442. };
  443. /* Structure to track chunk fragments that have been acked, but peer
  444. * fragments of the same message have not.
  445. */
  446. struct sctp_datamsg {
  447. /* Chunks waiting to be submitted to lower layer. */
  448. struct list_head chunks;
  449. /* Reference counting. */
  450. refcount_t refcnt;
  451. /* When is this message no longer interesting to the peer? */
  452. unsigned long expires_at;
  453. /* Did the messenge fail to send? */
  454. int send_error;
  455. u8 send_failed:1,
  456. can_delay:1, /* should this message be Nagle delayed */
  457. abandoned:1; /* should this message be abandoned */
  458. };
  459. struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *,
  460. struct sctp_sndrcvinfo *,
  461. struct iov_iter *);
  462. void sctp_datamsg_free(struct sctp_datamsg *);
  463. void sctp_datamsg_put(struct sctp_datamsg *);
  464. void sctp_chunk_fail(struct sctp_chunk *, int error);
  465. int sctp_chunk_abandoned(struct sctp_chunk *);
  466. /* RFC2960 1.4 Key Terms
  467. *
  468. * o Chunk: A unit of information within an SCTP packet, consisting of
  469. * a chunk header and chunk-specific content.
  470. *
  471. * As a matter of convenience, we remember the SCTP common header for
  472. * each chunk as well as a few other header pointers...
  473. */
  474. struct sctp_chunk {
  475. struct list_head list;
  476. refcount_t refcnt;
  477. /* How many times this chunk have been sent, for prsctp RTX policy */
  478. int sent_count;
  479. union {
  480. /* This is our link to the per-transport transmitted list. */
  481. struct list_head transmitted_list;
  482. /* List in specific stream outq */
  483. struct list_head stream_list;
  484. };
  485. /* This field is used by chunks that hold fragmented data.
  486. * For the first fragment this is the list that holds the rest of
  487. * fragments. For the remaining fragments, this is the link to the
  488. * frag_list maintained in the first fragment.
  489. */
  490. struct list_head frag_list;
  491. /* This points to the sk_buff containing the actual data. */
  492. struct sk_buff *skb;
  493. /* In case of GSO packets, this will store the head one */
  494. struct sk_buff *head_skb;
  495. /* These are the SCTP headers by reverse order in a packet.
  496. * Note that some of these may happen more than once. In that
  497. * case, we point at the "current" one, whatever that means
  498. * for that level of header.
  499. */
  500. /* We point this at the FIRST TLV parameter to chunk_hdr. */
  501. union sctp_params param_hdr;
  502. union {
  503. __u8 *v;
  504. struct sctp_datahdr *data_hdr;
  505. struct sctp_inithdr *init_hdr;
  506. struct sctp_sackhdr *sack_hdr;
  507. struct sctp_heartbeathdr *hb_hdr;
  508. struct sctp_sender_hb_info *hbs_hdr;
  509. struct sctp_shutdownhdr *shutdown_hdr;
  510. struct sctp_signed_cookie *cookie_hdr;
  511. struct sctp_ecnehdr *ecne_hdr;
  512. struct sctp_cwrhdr *ecn_cwr_hdr;
  513. struct sctp_errhdr *err_hdr;
  514. struct sctp_addiphdr *addip_hdr;
  515. struct sctp_fwdtsn_hdr *fwdtsn_hdr;
  516. struct sctp_authhdr *auth_hdr;
  517. struct sctp_idatahdr *idata_hdr;
  518. } subh;
  519. __u8 *chunk_end;
  520. struct sctp_chunkhdr *chunk_hdr;
  521. struct sctphdr *sctp_hdr;
  522. /* This needs to be recoverable for SCTP_SEND_FAILED events. */
  523. struct sctp_sndrcvinfo sinfo;
  524. /* Which association does this belong to? */
  525. struct sctp_association *asoc;
  526. /* What endpoint received this chunk? */
  527. struct sctp_ep_common *rcvr;
  528. /* We fill this in if we are calculating RTT. */
  529. unsigned long sent_at;
  530. /* What is the origin IP address for this chunk? */
  531. union sctp_addr source;
  532. /* Destination address for this chunk. */
  533. union sctp_addr dest;
  534. /* For outbound message, track all fragments for SEND_FAILED. */
  535. struct sctp_datamsg *msg;
  536. /* For an inbound chunk, this tells us where it came from.
  537. * For an outbound chunk, it tells us where we'd like it to
  538. * go. It is NULL if we have no preference.
  539. */
  540. struct sctp_transport *transport;
  541. /* SCTP-AUTH: For the special case inbound processing of COOKIE-ECHO
  542. * we need save a pointer to the AUTH chunk, since the SCTP-AUTH
  543. * spec violates the principle premis that all chunks are processed
  544. * in order.
  545. */
  546. struct sk_buff *auth_chunk;
  547. #define SCTP_CAN_FRTX 0x0
  548. #define SCTP_NEED_FRTX 0x1
  549. #define SCTP_DONT_FRTX 0x2
  550. __u16 rtt_in_progress:1, /* This chunk used for RTT calc? */
  551. has_tsn:1, /* Does this chunk have a TSN yet? */
  552. has_ssn:1, /* Does this chunk have a SSN yet? */
  553. #define has_mid has_ssn
  554. singleton:1, /* Only chunk in the packet? */
  555. end_of_packet:1, /* Last chunk in the packet? */
  556. ecn_ce_done:1, /* Have we processed the ECN CE bit? */
  557. pdiscard:1, /* Discard the whole packet now? */
  558. tsn_gap_acked:1, /* Is this chunk acked by a GAP ACK? */
  559. data_accepted:1, /* At least 1 chunk accepted */
  560. auth:1, /* IN: was auth'ed | OUT: needs auth */
  561. has_asconf:1, /* IN: have seen an asconf before */
  562. tsn_missing_report:2, /* Data chunk missing counter. */
  563. fast_retransmit:2; /* Is this chunk fast retransmitted? */
  564. };
  565. #define sctp_chunk_retransmitted(chunk) (chunk->sent_count > 1)
  566. void sctp_chunk_hold(struct sctp_chunk *);
  567. void sctp_chunk_put(struct sctp_chunk *);
  568. int sctp_user_addto_chunk(struct sctp_chunk *chunk, int len,
  569. struct iov_iter *from);
  570. void sctp_chunk_free(struct sctp_chunk *);
  571. void *sctp_addto_chunk(struct sctp_chunk *, int len, const void *data);
  572. struct sctp_chunk *sctp_chunkify(struct sk_buff *,
  573. const struct sctp_association *,
  574. struct sock *, gfp_t gfp);
  575. void sctp_init_addrs(struct sctp_chunk *, union sctp_addr *,
  576. union sctp_addr *);
  577. const union sctp_addr *sctp_source(const struct sctp_chunk *chunk);
  578. static inline __u16 sctp_chunk_stream_no(struct sctp_chunk *ch)
  579. {
  580. return ntohs(ch->subh.data_hdr->stream);
  581. }
  582. enum {
  583. SCTP_ADDR_NEW, /* new address added to assoc/ep */
  584. SCTP_ADDR_SRC, /* address can be used as source */
  585. SCTP_ADDR_DEL, /* address about to be deleted */
  586. };
  587. /* This is a structure for holding either an IPv6 or an IPv4 address. */
  588. struct sctp_sockaddr_entry {
  589. struct list_head list;
  590. struct rcu_head rcu;
  591. union sctp_addr a;
  592. __u8 state;
  593. __u8 valid;
  594. };
  595. #define SCTP_ADDRESS_TICK_DELAY 500
  596. /* This structure holds lists of chunks as we are assembling for
  597. * transmission.
  598. */
  599. struct sctp_packet {
  600. /* These are the SCTP header values (host order) for the packet. */
  601. __u16 source_port;
  602. __u16 destination_port;
  603. __u32 vtag;
  604. /* This contains the payload chunks. */
  605. struct list_head chunk_list;
  606. /* This is the overhead of the sctp and ip headers. */
  607. size_t overhead;
  608. /* This is the total size of all chunks INCLUDING padding. */
  609. size_t size;
  610. /* This is the maximum size this packet may have */
  611. size_t max_size;
  612. /* The packet is destined for this transport address.
  613. * The function we finally use to pass down to the next lower
  614. * layer lives in the transport structure.
  615. */
  616. struct sctp_transport *transport;
  617. /* pointer to the auth chunk for this packet */
  618. struct sctp_chunk *auth;
  619. u8 has_cookie_echo:1, /* This packet contains a COOKIE-ECHO chunk. */
  620. has_sack:1, /* This packet contains a SACK chunk. */
  621. has_auth:1, /* This packet contains an AUTH chunk */
  622. has_data:1, /* This packet contains at least 1 DATA chunk */
  623. ipfragok:1; /* So let ip fragment this packet */
  624. };
  625. void sctp_packet_init(struct sctp_packet *, struct sctp_transport *,
  626. __u16 sport, __u16 dport);
  627. void sctp_packet_config(struct sctp_packet *, __u32 vtag, int);
  628. enum sctp_xmit sctp_packet_transmit_chunk(struct sctp_packet *packet,
  629. struct sctp_chunk *chunk,
  630. int one_packet, gfp_t gfp);
  631. enum sctp_xmit sctp_packet_append_chunk(struct sctp_packet *packet,
  632. struct sctp_chunk *chunk);
  633. int sctp_packet_transmit(struct sctp_packet *, gfp_t);
  634. void sctp_packet_free(struct sctp_packet *);
  635. static inline int sctp_packet_empty(struct sctp_packet *packet)
  636. {
  637. return packet->size == packet->overhead;
  638. }
  639. /* This represents a remote transport address.
  640. * For local transport addresses, we just use union sctp_addr.
  641. *
  642. * RFC2960 Section 1.4 Key Terms
  643. *
  644. * o Transport address: A Transport Address is traditionally defined
  645. * by Network Layer address, Transport Layer protocol and Transport
  646. * Layer port number. In the case of SCTP running over IP, a
  647. * transport address is defined by the combination of an IP address
  648. * and an SCTP port number (where SCTP is the Transport protocol).
  649. *
  650. * RFC2960 Section 7.1 SCTP Differences from TCP Congestion control
  651. *
  652. * o The sender keeps a separate congestion control parameter set for
  653. * each of the destination addresses it can send to (not each
  654. * source-destination pair but for each destination). The parameters
  655. * should decay if the address is not used for a long enough time
  656. * period.
  657. *
  658. */
  659. struct sctp_transport {
  660. /* A list of transports. */
  661. struct list_head transports;
  662. struct rhlist_head node;
  663. /* Reference counting. */
  664. refcount_t refcnt;
  665. /* RTO-Pending : A flag used to track if one of the DATA
  666. * chunks sent to this address is currently being
  667. * used to compute a RTT. If this flag is 0,
  668. * the next DATA chunk sent to this destination
  669. * should be used to compute a RTT and this flag
  670. * should be set. Every time the RTT
  671. * calculation completes (i.e. the DATA chunk
  672. * is SACK'd) clear this flag.
  673. */
  674. __u32 rto_pending:1,
  675. /*
  676. * hb_sent : a flag that signals that we have a pending
  677. * heartbeat.
  678. */
  679. hb_sent:1,
  680. /* Is the Path MTU update pending on this tranport */
  681. pmtu_pending:1,
  682. dst_pending_confirm:1, /* need to confirm neighbour */
  683. /* Has this transport moved the ctsn since we last sacked */
  684. sack_generation:1;
  685. u32 dst_cookie;
  686. struct flowi fl;
  687. /* This is the peer's IP address and port. */
  688. union sctp_addr ipaddr;
  689. /* These are the functions we call to handle LLP stuff. */
  690. struct sctp_af *af_specific;
  691. /* Which association do we belong to? */
  692. struct sctp_association *asoc;
  693. /* RFC2960
  694. *
  695. * 12.3 Per Transport Address Data
  696. *
  697. * For each destination transport address in the peer's
  698. * address list derived from the INIT or INIT ACK chunk, a
  699. * number of data elements needs to be maintained including:
  700. */
  701. /* RTO : The current retransmission timeout value. */
  702. unsigned long rto;
  703. __u32 rtt; /* This is the most recent RTT. */
  704. /* RTTVAR : The current RTT variation. */
  705. __u32 rttvar;
  706. /* SRTT : The current smoothed round trip time. */
  707. __u32 srtt;
  708. /*
  709. * These are the congestion stats.
  710. */
  711. /* cwnd : The current congestion window. */
  712. __u32 cwnd; /* This is the actual cwnd. */
  713. /* ssthresh : The current slow start threshold value. */
  714. __u32 ssthresh;
  715. /* partial : The tracking method for increase of cwnd when in
  716. * bytes acked : congestion avoidance mode (see Section 6.2.2)
  717. */
  718. __u32 partial_bytes_acked;
  719. /* Data that has been sent, but not acknowledged. */
  720. __u32 flight_size;
  721. __u32 burst_limited; /* Holds old cwnd when max.burst is applied */
  722. /* Destination */
  723. struct dst_entry *dst;
  724. /* Source address. */
  725. union sctp_addr saddr;
  726. /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
  727. * the destination address every heartbeat interval.
  728. */
  729. unsigned long hbinterval;
  730. /* SACK delay timeout */
  731. unsigned long sackdelay;
  732. __u32 sackfreq;
  733. /* When was the last time that we heard from this transport? We use
  734. * this to pick new active and retran paths.
  735. */
  736. ktime_t last_time_heard;
  737. /* When was the last time that we sent a chunk using this
  738. * transport? We use this to check for idle transports
  739. */
  740. unsigned long last_time_sent;
  741. /* Last time(in jiffies) when cwnd is reduced due to the congestion
  742. * indication based on ECNE chunk.
  743. */
  744. unsigned long last_time_ecne_reduced;
  745. /* This is the max_retrans value for the transport and will
  746. * be initialized from the assocs value. This can be changed
  747. * using the SCTP_SET_PEER_ADDR_PARAMS socket option.
  748. */
  749. __u16 pathmaxrxt;
  750. /* This is the partially failed retrans value for the transport
  751. * and will be initialized from the assocs value. This can be changed
  752. * using the SCTP_PEER_ADDR_THLDS socket option
  753. */
  754. int pf_retrans;
  755. /* PMTU : The current known path MTU. */
  756. __u32 pathmtu;
  757. /* Flags controlling Heartbeat, SACK delay, and Path MTU Discovery. */
  758. __u32 param_flags;
  759. /* The number of times INIT has been sent on this transport. */
  760. int init_sent_count;
  761. /* state : The current state of this destination,
  762. * : i.e. SCTP_ACTIVE, SCTP_INACTIVE, SCTP_UNKNOWN.
  763. */
  764. int state;
  765. /* These are the error stats for this destination. */
  766. /* Error count : The current error count for this destination. */
  767. unsigned short error_count;
  768. /* Per : A timer used by each destination.
  769. * Destination :
  770. * Timer :
  771. *
  772. * [Everywhere else in the text this is called T3-rtx. -ed]
  773. */
  774. struct timer_list T3_rtx_timer;
  775. /* Heartbeat timer is per destination. */
  776. struct timer_list hb_timer;
  777. /* Timer to handle ICMP proto unreachable envets */
  778. struct timer_list proto_unreach_timer;
  779. /* Timer to handler reconf chunk rtx */
  780. struct timer_list reconf_timer;
  781. /* Since we're using per-destination retransmission timers
  782. * (see above), we're also using per-destination "transmitted"
  783. * queues. This probably ought to be a private struct
  784. * accessible only within the outqueue, but it's not, yet.
  785. */
  786. struct list_head transmitted;
  787. /* We build bundle-able packets for this transport here. */
  788. struct sctp_packet packet;
  789. /* This is the list of transports that have chunks to send. */
  790. struct list_head send_ready;
  791. /* State information saved for SFR_CACC algorithm. The key
  792. * idea in SFR_CACC is to maintain state at the sender on a
  793. * per-destination basis when a changeover happens.
  794. * char changeover_active;
  795. * char cycling_changeover;
  796. * __u32 next_tsn_at_change;
  797. * char cacc_saw_newack;
  798. */
  799. struct {
  800. /* An unsigned integer, which stores the next TSN to be
  801. * used by the sender, at the moment of changeover.
  802. */
  803. __u32 next_tsn_at_change;
  804. /* A flag which indicates the occurrence of a changeover */
  805. char changeover_active;
  806. /* A flag which indicates whether the change of primary is
  807. * the first switch to this destination address during an
  808. * active switch.
  809. */
  810. char cycling_changeover;
  811. /* A temporary flag, which is used during the processing of
  812. * a SACK to estimate the causative TSN(s)'s group.
  813. */
  814. char cacc_saw_newack;
  815. } cacc;
  816. /* 64-bit random number sent with heartbeat. */
  817. __u64 hb_nonce;
  818. struct rcu_head rcu;
  819. };
  820. struct sctp_transport *sctp_transport_new(struct net *, const union sctp_addr *,
  821. gfp_t);
  822. void sctp_transport_set_owner(struct sctp_transport *,
  823. struct sctp_association *);
  824. void sctp_transport_route(struct sctp_transport *, union sctp_addr *,
  825. struct sctp_sock *);
  826. void sctp_transport_pmtu(struct sctp_transport *, struct sock *sk);
  827. void sctp_transport_free(struct sctp_transport *);
  828. void sctp_transport_reset_t3_rtx(struct sctp_transport *);
  829. void sctp_transport_reset_hb_timer(struct sctp_transport *);
  830. void sctp_transport_reset_reconf_timer(struct sctp_transport *transport);
  831. int sctp_transport_hold(struct sctp_transport *);
  832. void sctp_transport_put(struct sctp_transport *);
  833. void sctp_transport_update_rto(struct sctp_transport *, __u32);
  834. void sctp_transport_raise_cwnd(struct sctp_transport *, __u32, __u32);
  835. void sctp_transport_lower_cwnd(struct sctp_transport *t,
  836. enum sctp_lower_cwnd reason);
  837. void sctp_transport_burst_limited(struct sctp_transport *);
  838. void sctp_transport_burst_reset(struct sctp_transport *);
  839. unsigned long sctp_transport_timeout(struct sctp_transport *);
  840. void sctp_transport_reset(struct sctp_transport *t);
  841. void sctp_transport_update_pmtu(struct sctp_transport *t, u32 pmtu);
  842. void sctp_transport_immediate_rtx(struct sctp_transport *);
  843. void sctp_transport_dst_release(struct sctp_transport *t);
  844. void sctp_transport_dst_confirm(struct sctp_transport *t);
  845. /* This is the structure we use to queue packets as they come into
  846. * SCTP. We write packets to it and read chunks from it.
  847. */
  848. struct sctp_inq {
  849. /* This is actually a queue of sctp_chunk each
  850. * containing a partially decoded packet.
  851. */
  852. struct list_head in_chunk_list;
  853. /* This is the packet which is currently off the in queue and is
  854. * being worked on through the inbound chunk processing.
  855. */
  856. struct sctp_chunk *in_progress;
  857. /* This is the delayed task to finish delivering inbound
  858. * messages.
  859. */
  860. struct work_struct immediate;
  861. };
  862. void sctp_inq_init(struct sctp_inq *);
  863. void sctp_inq_free(struct sctp_inq *);
  864. void sctp_inq_push(struct sctp_inq *, struct sctp_chunk *packet);
  865. struct sctp_chunk *sctp_inq_pop(struct sctp_inq *);
  866. struct sctp_chunkhdr *sctp_inq_peek(struct sctp_inq *);
  867. void sctp_inq_set_th_handler(struct sctp_inq *, work_func_t);
  868. /* This is the structure we use to hold outbound chunks. You push
  869. * chunks in and they automatically pop out the other end as bundled
  870. * packets (it calls (*output_handler)()).
  871. *
  872. * This structure covers sections 6.3, 6.4, 6.7, 6.8, 6.10, 7., 8.1,
  873. * and 8.2 of the v13 draft.
  874. *
  875. * It handles retransmissions. The connection to the timeout portion
  876. * of the state machine is through sctp_..._timeout() and timeout_handler.
  877. *
  878. * If you feed it SACKs, it will eat them.
  879. *
  880. * If you give it big chunks, it will fragment them.
  881. *
  882. * It assigns TSN's to data chunks. This happens at the last possible
  883. * instant before transmission.
  884. *
  885. * When free()'d, it empties itself out via output_handler().
  886. */
  887. struct sctp_outq {
  888. struct sctp_association *asoc;
  889. /* Data pending that has never been transmitted. */
  890. struct list_head out_chunk_list;
  891. /* Stream scheduler being used */
  892. struct sctp_sched_ops *sched;
  893. unsigned int out_qlen; /* Total length of queued data chunks. */
  894. /* Error of send failed, may used in SCTP_SEND_FAILED event. */
  895. unsigned int error;
  896. /* These are control chunks we want to send. */
  897. struct list_head control_chunk_list;
  898. /* These are chunks that have been sacked but are above the
  899. * CTSN, or cumulative tsn ack point.
  900. */
  901. struct list_head sacked;
  902. /* Put chunks on this list to schedule them for
  903. * retransmission.
  904. */
  905. struct list_head retransmit;
  906. /* Put chunks on this list to save them for FWD TSN processing as
  907. * they were abandoned.
  908. */
  909. struct list_head abandoned;
  910. /* How many unackd bytes do we have in-flight? */
  911. __u32 outstanding_bytes;
  912. /* Are we doing fast-rtx on this queue */
  913. char fast_rtx;
  914. /* Corked? */
  915. char cork;
  916. };
  917. void sctp_outq_init(struct sctp_association *, struct sctp_outq *);
  918. void sctp_outq_teardown(struct sctp_outq *);
  919. void sctp_outq_free(struct sctp_outq*);
  920. void sctp_outq_tail(struct sctp_outq *, struct sctp_chunk *chunk, gfp_t);
  921. int sctp_outq_sack(struct sctp_outq *, struct sctp_chunk *);
  922. int sctp_outq_is_empty(const struct sctp_outq *);
  923. void sctp_outq_restart(struct sctp_outq *);
  924. void sctp_retransmit(struct sctp_outq *q, struct sctp_transport *transport,
  925. enum sctp_retransmit_reason reason);
  926. void sctp_retransmit_mark(struct sctp_outq *, struct sctp_transport *, __u8);
  927. void sctp_outq_uncork(struct sctp_outq *, gfp_t gfp);
  928. void sctp_prsctp_prune(struct sctp_association *asoc,
  929. struct sctp_sndrcvinfo *sinfo, int msg_len);
  930. /* Uncork and flush an outqueue. */
  931. static inline void sctp_outq_cork(struct sctp_outq *q)
  932. {
  933. q->cork = 1;
  934. }
  935. /* SCTP skb control block.
  936. * sctp_input_cb is currently used on rx and sock rx queue
  937. */
  938. struct sctp_input_cb {
  939. union {
  940. struct inet_skb_parm h4;
  941. #if IS_ENABLED(CONFIG_IPV6)
  942. struct inet6_skb_parm h6;
  943. #endif
  944. } header;
  945. struct sctp_chunk *chunk;
  946. struct sctp_af *af;
  947. };
  948. #define SCTP_INPUT_CB(__skb) ((struct sctp_input_cb *)&((__skb)->cb[0]))
  949. static inline const struct sk_buff *sctp_gso_headskb(const struct sk_buff *skb)
  950. {
  951. const struct sctp_chunk *chunk = SCTP_INPUT_CB(skb)->chunk;
  952. return chunk->head_skb ? : skb;
  953. }
  954. /* These bind address data fields common between endpoints and associations */
  955. struct sctp_bind_addr {
  956. /* RFC 2960 12.1 Parameters necessary for the SCTP instance
  957. *
  958. * SCTP Port: The local SCTP port number the endpoint is
  959. * bound to.
  960. */
  961. __u16 port;
  962. /* RFC 2960 12.1 Parameters necessary for the SCTP instance
  963. *
  964. * Address List: The list of IP addresses that this instance
  965. * has bound. This information is passed to one's
  966. * peer(s) in INIT and INIT ACK chunks.
  967. */
  968. struct list_head address_list;
  969. };
  970. void sctp_bind_addr_init(struct sctp_bind_addr *, __u16 port);
  971. void sctp_bind_addr_free(struct sctp_bind_addr *);
  972. int sctp_bind_addr_copy(struct net *net, struct sctp_bind_addr *dest,
  973. const struct sctp_bind_addr *src,
  974. enum sctp_scope scope, gfp_t gfp,
  975. int flags);
  976. int sctp_bind_addr_dup(struct sctp_bind_addr *dest,
  977. const struct sctp_bind_addr *src,
  978. gfp_t gfp);
  979. int sctp_add_bind_addr(struct sctp_bind_addr *, union sctp_addr *,
  980. int new_size, __u8 addr_state, gfp_t gfp);
  981. int sctp_del_bind_addr(struct sctp_bind_addr *, union sctp_addr *);
  982. int sctp_bind_addr_match(struct sctp_bind_addr *, const union sctp_addr *,
  983. struct sctp_sock *);
  984. int sctp_bind_addr_conflict(struct sctp_bind_addr *, const union sctp_addr *,
  985. struct sctp_sock *, struct sctp_sock *);
  986. int sctp_bind_addr_state(const struct sctp_bind_addr *bp,
  987. const union sctp_addr *addr);
  988. union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
  989. const union sctp_addr *addrs,
  990. int addrcnt,
  991. struct sctp_sock *opt);
  992. union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
  993. int *addrs_len,
  994. gfp_t gfp);
  995. int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw, int len,
  996. __u16 port, gfp_t gfp);
  997. enum sctp_scope sctp_scope(const union sctp_addr *addr);
  998. int sctp_in_scope(struct net *net, const union sctp_addr *addr,
  999. const enum sctp_scope scope);
  1000. int sctp_is_any(struct sock *sk, const union sctp_addr *addr);
  1001. int sctp_is_ep_boundall(struct sock *sk);
  1002. /* What type of endpoint? */
  1003. enum sctp_endpoint_type {
  1004. SCTP_EP_TYPE_SOCKET,
  1005. SCTP_EP_TYPE_ASSOCIATION,
  1006. };
  1007. /*
  1008. * A common base class to bridge the implmentation view of a
  1009. * socket (usually listening) endpoint versus an association's
  1010. * local endpoint.
  1011. * This common structure is useful for several purposes:
  1012. * 1) Common interface for lookup routines.
  1013. * a) Subfunctions work for either endpoint or association
  1014. * b) Single interface to lookup allows hiding the lookup lock rather
  1015. * than acquiring it externally.
  1016. * 2) Common interface for the inbound chunk handling/state machine.
  1017. * 3) Common object handling routines for reference counting, etc.
  1018. * 4) Disentangle association lookup from endpoint lookup, where we
  1019. * do not have to find our endpoint to find our association.
  1020. *
  1021. */
  1022. struct sctp_ep_common {
  1023. /* Fields to help us manage our entries in the hash tables. */
  1024. struct hlist_node node;
  1025. int hashent;
  1026. /* Runtime type information. What kind of endpoint is this? */
  1027. enum sctp_endpoint_type type;
  1028. /* Some fields to help us manage this object.
  1029. * refcnt - Reference count access to this object.
  1030. * dead - Do not attempt to use this object.
  1031. */
  1032. refcount_t refcnt;
  1033. bool dead;
  1034. /* What socket does this endpoint belong to? */
  1035. struct sock *sk;
  1036. /* This is where we receive inbound chunks. */
  1037. struct sctp_inq inqueue;
  1038. /* This substructure includes the defining parameters of the
  1039. * endpoint:
  1040. * bind_addr.port is our shared port number.
  1041. * bind_addr.address_list is our set of local IP addresses.
  1042. */
  1043. struct sctp_bind_addr bind_addr;
  1044. };
  1045. /* RFC Section 1.4 Key Terms
  1046. *
  1047. * o SCTP endpoint: The logical sender/receiver of SCTP packets. On a
  1048. * multi-homed host, an SCTP endpoint is represented to its peers as a
  1049. * combination of a set of eligible destination transport addresses to
  1050. * which SCTP packets can be sent and a set of eligible source
  1051. * transport addresses from which SCTP packets can be received.
  1052. * All transport addresses used by an SCTP endpoint must use the
  1053. * same port number, but can use multiple IP addresses. A transport
  1054. * address used by an SCTP endpoint must not be used by another
  1055. * SCTP endpoint. In other words, a transport address is unique
  1056. * to an SCTP endpoint.
  1057. *
  1058. * From an implementation perspective, each socket has one of these.
  1059. * A TCP-style socket will have exactly one association on one of
  1060. * these. An UDP-style socket will have multiple associations hanging
  1061. * off one of these.
  1062. */
  1063. struct sctp_endpoint {
  1064. /* Common substructure for endpoint and association. */
  1065. struct sctp_ep_common base;
  1066. /* Associations: A list of current associations and mappings
  1067. * to the data consumers for each association. This
  1068. * may be in the form of a hash table or other
  1069. * implementation dependent structure. The data
  1070. * consumers may be process identification
  1071. * information such as file descriptors, named pipe
  1072. * pointer, or table pointers dependent on how SCTP
  1073. * is implemented.
  1074. */
  1075. /* This is really a list of struct sctp_association entries. */
  1076. struct list_head asocs;
  1077. /* Secret Key: A secret key used by this endpoint to compute
  1078. * the MAC. This SHOULD be a cryptographic quality
  1079. * random number with a sufficient length.
  1080. * Discussion in [RFC1750] can be helpful in
  1081. * selection of the key.
  1082. */
  1083. __u8 secret_key[SCTP_SECRET_SIZE];
  1084. /* digest: This is a digest of the sctp cookie. This field is
  1085. * only used on the receive path when we try to validate
  1086. * that the cookie has not been tampered with. We put
  1087. * this here so we pre-allocate this once and can re-use
  1088. * on every receive.
  1089. */
  1090. __u8 *digest;
  1091. /* sendbuf acct. policy. */
  1092. __u32 sndbuf_policy;
  1093. /* rcvbuf acct. policy. */
  1094. __u32 rcvbuf_policy;
  1095. /* SCTP AUTH: array of the HMACs that will be allocated
  1096. * we need this per association so that we don't serialize
  1097. */
  1098. struct crypto_shash **auth_hmacs;
  1099. /* SCTP-AUTH: hmacs for the endpoint encoded into parameter */
  1100. struct sctp_hmac_algo_param *auth_hmacs_list;
  1101. /* SCTP-AUTH: chunks to authenticate encoded into parameter */
  1102. struct sctp_chunks_param *auth_chunk_list;
  1103. /* SCTP-AUTH: endpoint shared keys */
  1104. struct list_head endpoint_shared_keys;
  1105. __u16 active_key_id;
  1106. __u8 auth_enable:1,
  1107. prsctp_enable:1,
  1108. reconf_enable:1;
  1109. __u8 strreset_enable;
  1110. };
  1111. /* Recover the outter endpoint structure. */
  1112. static inline struct sctp_endpoint *sctp_ep(struct sctp_ep_common *base)
  1113. {
  1114. struct sctp_endpoint *ep;
  1115. ep = container_of(base, struct sctp_endpoint, base);
  1116. return ep;
  1117. }
  1118. /* These are function signatures for manipulating endpoints. */
  1119. struct sctp_endpoint *sctp_endpoint_new(struct sock *, gfp_t);
  1120. void sctp_endpoint_free(struct sctp_endpoint *);
  1121. void sctp_endpoint_put(struct sctp_endpoint *);
  1122. void sctp_endpoint_hold(struct sctp_endpoint *);
  1123. void sctp_endpoint_add_asoc(struct sctp_endpoint *, struct sctp_association *);
  1124. struct sctp_association *sctp_endpoint_lookup_assoc(
  1125. const struct sctp_endpoint *ep,
  1126. const union sctp_addr *paddr,
  1127. struct sctp_transport **);
  1128. int sctp_endpoint_is_peeled_off(struct sctp_endpoint *,
  1129. const union sctp_addr *);
  1130. struct sctp_endpoint *sctp_endpoint_is_match(struct sctp_endpoint *,
  1131. struct net *, const union sctp_addr *);
  1132. int sctp_has_association(struct net *net, const union sctp_addr *laddr,
  1133. const union sctp_addr *paddr);
  1134. int sctp_verify_init(struct net *net, const struct sctp_endpoint *ep,
  1135. const struct sctp_association *asoc,
  1136. enum sctp_cid cid, struct sctp_init_chunk *peer_init,
  1137. struct sctp_chunk *chunk, struct sctp_chunk **err_chunk);
  1138. int sctp_process_init(struct sctp_association *, struct sctp_chunk *chunk,
  1139. const union sctp_addr *peer,
  1140. struct sctp_init_chunk *init, gfp_t gfp);
  1141. __u32 sctp_generate_tag(const struct sctp_endpoint *);
  1142. __u32 sctp_generate_tsn(const struct sctp_endpoint *);
  1143. struct sctp_inithdr_host {
  1144. __u32 init_tag;
  1145. __u32 a_rwnd;
  1146. __u16 num_outbound_streams;
  1147. __u16 num_inbound_streams;
  1148. __u32 initial_tsn;
  1149. };
  1150. struct sctp_stream_priorities {
  1151. /* List of priorities scheduled */
  1152. struct list_head prio_sched;
  1153. /* List of streams scheduled */
  1154. struct list_head active;
  1155. /* The next stream stream in line */
  1156. struct sctp_stream_out_ext *next;
  1157. __u16 prio;
  1158. };
  1159. struct sctp_stream_out_ext {
  1160. __u64 abandoned_unsent[SCTP_PR_INDEX(MAX) + 1];
  1161. __u64 abandoned_sent[SCTP_PR_INDEX(MAX) + 1];
  1162. struct list_head outq; /* chunks enqueued by this stream */
  1163. union {
  1164. struct {
  1165. /* Scheduled streams list */
  1166. struct list_head prio_list;
  1167. struct sctp_stream_priorities *prio_head;
  1168. };
  1169. /* Fields used by RR scheduler */
  1170. struct {
  1171. struct list_head rr_list;
  1172. };
  1173. };
  1174. };
  1175. struct sctp_stream_out {
  1176. union {
  1177. __u32 mid;
  1178. __u16 ssn;
  1179. };
  1180. __u32 mid_uo;
  1181. struct sctp_stream_out_ext *ext;
  1182. __u8 state;
  1183. };
  1184. struct sctp_stream_in {
  1185. union {
  1186. __u32 mid;
  1187. __u16 ssn;
  1188. };
  1189. __u32 mid_uo;
  1190. __u32 fsn;
  1191. __u32 fsn_uo;
  1192. char pd_mode;
  1193. char pd_mode_uo;
  1194. };
  1195. struct sctp_stream {
  1196. struct sctp_stream_out *out;
  1197. struct sctp_stream_in *in;
  1198. __u16 outcnt;
  1199. __u16 incnt;
  1200. /* Current stream being sent, if any */
  1201. struct sctp_stream_out *out_curr;
  1202. union {
  1203. /* Fields used by priority scheduler */
  1204. struct {
  1205. /* List of priorities scheduled */
  1206. struct list_head prio_list;
  1207. };
  1208. /* Fields used by RR scheduler */
  1209. struct {
  1210. /* List of streams scheduled */
  1211. struct list_head rr_list;
  1212. /* The next stream stream in line */
  1213. struct sctp_stream_out_ext *rr_next;
  1214. };
  1215. };
  1216. struct sctp_stream_interleave *si;
  1217. };
  1218. #define SCTP_STREAM_CLOSED 0x00
  1219. #define SCTP_STREAM_OPEN 0x01
  1220. static inline __u16 sctp_datachk_len(const struct sctp_stream *stream)
  1221. {
  1222. return stream->si->data_chunk_len;
  1223. }
  1224. static inline __u16 sctp_datahdr_len(const struct sctp_stream *stream)
  1225. {
  1226. return stream->si->data_chunk_len - sizeof(struct sctp_chunkhdr);
  1227. }
  1228. /* SCTP_GET_ASSOC_STATS counters */
  1229. struct sctp_priv_assoc_stats {
  1230. /* Maximum observed rto in the association during subsequent
  1231. * observations. Value is set to 0 if no RTO measurement took place
  1232. * The transport where the max_rto was observed is returned in
  1233. * obs_rto_ipaddr
  1234. */
  1235. struct sockaddr_storage obs_rto_ipaddr;
  1236. __u64 max_obs_rto;
  1237. /* Total In and Out SACKs received and sent */
  1238. __u64 isacks;
  1239. __u64 osacks;
  1240. /* Total In and Out packets received and sent */
  1241. __u64 opackets;
  1242. __u64 ipackets;
  1243. /* Total retransmitted chunks */
  1244. __u64 rtxchunks;
  1245. /* TSN received > next expected */
  1246. __u64 outofseqtsns;
  1247. /* Duplicate Chunks received */
  1248. __u64 idupchunks;
  1249. /* Gap Ack Blocks received */
  1250. __u64 gapcnt;
  1251. /* Unordered data chunks sent and received */
  1252. __u64 ouodchunks;
  1253. __u64 iuodchunks;
  1254. /* Ordered data chunks sent and received */
  1255. __u64 oodchunks;
  1256. __u64 iodchunks;
  1257. /* Control chunks sent and received */
  1258. __u64 octrlchunks;
  1259. __u64 ictrlchunks;
  1260. };
  1261. /* RFC2960
  1262. *
  1263. * 12. Recommended Transmission Control Block (TCB) Parameters
  1264. *
  1265. * This section details a recommended set of parameters that should
  1266. * be contained within the TCB for an implementation. This section is
  1267. * for illustrative purposes and should not be deemed as requirements
  1268. * on an implementation or as an exhaustive list of all parameters
  1269. * inside an SCTP TCB. Each implementation may need its own additional
  1270. * parameters for optimization.
  1271. */
  1272. /* Here we have information about each individual association. */
  1273. struct sctp_association {
  1274. /* A base structure common to endpoint and association.
  1275. * In this context, it represents the associations's view
  1276. * of the local endpoint of the association.
  1277. */
  1278. struct sctp_ep_common base;
  1279. /* Associations on the same socket. */
  1280. struct list_head asocs;
  1281. /* association id. */
  1282. sctp_assoc_t assoc_id;
  1283. /* This is our parent endpoint. */
  1284. struct sctp_endpoint *ep;
  1285. /* These are those association elements needed in the cookie. */
  1286. struct sctp_cookie c;
  1287. /* This is all information about our peer. */
  1288. struct {
  1289. /* transport_addr_list
  1290. *
  1291. * Peer : A list of SCTP transport addresses that the
  1292. * Transport : peer is bound to. This information is derived
  1293. * Address : from the INIT or INIT ACK and is used to
  1294. * List : associate an inbound packet with a given
  1295. * : association. Normally this information is
  1296. * : hashed or keyed for quick lookup and access
  1297. * : of the TCB.
  1298. * : The list is also initialized with the list
  1299. * : of addresses passed with the sctp_connectx()
  1300. * : call.
  1301. *
  1302. * It is a list of SCTP_transport's.
  1303. */
  1304. struct list_head transport_addr_list;
  1305. /* rwnd
  1306. *
  1307. * Peer Rwnd : Current calculated value of the peer's rwnd.
  1308. */
  1309. __u32 rwnd;
  1310. /* transport_count
  1311. *
  1312. * Peer : A count of the number of peer addresses
  1313. * Transport : in the Peer Transport Address List.
  1314. * Address :
  1315. * Count :
  1316. */
  1317. __u16 transport_count;
  1318. /* port
  1319. * The transport layer port number.
  1320. */
  1321. __u16 port;
  1322. /* primary_path
  1323. *
  1324. * Primary : This is the current primary destination
  1325. * Path : transport address of the peer endpoint. It
  1326. * : may also specify a source transport address
  1327. * : on this endpoint.
  1328. *
  1329. * All of these paths live on transport_addr_list.
  1330. *
  1331. * At the bakeoffs, we discovered that the intent of
  1332. * primaryPath is that it only changes when the ULP
  1333. * asks to have it changed. We add the activePath to
  1334. * designate the connection we are currently using to
  1335. * transmit new data and most control chunks.
  1336. */
  1337. struct sctp_transport *primary_path;
  1338. /* Cache the primary path address here, when we
  1339. * need a an address for msg_name.
  1340. */
  1341. union sctp_addr primary_addr;
  1342. /* active_path
  1343. * The path that we are currently using to
  1344. * transmit new data and most control chunks.
  1345. */
  1346. struct sctp_transport *active_path;
  1347. /* retran_path
  1348. *
  1349. * RFC2960 6.4 Multi-homed SCTP Endpoints
  1350. * ...
  1351. * Furthermore, when its peer is multi-homed, an
  1352. * endpoint SHOULD try to retransmit a chunk to an
  1353. * active destination transport address that is
  1354. * different from the last destination address to
  1355. * which the DATA chunk was sent.
  1356. */
  1357. struct sctp_transport *retran_path;
  1358. /* Pointer to last transport I have sent on. */
  1359. struct sctp_transport *last_sent_to;
  1360. /* This is the last transport I have received DATA on. */
  1361. struct sctp_transport *last_data_from;
  1362. /*
  1363. * Mapping An array of bits or bytes indicating which out of
  1364. * Array order TSN's have been received (relative to the
  1365. * Last Rcvd TSN). If no gaps exist, i.e. no out of
  1366. * order packets have been received, this array
  1367. * will be set to all zero. This structure may be
  1368. * in the form of a circular buffer or bit array.
  1369. *
  1370. * Last Rcvd : This is the last TSN received in
  1371. * TSN : sequence. This value is set initially by
  1372. * : taking the peer's Initial TSN, received in
  1373. * : the INIT or INIT ACK chunk, and subtracting
  1374. * : one from it.
  1375. *
  1376. * Throughout most of the specification this is called the
  1377. * "Cumulative TSN ACK Point". In this case, we
  1378. * ignore the advice in 12.2 in favour of the term
  1379. * used in the bulk of the text. This value is hidden
  1380. * in tsn_map--we get it by calling sctp_tsnmap_get_ctsn().
  1381. */
  1382. struct sctp_tsnmap tsn_map;
  1383. /* This mask is used to disable sending the ASCONF chunk
  1384. * with specified parameter to peer.
  1385. */
  1386. __be16 addip_disabled_mask;
  1387. /* These are capabilities which our peer advertised. */
  1388. __u8 ecn_capable:1, /* Can peer do ECN? */
  1389. ipv4_address:1, /* Peer understands IPv4 addresses? */
  1390. ipv6_address:1, /* Peer understands IPv6 addresses? */
  1391. hostname_address:1, /* Peer understands DNS addresses? */
  1392. asconf_capable:1, /* Does peer support ADDIP? */
  1393. prsctp_capable:1, /* Can peer do PR-SCTP? */
  1394. reconf_capable:1, /* Can peer do RE-CONFIG? */
  1395. auth_capable:1; /* Is peer doing SCTP-AUTH? */
  1396. /* sack_needed : This flag indicates if the next received
  1397. * : packet is to be responded to with a
  1398. * : SACK. This is initialized to 0. When a packet
  1399. * : is received sack_cnt is incremented. If this value
  1400. * : reaches 2 or more, a SACK is sent and the
  1401. * : value is reset to 0. Note: This is used only
  1402. * : when no DATA chunks are received out of
  1403. * : order. When DATA chunks are out of order,
  1404. * : SACK's are not delayed (see Section 6).
  1405. */
  1406. __u8 sack_needed:1, /* Do we need to sack the peer? */
  1407. sack_generation:1,
  1408. zero_window_announced:1;
  1409. __u32 sack_cnt;
  1410. __u32 adaptation_ind; /* Adaptation Code point. */
  1411. struct sctp_inithdr_host i;
  1412. void *cookie;
  1413. int cookie_len;
  1414. /* ADDIP Section 4.2 Upon reception of an ASCONF Chunk.
  1415. * C1) ... "Peer-Serial-Number'. This value MUST be initialized to the
  1416. * Initial TSN Value minus 1
  1417. */
  1418. __u32 addip_serial;
  1419. /* SCTP-AUTH: We need to know pears random number, hmac list
  1420. * and authenticated chunk list. All that is part of the
  1421. * cookie and these are just pointers to those locations
  1422. */
  1423. struct sctp_random_param *peer_random;
  1424. struct sctp_chunks_param *peer_chunks;
  1425. struct sctp_hmac_algo_param *peer_hmacs;
  1426. } peer;
  1427. /* State : A state variable indicating what state the
  1428. * : association is in, i.e. COOKIE-WAIT,
  1429. * : COOKIE-ECHOED, ESTABLISHED, SHUTDOWN-PENDING,
  1430. * : SHUTDOWN-SENT, SHUTDOWN-RECEIVED, SHUTDOWN-ACK-SENT.
  1431. *
  1432. * Note: No "CLOSED" state is illustrated since if a
  1433. * association is "CLOSED" its TCB SHOULD be removed.
  1434. *
  1435. * In this implementation we DO have a CLOSED
  1436. * state which is used during initiation and shutdown.
  1437. *
  1438. * State takes values from SCTP_STATE_*.
  1439. */
  1440. enum sctp_state state;
  1441. /* Overall : The overall association error count.
  1442. * Error Count : [Clear this any time I get something.]
  1443. */
  1444. int overall_error_count;
  1445. /* The cookie life I award for any cookie. */
  1446. ktime_t cookie_life;
  1447. /* These are the association's initial, max, and min RTO values.
  1448. * These values will be initialized by system defaults, but can
  1449. * be modified via the SCTP_RTOINFO socket option.
  1450. */
  1451. unsigned long rto_initial;
  1452. unsigned long rto_max;
  1453. unsigned long rto_min;
  1454. /* Maximum number of new data packets that can be sent in a burst. */
  1455. int max_burst;
  1456. /* This is the max_retrans value for the association. This value will
  1457. * be initialized initialized from system defaults, but can be
  1458. * modified by the SCTP_ASSOCINFO socket option.
  1459. */
  1460. int max_retrans;
  1461. /* This is the partially failed retrans value for the transport
  1462. * and will be initialized from the assocs value. This can be
  1463. * changed using the SCTP_PEER_ADDR_THLDS socket option
  1464. */
  1465. int pf_retrans;
  1466. /* Maximum number of times the endpoint will retransmit INIT */
  1467. __u16 max_init_attempts;
  1468. /* How many times have we resent an INIT? */
  1469. __u16 init_retries;
  1470. /* The largest timeout or RTO value to use in attempting an INIT */
  1471. unsigned long max_init_timeo;
  1472. /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
  1473. * the destination address every heartbeat interval. This value
  1474. * will be inherited by all new transports.
  1475. */
  1476. unsigned long hbinterval;
  1477. /* This is the max_retrans value for new transports in the
  1478. * association.
  1479. */
  1480. __u16 pathmaxrxt;
  1481. /* Flag that path mtu update is pending */
  1482. __u8 pmtu_pending;
  1483. /* Association : The smallest PMTU discovered for all of the
  1484. * PMTU : peer's transport addresses.
  1485. */
  1486. __u32 pathmtu;
  1487. /* Flags controlling Heartbeat, SACK delay, and Path MTU Discovery. */
  1488. __u32 param_flags;
  1489. __u32 sackfreq;
  1490. /* SACK delay timeout */
  1491. unsigned long sackdelay;
  1492. unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
  1493. struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
  1494. /* Transport to which SHUTDOWN chunk was last sent. */
  1495. struct sctp_transport *shutdown_last_sent_to;
  1496. /* Transport to which INIT chunk was last sent. */
  1497. struct sctp_transport *init_last_sent_to;
  1498. /* How many times have we resent a SHUTDOWN */
  1499. int shutdown_retries;
  1500. /* Next TSN : The next TSN number to be assigned to a new
  1501. * : DATA chunk. This is sent in the INIT or INIT
  1502. * : ACK chunk to the peer and incremented each
  1503. * : time a DATA chunk is assigned a TSN
  1504. * : (normally just prior to transmit or during
  1505. * : fragmentation).
  1506. */
  1507. __u32 next_tsn;
  1508. /*
  1509. * Last Rcvd : This is the last TSN received in sequence. This value
  1510. * TSN : is set initially by taking the peer's Initial TSN,
  1511. * : received in the INIT or INIT ACK chunk, and
  1512. * : subtracting one from it.
  1513. *
  1514. * Most of RFC 2960 refers to this as the Cumulative TSN Ack Point.
  1515. */
  1516. __u32 ctsn_ack_point;
  1517. /* PR-SCTP Advanced.Peer.Ack.Point */
  1518. __u32 adv_peer_ack_point;
  1519. /* Highest TSN that is acknowledged by incoming SACKs. */
  1520. __u32 highest_sacked;
  1521. /* TSN marking the fast recovery exit point */
  1522. __u32 fast_recovery_exit;
  1523. /* Flag to track the current fast recovery state */
  1524. __u8 fast_recovery;
  1525. /* The number of unacknowledged data chunks. Reported through
  1526. * the SCTP_STATUS sockopt.
  1527. */
  1528. __u16 unack_data;
  1529. /* The total number of data chunks that we've had to retransmit
  1530. * as the result of a T3 timer expiration
  1531. */
  1532. __u32 rtx_data_chunks;
  1533. /* This is the association's receive buffer space. This value is used
  1534. * to set a_rwnd field in an INIT or a SACK chunk.
  1535. */
  1536. __u32 rwnd;
  1537. /* This is the last advertised value of rwnd over a SACK chunk. */
  1538. __u32 a_rwnd;
  1539. /* Number of bytes by which the rwnd has slopped. The rwnd is allowed
  1540. * to slop over a maximum of the association's frag_point.
  1541. */
  1542. __u32 rwnd_over;
  1543. /* Keeps treack of rwnd pressure. This happens when we have
  1544. * a window, but not recevie buffer (i.e small packets). This one
  1545. * is releases slowly (1 PMTU at a time ).
  1546. */
  1547. __u32 rwnd_press;
  1548. /* This is the sndbuf size in use for the association.
  1549. * This corresponds to the sndbuf size for the association,
  1550. * as specified in the sk->sndbuf.
  1551. */
  1552. int sndbuf_used;
  1553. /* This is the amount of memory that this association has allocated
  1554. * in the receive path at any given time.
  1555. */
  1556. atomic_t rmem_alloc;
  1557. /* This is the wait queue head for send requests waiting on
  1558. * the association sndbuf space.
  1559. */
  1560. wait_queue_head_t wait;
  1561. /* The message size at which SCTP fragmentation will occur. */
  1562. __u32 frag_point;
  1563. __u32 user_frag;
  1564. /* Counter used to count INIT errors. */
  1565. int init_err_counter;
  1566. /* Count the number of INIT cycles (for doubling timeout). */
  1567. int init_cycle;
  1568. /* Default send parameters. */
  1569. __u16 default_stream;
  1570. __u16 default_flags;
  1571. __u32 default_ppid;
  1572. __u32 default_context;
  1573. __u32 default_timetolive;
  1574. /* Default receive parameters */
  1575. __u32 default_rcv_context;
  1576. /* Stream arrays */
  1577. struct sctp_stream stream;
  1578. /* All outbound chunks go through this structure. */
  1579. struct sctp_outq outqueue;
  1580. /* A smart pipe that will handle reordering and fragmentation,
  1581. * as well as handle passing events up to the ULP.
  1582. */
  1583. struct sctp_ulpq ulpq;
  1584. /* Last TSN that caused an ECNE Chunk to be sent. */
  1585. __u32 last_ecne_tsn;
  1586. /* Last TSN that caused a CWR Chunk to be sent. */
  1587. __u32 last_cwr_tsn;
  1588. /* How many duplicated TSNs have we seen? */
  1589. int numduptsns;
  1590. /* These are to support
  1591. * "SCTP Extensions for Dynamic Reconfiguration of IP Addresses
  1592. * and Enforcement of Flow and Message Limits"
  1593. * <draft-ietf-tsvwg-addip-sctp-02.txt>
  1594. * or "ADDIP" for short.
  1595. */
  1596. /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
  1597. *
  1598. * R1) One and only one ASCONF Chunk MAY be in transit and
  1599. * unacknowledged at any one time. If a sender, after sending
  1600. * an ASCONF chunk, decides it needs to transfer another
  1601. * ASCONF Chunk, it MUST wait until the ASCONF-ACK Chunk
  1602. * returns from the previous ASCONF Chunk before sending a
  1603. * subsequent ASCONF. Note this restriction binds each side,
  1604. * so at any time two ASCONF may be in-transit on any given
  1605. * association (one sent from each endpoint).
  1606. *
  1607. * [This is our one-and-only-one ASCONF in flight. If we do
  1608. * not have an ASCONF in flight, this is NULL.]
  1609. */
  1610. struct sctp_chunk *addip_last_asconf;
  1611. /* ADDIP Section 5.2 Upon reception of an ASCONF Chunk.
  1612. *
  1613. * This is needed to implement itmes E1 - E4 of the updated
  1614. * spec. Here is the justification:
  1615. *
  1616. * Since the peer may bundle multiple ASCONF chunks toward us,
  1617. * we now need the ability to cache multiple ACKs. The section
  1618. * describes in detail how they are cached and cleaned up.
  1619. */
  1620. struct list_head asconf_ack_list;
  1621. /* These ASCONF chunks are waiting to be sent.
  1622. *
  1623. * These chunaks can't be pushed to outqueue until receiving
  1624. * ASCONF_ACK for the previous ASCONF indicated by
  1625. * addip_last_asconf, so as to guarantee that only one ASCONF
  1626. * is in flight at any time.
  1627. *
  1628. * ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
  1629. *
  1630. * In defining the ASCONF Chunk transfer procedures, it is
  1631. * essential that these transfers MUST NOT cause congestion
  1632. * within the network. To achieve this, we place these
  1633. * restrictions on the transfer of ASCONF Chunks:
  1634. *
  1635. * R1) One and only one ASCONF Chunk MAY be in transit and
  1636. * unacknowledged at any one time. If a sender, after sending
  1637. * an ASCONF chunk, decides it needs to transfer another
  1638. * ASCONF Chunk, it MUST wait until the ASCONF-ACK Chunk
  1639. * returns from the previous ASCONF Chunk before sending a
  1640. * subsequent ASCONF. Note this restriction binds each side,
  1641. * so at any time two ASCONF may be in-transit on any given
  1642. * association (one sent from each endpoint).
  1643. *
  1644. *
  1645. * [I really think this is EXACTLY the sort of intelligence
  1646. * which already resides in sctp_outq. Please move this
  1647. * queue and its supporting logic down there. --piggy]
  1648. */
  1649. struct list_head addip_chunk_list;
  1650. /* ADDIP Section 4.1 ASCONF Chunk Procedures
  1651. *
  1652. * A2) A serial number should be assigned to the Chunk. The
  1653. * serial number SHOULD be a monotonically increasing
  1654. * number. The serial number SHOULD be initialized at
  1655. * the start of the association to the same value as the
  1656. * Initial TSN and every time a new ASCONF chunk is created
  1657. * it is incremented by one after assigning the serial number
  1658. * to the newly created chunk.
  1659. *
  1660. * ADDIP
  1661. * 3.1.1 Address/Stream Configuration Change Chunk (ASCONF)
  1662. *
  1663. * Serial Number : 32 bits (unsigned integer)
  1664. *
  1665. * This value represents a Serial Number for the ASCONF
  1666. * Chunk. The valid range of Serial Number is from 0 to
  1667. * 4294967295 (2^32 - 1). Serial Numbers wrap back to 0
  1668. * after reaching 4294967295.
  1669. */
  1670. __u32 addip_serial;
  1671. int src_out_of_asoc_ok;
  1672. union sctp_addr *asconf_addr_del_pending;
  1673. struct sctp_transport *new_transport;
  1674. /* SCTP AUTH: list of the endpoint shared keys. These
  1675. * keys are provided out of band by the user applicaton
  1676. * and can't change during the lifetime of the association
  1677. */
  1678. struct list_head endpoint_shared_keys;
  1679. /* SCTP AUTH:
  1680. * The current generated assocaition shared key (secret)
  1681. */
  1682. struct sctp_auth_bytes *asoc_shared_key;
  1683. /* SCTP AUTH: hmac id of the first peer requested algorithm
  1684. * that we support.
  1685. */
  1686. __u16 default_hmac_id;
  1687. __u16 active_key_id;
  1688. __u8 need_ecne:1, /* Need to send an ECNE Chunk? */
  1689. temp:1, /* Is it a temporary association? */
  1690. force_delay:1,
  1691. intl_enable:1,
  1692. prsctp_enable:1,
  1693. reconf_enable:1;
  1694. __u8 strreset_enable;
  1695. __u8 strreset_outstanding; /* request param count on the fly */
  1696. __u32 strreset_outseq; /* Update after receiving response */
  1697. __u32 strreset_inseq; /* Update after receiving request */
  1698. __u32 strreset_result[2]; /* save the results of last 2 responses */
  1699. struct sctp_chunk *strreset_chunk; /* save request chunk */
  1700. struct sctp_priv_assoc_stats stats;
  1701. int sent_cnt_removable;
  1702. __u64 abandoned_unsent[SCTP_PR_INDEX(MAX) + 1];
  1703. __u64 abandoned_sent[SCTP_PR_INDEX(MAX) + 1];
  1704. };
  1705. /* An eyecatcher for determining if we are really looking at an
  1706. * association data structure.
  1707. */
  1708. enum {
  1709. SCTP_ASSOC_EYECATCHER = 0xa550c123,
  1710. };
  1711. /* Recover the outter association structure. */
  1712. static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base)
  1713. {
  1714. struct sctp_association *asoc;
  1715. asoc = container_of(base, struct sctp_association, base);
  1716. return asoc;
  1717. }
  1718. /* These are function signatures for manipulating associations. */
  1719. struct sctp_association *
  1720. sctp_association_new(const struct sctp_endpoint *ep, const struct sock *sk,
  1721. enum sctp_scope scope, gfp_t gfp);
  1722. void sctp_association_free(struct sctp_association *);
  1723. void sctp_association_put(struct sctp_association *);
  1724. void sctp_association_hold(struct sctp_association *);
  1725. struct sctp_transport *sctp_assoc_choose_alter_transport(
  1726. struct sctp_association *, struct sctp_transport *);
  1727. void sctp_assoc_update_retran_path(struct sctp_association *);
  1728. struct sctp_transport *sctp_assoc_lookup_paddr(const struct sctp_association *,
  1729. const union sctp_addr *);
  1730. int sctp_assoc_lookup_laddr(struct sctp_association *asoc,
  1731. const union sctp_addr *laddr);
  1732. struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *,
  1733. const union sctp_addr *address,
  1734. const gfp_t gfp,
  1735. const int peer_state);
  1736. void sctp_assoc_del_peer(struct sctp_association *asoc,
  1737. const union sctp_addr *addr);
  1738. void sctp_assoc_rm_peer(struct sctp_association *asoc,
  1739. struct sctp_transport *peer);
  1740. void sctp_assoc_control_transport(struct sctp_association *asoc,
  1741. struct sctp_transport *transport,
  1742. enum sctp_transport_cmd command,
  1743. sctp_sn_error_t error);
  1744. struct sctp_transport *sctp_assoc_lookup_tsn(struct sctp_association *, __u32);
  1745. struct sctp_transport *sctp_assoc_is_match(struct sctp_association *,
  1746. struct net *,
  1747. const union sctp_addr *,
  1748. const union sctp_addr *);
  1749. void sctp_assoc_migrate(struct sctp_association *, struct sock *);
  1750. int sctp_assoc_update(struct sctp_association *old,
  1751. struct sctp_association *new);
  1752. __u32 sctp_association_get_next_tsn(struct sctp_association *);
  1753. void sctp_assoc_sync_pmtu(struct sctp_association *asoc);
  1754. void sctp_assoc_rwnd_increase(struct sctp_association *, unsigned int);
  1755. void sctp_assoc_rwnd_decrease(struct sctp_association *, unsigned int);
  1756. void sctp_assoc_set_primary(struct sctp_association *,
  1757. struct sctp_transport *);
  1758. void sctp_assoc_del_nonprimary_peers(struct sctp_association *,
  1759. struct sctp_transport *);
  1760. int sctp_assoc_set_bind_addr_from_ep(struct sctp_association *asoc,
  1761. enum sctp_scope scope, gfp_t gfp);
  1762. int sctp_assoc_set_bind_addr_from_cookie(struct sctp_association *,
  1763. struct sctp_cookie*,
  1764. gfp_t gfp);
  1765. int sctp_assoc_set_id(struct sctp_association *, gfp_t);
  1766. void sctp_assoc_clean_asconf_ack_cache(const struct sctp_association *asoc);
  1767. struct sctp_chunk *sctp_assoc_lookup_asconf_ack(
  1768. const struct sctp_association *asoc,
  1769. __be32 serial);
  1770. void sctp_asconf_queue_teardown(struct sctp_association *asoc);
  1771. int sctp_cmp_addr_exact(const union sctp_addr *ss1,
  1772. const union sctp_addr *ss2);
  1773. struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc);
  1774. /* A convenience structure to parse out SCTP specific CMSGs. */
  1775. struct sctp_cmsgs {
  1776. struct sctp_initmsg *init;
  1777. struct sctp_sndrcvinfo *srinfo;
  1778. struct sctp_sndinfo *sinfo;
  1779. };
  1780. /* Structure for tracking memory objects */
  1781. struct sctp_dbg_objcnt_entry {
  1782. char *label;
  1783. atomic_t *counter;
  1784. };
  1785. #endif /* __sctp_structs_h__ */