sm_make_chunk.c 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900
  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-2002 Intel Corp.
  6. *
  7. * This file is part of the SCTP kernel implementation
  8. *
  9. * These functions work with the state functions in sctp_sm_statefuns.c
  10. * to implement the state operations. These functions implement the
  11. * steps which require modifying existing data structures.
  12. *
  13. * This SCTP implementation is free software;
  14. * you can redistribute it and/or modify it under the terms of
  15. * the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2, or (at your option)
  17. * any later version.
  18. *
  19. * This SCTP implementation is distributed in the hope that it
  20. * will be useful, but WITHOUT ANY WARRANTY; without even the implied
  21. * ************************
  22. * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. * See the GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with GNU CC; see the file COPYING. If not, see
  27. * <http://www.gnu.org/licenses/>.
  28. *
  29. * Please send any bug reports or fixes you make to the
  30. * email address(es):
  31. * lksctp developers <linux-sctp@vger.kernel.org>
  32. *
  33. * Written or modified by:
  34. * La Monte H.P. Yarroll <piggy@acm.org>
  35. * Karl Knutson <karl@athena.chicago.il.us>
  36. * C. Robin <chris@hundredacre.ac.uk>
  37. * Jon Grimm <jgrimm@us.ibm.com>
  38. * Xingang Guo <xingang.guo@intel.com>
  39. * Dajiang Zhang <dajiang.zhang@nokia.com>
  40. * Sridhar Samudrala <sri@us.ibm.com>
  41. * Daisy Chang <daisyc@us.ibm.com>
  42. * Ardelle Fan <ardelle.fan@intel.com>
  43. * Kevin Gao <kevin.gao@intel.com>
  44. */
  45. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  46. #include <crypto/hash.h>
  47. #include <linux/types.h>
  48. #include <linux/kernel.h>
  49. #include <linux/ip.h>
  50. #include <linux/ipv6.h>
  51. #include <linux/net.h>
  52. #include <linux/inet.h>
  53. #include <linux/scatterlist.h>
  54. #include <linux/slab.h>
  55. #include <net/sock.h>
  56. #include <linux/skbuff.h>
  57. #include <linux/random.h> /* for get_random_bytes */
  58. #include <net/sctp/sctp.h>
  59. #include <net/sctp/sm.h>
  60. static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
  61. __u8 type, __u8 flags, int paylen,
  62. gfp_t gfp);
  63. static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
  64. __u8 flags, int paylen, gfp_t gfp);
  65. static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
  66. __u8 type, __u8 flags, int paylen,
  67. gfp_t gfp);
  68. static struct sctp_cookie_param *sctp_pack_cookie(
  69. const struct sctp_endpoint *ep,
  70. const struct sctp_association *asoc,
  71. const struct sctp_chunk *init_chunk,
  72. int *cookie_len,
  73. const __u8 *raw_addrs, int addrs_len);
  74. static int sctp_process_param(struct sctp_association *asoc,
  75. union sctp_params param,
  76. const union sctp_addr *peer_addr,
  77. gfp_t gfp);
  78. static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
  79. const void *data);
  80. /* Control chunk destructor */
  81. static void sctp_control_release_owner(struct sk_buff *skb)
  82. {
  83. struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
  84. if (chunk->shkey) {
  85. struct sctp_shared_key *shkey = chunk->shkey;
  86. struct sctp_association *asoc = chunk->asoc;
  87. /* refcnt == 2 and !list_empty mean after this release, it's
  88. * not being used anywhere, and it's time to notify userland
  89. * that this shkey can be freed if it's been deactivated.
  90. */
  91. if (shkey->deactivated && !list_empty(&shkey->key_list) &&
  92. refcount_read(&shkey->refcnt) == 2) {
  93. struct sctp_ulpevent *ev;
  94. ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
  95. SCTP_AUTH_FREE_KEY,
  96. GFP_KERNEL);
  97. if (ev)
  98. asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
  99. }
  100. sctp_auth_shkey_release(chunk->shkey);
  101. }
  102. }
  103. static void sctp_control_set_owner_w(struct sctp_chunk *chunk)
  104. {
  105. struct sctp_association *asoc = chunk->asoc;
  106. struct sk_buff *skb = chunk->skb;
  107. /* TODO: properly account for control chunks.
  108. * To do it right we'll need:
  109. * 1) endpoint if association isn't known.
  110. * 2) proper memory accounting.
  111. *
  112. * For now don't do anything for now.
  113. */
  114. if (chunk->auth) {
  115. chunk->shkey = asoc->shkey;
  116. sctp_auth_shkey_hold(chunk->shkey);
  117. }
  118. skb->sk = asoc ? asoc->base.sk : NULL;
  119. skb_shinfo(skb)->destructor_arg = chunk;
  120. skb->destructor = sctp_control_release_owner;
  121. }
  122. /* What was the inbound interface for this chunk? */
  123. int sctp_chunk_iif(const struct sctp_chunk *chunk)
  124. {
  125. struct sk_buff *skb = chunk->skb;
  126. return SCTP_INPUT_CB(skb)->af->skb_iif(skb);
  127. }
  128. /* RFC 2960 3.3.2 Initiation (INIT) (1)
  129. *
  130. * Note 2: The ECN capable field is reserved for future use of
  131. * Explicit Congestion Notification.
  132. */
  133. static const struct sctp_paramhdr ecap_param = {
  134. SCTP_PARAM_ECN_CAPABLE,
  135. cpu_to_be16(sizeof(struct sctp_paramhdr)),
  136. };
  137. static const struct sctp_paramhdr prsctp_param = {
  138. SCTP_PARAM_FWD_TSN_SUPPORT,
  139. cpu_to_be16(sizeof(struct sctp_paramhdr)),
  140. };
  141. /* A helper to initialize an op error inside a provided chunk, as most
  142. * cause codes will be embedded inside an abort chunk.
  143. */
  144. int sctp_init_cause(struct sctp_chunk *chunk, __be16 cause_code,
  145. size_t paylen)
  146. {
  147. struct sctp_errhdr err;
  148. __u16 len;
  149. /* Cause code constants are now defined in network order. */
  150. err.cause = cause_code;
  151. len = sizeof(err) + paylen;
  152. err.length = htons(len);
  153. if (skb_tailroom(chunk->skb) < len)
  154. return -ENOSPC;
  155. chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(err), &err);
  156. return 0;
  157. }
  158. /* 3.3.2 Initiation (INIT) (1)
  159. *
  160. * This chunk is used to initiate a SCTP association between two
  161. * endpoints. The format of the INIT chunk is shown below:
  162. *
  163. * 0 1 2 3
  164. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  165. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  166. * | Type = 1 | Chunk Flags | Chunk Length |
  167. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  168. * | Initiate Tag |
  169. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  170. * | Advertised Receiver Window Credit (a_rwnd) |
  171. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  172. * | Number of Outbound Streams | Number of Inbound Streams |
  173. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  174. * | Initial TSN |
  175. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  176. * \ \
  177. * / Optional/Variable-Length Parameters /
  178. * \ \
  179. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  180. *
  181. *
  182. * The INIT chunk contains the following parameters. Unless otherwise
  183. * noted, each parameter MUST only be included once in the INIT chunk.
  184. *
  185. * Fixed Parameters Status
  186. * ----------------------------------------------
  187. * Initiate Tag Mandatory
  188. * Advertised Receiver Window Credit Mandatory
  189. * Number of Outbound Streams Mandatory
  190. * Number of Inbound Streams Mandatory
  191. * Initial TSN Mandatory
  192. *
  193. * Variable Parameters Status Type Value
  194. * -------------------------------------------------------------
  195. * IPv4 Address (Note 1) Optional 5
  196. * IPv6 Address (Note 1) Optional 6
  197. * Cookie Preservative Optional 9
  198. * Reserved for ECN Capable (Note 2) Optional 32768 (0x8000)
  199. * Host Name Address (Note 3) Optional 11
  200. * Supported Address Types (Note 4) Optional 12
  201. */
  202. struct sctp_chunk *sctp_make_init(const struct sctp_association *asoc,
  203. const struct sctp_bind_addr *bp,
  204. gfp_t gfp, int vparam_len)
  205. {
  206. struct net *net = sock_net(asoc->base.sk);
  207. struct sctp_supported_ext_param ext_param;
  208. struct sctp_adaptation_ind_param aiparam;
  209. struct sctp_paramhdr *auth_chunks = NULL;
  210. struct sctp_paramhdr *auth_hmacs = NULL;
  211. struct sctp_supported_addrs_param sat;
  212. struct sctp_endpoint *ep = asoc->ep;
  213. struct sctp_chunk *retval = NULL;
  214. int num_types, addrs_len = 0;
  215. struct sctp_inithdr init;
  216. union sctp_params addrs;
  217. struct sctp_sock *sp;
  218. __u8 extensions[5];
  219. size_t chunksize;
  220. __be16 types[2];
  221. int num_ext = 0;
  222. /* RFC 2960 3.3.2 Initiation (INIT) (1)
  223. *
  224. * Note 1: The INIT chunks can contain multiple addresses that
  225. * can be IPv4 and/or IPv6 in any combination.
  226. */
  227. /* Convert the provided bind address list to raw format. */
  228. addrs = sctp_bind_addrs_to_raw(bp, &addrs_len, gfp);
  229. init.init_tag = htonl(asoc->c.my_vtag);
  230. init.a_rwnd = htonl(asoc->rwnd);
  231. init.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
  232. init.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
  233. init.initial_tsn = htonl(asoc->c.initial_tsn);
  234. /* How many address types are needed? */
  235. sp = sctp_sk(asoc->base.sk);
  236. num_types = sp->pf->supported_addrs(sp, types);
  237. chunksize = sizeof(init) + addrs_len;
  238. chunksize += SCTP_PAD4(SCTP_SAT_LEN(num_types));
  239. chunksize += sizeof(ecap_param);
  240. if (asoc->prsctp_enable)
  241. chunksize += sizeof(prsctp_param);
  242. /* ADDIP: Section 4.2.7:
  243. * An implementation supporting this extension [ADDIP] MUST list
  244. * the ASCONF,the ASCONF-ACK, and the AUTH chunks in its INIT and
  245. * INIT-ACK parameters.
  246. */
  247. if (net->sctp.addip_enable) {
  248. extensions[num_ext] = SCTP_CID_ASCONF;
  249. extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
  250. num_ext += 2;
  251. }
  252. if (asoc->reconf_enable) {
  253. extensions[num_ext] = SCTP_CID_RECONF;
  254. num_ext += 1;
  255. }
  256. if (sp->adaptation_ind)
  257. chunksize += sizeof(aiparam);
  258. if (sp->strm_interleave) {
  259. extensions[num_ext] = SCTP_CID_I_DATA;
  260. num_ext += 1;
  261. }
  262. chunksize += vparam_len;
  263. /* Account for AUTH related parameters */
  264. if (ep->auth_enable) {
  265. /* Add random parameter length*/
  266. chunksize += sizeof(asoc->c.auth_random);
  267. /* Add HMACS parameter length if any were defined */
  268. auth_hmacs = (struct sctp_paramhdr *)asoc->c.auth_hmacs;
  269. if (auth_hmacs->length)
  270. chunksize += SCTP_PAD4(ntohs(auth_hmacs->length));
  271. else
  272. auth_hmacs = NULL;
  273. /* Add CHUNKS parameter length */
  274. auth_chunks = (struct sctp_paramhdr *)asoc->c.auth_chunks;
  275. if (auth_chunks->length)
  276. chunksize += SCTP_PAD4(ntohs(auth_chunks->length));
  277. else
  278. auth_chunks = NULL;
  279. extensions[num_ext] = SCTP_CID_AUTH;
  280. num_ext += 1;
  281. }
  282. /* If we have any extensions to report, account for that */
  283. if (num_ext)
  284. chunksize += SCTP_PAD4(sizeof(ext_param) + num_ext);
  285. /* RFC 2960 3.3.2 Initiation (INIT) (1)
  286. *
  287. * Note 3: An INIT chunk MUST NOT contain more than one Host
  288. * Name address parameter. Moreover, the sender of the INIT
  289. * MUST NOT combine any other address types with the Host Name
  290. * address in the INIT. The receiver of INIT MUST ignore any
  291. * other address types if the Host Name address parameter is
  292. * present in the received INIT chunk.
  293. *
  294. * PLEASE DO NOT FIXME [This version does not support Host Name.]
  295. */
  296. retval = sctp_make_control(asoc, SCTP_CID_INIT, 0, chunksize, gfp);
  297. if (!retval)
  298. goto nodata;
  299. retval->subh.init_hdr =
  300. sctp_addto_chunk(retval, sizeof(init), &init);
  301. retval->param_hdr.v =
  302. sctp_addto_chunk(retval, addrs_len, addrs.v);
  303. /* RFC 2960 3.3.2 Initiation (INIT) (1)
  304. *
  305. * Note 4: This parameter, when present, specifies all the
  306. * address types the sending endpoint can support. The absence
  307. * of this parameter indicates that the sending endpoint can
  308. * support any address type.
  309. */
  310. sat.param_hdr.type = SCTP_PARAM_SUPPORTED_ADDRESS_TYPES;
  311. sat.param_hdr.length = htons(SCTP_SAT_LEN(num_types));
  312. sctp_addto_chunk(retval, sizeof(sat), &sat);
  313. sctp_addto_chunk(retval, num_types * sizeof(__u16), &types);
  314. sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
  315. /* Add the supported extensions parameter. Be nice and add this
  316. * fist before addiding the parameters for the extensions themselves
  317. */
  318. if (num_ext) {
  319. ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
  320. ext_param.param_hdr.length = htons(sizeof(ext_param) + num_ext);
  321. sctp_addto_chunk(retval, sizeof(ext_param), &ext_param);
  322. sctp_addto_param(retval, num_ext, extensions);
  323. }
  324. if (asoc->prsctp_enable)
  325. sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
  326. if (sp->adaptation_ind) {
  327. aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
  328. aiparam.param_hdr.length = htons(sizeof(aiparam));
  329. aiparam.adaptation_ind = htonl(sp->adaptation_ind);
  330. sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
  331. }
  332. /* Add SCTP-AUTH chunks to the parameter list */
  333. if (ep->auth_enable) {
  334. sctp_addto_chunk(retval, sizeof(asoc->c.auth_random),
  335. asoc->c.auth_random);
  336. if (auth_hmacs)
  337. sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
  338. auth_hmacs);
  339. if (auth_chunks)
  340. sctp_addto_chunk(retval, ntohs(auth_chunks->length),
  341. auth_chunks);
  342. }
  343. nodata:
  344. kfree(addrs.v);
  345. return retval;
  346. }
  347. struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *asoc,
  348. const struct sctp_chunk *chunk,
  349. gfp_t gfp, int unkparam_len)
  350. {
  351. struct sctp_supported_ext_param ext_param;
  352. struct sctp_adaptation_ind_param aiparam;
  353. struct sctp_paramhdr *auth_chunks = NULL;
  354. struct sctp_paramhdr *auth_random = NULL;
  355. struct sctp_paramhdr *auth_hmacs = NULL;
  356. struct sctp_chunk *retval = NULL;
  357. struct sctp_cookie_param *cookie;
  358. struct sctp_inithdr initack;
  359. union sctp_params addrs;
  360. struct sctp_sock *sp;
  361. __u8 extensions[5];
  362. size_t chunksize;
  363. int num_ext = 0;
  364. int cookie_len;
  365. int addrs_len;
  366. /* Note: there may be no addresses to embed. */
  367. addrs = sctp_bind_addrs_to_raw(&asoc->base.bind_addr, &addrs_len, gfp);
  368. initack.init_tag = htonl(asoc->c.my_vtag);
  369. initack.a_rwnd = htonl(asoc->rwnd);
  370. initack.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
  371. initack.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
  372. initack.initial_tsn = htonl(asoc->c.initial_tsn);
  373. /* FIXME: We really ought to build the cookie right
  374. * into the packet instead of allocating more fresh memory.
  375. */
  376. cookie = sctp_pack_cookie(asoc->ep, asoc, chunk, &cookie_len,
  377. addrs.v, addrs_len);
  378. if (!cookie)
  379. goto nomem_cookie;
  380. /* Calculate the total size of allocation, include the reserved
  381. * space for reporting unknown parameters if it is specified.
  382. */
  383. sp = sctp_sk(asoc->base.sk);
  384. chunksize = sizeof(initack) + addrs_len + cookie_len + unkparam_len;
  385. /* Tell peer that we'll do ECN only if peer advertised such cap. */
  386. if (asoc->peer.ecn_capable)
  387. chunksize += sizeof(ecap_param);
  388. if (asoc->peer.prsctp_capable)
  389. chunksize += sizeof(prsctp_param);
  390. if (asoc->peer.asconf_capable) {
  391. extensions[num_ext] = SCTP_CID_ASCONF;
  392. extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
  393. num_ext += 2;
  394. }
  395. if (asoc->peer.reconf_capable) {
  396. extensions[num_ext] = SCTP_CID_RECONF;
  397. num_ext += 1;
  398. }
  399. if (sp->adaptation_ind)
  400. chunksize += sizeof(aiparam);
  401. if (asoc->intl_enable) {
  402. extensions[num_ext] = SCTP_CID_I_DATA;
  403. num_ext += 1;
  404. }
  405. if (asoc->peer.auth_capable) {
  406. auth_random = (struct sctp_paramhdr *)asoc->c.auth_random;
  407. chunksize += ntohs(auth_random->length);
  408. auth_hmacs = (struct sctp_paramhdr *)asoc->c.auth_hmacs;
  409. if (auth_hmacs->length)
  410. chunksize += SCTP_PAD4(ntohs(auth_hmacs->length));
  411. else
  412. auth_hmacs = NULL;
  413. auth_chunks = (struct sctp_paramhdr *)asoc->c.auth_chunks;
  414. if (auth_chunks->length)
  415. chunksize += SCTP_PAD4(ntohs(auth_chunks->length));
  416. else
  417. auth_chunks = NULL;
  418. extensions[num_ext] = SCTP_CID_AUTH;
  419. num_ext += 1;
  420. }
  421. if (num_ext)
  422. chunksize += SCTP_PAD4(sizeof(ext_param) + num_ext);
  423. /* Now allocate and fill out the chunk. */
  424. retval = sctp_make_control(asoc, SCTP_CID_INIT_ACK, 0, chunksize, gfp);
  425. if (!retval)
  426. goto nomem_chunk;
  427. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  428. *
  429. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  430. * HEARTBEAT ACK, * etc.) to the same destination transport
  431. * address from which it received the DATA or control chunk
  432. * to which it is replying.
  433. *
  434. * [INIT ACK back to where the INIT came from.]
  435. */
  436. if (chunk->transport)
  437. retval->transport =
  438. sctp_assoc_lookup_paddr(asoc,
  439. &chunk->transport->ipaddr);
  440. retval->subh.init_hdr =
  441. sctp_addto_chunk(retval, sizeof(initack), &initack);
  442. retval->param_hdr.v = sctp_addto_chunk(retval, addrs_len, addrs.v);
  443. sctp_addto_chunk(retval, cookie_len, cookie);
  444. if (asoc->peer.ecn_capable)
  445. sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
  446. if (num_ext) {
  447. ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
  448. ext_param.param_hdr.length = htons(sizeof(ext_param) + num_ext);
  449. sctp_addto_chunk(retval, sizeof(ext_param), &ext_param);
  450. sctp_addto_param(retval, num_ext, extensions);
  451. }
  452. if (asoc->peer.prsctp_capable)
  453. sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
  454. if (sp->adaptation_ind) {
  455. aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
  456. aiparam.param_hdr.length = htons(sizeof(aiparam));
  457. aiparam.adaptation_ind = htonl(sp->adaptation_ind);
  458. sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
  459. }
  460. if (asoc->peer.auth_capable) {
  461. sctp_addto_chunk(retval, ntohs(auth_random->length),
  462. auth_random);
  463. if (auth_hmacs)
  464. sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
  465. auth_hmacs);
  466. if (auth_chunks)
  467. sctp_addto_chunk(retval, ntohs(auth_chunks->length),
  468. auth_chunks);
  469. }
  470. /* We need to remove the const qualifier at this point. */
  471. retval->asoc = (struct sctp_association *) asoc;
  472. nomem_chunk:
  473. kfree(cookie);
  474. nomem_cookie:
  475. kfree(addrs.v);
  476. return retval;
  477. }
  478. /* 3.3.11 Cookie Echo (COOKIE ECHO) (10):
  479. *
  480. * This chunk is used only during the initialization of an association.
  481. * It is sent by the initiator of an association to its peer to complete
  482. * the initialization process. This chunk MUST precede any DATA chunk
  483. * sent within the association, but MAY be bundled with one or more DATA
  484. * chunks in the same packet.
  485. *
  486. * 0 1 2 3
  487. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  488. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  489. * | Type = 10 |Chunk Flags | Length |
  490. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  491. * / Cookie /
  492. * \ \
  493. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  494. *
  495. * Chunk Flags: 8 bit
  496. *
  497. * Set to zero on transmit and ignored on receipt.
  498. *
  499. * Length: 16 bits (unsigned integer)
  500. *
  501. * Set to the size of the chunk in bytes, including the 4 bytes of
  502. * the chunk header and the size of the Cookie.
  503. *
  504. * Cookie: variable size
  505. *
  506. * This field must contain the exact cookie received in the
  507. * State Cookie parameter from the previous INIT ACK.
  508. *
  509. * An implementation SHOULD make the cookie as small as possible
  510. * to insure interoperability.
  511. */
  512. struct sctp_chunk *sctp_make_cookie_echo(const struct sctp_association *asoc,
  513. const struct sctp_chunk *chunk)
  514. {
  515. struct sctp_chunk *retval;
  516. int cookie_len;
  517. void *cookie;
  518. cookie = asoc->peer.cookie;
  519. cookie_len = asoc->peer.cookie_len;
  520. /* Build a cookie echo chunk. */
  521. retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ECHO, 0,
  522. cookie_len, GFP_ATOMIC);
  523. if (!retval)
  524. goto nodata;
  525. retval->subh.cookie_hdr =
  526. sctp_addto_chunk(retval, cookie_len, cookie);
  527. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  528. *
  529. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  530. * HEARTBEAT ACK, * etc.) to the same destination transport
  531. * address from which it * received the DATA or control chunk
  532. * to which it is replying.
  533. *
  534. * [COOKIE ECHO back to where the INIT ACK came from.]
  535. */
  536. if (chunk)
  537. retval->transport = chunk->transport;
  538. nodata:
  539. return retval;
  540. }
  541. /* 3.3.12 Cookie Acknowledgement (COOKIE ACK) (11):
  542. *
  543. * This chunk is used only during the initialization of an
  544. * association. It is used to acknowledge the receipt of a COOKIE
  545. * ECHO chunk. This chunk MUST precede any DATA or SACK chunk sent
  546. * within the association, but MAY be bundled with one or more DATA
  547. * chunks or SACK chunk in the same SCTP packet.
  548. *
  549. * 0 1 2 3
  550. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  551. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  552. * | Type = 11 |Chunk Flags | Length = 4 |
  553. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  554. *
  555. * Chunk Flags: 8 bits
  556. *
  557. * Set to zero on transmit and ignored on receipt.
  558. */
  559. struct sctp_chunk *sctp_make_cookie_ack(const struct sctp_association *asoc,
  560. const struct sctp_chunk *chunk)
  561. {
  562. struct sctp_chunk *retval;
  563. retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ACK, 0, 0, GFP_ATOMIC);
  564. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  565. *
  566. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  567. * HEARTBEAT ACK, * etc.) to the same destination transport
  568. * address from which it * received the DATA or control chunk
  569. * to which it is replying.
  570. *
  571. * [COOKIE ACK back to where the COOKIE ECHO came from.]
  572. */
  573. if (retval && chunk && chunk->transport)
  574. retval->transport =
  575. sctp_assoc_lookup_paddr(asoc,
  576. &chunk->transport->ipaddr);
  577. return retval;
  578. }
  579. /*
  580. * Appendix A: Explicit Congestion Notification:
  581. * CWR:
  582. *
  583. * RFC 2481 details a specific bit for a sender to send in the header of
  584. * its next outbound TCP segment to indicate to its peer that it has
  585. * reduced its congestion window. This is termed the CWR bit. For
  586. * SCTP the same indication is made by including the CWR chunk.
  587. * This chunk contains one data element, i.e. the TSN number that
  588. * was sent in the ECNE chunk. This element represents the lowest
  589. * TSN number in the datagram that was originally marked with the
  590. * CE bit.
  591. *
  592. * 0 1 2 3
  593. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  594. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  595. * | Chunk Type=13 | Flags=00000000| Chunk Length = 8 |
  596. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  597. * | Lowest TSN Number |
  598. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  599. *
  600. * Note: The CWR is considered a Control chunk.
  601. */
  602. struct sctp_chunk *sctp_make_cwr(const struct sctp_association *asoc,
  603. const __u32 lowest_tsn,
  604. const struct sctp_chunk *chunk)
  605. {
  606. struct sctp_chunk *retval;
  607. struct sctp_cwrhdr cwr;
  608. cwr.lowest_tsn = htonl(lowest_tsn);
  609. retval = sctp_make_control(asoc, SCTP_CID_ECN_CWR, 0,
  610. sizeof(cwr), GFP_ATOMIC);
  611. if (!retval)
  612. goto nodata;
  613. retval->subh.ecn_cwr_hdr =
  614. sctp_addto_chunk(retval, sizeof(cwr), &cwr);
  615. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  616. *
  617. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  618. * HEARTBEAT ACK, * etc.) to the same destination transport
  619. * address from which it * received the DATA or control chunk
  620. * to which it is replying.
  621. *
  622. * [Report a reduced congestion window back to where the ECNE
  623. * came from.]
  624. */
  625. if (chunk)
  626. retval->transport = chunk->transport;
  627. nodata:
  628. return retval;
  629. }
  630. /* Make an ECNE chunk. This is a congestion experienced report. */
  631. struct sctp_chunk *sctp_make_ecne(const struct sctp_association *asoc,
  632. const __u32 lowest_tsn)
  633. {
  634. struct sctp_chunk *retval;
  635. struct sctp_ecnehdr ecne;
  636. ecne.lowest_tsn = htonl(lowest_tsn);
  637. retval = sctp_make_control(asoc, SCTP_CID_ECN_ECNE, 0,
  638. sizeof(ecne), GFP_ATOMIC);
  639. if (!retval)
  640. goto nodata;
  641. retval->subh.ecne_hdr =
  642. sctp_addto_chunk(retval, sizeof(ecne), &ecne);
  643. nodata:
  644. return retval;
  645. }
  646. /* Make a DATA chunk for the given association from the provided
  647. * parameters. However, do not populate the data payload.
  648. */
  649. struct sctp_chunk *sctp_make_datafrag_empty(const struct sctp_association *asoc,
  650. const struct sctp_sndrcvinfo *sinfo,
  651. int len, __u8 flags, gfp_t gfp)
  652. {
  653. struct sctp_chunk *retval;
  654. struct sctp_datahdr dp;
  655. /* We assign the TSN as LATE as possible, not here when
  656. * creating the chunk.
  657. */
  658. memset(&dp, 0, sizeof(dp));
  659. dp.ppid = sinfo->sinfo_ppid;
  660. dp.stream = htons(sinfo->sinfo_stream);
  661. /* Set the flags for an unordered send. */
  662. if (sinfo->sinfo_flags & SCTP_UNORDERED)
  663. flags |= SCTP_DATA_UNORDERED;
  664. retval = sctp_make_data(asoc, flags, sizeof(dp) + len, gfp);
  665. if (!retval)
  666. return NULL;
  667. retval->subh.data_hdr = sctp_addto_chunk(retval, sizeof(dp), &dp);
  668. memcpy(&retval->sinfo, sinfo, sizeof(struct sctp_sndrcvinfo));
  669. return retval;
  670. }
  671. /* Create a selective ackowledgement (SACK) for the given
  672. * association. This reports on which TSN's we've seen to date,
  673. * including duplicates and gaps.
  674. */
  675. struct sctp_chunk *sctp_make_sack(struct sctp_association *asoc)
  676. {
  677. struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
  678. struct sctp_gap_ack_block gabs[SCTP_MAX_GABS];
  679. __u16 num_gabs, num_dup_tsns;
  680. struct sctp_transport *trans;
  681. struct sctp_chunk *retval;
  682. struct sctp_sackhdr sack;
  683. __u32 ctsn;
  684. int len;
  685. memset(gabs, 0, sizeof(gabs));
  686. ctsn = sctp_tsnmap_get_ctsn(map);
  687. pr_debug("%s: sackCTSNAck sent:0x%x\n", __func__, ctsn);
  688. /* How much room is needed in the chunk? */
  689. num_gabs = sctp_tsnmap_num_gabs(map, gabs);
  690. num_dup_tsns = sctp_tsnmap_num_dups(map);
  691. /* Initialize the SACK header. */
  692. sack.cum_tsn_ack = htonl(ctsn);
  693. sack.a_rwnd = htonl(asoc->a_rwnd);
  694. sack.num_gap_ack_blocks = htons(num_gabs);
  695. sack.num_dup_tsns = htons(num_dup_tsns);
  696. len = sizeof(sack)
  697. + sizeof(struct sctp_gap_ack_block) * num_gabs
  698. + sizeof(__u32) * num_dup_tsns;
  699. /* Create the chunk. */
  700. retval = sctp_make_control(asoc, SCTP_CID_SACK, 0, len, GFP_ATOMIC);
  701. if (!retval)
  702. goto nodata;
  703. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  704. *
  705. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  706. * HEARTBEAT ACK, etc.) to the same destination transport
  707. * address from which it received the DATA or control chunk to
  708. * which it is replying. This rule should also be followed if
  709. * the endpoint is bundling DATA chunks together with the
  710. * reply chunk.
  711. *
  712. * However, when acknowledging multiple DATA chunks received
  713. * in packets from different source addresses in a single
  714. * SACK, the SACK chunk may be transmitted to one of the
  715. * destination transport addresses from which the DATA or
  716. * control chunks being acknowledged were received.
  717. *
  718. * [BUG: We do not implement the following paragraph.
  719. * Perhaps we should remember the last transport we used for a
  720. * SACK and avoid that (if possible) if we have seen any
  721. * duplicates. --piggy]
  722. *
  723. * When a receiver of a duplicate DATA chunk sends a SACK to a
  724. * multi- homed endpoint it MAY be beneficial to vary the
  725. * destination address and not use the source address of the
  726. * DATA chunk. The reason being that receiving a duplicate
  727. * from a multi-homed endpoint might indicate that the return
  728. * path (as specified in the source address of the DATA chunk)
  729. * for the SACK is broken.
  730. *
  731. * [Send to the address from which we last received a DATA chunk.]
  732. */
  733. retval->transport = asoc->peer.last_data_from;
  734. retval->subh.sack_hdr =
  735. sctp_addto_chunk(retval, sizeof(sack), &sack);
  736. /* Add the gap ack block information. */
  737. if (num_gabs)
  738. sctp_addto_chunk(retval, sizeof(__u32) * num_gabs,
  739. gabs);
  740. /* Add the duplicate TSN information. */
  741. if (num_dup_tsns) {
  742. asoc->stats.idupchunks += num_dup_tsns;
  743. sctp_addto_chunk(retval, sizeof(__u32) * num_dup_tsns,
  744. sctp_tsnmap_get_dups(map));
  745. }
  746. /* Once we have a sack generated, check to see what our sack
  747. * generation is, if its 0, reset the transports to 0, and reset
  748. * the association generation to 1
  749. *
  750. * The idea is that zero is never used as a valid generation for the
  751. * association so no transport will match after a wrap event like this,
  752. * Until the next sack
  753. */
  754. if (++asoc->peer.sack_generation == 0) {
  755. list_for_each_entry(trans, &asoc->peer.transport_addr_list,
  756. transports)
  757. trans->sack_generation = 0;
  758. asoc->peer.sack_generation = 1;
  759. }
  760. nodata:
  761. return retval;
  762. }
  763. /* Make a SHUTDOWN chunk. */
  764. struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,
  765. const struct sctp_chunk *chunk)
  766. {
  767. struct sctp_shutdownhdr shut;
  768. struct sctp_chunk *retval;
  769. __u32 ctsn;
  770. ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
  771. shut.cum_tsn_ack = htonl(ctsn);
  772. retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN, 0,
  773. sizeof(shut), GFP_ATOMIC);
  774. if (!retval)
  775. goto nodata;
  776. retval->subh.shutdown_hdr =
  777. sctp_addto_chunk(retval, sizeof(shut), &shut);
  778. if (chunk)
  779. retval->transport = chunk->transport;
  780. nodata:
  781. return retval;
  782. }
  783. struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,
  784. const struct sctp_chunk *chunk)
  785. {
  786. struct sctp_chunk *retval;
  787. retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_ACK, 0, 0,
  788. GFP_ATOMIC);
  789. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  790. *
  791. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  792. * HEARTBEAT ACK, * etc.) to the same destination transport
  793. * address from which it * received the DATA or control chunk
  794. * to which it is replying.
  795. *
  796. * [ACK back to where the SHUTDOWN came from.]
  797. */
  798. if (retval && chunk)
  799. retval->transport = chunk->transport;
  800. return retval;
  801. }
  802. struct sctp_chunk *sctp_make_shutdown_complete(
  803. const struct sctp_association *asoc,
  804. const struct sctp_chunk *chunk)
  805. {
  806. struct sctp_chunk *retval;
  807. __u8 flags = 0;
  808. /* Set the T-bit if we have no association (vtag will be
  809. * reflected)
  810. */
  811. flags |= asoc ? 0 : SCTP_CHUNK_FLAG_T;
  812. retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_COMPLETE, flags,
  813. 0, GFP_ATOMIC);
  814. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  815. *
  816. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  817. * HEARTBEAT ACK, * etc.) to the same destination transport
  818. * address from which it * received the DATA or control chunk
  819. * to which it is replying.
  820. *
  821. * [Report SHUTDOWN COMPLETE back to where the SHUTDOWN ACK
  822. * came from.]
  823. */
  824. if (retval && chunk)
  825. retval->transport = chunk->transport;
  826. return retval;
  827. }
  828. /* Create an ABORT. Note that we set the T bit if we have no
  829. * association, except when responding to an INIT (sctpimpguide 2.41).
  830. */
  831. struct sctp_chunk *sctp_make_abort(const struct sctp_association *asoc,
  832. const struct sctp_chunk *chunk,
  833. const size_t hint)
  834. {
  835. struct sctp_chunk *retval;
  836. __u8 flags = 0;
  837. /* Set the T-bit if we have no association and 'chunk' is not
  838. * an INIT (vtag will be reflected).
  839. */
  840. if (!asoc) {
  841. if (chunk && chunk->chunk_hdr &&
  842. chunk->chunk_hdr->type == SCTP_CID_INIT)
  843. flags = 0;
  844. else
  845. flags = SCTP_CHUNK_FLAG_T;
  846. }
  847. retval = sctp_make_control(asoc, SCTP_CID_ABORT, flags, hint,
  848. GFP_ATOMIC);
  849. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  850. *
  851. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  852. * HEARTBEAT ACK, * etc.) to the same destination transport
  853. * address from which it * received the DATA or control chunk
  854. * to which it is replying.
  855. *
  856. * [ABORT back to where the offender came from.]
  857. */
  858. if (retval && chunk)
  859. retval->transport = chunk->transport;
  860. return retval;
  861. }
  862. /* Helper to create ABORT with a NO_USER_DATA error. */
  863. struct sctp_chunk *sctp_make_abort_no_data(
  864. const struct sctp_association *asoc,
  865. const struct sctp_chunk *chunk,
  866. __u32 tsn)
  867. {
  868. struct sctp_chunk *retval;
  869. __be32 payload;
  870. retval = sctp_make_abort(asoc, chunk,
  871. sizeof(struct sctp_errhdr) + sizeof(tsn));
  872. if (!retval)
  873. goto no_mem;
  874. /* Put the tsn back into network byte order. */
  875. payload = htonl(tsn);
  876. sctp_init_cause(retval, SCTP_ERROR_NO_DATA, sizeof(payload));
  877. sctp_addto_chunk(retval, sizeof(payload), (const void *)&payload);
  878. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  879. *
  880. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  881. * HEARTBEAT ACK, * etc.) to the same destination transport
  882. * address from which it * received the DATA or control chunk
  883. * to which it is replying.
  884. *
  885. * [ABORT back to where the offender came from.]
  886. */
  887. if (chunk)
  888. retval->transport = chunk->transport;
  889. no_mem:
  890. return retval;
  891. }
  892. /* Helper to create ABORT with a SCTP_ERROR_USER_ABORT error. */
  893. struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *asoc,
  894. struct msghdr *msg,
  895. size_t paylen)
  896. {
  897. struct sctp_chunk *retval;
  898. void *payload = NULL;
  899. int err;
  900. retval = sctp_make_abort(asoc, NULL,
  901. sizeof(struct sctp_errhdr) + paylen);
  902. if (!retval)
  903. goto err_chunk;
  904. if (paylen) {
  905. /* Put the msg_iov together into payload. */
  906. payload = kmalloc(paylen, GFP_KERNEL);
  907. if (!payload)
  908. goto err_payload;
  909. err = memcpy_from_msg(payload, msg, paylen);
  910. if (err < 0)
  911. goto err_copy;
  912. }
  913. sctp_init_cause(retval, SCTP_ERROR_USER_ABORT, paylen);
  914. sctp_addto_chunk(retval, paylen, payload);
  915. if (paylen)
  916. kfree(payload);
  917. return retval;
  918. err_copy:
  919. kfree(payload);
  920. err_payload:
  921. sctp_chunk_free(retval);
  922. retval = NULL;
  923. err_chunk:
  924. return retval;
  925. }
  926. /* Append bytes to the end of a parameter. Will panic if chunk is not big
  927. * enough.
  928. */
  929. static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
  930. const void *data)
  931. {
  932. int chunklen = ntohs(chunk->chunk_hdr->length);
  933. void *target;
  934. target = skb_put(chunk->skb, len);
  935. if (data)
  936. memcpy(target, data, len);
  937. else
  938. memset(target, 0, len);
  939. /* Adjust the chunk length field. */
  940. chunk->chunk_hdr->length = htons(chunklen + len);
  941. chunk->chunk_end = skb_tail_pointer(chunk->skb);
  942. return target;
  943. }
  944. /* Make an ABORT chunk with a PROTOCOL VIOLATION cause code. */
  945. struct sctp_chunk *sctp_make_abort_violation(
  946. const struct sctp_association *asoc,
  947. const struct sctp_chunk *chunk,
  948. const __u8 *payload,
  949. const size_t paylen)
  950. {
  951. struct sctp_chunk *retval;
  952. struct sctp_paramhdr phdr;
  953. retval = sctp_make_abort(asoc, chunk, sizeof(struct sctp_errhdr) +
  954. paylen + sizeof(phdr));
  955. if (!retval)
  956. goto end;
  957. sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, paylen +
  958. sizeof(phdr));
  959. phdr.type = htons(chunk->chunk_hdr->type);
  960. phdr.length = chunk->chunk_hdr->length;
  961. sctp_addto_chunk(retval, paylen, payload);
  962. sctp_addto_param(retval, sizeof(phdr), &phdr);
  963. end:
  964. return retval;
  965. }
  966. struct sctp_chunk *sctp_make_violation_paramlen(
  967. const struct sctp_association *asoc,
  968. const struct sctp_chunk *chunk,
  969. struct sctp_paramhdr *param)
  970. {
  971. static const char error[] = "The following parameter had invalid length:";
  972. size_t payload_len = sizeof(error) + sizeof(struct sctp_errhdr) +
  973. sizeof(*param);
  974. struct sctp_chunk *retval;
  975. retval = sctp_make_abort(asoc, chunk, payload_len);
  976. if (!retval)
  977. goto nodata;
  978. sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION,
  979. sizeof(error) + sizeof(*param));
  980. sctp_addto_chunk(retval, sizeof(error), error);
  981. sctp_addto_param(retval, sizeof(*param), param);
  982. nodata:
  983. return retval;
  984. }
  985. struct sctp_chunk *sctp_make_violation_max_retrans(
  986. const struct sctp_association *asoc,
  987. const struct sctp_chunk *chunk)
  988. {
  989. static const char error[] = "Association exceeded its max_retrans count";
  990. size_t payload_len = sizeof(error) + sizeof(struct sctp_errhdr);
  991. struct sctp_chunk *retval;
  992. retval = sctp_make_abort(asoc, chunk, payload_len);
  993. if (!retval)
  994. goto nodata;
  995. sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, sizeof(error));
  996. sctp_addto_chunk(retval, sizeof(error), error);
  997. nodata:
  998. return retval;
  999. }
  1000. /* Make a HEARTBEAT chunk. */
  1001. struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *asoc,
  1002. const struct sctp_transport *transport)
  1003. {
  1004. struct sctp_sender_hb_info hbinfo;
  1005. struct sctp_chunk *retval;
  1006. retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT, 0,
  1007. sizeof(hbinfo), GFP_ATOMIC);
  1008. if (!retval)
  1009. goto nodata;
  1010. hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
  1011. hbinfo.param_hdr.length = htons(sizeof(hbinfo));
  1012. hbinfo.daddr = transport->ipaddr;
  1013. hbinfo.sent_at = jiffies;
  1014. hbinfo.hb_nonce = transport->hb_nonce;
  1015. /* Cast away the 'const', as this is just telling the chunk
  1016. * what transport it belongs to.
  1017. */
  1018. retval->transport = (struct sctp_transport *) transport;
  1019. retval->subh.hbs_hdr = sctp_addto_chunk(retval, sizeof(hbinfo),
  1020. &hbinfo);
  1021. nodata:
  1022. return retval;
  1023. }
  1024. struct sctp_chunk *sctp_make_heartbeat_ack(const struct sctp_association *asoc,
  1025. const struct sctp_chunk *chunk,
  1026. const void *payload,
  1027. const size_t paylen)
  1028. {
  1029. struct sctp_chunk *retval;
  1030. retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT_ACK, 0, paylen,
  1031. GFP_ATOMIC);
  1032. if (!retval)
  1033. goto nodata;
  1034. retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
  1035. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  1036. *
  1037. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  1038. * HEARTBEAT ACK, * etc.) to the same destination transport
  1039. * address from which it * received the DATA or control chunk
  1040. * to which it is replying.
  1041. *
  1042. * [HBACK back to where the HEARTBEAT came from.]
  1043. */
  1044. if (chunk)
  1045. retval->transport = chunk->transport;
  1046. nodata:
  1047. return retval;
  1048. }
  1049. /* Create an Operation Error chunk with the specified space reserved.
  1050. * This routine can be used for containing multiple causes in the chunk.
  1051. */
  1052. static struct sctp_chunk *sctp_make_op_error_space(
  1053. const struct sctp_association *asoc,
  1054. const struct sctp_chunk *chunk,
  1055. size_t size)
  1056. {
  1057. struct sctp_chunk *retval;
  1058. retval = sctp_make_control(asoc, SCTP_CID_ERROR, 0,
  1059. sizeof(struct sctp_errhdr) + size,
  1060. GFP_ATOMIC);
  1061. if (!retval)
  1062. goto nodata;
  1063. /* RFC 2960 6.4 Multi-homed SCTP Endpoints
  1064. *
  1065. * An endpoint SHOULD transmit reply chunks (e.g., SACK,
  1066. * HEARTBEAT ACK, etc.) to the same destination transport
  1067. * address from which it received the DATA or control chunk
  1068. * to which it is replying.
  1069. *
  1070. */
  1071. if (chunk)
  1072. retval->transport = chunk->transport;
  1073. nodata:
  1074. return retval;
  1075. }
  1076. /* Create an Operation Error chunk of a fixed size, specifically,
  1077. * min(asoc->pathmtu, SCTP_DEFAULT_MAXSEGMENT) - overheads.
  1078. * This is a helper function to allocate an error chunk for for those
  1079. * invalid parameter codes in which we may not want to report all the
  1080. * errors, if the incoming chunk is large. If it can't fit in a single
  1081. * packet, we ignore it.
  1082. */
  1083. static inline struct sctp_chunk *sctp_make_op_error_limited(
  1084. const struct sctp_association *asoc,
  1085. const struct sctp_chunk *chunk)
  1086. {
  1087. size_t size = SCTP_DEFAULT_MAXSEGMENT;
  1088. struct sctp_sock *sp = NULL;
  1089. if (asoc) {
  1090. size = min_t(size_t, size, asoc->pathmtu);
  1091. sp = sctp_sk(asoc->base.sk);
  1092. }
  1093. size = sctp_mtu_payload(sp, size, sizeof(struct sctp_errhdr));
  1094. return sctp_make_op_error_space(asoc, chunk, size);
  1095. }
  1096. /* Create an Operation Error chunk. */
  1097. struct sctp_chunk *sctp_make_op_error(const struct sctp_association *asoc,
  1098. const struct sctp_chunk *chunk,
  1099. __be16 cause_code, const void *payload,
  1100. size_t paylen, size_t reserve_tail)
  1101. {
  1102. struct sctp_chunk *retval;
  1103. retval = sctp_make_op_error_space(asoc, chunk, paylen + reserve_tail);
  1104. if (!retval)
  1105. goto nodata;
  1106. sctp_init_cause(retval, cause_code, paylen + reserve_tail);
  1107. sctp_addto_chunk(retval, paylen, payload);
  1108. if (reserve_tail)
  1109. sctp_addto_param(retval, reserve_tail, NULL);
  1110. nodata:
  1111. return retval;
  1112. }
  1113. struct sctp_chunk *sctp_make_auth(const struct sctp_association *asoc,
  1114. __u16 key_id)
  1115. {
  1116. struct sctp_authhdr auth_hdr;
  1117. struct sctp_hmac *hmac_desc;
  1118. struct sctp_chunk *retval;
  1119. /* Get the first hmac that the peer told us to use */
  1120. hmac_desc = sctp_auth_asoc_get_hmac(asoc);
  1121. if (unlikely(!hmac_desc))
  1122. return NULL;
  1123. retval = sctp_make_control(asoc, SCTP_CID_AUTH, 0,
  1124. hmac_desc->hmac_len + sizeof(auth_hdr),
  1125. GFP_ATOMIC);
  1126. if (!retval)
  1127. return NULL;
  1128. auth_hdr.hmac_id = htons(hmac_desc->hmac_id);
  1129. auth_hdr.shkey_id = htons(key_id);
  1130. retval->subh.auth_hdr = sctp_addto_chunk(retval, sizeof(auth_hdr),
  1131. &auth_hdr);
  1132. skb_put_zero(retval->skb, hmac_desc->hmac_len);
  1133. /* Adjust the chunk header to include the empty MAC */
  1134. retval->chunk_hdr->length =
  1135. htons(ntohs(retval->chunk_hdr->length) + hmac_desc->hmac_len);
  1136. retval->chunk_end = skb_tail_pointer(retval->skb);
  1137. return retval;
  1138. }
  1139. /********************************************************************
  1140. * 2nd Level Abstractions
  1141. ********************************************************************/
  1142. /* Turn an skb into a chunk.
  1143. * FIXME: Eventually move the structure directly inside the skb->cb[].
  1144. *
  1145. * sctpimpguide-05.txt Section 2.8.2
  1146. * M1) Each time a new DATA chunk is transmitted
  1147. * set the 'TSN.Missing.Report' count for that TSN to 0. The
  1148. * 'TSN.Missing.Report' count will be used to determine missing chunks
  1149. * and when to fast retransmit.
  1150. *
  1151. */
  1152. struct sctp_chunk *sctp_chunkify(struct sk_buff *skb,
  1153. const struct sctp_association *asoc,
  1154. struct sock *sk, gfp_t gfp)
  1155. {
  1156. struct sctp_chunk *retval;
  1157. retval = kmem_cache_zalloc(sctp_chunk_cachep, gfp);
  1158. if (!retval)
  1159. goto nodata;
  1160. if (!sk)
  1161. pr_debug("%s: chunkifying skb:%p w/o an sk\n", __func__, skb);
  1162. INIT_LIST_HEAD(&retval->list);
  1163. retval->skb = skb;
  1164. retval->asoc = (struct sctp_association *)asoc;
  1165. retval->singleton = 1;
  1166. retval->fast_retransmit = SCTP_CAN_FRTX;
  1167. /* Polish the bead hole. */
  1168. INIT_LIST_HEAD(&retval->transmitted_list);
  1169. INIT_LIST_HEAD(&retval->frag_list);
  1170. SCTP_DBG_OBJCNT_INC(chunk);
  1171. refcount_set(&retval->refcnt, 1);
  1172. nodata:
  1173. return retval;
  1174. }
  1175. /* Set chunk->source and dest based on the IP header in chunk->skb. */
  1176. void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src,
  1177. union sctp_addr *dest)
  1178. {
  1179. memcpy(&chunk->source, src, sizeof(union sctp_addr));
  1180. memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
  1181. }
  1182. /* Extract the source address from a chunk. */
  1183. const union sctp_addr *sctp_source(const struct sctp_chunk *chunk)
  1184. {
  1185. /* If we have a known transport, use that. */
  1186. if (chunk->transport) {
  1187. return &chunk->transport->ipaddr;
  1188. } else {
  1189. /* Otherwise, extract it from the IP header. */
  1190. return &chunk->source;
  1191. }
  1192. }
  1193. /* Create a new chunk, setting the type and flags headers from the
  1194. * arguments, reserving enough space for a 'paylen' byte payload.
  1195. */
  1196. static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
  1197. __u8 type, __u8 flags, int paylen,
  1198. gfp_t gfp)
  1199. {
  1200. struct sctp_chunkhdr *chunk_hdr;
  1201. struct sctp_chunk *retval;
  1202. struct sk_buff *skb;
  1203. struct sock *sk;
  1204. int chunklen;
  1205. chunklen = SCTP_PAD4(sizeof(*chunk_hdr) + paylen);
  1206. if (chunklen > SCTP_MAX_CHUNK_LEN)
  1207. goto nodata;
  1208. /* No need to allocate LL here, as this is only a chunk. */
  1209. skb = alloc_skb(chunklen, gfp);
  1210. if (!skb)
  1211. goto nodata;
  1212. /* Make room for the chunk header. */
  1213. chunk_hdr = (struct sctp_chunkhdr *)skb_put(skb, sizeof(*chunk_hdr));
  1214. chunk_hdr->type = type;
  1215. chunk_hdr->flags = flags;
  1216. chunk_hdr->length = htons(sizeof(*chunk_hdr));
  1217. sk = asoc ? asoc->base.sk : NULL;
  1218. retval = sctp_chunkify(skb, asoc, sk, gfp);
  1219. if (!retval) {
  1220. kfree_skb(skb);
  1221. goto nodata;
  1222. }
  1223. retval->chunk_hdr = chunk_hdr;
  1224. retval->chunk_end = ((__u8 *)chunk_hdr) + sizeof(*chunk_hdr);
  1225. /* Determine if the chunk needs to be authenticated */
  1226. if (sctp_auth_send_cid(type, asoc))
  1227. retval->auth = 1;
  1228. return retval;
  1229. nodata:
  1230. return NULL;
  1231. }
  1232. static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
  1233. __u8 flags, int paylen, gfp_t gfp)
  1234. {
  1235. return _sctp_make_chunk(asoc, SCTP_CID_DATA, flags, paylen, gfp);
  1236. }
  1237. struct sctp_chunk *sctp_make_idata(const struct sctp_association *asoc,
  1238. __u8 flags, int paylen, gfp_t gfp)
  1239. {
  1240. return _sctp_make_chunk(asoc, SCTP_CID_I_DATA, flags, paylen, gfp);
  1241. }
  1242. static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
  1243. __u8 type, __u8 flags, int paylen,
  1244. gfp_t gfp)
  1245. {
  1246. struct sctp_chunk *chunk;
  1247. chunk = _sctp_make_chunk(asoc, type, flags, paylen, gfp);
  1248. if (chunk)
  1249. sctp_control_set_owner_w(chunk);
  1250. return chunk;
  1251. }
  1252. /* Release the memory occupied by a chunk. */
  1253. static void sctp_chunk_destroy(struct sctp_chunk *chunk)
  1254. {
  1255. BUG_ON(!list_empty(&chunk->list));
  1256. list_del_init(&chunk->transmitted_list);
  1257. consume_skb(chunk->skb);
  1258. consume_skb(chunk->auth_chunk);
  1259. SCTP_DBG_OBJCNT_DEC(chunk);
  1260. kmem_cache_free(sctp_chunk_cachep, chunk);
  1261. }
  1262. /* Possibly, free the chunk. */
  1263. void sctp_chunk_free(struct sctp_chunk *chunk)
  1264. {
  1265. /* Release our reference on the message tracker. */
  1266. if (chunk->msg)
  1267. sctp_datamsg_put(chunk->msg);
  1268. sctp_chunk_put(chunk);
  1269. }
  1270. /* Grab a reference to the chunk. */
  1271. void sctp_chunk_hold(struct sctp_chunk *ch)
  1272. {
  1273. refcount_inc(&ch->refcnt);
  1274. }
  1275. /* Release a reference to the chunk. */
  1276. void sctp_chunk_put(struct sctp_chunk *ch)
  1277. {
  1278. if (refcount_dec_and_test(&ch->refcnt))
  1279. sctp_chunk_destroy(ch);
  1280. }
  1281. /* Append bytes to the end of a chunk. Will panic if chunk is not big
  1282. * enough.
  1283. */
  1284. void *sctp_addto_chunk(struct sctp_chunk *chunk, int len, const void *data)
  1285. {
  1286. int chunklen = ntohs(chunk->chunk_hdr->length);
  1287. int padlen = SCTP_PAD4(chunklen) - chunklen;
  1288. void *target;
  1289. skb_put_zero(chunk->skb, padlen);
  1290. target = skb_put_data(chunk->skb, data, len);
  1291. /* Adjust the chunk length field. */
  1292. chunk->chunk_hdr->length = htons(chunklen + padlen + len);
  1293. chunk->chunk_end = skb_tail_pointer(chunk->skb);
  1294. return target;
  1295. }
  1296. /* Append bytes from user space to the end of a chunk. Will panic if
  1297. * chunk is not big enough.
  1298. * Returns a kernel err value.
  1299. */
  1300. int sctp_user_addto_chunk(struct sctp_chunk *chunk, int len,
  1301. struct iov_iter *from)
  1302. {
  1303. void *target;
  1304. /* Make room in chunk for data. */
  1305. target = skb_put(chunk->skb, len);
  1306. /* Copy data (whole iovec) into chunk */
  1307. if (!copy_from_iter_full(target, len, from))
  1308. return -EFAULT;
  1309. /* Adjust the chunk length field. */
  1310. chunk->chunk_hdr->length =
  1311. htons(ntohs(chunk->chunk_hdr->length) + len);
  1312. chunk->chunk_end = skb_tail_pointer(chunk->skb);
  1313. return 0;
  1314. }
  1315. /* Helper function to assign a TSN if needed. This assumes that both
  1316. * the data_hdr and association have already been assigned.
  1317. */
  1318. void sctp_chunk_assign_ssn(struct sctp_chunk *chunk)
  1319. {
  1320. struct sctp_stream *stream;
  1321. struct sctp_chunk *lchunk;
  1322. struct sctp_datamsg *msg;
  1323. __u16 ssn, sid;
  1324. if (chunk->has_ssn)
  1325. return;
  1326. /* All fragments will be on the same stream */
  1327. sid = ntohs(chunk->subh.data_hdr->stream);
  1328. stream = &chunk->asoc->stream;
  1329. /* Now assign the sequence number to the entire message.
  1330. * All fragments must have the same stream sequence number.
  1331. */
  1332. msg = chunk->msg;
  1333. list_for_each_entry(lchunk, &msg->chunks, frag_list) {
  1334. if (lchunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
  1335. ssn = 0;
  1336. } else {
  1337. if (lchunk->chunk_hdr->flags & SCTP_DATA_LAST_FRAG)
  1338. ssn = sctp_ssn_next(stream, out, sid);
  1339. else
  1340. ssn = sctp_ssn_peek(stream, out, sid);
  1341. }
  1342. lchunk->subh.data_hdr->ssn = htons(ssn);
  1343. lchunk->has_ssn = 1;
  1344. }
  1345. }
  1346. /* Helper function to assign a TSN if needed. This assumes that both
  1347. * the data_hdr and association have already been assigned.
  1348. */
  1349. void sctp_chunk_assign_tsn(struct sctp_chunk *chunk)
  1350. {
  1351. if (!chunk->has_tsn) {
  1352. /* This is the last possible instant to
  1353. * assign a TSN.
  1354. */
  1355. chunk->subh.data_hdr->tsn =
  1356. htonl(sctp_association_get_next_tsn(chunk->asoc));
  1357. chunk->has_tsn = 1;
  1358. }
  1359. }
  1360. /* Create a CLOSED association to use with an incoming packet. */
  1361. struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *ep,
  1362. struct sctp_chunk *chunk,
  1363. gfp_t gfp)
  1364. {
  1365. struct sctp_association *asoc;
  1366. enum sctp_scope scope;
  1367. struct sk_buff *skb;
  1368. /* Create the bare association. */
  1369. scope = sctp_scope(sctp_source(chunk));
  1370. asoc = sctp_association_new(ep, ep->base.sk, scope, gfp);
  1371. if (!asoc)
  1372. goto nodata;
  1373. asoc->temp = 1;
  1374. skb = chunk->skb;
  1375. /* Create an entry for the source address of the packet. */
  1376. SCTP_INPUT_CB(skb)->af->from_skb(&asoc->c.peer_addr, skb, 1);
  1377. nodata:
  1378. return asoc;
  1379. }
  1380. /* Build a cookie representing asoc.
  1381. * This INCLUDES the param header needed to put the cookie in the INIT ACK.
  1382. */
  1383. static struct sctp_cookie_param *sctp_pack_cookie(
  1384. const struct sctp_endpoint *ep,
  1385. const struct sctp_association *asoc,
  1386. const struct sctp_chunk *init_chunk,
  1387. int *cookie_len, const __u8 *raw_addrs,
  1388. int addrs_len)
  1389. {
  1390. struct sctp_signed_cookie *cookie;
  1391. struct sctp_cookie_param *retval;
  1392. int headersize, bodysize;
  1393. /* Header size is static data prior to the actual cookie, including
  1394. * any padding.
  1395. */
  1396. headersize = sizeof(struct sctp_paramhdr) +
  1397. (sizeof(struct sctp_signed_cookie) -
  1398. sizeof(struct sctp_cookie));
  1399. bodysize = sizeof(struct sctp_cookie)
  1400. + ntohs(init_chunk->chunk_hdr->length) + addrs_len;
  1401. /* Pad out the cookie to a multiple to make the signature
  1402. * functions simpler to write.
  1403. */
  1404. if (bodysize % SCTP_COOKIE_MULTIPLE)
  1405. bodysize += SCTP_COOKIE_MULTIPLE
  1406. - (bodysize % SCTP_COOKIE_MULTIPLE);
  1407. *cookie_len = headersize + bodysize;
  1408. /* Clear this memory since we are sending this data structure
  1409. * out on the network.
  1410. */
  1411. retval = kzalloc(*cookie_len, GFP_ATOMIC);
  1412. if (!retval)
  1413. goto nodata;
  1414. cookie = (struct sctp_signed_cookie *) retval->body;
  1415. /* Set up the parameter header. */
  1416. retval->p.type = SCTP_PARAM_STATE_COOKIE;
  1417. retval->p.length = htons(*cookie_len);
  1418. /* Copy the cookie part of the association itself. */
  1419. cookie->c = asoc->c;
  1420. /* Save the raw address list length in the cookie. */
  1421. cookie->c.raw_addr_list_len = addrs_len;
  1422. /* Remember PR-SCTP capability. */
  1423. cookie->c.prsctp_capable = asoc->peer.prsctp_capable;
  1424. /* Save adaptation indication in the cookie. */
  1425. cookie->c.adaptation_ind = asoc->peer.adaptation_ind;
  1426. /* Set an expiration time for the cookie. */
  1427. cookie->c.expiration = ktime_add(asoc->cookie_life,
  1428. ktime_get_real());
  1429. /* Copy the peer's init packet. */
  1430. memcpy(&cookie->c.peer_init[0], init_chunk->chunk_hdr,
  1431. ntohs(init_chunk->chunk_hdr->length));
  1432. /* Copy the raw local address list of the association. */
  1433. memcpy((__u8 *)&cookie->c.peer_init[0] +
  1434. ntohs(init_chunk->chunk_hdr->length), raw_addrs, addrs_len);
  1435. if (sctp_sk(ep->base.sk)->hmac) {
  1436. SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
  1437. int err;
  1438. /* Sign the message. */
  1439. desc->tfm = sctp_sk(ep->base.sk)->hmac;
  1440. desc->flags = 0;
  1441. err = crypto_shash_setkey(desc->tfm, ep->secret_key,
  1442. sizeof(ep->secret_key)) ?:
  1443. crypto_shash_digest(desc, (u8 *)&cookie->c, bodysize,
  1444. cookie->signature);
  1445. shash_desc_zero(desc);
  1446. if (err)
  1447. goto free_cookie;
  1448. }
  1449. return retval;
  1450. free_cookie:
  1451. kfree(retval);
  1452. nodata:
  1453. *cookie_len = 0;
  1454. return NULL;
  1455. }
  1456. /* Unpack the cookie from COOKIE ECHO chunk, recreating the association. */
  1457. struct sctp_association *sctp_unpack_cookie(
  1458. const struct sctp_endpoint *ep,
  1459. const struct sctp_association *asoc,
  1460. struct sctp_chunk *chunk, gfp_t gfp,
  1461. int *error, struct sctp_chunk **errp)
  1462. {
  1463. struct sctp_association *retval = NULL;
  1464. int headersize, bodysize, fixed_size;
  1465. struct sctp_signed_cookie *cookie;
  1466. struct sk_buff *skb = chunk->skb;
  1467. struct sctp_cookie *bear_cookie;
  1468. __u8 *digest = ep->digest;
  1469. enum sctp_scope scope;
  1470. unsigned int len;
  1471. ktime_t kt;
  1472. /* Header size is static data prior to the actual cookie, including
  1473. * any padding.
  1474. */
  1475. headersize = sizeof(struct sctp_chunkhdr) +
  1476. (sizeof(struct sctp_signed_cookie) -
  1477. sizeof(struct sctp_cookie));
  1478. bodysize = ntohs(chunk->chunk_hdr->length) - headersize;
  1479. fixed_size = headersize + sizeof(struct sctp_cookie);
  1480. /* Verify that the chunk looks like it even has a cookie.
  1481. * There must be enough room for our cookie and our peer's
  1482. * INIT chunk.
  1483. */
  1484. len = ntohs(chunk->chunk_hdr->length);
  1485. if (len < fixed_size + sizeof(struct sctp_chunkhdr))
  1486. goto malformed;
  1487. /* Verify that the cookie has been padded out. */
  1488. if (bodysize % SCTP_COOKIE_MULTIPLE)
  1489. goto malformed;
  1490. /* Process the cookie. */
  1491. cookie = chunk->subh.cookie_hdr;
  1492. bear_cookie = &cookie->c;
  1493. if (!sctp_sk(ep->base.sk)->hmac)
  1494. goto no_hmac;
  1495. /* Check the signature. */
  1496. {
  1497. SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
  1498. int err;
  1499. desc->tfm = sctp_sk(ep->base.sk)->hmac;
  1500. desc->flags = 0;
  1501. err = crypto_shash_setkey(desc->tfm, ep->secret_key,
  1502. sizeof(ep->secret_key)) ?:
  1503. crypto_shash_digest(desc, (u8 *)bear_cookie, bodysize,
  1504. digest);
  1505. shash_desc_zero(desc);
  1506. if (err) {
  1507. *error = -SCTP_IERROR_NOMEM;
  1508. goto fail;
  1509. }
  1510. }
  1511. if (memcmp(digest, cookie->signature, SCTP_SIGNATURE_SIZE)) {
  1512. *error = -SCTP_IERROR_BAD_SIG;
  1513. goto fail;
  1514. }
  1515. no_hmac:
  1516. /* IG Section 2.35.2:
  1517. * 3) Compare the port numbers and the verification tag contained
  1518. * within the COOKIE ECHO chunk to the actual port numbers and the
  1519. * verification tag within the SCTP common header of the received
  1520. * packet. If these values do not match the packet MUST be silently
  1521. * discarded,
  1522. */
  1523. if (ntohl(chunk->sctp_hdr->vtag) != bear_cookie->my_vtag) {
  1524. *error = -SCTP_IERROR_BAD_TAG;
  1525. goto fail;
  1526. }
  1527. if (chunk->sctp_hdr->source != bear_cookie->peer_addr.v4.sin_port ||
  1528. ntohs(chunk->sctp_hdr->dest) != bear_cookie->my_port) {
  1529. *error = -SCTP_IERROR_BAD_PORTS;
  1530. goto fail;
  1531. }
  1532. /* Check to see if the cookie is stale. If there is already
  1533. * an association, there is no need to check cookie's expiration
  1534. * for init collision case of lost COOKIE ACK.
  1535. * If skb has been timestamped, then use the stamp, otherwise
  1536. * use current time. This introduces a small possibility that
  1537. * that a cookie may be considered expired, but his would only slow
  1538. * down the new association establishment instead of every packet.
  1539. */
  1540. if (sock_flag(ep->base.sk, SOCK_TIMESTAMP))
  1541. kt = skb_get_ktime(skb);
  1542. else
  1543. kt = ktime_get_real();
  1544. if (!asoc && ktime_before(bear_cookie->expiration, kt)) {
  1545. suseconds_t usecs = ktime_to_us(ktime_sub(kt, bear_cookie->expiration));
  1546. __be32 n = htonl(usecs);
  1547. /*
  1548. * Section 3.3.10.3 Stale Cookie Error (3)
  1549. *
  1550. * Cause of error
  1551. * ---------------
  1552. * Stale Cookie Error: Indicates the receipt of a valid State
  1553. * Cookie that has expired.
  1554. */
  1555. *errp = sctp_make_op_error(asoc, chunk,
  1556. SCTP_ERROR_STALE_COOKIE, &n,
  1557. sizeof(n), 0);
  1558. if (*errp)
  1559. *error = -SCTP_IERROR_STALE_COOKIE;
  1560. else
  1561. *error = -SCTP_IERROR_NOMEM;
  1562. goto fail;
  1563. }
  1564. /* Make a new base association. */
  1565. scope = sctp_scope(sctp_source(chunk));
  1566. retval = sctp_association_new(ep, ep->base.sk, scope, gfp);
  1567. if (!retval) {
  1568. *error = -SCTP_IERROR_NOMEM;
  1569. goto fail;
  1570. }
  1571. /* Set up our peer's port number. */
  1572. retval->peer.port = ntohs(chunk->sctp_hdr->source);
  1573. /* Populate the association from the cookie. */
  1574. memcpy(&retval->c, bear_cookie, sizeof(*bear_cookie));
  1575. if (sctp_assoc_set_bind_addr_from_cookie(retval, bear_cookie,
  1576. GFP_ATOMIC) < 0) {
  1577. *error = -SCTP_IERROR_NOMEM;
  1578. goto fail;
  1579. }
  1580. /* Also, add the destination address. */
  1581. if (list_empty(&retval->base.bind_addr.address_list)) {
  1582. sctp_add_bind_addr(&retval->base.bind_addr, &chunk->dest,
  1583. sizeof(chunk->dest), SCTP_ADDR_SRC,
  1584. GFP_ATOMIC);
  1585. }
  1586. retval->next_tsn = retval->c.initial_tsn;
  1587. retval->ctsn_ack_point = retval->next_tsn - 1;
  1588. retval->addip_serial = retval->c.initial_tsn;
  1589. retval->strreset_outseq = retval->c.initial_tsn;
  1590. retval->adv_peer_ack_point = retval->ctsn_ack_point;
  1591. retval->peer.prsctp_capable = retval->c.prsctp_capable;
  1592. retval->peer.adaptation_ind = retval->c.adaptation_ind;
  1593. /* The INIT stuff will be done by the side effects. */
  1594. return retval;
  1595. fail:
  1596. if (retval)
  1597. sctp_association_free(retval);
  1598. return NULL;
  1599. malformed:
  1600. /* Yikes! The packet is either corrupt or deliberately
  1601. * malformed.
  1602. */
  1603. *error = -SCTP_IERROR_MALFORMED;
  1604. goto fail;
  1605. }
  1606. /********************************************************************
  1607. * 3rd Level Abstractions
  1608. ********************************************************************/
  1609. struct __sctp_missing {
  1610. __be32 num_missing;
  1611. __be16 type;
  1612. } __packed;
  1613. /*
  1614. * Report a missing mandatory parameter.
  1615. */
  1616. static int sctp_process_missing_param(const struct sctp_association *asoc,
  1617. enum sctp_param paramtype,
  1618. struct sctp_chunk *chunk,
  1619. struct sctp_chunk **errp)
  1620. {
  1621. struct __sctp_missing report;
  1622. __u16 len;
  1623. len = SCTP_PAD4(sizeof(report));
  1624. /* Make an ERROR chunk, preparing enough room for
  1625. * returning multiple unknown parameters.
  1626. */
  1627. if (!*errp)
  1628. *errp = sctp_make_op_error_space(asoc, chunk, len);
  1629. if (*errp) {
  1630. report.num_missing = htonl(1);
  1631. report.type = paramtype;
  1632. sctp_init_cause(*errp, SCTP_ERROR_MISS_PARAM,
  1633. sizeof(report));
  1634. sctp_addto_chunk(*errp, sizeof(report), &report);
  1635. }
  1636. /* Stop processing this chunk. */
  1637. return 0;
  1638. }
  1639. /* Report an Invalid Mandatory Parameter. */
  1640. static int sctp_process_inv_mandatory(const struct sctp_association *asoc,
  1641. struct sctp_chunk *chunk,
  1642. struct sctp_chunk **errp)
  1643. {
  1644. /* Invalid Mandatory Parameter Error has no payload. */
  1645. if (!*errp)
  1646. *errp = sctp_make_op_error_space(asoc, chunk, 0);
  1647. if (*errp)
  1648. sctp_init_cause(*errp, SCTP_ERROR_INV_PARAM, 0);
  1649. /* Stop processing this chunk. */
  1650. return 0;
  1651. }
  1652. static int sctp_process_inv_paramlength(const struct sctp_association *asoc,
  1653. struct sctp_paramhdr *param,
  1654. const struct sctp_chunk *chunk,
  1655. struct sctp_chunk **errp)
  1656. {
  1657. /* This is a fatal error. Any accumulated non-fatal errors are
  1658. * not reported.
  1659. */
  1660. if (*errp)
  1661. sctp_chunk_free(*errp);
  1662. /* Create an error chunk and fill it in with our payload. */
  1663. *errp = sctp_make_violation_paramlen(asoc, chunk, param);
  1664. return 0;
  1665. }
  1666. /* Do not attempt to handle the HOST_NAME parm. However, do
  1667. * send back an indicator to the peer.
  1668. */
  1669. static int sctp_process_hn_param(const struct sctp_association *asoc,
  1670. union sctp_params param,
  1671. struct sctp_chunk *chunk,
  1672. struct sctp_chunk **errp)
  1673. {
  1674. __u16 len = ntohs(param.p->length);
  1675. /* Processing of the HOST_NAME parameter will generate an
  1676. * ABORT. If we've accumulated any non-fatal errors, they
  1677. * would be unrecognized parameters and we should not include
  1678. * them in the ABORT.
  1679. */
  1680. if (*errp)
  1681. sctp_chunk_free(*errp);
  1682. *errp = sctp_make_op_error(asoc, chunk, SCTP_ERROR_DNS_FAILED,
  1683. param.v, len, 0);
  1684. /* Stop processing this chunk. */
  1685. return 0;
  1686. }
  1687. static int sctp_verify_ext_param(struct net *net, union sctp_params param)
  1688. {
  1689. __u16 num_ext = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
  1690. int have_asconf = 0;
  1691. int have_auth = 0;
  1692. int i;
  1693. for (i = 0; i < num_ext; i++) {
  1694. switch (param.ext->chunks[i]) {
  1695. case SCTP_CID_AUTH:
  1696. have_auth = 1;
  1697. break;
  1698. case SCTP_CID_ASCONF:
  1699. case SCTP_CID_ASCONF_ACK:
  1700. have_asconf = 1;
  1701. break;
  1702. }
  1703. }
  1704. /* ADD-IP Security: The draft requires us to ABORT or ignore the
  1705. * INIT/INIT-ACK if ADD-IP is listed, but AUTH is not. Do this
  1706. * only if ADD-IP is turned on and we are not backward-compatible
  1707. * mode.
  1708. */
  1709. if (net->sctp.addip_noauth)
  1710. return 1;
  1711. if (net->sctp.addip_enable && !have_auth && have_asconf)
  1712. return 0;
  1713. return 1;
  1714. }
  1715. static void sctp_process_ext_param(struct sctp_association *asoc,
  1716. union sctp_params param)
  1717. {
  1718. __u16 num_ext = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
  1719. struct net *net = sock_net(asoc->base.sk);
  1720. int i;
  1721. for (i = 0; i < num_ext; i++) {
  1722. switch (param.ext->chunks[i]) {
  1723. case SCTP_CID_RECONF:
  1724. if (asoc->reconf_enable &&
  1725. !asoc->peer.reconf_capable)
  1726. asoc->peer.reconf_capable = 1;
  1727. break;
  1728. case SCTP_CID_FWD_TSN:
  1729. if (asoc->prsctp_enable && !asoc->peer.prsctp_capable)
  1730. asoc->peer.prsctp_capable = 1;
  1731. break;
  1732. case SCTP_CID_AUTH:
  1733. /* if the peer reports AUTH, assume that he
  1734. * supports AUTH.
  1735. */
  1736. if (asoc->ep->auth_enable)
  1737. asoc->peer.auth_capable = 1;
  1738. break;
  1739. case SCTP_CID_ASCONF:
  1740. case SCTP_CID_ASCONF_ACK:
  1741. if (net->sctp.addip_enable)
  1742. asoc->peer.asconf_capable = 1;
  1743. break;
  1744. case SCTP_CID_I_DATA:
  1745. if (sctp_sk(asoc->base.sk)->strm_interleave)
  1746. asoc->intl_enable = 1;
  1747. break;
  1748. default:
  1749. break;
  1750. }
  1751. }
  1752. }
  1753. /* RFC 3.2.1 & the Implementers Guide 2.2.
  1754. *
  1755. * The Parameter Types are encoded such that the
  1756. * highest-order two bits specify the action that must be
  1757. * taken if the processing endpoint does not recognize the
  1758. * Parameter Type.
  1759. *
  1760. * 00 - Stop processing this parameter; do not process any further
  1761. * parameters within this chunk
  1762. *
  1763. * 01 - Stop processing this parameter, do not process any further
  1764. * parameters within this chunk, and report the unrecognized
  1765. * parameter in an 'Unrecognized Parameter' ERROR chunk.
  1766. *
  1767. * 10 - Skip this parameter and continue processing.
  1768. *
  1769. * 11 - Skip this parameter and continue processing but
  1770. * report the unrecognized parameter in an
  1771. * 'Unrecognized Parameter' ERROR chunk.
  1772. *
  1773. * Return value:
  1774. * SCTP_IERROR_NO_ERROR - continue with the chunk
  1775. * SCTP_IERROR_ERROR - stop and report an error.
  1776. * SCTP_IERROR_NOMEME - out of memory.
  1777. */
  1778. static enum sctp_ierror sctp_process_unk_param(
  1779. const struct sctp_association *asoc,
  1780. union sctp_params param,
  1781. struct sctp_chunk *chunk,
  1782. struct sctp_chunk **errp)
  1783. {
  1784. int retval = SCTP_IERROR_NO_ERROR;
  1785. switch (param.p->type & SCTP_PARAM_ACTION_MASK) {
  1786. case SCTP_PARAM_ACTION_DISCARD:
  1787. retval = SCTP_IERROR_ERROR;
  1788. break;
  1789. case SCTP_PARAM_ACTION_SKIP:
  1790. break;
  1791. case SCTP_PARAM_ACTION_DISCARD_ERR:
  1792. retval = SCTP_IERROR_ERROR;
  1793. /* Fall through */
  1794. case SCTP_PARAM_ACTION_SKIP_ERR:
  1795. /* Make an ERROR chunk, preparing enough room for
  1796. * returning multiple unknown parameters.
  1797. */
  1798. if (!*errp) {
  1799. *errp = sctp_make_op_error_limited(asoc, chunk);
  1800. if (!*errp) {
  1801. /* If there is no memory for generating the
  1802. * ERROR report as specified, an ABORT will be
  1803. * triggered to the peer and the association
  1804. * won't be established.
  1805. */
  1806. retval = SCTP_IERROR_NOMEM;
  1807. break;
  1808. }
  1809. }
  1810. if (!sctp_init_cause(*errp, SCTP_ERROR_UNKNOWN_PARAM,
  1811. ntohs(param.p->length)))
  1812. sctp_addto_chunk(*errp, ntohs(param.p->length),
  1813. param.v);
  1814. break;
  1815. default:
  1816. break;
  1817. }
  1818. return retval;
  1819. }
  1820. /* Verify variable length parameters
  1821. * Return values:
  1822. * SCTP_IERROR_ABORT - trigger an ABORT
  1823. * SCTP_IERROR_NOMEM - out of memory (abort)
  1824. * SCTP_IERROR_ERROR - stop processing, trigger an ERROR
  1825. * SCTP_IERROR_NO_ERROR - continue with the chunk
  1826. */
  1827. static enum sctp_ierror sctp_verify_param(struct net *net,
  1828. const struct sctp_endpoint *ep,
  1829. const struct sctp_association *asoc,
  1830. union sctp_params param,
  1831. enum sctp_cid cid,
  1832. struct sctp_chunk *chunk,
  1833. struct sctp_chunk **err_chunk)
  1834. {
  1835. struct sctp_hmac_algo_param *hmacs;
  1836. int retval = SCTP_IERROR_NO_ERROR;
  1837. __u16 n_elt, id = 0;
  1838. int i;
  1839. /* FIXME - This routine is not looking at each parameter per the
  1840. * chunk type, i.e., unrecognized parameters should be further
  1841. * identified based on the chunk id.
  1842. */
  1843. switch (param.p->type) {
  1844. case SCTP_PARAM_IPV4_ADDRESS:
  1845. case SCTP_PARAM_IPV6_ADDRESS:
  1846. case SCTP_PARAM_COOKIE_PRESERVATIVE:
  1847. case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
  1848. case SCTP_PARAM_STATE_COOKIE:
  1849. case SCTP_PARAM_HEARTBEAT_INFO:
  1850. case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
  1851. case SCTP_PARAM_ECN_CAPABLE:
  1852. case SCTP_PARAM_ADAPTATION_LAYER_IND:
  1853. break;
  1854. case SCTP_PARAM_SUPPORTED_EXT:
  1855. if (!sctp_verify_ext_param(net, param))
  1856. return SCTP_IERROR_ABORT;
  1857. break;
  1858. case SCTP_PARAM_SET_PRIMARY:
  1859. if (net->sctp.addip_enable)
  1860. break;
  1861. goto fallthrough;
  1862. case SCTP_PARAM_HOST_NAME_ADDRESS:
  1863. /* Tell the peer, we won't support this param. */
  1864. sctp_process_hn_param(asoc, param, chunk, err_chunk);
  1865. retval = SCTP_IERROR_ABORT;
  1866. break;
  1867. case SCTP_PARAM_FWD_TSN_SUPPORT:
  1868. if (ep->prsctp_enable)
  1869. break;
  1870. goto fallthrough;
  1871. case SCTP_PARAM_RANDOM:
  1872. if (!ep->auth_enable)
  1873. goto fallthrough;
  1874. /* SCTP-AUTH: Secion 6.1
  1875. * If the random number is not 32 byte long the association
  1876. * MUST be aborted. The ABORT chunk SHOULD contain the error
  1877. * cause 'Protocol Violation'.
  1878. */
  1879. if (SCTP_AUTH_RANDOM_LENGTH != ntohs(param.p->length) -
  1880. sizeof(struct sctp_paramhdr)) {
  1881. sctp_process_inv_paramlength(asoc, param.p,
  1882. chunk, err_chunk);
  1883. retval = SCTP_IERROR_ABORT;
  1884. }
  1885. break;
  1886. case SCTP_PARAM_CHUNKS:
  1887. if (!ep->auth_enable)
  1888. goto fallthrough;
  1889. /* SCTP-AUTH: Section 3.2
  1890. * The CHUNKS parameter MUST be included once in the INIT or
  1891. * INIT-ACK chunk if the sender wants to receive authenticated
  1892. * chunks. Its maximum length is 260 bytes.
  1893. */
  1894. if (260 < ntohs(param.p->length)) {
  1895. sctp_process_inv_paramlength(asoc, param.p,
  1896. chunk, err_chunk);
  1897. retval = SCTP_IERROR_ABORT;
  1898. }
  1899. break;
  1900. case SCTP_PARAM_HMAC_ALGO:
  1901. if (!ep->auth_enable)
  1902. goto fallthrough;
  1903. hmacs = (struct sctp_hmac_algo_param *)param.p;
  1904. n_elt = (ntohs(param.p->length) -
  1905. sizeof(struct sctp_paramhdr)) >> 1;
  1906. /* SCTP-AUTH: Section 6.1
  1907. * The HMAC algorithm based on SHA-1 MUST be supported and
  1908. * included in the HMAC-ALGO parameter.
  1909. */
  1910. for (i = 0; i < n_elt; i++) {
  1911. id = ntohs(hmacs->hmac_ids[i]);
  1912. if (id == SCTP_AUTH_HMAC_ID_SHA1)
  1913. break;
  1914. }
  1915. if (id != SCTP_AUTH_HMAC_ID_SHA1) {
  1916. sctp_process_inv_paramlength(asoc, param.p, chunk,
  1917. err_chunk);
  1918. retval = SCTP_IERROR_ABORT;
  1919. }
  1920. break;
  1921. fallthrough:
  1922. default:
  1923. pr_debug("%s: unrecognized param:%d for chunk:%d\n",
  1924. __func__, ntohs(param.p->type), cid);
  1925. retval = sctp_process_unk_param(asoc, param, chunk, err_chunk);
  1926. break;
  1927. }
  1928. return retval;
  1929. }
  1930. /* Verify the INIT packet before we process it. */
  1931. int sctp_verify_init(struct net *net, const struct sctp_endpoint *ep,
  1932. const struct sctp_association *asoc, enum sctp_cid cid,
  1933. struct sctp_init_chunk *peer_init,
  1934. struct sctp_chunk *chunk, struct sctp_chunk **errp)
  1935. {
  1936. union sctp_params param;
  1937. bool has_cookie = false;
  1938. int result;
  1939. /* Check for missing mandatory parameters. Note: Initial TSN is
  1940. * also mandatory, but is not checked here since the valid range
  1941. * is 0..2**32-1. RFC4960, section 3.3.3.
  1942. */
  1943. if (peer_init->init_hdr.num_outbound_streams == 0 ||
  1944. peer_init->init_hdr.num_inbound_streams == 0 ||
  1945. peer_init->init_hdr.init_tag == 0 ||
  1946. ntohl(peer_init->init_hdr.a_rwnd) < SCTP_DEFAULT_MINWINDOW)
  1947. return sctp_process_inv_mandatory(asoc, chunk, errp);
  1948. sctp_walk_params(param, peer_init, init_hdr.params) {
  1949. if (param.p->type == SCTP_PARAM_STATE_COOKIE)
  1950. has_cookie = true;
  1951. }
  1952. /* There is a possibility that a parameter length was bad and
  1953. * in that case we would have stoped walking the parameters.
  1954. * The current param.p would point at the bad one.
  1955. * Current consensus on the mailing list is to generate a PROTOCOL
  1956. * VIOLATION error. We build the ERROR chunk here and let the normal
  1957. * error handling code build and send the packet.
  1958. */
  1959. if (param.v != (void *)chunk->chunk_end)
  1960. return sctp_process_inv_paramlength(asoc, param.p, chunk, errp);
  1961. /* The only missing mandatory param possible today is
  1962. * the state cookie for an INIT-ACK chunk.
  1963. */
  1964. if ((SCTP_CID_INIT_ACK == cid) && !has_cookie)
  1965. return sctp_process_missing_param(asoc, SCTP_PARAM_STATE_COOKIE,
  1966. chunk, errp);
  1967. /* Verify all the variable length parameters */
  1968. sctp_walk_params(param, peer_init, init_hdr.params) {
  1969. result = sctp_verify_param(net, ep, asoc, param, cid,
  1970. chunk, errp);
  1971. switch (result) {
  1972. case SCTP_IERROR_ABORT:
  1973. case SCTP_IERROR_NOMEM:
  1974. return 0;
  1975. case SCTP_IERROR_ERROR:
  1976. return 1;
  1977. case SCTP_IERROR_NO_ERROR:
  1978. default:
  1979. break;
  1980. }
  1981. } /* for (loop through all parameters) */
  1982. return 1;
  1983. }
  1984. /* Unpack the parameters in an INIT packet into an association.
  1985. * Returns 0 on failure, else success.
  1986. * FIXME: This is an association method.
  1987. */
  1988. int sctp_process_init(struct sctp_association *asoc, struct sctp_chunk *chunk,
  1989. const union sctp_addr *peer_addr,
  1990. struct sctp_init_chunk *peer_init, gfp_t gfp)
  1991. {
  1992. struct net *net = sock_net(asoc->base.sk);
  1993. struct sctp_transport *transport;
  1994. struct list_head *pos, *temp;
  1995. union sctp_params param;
  1996. union sctp_addr addr;
  1997. struct sctp_af *af;
  1998. int src_match = 0;
  1999. /* We must include the address that the INIT packet came from.
  2000. * This is the only address that matters for an INIT packet.
  2001. * When processing a COOKIE ECHO, we retrieve the from address
  2002. * of the INIT from the cookie.
  2003. */
  2004. /* This implementation defaults to making the first transport
  2005. * added as the primary transport. The source address seems to
  2006. * be a a better choice than any of the embedded addresses.
  2007. */
  2008. if (!sctp_assoc_add_peer(asoc, peer_addr, gfp, SCTP_ACTIVE))
  2009. goto nomem;
  2010. if (sctp_cmp_addr_exact(sctp_source(chunk), peer_addr))
  2011. src_match = 1;
  2012. /* Process the initialization parameters. */
  2013. sctp_walk_params(param, peer_init, init_hdr.params) {
  2014. if (!src_match && (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
  2015. param.p->type == SCTP_PARAM_IPV6_ADDRESS)) {
  2016. af = sctp_get_af_specific(param_type2af(param.p->type));
  2017. af->from_addr_param(&addr, param.addr,
  2018. chunk->sctp_hdr->source, 0);
  2019. if (sctp_cmp_addr_exact(sctp_source(chunk), &addr))
  2020. src_match = 1;
  2021. }
  2022. if (!sctp_process_param(asoc, param, peer_addr, gfp))
  2023. goto clean_up;
  2024. }
  2025. /* source address of chunk may not match any valid address */
  2026. if (!src_match)
  2027. goto clean_up;
  2028. /* AUTH: After processing the parameters, make sure that we
  2029. * have all the required info to potentially do authentications.
  2030. */
  2031. if (asoc->peer.auth_capable && (!asoc->peer.peer_random ||
  2032. !asoc->peer.peer_hmacs))
  2033. asoc->peer.auth_capable = 0;
  2034. /* In a non-backward compatible mode, if the peer claims
  2035. * support for ADD-IP but not AUTH, the ADD-IP spec states
  2036. * that we MUST ABORT the association. Section 6. The section
  2037. * also give us an option to silently ignore the packet, which
  2038. * is what we'll do here.
  2039. */
  2040. if (!net->sctp.addip_noauth &&
  2041. (asoc->peer.asconf_capable && !asoc->peer.auth_capable)) {
  2042. asoc->peer.addip_disabled_mask |= (SCTP_PARAM_ADD_IP |
  2043. SCTP_PARAM_DEL_IP |
  2044. SCTP_PARAM_SET_PRIMARY);
  2045. asoc->peer.asconf_capable = 0;
  2046. goto clean_up;
  2047. }
  2048. /* Walk list of transports, removing transports in the UNKNOWN state. */
  2049. list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
  2050. transport = list_entry(pos, struct sctp_transport, transports);
  2051. if (transport->state == SCTP_UNKNOWN) {
  2052. sctp_assoc_rm_peer(asoc, transport);
  2053. }
  2054. }
  2055. /* The fixed INIT headers are always in network byte
  2056. * order.
  2057. */
  2058. asoc->peer.i.init_tag =
  2059. ntohl(peer_init->init_hdr.init_tag);
  2060. asoc->peer.i.a_rwnd =
  2061. ntohl(peer_init->init_hdr.a_rwnd);
  2062. asoc->peer.i.num_outbound_streams =
  2063. ntohs(peer_init->init_hdr.num_outbound_streams);
  2064. asoc->peer.i.num_inbound_streams =
  2065. ntohs(peer_init->init_hdr.num_inbound_streams);
  2066. asoc->peer.i.initial_tsn =
  2067. ntohl(peer_init->init_hdr.initial_tsn);
  2068. asoc->strreset_inseq = asoc->peer.i.initial_tsn;
  2069. /* Apply the upper bounds for output streams based on peer's
  2070. * number of inbound streams.
  2071. */
  2072. if (asoc->c.sinit_num_ostreams >
  2073. ntohs(peer_init->init_hdr.num_inbound_streams)) {
  2074. asoc->c.sinit_num_ostreams =
  2075. ntohs(peer_init->init_hdr.num_inbound_streams);
  2076. }
  2077. if (asoc->c.sinit_max_instreams >
  2078. ntohs(peer_init->init_hdr.num_outbound_streams)) {
  2079. asoc->c.sinit_max_instreams =
  2080. ntohs(peer_init->init_hdr.num_outbound_streams);
  2081. }
  2082. /* Copy Initiation tag from INIT to VT_peer in cookie. */
  2083. asoc->c.peer_vtag = asoc->peer.i.init_tag;
  2084. /* Peer Rwnd : Current calculated value of the peer's rwnd. */
  2085. asoc->peer.rwnd = asoc->peer.i.a_rwnd;
  2086. /* RFC 2960 7.2.1 The initial value of ssthresh MAY be arbitrarily
  2087. * high (for example, implementations MAY use the size of the receiver
  2088. * advertised window).
  2089. */
  2090. list_for_each_entry(transport, &asoc->peer.transport_addr_list,
  2091. transports) {
  2092. transport->ssthresh = asoc->peer.i.a_rwnd;
  2093. }
  2094. /* Set up the TSN tracking pieces. */
  2095. if (!sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_INITIAL,
  2096. asoc->peer.i.initial_tsn, gfp))
  2097. goto clean_up;
  2098. /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
  2099. *
  2100. * The stream sequence number in all the streams shall start
  2101. * from 0 when the association is established. Also, when the
  2102. * stream sequence number reaches the value 65535 the next
  2103. * stream sequence number shall be set to 0.
  2104. */
  2105. if (sctp_stream_init(&asoc->stream, asoc->c.sinit_num_ostreams,
  2106. asoc->c.sinit_max_instreams, gfp))
  2107. goto clean_up;
  2108. /* Update frag_point when stream_interleave may get changed. */
  2109. sctp_assoc_update_frag_point(asoc);
  2110. if (!asoc->temp && sctp_assoc_set_id(asoc, gfp))
  2111. goto clean_up;
  2112. /* ADDIP Section 4.1 ASCONF Chunk Procedures
  2113. *
  2114. * When an endpoint has an ASCONF signaled change to be sent to the
  2115. * remote endpoint it should do the following:
  2116. * ...
  2117. * A2) A serial number should be assigned to the Chunk. The serial
  2118. * number should be a monotonically increasing number. All serial
  2119. * numbers are defined to be initialized at the start of the
  2120. * association to the same value as the Initial TSN.
  2121. */
  2122. asoc->peer.addip_serial = asoc->peer.i.initial_tsn - 1;
  2123. return 1;
  2124. clean_up:
  2125. /* Release the transport structures. */
  2126. list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
  2127. transport = list_entry(pos, struct sctp_transport, transports);
  2128. if (transport->state != SCTP_ACTIVE)
  2129. sctp_assoc_rm_peer(asoc, transport);
  2130. }
  2131. nomem:
  2132. return 0;
  2133. }
  2134. /* Update asoc with the option described in param.
  2135. *
  2136. * RFC2960 3.3.2.1 Optional/Variable Length Parameters in INIT
  2137. *
  2138. * asoc is the association to update.
  2139. * param is the variable length parameter to use for update.
  2140. * cid tells us if this is an INIT, INIT ACK or COOKIE ECHO.
  2141. * If the current packet is an INIT we want to minimize the amount of
  2142. * work we do. In particular, we should not build transport
  2143. * structures for the addresses.
  2144. */
  2145. static int sctp_process_param(struct sctp_association *asoc,
  2146. union sctp_params param,
  2147. const union sctp_addr *peer_addr,
  2148. gfp_t gfp)
  2149. {
  2150. struct net *net = sock_net(asoc->base.sk);
  2151. struct sctp_endpoint *ep = asoc->ep;
  2152. union sctp_addr_param *addr_param;
  2153. struct sctp_transport *t;
  2154. enum sctp_scope scope;
  2155. union sctp_addr addr;
  2156. struct sctp_af *af;
  2157. int retval = 1, i;
  2158. u32 stale;
  2159. __u16 sat;
  2160. /* We maintain all INIT parameters in network byte order all the
  2161. * time. This allows us to not worry about whether the parameters
  2162. * came from a fresh INIT, and INIT ACK, or were stored in a cookie.
  2163. */
  2164. switch (param.p->type) {
  2165. case SCTP_PARAM_IPV6_ADDRESS:
  2166. if (PF_INET6 != asoc->base.sk->sk_family)
  2167. break;
  2168. goto do_addr_param;
  2169. case SCTP_PARAM_IPV4_ADDRESS:
  2170. /* v4 addresses are not allowed on v6-only socket */
  2171. if (ipv6_only_sock(asoc->base.sk))
  2172. break;
  2173. do_addr_param:
  2174. af = sctp_get_af_specific(param_type2af(param.p->type));
  2175. af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0);
  2176. scope = sctp_scope(peer_addr);
  2177. if (sctp_in_scope(net, &addr, scope))
  2178. if (!sctp_assoc_add_peer(asoc, &addr, gfp, SCTP_UNCONFIRMED))
  2179. return 0;
  2180. break;
  2181. case SCTP_PARAM_COOKIE_PRESERVATIVE:
  2182. if (!net->sctp.cookie_preserve_enable)
  2183. break;
  2184. stale = ntohl(param.life->lifespan_increment);
  2185. /* Suggested Cookie Life span increment's unit is msec,
  2186. * (1/1000sec).
  2187. */
  2188. asoc->cookie_life = ktime_add_ms(asoc->cookie_life, stale);
  2189. break;
  2190. case SCTP_PARAM_HOST_NAME_ADDRESS:
  2191. pr_debug("%s: unimplemented SCTP_HOST_NAME_ADDRESS\n", __func__);
  2192. break;
  2193. case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
  2194. /* Turn off the default values first so we'll know which
  2195. * ones are really set by the peer.
  2196. */
  2197. asoc->peer.ipv4_address = 0;
  2198. asoc->peer.ipv6_address = 0;
  2199. /* Assume that peer supports the address family
  2200. * by which it sends a packet.
  2201. */
  2202. if (peer_addr->sa.sa_family == AF_INET6)
  2203. asoc->peer.ipv6_address = 1;
  2204. else if (peer_addr->sa.sa_family == AF_INET)
  2205. asoc->peer.ipv4_address = 1;
  2206. /* Cycle through address types; avoid divide by 0. */
  2207. sat = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
  2208. if (sat)
  2209. sat /= sizeof(__u16);
  2210. for (i = 0; i < sat; ++i) {
  2211. switch (param.sat->types[i]) {
  2212. case SCTP_PARAM_IPV4_ADDRESS:
  2213. asoc->peer.ipv4_address = 1;
  2214. break;
  2215. case SCTP_PARAM_IPV6_ADDRESS:
  2216. if (PF_INET6 == asoc->base.sk->sk_family)
  2217. asoc->peer.ipv6_address = 1;
  2218. break;
  2219. case SCTP_PARAM_HOST_NAME_ADDRESS:
  2220. asoc->peer.hostname_address = 1;
  2221. break;
  2222. default: /* Just ignore anything else. */
  2223. break;
  2224. }
  2225. }
  2226. break;
  2227. case SCTP_PARAM_STATE_COOKIE:
  2228. asoc->peer.cookie_len =
  2229. ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
  2230. if (asoc->peer.cookie)
  2231. kfree(asoc->peer.cookie);
  2232. asoc->peer.cookie = kmemdup(param.cookie->body, asoc->peer.cookie_len, gfp);
  2233. if (!asoc->peer.cookie)
  2234. retval = 0;
  2235. break;
  2236. case SCTP_PARAM_HEARTBEAT_INFO:
  2237. /* Would be odd to receive, but it causes no problems. */
  2238. break;
  2239. case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
  2240. /* Rejected during verify stage. */
  2241. break;
  2242. case SCTP_PARAM_ECN_CAPABLE:
  2243. asoc->peer.ecn_capable = 1;
  2244. break;
  2245. case SCTP_PARAM_ADAPTATION_LAYER_IND:
  2246. asoc->peer.adaptation_ind = ntohl(param.aind->adaptation_ind);
  2247. break;
  2248. case SCTP_PARAM_SET_PRIMARY:
  2249. if (!net->sctp.addip_enable)
  2250. goto fall_through;
  2251. addr_param = param.v + sizeof(struct sctp_addip_param);
  2252. af = sctp_get_af_specific(param_type2af(addr_param->p.type));
  2253. if (af == NULL)
  2254. break;
  2255. af->from_addr_param(&addr, addr_param,
  2256. htons(asoc->peer.port), 0);
  2257. /* if the address is invalid, we can't process it.
  2258. * XXX: see spec for what to do.
  2259. */
  2260. if (!af->addr_valid(&addr, NULL, NULL))
  2261. break;
  2262. t = sctp_assoc_lookup_paddr(asoc, &addr);
  2263. if (!t)
  2264. break;
  2265. sctp_assoc_set_primary(asoc, t);
  2266. break;
  2267. case SCTP_PARAM_SUPPORTED_EXT:
  2268. sctp_process_ext_param(asoc, param);
  2269. break;
  2270. case SCTP_PARAM_FWD_TSN_SUPPORT:
  2271. if (asoc->prsctp_enable) {
  2272. asoc->peer.prsctp_capable = 1;
  2273. break;
  2274. }
  2275. /* Fall Through */
  2276. goto fall_through;
  2277. case SCTP_PARAM_RANDOM:
  2278. if (!ep->auth_enable)
  2279. goto fall_through;
  2280. /* Save peer's random parameter */
  2281. if (asoc->peer.peer_random)
  2282. kfree(asoc->peer.peer_random);
  2283. asoc->peer.peer_random = kmemdup(param.p,
  2284. ntohs(param.p->length), gfp);
  2285. if (!asoc->peer.peer_random) {
  2286. retval = 0;
  2287. break;
  2288. }
  2289. break;
  2290. case SCTP_PARAM_HMAC_ALGO:
  2291. if (!ep->auth_enable)
  2292. goto fall_through;
  2293. /* Save peer's HMAC list */
  2294. if (asoc->peer.peer_hmacs)
  2295. kfree(asoc->peer.peer_hmacs);
  2296. asoc->peer.peer_hmacs = kmemdup(param.p,
  2297. ntohs(param.p->length), gfp);
  2298. if (!asoc->peer.peer_hmacs) {
  2299. retval = 0;
  2300. break;
  2301. }
  2302. /* Set the default HMAC the peer requested*/
  2303. sctp_auth_asoc_set_default_hmac(asoc, param.hmac_algo);
  2304. break;
  2305. case SCTP_PARAM_CHUNKS:
  2306. if (!ep->auth_enable)
  2307. goto fall_through;
  2308. if (asoc->peer.peer_chunks)
  2309. kfree(asoc->peer.peer_chunks);
  2310. asoc->peer.peer_chunks = kmemdup(param.p,
  2311. ntohs(param.p->length), gfp);
  2312. if (!asoc->peer.peer_chunks)
  2313. retval = 0;
  2314. break;
  2315. fall_through:
  2316. default:
  2317. /* Any unrecognized parameters should have been caught
  2318. * and handled by sctp_verify_param() which should be
  2319. * called prior to this routine. Simply log the error
  2320. * here.
  2321. */
  2322. pr_debug("%s: ignoring param:%d for association:%p.\n",
  2323. __func__, ntohs(param.p->type), asoc);
  2324. break;
  2325. }
  2326. return retval;
  2327. }
  2328. /* Select a new verification tag. */
  2329. __u32 sctp_generate_tag(const struct sctp_endpoint *ep)
  2330. {
  2331. /* I believe that this random number generator complies with RFC1750.
  2332. * A tag of 0 is reserved for special cases (e.g. INIT).
  2333. */
  2334. __u32 x;
  2335. do {
  2336. get_random_bytes(&x, sizeof(__u32));
  2337. } while (x == 0);
  2338. return x;
  2339. }
  2340. /* Select an initial TSN to send during startup. */
  2341. __u32 sctp_generate_tsn(const struct sctp_endpoint *ep)
  2342. {
  2343. __u32 retval;
  2344. get_random_bytes(&retval, sizeof(__u32));
  2345. return retval;
  2346. }
  2347. /*
  2348. * ADDIP 3.1.1 Address Configuration Change Chunk (ASCONF)
  2349. * 0 1 2 3
  2350. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  2351. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2352. * | Type = 0xC1 | Chunk Flags | Chunk Length |
  2353. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2354. * | Serial Number |
  2355. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2356. * | Address Parameter |
  2357. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2358. * | ASCONF Parameter #1 |
  2359. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2360. * \ \
  2361. * / .... /
  2362. * \ \
  2363. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2364. * | ASCONF Parameter #N |
  2365. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2366. *
  2367. * Address Parameter and other parameter will not be wrapped in this function
  2368. */
  2369. static struct sctp_chunk *sctp_make_asconf(struct sctp_association *asoc,
  2370. union sctp_addr *addr,
  2371. int vparam_len)
  2372. {
  2373. struct sctp_addiphdr asconf;
  2374. struct sctp_chunk *retval;
  2375. int length = sizeof(asconf) + vparam_len;
  2376. union sctp_addr_param addrparam;
  2377. int addrlen;
  2378. struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
  2379. addrlen = af->to_addr_param(addr, &addrparam);
  2380. if (!addrlen)
  2381. return NULL;
  2382. length += addrlen;
  2383. /* Create the chunk. */
  2384. retval = sctp_make_control(asoc, SCTP_CID_ASCONF, 0, length,
  2385. GFP_ATOMIC);
  2386. if (!retval)
  2387. return NULL;
  2388. asconf.serial = htonl(asoc->addip_serial++);
  2389. retval->subh.addip_hdr =
  2390. sctp_addto_chunk(retval, sizeof(asconf), &asconf);
  2391. retval->param_hdr.v =
  2392. sctp_addto_chunk(retval, addrlen, &addrparam);
  2393. return retval;
  2394. }
  2395. /* ADDIP
  2396. * 3.2.1 Add IP Address
  2397. * 0 1 2 3
  2398. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  2399. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2400. * | Type = 0xC001 | Length = Variable |
  2401. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2402. * | ASCONF-Request Correlation ID |
  2403. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2404. * | Address Parameter |
  2405. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2406. *
  2407. * 3.2.2 Delete IP Address
  2408. * 0 1 2 3
  2409. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  2410. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2411. * | Type = 0xC002 | Length = Variable |
  2412. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2413. * | ASCONF-Request Correlation ID |
  2414. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2415. * | Address Parameter |
  2416. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2417. *
  2418. */
  2419. struct sctp_chunk *sctp_make_asconf_update_ip(struct sctp_association *asoc,
  2420. union sctp_addr *laddr,
  2421. struct sockaddr *addrs,
  2422. int addrcnt, __be16 flags)
  2423. {
  2424. union sctp_addr_param addr_param;
  2425. struct sctp_addip_param param;
  2426. int paramlen = sizeof(param);
  2427. struct sctp_chunk *retval;
  2428. int addr_param_len = 0;
  2429. union sctp_addr *addr;
  2430. int totallen = 0, i;
  2431. int del_pickup = 0;
  2432. struct sctp_af *af;
  2433. void *addr_buf;
  2434. /* Get total length of all the address parameters. */
  2435. addr_buf = addrs;
  2436. for (i = 0; i < addrcnt; i++) {
  2437. addr = addr_buf;
  2438. af = sctp_get_af_specific(addr->v4.sin_family);
  2439. addr_param_len = af->to_addr_param(addr, &addr_param);
  2440. totallen += paramlen;
  2441. totallen += addr_param_len;
  2442. addr_buf += af->sockaddr_len;
  2443. if (asoc->asconf_addr_del_pending && !del_pickup) {
  2444. /* reuse the parameter length from the same scope one */
  2445. totallen += paramlen;
  2446. totallen += addr_param_len;
  2447. del_pickup = 1;
  2448. pr_debug("%s: picked same-scope del_pending addr, "
  2449. "totallen for all addresses is %d\n",
  2450. __func__, totallen);
  2451. }
  2452. }
  2453. /* Create an asconf chunk with the required length. */
  2454. retval = sctp_make_asconf(asoc, laddr, totallen);
  2455. if (!retval)
  2456. return NULL;
  2457. /* Add the address parameters to the asconf chunk. */
  2458. addr_buf = addrs;
  2459. for (i = 0; i < addrcnt; i++) {
  2460. addr = addr_buf;
  2461. af = sctp_get_af_specific(addr->v4.sin_family);
  2462. addr_param_len = af->to_addr_param(addr, &addr_param);
  2463. param.param_hdr.type = flags;
  2464. param.param_hdr.length = htons(paramlen + addr_param_len);
  2465. param.crr_id = htonl(i);
  2466. sctp_addto_chunk(retval, paramlen, &param);
  2467. sctp_addto_chunk(retval, addr_param_len, &addr_param);
  2468. addr_buf += af->sockaddr_len;
  2469. }
  2470. if (flags == SCTP_PARAM_ADD_IP && del_pickup) {
  2471. addr = asoc->asconf_addr_del_pending;
  2472. af = sctp_get_af_specific(addr->v4.sin_family);
  2473. addr_param_len = af->to_addr_param(addr, &addr_param);
  2474. param.param_hdr.type = SCTP_PARAM_DEL_IP;
  2475. param.param_hdr.length = htons(paramlen + addr_param_len);
  2476. param.crr_id = htonl(i);
  2477. sctp_addto_chunk(retval, paramlen, &param);
  2478. sctp_addto_chunk(retval, addr_param_len, &addr_param);
  2479. }
  2480. return retval;
  2481. }
  2482. /* ADDIP
  2483. * 3.2.4 Set Primary IP Address
  2484. * 0 1 2 3
  2485. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  2486. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2487. * | Type =0xC004 | Length = Variable |
  2488. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2489. * | ASCONF-Request Correlation ID |
  2490. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2491. * | Address Parameter |
  2492. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2493. *
  2494. * Create an ASCONF chunk with Set Primary IP address parameter.
  2495. */
  2496. struct sctp_chunk *sctp_make_asconf_set_prim(struct sctp_association *asoc,
  2497. union sctp_addr *addr)
  2498. {
  2499. struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
  2500. union sctp_addr_param addrparam;
  2501. struct sctp_addip_param param;
  2502. struct sctp_chunk *retval;
  2503. int len = sizeof(param);
  2504. int addrlen;
  2505. addrlen = af->to_addr_param(addr, &addrparam);
  2506. if (!addrlen)
  2507. return NULL;
  2508. len += addrlen;
  2509. /* Create the chunk and make asconf header. */
  2510. retval = sctp_make_asconf(asoc, addr, len);
  2511. if (!retval)
  2512. return NULL;
  2513. param.param_hdr.type = SCTP_PARAM_SET_PRIMARY;
  2514. param.param_hdr.length = htons(len);
  2515. param.crr_id = 0;
  2516. sctp_addto_chunk(retval, sizeof(param), &param);
  2517. sctp_addto_chunk(retval, addrlen, &addrparam);
  2518. return retval;
  2519. }
  2520. /* ADDIP 3.1.2 Address Configuration Acknowledgement Chunk (ASCONF-ACK)
  2521. * 0 1 2 3
  2522. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  2523. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2524. * | Type = 0x80 | Chunk Flags | Chunk Length |
  2525. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2526. * | Serial Number |
  2527. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2528. * | ASCONF Parameter Response#1 |
  2529. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2530. * \ \
  2531. * / .... /
  2532. * \ \
  2533. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2534. * | ASCONF Parameter Response#N |
  2535. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2536. *
  2537. * Create an ASCONF_ACK chunk with enough space for the parameter responses.
  2538. */
  2539. static struct sctp_chunk *sctp_make_asconf_ack(const struct sctp_association *asoc,
  2540. __u32 serial, int vparam_len)
  2541. {
  2542. struct sctp_addiphdr asconf;
  2543. struct sctp_chunk *retval;
  2544. int length = sizeof(asconf) + vparam_len;
  2545. /* Create the chunk. */
  2546. retval = sctp_make_control(asoc, SCTP_CID_ASCONF_ACK, 0, length,
  2547. GFP_ATOMIC);
  2548. if (!retval)
  2549. return NULL;
  2550. asconf.serial = htonl(serial);
  2551. retval->subh.addip_hdr =
  2552. sctp_addto_chunk(retval, sizeof(asconf), &asconf);
  2553. return retval;
  2554. }
  2555. /* Add response parameters to an ASCONF_ACK chunk. */
  2556. static void sctp_add_asconf_response(struct sctp_chunk *chunk, __be32 crr_id,
  2557. __be16 err_code,
  2558. struct sctp_addip_param *asconf_param)
  2559. {
  2560. struct sctp_addip_param ack_param;
  2561. struct sctp_errhdr err_param;
  2562. int asconf_param_len = 0;
  2563. int err_param_len = 0;
  2564. __be16 response_type;
  2565. if (SCTP_ERROR_NO_ERROR == err_code) {
  2566. response_type = SCTP_PARAM_SUCCESS_REPORT;
  2567. } else {
  2568. response_type = SCTP_PARAM_ERR_CAUSE;
  2569. err_param_len = sizeof(err_param);
  2570. if (asconf_param)
  2571. asconf_param_len =
  2572. ntohs(asconf_param->param_hdr.length);
  2573. }
  2574. /* Add Success Indication or Error Cause Indication parameter. */
  2575. ack_param.param_hdr.type = response_type;
  2576. ack_param.param_hdr.length = htons(sizeof(ack_param) +
  2577. err_param_len +
  2578. asconf_param_len);
  2579. ack_param.crr_id = crr_id;
  2580. sctp_addto_chunk(chunk, sizeof(ack_param), &ack_param);
  2581. if (SCTP_ERROR_NO_ERROR == err_code)
  2582. return;
  2583. /* Add Error Cause parameter. */
  2584. err_param.cause = err_code;
  2585. err_param.length = htons(err_param_len + asconf_param_len);
  2586. sctp_addto_chunk(chunk, err_param_len, &err_param);
  2587. /* Add the failed TLV copied from ASCONF chunk. */
  2588. if (asconf_param)
  2589. sctp_addto_chunk(chunk, asconf_param_len, asconf_param);
  2590. }
  2591. /* Process a asconf parameter. */
  2592. static __be16 sctp_process_asconf_param(struct sctp_association *asoc,
  2593. struct sctp_chunk *asconf,
  2594. struct sctp_addip_param *asconf_param)
  2595. {
  2596. union sctp_addr_param *addr_param;
  2597. struct sctp_transport *peer;
  2598. union sctp_addr addr;
  2599. struct sctp_af *af;
  2600. addr_param = (void *)asconf_param + sizeof(*asconf_param);
  2601. if (asconf_param->param_hdr.type != SCTP_PARAM_ADD_IP &&
  2602. asconf_param->param_hdr.type != SCTP_PARAM_DEL_IP &&
  2603. asconf_param->param_hdr.type != SCTP_PARAM_SET_PRIMARY)
  2604. return SCTP_ERROR_UNKNOWN_PARAM;
  2605. switch (addr_param->p.type) {
  2606. case SCTP_PARAM_IPV6_ADDRESS:
  2607. if (!asoc->peer.ipv6_address)
  2608. return SCTP_ERROR_DNS_FAILED;
  2609. break;
  2610. case SCTP_PARAM_IPV4_ADDRESS:
  2611. if (!asoc->peer.ipv4_address)
  2612. return SCTP_ERROR_DNS_FAILED;
  2613. break;
  2614. default:
  2615. return SCTP_ERROR_DNS_FAILED;
  2616. }
  2617. af = sctp_get_af_specific(param_type2af(addr_param->p.type));
  2618. if (unlikely(!af))
  2619. return SCTP_ERROR_DNS_FAILED;
  2620. af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0);
  2621. /* ADDIP 4.2.1 This parameter MUST NOT contain a broadcast
  2622. * or multicast address.
  2623. * (note: wildcard is permitted and requires special handling so
  2624. * make sure we check for that)
  2625. */
  2626. if (!af->is_any(&addr) && !af->addr_valid(&addr, NULL, asconf->skb))
  2627. return SCTP_ERROR_DNS_FAILED;
  2628. switch (asconf_param->param_hdr.type) {
  2629. case SCTP_PARAM_ADD_IP:
  2630. /* Section 4.2.1:
  2631. * If the address 0.0.0.0 or ::0 is provided, the source
  2632. * address of the packet MUST be added.
  2633. */
  2634. if (af->is_any(&addr))
  2635. memcpy(&addr, &asconf->source, sizeof(addr));
  2636. if (security_sctp_bind_connect(asoc->ep->base.sk,
  2637. SCTP_PARAM_ADD_IP,
  2638. (struct sockaddr *)&addr,
  2639. af->sockaddr_len))
  2640. return SCTP_ERROR_REQ_REFUSED;
  2641. /* ADDIP 4.3 D9) If an endpoint receives an ADD IP address
  2642. * request and does not have the local resources to add this
  2643. * new address to the association, it MUST return an Error
  2644. * Cause TLV set to the new error code 'Operation Refused
  2645. * Due to Resource Shortage'.
  2646. */
  2647. peer = sctp_assoc_add_peer(asoc, &addr, GFP_ATOMIC, SCTP_UNCONFIRMED);
  2648. if (!peer)
  2649. return SCTP_ERROR_RSRC_LOW;
  2650. /* Start the heartbeat timer. */
  2651. sctp_transport_reset_hb_timer(peer);
  2652. asoc->new_transport = peer;
  2653. break;
  2654. case SCTP_PARAM_DEL_IP:
  2655. /* ADDIP 4.3 D7) If a request is received to delete the
  2656. * last remaining IP address of a peer endpoint, the receiver
  2657. * MUST send an Error Cause TLV with the error cause set to the
  2658. * new error code 'Request to Delete Last Remaining IP Address'.
  2659. */
  2660. if (asoc->peer.transport_count == 1)
  2661. return SCTP_ERROR_DEL_LAST_IP;
  2662. /* ADDIP 4.3 D8) If a request is received to delete an IP
  2663. * address which is also the source address of the IP packet
  2664. * which contained the ASCONF chunk, the receiver MUST reject
  2665. * this request. To reject the request the receiver MUST send
  2666. * an Error Cause TLV set to the new error code 'Request to
  2667. * Delete Source IP Address'
  2668. */
  2669. if (sctp_cmp_addr_exact(&asconf->source, &addr))
  2670. return SCTP_ERROR_DEL_SRC_IP;
  2671. /* Section 4.2.2
  2672. * If the address 0.0.0.0 or ::0 is provided, all
  2673. * addresses of the peer except the source address of the
  2674. * packet MUST be deleted.
  2675. */
  2676. if (af->is_any(&addr)) {
  2677. sctp_assoc_set_primary(asoc, asconf->transport);
  2678. sctp_assoc_del_nonprimary_peers(asoc,
  2679. asconf->transport);
  2680. return SCTP_ERROR_NO_ERROR;
  2681. }
  2682. /* If the address is not part of the association, the
  2683. * ASCONF-ACK with Error Cause Indication Parameter
  2684. * which including cause of Unresolvable Address should
  2685. * be sent.
  2686. */
  2687. peer = sctp_assoc_lookup_paddr(asoc, &addr);
  2688. if (!peer)
  2689. return SCTP_ERROR_DNS_FAILED;
  2690. sctp_assoc_rm_peer(asoc, peer);
  2691. break;
  2692. case SCTP_PARAM_SET_PRIMARY:
  2693. /* ADDIP Section 4.2.4
  2694. * If the address 0.0.0.0 or ::0 is provided, the receiver
  2695. * MAY mark the source address of the packet as its
  2696. * primary.
  2697. */
  2698. if (af->is_any(&addr))
  2699. memcpy(&addr.v4, sctp_source(asconf), sizeof(addr));
  2700. if (security_sctp_bind_connect(asoc->ep->base.sk,
  2701. SCTP_PARAM_SET_PRIMARY,
  2702. (struct sockaddr *)&addr,
  2703. af->sockaddr_len))
  2704. return SCTP_ERROR_REQ_REFUSED;
  2705. peer = sctp_assoc_lookup_paddr(asoc, &addr);
  2706. if (!peer)
  2707. return SCTP_ERROR_DNS_FAILED;
  2708. sctp_assoc_set_primary(asoc, peer);
  2709. break;
  2710. }
  2711. return SCTP_ERROR_NO_ERROR;
  2712. }
  2713. /* Verify the ASCONF packet before we process it. */
  2714. bool sctp_verify_asconf(const struct sctp_association *asoc,
  2715. struct sctp_chunk *chunk, bool addr_param_needed,
  2716. struct sctp_paramhdr **errp)
  2717. {
  2718. struct sctp_addip_chunk *addip;
  2719. bool addr_param_seen = false;
  2720. union sctp_params param;
  2721. addip = (struct sctp_addip_chunk *)chunk->chunk_hdr;
  2722. sctp_walk_params(param, addip, addip_hdr.params) {
  2723. size_t length = ntohs(param.p->length);
  2724. *errp = param.p;
  2725. switch (param.p->type) {
  2726. case SCTP_PARAM_ERR_CAUSE:
  2727. break;
  2728. case SCTP_PARAM_IPV4_ADDRESS:
  2729. if (length != sizeof(struct sctp_ipv4addr_param))
  2730. return false;
  2731. /* ensure there is only one addr param and it's in the
  2732. * beginning of addip_hdr params, or we reject it.
  2733. */
  2734. if (param.v != addip->addip_hdr.params)
  2735. return false;
  2736. addr_param_seen = true;
  2737. break;
  2738. case SCTP_PARAM_IPV6_ADDRESS:
  2739. if (length != sizeof(struct sctp_ipv6addr_param))
  2740. return false;
  2741. if (param.v != addip->addip_hdr.params)
  2742. return false;
  2743. addr_param_seen = true;
  2744. break;
  2745. case SCTP_PARAM_ADD_IP:
  2746. case SCTP_PARAM_DEL_IP:
  2747. case SCTP_PARAM_SET_PRIMARY:
  2748. /* In ASCONF chunks, these need to be first. */
  2749. if (addr_param_needed && !addr_param_seen)
  2750. return false;
  2751. length = ntohs(param.addip->param_hdr.length);
  2752. if (length < sizeof(struct sctp_addip_param) +
  2753. sizeof(**errp))
  2754. return false;
  2755. break;
  2756. case SCTP_PARAM_SUCCESS_REPORT:
  2757. case SCTP_PARAM_ADAPTATION_LAYER_IND:
  2758. if (length != sizeof(struct sctp_addip_param))
  2759. return false;
  2760. break;
  2761. default:
  2762. /* This is unkown to us, reject! */
  2763. return false;
  2764. }
  2765. }
  2766. /* Remaining sanity checks. */
  2767. if (addr_param_needed && !addr_param_seen)
  2768. return false;
  2769. if (!addr_param_needed && addr_param_seen)
  2770. return false;
  2771. if (param.v != chunk->chunk_end)
  2772. return false;
  2773. return true;
  2774. }
  2775. /* Process an incoming ASCONF chunk with the next expected serial no. and
  2776. * return an ASCONF_ACK chunk to be sent in response.
  2777. */
  2778. struct sctp_chunk *sctp_process_asconf(struct sctp_association *asoc,
  2779. struct sctp_chunk *asconf)
  2780. {
  2781. union sctp_addr_param *addr_param;
  2782. struct sctp_addip_chunk *addip;
  2783. struct sctp_chunk *asconf_ack;
  2784. bool all_param_pass = true;
  2785. struct sctp_addiphdr *hdr;
  2786. int length = 0, chunk_len;
  2787. union sctp_params param;
  2788. __be16 err_code;
  2789. __u32 serial;
  2790. addip = (struct sctp_addip_chunk *)asconf->chunk_hdr;
  2791. chunk_len = ntohs(asconf->chunk_hdr->length) -
  2792. sizeof(struct sctp_chunkhdr);
  2793. hdr = (struct sctp_addiphdr *)asconf->skb->data;
  2794. serial = ntohl(hdr->serial);
  2795. /* Skip the addiphdr and store a pointer to address parameter. */
  2796. length = sizeof(*hdr);
  2797. addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
  2798. chunk_len -= length;
  2799. /* Skip the address parameter and store a pointer to the first
  2800. * asconf parameter.
  2801. */
  2802. length = ntohs(addr_param->p.length);
  2803. chunk_len -= length;
  2804. /* create an ASCONF_ACK chunk.
  2805. * Based on the definitions of parameters, we know that the size of
  2806. * ASCONF_ACK parameters are less than or equal to the fourfold of ASCONF
  2807. * parameters.
  2808. */
  2809. asconf_ack = sctp_make_asconf_ack(asoc, serial, chunk_len * 4);
  2810. if (!asconf_ack)
  2811. goto done;
  2812. /* Process the TLVs contained within the ASCONF chunk. */
  2813. sctp_walk_params(param, addip, addip_hdr.params) {
  2814. /* Skip preceeding address parameters. */
  2815. if (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
  2816. param.p->type == SCTP_PARAM_IPV6_ADDRESS)
  2817. continue;
  2818. err_code = sctp_process_asconf_param(asoc, asconf,
  2819. param.addip);
  2820. /* ADDIP 4.1 A7)
  2821. * If an error response is received for a TLV parameter,
  2822. * all TLVs with no response before the failed TLV are
  2823. * considered successful if not reported. All TLVs after
  2824. * the failed response are considered unsuccessful unless
  2825. * a specific success indication is present for the parameter.
  2826. */
  2827. if (err_code != SCTP_ERROR_NO_ERROR)
  2828. all_param_pass = false;
  2829. if (!all_param_pass)
  2830. sctp_add_asconf_response(asconf_ack, param.addip->crr_id,
  2831. err_code, param.addip);
  2832. /* ADDIP 4.3 D11) When an endpoint receiving an ASCONF to add
  2833. * an IP address sends an 'Out of Resource' in its response, it
  2834. * MUST also fail any subsequent add or delete requests bundled
  2835. * in the ASCONF.
  2836. */
  2837. if (err_code == SCTP_ERROR_RSRC_LOW)
  2838. goto done;
  2839. }
  2840. done:
  2841. asoc->peer.addip_serial++;
  2842. /* If we are sending a new ASCONF_ACK hold a reference to it in assoc
  2843. * after freeing the reference to old asconf ack if any.
  2844. */
  2845. if (asconf_ack) {
  2846. sctp_chunk_hold(asconf_ack);
  2847. list_add_tail(&asconf_ack->transmitted_list,
  2848. &asoc->asconf_ack_list);
  2849. }
  2850. return asconf_ack;
  2851. }
  2852. /* Process a asconf parameter that is successfully acked. */
  2853. static void sctp_asconf_param_success(struct sctp_association *asoc,
  2854. struct sctp_addip_param *asconf_param)
  2855. {
  2856. struct sctp_bind_addr *bp = &asoc->base.bind_addr;
  2857. union sctp_addr_param *addr_param;
  2858. struct sctp_sockaddr_entry *saddr;
  2859. struct sctp_transport *transport;
  2860. union sctp_addr addr;
  2861. struct sctp_af *af;
  2862. addr_param = (void *)asconf_param + sizeof(*asconf_param);
  2863. /* We have checked the packet before, so we do not check again. */
  2864. af = sctp_get_af_specific(param_type2af(addr_param->p.type));
  2865. af->from_addr_param(&addr, addr_param, htons(bp->port), 0);
  2866. switch (asconf_param->param_hdr.type) {
  2867. case SCTP_PARAM_ADD_IP:
  2868. /* This is always done in BH context with a socket lock
  2869. * held, so the list can not change.
  2870. */
  2871. local_bh_disable();
  2872. list_for_each_entry(saddr, &bp->address_list, list) {
  2873. if (sctp_cmp_addr_exact(&saddr->a, &addr))
  2874. saddr->state = SCTP_ADDR_SRC;
  2875. }
  2876. local_bh_enable();
  2877. list_for_each_entry(transport, &asoc->peer.transport_addr_list,
  2878. transports) {
  2879. sctp_transport_dst_release(transport);
  2880. }
  2881. break;
  2882. case SCTP_PARAM_DEL_IP:
  2883. local_bh_disable();
  2884. sctp_del_bind_addr(bp, &addr);
  2885. if (asoc->asconf_addr_del_pending != NULL &&
  2886. sctp_cmp_addr_exact(asoc->asconf_addr_del_pending, &addr)) {
  2887. kfree(asoc->asconf_addr_del_pending);
  2888. asoc->asconf_addr_del_pending = NULL;
  2889. }
  2890. local_bh_enable();
  2891. list_for_each_entry(transport, &asoc->peer.transport_addr_list,
  2892. transports) {
  2893. sctp_transport_dst_release(transport);
  2894. }
  2895. break;
  2896. default:
  2897. break;
  2898. }
  2899. }
  2900. /* Get the corresponding ASCONF response error code from the ASCONF_ACK chunk
  2901. * for the given asconf parameter. If there is no response for this parameter,
  2902. * return the error code based on the third argument 'no_err'.
  2903. * ADDIP 4.1
  2904. * A7) If an error response is received for a TLV parameter, all TLVs with no
  2905. * response before the failed TLV are considered successful if not reported.
  2906. * All TLVs after the failed response are considered unsuccessful unless a
  2907. * specific success indication is present for the parameter.
  2908. */
  2909. static __be16 sctp_get_asconf_response(struct sctp_chunk *asconf_ack,
  2910. struct sctp_addip_param *asconf_param,
  2911. int no_err)
  2912. {
  2913. struct sctp_addip_param *asconf_ack_param;
  2914. struct sctp_errhdr *err_param;
  2915. int asconf_ack_len;
  2916. __be16 err_code;
  2917. int length;
  2918. if (no_err)
  2919. err_code = SCTP_ERROR_NO_ERROR;
  2920. else
  2921. err_code = SCTP_ERROR_REQ_REFUSED;
  2922. asconf_ack_len = ntohs(asconf_ack->chunk_hdr->length) -
  2923. sizeof(struct sctp_chunkhdr);
  2924. /* Skip the addiphdr from the asconf_ack chunk and store a pointer to
  2925. * the first asconf_ack parameter.
  2926. */
  2927. length = sizeof(struct sctp_addiphdr);
  2928. asconf_ack_param = (struct sctp_addip_param *)(asconf_ack->skb->data +
  2929. length);
  2930. asconf_ack_len -= length;
  2931. while (asconf_ack_len > 0) {
  2932. if (asconf_ack_param->crr_id == asconf_param->crr_id) {
  2933. switch (asconf_ack_param->param_hdr.type) {
  2934. case SCTP_PARAM_SUCCESS_REPORT:
  2935. return SCTP_ERROR_NO_ERROR;
  2936. case SCTP_PARAM_ERR_CAUSE:
  2937. length = sizeof(*asconf_ack_param);
  2938. err_param = (void *)asconf_ack_param + length;
  2939. asconf_ack_len -= length;
  2940. if (asconf_ack_len > 0)
  2941. return err_param->cause;
  2942. else
  2943. return SCTP_ERROR_INV_PARAM;
  2944. break;
  2945. default:
  2946. return SCTP_ERROR_INV_PARAM;
  2947. }
  2948. }
  2949. length = ntohs(asconf_ack_param->param_hdr.length);
  2950. asconf_ack_param = (void *)asconf_ack_param + length;
  2951. asconf_ack_len -= length;
  2952. }
  2953. return err_code;
  2954. }
  2955. /* Process an incoming ASCONF_ACK chunk against the cached last ASCONF chunk. */
  2956. int sctp_process_asconf_ack(struct sctp_association *asoc,
  2957. struct sctp_chunk *asconf_ack)
  2958. {
  2959. struct sctp_chunk *asconf = asoc->addip_last_asconf;
  2960. struct sctp_addip_param *asconf_param;
  2961. __be16 err_code = SCTP_ERROR_NO_ERROR;
  2962. union sctp_addr_param *addr_param;
  2963. int asconf_len = asconf->skb->len;
  2964. int all_param_pass = 0;
  2965. int length = 0;
  2966. int no_err = 1;
  2967. int retval = 0;
  2968. /* Skip the chunkhdr and addiphdr from the last asconf sent and store
  2969. * a pointer to address parameter.
  2970. */
  2971. length = sizeof(struct sctp_addip_chunk);
  2972. addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
  2973. asconf_len -= length;
  2974. /* Skip the address parameter in the last asconf sent and store a
  2975. * pointer to the first asconf parameter.
  2976. */
  2977. length = ntohs(addr_param->p.length);
  2978. asconf_param = (void *)addr_param + length;
  2979. asconf_len -= length;
  2980. /* ADDIP 4.1
  2981. * A8) If there is no response(s) to specific TLV parameter(s), and no
  2982. * failures are indicated, then all request(s) are considered
  2983. * successful.
  2984. */
  2985. if (asconf_ack->skb->len == sizeof(struct sctp_addiphdr))
  2986. all_param_pass = 1;
  2987. /* Process the TLVs contained in the last sent ASCONF chunk. */
  2988. while (asconf_len > 0) {
  2989. if (all_param_pass)
  2990. err_code = SCTP_ERROR_NO_ERROR;
  2991. else {
  2992. err_code = sctp_get_asconf_response(asconf_ack,
  2993. asconf_param,
  2994. no_err);
  2995. if (no_err && (SCTP_ERROR_NO_ERROR != err_code))
  2996. no_err = 0;
  2997. }
  2998. switch (err_code) {
  2999. case SCTP_ERROR_NO_ERROR:
  3000. sctp_asconf_param_success(asoc, asconf_param);
  3001. break;
  3002. case SCTP_ERROR_RSRC_LOW:
  3003. retval = 1;
  3004. break;
  3005. case SCTP_ERROR_UNKNOWN_PARAM:
  3006. /* Disable sending this type of asconf parameter in
  3007. * future.
  3008. */
  3009. asoc->peer.addip_disabled_mask |=
  3010. asconf_param->param_hdr.type;
  3011. break;
  3012. case SCTP_ERROR_REQ_REFUSED:
  3013. case SCTP_ERROR_DEL_LAST_IP:
  3014. case SCTP_ERROR_DEL_SRC_IP:
  3015. default:
  3016. break;
  3017. }
  3018. /* Skip the processed asconf parameter and move to the next
  3019. * one.
  3020. */
  3021. length = ntohs(asconf_param->param_hdr.length);
  3022. asconf_param = (void *)asconf_param + length;
  3023. asconf_len -= length;
  3024. }
  3025. if (no_err && asoc->src_out_of_asoc_ok) {
  3026. asoc->src_out_of_asoc_ok = 0;
  3027. sctp_transport_immediate_rtx(asoc->peer.primary_path);
  3028. }
  3029. /* Free the cached last sent asconf chunk. */
  3030. list_del_init(&asconf->transmitted_list);
  3031. sctp_chunk_free(asconf);
  3032. asoc->addip_last_asconf = NULL;
  3033. return retval;
  3034. }
  3035. /* Make a FWD TSN chunk. */
  3036. struct sctp_chunk *sctp_make_fwdtsn(const struct sctp_association *asoc,
  3037. __u32 new_cum_tsn, size_t nstreams,
  3038. struct sctp_fwdtsn_skip *skiplist)
  3039. {
  3040. struct sctp_chunk *retval = NULL;
  3041. struct sctp_fwdtsn_hdr ftsn_hdr;
  3042. struct sctp_fwdtsn_skip skip;
  3043. size_t hint;
  3044. int i;
  3045. hint = (nstreams + 1) * sizeof(__u32);
  3046. retval = sctp_make_control(asoc, SCTP_CID_FWD_TSN, 0, hint, GFP_ATOMIC);
  3047. if (!retval)
  3048. return NULL;
  3049. ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
  3050. retval->subh.fwdtsn_hdr =
  3051. sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
  3052. for (i = 0; i < nstreams; i++) {
  3053. skip.stream = skiplist[i].stream;
  3054. skip.ssn = skiplist[i].ssn;
  3055. sctp_addto_chunk(retval, sizeof(skip), &skip);
  3056. }
  3057. return retval;
  3058. }
  3059. struct sctp_chunk *sctp_make_ifwdtsn(const struct sctp_association *asoc,
  3060. __u32 new_cum_tsn, size_t nstreams,
  3061. struct sctp_ifwdtsn_skip *skiplist)
  3062. {
  3063. struct sctp_chunk *retval = NULL;
  3064. struct sctp_ifwdtsn_hdr ftsn_hdr;
  3065. size_t hint;
  3066. hint = (nstreams + 1) * sizeof(__u32);
  3067. retval = sctp_make_control(asoc, SCTP_CID_I_FWD_TSN, 0, hint,
  3068. GFP_ATOMIC);
  3069. if (!retval)
  3070. return NULL;
  3071. ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
  3072. retval->subh.ifwdtsn_hdr =
  3073. sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
  3074. sctp_addto_chunk(retval, nstreams * sizeof(skiplist[0]), skiplist);
  3075. return retval;
  3076. }
  3077. /* RE-CONFIG 3.1 (RE-CONFIG chunk)
  3078. * 0 1 2 3
  3079. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  3080. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3081. * | Type = 130 | Chunk Flags | Chunk Length |
  3082. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3083. * \ \
  3084. * / Re-configuration Parameter /
  3085. * \ \
  3086. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3087. * \ \
  3088. * / Re-configuration Parameter (optional) /
  3089. * \ \
  3090. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3091. */
  3092. static struct sctp_chunk *sctp_make_reconf(const struct sctp_association *asoc,
  3093. int length)
  3094. {
  3095. struct sctp_reconf_chunk *reconf;
  3096. struct sctp_chunk *retval;
  3097. retval = sctp_make_control(asoc, SCTP_CID_RECONF, 0, length,
  3098. GFP_ATOMIC);
  3099. if (!retval)
  3100. return NULL;
  3101. reconf = (struct sctp_reconf_chunk *)retval->chunk_hdr;
  3102. retval->param_hdr.v = reconf->params;
  3103. return retval;
  3104. }
  3105. /* RE-CONFIG 4.1 (STREAM OUT RESET)
  3106. * 0 1 2 3
  3107. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  3108. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3109. * | Parameter Type = 13 | Parameter Length = 16 + 2 * N |
  3110. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3111. * | Re-configuration Request Sequence Number |
  3112. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3113. * | Re-configuration Response Sequence Number |
  3114. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3115. * | Sender's Last Assigned TSN |
  3116. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3117. * | Stream Number 1 (optional) | Stream Number 2 (optional) |
  3118. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3119. * / ...... /
  3120. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3121. * | Stream Number N-1 (optional) | Stream Number N (optional) |
  3122. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3123. *
  3124. * RE-CONFIG 4.2 (STREAM IN RESET)
  3125. * 0 1 2 3
  3126. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  3127. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3128. * | Parameter Type = 14 | Parameter Length = 8 + 2 * N |
  3129. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3130. * | Re-configuration Request Sequence Number |
  3131. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3132. * | Stream Number 1 (optional) | Stream Number 2 (optional) |
  3133. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3134. * / ...... /
  3135. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3136. * | Stream Number N-1 (optional) | Stream Number N (optional) |
  3137. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3138. */
  3139. struct sctp_chunk *sctp_make_strreset_req(
  3140. const struct sctp_association *asoc,
  3141. __u16 stream_num, __be16 *stream_list,
  3142. bool out, bool in)
  3143. {
  3144. __u16 stream_len = stream_num * sizeof(__u16);
  3145. struct sctp_strreset_outreq outreq;
  3146. struct sctp_strreset_inreq inreq;
  3147. struct sctp_chunk *retval;
  3148. __u16 outlen, inlen;
  3149. outlen = (sizeof(outreq) + stream_len) * out;
  3150. inlen = (sizeof(inreq) + stream_len) * in;
  3151. retval = sctp_make_reconf(asoc, outlen + inlen);
  3152. if (!retval)
  3153. return NULL;
  3154. if (outlen) {
  3155. outreq.param_hdr.type = SCTP_PARAM_RESET_OUT_REQUEST;
  3156. outreq.param_hdr.length = htons(outlen);
  3157. outreq.request_seq = htonl(asoc->strreset_outseq);
  3158. outreq.response_seq = htonl(asoc->strreset_inseq - 1);
  3159. outreq.send_reset_at_tsn = htonl(asoc->next_tsn - 1);
  3160. sctp_addto_chunk(retval, sizeof(outreq), &outreq);
  3161. if (stream_len)
  3162. sctp_addto_chunk(retval, stream_len, stream_list);
  3163. }
  3164. if (inlen) {
  3165. inreq.param_hdr.type = SCTP_PARAM_RESET_IN_REQUEST;
  3166. inreq.param_hdr.length = htons(inlen);
  3167. inreq.request_seq = htonl(asoc->strreset_outseq + out);
  3168. sctp_addto_chunk(retval, sizeof(inreq), &inreq);
  3169. if (stream_len)
  3170. sctp_addto_chunk(retval, stream_len, stream_list);
  3171. }
  3172. return retval;
  3173. }
  3174. /* RE-CONFIG 4.3 (SSN/TSN RESET ALL)
  3175. * 0 1 2 3
  3176. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  3177. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3178. * | Parameter Type = 15 | Parameter Length = 8 |
  3179. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3180. * | Re-configuration Request Sequence Number |
  3181. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3182. */
  3183. struct sctp_chunk *sctp_make_strreset_tsnreq(
  3184. const struct sctp_association *asoc)
  3185. {
  3186. struct sctp_strreset_tsnreq tsnreq;
  3187. __u16 length = sizeof(tsnreq);
  3188. struct sctp_chunk *retval;
  3189. retval = sctp_make_reconf(asoc, length);
  3190. if (!retval)
  3191. return NULL;
  3192. tsnreq.param_hdr.type = SCTP_PARAM_RESET_TSN_REQUEST;
  3193. tsnreq.param_hdr.length = htons(length);
  3194. tsnreq.request_seq = htonl(asoc->strreset_outseq);
  3195. sctp_addto_chunk(retval, sizeof(tsnreq), &tsnreq);
  3196. return retval;
  3197. }
  3198. /* RE-CONFIG 4.5/4.6 (ADD STREAM)
  3199. * 0 1 2 3
  3200. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  3201. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3202. * | Parameter Type = 17 | Parameter Length = 12 |
  3203. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3204. * | Re-configuration Request Sequence Number |
  3205. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3206. * | Number of new streams | Reserved |
  3207. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3208. */
  3209. struct sctp_chunk *sctp_make_strreset_addstrm(
  3210. const struct sctp_association *asoc,
  3211. __u16 out, __u16 in)
  3212. {
  3213. struct sctp_strreset_addstrm addstrm;
  3214. __u16 size = sizeof(addstrm);
  3215. struct sctp_chunk *retval;
  3216. retval = sctp_make_reconf(asoc, (!!out + !!in) * size);
  3217. if (!retval)
  3218. return NULL;
  3219. if (out) {
  3220. addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_OUT_STREAMS;
  3221. addstrm.param_hdr.length = htons(size);
  3222. addstrm.number_of_streams = htons(out);
  3223. addstrm.request_seq = htonl(asoc->strreset_outseq);
  3224. addstrm.reserved = 0;
  3225. sctp_addto_chunk(retval, size, &addstrm);
  3226. }
  3227. if (in) {
  3228. addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_IN_STREAMS;
  3229. addstrm.param_hdr.length = htons(size);
  3230. addstrm.number_of_streams = htons(in);
  3231. addstrm.request_seq = htonl(asoc->strreset_outseq + !!out);
  3232. addstrm.reserved = 0;
  3233. sctp_addto_chunk(retval, size, &addstrm);
  3234. }
  3235. return retval;
  3236. }
  3237. /* RE-CONFIG 4.4 (RESP)
  3238. * 0 1 2 3
  3239. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  3240. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3241. * | Parameter Type = 16 | Parameter Length |
  3242. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3243. * | Re-configuration Response Sequence Number |
  3244. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3245. * | Result |
  3246. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3247. */
  3248. struct sctp_chunk *sctp_make_strreset_resp(const struct sctp_association *asoc,
  3249. __u32 result, __u32 sn)
  3250. {
  3251. struct sctp_strreset_resp resp;
  3252. __u16 length = sizeof(resp);
  3253. struct sctp_chunk *retval;
  3254. retval = sctp_make_reconf(asoc, length);
  3255. if (!retval)
  3256. return NULL;
  3257. resp.param_hdr.type = SCTP_PARAM_RESET_RESPONSE;
  3258. resp.param_hdr.length = htons(length);
  3259. resp.response_seq = htonl(sn);
  3260. resp.result = htonl(result);
  3261. sctp_addto_chunk(retval, sizeof(resp), &resp);
  3262. return retval;
  3263. }
  3264. /* RE-CONFIG 4.4 OPTIONAL (TSNRESP)
  3265. * 0 1 2 3
  3266. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  3267. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3268. * | Parameter Type = 16 | Parameter Length |
  3269. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3270. * | Re-configuration Response Sequence Number |
  3271. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3272. * | Result |
  3273. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3274. * | Sender's Next TSN (optional) |
  3275. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3276. * | Receiver's Next TSN (optional) |
  3277. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  3278. */
  3279. struct sctp_chunk *sctp_make_strreset_tsnresp(struct sctp_association *asoc,
  3280. __u32 result, __u32 sn,
  3281. __u32 sender_tsn,
  3282. __u32 receiver_tsn)
  3283. {
  3284. struct sctp_strreset_resptsn tsnresp;
  3285. __u16 length = sizeof(tsnresp);
  3286. struct sctp_chunk *retval;
  3287. retval = sctp_make_reconf(asoc, length);
  3288. if (!retval)
  3289. return NULL;
  3290. tsnresp.param_hdr.type = SCTP_PARAM_RESET_RESPONSE;
  3291. tsnresp.param_hdr.length = htons(length);
  3292. tsnresp.response_seq = htonl(sn);
  3293. tsnresp.result = htonl(result);
  3294. tsnresp.senders_next_tsn = htonl(sender_tsn);
  3295. tsnresp.receivers_next_tsn = htonl(receiver_tsn);
  3296. sctp_addto_chunk(retval, sizeof(tsnresp), &tsnresp);
  3297. return retval;
  3298. }
  3299. bool sctp_verify_reconf(const struct sctp_association *asoc,
  3300. struct sctp_chunk *chunk,
  3301. struct sctp_paramhdr **errp)
  3302. {
  3303. struct sctp_reconf_chunk *hdr;
  3304. union sctp_params param;
  3305. __be16 last = 0;
  3306. __u16 cnt = 0;
  3307. hdr = (struct sctp_reconf_chunk *)chunk->chunk_hdr;
  3308. sctp_walk_params(param, hdr, params) {
  3309. __u16 length = ntohs(param.p->length);
  3310. *errp = param.p;
  3311. if (cnt++ > 2)
  3312. return false;
  3313. switch (param.p->type) {
  3314. case SCTP_PARAM_RESET_OUT_REQUEST:
  3315. if (length < sizeof(struct sctp_strreset_outreq) ||
  3316. (last && last != SCTP_PARAM_RESET_RESPONSE &&
  3317. last != SCTP_PARAM_RESET_IN_REQUEST))
  3318. return false;
  3319. break;
  3320. case SCTP_PARAM_RESET_IN_REQUEST:
  3321. if (length < sizeof(struct sctp_strreset_inreq) ||
  3322. (last && last != SCTP_PARAM_RESET_OUT_REQUEST))
  3323. return false;
  3324. break;
  3325. case SCTP_PARAM_RESET_RESPONSE:
  3326. if ((length != sizeof(struct sctp_strreset_resp) &&
  3327. length != sizeof(struct sctp_strreset_resptsn)) ||
  3328. (last && last != SCTP_PARAM_RESET_RESPONSE &&
  3329. last != SCTP_PARAM_RESET_OUT_REQUEST))
  3330. return false;
  3331. break;
  3332. case SCTP_PARAM_RESET_TSN_REQUEST:
  3333. if (length !=
  3334. sizeof(struct sctp_strreset_tsnreq) || last)
  3335. return false;
  3336. break;
  3337. case SCTP_PARAM_RESET_ADD_IN_STREAMS:
  3338. if (length != sizeof(struct sctp_strreset_addstrm) ||
  3339. (last && last != SCTP_PARAM_RESET_ADD_OUT_STREAMS))
  3340. return false;
  3341. break;
  3342. case SCTP_PARAM_RESET_ADD_OUT_STREAMS:
  3343. if (length != sizeof(struct sctp_strreset_addstrm) ||
  3344. (last && last != SCTP_PARAM_RESET_ADD_IN_STREAMS))
  3345. return false;
  3346. break;
  3347. default:
  3348. return false;
  3349. }
  3350. last = param.p->type;
  3351. }
  3352. return true;
  3353. }