link.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133
  1. /*
  2. * net/tipc/link.c: TIPC link code
  3. *
  4. * Copyright (c) 1996-2007, 2012-2016, Ericsson AB
  5. * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the names of the copyright holders nor the names of its
  17. * contributors may be used to endorse or promote products derived from
  18. * this software without specific prior written permission.
  19. *
  20. * Alternatively, this software may be distributed under the terms of the
  21. * GNU General Public License ("GPL") version 2 as published by the Free
  22. * Software Foundation.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  28. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  30. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  31. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  32. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  33. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  34. * POSSIBILITY OF SUCH DAMAGE.
  35. */
  36. #include "core.h"
  37. #include "subscr.h"
  38. #include "link.h"
  39. #include "bcast.h"
  40. #include "socket.h"
  41. #include "name_distr.h"
  42. #include "discover.h"
  43. #include "netlink.h"
  44. #include "monitor.h"
  45. #include <linux/pkt_sched.h>
  46. struct tipc_stats {
  47. u32 sent_pkts;
  48. u32 recv_pkts;
  49. u32 sent_states;
  50. u32 recv_states;
  51. u32 sent_probes;
  52. u32 recv_probes;
  53. u32 sent_nacks;
  54. u32 recv_nacks;
  55. u32 sent_acks;
  56. u32 sent_bundled;
  57. u32 sent_bundles;
  58. u32 recv_bundled;
  59. u32 recv_bundles;
  60. u32 retransmitted;
  61. u32 sent_fragmented;
  62. u32 sent_fragments;
  63. u32 recv_fragmented;
  64. u32 recv_fragments;
  65. u32 link_congs; /* # port sends blocked by congestion */
  66. u32 deferred_recv;
  67. u32 duplicates;
  68. u32 max_queue_sz; /* send queue size high water mark */
  69. u32 accu_queue_sz; /* used for send queue size profiling */
  70. u32 queue_sz_counts; /* used for send queue size profiling */
  71. u32 msg_length_counts; /* used for message length profiling */
  72. u32 msg_lengths_total; /* used for message length profiling */
  73. u32 msg_length_profile[7]; /* used for msg. length profiling */
  74. };
  75. /**
  76. * struct tipc_link - TIPC link data structure
  77. * @addr: network address of link's peer node
  78. * @name: link name character string
  79. * @media_addr: media address to use when sending messages over link
  80. * @timer: link timer
  81. * @net: pointer to namespace struct
  82. * @refcnt: reference counter for permanent references (owner node & timer)
  83. * @peer_session: link session # being used by peer end of link
  84. * @peer_bearer_id: bearer id used by link's peer endpoint
  85. * @bearer_id: local bearer id used by link
  86. * @tolerance: minimum link continuity loss needed to reset link [in ms]
  87. * @abort_limit: # of unacknowledged continuity probes needed to reset link
  88. * @state: current state of link FSM
  89. * @peer_caps: bitmap describing capabilities of peer node
  90. * @silent_intv_cnt: # of timer intervals without any reception from peer
  91. * @proto_msg: template for control messages generated by link
  92. * @pmsg: convenience pointer to "proto_msg" field
  93. * @priority: current link priority
  94. * @net_plane: current link network plane ('A' through 'H')
  95. * @mon_state: cookie with information needed by link monitor
  96. * @backlog_limit: backlog queue congestion thresholds (indexed by importance)
  97. * @exp_msg_count: # of tunnelled messages expected during link changeover
  98. * @reset_rcv_checkpt: seq # of last acknowledged message at time of link reset
  99. * @mtu: current maximum packet size for this link
  100. * @advertised_mtu: advertised own mtu when link is being established
  101. * @transmitq: queue for sent, non-acked messages
  102. * @backlogq: queue for messages waiting to be sent
  103. * @snt_nxt: next sequence number to use for outbound messages
  104. * @last_retransmitted: sequence number of most recently retransmitted message
  105. * @stale_count: # of identical retransmit requests made by peer
  106. * @ackers: # of peers that needs to ack each packet before it can be released
  107. * @acked: # last packet acked by a certain peer. Used for broadcast.
  108. * @rcv_nxt: next sequence number to expect for inbound messages
  109. * @deferred_queue: deferred queue saved OOS b'cast message received from node
  110. * @unacked_window: # of inbound messages rx'd without ack'ing back to peer
  111. * @inputq: buffer queue for messages to be delivered upwards
  112. * @namedq: buffer queue for name table messages to be delivered upwards
  113. * @next_out: ptr to first unsent outbound message in queue
  114. * @wakeupq: linked list of wakeup msgs waiting for link congestion to abate
  115. * @long_msg_seq_no: next identifier to use for outbound fragmented messages
  116. * @reasm_buf: head of partially reassembled inbound message fragments
  117. * @bc_rcvr: marks that this is a broadcast receiver link
  118. * @stats: collects statistics regarding link activity
  119. */
  120. struct tipc_link {
  121. u32 addr;
  122. char name[TIPC_MAX_LINK_NAME];
  123. struct net *net;
  124. /* Management and link supervision data */
  125. u32 peer_session;
  126. u32 session;
  127. u32 peer_bearer_id;
  128. u32 bearer_id;
  129. u32 tolerance;
  130. u32 abort_limit;
  131. u32 state;
  132. u16 peer_caps;
  133. bool active;
  134. u32 silent_intv_cnt;
  135. char if_name[TIPC_MAX_IF_NAME];
  136. u32 priority;
  137. char net_plane;
  138. struct tipc_mon_state mon_state;
  139. u16 rst_cnt;
  140. /* Failover/synch */
  141. u16 drop_point;
  142. struct sk_buff *failover_reasm_skb;
  143. /* Max packet negotiation */
  144. u16 mtu;
  145. u16 advertised_mtu;
  146. /* Sending */
  147. struct sk_buff_head transmq;
  148. struct sk_buff_head backlogq;
  149. struct {
  150. u16 len;
  151. u16 limit;
  152. } backlog[5];
  153. u16 snd_nxt;
  154. u16 last_retransm;
  155. u16 window;
  156. u32 stale_count;
  157. /* Reception */
  158. u16 rcv_nxt;
  159. u32 rcv_unacked;
  160. struct sk_buff_head deferdq;
  161. struct sk_buff_head *inputq;
  162. struct sk_buff_head *namedq;
  163. /* Congestion handling */
  164. struct sk_buff_head wakeupq;
  165. /* Fragmentation/reassembly */
  166. struct sk_buff *reasm_buf;
  167. /* Broadcast */
  168. u16 ackers;
  169. u16 acked;
  170. struct tipc_link *bc_rcvlink;
  171. struct tipc_link *bc_sndlink;
  172. unsigned long prev_retr;
  173. u16 prev_from;
  174. u16 prev_to;
  175. u8 nack_state;
  176. bool bc_peer_is_up;
  177. /* Statistics */
  178. struct tipc_stats stats;
  179. };
  180. /*
  181. * Error message prefixes
  182. */
  183. static const char *link_co_err = "Link tunneling error, ";
  184. static const char *link_rst_msg = "Resetting link ";
  185. /* Send states for broadcast NACKs
  186. */
  187. enum {
  188. BC_NACK_SND_CONDITIONAL,
  189. BC_NACK_SND_UNCONDITIONAL,
  190. BC_NACK_SND_SUPPRESS,
  191. };
  192. #define TIPC_BC_RETR_LIMIT 10 /* [ms] */
  193. /*
  194. * Interval between NACKs when packets arrive out of order
  195. */
  196. #define TIPC_NACK_INTV (TIPC_MIN_LINK_WIN * 2)
  197. /* Wildcard value for link session numbers. When it is known that
  198. * peer endpoint is down, any session number must be accepted.
  199. */
  200. #define ANY_SESSION 0x10000
  201. /* Link FSM states:
  202. */
  203. enum {
  204. LINK_ESTABLISHED = 0xe,
  205. LINK_ESTABLISHING = 0xe << 4,
  206. LINK_RESET = 0x1 << 8,
  207. LINK_RESETTING = 0x2 << 12,
  208. LINK_PEER_RESET = 0xd << 16,
  209. LINK_FAILINGOVER = 0xf << 20,
  210. LINK_SYNCHING = 0xc << 24
  211. };
  212. /* Link FSM state checking routines
  213. */
  214. static int link_is_up(struct tipc_link *l)
  215. {
  216. return l->state & (LINK_ESTABLISHED | LINK_SYNCHING);
  217. }
  218. static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
  219. struct sk_buff_head *xmitq);
  220. static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
  221. u16 rcvgap, int tolerance, int priority,
  222. struct sk_buff_head *xmitq);
  223. static void link_print(struct tipc_link *l, const char *str);
  224. static int tipc_link_build_nack_msg(struct tipc_link *l,
  225. struct sk_buff_head *xmitq);
  226. static void tipc_link_build_bc_init_msg(struct tipc_link *l,
  227. struct sk_buff_head *xmitq);
  228. static bool tipc_link_release_pkts(struct tipc_link *l, u16 to);
  229. /*
  230. * Simple non-static link routines (i.e. referenced outside this file)
  231. */
  232. bool tipc_link_is_up(struct tipc_link *l)
  233. {
  234. return link_is_up(l);
  235. }
  236. bool tipc_link_peer_is_down(struct tipc_link *l)
  237. {
  238. return l->state == LINK_PEER_RESET;
  239. }
  240. bool tipc_link_is_reset(struct tipc_link *l)
  241. {
  242. return l->state & (LINK_RESET | LINK_FAILINGOVER | LINK_ESTABLISHING);
  243. }
  244. bool tipc_link_is_establishing(struct tipc_link *l)
  245. {
  246. return l->state == LINK_ESTABLISHING;
  247. }
  248. bool tipc_link_is_synching(struct tipc_link *l)
  249. {
  250. return l->state == LINK_SYNCHING;
  251. }
  252. bool tipc_link_is_failingover(struct tipc_link *l)
  253. {
  254. return l->state == LINK_FAILINGOVER;
  255. }
  256. bool tipc_link_is_blocked(struct tipc_link *l)
  257. {
  258. return l->state & (LINK_RESETTING | LINK_PEER_RESET | LINK_FAILINGOVER);
  259. }
  260. static bool link_is_bc_sndlink(struct tipc_link *l)
  261. {
  262. return !l->bc_sndlink;
  263. }
  264. static bool link_is_bc_rcvlink(struct tipc_link *l)
  265. {
  266. return ((l->bc_rcvlink == l) && !link_is_bc_sndlink(l));
  267. }
  268. int tipc_link_is_active(struct tipc_link *l)
  269. {
  270. return l->active;
  271. }
  272. void tipc_link_set_active(struct tipc_link *l, bool active)
  273. {
  274. l->active = active;
  275. }
  276. u32 tipc_link_id(struct tipc_link *l)
  277. {
  278. return l->peer_bearer_id << 16 | l->bearer_id;
  279. }
  280. int tipc_link_window(struct tipc_link *l)
  281. {
  282. return l->window;
  283. }
  284. int tipc_link_prio(struct tipc_link *l)
  285. {
  286. return l->priority;
  287. }
  288. unsigned long tipc_link_tolerance(struct tipc_link *l)
  289. {
  290. return l->tolerance;
  291. }
  292. struct sk_buff_head *tipc_link_inputq(struct tipc_link *l)
  293. {
  294. return l->inputq;
  295. }
  296. char tipc_link_plane(struct tipc_link *l)
  297. {
  298. return l->net_plane;
  299. }
  300. void tipc_link_add_bc_peer(struct tipc_link *snd_l,
  301. struct tipc_link *uc_l,
  302. struct sk_buff_head *xmitq)
  303. {
  304. struct tipc_link *rcv_l = uc_l->bc_rcvlink;
  305. snd_l->ackers++;
  306. rcv_l->acked = snd_l->snd_nxt - 1;
  307. snd_l->state = LINK_ESTABLISHED;
  308. tipc_link_build_bc_init_msg(uc_l, xmitq);
  309. }
  310. void tipc_link_remove_bc_peer(struct tipc_link *snd_l,
  311. struct tipc_link *rcv_l,
  312. struct sk_buff_head *xmitq)
  313. {
  314. u16 ack = snd_l->snd_nxt - 1;
  315. snd_l->ackers--;
  316. rcv_l->bc_peer_is_up = true;
  317. rcv_l->state = LINK_ESTABLISHED;
  318. tipc_link_bc_ack_rcv(rcv_l, ack, xmitq);
  319. tipc_link_reset(rcv_l);
  320. rcv_l->state = LINK_RESET;
  321. if (!snd_l->ackers) {
  322. tipc_link_reset(snd_l);
  323. snd_l->state = LINK_RESET;
  324. __skb_queue_purge(xmitq);
  325. }
  326. }
  327. int tipc_link_bc_peers(struct tipc_link *l)
  328. {
  329. return l->ackers;
  330. }
  331. u16 link_bc_rcv_gap(struct tipc_link *l)
  332. {
  333. struct sk_buff *skb = skb_peek(&l->deferdq);
  334. u16 gap = 0;
  335. if (more(l->snd_nxt, l->rcv_nxt))
  336. gap = l->snd_nxt - l->rcv_nxt;
  337. if (skb)
  338. gap = buf_seqno(skb) - l->rcv_nxt;
  339. return gap;
  340. }
  341. void tipc_link_set_mtu(struct tipc_link *l, int mtu)
  342. {
  343. l->mtu = mtu;
  344. }
  345. int tipc_link_mtu(struct tipc_link *l)
  346. {
  347. return l->mtu;
  348. }
  349. u16 tipc_link_rcv_nxt(struct tipc_link *l)
  350. {
  351. return l->rcv_nxt;
  352. }
  353. u16 tipc_link_acked(struct tipc_link *l)
  354. {
  355. return l->acked;
  356. }
  357. char *tipc_link_name(struct tipc_link *l)
  358. {
  359. return l->name;
  360. }
  361. /**
  362. * tipc_link_create - create a new link
  363. * @n: pointer to associated node
  364. * @if_name: associated interface name
  365. * @bearer_id: id (index) of associated bearer
  366. * @tolerance: link tolerance to be used by link
  367. * @net_plane: network plane (A,B,c..) this link belongs to
  368. * @mtu: mtu to be advertised by link
  369. * @priority: priority to be used by link
  370. * @window: send window to be used by link
  371. * @session: session to be used by link
  372. * @ownnode: identity of own node
  373. * @peer: node id of peer node
  374. * @peer_caps: bitmap describing peer node capabilities
  375. * @bc_sndlink: the namespace global link used for broadcast sending
  376. * @bc_rcvlink: the peer specific link used for broadcast reception
  377. * @inputq: queue to put messages ready for delivery
  378. * @namedq: queue to put binding table update messages ready for delivery
  379. * @link: return value, pointer to put the created link
  380. *
  381. * Returns true if link was created, otherwise false
  382. */
  383. bool tipc_link_create(struct net *net, char *if_name, int bearer_id,
  384. int tolerance, char net_plane, u32 mtu, int priority,
  385. int window, u32 session, u32 ownnode, u32 peer,
  386. u16 peer_caps,
  387. struct tipc_link *bc_sndlink,
  388. struct tipc_link *bc_rcvlink,
  389. struct sk_buff_head *inputq,
  390. struct sk_buff_head *namedq,
  391. struct tipc_link **link)
  392. {
  393. struct tipc_link *l;
  394. l = kzalloc(sizeof(*l), GFP_ATOMIC);
  395. if (!l)
  396. return false;
  397. *link = l;
  398. l->session = session;
  399. /* Note: peer i/f name is completed by reset/activate message */
  400. sprintf(l->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
  401. tipc_zone(ownnode), tipc_cluster(ownnode), tipc_node(ownnode),
  402. if_name, tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
  403. strcpy(l->if_name, if_name);
  404. l->addr = peer;
  405. l->peer_caps = peer_caps;
  406. l->net = net;
  407. l->peer_session = ANY_SESSION;
  408. l->bearer_id = bearer_id;
  409. l->tolerance = tolerance;
  410. l->net_plane = net_plane;
  411. l->advertised_mtu = mtu;
  412. l->mtu = mtu;
  413. l->priority = priority;
  414. tipc_link_set_queue_limits(l, window);
  415. l->ackers = 1;
  416. l->bc_sndlink = bc_sndlink;
  417. l->bc_rcvlink = bc_rcvlink;
  418. l->inputq = inputq;
  419. l->namedq = namedq;
  420. l->state = LINK_RESETTING;
  421. __skb_queue_head_init(&l->transmq);
  422. __skb_queue_head_init(&l->backlogq);
  423. __skb_queue_head_init(&l->deferdq);
  424. skb_queue_head_init(&l->wakeupq);
  425. skb_queue_head_init(l->inputq);
  426. return true;
  427. }
  428. /**
  429. * tipc_link_bc_create - create new link to be used for broadcast
  430. * @n: pointer to associated node
  431. * @mtu: mtu to be used
  432. * @window: send window to be used
  433. * @inputq: queue to put messages ready for delivery
  434. * @namedq: queue to put binding table update messages ready for delivery
  435. * @link: return value, pointer to put the created link
  436. *
  437. * Returns true if link was created, otherwise false
  438. */
  439. bool tipc_link_bc_create(struct net *net, u32 ownnode, u32 peer,
  440. int mtu, int window, u16 peer_caps,
  441. struct sk_buff_head *inputq,
  442. struct sk_buff_head *namedq,
  443. struct tipc_link *bc_sndlink,
  444. struct tipc_link **link)
  445. {
  446. struct tipc_link *l;
  447. if (!tipc_link_create(net, "", MAX_BEARERS, 0, 'Z', mtu, 0, window,
  448. 0, ownnode, peer, peer_caps, bc_sndlink,
  449. NULL, inputq, namedq, link))
  450. return false;
  451. l = *link;
  452. strcpy(l->name, tipc_bclink_name);
  453. tipc_link_reset(l);
  454. l->state = LINK_RESET;
  455. l->ackers = 0;
  456. l->bc_rcvlink = l;
  457. /* Broadcast send link is always up */
  458. if (link_is_bc_sndlink(l))
  459. l->state = LINK_ESTABLISHED;
  460. return true;
  461. }
  462. /**
  463. * tipc_link_fsm_evt - link finite state machine
  464. * @l: pointer to link
  465. * @evt: state machine event to be processed
  466. */
  467. int tipc_link_fsm_evt(struct tipc_link *l, int evt)
  468. {
  469. int rc = 0;
  470. switch (l->state) {
  471. case LINK_RESETTING:
  472. switch (evt) {
  473. case LINK_PEER_RESET_EVT:
  474. l->state = LINK_PEER_RESET;
  475. break;
  476. case LINK_RESET_EVT:
  477. l->state = LINK_RESET;
  478. break;
  479. case LINK_FAILURE_EVT:
  480. case LINK_FAILOVER_BEGIN_EVT:
  481. case LINK_ESTABLISH_EVT:
  482. case LINK_FAILOVER_END_EVT:
  483. case LINK_SYNCH_BEGIN_EVT:
  484. case LINK_SYNCH_END_EVT:
  485. default:
  486. goto illegal_evt;
  487. }
  488. break;
  489. case LINK_RESET:
  490. switch (evt) {
  491. case LINK_PEER_RESET_EVT:
  492. l->state = LINK_ESTABLISHING;
  493. break;
  494. case LINK_FAILOVER_BEGIN_EVT:
  495. l->state = LINK_FAILINGOVER;
  496. case LINK_FAILURE_EVT:
  497. case LINK_RESET_EVT:
  498. case LINK_ESTABLISH_EVT:
  499. case LINK_FAILOVER_END_EVT:
  500. break;
  501. case LINK_SYNCH_BEGIN_EVT:
  502. case LINK_SYNCH_END_EVT:
  503. default:
  504. goto illegal_evt;
  505. }
  506. break;
  507. case LINK_PEER_RESET:
  508. switch (evt) {
  509. case LINK_RESET_EVT:
  510. l->state = LINK_ESTABLISHING;
  511. break;
  512. case LINK_PEER_RESET_EVT:
  513. case LINK_ESTABLISH_EVT:
  514. case LINK_FAILURE_EVT:
  515. break;
  516. case LINK_SYNCH_BEGIN_EVT:
  517. case LINK_SYNCH_END_EVT:
  518. case LINK_FAILOVER_BEGIN_EVT:
  519. case LINK_FAILOVER_END_EVT:
  520. default:
  521. goto illegal_evt;
  522. }
  523. break;
  524. case LINK_FAILINGOVER:
  525. switch (evt) {
  526. case LINK_FAILOVER_END_EVT:
  527. l->state = LINK_RESET;
  528. break;
  529. case LINK_PEER_RESET_EVT:
  530. case LINK_RESET_EVT:
  531. case LINK_ESTABLISH_EVT:
  532. case LINK_FAILURE_EVT:
  533. break;
  534. case LINK_FAILOVER_BEGIN_EVT:
  535. case LINK_SYNCH_BEGIN_EVT:
  536. case LINK_SYNCH_END_EVT:
  537. default:
  538. goto illegal_evt;
  539. }
  540. break;
  541. case LINK_ESTABLISHING:
  542. switch (evt) {
  543. case LINK_ESTABLISH_EVT:
  544. l->state = LINK_ESTABLISHED;
  545. break;
  546. case LINK_FAILOVER_BEGIN_EVT:
  547. l->state = LINK_FAILINGOVER;
  548. break;
  549. case LINK_RESET_EVT:
  550. l->state = LINK_RESET;
  551. break;
  552. case LINK_FAILURE_EVT:
  553. case LINK_PEER_RESET_EVT:
  554. case LINK_SYNCH_BEGIN_EVT:
  555. case LINK_FAILOVER_END_EVT:
  556. break;
  557. case LINK_SYNCH_END_EVT:
  558. default:
  559. goto illegal_evt;
  560. }
  561. break;
  562. case LINK_ESTABLISHED:
  563. switch (evt) {
  564. case LINK_PEER_RESET_EVT:
  565. l->state = LINK_PEER_RESET;
  566. rc |= TIPC_LINK_DOWN_EVT;
  567. break;
  568. case LINK_FAILURE_EVT:
  569. l->state = LINK_RESETTING;
  570. rc |= TIPC_LINK_DOWN_EVT;
  571. break;
  572. case LINK_RESET_EVT:
  573. l->state = LINK_RESET;
  574. break;
  575. case LINK_ESTABLISH_EVT:
  576. case LINK_SYNCH_END_EVT:
  577. break;
  578. case LINK_SYNCH_BEGIN_EVT:
  579. l->state = LINK_SYNCHING;
  580. break;
  581. case LINK_FAILOVER_BEGIN_EVT:
  582. case LINK_FAILOVER_END_EVT:
  583. default:
  584. goto illegal_evt;
  585. }
  586. break;
  587. case LINK_SYNCHING:
  588. switch (evt) {
  589. case LINK_PEER_RESET_EVT:
  590. l->state = LINK_PEER_RESET;
  591. rc |= TIPC_LINK_DOWN_EVT;
  592. break;
  593. case LINK_FAILURE_EVT:
  594. l->state = LINK_RESETTING;
  595. rc |= TIPC_LINK_DOWN_EVT;
  596. break;
  597. case LINK_RESET_EVT:
  598. l->state = LINK_RESET;
  599. break;
  600. case LINK_ESTABLISH_EVT:
  601. case LINK_SYNCH_BEGIN_EVT:
  602. break;
  603. case LINK_SYNCH_END_EVT:
  604. l->state = LINK_ESTABLISHED;
  605. break;
  606. case LINK_FAILOVER_BEGIN_EVT:
  607. case LINK_FAILOVER_END_EVT:
  608. default:
  609. goto illegal_evt;
  610. }
  611. break;
  612. default:
  613. pr_err("Unknown FSM state %x in %s\n", l->state, l->name);
  614. }
  615. return rc;
  616. illegal_evt:
  617. pr_err("Illegal FSM event %x in state %x on link %s\n",
  618. evt, l->state, l->name);
  619. return rc;
  620. }
  621. /* link_profile_stats - update statistical profiling of traffic
  622. */
  623. static void link_profile_stats(struct tipc_link *l)
  624. {
  625. struct sk_buff *skb;
  626. struct tipc_msg *msg;
  627. int length;
  628. /* Update counters used in statistical profiling of send traffic */
  629. l->stats.accu_queue_sz += skb_queue_len(&l->transmq);
  630. l->stats.queue_sz_counts++;
  631. skb = skb_peek(&l->transmq);
  632. if (!skb)
  633. return;
  634. msg = buf_msg(skb);
  635. length = msg_size(msg);
  636. if (msg_user(msg) == MSG_FRAGMENTER) {
  637. if (msg_type(msg) != FIRST_FRAGMENT)
  638. return;
  639. length = msg_size(msg_get_wrapped(msg));
  640. }
  641. l->stats.msg_lengths_total += length;
  642. l->stats.msg_length_counts++;
  643. if (length <= 64)
  644. l->stats.msg_length_profile[0]++;
  645. else if (length <= 256)
  646. l->stats.msg_length_profile[1]++;
  647. else if (length <= 1024)
  648. l->stats.msg_length_profile[2]++;
  649. else if (length <= 4096)
  650. l->stats.msg_length_profile[3]++;
  651. else if (length <= 16384)
  652. l->stats.msg_length_profile[4]++;
  653. else if (length <= 32768)
  654. l->stats.msg_length_profile[5]++;
  655. else
  656. l->stats.msg_length_profile[6]++;
  657. }
  658. /* tipc_link_timeout - perform periodic task as instructed from node timeout
  659. */
  660. int tipc_link_timeout(struct tipc_link *l, struct sk_buff_head *xmitq)
  661. {
  662. int mtyp = 0;
  663. int rc = 0;
  664. bool state = false;
  665. bool probe = false;
  666. bool setup = false;
  667. u16 bc_snt = l->bc_sndlink->snd_nxt - 1;
  668. u16 bc_acked = l->bc_rcvlink->acked;
  669. struct tipc_mon_state *mstate = &l->mon_state;
  670. switch (l->state) {
  671. case LINK_ESTABLISHED:
  672. case LINK_SYNCHING:
  673. mtyp = STATE_MSG;
  674. link_profile_stats(l);
  675. tipc_mon_get_state(l->net, l->addr, mstate, l->bearer_id);
  676. if (mstate->reset || (l->silent_intv_cnt > l->abort_limit))
  677. return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
  678. state = bc_acked != bc_snt;
  679. state |= l->bc_rcvlink->rcv_unacked;
  680. state |= l->rcv_unacked;
  681. state |= !skb_queue_empty(&l->transmq);
  682. state |= !skb_queue_empty(&l->deferdq);
  683. probe = mstate->probing;
  684. probe |= l->silent_intv_cnt;
  685. if (probe || mstate->monitoring)
  686. l->silent_intv_cnt++;
  687. break;
  688. case LINK_RESET:
  689. setup = l->rst_cnt++ <= 4;
  690. setup |= !(l->rst_cnt % 16);
  691. mtyp = RESET_MSG;
  692. break;
  693. case LINK_ESTABLISHING:
  694. setup = true;
  695. mtyp = ACTIVATE_MSG;
  696. break;
  697. case LINK_PEER_RESET:
  698. case LINK_RESETTING:
  699. case LINK_FAILINGOVER:
  700. break;
  701. default:
  702. break;
  703. }
  704. if (state || probe || setup)
  705. tipc_link_build_proto_msg(l, mtyp, probe, 0, 0, 0, xmitq);
  706. return rc;
  707. }
  708. /**
  709. * link_schedule_user - schedule a message sender for wakeup after congestion
  710. * @link: congested link
  711. * @list: message that was attempted sent
  712. * Create pseudo msg to send back to user when congestion abates
  713. * Does not consume buffer list
  714. */
  715. static int link_schedule_user(struct tipc_link *link, struct sk_buff_head *list)
  716. {
  717. struct tipc_msg *msg = buf_msg(skb_peek(list));
  718. int imp = msg_importance(msg);
  719. u32 oport = msg_origport(msg);
  720. u32 addr = tipc_own_addr(link->net);
  721. struct sk_buff *skb;
  722. /* This really cannot happen... */
  723. if (unlikely(imp > TIPC_CRITICAL_IMPORTANCE)) {
  724. pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
  725. return -ENOBUFS;
  726. }
  727. /* Non-blocking sender: */
  728. if (TIPC_SKB_CB(skb_peek(list))->wakeup_pending)
  729. return -ELINKCONG;
  730. /* Create and schedule wakeup pseudo message */
  731. skb = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0,
  732. addr, addr, oport, 0, 0);
  733. if (!skb)
  734. return -ENOBUFS;
  735. TIPC_SKB_CB(skb)->chain_sz = skb_queue_len(list);
  736. TIPC_SKB_CB(skb)->chain_imp = imp;
  737. skb_queue_tail(&link->wakeupq, skb);
  738. link->stats.link_congs++;
  739. return -ELINKCONG;
  740. }
  741. /**
  742. * link_prepare_wakeup - prepare users for wakeup after congestion
  743. * @link: congested link
  744. * Move a number of waiting users, as permitted by available space in
  745. * the send queue, from link wait queue to node wait queue for wakeup
  746. */
  747. void link_prepare_wakeup(struct tipc_link *l)
  748. {
  749. int pnd[TIPC_SYSTEM_IMPORTANCE + 1] = {0,};
  750. int imp, lim;
  751. struct sk_buff *skb, *tmp;
  752. skb_queue_walk_safe(&l->wakeupq, skb, tmp) {
  753. imp = TIPC_SKB_CB(skb)->chain_imp;
  754. lim = l->backlog[imp].limit;
  755. pnd[imp] += TIPC_SKB_CB(skb)->chain_sz;
  756. if ((pnd[imp] + l->backlog[imp].len) >= lim)
  757. break;
  758. skb_unlink(skb, &l->wakeupq);
  759. skb_queue_tail(l->inputq, skb);
  760. }
  761. }
  762. void tipc_link_reset(struct tipc_link *l)
  763. {
  764. l->peer_session = ANY_SESSION;
  765. l->session++;
  766. l->mtu = l->advertised_mtu;
  767. __skb_queue_purge(&l->transmq);
  768. __skb_queue_purge(&l->deferdq);
  769. skb_queue_splice_init(&l->wakeupq, l->inputq);
  770. __skb_queue_purge(&l->backlogq);
  771. l->backlog[TIPC_LOW_IMPORTANCE].len = 0;
  772. l->backlog[TIPC_MEDIUM_IMPORTANCE].len = 0;
  773. l->backlog[TIPC_HIGH_IMPORTANCE].len = 0;
  774. l->backlog[TIPC_CRITICAL_IMPORTANCE].len = 0;
  775. l->backlog[TIPC_SYSTEM_IMPORTANCE].len = 0;
  776. kfree_skb(l->reasm_buf);
  777. kfree_skb(l->failover_reasm_skb);
  778. l->reasm_buf = NULL;
  779. l->failover_reasm_skb = NULL;
  780. l->rcv_unacked = 0;
  781. l->snd_nxt = 1;
  782. l->rcv_nxt = 1;
  783. l->acked = 0;
  784. l->silent_intv_cnt = 0;
  785. l->rst_cnt = 0;
  786. l->stale_count = 0;
  787. l->bc_peer_is_up = false;
  788. memset(&l->mon_state, 0, sizeof(l->mon_state));
  789. tipc_link_reset_stats(l);
  790. }
  791. /**
  792. * tipc_link_xmit(): enqueue buffer list according to queue situation
  793. * @link: link to use
  794. * @list: chain of buffers containing message
  795. * @xmitq: returned list of packets to be sent by caller
  796. *
  797. * Consumes the buffer chain, except when returning -ELINKCONG,
  798. * since the caller then may want to make more send attempts.
  799. * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
  800. * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
  801. */
  802. int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
  803. struct sk_buff_head *xmitq)
  804. {
  805. struct tipc_msg *hdr = buf_msg(skb_peek(list));
  806. unsigned int maxwin = l->window;
  807. unsigned int i, imp = msg_importance(hdr);
  808. unsigned int mtu = l->mtu;
  809. u16 ack = l->rcv_nxt - 1;
  810. u16 seqno = l->snd_nxt;
  811. u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
  812. struct sk_buff_head *transmq = &l->transmq;
  813. struct sk_buff_head *backlogq = &l->backlogq;
  814. struct sk_buff *skb, *_skb, *bskb;
  815. int pkt_cnt = skb_queue_len(list);
  816. /* Match msg importance against this and all higher backlog limits: */
  817. if (!skb_queue_empty(backlogq)) {
  818. for (i = imp; i <= TIPC_SYSTEM_IMPORTANCE; i++) {
  819. if (unlikely(l->backlog[i].len >= l->backlog[i].limit))
  820. return link_schedule_user(l, list);
  821. }
  822. }
  823. if (unlikely(msg_size(hdr) > mtu)) {
  824. skb_queue_purge(list);
  825. return -EMSGSIZE;
  826. }
  827. if (pkt_cnt > 1) {
  828. l->stats.sent_fragmented++;
  829. l->stats.sent_fragments += pkt_cnt;
  830. }
  831. /* Prepare each packet for sending, and add to relevant queue: */
  832. while (skb_queue_len(list)) {
  833. skb = skb_peek(list);
  834. hdr = buf_msg(skb);
  835. msg_set_seqno(hdr, seqno);
  836. msg_set_ack(hdr, ack);
  837. msg_set_bcast_ack(hdr, bc_ack);
  838. if (likely(skb_queue_len(transmq) < maxwin)) {
  839. _skb = skb_clone(skb, GFP_ATOMIC);
  840. if (!_skb) {
  841. skb_queue_purge(list);
  842. return -ENOBUFS;
  843. }
  844. __skb_dequeue(list);
  845. __skb_queue_tail(transmq, skb);
  846. __skb_queue_tail(xmitq, _skb);
  847. TIPC_SKB_CB(skb)->ackers = l->ackers;
  848. l->rcv_unacked = 0;
  849. l->stats.sent_pkts++;
  850. seqno++;
  851. continue;
  852. }
  853. if (tipc_msg_bundle(skb_peek_tail(backlogq), hdr, mtu)) {
  854. kfree_skb(__skb_dequeue(list));
  855. l->stats.sent_bundled++;
  856. continue;
  857. }
  858. if (tipc_msg_make_bundle(&bskb, hdr, mtu, l->addr)) {
  859. kfree_skb(__skb_dequeue(list));
  860. __skb_queue_tail(backlogq, bskb);
  861. l->backlog[msg_importance(buf_msg(bskb))].len++;
  862. l->stats.sent_bundled++;
  863. l->stats.sent_bundles++;
  864. continue;
  865. }
  866. l->backlog[imp].len += skb_queue_len(list);
  867. skb_queue_splice_tail_init(list, backlogq);
  868. }
  869. l->snd_nxt = seqno;
  870. return 0;
  871. }
  872. void tipc_link_advance_backlog(struct tipc_link *l, struct sk_buff_head *xmitq)
  873. {
  874. struct sk_buff *skb, *_skb;
  875. struct tipc_msg *hdr;
  876. u16 seqno = l->snd_nxt;
  877. u16 ack = l->rcv_nxt - 1;
  878. u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
  879. while (skb_queue_len(&l->transmq) < l->window) {
  880. skb = skb_peek(&l->backlogq);
  881. if (!skb)
  882. break;
  883. _skb = skb_clone(skb, GFP_ATOMIC);
  884. if (!_skb)
  885. break;
  886. __skb_dequeue(&l->backlogq);
  887. hdr = buf_msg(skb);
  888. l->backlog[msg_importance(hdr)].len--;
  889. __skb_queue_tail(&l->transmq, skb);
  890. __skb_queue_tail(xmitq, _skb);
  891. TIPC_SKB_CB(skb)->ackers = l->ackers;
  892. msg_set_seqno(hdr, seqno);
  893. msg_set_ack(hdr, ack);
  894. msg_set_bcast_ack(hdr, bc_ack);
  895. l->rcv_unacked = 0;
  896. l->stats.sent_pkts++;
  897. seqno++;
  898. }
  899. l->snd_nxt = seqno;
  900. }
  901. static void link_retransmit_failure(struct tipc_link *l, struct sk_buff *skb)
  902. {
  903. struct tipc_msg *hdr = buf_msg(skb);
  904. pr_warn("Retransmission failure on link <%s>\n", l->name);
  905. link_print(l, "Resetting link ");
  906. pr_info("Failed msg: usr %u, typ %u, len %u, err %u\n",
  907. msg_user(hdr), msg_type(hdr), msg_size(hdr), msg_errcode(hdr));
  908. pr_info("sqno %u, prev: %x, src: %x\n",
  909. msg_seqno(hdr), msg_prevnode(hdr), msg_orignode(hdr));
  910. }
  911. int tipc_link_retrans(struct tipc_link *l, u16 from, u16 to,
  912. struct sk_buff_head *xmitq)
  913. {
  914. struct sk_buff *_skb, *skb = skb_peek(&l->transmq);
  915. struct tipc_msg *hdr;
  916. u16 ack = l->rcv_nxt - 1;
  917. u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
  918. if (!skb)
  919. return 0;
  920. /* Detect repeated retransmit failures on same packet */
  921. if (likely(l->last_retransm != buf_seqno(skb))) {
  922. l->last_retransm = buf_seqno(skb);
  923. l->stale_count = 1;
  924. } else if (++l->stale_count > 100) {
  925. link_retransmit_failure(l, skb);
  926. return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
  927. }
  928. /* Move forward to where retransmission should start */
  929. skb_queue_walk(&l->transmq, skb) {
  930. if (!less(buf_seqno(skb), from))
  931. break;
  932. }
  933. skb_queue_walk_from(&l->transmq, skb) {
  934. if (more(buf_seqno(skb), to))
  935. break;
  936. hdr = buf_msg(skb);
  937. _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC);
  938. if (!_skb)
  939. return 0;
  940. hdr = buf_msg(_skb);
  941. msg_set_ack(hdr, ack);
  942. msg_set_bcast_ack(hdr, bc_ack);
  943. _skb->priority = TC_PRIO_CONTROL;
  944. __skb_queue_tail(xmitq, _skb);
  945. l->stats.retransmitted++;
  946. }
  947. return 0;
  948. }
  949. /* tipc_data_input - deliver data and name distr msgs to upper layer
  950. *
  951. * Consumes buffer if message is of right type
  952. * Node lock must be held
  953. */
  954. static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb,
  955. struct sk_buff_head *inputq)
  956. {
  957. switch (msg_user(buf_msg(skb))) {
  958. case TIPC_LOW_IMPORTANCE:
  959. case TIPC_MEDIUM_IMPORTANCE:
  960. case TIPC_HIGH_IMPORTANCE:
  961. case TIPC_CRITICAL_IMPORTANCE:
  962. case CONN_MANAGER:
  963. skb_queue_tail(inputq, skb);
  964. return true;
  965. case NAME_DISTRIBUTOR:
  966. l->bc_rcvlink->state = LINK_ESTABLISHED;
  967. skb_queue_tail(l->namedq, skb);
  968. return true;
  969. case MSG_BUNDLER:
  970. case TUNNEL_PROTOCOL:
  971. case MSG_FRAGMENTER:
  972. case BCAST_PROTOCOL:
  973. return false;
  974. default:
  975. pr_warn("Dropping received illegal msg type\n");
  976. kfree_skb(skb);
  977. return false;
  978. };
  979. }
  980. /* tipc_link_input - process packet that has passed link protocol check
  981. *
  982. * Consumes buffer
  983. */
  984. static int tipc_link_input(struct tipc_link *l, struct sk_buff *skb,
  985. struct sk_buff_head *inputq)
  986. {
  987. struct tipc_msg *hdr = buf_msg(skb);
  988. struct sk_buff **reasm_skb = &l->reasm_buf;
  989. struct sk_buff *iskb;
  990. struct sk_buff_head tmpq;
  991. int usr = msg_user(hdr);
  992. int rc = 0;
  993. int pos = 0;
  994. int ipos = 0;
  995. if (unlikely(usr == TUNNEL_PROTOCOL)) {
  996. if (msg_type(hdr) == SYNCH_MSG) {
  997. __skb_queue_purge(&l->deferdq);
  998. goto drop;
  999. }
  1000. if (!tipc_msg_extract(skb, &iskb, &ipos))
  1001. return rc;
  1002. kfree_skb(skb);
  1003. skb = iskb;
  1004. hdr = buf_msg(skb);
  1005. if (less(msg_seqno(hdr), l->drop_point))
  1006. goto drop;
  1007. if (tipc_data_input(l, skb, inputq))
  1008. return rc;
  1009. usr = msg_user(hdr);
  1010. reasm_skb = &l->failover_reasm_skb;
  1011. }
  1012. if (usr == MSG_BUNDLER) {
  1013. skb_queue_head_init(&tmpq);
  1014. l->stats.recv_bundles++;
  1015. l->stats.recv_bundled += msg_msgcnt(hdr);
  1016. while (tipc_msg_extract(skb, &iskb, &pos))
  1017. tipc_data_input(l, iskb, &tmpq);
  1018. tipc_skb_queue_splice_tail(&tmpq, inputq);
  1019. return 0;
  1020. } else if (usr == MSG_FRAGMENTER) {
  1021. l->stats.recv_fragments++;
  1022. if (tipc_buf_append(reasm_skb, &skb)) {
  1023. l->stats.recv_fragmented++;
  1024. tipc_data_input(l, skb, inputq);
  1025. } else if (!*reasm_skb && !link_is_bc_rcvlink(l)) {
  1026. pr_warn_ratelimited("Unable to build fragment list\n");
  1027. return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
  1028. }
  1029. return 0;
  1030. } else if (usr == BCAST_PROTOCOL) {
  1031. tipc_bcast_lock(l->net);
  1032. tipc_link_bc_init_rcv(l->bc_rcvlink, hdr);
  1033. tipc_bcast_unlock(l->net);
  1034. }
  1035. drop:
  1036. kfree_skb(skb);
  1037. return 0;
  1038. }
  1039. static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked)
  1040. {
  1041. bool released = false;
  1042. struct sk_buff *skb, *tmp;
  1043. skb_queue_walk_safe(&l->transmq, skb, tmp) {
  1044. if (more(buf_seqno(skb), acked))
  1045. break;
  1046. __skb_unlink(skb, &l->transmq);
  1047. kfree_skb(skb);
  1048. released = true;
  1049. }
  1050. return released;
  1051. }
  1052. /* tipc_link_build_state_msg: prepare link state message for transmission
  1053. *
  1054. * Note that sending of broadcast ack is coordinated among nodes, to reduce
  1055. * risk of ack storms towards the sender
  1056. */
  1057. int tipc_link_build_state_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
  1058. {
  1059. if (!l)
  1060. return 0;
  1061. /* Broadcast ACK must be sent via a unicast link => defer to caller */
  1062. if (link_is_bc_rcvlink(l)) {
  1063. if (((l->rcv_nxt ^ tipc_own_addr(l->net)) & 0xf) != 0xf)
  1064. return 0;
  1065. l->rcv_unacked = 0;
  1066. /* Use snd_nxt to store peer's snd_nxt in broadcast rcv link */
  1067. l->snd_nxt = l->rcv_nxt;
  1068. return TIPC_LINK_SND_STATE;
  1069. }
  1070. /* Unicast ACK */
  1071. l->rcv_unacked = 0;
  1072. l->stats.sent_acks++;
  1073. tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
  1074. return 0;
  1075. }
  1076. /* tipc_link_build_reset_msg: prepare link RESET or ACTIVATE message
  1077. */
  1078. void tipc_link_build_reset_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
  1079. {
  1080. int mtyp = RESET_MSG;
  1081. struct sk_buff *skb;
  1082. if (l->state == LINK_ESTABLISHING)
  1083. mtyp = ACTIVATE_MSG;
  1084. tipc_link_build_proto_msg(l, mtyp, 0, 0, 0, 0, xmitq);
  1085. /* Inform peer that this endpoint is going down if applicable */
  1086. skb = skb_peek_tail(xmitq);
  1087. if (skb && (l->state == LINK_RESET))
  1088. msg_set_peer_stopping(buf_msg(skb), 1);
  1089. }
  1090. /* tipc_link_build_nack_msg: prepare link nack message for transmission
  1091. * Note that sending of broadcast NACK is coordinated among nodes, to
  1092. * reduce the risk of NACK storms towards the sender
  1093. */
  1094. static int tipc_link_build_nack_msg(struct tipc_link *l,
  1095. struct sk_buff_head *xmitq)
  1096. {
  1097. u32 def_cnt = ++l->stats.deferred_recv;
  1098. int match1, match2;
  1099. if (link_is_bc_rcvlink(l)) {
  1100. match1 = def_cnt & 0xf;
  1101. match2 = tipc_own_addr(l->net) & 0xf;
  1102. if (match1 == match2)
  1103. return TIPC_LINK_SND_STATE;
  1104. return 0;
  1105. }
  1106. if ((skb_queue_len(&l->deferdq) == 1) || !(def_cnt % TIPC_NACK_INTV))
  1107. tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
  1108. return 0;
  1109. }
  1110. /* tipc_link_rcv - process TIPC packets/messages arriving from off-node
  1111. * @l: the link that should handle the message
  1112. * @skb: TIPC packet
  1113. * @xmitq: queue to place packets to be sent after this call
  1114. */
  1115. int tipc_link_rcv(struct tipc_link *l, struct sk_buff *skb,
  1116. struct sk_buff_head *xmitq)
  1117. {
  1118. struct sk_buff_head *defq = &l->deferdq;
  1119. struct tipc_msg *hdr;
  1120. u16 seqno, rcv_nxt, win_lim;
  1121. int rc = 0;
  1122. do {
  1123. hdr = buf_msg(skb);
  1124. seqno = msg_seqno(hdr);
  1125. rcv_nxt = l->rcv_nxt;
  1126. win_lim = rcv_nxt + TIPC_MAX_LINK_WIN;
  1127. /* Verify and update link state */
  1128. if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
  1129. return tipc_link_proto_rcv(l, skb, xmitq);
  1130. if (unlikely(!link_is_up(l))) {
  1131. if (l->state == LINK_ESTABLISHING)
  1132. rc = TIPC_LINK_UP_EVT;
  1133. goto drop;
  1134. }
  1135. /* Don't send probe at next timeout expiration */
  1136. l->silent_intv_cnt = 0;
  1137. /* Drop if outside receive window */
  1138. if (unlikely(less(seqno, rcv_nxt) || more(seqno, win_lim))) {
  1139. l->stats.duplicates++;
  1140. goto drop;
  1141. }
  1142. /* Forward queues and wake up waiting users */
  1143. if (likely(tipc_link_release_pkts(l, msg_ack(hdr)))) {
  1144. tipc_link_advance_backlog(l, xmitq);
  1145. if (unlikely(!skb_queue_empty(&l->wakeupq)))
  1146. link_prepare_wakeup(l);
  1147. }
  1148. /* Defer delivery if sequence gap */
  1149. if (unlikely(seqno != rcv_nxt)) {
  1150. __tipc_skb_queue_sorted(defq, seqno, skb);
  1151. rc |= tipc_link_build_nack_msg(l, xmitq);
  1152. break;
  1153. }
  1154. /* Deliver packet */
  1155. l->rcv_nxt++;
  1156. l->stats.recv_pkts++;
  1157. if (!tipc_data_input(l, skb, l->inputq))
  1158. rc |= tipc_link_input(l, skb, l->inputq);
  1159. if (unlikely(++l->rcv_unacked >= TIPC_MIN_LINK_WIN))
  1160. rc |= tipc_link_build_state_msg(l, xmitq);
  1161. if (unlikely(rc & ~TIPC_LINK_SND_STATE))
  1162. break;
  1163. } while ((skb = __skb_dequeue(defq)));
  1164. return rc;
  1165. drop:
  1166. kfree_skb(skb);
  1167. return rc;
  1168. }
  1169. static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
  1170. u16 rcvgap, int tolerance, int priority,
  1171. struct sk_buff_head *xmitq)
  1172. {
  1173. struct tipc_link *bcl = l->bc_rcvlink;
  1174. struct sk_buff *skb;
  1175. struct tipc_msg *hdr;
  1176. struct sk_buff_head *dfq = &l->deferdq;
  1177. bool node_up = link_is_up(bcl);
  1178. struct tipc_mon_state *mstate = &l->mon_state;
  1179. int dlen = 0;
  1180. void *data;
  1181. /* Don't send protocol message during reset or link failover */
  1182. if (tipc_link_is_blocked(l))
  1183. return;
  1184. if (!tipc_link_is_up(l) && (mtyp == STATE_MSG))
  1185. return;
  1186. if (!skb_queue_empty(dfq))
  1187. rcvgap = buf_seqno(skb_peek(dfq)) - l->rcv_nxt;
  1188. skb = tipc_msg_create(LINK_PROTOCOL, mtyp, INT_H_SIZE,
  1189. tipc_max_domain_size, l->addr,
  1190. tipc_own_addr(l->net), 0, 0, 0);
  1191. if (!skb)
  1192. return;
  1193. hdr = buf_msg(skb);
  1194. data = msg_data(hdr);
  1195. msg_set_session(hdr, l->session);
  1196. msg_set_bearer_id(hdr, l->bearer_id);
  1197. msg_set_net_plane(hdr, l->net_plane);
  1198. msg_set_next_sent(hdr, l->snd_nxt);
  1199. msg_set_ack(hdr, l->rcv_nxt - 1);
  1200. msg_set_bcast_ack(hdr, bcl->rcv_nxt - 1);
  1201. msg_set_bc_ack_invalid(hdr, !node_up);
  1202. msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
  1203. msg_set_link_tolerance(hdr, tolerance);
  1204. msg_set_linkprio(hdr, priority);
  1205. msg_set_redundant_link(hdr, node_up);
  1206. msg_set_seq_gap(hdr, 0);
  1207. msg_set_seqno(hdr, l->snd_nxt + U16_MAX / 2);
  1208. if (mtyp == STATE_MSG) {
  1209. msg_set_seq_gap(hdr, rcvgap);
  1210. msg_set_bc_gap(hdr, link_bc_rcv_gap(bcl));
  1211. msg_set_probe(hdr, probe);
  1212. tipc_mon_prep(l->net, data, &dlen, mstate, l->bearer_id);
  1213. msg_set_size(hdr, INT_H_SIZE + dlen);
  1214. skb_trim(skb, INT_H_SIZE + dlen);
  1215. l->stats.sent_states++;
  1216. l->rcv_unacked = 0;
  1217. } else {
  1218. /* RESET_MSG or ACTIVATE_MSG */
  1219. msg_set_max_pkt(hdr, l->advertised_mtu);
  1220. strcpy(data, l->if_name);
  1221. msg_set_size(hdr, INT_H_SIZE + TIPC_MAX_IF_NAME);
  1222. skb_trim(skb, INT_H_SIZE + TIPC_MAX_IF_NAME);
  1223. }
  1224. if (probe)
  1225. l->stats.sent_probes++;
  1226. if (rcvgap)
  1227. l->stats.sent_nacks++;
  1228. skb->priority = TC_PRIO_CONTROL;
  1229. __skb_queue_tail(xmitq, skb);
  1230. }
  1231. /* tipc_link_tnl_prepare(): prepare and return a list of tunnel packets
  1232. * with contents of the link's transmit and backlog queues.
  1233. */
  1234. void tipc_link_tnl_prepare(struct tipc_link *l, struct tipc_link *tnl,
  1235. int mtyp, struct sk_buff_head *xmitq)
  1236. {
  1237. struct sk_buff *skb, *tnlskb;
  1238. struct tipc_msg *hdr, tnlhdr;
  1239. struct sk_buff_head *queue = &l->transmq;
  1240. struct sk_buff_head tmpxq, tnlq;
  1241. u16 pktlen, pktcnt, seqno = l->snd_nxt;
  1242. if (!tnl)
  1243. return;
  1244. skb_queue_head_init(&tnlq);
  1245. skb_queue_head_init(&tmpxq);
  1246. /* At least one packet required for safe algorithm => add dummy */
  1247. skb = tipc_msg_create(TIPC_LOW_IMPORTANCE, TIPC_DIRECT_MSG,
  1248. BASIC_H_SIZE, 0, l->addr, tipc_own_addr(l->net),
  1249. 0, 0, TIPC_ERR_NO_PORT);
  1250. if (!skb) {
  1251. pr_warn("%sunable to create tunnel packet\n", link_co_err);
  1252. return;
  1253. }
  1254. skb_queue_tail(&tnlq, skb);
  1255. tipc_link_xmit(l, &tnlq, &tmpxq);
  1256. __skb_queue_purge(&tmpxq);
  1257. /* Initialize reusable tunnel packet header */
  1258. tipc_msg_init(tipc_own_addr(l->net), &tnlhdr, TUNNEL_PROTOCOL,
  1259. mtyp, INT_H_SIZE, l->addr);
  1260. pktcnt = skb_queue_len(&l->transmq) + skb_queue_len(&l->backlogq);
  1261. msg_set_msgcnt(&tnlhdr, pktcnt);
  1262. msg_set_bearer_id(&tnlhdr, l->peer_bearer_id);
  1263. tnl:
  1264. /* Wrap each packet into a tunnel packet */
  1265. skb_queue_walk(queue, skb) {
  1266. hdr = buf_msg(skb);
  1267. if (queue == &l->backlogq)
  1268. msg_set_seqno(hdr, seqno++);
  1269. pktlen = msg_size(hdr);
  1270. msg_set_size(&tnlhdr, pktlen + INT_H_SIZE);
  1271. tnlskb = tipc_buf_acquire(pktlen + INT_H_SIZE, GFP_ATOMIC);
  1272. if (!tnlskb) {
  1273. pr_warn("%sunable to send packet\n", link_co_err);
  1274. return;
  1275. }
  1276. skb_copy_to_linear_data(tnlskb, &tnlhdr, INT_H_SIZE);
  1277. skb_copy_to_linear_data_offset(tnlskb, INT_H_SIZE, hdr, pktlen);
  1278. __skb_queue_tail(&tnlq, tnlskb);
  1279. }
  1280. if (queue != &l->backlogq) {
  1281. queue = &l->backlogq;
  1282. goto tnl;
  1283. }
  1284. tipc_link_xmit(tnl, &tnlq, xmitq);
  1285. if (mtyp == FAILOVER_MSG) {
  1286. tnl->drop_point = l->rcv_nxt;
  1287. tnl->failover_reasm_skb = l->reasm_buf;
  1288. l->reasm_buf = NULL;
  1289. }
  1290. }
  1291. /* tipc_link_proto_rcv(): receive link level protocol message :
  1292. * Note that network plane id propagates through the network, and may
  1293. * change at any time. The node with lowest numerical id determines
  1294. * network plane
  1295. */
  1296. static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
  1297. struct sk_buff_head *xmitq)
  1298. {
  1299. struct tipc_msg *hdr = buf_msg(skb);
  1300. u16 rcvgap = 0;
  1301. u16 ack = msg_ack(hdr);
  1302. u16 gap = msg_seq_gap(hdr);
  1303. u16 peers_snd_nxt = msg_next_sent(hdr);
  1304. u16 peers_tol = msg_link_tolerance(hdr);
  1305. u16 peers_prio = msg_linkprio(hdr);
  1306. u16 rcv_nxt = l->rcv_nxt;
  1307. u16 dlen = msg_data_sz(hdr);
  1308. int mtyp = msg_type(hdr);
  1309. void *data;
  1310. char *if_name;
  1311. int rc = 0;
  1312. if (tipc_link_is_blocked(l) || !xmitq)
  1313. goto exit;
  1314. if (tipc_own_addr(l->net) > msg_prevnode(hdr))
  1315. l->net_plane = msg_net_plane(hdr);
  1316. skb_linearize(skb);
  1317. hdr = buf_msg(skb);
  1318. data = msg_data(hdr);
  1319. switch (mtyp) {
  1320. case RESET_MSG:
  1321. /* Ignore duplicate RESET with old session number */
  1322. if ((less_eq(msg_session(hdr), l->peer_session)) &&
  1323. (l->peer_session != ANY_SESSION))
  1324. break;
  1325. /* fall thru' */
  1326. case ACTIVATE_MSG:
  1327. /* Complete own link name with peer's interface name */
  1328. if_name = strrchr(l->name, ':') + 1;
  1329. if (sizeof(l->name) - (if_name - l->name) <= TIPC_MAX_IF_NAME)
  1330. break;
  1331. if (msg_data_sz(hdr) < TIPC_MAX_IF_NAME)
  1332. break;
  1333. strncpy(if_name, data, TIPC_MAX_IF_NAME);
  1334. /* Update own tolerance if peer indicates a non-zero value */
  1335. if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
  1336. l->tolerance = peers_tol;
  1337. /* Update own priority if peer's priority is higher */
  1338. if (in_range(peers_prio, l->priority + 1, TIPC_MAX_LINK_PRI))
  1339. l->priority = peers_prio;
  1340. /* ACTIVATE_MSG serves as PEER_RESET if link is already down */
  1341. if (msg_peer_stopping(hdr))
  1342. rc = tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
  1343. else if ((mtyp == RESET_MSG) || !link_is_up(l))
  1344. rc = tipc_link_fsm_evt(l, LINK_PEER_RESET_EVT);
  1345. /* ACTIVATE_MSG takes up link if it was already locally reset */
  1346. if ((mtyp == ACTIVATE_MSG) && (l->state == LINK_ESTABLISHING))
  1347. rc = TIPC_LINK_UP_EVT;
  1348. l->peer_session = msg_session(hdr);
  1349. l->peer_bearer_id = msg_bearer_id(hdr);
  1350. if (l->mtu > msg_max_pkt(hdr))
  1351. l->mtu = msg_max_pkt(hdr);
  1352. break;
  1353. case STATE_MSG:
  1354. /* Update own tolerance if peer indicates a non-zero value */
  1355. if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
  1356. l->tolerance = peers_tol;
  1357. /* Update own prio if peer indicates a different value */
  1358. if ((peers_prio != l->priority) &&
  1359. in_range(peers_prio, 1, TIPC_MAX_LINK_PRI)) {
  1360. l->priority = peers_prio;
  1361. rc = tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
  1362. }
  1363. l->silent_intv_cnt = 0;
  1364. l->stats.recv_states++;
  1365. if (msg_probe(hdr))
  1366. l->stats.recv_probes++;
  1367. if (!link_is_up(l)) {
  1368. if (l->state == LINK_ESTABLISHING)
  1369. rc = TIPC_LINK_UP_EVT;
  1370. break;
  1371. }
  1372. tipc_mon_rcv(l->net, data, dlen, l->addr,
  1373. &l->mon_state, l->bearer_id);
  1374. /* Send NACK if peer has sent pkts we haven't received yet */
  1375. if (more(peers_snd_nxt, rcv_nxt) && !tipc_link_is_synching(l))
  1376. rcvgap = peers_snd_nxt - l->rcv_nxt;
  1377. if (rcvgap || (msg_probe(hdr)))
  1378. tipc_link_build_proto_msg(l, STATE_MSG, 0, rcvgap,
  1379. 0, 0, xmitq);
  1380. tipc_link_release_pkts(l, ack);
  1381. /* If NACK, retransmit will now start at right position */
  1382. if (gap) {
  1383. rc = tipc_link_retrans(l, ack + 1, ack + gap, xmitq);
  1384. l->stats.recv_nacks++;
  1385. }
  1386. tipc_link_advance_backlog(l, xmitq);
  1387. if (unlikely(!skb_queue_empty(&l->wakeupq)))
  1388. link_prepare_wakeup(l);
  1389. }
  1390. exit:
  1391. kfree_skb(skb);
  1392. return rc;
  1393. }
  1394. /* tipc_link_build_bc_proto_msg() - create broadcast protocol message
  1395. */
  1396. static bool tipc_link_build_bc_proto_msg(struct tipc_link *l, bool bcast,
  1397. u16 peers_snd_nxt,
  1398. struct sk_buff_head *xmitq)
  1399. {
  1400. struct sk_buff *skb;
  1401. struct tipc_msg *hdr;
  1402. struct sk_buff *dfrd_skb = skb_peek(&l->deferdq);
  1403. u16 ack = l->rcv_nxt - 1;
  1404. u16 gap_to = peers_snd_nxt - 1;
  1405. skb = tipc_msg_create(BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE,
  1406. 0, l->addr, tipc_own_addr(l->net), 0, 0, 0);
  1407. if (!skb)
  1408. return false;
  1409. hdr = buf_msg(skb);
  1410. msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
  1411. msg_set_bcast_ack(hdr, ack);
  1412. msg_set_bcgap_after(hdr, ack);
  1413. if (dfrd_skb)
  1414. gap_to = buf_seqno(dfrd_skb) - 1;
  1415. msg_set_bcgap_to(hdr, gap_to);
  1416. msg_set_non_seq(hdr, bcast);
  1417. __skb_queue_tail(xmitq, skb);
  1418. return true;
  1419. }
  1420. /* tipc_link_build_bc_init_msg() - synchronize broadcast link endpoints.
  1421. *
  1422. * Give a newly added peer node the sequence number where it should
  1423. * start receiving and acking broadcast packets.
  1424. */
  1425. static void tipc_link_build_bc_init_msg(struct tipc_link *l,
  1426. struct sk_buff_head *xmitq)
  1427. {
  1428. struct sk_buff_head list;
  1429. __skb_queue_head_init(&list);
  1430. if (!tipc_link_build_bc_proto_msg(l->bc_rcvlink, false, 0, &list))
  1431. return;
  1432. msg_set_bc_ack_invalid(buf_msg(skb_peek(&list)), true);
  1433. tipc_link_xmit(l, &list, xmitq);
  1434. }
  1435. /* tipc_link_bc_init_rcv - receive initial broadcast synch data from peer
  1436. */
  1437. void tipc_link_bc_init_rcv(struct tipc_link *l, struct tipc_msg *hdr)
  1438. {
  1439. int mtyp = msg_type(hdr);
  1440. u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
  1441. if (link_is_up(l))
  1442. return;
  1443. if (msg_user(hdr) == BCAST_PROTOCOL) {
  1444. l->rcv_nxt = peers_snd_nxt;
  1445. l->state = LINK_ESTABLISHED;
  1446. return;
  1447. }
  1448. if (l->peer_caps & TIPC_BCAST_SYNCH)
  1449. return;
  1450. if (msg_peer_node_is_up(hdr))
  1451. return;
  1452. /* Compatibility: accept older, less safe initial synch data */
  1453. if ((mtyp == RESET_MSG) || (mtyp == ACTIVATE_MSG))
  1454. l->rcv_nxt = peers_snd_nxt;
  1455. }
  1456. /* link_bc_retr eval()- check if the indicated range can be retransmitted now
  1457. * - Adjust permitted range if there is overlap with previous retransmission
  1458. */
  1459. static bool link_bc_retr_eval(struct tipc_link *l, u16 *from, u16 *to)
  1460. {
  1461. unsigned long elapsed = jiffies_to_msecs(jiffies - l->prev_retr);
  1462. if (less(*to, *from))
  1463. return false;
  1464. /* New retransmission request */
  1465. if ((elapsed > TIPC_BC_RETR_LIMIT) ||
  1466. less(*to, l->prev_from) || more(*from, l->prev_to)) {
  1467. l->prev_from = *from;
  1468. l->prev_to = *to;
  1469. l->prev_retr = jiffies;
  1470. return true;
  1471. }
  1472. /* Inside range of previous retransmit */
  1473. if (!less(*from, l->prev_from) && !more(*to, l->prev_to))
  1474. return false;
  1475. /* Fully or partially outside previous range => exclude overlap */
  1476. if (less(*from, l->prev_from)) {
  1477. *to = l->prev_from - 1;
  1478. l->prev_from = *from;
  1479. }
  1480. if (more(*to, l->prev_to)) {
  1481. *from = l->prev_to + 1;
  1482. l->prev_to = *to;
  1483. }
  1484. l->prev_retr = jiffies;
  1485. return true;
  1486. }
  1487. /* tipc_link_bc_sync_rcv - update rcv link according to peer's send state
  1488. */
  1489. int tipc_link_bc_sync_rcv(struct tipc_link *l, struct tipc_msg *hdr,
  1490. struct sk_buff_head *xmitq)
  1491. {
  1492. struct tipc_link *snd_l = l->bc_sndlink;
  1493. u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
  1494. u16 from = msg_bcast_ack(hdr) + 1;
  1495. u16 to = from + msg_bc_gap(hdr) - 1;
  1496. int rc = 0;
  1497. if (!link_is_up(l))
  1498. return rc;
  1499. if (!msg_peer_node_is_up(hdr))
  1500. return rc;
  1501. /* Open when peer ackowledges our bcast init msg (pkt #1) */
  1502. if (msg_ack(hdr))
  1503. l->bc_peer_is_up = true;
  1504. if (!l->bc_peer_is_up)
  1505. return rc;
  1506. l->stats.recv_nacks++;
  1507. /* Ignore if peers_snd_nxt goes beyond receive window */
  1508. if (more(peers_snd_nxt, l->rcv_nxt + l->window))
  1509. return rc;
  1510. if (link_bc_retr_eval(snd_l, &from, &to))
  1511. rc = tipc_link_retrans(snd_l, from, to, xmitq);
  1512. l->snd_nxt = peers_snd_nxt;
  1513. if (link_bc_rcv_gap(l))
  1514. rc |= TIPC_LINK_SND_STATE;
  1515. /* Return now if sender supports nack via STATE messages */
  1516. if (l->peer_caps & TIPC_BCAST_STATE_NACK)
  1517. return rc;
  1518. /* Otherwise, be backwards compatible */
  1519. if (!more(peers_snd_nxt, l->rcv_nxt)) {
  1520. l->nack_state = BC_NACK_SND_CONDITIONAL;
  1521. return 0;
  1522. }
  1523. /* Don't NACK if one was recently sent or peeked */
  1524. if (l->nack_state == BC_NACK_SND_SUPPRESS) {
  1525. l->nack_state = BC_NACK_SND_UNCONDITIONAL;
  1526. return 0;
  1527. }
  1528. /* Conditionally delay NACK sending until next synch rcv */
  1529. if (l->nack_state == BC_NACK_SND_CONDITIONAL) {
  1530. l->nack_state = BC_NACK_SND_UNCONDITIONAL;
  1531. if ((peers_snd_nxt - l->rcv_nxt) < TIPC_MIN_LINK_WIN)
  1532. return 0;
  1533. }
  1534. /* Send NACK now but suppress next one */
  1535. tipc_link_build_bc_proto_msg(l, true, peers_snd_nxt, xmitq);
  1536. l->nack_state = BC_NACK_SND_SUPPRESS;
  1537. return 0;
  1538. }
  1539. void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
  1540. struct sk_buff_head *xmitq)
  1541. {
  1542. struct sk_buff *skb, *tmp;
  1543. struct tipc_link *snd_l = l->bc_sndlink;
  1544. if (!link_is_up(l) || !l->bc_peer_is_up)
  1545. return;
  1546. if (!more(acked, l->acked))
  1547. return;
  1548. /* Skip over packets peer has already acked */
  1549. skb_queue_walk(&snd_l->transmq, skb) {
  1550. if (more(buf_seqno(skb), l->acked))
  1551. break;
  1552. }
  1553. /* Update/release the packets peer is acking now */
  1554. skb_queue_walk_from_safe(&snd_l->transmq, skb, tmp) {
  1555. if (more(buf_seqno(skb), acked))
  1556. break;
  1557. if (!--TIPC_SKB_CB(skb)->ackers) {
  1558. __skb_unlink(skb, &snd_l->transmq);
  1559. kfree_skb(skb);
  1560. }
  1561. }
  1562. l->acked = acked;
  1563. tipc_link_advance_backlog(snd_l, xmitq);
  1564. if (unlikely(!skb_queue_empty(&snd_l->wakeupq)))
  1565. link_prepare_wakeup(snd_l);
  1566. }
  1567. /* tipc_link_bc_nack_rcv(): receive broadcast nack message
  1568. * This function is here for backwards compatibility, since
  1569. * no BCAST_PROTOCOL/STATE messages occur from TIPC v2.5.
  1570. */
  1571. int tipc_link_bc_nack_rcv(struct tipc_link *l, struct sk_buff *skb,
  1572. struct sk_buff_head *xmitq)
  1573. {
  1574. struct tipc_msg *hdr = buf_msg(skb);
  1575. u32 dnode = msg_destnode(hdr);
  1576. int mtyp = msg_type(hdr);
  1577. u16 acked = msg_bcast_ack(hdr);
  1578. u16 from = acked + 1;
  1579. u16 to = msg_bcgap_to(hdr);
  1580. u16 peers_snd_nxt = to + 1;
  1581. int rc = 0;
  1582. kfree_skb(skb);
  1583. if (!tipc_link_is_up(l) || !l->bc_peer_is_up)
  1584. return 0;
  1585. if (mtyp != STATE_MSG)
  1586. return 0;
  1587. if (dnode == tipc_own_addr(l->net)) {
  1588. tipc_link_bc_ack_rcv(l, acked, xmitq);
  1589. rc = tipc_link_retrans(l->bc_sndlink, from, to, xmitq);
  1590. l->stats.recv_nacks++;
  1591. return rc;
  1592. }
  1593. /* Msg for other node => suppress own NACK at next sync if applicable */
  1594. if (more(peers_snd_nxt, l->rcv_nxt) && !less(l->rcv_nxt, from))
  1595. l->nack_state = BC_NACK_SND_SUPPRESS;
  1596. return 0;
  1597. }
  1598. void tipc_link_set_queue_limits(struct tipc_link *l, u32 win)
  1599. {
  1600. int max_bulk = TIPC_MAX_PUBLICATIONS / (l->mtu / ITEM_SIZE);
  1601. l->window = win;
  1602. l->backlog[TIPC_LOW_IMPORTANCE].limit = max_t(u16, 50, win);
  1603. l->backlog[TIPC_MEDIUM_IMPORTANCE].limit = max_t(u16, 100, win * 2);
  1604. l->backlog[TIPC_HIGH_IMPORTANCE].limit = max_t(u16, 150, win * 3);
  1605. l->backlog[TIPC_CRITICAL_IMPORTANCE].limit = max_t(u16, 200, win * 4);
  1606. l->backlog[TIPC_SYSTEM_IMPORTANCE].limit = max_bulk;
  1607. }
  1608. /**
  1609. * link_reset_stats - reset link statistics
  1610. * @l: pointer to link
  1611. */
  1612. void tipc_link_reset_stats(struct tipc_link *l)
  1613. {
  1614. memset(&l->stats, 0, sizeof(l->stats));
  1615. }
  1616. static void link_print(struct tipc_link *l, const char *str)
  1617. {
  1618. struct sk_buff *hskb = skb_peek(&l->transmq);
  1619. u16 head = hskb ? msg_seqno(buf_msg(hskb)) : l->snd_nxt - 1;
  1620. u16 tail = l->snd_nxt - 1;
  1621. pr_info("%s Link <%s> state %x\n", str, l->name, l->state);
  1622. pr_info("XMTQ: %u [%u-%u], BKLGQ: %u, SNDNX: %u, RCVNX: %u\n",
  1623. skb_queue_len(&l->transmq), head, tail,
  1624. skb_queue_len(&l->backlogq), l->snd_nxt, l->rcv_nxt);
  1625. }
  1626. /* Parse and validate nested (link) properties valid for media, bearer and link
  1627. */
  1628. int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
  1629. {
  1630. int err;
  1631. err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
  1632. tipc_nl_prop_policy);
  1633. if (err)
  1634. return err;
  1635. if (props[TIPC_NLA_PROP_PRIO]) {
  1636. u32 prio;
  1637. prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
  1638. if (prio > TIPC_MAX_LINK_PRI)
  1639. return -EINVAL;
  1640. }
  1641. if (props[TIPC_NLA_PROP_TOL]) {
  1642. u32 tol;
  1643. tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
  1644. if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
  1645. return -EINVAL;
  1646. }
  1647. if (props[TIPC_NLA_PROP_WIN]) {
  1648. u32 win;
  1649. win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
  1650. if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
  1651. return -EINVAL;
  1652. }
  1653. return 0;
  1654. }
  1655. static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
  1656. {
  1657. int i;
  1658. struct nlattr *stats;
  1659. struct nla_map {
  1660. u32 key;
  1661. u32 val;
  1662. };
  1663. struct nla_map map[] = {
  1664. {TIPC_NLA_STATS_RX_INFO, 0},
  1665. {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
  1666. {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
  1667. {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
  1668. {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
  1669. {TIPC_NLA_STATS_TX_INFO, 0},
  1670. {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
  1671. {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
  1672. {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
  1673. {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
  1674. {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
  1675. s->msg_length_counts : 1},
  1676. {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
  1677. {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
  1678. {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
  1679. {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
  1680. {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
  1681. {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
  1682. {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
  1683. {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
  1684. {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
  1685. {TIPC_NLA_STATS_RX_STATES, s->recv_states},
  1686. {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
  1687. {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
  1688. {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
  1689. {TIPC_NLA_STATS_TX_STATES, s->sent_states},
  1690. {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
  1691. {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
  1692. {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
  1693. {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
  1694. {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
  1695. {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
  1696. {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
  1697. {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
  1698. (s->accu_queue_sz / s->queue_sz_counts) : 0}
  1699. };
  1700. stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
  1701. if (!stats)
  1702. return -EMSGSIZE;
  1703. for (i = 0; i < ARRAY_SIZE(map); i++)
  1704. if (nla_put_u32(skb, map[i].key, map[i].val))
  1705. goto msg_full;
  1706. nla_nest_end(skb, stats);
  1707. return 0;
  1708. msg_full:
  1709. nla_nest_cancel(skb, stats);
  1710. return -EMSGSIZE;
  1711. }
  1712. /* Caller should hold appropriate locks to protect the link */
  1713. int __tipc_nl_add_link(struct net *net, struct tipc_nl_msg *msg,
  1714. struct tipc_link *link, int nlflags)
  1715. {
  1716. int err;
  1717. void *hdr;
  1718. struct nlattr *attrs;
  1719. struct nlattr *prop;
  1720. struct tipc_net *tn = net_generic(net, tipc_net_id);
  1721. hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
  1722. nlflags, TIPC_NL_LINK_GET);
  1723. if (!hdr)
  1724. return -EMSGSIZE;
  1725. attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
  1726. if (!attrs)
  1727. goto msg_full;
  1728. if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
  1729. goto attr_msg_full;
  1730. if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST,
  1731. tipc_cluster_mask(tn->own_addr)))
  1732. goto attr_msg_full;
  1733. if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->mtu))
  1734. goto attr_msg_full;
  1735. if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->stats.recv_pkts))
  1736. goto attr_msg_full;
  1737. if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->stats.sent_pkts))
  1738. goto attr_msg_full;
  1739. if (tipc_link_is_up(link))
  1740. if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
  1741. goto attr_msg_full;
  1742. if (link->active)
  1743. if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
  1744. goto attr_msg_full;
  1745. prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
  1746. if (!prop)
  1747. goto attr_msg_full;
  1748. if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
  1749. goto prop_msg_full;
  1750. if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
  1751. goto prop_msg_full;
  1752. if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
  1753. link->window))
  1754. goto prop_msg_full;
  1755. if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
  1756. goto prop_msg_full;
  1757. nla_nest_end(msg->skb, prop);
  1758. err = __tipc_nl_add_stats(msg->skb, &link->stats);
  1759. if (err)
  1760. goto attr_msg_full;
  1761. nla_nest_end(msg->skb, attrs);
  1762. genlmsg_end(msg->skb, hdr);
  1763. return 0;
  1764. prop_msg_full:
  1765. nla_nest_cancel(msg->skb, prop);
  1766. attr_msg_full:
  1767. nla_nest_cancel(msg->skb, attrs);
  1768. msg_full:
  1769. genlmsg_cancel(msg->skb, hdr);
  1770. return -EMSGSIZE;
  1771. }
  1772. static int __tipc_nl_add_bc_link_stat(struct sk_buff *skb,
  1773. struct tipc_stats *stats)
  1774. {
  1775. int i;
  1776. struct nlattr *nest;
  1777. struct nla_map {
  1778. __u32 key;
  1779. __u32 val;
  1780. };
  1781. struct nla_map map[] = {
  1782. {TIPC_NLA_STATS_RX_INFO, stats->recv_pkts},
  1783. {TIPC_NLA_STATS_RX_FRAGMENTS, stats->recv_fragments},
  1784. {TIPC_NLA_STATS_RX_FRAGMENTED, stats->recv_fragmented},
  1785. {TIPC_NLA_STATS_RX_BUNDLES, stats->recv_bundles},
  1786. {TIPC_NLA_STATS_RX_BUNDLED, stats->recv_bundled},
  1787. {TIPC_NLA_STATS_TX_INFO, stats->sent_pkts},
  1788. {TIPC_NLA_STATS_TX_FRAGMENTS, stats->sent_fragments},
  1789. {TIPC_NLA_STATS_TX_FRAGMENTED, stats->sent_fragmented},
  1790. {TIPC_NLA_STATS_TX_BUNDLES, stats->sent_bundles},
  1791. {TIPC_NLA_STATS_TX_BUNDLED, stats->sent_bundled},
  1792. {TIPC_NLA_STATS_RX_NACKS, stats->recv_nacks},
  1793. {TIPC_NLA_STATS_RX_DEFERRED, stats->deferred_recv},
  1794. {TIPC_NLA_STATS_TX_NACKS, stats->sent_nacks},
  1795. {TIPC_NLA_STATS_TX_ACKS, stats->sent_acks},
  1796. {TIPC_NLA_STATS_RETRANSMITTED, stats->retransmitted},
  1797. {TIPC_NLA_STATS_DUPLICATES, stats->duplicates},
  1798. {TIPC_NLA_STATS_LINK_CONGS, stats->link_congs},
  1799. {TIPC_NLA_STATS_MAX_QUEUE, stats->max_queue_sz},
  1800. {TIPC_NLA_STATS_AVG_QUEUE, stats->queue_sz_counts ?
  1801. (stats->accu_queue_sz / stats->queue_sz_counts) : 0}
  1802. };
  1803. nest = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
  1804. if (!nest)
  1805. return -EMSGSIZE;
  1806. for (i = 0; i < ARRAY_SIZE(map); i++)
  1807. if (nla_put_u32(skb, map[i].key, map[i].val))
  1808. goto msg_full;
  1809. nla_nest_end(skb, nest);
  1810. return 0;
  1811. msg_full:
  1812. nla_nest_cancel(skb, nest);
  1813. return -EMSGSIZE;
  1814. }
  1815. int tipc_nl_add_bc_link(struct net *net, struct tipc_nl_msg *msg)
  1816. {
  1817. int err;
  1818. void *hdr;
  1819. struct nlattr *attrs;
  1820. struct nlattr *prop;
  1821. struct tipc_net *tn = net_generic(net, tipc_net_id);
  1822. struct tipc_link *bcl = tn->bcl;
  1823. if (!bcl)
  1824. return 0;
  1825. tipc_bcast_lock(net);
  1826. hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
  1827. NLM_F_MULTI, TIPC_NL_LINK_GET);
  1828. if (!hdr) {
  1829. tipc_bcast_unlock(net);
  1830. return -EMSGSIZE;
  1831. }
  1832. attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
  1833. if (!attrs)
  1834. goto msg_full;
  1835. /* The broadcast link is always up */
  1836. if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
  1837. goto attr_msg_full;
  1838. if (nla_put_flag(msg->skb, TIPC_NLA_LINK_BROADCAST))
  1839. goto attr_msg_full;
  1840. if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, bcl->name))
  1841. goto attr_msg_full;
  1842. if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, 0))
  1843. goto attr_msg_full;
  1844. if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, 0))
  1845. goto attr_msg_full;
  1846. prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
  1847. if (!prop)
  1848. goto attr_msg_full;
  1849. if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bcl->window))
  1850. goto prop_msg_full;
  1851. nla_nest_end(msg->skb, prop);
  1852. err = __tipc_nl_add_bc_link_stat(msg->skb, &bcl->stats);
  1853. if (err)
  1854. goto attr_msg_full;
  1855. tipc_bcast_unlock(net);
  1856. nla_nest_end(msg->skb, attrs);
  1857. genlmsg_end(msg->skb, hdr);
  1858. return 0;
  1859. prop_msg_full:
  1860. nla_nest_cancel(msg->skb, prop);
  1861. attr_msg_full:
  1862. nla_nest_cancel(msg->skb, attrs);
  1863. msg_full:
  1864. tipc_bcast_unlock(net);
  1865. genlmsg_cancel(msg->skb, hdr);
  1866. return -EMSGSIZE;
  1867. }
  1868. void tipc_link_set_tolerance(struct tipc_link *l, u32 tol,
  1869. struct sk_buff_head *xmitq)
  1870. {
  1871. l->tolerance = tol;
  1872. tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, tol, 0, xmitq);
  1873. }
  1874. void tipc_link_set_prio(struct tipc_link *l, u32 prio,
  1875. struct sk_buff_head *xmitq)
  1876. {
  1877. l->priority = prio;
  1878. tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, prio, xmitq);
  1879. }
  1880. void tipc_link_set_abort_limit(struct tipc_link *l, u32 limit)
  1881. {
  1882. l->abort_limit = limit;
  1883. }