structs.h 62 KB

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