bond_3ad.c 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502
  1. /*
  2. * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc., 59
  16. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. *
  18. * The full GNU General Public License is included in this distribution in the
  19. * file called LICENSE.
  20. *
  21. */
  22. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  23. #include <linux/skbuff.h>
  24. #include <linux/if_ether.h>
  25. #include <linux/netdevice.h>
  26. #include <linux/spinlock.h>
  27. #include <linux/ethtool.h>
  28. #include <linux/etherdevice.h>
  29. #include <linux/if_bonding.h>
  30. #include <linux/pkt_sched.h>
  31. #include <net/net_namespace.h>
  32. #include "bonding.h"
  33. #include "bond_3ad.h"
  34. // General definitions
  35. #define AD_SHORT_TIMEOUT 1
  36. #define AD_LONG_TIMEOUT 0
  37. #define AD_STANDBY 0x2
  38. #define AD_MAX_TX_IN_SECOND 3
  39. #define AD_COLLECTOR_MAX_DELAY 0
  40. // Timer definitions(43.4.4 in the 802.3ad standard)
  41. #define AD_FAST_PERIODIC_TIME 1
  42. #define AD_SLOW_PERIODIC_TIME 30
  43. #define AD_SHORT_TIMEOUT_TIME (3*AD_FAST_PERIODIC_TIME)
  44. #define AD_LONG_TIMEOUT_TIME (3*AD_SLOW_PERIODIC_TIME)
  45. #define AD_CHURN_DETECTION_TIME 60
  46. #define AD_AGGREGATE_WAIT_TIME 2
  47. // Port state definitions(43.4.2.2 in the 802.3ad standard)
  48. #define AD_STATE_LACP_ACTIVITY 0x1
  49. #define AD_STATE_LACP_TIMEOUT 0x2
  50. #define AD_STATE_AGGREGATION 0x4
  51. #define AD_STATE_SYNCHRONIZATION 0x8
  52. #define AD_STATE_COLLECTING 0x10
  53. #define AD_STATE_DISTRIBUTING 0x20
  54. #define AD_STATE_DEFAULTED 0x40
  55. #define AD_STATE_EXPIRED 0x80
  56. // Port Variables definitions used by the State Machines(43.4.7 in the 802.3ad standard)
  57. #define AD_PORT_BEGIN 0x1
  58. #define AD_PORT_LACP_ENABLED 0x2
  59. #define AD_PORT_ACTOR_CHURN 0x4
  60. #define AD_PORT_PARTNER_CHURN 0x8
  61. #define AD_PORT_READY 0x10
  62. #define AD_PORT_READY_N 0x20
  63. #define AD_PORT_MATCHED 0x40
  64. #define AD_PORT_STANDBY 0x80
  65. #define AD_PORT_SELECTED 0x100
  66. #define AD_PORT_MOVED 0x200
  67. // Port Key definitions
  68. // key is determined according to the link speed, duplex and
  69. // user key(which is yet not supported)
  70. // ------------------------------------------------------------
  71. // Port key : | User key | Speed |Duplex|
  72. // ------------------------------------------------------------
  73. // 16 6 1 0
  74. #define AD_DUPLEX_KEY_BITS 0x1
  75. #define AD_SPEED_KEY_BITS 0x3E
  76. #define AD_USER_KEY_BITS 0xFFC0
  77. //dalloun
  78. #define AD_LINK_SPEED_BITMASK_1MBPS 0x1
  79. #define AD_LINK_SPEED_BITMASK_10MBPS 0x2
  80. #define AD_LINK_SPEED_BITMASK_100MBPS 0x4
  81. #define AD_LINK_SPEED_BITMASK_1000MBPS 0x8
  82. #define AD_LINK_SPEED_BITMASK_10000MBPS 0x10
  83. //endalloun
  84. // compare MAC addresses
  85. #define MAC_ADDRESS_COMPARE(A, B) memcmp(A, B, ETH_ALEN)
  86. static struct mac_addr null_mac_addr = { { 0, 0, 0, 0, 0, 0 } };
  87. static u16 ad_ticks_per_sec;
  88. static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
  89. static const u8 lacpdu_mcast_addr[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
  90. // ================= main 802.3ad protocol functions ==================
  91. static int ad_lacpdu_send(struct port *port);
  92. static int ad_marker_send(struct port *port, struct bond_marker *marker);
  93. static void ad_mux_machine(struct port *port);
  94. static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port);
  95. static void ad_tx_machine(struct port *port);
  96. static void ad_periodic_machine(struct port *port);
  97. static void ad_port_selection_logic(struct port *port);
  98. static void ad_agg_selection_logic(struct aggregator *aggregator);
  99. static void ad_clear_agg(struct aggregator *aggregator);
  100. static void ad_initialize_agg(struct aggregator *aggregator);
  101. static void ad_initialize_port(struct port *port, int lacp_fast);
  102. static void ad_enable_collecting_distributing(struct port *port);
  103. static void ad_disable_collecting_distributing(struct port *port);
  104. static void ad_marker_info_received(struct bond_marker *marker_info, struct port *port);
  105. static void ad_marker_response_received(struct bond_marker *marker, struct port *port);
  106. /////////////////////////////////////////////////////////////////////////////////
  107. // ================= api to bonding and kernel code ==================
  108. /////////////////////////////////////////////////////////////////////////////////
  109. /**
  110. * __get_bond_by_port - get the port's bonding struct
  111. * @port: the port we're looking at
  112. *
  113. * Return @port's bonding struct, or %NULL if it can't be found.
  114. */
  115. static inline struct bonding *__get_bond_by_port(struct port *port)
  116. {
  117. if (port->slave == NULL)
  118. return NULL;
  119. return bond_get_bond_by_slave(port->slave);
  120. }
  121. /**
  122. * __get_first_port - get the first port in the bond
  123. * @bond: the bond we're looking at
  124. *
  125. * Return the port of the first slave in @bond, or %NULL if it can't be found.
  126. */
  127. static inline struct port *__get_first_port(struct bonding *bond)
  128. {
  129. if (bond->slave_cnt == 0)
  130. return NULL;
  131. return &(SLAVE_AD_INFO(bond->first_slave).port);
  132. }
  133. /**
  134. * __get_next_port - get the next port in the bond
  135. * @port: the port we're looking at
  136. *
  137. * Return the port of the slave that is next in line of @port's slave in the
  138. * bond, or %NULL if it can't be found.
  139. */
  140. static inline struct port *__get_next_port(struct port *port)
  141. {
  142. struct bonding *bond = __get_bond_by_port(port);
  143. struct slave *slave = port->slave;
  144. // If there's no bond for this port, or this is the last slave
  145. if ((bond == NULL) || (slave->next == bond->first_slave))
  146. return NULL;
  147. return &(SLAVE_AD_INFO(slave->next).port);
  148. }
  149. /**
  150. * __get_first_agg - get the first aggregator in the bond
  151. * @bond: the bond we're looking at
  152. *
  153. * Return the aggregator of the first slave in @bond, or %NULL if it can't be
  154. * found.
  155. */
  156. static inline struct aggregator *__get_first_agg(struct port *port)
  157. {
  158. struct bonding *bond = __get_bond_by_port(port);
  159. // If there's no bond for this port, or bond has no slaves
  160. if ((bond == NULL) || (bond->slave_cnt == 0))
  161. return NULL;
  162. return &(SLAVE_AD_INFO(bond->first_slave).aggregator);
  163. }
  164. /**
  165. * __get_next_agg - get the next aggregator in the bond
  166. * @aggregator: the aggregator we're looking at
  167. *
  168. * Return the aggregator of the slave that is next in line of @aggregator's
  169. * slave in the bond, or %NULL if it can't be found.
  170. */
  171. static inline struct aggregator *__get_next_agg(struct aggregator *aggregator)
  172. {
  173. struct slave *slave = aggregator->slave;
  174. struct bonding *bond = bond_get_bond_by_slave(slave);
  175. // If there's no bond for this aggregator, or this is the last slave
  176. if ((bond == NULL) || (slave->next == bond->first_slave))
  177. return NULL;
  178. return &(SLAVE_AD_INFO(slave->next).aggregator);
  179. }
  180. /*
  181. * __agg_has_partner
  182. *
  183. * Return nonzero if aggregator has a partner (denoted by a non-zero ether
  184. * address for the partner). Return 0 if not.
  185. */
  186. static inline int __agg_has_partner(struct aggregator *agg)
  187. {
  188. return !is_zero_ether_addr(agg->partner_system.mac_addr_value);
  189. }
  190. /**
  191. * __disable_port - disable the port's slave
  192. * @port: the port we're looking at
  193. *
  194. */
  195. static inline void __disable_port(struct port *port)
  196. {
  197. bond_set_slave_inactive_flags(port->slave);
  198. }
  199. /**
  200. * __enable_port - enable the port's slave, if it's up
  201. * @port: the port we're looking at
  202. *
  203. */
  204. static inline void __enable_port(struct port *port)
  205. {
  206. struct slave *slave = port->slave;
  207. if ((slave->link == BOND_LINK_UP) && IS_UP(slave->dev))
  208. bond_set_slave_active_flags(slave);
  209. }
  210. /**
  211. * __port_is_enabled - check if the port's slave is in active state
  212. * @port: the port we're looking at
  213. *
  214. */
  215. static inline int __port_is_enabled(struct port *port)
  216. {
  217. return bond_is_active_slave(port->slave);
  218. }
  219. /**
  220. * __get_agg_selection_mode - get the aggregator selection mode
  221. * @port: the port we're looking at
  222. *
  223. * Get the aggregator selection mode. Can be %STABLE, %BANDWIDTH or %COUNT.
  224. */
  225. static inline u32 __get_agg_selection_mode(struct port *port)
  226. {
  227. struct bonding *bond = __get_bond_by_port(port);
  228. if (bond == NULL)
  229. return BOND_AD_STABLE;
  230. return bond->params.ad_select;
  231. }
  232. /**
  233. * __check_agg_selection_timer - check if the selection timer has expired
  234. * @port: the port we're looking at
  235. *
  236. */
  237. static inline int __check_agg_selection_timer(struct port *port)
  238. {
  239. struct bonding *bond = __get_bond_by_port(port);
  240. if (bond == NULL)
  241. return 0;
  242. return BOND_AD_INFO(bond).agg_select_timer ? 1 : 0;
  243. }
  244. /**
  245. * __get_state_machine_lock - lock the port's state machines
  246. * @port: the port we're looking at
  247. *
  248. */
  249. static inline void __get_state_machine_lock(struct port *port)
  250. {
  251. spin_lock_bh(&(SLAVE_AD_INFO(port->slave).state_machine_lock));
  252. }
  253. /**
  254. * __release_state_machine_lock - unlock the port's state machines
  255. * @port: the port we're looking at
  256. *
  257. */
  258. static inline void __release_state_machine_lock(struct port *port)
  259. {
  260. spin_unlock_bh(&(SLAVE_AD_INFO(port->slave).state_machine_lock));
  261. }
  262. /**
  263. * __get_link_speed - get a port's speed
  264. * @port: the port we're looking at
  265. *
  266. * Return @port's speed in 802.3ad bitmask format. i.e. one of:
  267. * 0,
  268. * %AD_LINK_SPEED_BITMASK_10MBPS,
  269. * %AD_LINK_SPEED_BITMASK_100MBPS,
  270. * %AD_LINK_SPEED_BITMASK_1000MBPS,
  271. * %AD_LINK_SPEED_BITMASK_10000MBPS
  272. */
  273. static u16 __get_link_speed(struct port *port)
  274. {
  275. struct slave *slave = port->slave;
  276. u16 speed;
  277. /* this if covers only a special case: when the configuration starts with
  278. * link down, it sets the speed to 0.
  279. * This is done in spite of the fact that the e100 driver reports 0 to be
  280. * compatible with MVT in the future.*/
  281. if (slave->link != BOND_LINK_UP)
  282. speed = 0;
  283. else {
  284. switch (slave->speed) {
  285. case SPEED_10:
  286. speed = AD_LINK_SPEED_BITMASK_10MBPS;
  287. break;
  288. case SPEED_100:
  289. speed = AD_LINK_SPEED_BITMASK_100MBPS;
  290. break;
  291. case SPEED_1000:
  292. speed = AD_LINK_SPEED_BITMASK_1000MBPS;
  293. break;
  294. case SPEED_10000:
  295. speed = AD_LINK_SPEED_BITMASK_10000MBPS;
  296. break;
  297. default:
  298. speed = 0; // unknown speed value from ethtool. shouldn't happen
  299. break;
  300. }
  301. }
  302. pr_debug("Port %d Received link speed %d update from adapter\n",
  303. port->actor_port_number, speed);
  304. return speed;
  305. }
  306. /**
  307. * __get_duplex - get a port's duplex
  308. * @port: the port we're looking at
  309. *
  310. * Return @port's duplex in 802.3ad bitmask format. i.e.:
  311. * 0x01 if in full duplex
  312. * 0x00 otherwise
  313. */
  314. static u8 __get_duplex(struct port *port)
  315. {
  316. struct slave *slave = port->slave;
  317. u8 retval;
  318. // handling a special case: when the configuration starts with
  319. // link down, it sets the duplex to 0.
  320. if (slave->link != BOND_LINK_UP)
  321. retval = 0x0;
  322. else {
  323. switch (slave->duplex) {
  324. case DUPLEX_FULL:
  325. retval = 0x1;
  326. pr_debug("Port %d Received status full duplex update from adapter\n",
  327. port->actor_port_number);
  328. break;
  329. case DUPLEX_HALF:
  330. default:
  331. retval = 0x0;
  332. pr_debug("Port %d Received status NOT full duplex update from adapter\n",
  333. port->actor_port_number);
  334. break;
  335. }
  336. }
  337. return retval;
  338. }
  339. /**
  340. * __initialize_port_locks - initialize a port's STATE machine spinlock
  341. * @port: the port we're looking at
  342. *
  343. */
  344. static inline void __initialize_port_locks(struct port *port)
  345. {
  346. // make sure it isn't called twice
  347. spin_lock_init(&(SLAVE_AD_INFO(port->slave).state_machine_lock));
  348. }
  349. //conversions
  350. /**
  351. * __ad_timer_to_ticks - convert a given timer type to AD module ticks
  352. * @timer_type: which timer to operate
  353. * @par: timer parameter. see below
  354. *
  355. * If @timer_type is %current_while_timer, @par indicates long/short timer.
  356. * If @timer_type is %periodic_timer, @par is one of %FAST_PERIODIC_TIME,
  357. * %SLOW_PERIODIC_TIME.
  358. */
  359. static u16 __ad_timer_to_ticks(u16 timer_type, u16 par)
  360. {
  361. u16 retval = 0; /* to silence the compiler */
  362. switch (timer_type) {
  363. case AD_CURRENT_WHILE_TIMER: // for rx machine usage
  364. if (par)
  365. retval = (AD_SHORT_TIMEOUT_TIME*ad_ticks_per_sec); // short timeout
  366. else
  367. retval = (AD_LONG_TIMEOUT_TIME*ad_ticks_per_sec); // long timeout
  368. break;
  369. case AD_ACTOR_CHURN_TIMER: // for local churn machine
  370. retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
  371. break;
  372. case AD_PERIODIC_TIMER: // for periodic machine
  373. retval = (par*ad_ticks_per_sec); // long timeout
  374. break;
  375. case AD_PARTNER_CHURN_TIMER: // for remote churn machine
  376. retval = (AD_CHURN_DETECTION_TIME*ad_ticks_per_sec);
  377. break;
  378. case AD_WAIT_WHILE_TIMER: // for selection machine
  379. retval = (AD_AGGREGATE_WAIT_TIME*ad_ticks_per_sec);
  380. break;
  381. }
  382. return retval;
  383. }
  384. /////////////////////////////////////////////////////////////////////////////////
  385. // ================= ad_rx_machine helper functions ==================
  386. /////////////////////////////////////////////////////////////////////////////////
  387. /**
  388. * __choose_matched - update a port's matched variable from a received lacpdu
  389. * @lacpdu: the lacpdu we've received
  390. * @port: the port we're looking at
  391. *
  392. * Update the value of the matched variable, using parameter values from a
  393. * newly received lacpdu. Parameter values for the partner carried in the
  394. * received PDU are compared with the corresponding operational parameter
  395. * values for the actor. Matched is set to TRUE if all of these parameters
  396. * match and the PDU parameter partner_state.aggregation has the same value as
  397. * actor_oper_port_state.aggregation and lacp will actively maintain the link
  398. * in the aggregation. Matched is also set to TRUE if the value of
  399. * actor_state.aggregation in the received PDU is set to FALSE, i.e., indicates
  400. * an individual link and lacp will actively maintain the link. Otherwise,
  401. * matched is set to FALSE. LACP is considered to be actively maintaining the
  402. * link if either the PDU's actor_state.lacp_activity variable is TRUE or both
  403. * the actor's actor_oper_port_state.lacp_activity and the PDU's
  404. * partner_state.lacp_activity variables are TRUE.
  405. *
  406. * Note: the AD_PORT_MATCHED "variable" is not specified by 802.3ad; it is
  407. * used here to implement the language from 802.3ad 43.4.9 that requires
  408. * recordPDU to "match" the LACPDU parameters to the stored values.
  409. */
  410. static void __choose_matched(struct lacpdu *lacpdu, struct port *port)
  411. {
  412. // check if all parameters are alike
  413. if (((ntohs(lacpdu->partner_port) == port->actor_port_number) &&
  414. (ntohs(lacpdu->partner_port_priority) == port->actor_port_priority) &&
  415. !MAC_ADDRESS_COMPARE(&(lacpdu->partner_system), &(port->actor_system)) &&
  416. (ntohs(lacpdu->partner_system_priority) == port->actor_system_priority) &&
  417. (ntohs(lacpdu->partner_key) == port->actor_oper_port_key) &&
  418. ((lacpdu->partner_state & AD_STATE_AGGREGATION) == (port->actor_oper_port_state & AD_STATE_AGGREGATION))) ||
  419. // or this is individual link(aggregation == FALSE)
  420. ((lacpdu->actor_state & AD_STATE_AGGREGATION) == 0)
  421. ) {
  422. // update the state machine Matched variable
  423. port->sm_vars |= AD_PORT_MATCHED;
  424. } else {
  425. port->sm_vars &= ~AD_PORT_MATCHED;
  426. }
  427. }
  428. /**
  429. * __record_pdu - record parameters from a received lacpdu
  430. * @lacpdu: the lacpdu we've received
  431. * @port: the port we're looking at
  432. *
  433. * Record the parameter values for the Actor carried in a received lacpdu as
  434. * the current partner operational parameter values and sets
  435. * actor_oper_port_state.defaulted to FALSE.
  436. */
  437. static void __record_pdu(struct lacpdu *lacpdu, struct port *port)
  438. {
  439. if (lacpdu && port) {
  440. struct port_params *partner = &port->partner_oper;
  441. __choose_matched(lacpdu, port);
  442. // record the new parameter values for the partner operational
  443. partner->port_number = ntohs(lacpdu->actor_port);
  444. partner->port_priority = ntohs(lacpdu->actor_port_priority);
  445. partner->system = lacpdu->actor_system;
  446. partner->system_priority = ntohs(lacpdu->actor_system_priority);
  447. partner->key = ntohs(lacpdu->actor_key);
  448. partner->port_state = lacpdu->actor_state;
  449. // set actor_oper_port_state.defaulted to FALSE
  450. port->actor_oper_port_state &= ~AD_STATE_DEFAULTED;
  451. // set the partner sync. to on if the partner is sync. and the port is matched
  452. if ((port->sm_vars & AD_PORT_MATCHED)
  453. && (lacpdu->actor_state & AD_STATE_SYNCHRONIZATION))
  454. partner->port_state |= AD_STATE_SYNCHRONIZATION;
  455. else
  456. partner->port_state &= ~AD_STATE_SYNCHRONIZATION;
  457. }
  458. }
  459. /**
  460. * __record_default - record default parameters
  461. * @port: the port we're looking at
  462. *
  463. * This function records the default parameter values for the partner carried
  464. * in the Partner Admin parameters as the current partner operational parameter
  465. * values and sets actor_oper_port_state.defaulted to TRUE.
  466. */
  467. static void __record_default(struct port *port)
  468. {
  469. if (port) {
  470. // record the partner admin parameters
  471. memcpy(&port->partner_oper, &port->partner_admin,
  472. sizeof(struct port_params));
  473. // set actor_oper_port_state.defaulted to true
  474. port->actor_oper_port_state |= AD_STATE_DEFAULTED;
  475. }
  476. }
  477. /**
  478. * __update_selected - update a port's Selected variable from a received lacpdu
  479. * @lacpdu: the lacpdu we've received
  480. * @port: the port we're looking at
  481. *
  482. * Update the value of the selected variable, using parameter values from a
  483. * newly received lacpdu. The parameter values for the Actor carried in the
  484. * received PDU are compared with the corresponding operational parameter
  485. * values for the ports partner. If one or more of the comparisons shows that
  486. * the value(s) received in the PDU differ from the current operational values,
  487. * then selected is set to FALSE and actor_oper_port_state.synchronization is
  488. * set to out_of_sync. Otherwise, selected remains unchanged.
  489. */
  490. static void __update_selected(struct lacpdu *lacpdu, struct port *port)
  491. {
  492. if (lacpdu && port) {
  493. const struct port_params *partner = &port->partner_oper;
  494. // check if any parameter is different
  495. if (ntohs(lacpdu->actor_port) != partner->port_number ||
  496. ntohs(lacpdu->actor_port_priority) != partner->port_priority ||
  497. MAC_ADDRESS_COMPARE(&lacpdu->actor_system, &partner->system) ||
  498. ntohs(lacpdu->actor_system_priority) != partner->system_priority ||
  499. ntohs(lacpdu->actor_key) != partner->key ||
  500. (lacpdu->actor_state & AD_STATE_AGGREGATION) != (partner->port_state & AD_STATE_AGGREGATION)) {
  501. // update the state machine Selected variable
  502. port->sm_vars &= ~AD_PORT_SELECTED;
  503. }
  504. }
  505. }
  506. /**
  507. * __update_default_selected - update a port's Selected variable from Partner
  508. * @port: the port we're looking at
  509. *
  510. * This function updates the value of the selected variable, using the partner
  511. * administrative parameter values. The administrative values are compared with
  512. * the corresponding operational parameter values for the partner. If one or
  513. * more of the comparisons shows that the administrative value(s) differ from
  514. * the current operational values, then Selected is set to FALSE and
  515. * actor_oper_port_state.synchronization is set to OUT_OF_SYNC. Otherwise,
  516. * Selected remains unchanged.
  517. */
  518. static void __update_default_selected(struct port *port)
  519. {
  520. if (port) {
  521. const struct port_params *admin = &port->partner_admin;
  522. const struct port_params *oper = &port->partner_oper;
  523. // check if any parameter is different
  524. if (admin->port_number != oper->port_number ||
  525. admin->port_priority != oper->port_priority ||
  526. MAC_ADDRESS_COMPARE(&admin->system, &oper->system) ||
  527. admin->system_priority != oper->system_priority ||
  528. admin->key != oper->key ||
  529. (admin->port_state & AD_STATE_AGGREGATION)
  530. != (oper->port_state & AD_STATE_AGGREGATION)) {
  531. // update the state machine Selected variable
  532. port->sm_vars &= ~AD_PORT_SELECTED;
  533. }
  534. }
  535. }
  536. /**
  537. * __update_ntt - update a port's ntt variable from a received lacpdu
  538. * @lacpdu: the lacpdu we've received
  539. * @port: the port we're looking at
  540. *
  541. * Updates the value of the ntt variable, using parameter values from a newly
  542. * received lacpdu. The parameter values for the partner carried in the
  543. * received PDU are compared with the corresponding operational parameter
  544. * values for the Actor. If one or more of the comparisons shows that the
  545. * value(s) received in the PDU differ from the current operational values,
  546. * then ntt is set to TRUE. Otherwise, ntt remains unchanged.
  547. */
  548. static void __update_ntt(struct lacpdu *lacpdu, struct port *port)
  549. {
  550. // validate lacpdu and port
  551. if (lacpdu && port) {
  552. // check if any parameter is different
  553. if ((ntohs(lacpdu->partner_port) != port->actor_port_number) ||
  554. (ntohs(lacpdu->partner_port_priority) != port->actor_port_priority) ||
  555. MAC_ADDRESS_COMPARE(&(lacpdu->partner_system), &(port->actor_system)) ||
  556. (ntohs(lacpdu->partner_system_priority) != port->actor_system_priority) ||
  557. (ntohs(lacpdu->partner_key) != port->actor_oper_port_key) ||
  558. ((lacpdu->partner_state & AD_STATE_LACP_ACTIVITY) != (port->actor_oper_port_state & AD_STATE_LACP_ACTIVITY)) ||
  559. ((lacpdu->partner_state & AD_STATE_LACP_TIMEOUT) != (port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT)) ||
  560. ((lacpdu->partner_state & AD_STATE_SYNCHRONIZATION) != (port->actor_oper_port_state & AD_STATE_SYNCHRONIZATION)) ||
  561. ((lacpdu->partner_state & AD_STATE_AGGREGATION) != (port->actor_oper_port_state & AD_STATE_AGGREGATION))
  562. ) {
  563. port->ntt = true;
  564. }
  565. }
  566. }
  567. /**
  568. * __attach_bond_to_agg
  569. * @port: the port we're looking at
  570. *
  571. * Handle the attaching of the port's control parser/multiplexer and the
  572. * aggregator. This function does nothing since the parser/multiplexer of the
  573. * receive and the parser/multiplexer of the aggregator are already combined.
  574. */
  575. static void __attach_bond_to_agg(struct port *port)
  576. {
  577. port = NULL; /* just to satisfy the compiler */
  578. // This function does nothing since the parser/multiplexer of the receive
  579. // and the parser/multiplexer of the aggregator are already combined
  580. }
  581. /**
  582. * __detach_bond_from_agg
  583. * @port: the port we're looking at
  584. *
  585. * Handle the detaching of the port's control parser/multiplexer from the
  586. * aggregator. This function does nothing since the parser/multiplexer of the
  587. * receive and the parser/multiplexer of the aggregator are already combined.
  588. */
  589. static void __detach_bond_from_agg(struct port *port)
  590. {
  591. port = NULL; /* just to satisfy the compiler */
  592. // This function does nothing sience the parser/multiplexer of the receive
  593. // and the parser/multiplexer of the aggregator are already combined
  594. }
  595. /**
  596. * __agg_ports_are_ready - check if all ports in an aggregator are ready
  597. * @aggregator: the aggregator we're looking at
  598. *
  599. */
  600. static int __agg_ports_are_ready(struct aggregator *aggregator)
  601. {
  602. struct port *port;
  603. int retval = 1;
  604. if (aggregator) {
  605. // scan all ports in this aggregator to verfy if they are all ready
  606. for (port = aggregator->lag_ports;
  607. port;
  608. port = port->next_port_in_aggregator) {
  609. if (!(port->sm_vars & AD_PORT_READY_N)) {
  610. retval = 0;
  611. break;
  612. }
  613. }
  614. }
  615. return retval;
  616. }
  617. /**
  618. * __set_agg_ports_ready - set value of Ready bit in all ports of an aggregator
  619. * @aggregator: the aggregator we're looking at
  620. * @val: Should the ports' ready bit be set on or off
  621. *
  622. */
  623. static void __set_agg_ports_ready(struct aggregator *aggregator, int val)
  624. {
  625. struct port *port;
  626. for (port = aggregator->lag_ports; port;
  627. port = port->next_port_in_aggregator) {
  628. if (val)
  629. port->sm_vars |= AD_PORT_READY;
  630. else
  631. port->sm_vars &= ~AD_PORT_READY;
  632. }
  633. }
  634. /**
  635. * __get_agg_bandwidth - get the total bandwidth of an aggregator
  636. * @aggregator: the aggregator we're looking at
  637. *
  638. */
  639. static u32 __get_agg_bandwidth(struct aggregator *aggregator)
  640. {
  641. u32 bandwidth = 0;
  642. if (aggregator->num_of_ports) {
  643. switch (__get_link_speed(aggregator->lag_ports)) {
  644. case AD_LINK_SPEED_BITMASK_1MBPS:
  645. bandwidth = aggregator->num_of_ports;
  646. break;
  647. case AD_LINK_SPEED_BITMASK_10MBPS:
  648. bandwidth = aggregator->num_of_ports * 10;
  649. break;
  650. case AD_LINK_SPEED_BITMASK_100MBPS:
  651. bandwidth = aggregator->num_of_ports * 100;
  652. break;
  653. case AD_LINK_SPEED_BITMASK_1000MBPS:
  654. bandwidth = aggregator->num_of_ports * 1000;
  655. break;
  656. case AD_LINK_SPEED_BITMASK_10000MBPS:
  657. bandwidth = aggregator->num_of_ports * 10000;
  658. break;
  659. default:
  660. bandwidth = 0; /*to silence the compiler ....*/
  661. }
  662. }
  663. return bandwidth;
  664. }
  665. /**
  666. * __get_active_agg - get the current active aggregator
  667. * @aggregator: the aggregator we're looking at
  668. *
  669. */
  670. static struct aggregator *__get_active_agg(struct aggregator *aggregator)
  671. {
  672. struct aggregator *retval = NULL;
  673. for (; aggregator; aggregator = __get_next_agg(aggregator)) {
  674. if (aggregator->is_active) {
  675. retval = aggregator;
  676. break;
  677. }
  678. }
  679. return retval;
  680. }
  681. /**
  682. * __update_lacpdu_from_port - update a port's lacpdu fields
  683. * @port: the port we're looking at
  684. *
  685. */
  686. static inline void __update_lacpdu_from_port(struct port *port)
  687. {
  688. struct lacpdu *lacpdu = &port->lacpdu;
  689. const struct port_params *partner = &port->partner_oper;
  690. /* update current actual Actor parameters */
  691. /* lacpdu->subtype initialized
  692. * lacpdu->version_number initialized
  693. * lacpdu->tlv_type_actor_info initialized
  694. * lacpdu->actor_information_length initialized
  695. */
  696. lacpdu->actor_system_priority = htons(port->actor_system_priority);
  697. lacpdu->actor_system = port->actor_system;
  698. lacpdu->actor_key = htons(port->actor_oper_port_key);
  699. lacpdu->actor_port_priority = htons(port->actor_port_priority);
  700. lacpdu->actor_port = htons(port->actor_port_number);
  701. lacpdu->actor_state = port->actor_oper_port_state;
  702. /* lacpdu->reserved_3_1 initialized
  703. * lacpdu->tlv_type_partner_info initialized
  704. * lacpdu->partner_information_length initialized
  705. */
  706. lacpdu->partner_system_priority = htons(partner->system_priority);
  707. lacpdu->partner_system = partner->system;
  708. lacpdu->partner_key = htons(partner->key);
  709. lacpdu->partner_port_priority = htons(partner->port_priority);
  710. lacpdu->partner_port = htons(partner->port_number);
  711. lacpdu->partner_state = partner->port_state;
  712. /* lacpdu->reserved_3_2 initialized
  713. * lacpdu->tlv_type_collector_info initialized
  714. * lacpdu->collector_information_length initialized
  715. * collector_max_delay initialized
  716. * reserved_12[12] initialized
  717. * tlv_type_terminator initialized
  718. * terminator_length initialized
  719. * reserved_50[50] initialized
  720. */
  721. }
  722. //////////////////////////////////////////////////////////////////////////////////////
  723. // ================= main 802.3ad protocol code ======================================
  724. //////////////////////////////////////////////////////////////////////////////////////
  725. /**
  726. * ad_lacpdu_send - send out a lacpdu packet on a given port
  727. * @port: the port we're looking at
  728. *
  729. * Returns: 0 on success
  730. * < 0 on error
  731. */
  732. static int ad_lacpdu_send(struct port *port)
  733. {
  734. struct slave *slave = port->slave;
  735. struct sk_buff *skb;
  736. struct lacpdu_header *lacpdu_header;
  737. int length = sizeof(struct lacpdu_header);
  738. skb = dev_alloc_skb(length);
  739. if (!skb)
  740. return -ENOMEM;
  741. skb->dev = slave->dev;
  742. skb_reset_mac_header(skb);
  743. skb->network_header = skb->mac_header + ETH_HLEN;
  744. skb->protocol = PKT_TYPE_LACPDU;
  745. skb->priority = TC_PRIO_CONTROL;
  746. lacpdu_header = (struct lacpdu_header *)skb_put(skb, length);
  747. memcpy(lacpdu_header->hdr.h_dest, lacpdu_mcast_addr, ETH_ALEN);
  748. /* Note: source address is set to be the member's PERMANENT address,
  749. because we use it to identify loopback lacpdus in receive. */
  750. memcpy(lacpdu_header->hdr.h_source, slave->perm_hwaddr, ETH_ALEN);
  751. lacpdu_header->hdr.h_proto = PKT_TYPE_LACPDU;
  752. lacpdu_header->lacpdu = port->lacpdu; // struct copy
  753. dev_queue_xmit(skb);
  754. return 0;
  755. }
  756. /**
  757. * ad_marker_send - send marker information/response on a given port
  758. * @port: the port we're looking at
  759. * @marker: marker data to send
  760. *
  761. * Returns: 0 on success
  762. * < 0 on error
  763. */
  764. static int ad_marker_send(struct port *port, struct bond_marker *marker)
  765. {
  766. struct slave *slave = port->slave;
  767. struct sk_buff *skb;
  768. struct bond_marker_header *marker_header;
  769. int length = sizeof(struct bond_marker_header);
  770. skb = dev_alloc_skb(length + 16);
  771. if (!skb)
  772. return -ENOMEM;
  773. skb_reserve(skb, 16);
  774. skb->dev = slave->dev;
  775. skb_reset_mac_header(skb);
  776. skb->network_header = skb->mac_header + ETH_HLEN;
  777. skb->protocol = PKT_TYPE_LACPDU;
  778. marker_header = (struct bond_marker_header *)skb_put(skb, length);
  779. memcpy(marker_header->hdr.h_dest, lacpdu_mcast_addr, ETH_ALEN);
  780. /* Note: source address is set to be the member's PERMANENT address,
  781. because we use it to identify loopback MARKERs in receive. */
  782. memcpy(marker_header->hdr.h_source, slave->perm_hwaddr, ETH_ALEN);
  783. marker_header->hdr.h_proto = PKT_TYPE_LACPDU;
  784. marker_header->marker = *marker; // struct copy
  785. dev_queue_xmit(skb);
  786. return 0;
  787. }
  788. /**
  789. * ad_mux_machine - handle a port's mux state machine
  790. * @port: the port we're looking at
  791. *
  792. */
  793. static void ad_mux_machine(struct port *port)
  794. {
  795. mux_states_t last_state;
  796. // keep current State Machine state to compare later if it was changed
  797. last_state = port->sm_mux_state;
  798. if (port->sm_vars & AD_PORT_BEGIN) {
  799. port->sm_mux_state = AD_MUX_DETACHED; // next state
  800. } else {
  801. switch (port->sm_mux_state) {
  802. case AD_MUX_DETACHED:
  803. if ((port->sm_vars & AD_PORT_SELECTED)
  804. || (port->sm_vars & AD_PORT_STANDBY))
  805. /* if SELECTED or STANDBY */
  806. port->sm_mux_state = AD_MUX_WAITING; // next state
  807. break;
  808. case AD_MUX_WAITING:
  809. // if SELECTED == FALSE return to DETACH state
  810. if (!(port->sm_vars & AD_PORT_SELECTED)) { // if UNSELECTED
  811. port->sm_vars &= ~AD_PORT_READY_N;
  812. // in order to withhold the Selection Logic to check all ports READY_N value
  813. // every callback cycle to update ready variable, we check READY_N and update READY here
  814. __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
  815. port->sm_mux_state = AD_MUX_DETACHED; // next state
  816. break;
  817. }
  818. // check if the wait_while_timer expired
  819. if (port->sm_mux_timer_counter
  820. && !(--port->sm_mux_timer_counter))
  821. port->sm_vars |= AD_PORT_READY_N;
  822. // in order to withhold the selection logic to check all ports READY_N value
  823. // every callback cycle to update ready variable, we check READY_N and update READY here
  824. __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
  825. // if the wait_while_timer expired, and the port is in READY state, move to ATTACHED state
  826. if ((port->sm_vars & AD_PORT_READY)
  827. && !port->sm_mux_timer_counter)
  828. port->sm_mux_state = AD_MUX_ATTACHED; // next state
  829. break;
  830. case AD_MUX_ATTACHED:
  831. // check also if agg_select_timer expired(so the edable port will take place only after this timer)
  832. if ((port->sm_vars & AD_PORT_SELECTED) && (port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION) && !__check_agg_selection_timer(port)) {
  833. port->sm_mux_state = AD_MUX_COLLECTING_DISTRIBUTING;// next state
  834. } else if (!(port->sm_vars & AD_PORT_SELECTED) || (port->sm_vars & AD_PORT_STANDBY)) { // if UNSELECTED or STANDBY
  835. port->sm_vars &= ~AD_PORT_READY_N;
  836. // in order to withhold the selection logic to check all ports READY_N value
  837. // every callback cycle to update ready variable, we check READY_N and update READY here
  838. __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
  839. port->sm_mux_state = AD_MUX_DETACHED;// next state
  840. }
  841. break;
  842. case AD_MUX_COLLECTING_DISTRIBUTING:
  843. if (!(port->sm_vars & AD_PORT_SELECTED) || (port->sm_vars & AD_PORT_STANDBY) ||
  844. !(port->partner_oper.port_state & AD_STATE_SYNCHRONIZATION)
  845. ) {
  846. port->sm_mux_state = AD_MUX_ATTACHED;// next state
  847. } else {
  848. // if port state hasn't changed make
  849. // sure that a collecting distributing
  850. // port in an active aggregator is enabled
  851. if (port->aggregator &&
  852. port->aggregator->is_active &&
  853. !__port_is_enabled(port)) {
  854. __enable_port(port);
  855. }
  856. }
  857. break;
  858. default: //to silence the compiler
  859. break;
  860. }
  861. }
  862. // check if the state machine was changed
  863. if (port->sm_mux_state != last_state) {
  864. pr_debug("Mux Machine: Port=%d, Last State=%d, Curr State=%d\n",
  865. port->actor_port_number, last_state,
  866. port->sm_mux_state);
  867. switch (port->sm_mux_state) {
  868. case AD_MUX_DETACHED:
  869. __detach_bond_from_agg(port);
  870. port->actor_oper_port_state &= ~AD_STATE_SYNCHRONIZATION;
  871. ad_disable_collecting_distributing(port);
  872. port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
  873. port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
  874. port->ntt = true;
  875. break;
  876. case AD_MUX_WAITING:
  877. port->sm_mux_timer_counter = __ad_timer_to_ticks(AD_WAIT_WHILE_TIMER, 0);
  878. break;
  879. case AD_MUX_ATTACHED:
  880. __attach_bond_to_agg(port);
  881. port->actor_oper_port_state |= AD_STATE_SYNCHRONIZATION;
  882. port->actor_oper_port_state &= ~AD_STATE_COLLECTING;
  883. port->actor_oper_port_state &= ~AD_STATE_DISTRIBUTING;
  884. ad_disable_collecting_distributing(port);
  885. port->ntt = true;
  886. break;
  887. case AD_MUX_COLLECTING_DISTRIBUTING:
  888. port->actor_oper_port_state |= AD_STATE_COLLECTING;
  889. port->actor_oper_port_state |= AD_STATE_DISTRIBUTING;
  890. ad_enable_collecting_distributing(port);
  891. port->ntt = true;
  892. break;
  893. default: //to silence the compiler
  894. break;
  895. }
  896. }
  897. }
  898. /**
  899. * ad_rx_machine - handle a port's rx State Machine
  900. * @lacpdu: the lacpdu we've received
  901. * @port: the port we're looking at
  902. *
  903. * If lacpdu arrived, stop previous timer (if exists) and set the next state as
  904. * CURRENT. If timer expired set the state machine in the proper state.
  905. * In other cases, this function checks if we need to switch to other state.
  906. */
  907. static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port)
  908. {
  909. rx_states_t last_state;
  910. // keep current State Machine state to compare later if it was changed
  911. last_state = port->sm_rx_state;
  912. // check if state machine should change state
  913. // first, check if port was reinitialized
  914. if (port->sm_vars & AD_PORT_BEGIN)
  915. /* next state */
  916. port->sm_rx_state = AD_RX_INITIALIZE;
  917. // check if port is not enabled
  918. else if (!(port->sm_vars & AD_PORT_BEGIN)
  919. && !port->is_enabled && !(port->sm_vars & AD_PORT_MOVED))
  920. /* next state */
  921. port->sm_rx_state = AD_RX_PORT_DISABLED;
  922. // check if new lacpdu arrived
  923. else if (lacpdu && ((port->sm_rx_state == AD_RX_EXPIRED) || (port->sm_rx_state == AD_RX_DEFAULTED) || (port->sm_rx_state == AD_RX_CURRENT))) {
  924. port->sm_rx_timer_counter = 0; // zero timer
  925. port->sm_rx_state = AD_RX_CURRENT;
  926. } else {
  927. // if timer is on, and if it is expired
  928. if (port->sm_rx_timer_counter && !(--port->sm_rx_timer_counter)) {
  929. switch (port->sm_rx_state) {
  930. case AD_RX_EXPIRED:
  931. port->sm_rx_state = AD_RX_DEFAULTED; // next state
  932. break;
  933. case AD_RX_CURRENT:
  934. port->sm_rx_state = AD_RX_EXPIRED; // next state
  935. break;
  936. default: //to silence the compiler
  937. break;
  938. }
  939. } else {
  940. // if no lacpdu arrived and no timer is on
  941. switch (port->sm_rx_state) {
  942. case AD_RX_PORT_DISABLED:
  943. if (port->sm_vars & AD_PORT_MOVED)
  944. port->sm_rx_state = AD_RX_INITIALIZE; // next state
  945. else if (port->is_enabled
  946. && (port->sm_vars
  947. & AD_PORT_LACP_ENABLED))
  948. port->sm_rx_state = AD_RX_EXPIRED; // next state
  949. else if (port->is_enabled
  950. && ((port->sm_vars
  951. & AD_PORT_LACP_ENABLED) == 0))
  952. port->sm_rx_state = AD_RX_LACP_DISABLED; // next state
  953. break;
  954. default: //to silence the compiler
  955. break;
  956. }
  957. }
  958. }
  959. // check if the State machine was changed or new lacpdu arrived
  960. if ((port->sm_rx_state != last_state) || (lacpdu)) {
  961. pr_debug("Rx Machine: Port=%d, Last State=%d, Curr State=%d\n",
  962. port->actor_port_number, last_state,
  963. port->sm_rx_state);
  964. switch (port->sm_rx_state) {
  965. case AD_RX_INITIALIZE:
  966. if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_BITS))
  967. port->sm_vars &= ~AD_PORT_LACP_ENABLED;
  968. else
  969. port->sm_vars |= AD_PORT_LACP_ENABLED;
  970. port->sm_vars &= ~AD_PORT_SELECTED;
  971. __record_default(port);
  972. port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
  973. port->sm_vars &= ~AD_PORT_MOVED;
  974. port->sm_rx_state = AD_RX_PORT_DISABLED; // next state
  975. /*- Fall Through -*/
  976. case AD_RX_PORT_DISABLED:
  977. port->sm_vars &= ~AD_PORT_MATCHED;
  978. break;
  979. case AD_RX_LACP_DISABLED:
  980. port->sm_vars &= ~AD_PORT_SELECTED;
  981. __record_default(port);
  982. port->partner_oper.port_state &= ~AD_STATE_AGGREGATION;
  983. port->sm_vars |= AD_PORT_MATCHED;
  984. port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
  985. break;
  986. case AD_RX_EXPIRED:
  987. //Reset of the Synchronization flag. (Standard 43.4.12)
  988. //This reset cause to disable this port in the COLLECTING_DISTRIBUTING state of the
  989. //mux machine in case of EXPIRED even if LINK_DOWN didn't arrive for the port.
  990. port->partner_oper.port_state &= ~AD_STATE_SYNCHRONIZATION;
  991. port->sm_vars &= ~AD_PORT_MATCHED;
  992. port->partner_oper.port_state |=
  993. AD_STATE_LACP_ACTIVITY;
  994. port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(AD_SHORT_TIMEOUT));
  995. port->actor_oper_port_state |= AD_STATE_EXPIRED;
  996. break;
  997. case AD_RX_DEFAULTED:
  998. __update_default_selected(port);
  999. __record_default(port);
  1000. port->sm_vars |= AD_PORT_MATCHED;
  1001. port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
  1002. break;
  1003. case AD_RX_CURRENT:
  1004. // detect loopback situation
  1005. if (!MAC_ADDRESS_COMPARE(&(lacpdu->actor_system), &(port->actor_system))) {
  1006. // INFO_RECEIVED_LOOPBACK_FRAMES
  1007. pr_err("%s: An illegal loopback occurred on adapter (%s).\n"
  1008. "Check the configuration to verify that all adapters are connected to 802.3ad compliant switch ports\n",
  1009. port->slave->dev->master->name, port->slave->dev->name);
  1010. return;
  1011. }
  1012. __update_selected(lacpdu, port);
  1013. __update_ntt(lacpdu, port);
  1014. __record_pdu(lacpdu, port);
  1015. port->sm_rx_timer_counter = __ad_timer_to_ticks(AD_CURRENT_WHILE_TIMER, (u16)(port->actor_oper_port_state & AD_STATE_LACP_TIMEOUT));
  1016. port->actor_oper_port_state &= ~AD_STATE_EXPIRED;
  1017. break;
  1018. default: //to silence the compiler
  1019. break;
  1020. }
  1021. }
  1022. }
  1023. /**
  1024. * ad_tx_machine - handle a port's tx state machine
  1025. * @port: the port we're looking at
  1026. *
  1027. */
  1028. static void ad_tx_machine(struct port *port)
  1029. {
  1030. // check if tx timer expired, to verify that we do not send more than 3 packets per second
  1031. if (port->sm_tx_timer_counter && !(--port->sm_tx_timer_counter)) {
  1032. // check if there is something to send
  1033. if (port->ntt && (port->sm_vars & AD_PORT_LACP_ENABLED)) {
  1034. __update_lacpdu_from_port(port);
  1035. if (ad_lacpdu_send(port) >= 0) {
  1036. pr_debug("Sent LACPDU on port %d\n",
  1037. port->actor_port_number);
  1038. /* mark ntt as false, so it will not be sent again until
  1039. demanded */
  1040. port->ntt = false;
  1041. }
  1042. }
  1043. // restart tx timer(to verify that we will not exceed AD_MAX_TX_IN_SECOND
  1044. port->sm_tx_timer_counter =
  1045. ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
  1046. }
  1047. }
  1048. /**
  1049. * ad_periodic_machine - handle a port's periodic state machine
  1050. * @port: the port we're looking at
  1051. *
  1052. * Turn ntt flag on priodically to perform periodic transmission of lacpdu's.
  1053. */
  1054. static void ad_periodic_machine(struct port *port)
  1055. {
  1056. periodic_states_t last_state;
  1057. // keep current state machine state to compare later if it was changed
  1058. last_state = port->sm_periodic_state;
  1059. // check if port was reinitialized
  1060. if (((port->sm_vars & AD_PORT_BEGIN) || !(port->sm_vars & AD_PORT_LACP_ENABLED) || !port->is_enabled) ||
  1061. (!(port->actor_oper_port_state & AD_STATE_LACP_ACTIVITY) && !(port->partner_oper.port_state & AD_STATE_LACP_ACTIVITY))
  1062. ) {
  1063. port->sm_periodic_state = AD_NO_PERIODIC; // next state
  1064. }
  1065. // check if state machine should change state
  1066. else if (port->sm_periodic_timer_counter) {
  1067. // check if periodic state machine expired
  1068. if (!(--port->sm_periodic_timer_counter)) {
  1069. // if expired then do tx
  1070. port->sm_periodic_state = AD_PERIODIC_TX; // next state
  1071. } else {
  1072. // If not expired, check if there is some new timeout parameter from the partner state
  1073. switch (port->sm_periodic_state) {
  1074. case AD_FAST_PERIODIC:
  1075. if (!(port->partner_oper.port_state
  1076. & AD_STATE_LACP_TIMEOUT))
  1077. port->sm_periodic_state = AD_SLOW_PERIODIC; // next state
  1078. break;
  1079. case AD_SLOW_PERIODIC:
  1080. if ((port->partner_oper.port_state & AD_STATE_LACP_TIMEOUT)) {
  1081. // stop current timer
  1082. port->sm_periodic_timer_counter = 0;
  1083. port->sm_periodic_state = AD_PERIODIC_TX; // next state
  1084. }
  1085. break;
  1086. default: //to silence the compiler
  1087. break;
  1088. }
  1089. }
  1090. } else {
  1091. switch (port->sm_periodic_state) {
  1092. case AD_NO_PERIODIC:
  1093. port->sm_periodic_state = AD_FAST_PERIODIC; // next state
  1094. break;
  1095. case AD_PERIODIC_TX:
  1096. if (!(port->partner_oper.port_state
  1097. & AD_STATE_LACP_TIMEOUT))
  1098. port->sm_periodic_state = AD_SLOW_PERIODIC; // next state
  1099. else
  1100. port->sm_periodic_state = AD_FAST_PERIODIC; // next state
  1101. break;
  1102. default: //to silence the compiler
  1103. break;
  1104. }
  1105. }
  1106. // check if the state machine was changed
  1107. if (port->sm_periodic_state != last_state) {
  1108. pr_debug("Periodic Machine: Port=%d, Last State=%d, Curr State=%d\n",
  1109. port->actor_port_number, last_state,
  1110. port->sm_periodic_state);
  1111. switch (port->sm_periodic_state) {
  1112. case AD_NO_PERIODIC:
  1113. port->sm_periodic_timer_counter = 0; // zero timer
  1114. break;
  1115. case AD_FAST_PERIODIC:
  1116. port->sm_periodic_timer_counter = __ad_timer_to_ticks(AD_PERIODIC_TIMER, (u16)(AD_FAST_PERIODIC_TIME))-1; // decrement 1 tick we lost in the PERIODIC_TX cycle
  1117. break;
  1118. case AD_SLOW_PERIODIC:
  1119. port->sm_periodic_timer_counter = __ad_timer_to_ticks(AD_PERIODIC_TIMER, (u16)(AD_SLOW_PERIODIC_TIME))-1; // decrement 1 tick we lost in the PERIODIC_TX cycle
  1120. break;
  1121. case AD_PERIODIC_TX:
  1122. port->ntt = true;
  1123. break;
  1124. default: //to silence the compiler
  1125. break;
  1126. }
  1127. }
  1128. }
  1129. /**
  1130. * ad_port_selection_logic - select aggregation groups
  1131. * @port: the port we're looking at
  1132. *
  1133. * Select aggregation groups, and assign each port for it's aggregetor. The
  1134. * selection logic is called in the inititalization (after all the handshkes),
  1135. * and after every lacpdu receive (if selected is off).
  1136. */
  1137. static void ad_port_selection_logic(struct port *port)
  1138. {
  1139. struct aggregator *aggregator, *free_aggregator = NULL, *temp_aggregator;
  1140. struct port *last_port = NULL, *curr_port;
  1141. int found = 0;
  1142. // if the port is already Selected, do nothing
  1143. if (port->sm_vars & AD_PORT_SELECTED)
  1144. return;
  1145. // if the port is connected to other aggregator, detach it
  1146. if (port->aggregator) {
  1147. // detach the port from its former aggregator
  1148. temp_aggregator = port->aggregator;
  1149. for (curr_port = temp_aggregator->lag_ports; curr_port;
  1150. last_port = curr_port,
  1151. curr_port = curr_port->next_port_in_aggregator) {
  1152. if (curr_port == port) {
  1153. temp_aggregator->num_of_ports--;
  1154. if (!last_port) {// if it is the first port attached to the aggregator
  1155. temp_aggregator->lag_ports =
  1156. port->next_port_in_aggregator;
  1157. } else {// not the first port attached to the aggregator
  1158. last_port->next_port_in_aggregator =
  1159. port->next_port_in_aggregator;
  1160. }
  1161. // clear the port's relations to this aggregator
  1162. port->aggregator = NULL;
  1163. port->next_port_in_aggregator = NULL;
  1164. port->actor_port_aggregator_identifier = 0;
  1165. pr_debug("Port %d left LAG %d\n",
  1166. port->actor_port_number,
  1167. temp_aggregator->aggregator_identifier);
  1168. // if the aggregator is empty, clear its parameters, and set it ready to be attached
  1169. if (!temp_aggregator->lag_ports)
  1170. ad_clear_agg(temp_aggregator);
  1171. break;
  1172. }
  1173. }
  1174. if (!curr_port) { // meaning: the port was related to an aggregator but was not on the aggregator port list
  1175. pr_warning("%s: Warning: Port %d (on %s) was related to aggregator %d but was not on its port list\n",
  1176. port->slave->dev->master->name,
  1177. port->actor_port_number,
  1178. port->slave->dev->name,
  1179. port->aggregator->aggregator_identifier);
  1180. }
  1181. }
  1182. // search on all aggregators for a suitable aggregator for this port
  1183. for (aggregator = __get_first_agg(port); aggregator;
  1184. aggregator = __get_next_agg(aggregator)) {
  1185. // keep a free aggregator for later use(if needed)
  1186. if (!aggregator->lag_ports) {
  1187. if (!free_aggregator)
  1188. free_aggregator = aggregator;
  1189. continue;
  1190. }
  1191. // check if current aggregator suits us
  1192. if (((aggregator->actor_oper_aggregator_key == port->actor_oper_port_key) && // if all parameters match AND
  1193. !MAC_ADDRESS_COMPARE(&(aggregator->partner_system), &(port->partner_oper.system)) &&
  1194. (aggregator->partner_system_priority == port->partner_oper.system_priority) &&
  1195. (aggregator->partner_oper_aggregator_key == port->partner_oper.key)
  1196. ) &&
  1197. ((MAC_ADDRESS_COMPARE(&(port->partner_oper.system), &(null_mac_addr)) && // partner answers
  1198. !aggregator->is_individual) // but is not individual OR
  1199. )
  1200. ) {
  1201. // attach to the founded aggregator
  1202. port->aggregator = aggregator;
  1203. port->actor_port_aggregator_identifier =
  1204. port->aggregator->aggregator_identifier;
  1205. port->next_port_in_aggregator = aggregator->lag_ports;
  1206. port->aggregator->num_of_ports++;
  1207. aggregator->lag_ports = port;
  1208. pr_debug("Port %d joined LAG %d(existing LAG)\n",
  1209. port->actor_port_number,
  1210. port->aggregator->aggregator_identifier);
  1211. // mark this port as selected
  1212. port->sm_vars |= AD_PORT_SELECTED;
  1213. found = 1;
  1214. break;
  1215. }
  1216. }
  1217. // the port couldn't find an aggregator - attach it to a new aggregator
  1218. if (!found) {
  1219. if (free_aggregator) {
  1220. // assign port a new aggregator
  1221. port->aggregator = free_aggregator;
  1222. port->actor_port_aggregator_identifier =
  1223. port->aggregator->aggregator_identifier;
  1224. // update the new aggregator's parameters
  1225. // if port was responsed from the end-user
  1226. if (port->actor_oper_port_key & AD_DUPLEX_KEY_BITS)
  1227. /* if port is full duplex */
  1228. port->aggregator->is_individual = false;
  1229. else
  1230. port->aggregator->is_individual = true;
  1231. port->aggregator->actor_admin_aggregator_key = port->actor_admin_port_key;
  1232. port->aggregator->actor_oper_aggregator_key = port->actor_oper_port_key;
  1233. port->aggregator->partner_system =
  1234. port->partner_oper.system;
  1235. port->aggregator->partner_system_priority =
  1236. port->partner_oper.system_priority;
  1237. port->aggregator->partner_oper_aggregator_key = port->partner_oper.key;
  1238. port->aggregator->receive_state = 1;
  1239. port->aggregator->transmit_state = 1;
  1240. port->aggregator->lag_ports = port;
  1241. port->aggregator->num_of_ports++;
  1242. // mark this port as selected
  1243. port->sm_vars |= AD_PORT_SELECTED;
  1244. pr_debug("Port %d joined LAG %d(new LAG)\n",
  1245. port->actor_port_number,
  1246. port->aggregator->aggregator_identifier);
  1247. } else {
  1248. pr_err("%s: Port %d (on %s) did not find a suitable aggregator\n",
  1249. port->slave->dev->master->name,
  1250. port->actor_port_number, port->slave->dev->name);
  1251. }
  1252. }
  1253. // if all aggregator's ports are READY_N == TRUE, set ready=TRUE in all aggregator's ports
  1254. // else set ready=FALSE in all aggregator's ports
  1255. __set_agg_ports_ready(port->aggregator, __agg_ports_are_ready(port->aggregator));
  1256. aggregator = __get_first_agg(port);
  1257. ad_agg_selection_logic(aggregator);
  1258. }
  1259. /*
  1260. * Decide if "agg" is a better choice for the new active aggregator that
  1261. * the current best, according to the ad_select policy.
  1262. */
  1263. static struct aggregator *ad_agg_selection_test(struct aggregator *best,
  1264. struct aggregator *curr)
  1265. {
  1266. /*
  1267. * 0. If no best, select current.
  1268. *
  1269. * 1. If the current agg is not individual, and the best is
  1270. * individual, select current.
  1271. *
  1272. * 2. If current agg is individual and the best is not, keep best.
  1273. *
  1274. * 3. Therefore, current and best are both individual or both not
  1275. * individual, so:
  1276. *
  1277. * 3a. If current agg partner replied, and best agg partner did not,
  1278. * select current.
  1279. *
  1280. * 3b. If current agg partner did not reply and best agg partner
  1281. * did reply, keep best.
  1282. *
  1283. * 4. Therefore, current and best both have partner replies or
  1284. * both do not, so perform selection policy:
  1285. *
  1286. * BOND_AD_COUNT: Select by count of ports. If count is equal,
  1287. * select by bandwidth.
  1288. *
  1289. * BOND_AD_STABLE, BOND_AD_BANDWIDTH: Select by bandwidth.
  1290. */
  1291. if (!best)
  1292. return curr;
  1293. if (!curr->is_individual && best->is_individual)
  1294. return curr;
  1295. if (curr->is_individual && !best->is_individual)
  1296. return best;
  1297. if (__agg_has_partner(curr) && !__agg_has_partner(best))
  1298. return curr;
  1299. if (!__agg_has_partner(curr) && __agg_has_partner(best))
  1300. return best;
  1301. switch (__get_agg_selection_mode(curr->lag_ports)) {
  1302. case BOND_AD_COUNT:
  1303. if (curr->num_of_ports > best->num_of_ports)
  1304. return curr;
  1305. if (curr->num_of_ports < best->num_of_ports)
  1306. return best;
  1307. /*FALLTHROUGH*/
  1308. case BOND_AD_STABLE:
  1309. case BOND_AD_BANDWIDTH:
  1310. if (__get_agg_bandwidth(curr) > __get_agg_bandwidth(best))
  1311. return curr;
  1312. break;
  1313. default:
  1314. pr_warning("%s: Impossible agg select mode %d\n",
  1315. curr->slave->dev->master->name,
  1316. __get_agg_selection_mode(curr->lag_ports));
  1317. break;
  1318. }
  1319. return best;
  1320. }
  1321. static int agg_device_up(const struct aggregator *agg)
  1322. {
  1323. struct port *port = agg->lag_ports;
  1324. if (!port)
  1325. return 0;
  1326. return (netif_running(port->slave->dev) &&
  1327. netif_carrier_ok(port->slave->dev));
  1328. }
  1329. /**
  1330. * ad_agg_selection_logic - select an aggregation group for a team
  1331. * @aggregator: the aggregator we're looking at
  1332. *
  1333. * It is assumed that only one aggregator may be selected for a team.
  1334. *
  1335. * The logic of this function is to select the aggregator according to
  1336. * the ad_select policy:
  1337. *
  1338. * BOND_AD_STABLE: select the aggregator with the most ports attached to
  1339. * it, and to reselect the active aggregator only if the previous
  1340. * aggregator has no more ports related to it.
  1341. *
  1342. * BOND_AD_BANDWIDTH: select the aggregator with the highest total
  1343. * bandwidth, and reselect whenever a link state change takes place or the
  1344. * set of slaves in the bond changes.
  1345. *
  1346. * BOND_AD_COUNT: select the aggregator with largest number of ports
  1347. * (slaves), and reselect whenever a link state change takes place or the
  1348. * set of slaves in the bond changes.
  1349. *
  1350. * FIXME: this function MUST be called with the first agg in the bond, or
  1351. * __get_active_agg() won't work correctly. This function should be better
  1352. * called with the bond itself, and retrieve the first agg from it.
  1353. */
  1354. static void ad_agg_selection_logic(struct aggregator *agg)
  1355. {
  1356. struct aggregator *best, *active, *origin;
  1357. struct port *port;
  1358. origin = agg;
  1359. active = __get_active_agg(agg);
  1360. best = (active && agg_device_up(active)) ? active : NULL;
  1361. do {
  1362. agg->is_active = 0;
  1363. if (agg->num_of_ports && agg_device_up(agg))
  1364. best = ad_agg_selection_test(best, agg);
  1365. } while ((agg = __get_next_agg(agg)));
  1366. if (best &&
  1367. __get_agg_selection_mode(best->lag_ports) == BOND_AD_STABLE) {
  1368. /*
  1369. * For the STABLE policy, don't replace the old active
  1370. * aggregator if it's still active (it has an answering
  1371. * partner) or if both the best and active don't have an
  1372. * answering partner.
  1373. */
  1374. if (active && active->lag_ports &&
  1375. active->lag_ports->is_enabled &&
  1376. (__agg_has_partner(active) ||
  1377. (!__agg_has_partner(active) && !__agg_has_partner(best)))) {
  1378. if (!(!active->actor_oper_aggregator_key &&
  1379. best->actor_oper_aggregator_key)) {
  1380. best = NULL;
  1381. active->is_active = 1;
  1382. }
  1383. }
  1384. }
  1385. if (best && (best == active)) {
  1386. best = NULL;
  1387. active->is_active = 1;
  1388. }
  1389. // if there is new best aggregator, activate it
  1390. if (best) {
  1391. pr_debug("best Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
  1392. best->aggregator_identifier, best->num_of_ports,
  1393. best->actor_oper_aggregator_key,
  1394. best->partner_oper_aggregator_key,
  1395. best->is_individual, best->is_active);
  1396. pr_debug("best ports %p slave %p %s\n",
  1397. best->lag_ports, best->slave,
  1398. best->slave ? best->slave->dev->name : "NULL");
  1399. for (agg = __get_first_agg(best->lag_ports); agg;
  1400. agg = __get_next_agg(agg)) {
  1401. pr_debug("Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
  1402. agg->aggregator_identifier, agg->num_of_ports,
  1403. agg->actor_oper_aggregator_key,
  1404. agg->partner_oper_aggregator_key,
  1405. agg->is_individual, agg->is_active);
  1406. }
  1407. // check if any partner replys
  1408. if (best->is_individual) {
  1409. pr_warning("%s: Warning: No 802.3ad response from the link partner for any adapters in the bond\n",
  1410. best->slave ? best->slave->dev->master->name : "NULL");
  1411. }
  1412. best->is_active = 1;
  1413. pr_debug("LAG %d chosen as the active LAG\n",
  1414. best->aggregator_identifier);
  1415. pr_debug("Agg=%d; P=%d; a k=%d; p k=%d; Ind=%d; Act=%d\n",
  1416. best->aggregator_identifier, best->num_of_ports,
  1417. best->actor_oper_aggregator_key,
  1418. best->partner_oper_aggregator_key,
  1419. best->is_individual, best->is_active);
  1420. // disable the ports that were related to the former active_aggregator
  1421. if (active) {
  1422. for (port = active->lag_ports; port;
  1423. port = port->next_port_in_aggregator) {
  1424. __disable_port(port);
  1425. }
  1426. }
  1427. }
  1428. /*
  1429. * if the selected aggregator is of join individuals
  1430. * (partner_system is NULL), enable their ports
  1431. */
  1432. active = __get_active_agg(origin);
  1433. if (active) {
  1434. if (!__agg_has_partner(active)) {
  1435. for (port = active->lag_ports; port;
  1436. port = port->next_port_in_aggregator) {
  1437. __enable_port(port);
  1438. }
  1439. }
  1440. }
  1441. if (origin->slave) {
  1442. struct bonding *bond;
  1443. bond = bond_get_bond_by_slave(origin->slave);
  1444. if (bond)
  1445. bond_3ad_set_carrier(bond);
  1446. }
  1447. }
  1448. /**
  1449. * ad_clear_agg - clear a given aggregator's parameters
  1450. * @aggregator: the aggregator we're looking at
  1451. *
  1452. */
  1453. static void ad_clear_agg(struct aggregator *aggregator)
  1454. {
  1455. if (aggregator) {
  1456. aggregator->is_individual = false;
  1457. aggregator->actor_admin_aggregator_key = 0;
  1458. aggregator->actor_oper_aggregator_key = 0;
  1459. aggregator->partner_system = null_mac_addr;
  1460. aggregator->partner_system_priority = 0;
  1461. aggregator->partner_oper_aggregator_key = 0;
  1462. aggregator->receive_state = 0;
  1463. aggregator->transmit_state = 0;
  1464. aggregator->lag_ports = NULL;
  1465. aggregator->is_active = 0;
  1466. aggregator->num_of_ports = 0;
  1467. pr_debug("LAG %d was cleared\n",
  1468. aggregator->aggregator_identifier);
  1469. }
  1470. }
  1471. /**
  1472. * ad_initialize_agg - initialize a given aggregator's parameters
  1473. * @aggregator: the aggregator we're looking at
  1474. *
  1475. */
  1476. static void ad_initialize_agg(struct aggregator *aggregator)
  1477. {
  1478. if (aggregator) {
  1479. ad_clear_agg(aggregator);
  1480. aggregator->aggregator_mac_address = null_mac_addr;
  1481. aggregator->aggregator_identifier = 0;
  1482. aggregator->slave = NULL;
  1483. }
  1484. }
  1485. /**
  1486. * ad_initialize_port - initialize a given port's parameters
  1487. * @aggregator: the aggregator we're looking at
  1488. * @lacp_fast: boolean. whether fast periodic should be used
  1489. *
  1490. */
  1491. static void ad_initialize_port(struct port *port, int lacp_fast)
  1492. {
  1493. static const struct port_params tmpl = {
  1494. .system_priority = 0xffff,
  1495. .key = 1,
  1496. .port_number = 1,
  1497. .port_priority = 0xff,
  1498. .port_state = 1,
  1499. };
  1500. static const struct lacpdu lacpdu = {
  1501. .subtype = 0x01,
  1502. .version_number = 0x01,
  1503. .tlv_type_actor_info = 0x01,
  1504. .actor_information_length = 0x14,
  1505. .tlv_type_partner_info = 0x02,
  1506. .partner_information_length = 0x14,
  1507. .tlv_type_collector_info = 0x03,
  1508. .collector_information_length = 0x10,
  1509. .collector_max_delay = htons(AD_COLLECTOR_MAX_DELAY),
  1510. };
  1511. if (port) {
  1512. port->actor_port_number = 1;
  1513. port->actor_port_priority = 0xff;
  1514. port->actor_system = null_mac_addr;
  1515. port->actor_system_priority = 0xffff;
  1516. port->actor_port_aggregator_identifier = 0;
  1517. port->ntt = false;
  1518. port->actor_admin_port_key = 1;
  1519. port->actor_oper_port_key = 1;
  1520. port->actor_admin_port_state = AD_STATE_AGGREGATION | AD_STATE_LACP_ACTIVITY;
  1521. port->actor_oper_port_state = AD_STATE_AGGREGATION | AD_STATE_LACP_ACTIVITY;
  1522. if (lacp_fast)
  1523. port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
  1524. memcpy(&port->partner_admin, &tmpl, sizeof(tmpl));
  1525. memcpy(&port->partner_oper, &tmpl, sizeof(tmpl));
  1526. port->is_enabled = true;
  1527. // ****** private parameters ******
  1528. port->sm_vars = 0x3;
  1529. port->sm_rx_state = 0;
  1530. port->sm_rx_timer_counter = 0;
  1531. port->sm_periodic_state = 0;
  1532. port->sm_periodic_timer_counter = 0;
  1533. port->sm_mux_state = 0;
  1534. port->sm_mux_timer_counter = 0;
  1535. port->sm_tx_state = 0;
  1536. port->sm_tx_timer_counter = 0;
  1537. port->slave = NULL;
  1538. port->aggregator = NULL;
  1539. port->next_port_in_aggregator = NULL;
  1540. port->transaction_id = 0;
  1541. memcpy(&port->lacpdu, &lacpdu, sizeof(lacpdu));
  1542. }
  1543. }
  1544. /**
  1545. * ad_enable_collecting_distributing - enable a port's transmit/receive
  1546. * @port: the port we're looking at
  1547. *
  1548. * Enable @port if it's in an active aggregator
  1549. */
  1550. static void ad_enable_collecting_distributing(struct port *port)
  1551. {
  1552. if (port->aggregator->is_active) {
  1553. pr_debug("Enabling port %d(LAG %d)\n",
  1554. port->actor_port_number,
  1555. port->aggregator->aggregator_identifier);
  1556. __enable_port(port);
  1557. }
  1558. }
  1559. /**
  1560. * ad_disable_collecting_distributing - disable a port's transmit/receive
  1561. * @port: the port we're looking at
  1562. *
  1563. */
  1564. static void ad_disable_collecting_distributing(struct port *port)
  1565. {
  1566. if (port->aggregator && MAC_ADDRESS_COMPARE(&(port->aggregator->partner_system), &(null_mac_addr))) {
  1567. pr_debug("Disabling port %d(LAG %d)\n",
  1568. port->actor_port_number,
  1569. port->aggregator->aggregator_identifier);
  1570. __disable_port(port);
  1571. }
  1572. }
  1573. #if 0
  1574. /**
  1575. * ad_marker_info_send - send a marker information frame
  1576. * @port: the port we're looking at
  1577. *
  1578. * This function does nothing since we decided not to implement send and handle
  1579. * response for marker PDU's, in this stage, but only to respond to marker
  1580. * information.
  1581. */
  1582. static void ad_marker_info_send(struct port *port)
  1583. {
  1584. struct bond_marker marker;
  1585. u16 index;
  1586. // fill the marker PDU with the appropriate values
  1587. marker.subtype = 0x02;
  1588. marker.version_number = 0x01;
  1589. marker.tlv_type = AD_MARKER_INFORMATION_SUBTYPE;
  1590. marker.marker_length = 0x16;
  1591. // convert requester_port to Big Endian
  1592. marker.requester_port = (((port->actor_port_number & 0xFF) << 8) |((u16)(port->actor_port_number & 0xFF00) >> 8));
  1593. marker.requester_system = port->actor_system;
  1594. // convert requester_port(u32) to Big Endian
  1595. marker.requester_transaction_id =
  1596. (((++port->transaction_id & 0xFF) << 24)
  1597. | ((port->transaction_id & 0xFF00) << 8)
  1598. | ((port->transaction_id & 0xFF0000) >> 8)
  1599. | ((port->transaction_id & 0xFF000000) >> 24));
  1600. marker.pad = 0;
  1601. marker.tlv_type_terminator = 0x00;
  1602. marker.terminator_length = 0x00;
  1603. for (index = 0; index < 90; index++)
  1604. marker.reserved_90[index] = 0;
  1605. // send the marker information
  1606. if (ad_marker_send(port, &marker) >= 0) {
  1607. pr_debug("Sent Marker Information on port %d\n",
  1608. port->actor_port_number);
  1609. }
  1610. }
  1611. #endif
  1612. /**
  1613. * ad_marker_info_received - handle receive of a Marker information frame
  1614. * @marker_info: Marker info received
  1615. * @port: the port we're looking at
  1616. *
  1617. */
  1618. static void ad_marker_info_received(struct bond_marker *marker_info,
  1619. struct port *port)
  1620. {
  1621. struct bond_marker marker;
  1622. // copy the received marker data to the response marker
  1623. //marker = *marker_info;
  1624. memcpy(&marker, marker_info, sizeof(struct bond_marker));
  1625. // change the marker subtype to marker response
  1626. marker.tlv_type = AD_MARKER_RESPONSE_SUBTYPE;
  1627. // send the marker response
  1628. if (ad_marker_send(port, &marker) >= 0) {
  1629. pr_debug("Sent Marker Response on port %d\n",
  1630. port->actor_port_number);
  1631. }
  1632. }
  1633. /**
  1634. * ad_marker_response_received - handle receive of a marker response frame
  1635. * @marker: marker PDU received
  1636. * @port: the port we're looking at
  1637. *
  1638. * This function does nothing since we decided not to implement send and handle
  1639. * response for marker PDU's, in this stage, but only to respond to marker
  1640. * information.
  1641. */
  1642. static void ad_marker_response_received(struct bond_marker *marker,
  1643. struct port *port)
  1644. {
  1645. marker = NULL; /* just to satisfy the compiler */
  1646. port = NULL; /* just to satisfy the compiler */
  1647. // DO NOTHING, SINCE WE DECIDED NOT TO IMPLEMENT THIS FEATURE FOR NOW
  1648. }
  1649. //////////////////////////////////////////////////////////////////////////////////////
  1650. // ================= AD exported functions to the main bonding code ==================
  1651. //////////////////////////////////////////////////////////////////////////////////////
  1652. // Check aggregators status in team every T seconds
  1653. #define AD_AGGREGATOR_SELECTION_TIMER 8
  1654. /*
  1655. * bond_3ad_initiate_agg_selection(struct bonding *bond)
  1656. *
  1657. * Set the aggregation selection timer, to initiate an agg selection in
  1658. * the very near future. Called during first initialization, and during
  1659. * any down to up transitions of the bond.
  1660. */
  1661. void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout)
  1662. {
  1663. BOND_AD_INFO(bond).agg_select_timer = timeout;
  1664. }
  1665. static u16 aggregator_identifier;
  1666. /**
  1667. * bond_3ad_initialize - initialize a bond's 802.3ad parameters and structures
  1668. * @bond: bonding struct to work on
  1669. * @tick_resolution: tick duration (millisecond resolution)
  1670. *
  1671. * Can be called only after the mac address of the bond is set.
  1672. */
  1673. void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution)
  1674. {
  1675. // check that the bond is not initialized yet
  1676. if (MAC_ADDRESS_COMPARE(&(BOND_AD_INFO(bond).system.sys_mac_addr),
  1677. bond->dev->dev_addr)) {
  1678. aggregator_identifier = 0;
  1679. BOND_AD_INFO(bond).system.sys_priority = 0xFFFF;
  1680. BOND_AD_INFO(bond).system.sys_mac_addr = *((struct mac_addr *)bond->dev->dev_addr);
  1681. // initialize how many times this module is called in one second(should be about every 100ms)
  1682. ad_ticks_per_sec = tick_resolution;
  1683. bond_3ad_initiate_agg_selection(bond,
  1684. AD_AGGREGATOR_SELECTION_TIMER *
  1685. ad_ticks_per_sec);
  1686. }
  1687. }
  1688. /**
  1689. * bond_3ad_bind_slave - initialize a slave's port
  1690. * @slave: slave struct to work on
  1691. *
  1692. * Returns: 0 on success
  1693. * < 0 on error
  1694. */
  1695. int bond_3ad_bind_slave(struct slave *slave)
  1696. {
  1697. struct bonding *bond = bond_get_bond_by_slave(slave);
  1698. struct port *port;
  1699. struct aggregator *aggregator;
  1700. if (bond == NULL) {
  1701. pr_err("%s: The slave %s is not attached to its bond\n",
  1702. slave->dev->master->name, slave->dev->name);
  1703. return -1;
  1704. }
  1705. //check that the slave has not been initialized yet.
  1706. if (SLAVE_AD_INFO(slave).port.slave != slave) {
  1707. // port initialization
  1708. port = &(SLAVE_AD_INFO(slave).port);
  1709. ad_initialize_port(port, bond->params.lacp_fast);
  1710. port->slave = slave;
  1711. port->actor_port_number = SLAVE_AD_INFO(slave).id;
  1712. // key is determined according to the link speed, duplex and user key(which is yet not supported)
  1713. // ------------------------------------------------------------
  1714. // Port key : | User key | Speed |Duplex|
  1715. // ------------------------------------------------------------
  1716. // 16 6 1 0
  1717. port->actor_admin_port_key = 0; // initialize this parameter
  1718. port->actor_admin_port_key |= __get_duplex(port);
  1719. port->actor_admin_port_key |= (__get_link_speed(port) << 1);
  1720. port->actor_oper_port_key = port->actor_admin_port_key;
  1721. // if the port is not full duplex, then the port should be not lacp Enabled
  1722. if (!(port->actor_oper_port_key & AD_DUPLEX_KEY_BITS))
  1723. port->sm_vars &= ~AD_PORT_LACP_ENABLED;
  1724. // actor system is the bond's system
  1725. port->actor_system = BOND_AD_INFO(bond).system.sys_mac_addr;
  1726. // tx timer(to verify that no more than MAX_TX_IN_SECOND lacpdu's are sent in one second)
  1727. port->sm_tx_timer_counter = ad_ticks_per_sec/AD_MAX_TX_IN_SECOND;
  1728. port->aggregator = NULL;
  1729. port->next_port_in_aggregator = NULL;
  1730. __disable_port(port);
  1731. __initialize_port_locks(port);
  1732. // aggregator initialization
  1733. aggregator = &(SLAVE_AD_INFO(slave).aggregator);
  1734. ad_initialize_agg(aggregator);
  1735. aggregator->aggregator_mac_address = *((struct mac_addr *)bond->dev->dev_addr);
  1736. aggregator->aggregator_identifier = (++aggregator_identifier);
  1737. aggregator->slave = slave;
  1738. aggregator->is_active = 0;
  1739. aggregator->num_of_ports = 0;
  1740. }
  1741. return 0;
  1742. }
  1743. /**
  1744. * bond_3ad_unbind_slave - deinitialize a slave's port
  1745. * @slave: slave struct to work on
  1746. *
  1747. * Search for the aggregator that is related to this port, remove the
  1748. * aggregator and assign another aggregator for other port related to it
  1749. * (if any), and remove the port.
  1750. */
  1751. void bond_3ad_unbind_slave(struct slave *slave)
  1752. {
  1753. struct port *port, *prev_port, *temp_port;
  1754. struct aggregator *aggregator, *new_aggregator, *temp_aggregator;
  1755. int select_new_active_agg = 0;
  1756. // find the aggregator related to this slave
  1757. aggregator = &(SLAVE_AD_INFO(slave).aggregator);
  1758. // find the port related to this slave
  1759. port = &(SLAVE_AD_INFO(slave).port);
  1760. // if slave is null, the whole port is not initialized
  1761. if (!port->slave) {
  1762. pr_warning("Warning: %s: Trying to unbind an uninitialized port on %s\n",
  1763. slave->dev->master->name, slave->dev->name);
  1764. return;
  1765. }
  1766. pr_debug("Unbinding Link Aggregation Group %d\n",
  1767. aggregator->aggregator_identifier);
  1768. /* Tell the partner that this port is not suitable for aggregation */
  1769. port->actor_oper_port_state &= ~AD_STATE_AGGREGATION;
  1770. __update_lacpdu_from_port(port);
  1771. ad_lacpdu_send(port);
  1772. // check if this aggregator is occupied
  1773. if (aggregator->lag_ports) {
  1774. // check if there are other ports related to this aggregator except
  1775. // the port related to this slave(thats ensure us that there is a
  1776. // reason to search for new aggregator, and that we will find one
  1777. if ((aggregator->lag_ports != port) || (aggregator->lag_ports->next_port_in_aggregator)) {
  1778. // find new aggregator for the related port(s)
  1779. new_aggregator = __get_first_agg(port);
  1780. for (; new_aggregator; new_aggregator = __get_next_agg(new_aggregator)) {
  1781. // if the new aggregator is empty, or it is connected to our port only
  1782. if (!new_aggregator->lag_ports
  1783. || ((new_aggregator->lag_ports == port)
  1784. && !new_aggregator->lag_ports->next_port_in_aggregator))
  1785. break;
  1786. }
  1787. // if new aggregator found, copy the aggregator's parameters
  1788. // and connect the related lag_ports to the new aggregator
  1789. if ((new_aggregator) && ((!new_aggregator->lag_ports) || ((new_aggregator->lag_ports == port) && !new_aggregator->lag_ports->next_port_in_aggregator))) {
  1790. pr_debug("Some port(s) related to LAG %d - replaceing with LAG %d\n",
  1791. aggregator->aggregator_identifier,
  1792. new_aggregator->aggregator_identifier);
  1793. if ((new_aggregator->lag_ports == port) && new_aggregator->is_active) {
  1794. pr_info("%s: Removing an active aggregator\n",
  1795. aggregator->slave->dev->master->name);
  1796. // select new active aggregator
  1797. select_new_active_agg = 1;
  1798. }
  1799. new_aggregator->is_individual = aggregator->is_individual;
  1800. new_aggregator->actor_admin_aggregator_key = aggregator->actor_admin_aggregator_key;
  1801. new_aggregator->actor_oper_aggregator_key = aggregator->actor_oper_aggregator_key;
  1802. new_aggregator->partner_system = aggregator->partner_system;
  1803. new_aggregator->partner_system_priority = aggregator->partner_system_priority;
  1804. new_aggregator->partner_oper_aggregator_key = aggregator->partner_oper_aggregator_key;
  1805. new_aggregator->receive_state = aggregator->receive_state;
  1806. new_aggregator->transmit_state = aggregator->transmit_state;
  1807. new_aggregator->lag_ports = aggregator->lag_ports;
  1808. new_aggregator->is_active = aggregator->is_active;
  1809. new_aggregator->num_of_ports = aggregator->num_of_ports;
  1810. // update the information that is written on the ports about the aggregator
  1811. for (temp_port = aggregator->lag_ports; temp_port;
  1812. temp_port = temp_port->next_port_in_aggregator) {
  1813. temp_port->aggregator = new_aggregator;
  1814. temp_port->actor_port_aggregator_identifier = new_aggregator->aggregator_identifier;
  1815. }
  1816. // clear the aggregator
  1817. ad_clear_agg(aggregator);
  1818. if (select_new_active_agg)
  1819. ad_agg_selection_logic(__get_first_agg(port));
  1820. } else {
  1821. pr_warning("%s: Warning: unbinding aggregator, and could not find a new aggregator for its ports\n",
  1822. slave->dev->master->name);
  1823. }
  1824. } else { // in case that the only port related to this aggregator is the one we want to remove
  1825. select_new_active_agg = aggregator->is_active;
  1826. // clear the aggregator
  1827. ad_clear_agg(aggregator);
  1828. if (select_new_active_agg) {
  1829. pr_info("%s: Removing an active aggregator\n",
  1830. slave->dev->master->name);
  1831. // select new active aggregator
  1832. ad_agg_selection_logic(__get_first_agg(port));
  1833. }
  1834. }
  1835. }
  1836. pr_debug("Unbinding port %d\n", port->actor_port_number);
  1837. // find the aggregator that this port is connected to
  1838. temp_aggregator = __get_first_agg(port);
  1839. for (; temp_aggregator; temp_aggregator = __get_next_agg(temp_aggregator)) {
  1840. prev_port = NULL;
  1841. // search the port in the aggregator's related ports
  1842. for (temp_port = temp_aggregator->lag_ports; temp_port;
  1843. prev_port = temp_port,
  1844. temp_port = temp_port->next_port_in_aggregator) {
  1845. if (temp_port == port) { // the aggregator found - detach the port from this aggregator
  1846. if (prev_port)
  1847. prev_port->next_port_in_aggregator = temp_port->next_port_in_aggregator;
  1848. else
  1849. temp_aggregator->lag_ports = temp_port->next_port_in_aggregator;
  1850. temp_aggregator->num_of_ports--;
  1851. if (temp_aggregator->num_of_ports == 0) {
  1852. select_new_active_agg = temp_aggregator->is_active;
  1853. // clear the aggregator
  1854. ad_clear_agg(temp_aggregator);
  1855. if (select_new_active_agg) {
  1856. pr_info("%s: Removing an active aggregator\n",
  1857. slave->dev->master->name);
  1858. // select new active aggregator
  1859. ad_agg_selection_logic(__get_first_agg(port));
  1860. }
  1861. }
  1862. break;
  1863. }
  1864. }
  1865. }
  1866. port->slave = NULL;
  1867. }
  1868. /**
  1869. * bond_3ad_state_machine_handler - handle state machines timeout
  1870. * @bond: bonding struct to work on
  1871. *
  1872. * The state machine handling concept in this module is to check every tick
  1873. * which state machine should operate any function. The execution order is
  1874. * round robin, so when we have an interaction between state machines, the
  1875. * reply of one to each other might be delayed until next tick.
  1876. *
  1877. * This function also complete the initialization when the agg_select_timer
  1878. * times out, and it selects an aggregator for the ports that are yet not
  1879. * related to any aggregator, and selects the active aggregator for a bond.
  1880. */
  1881. void bond_3ad_state_machine_handler(struct work_struct *work)
  1882. {
  1883. struct bonding *bond = container_of(work, struct bonding,
  1884. ad_work.work);
  1885. struct port *port;
  1886. struct aggregator *aggregator;
  1887. read_lock(&bond->lock);
  1888. //check if there are any slaves
  1889. if (bond->slave_cnt == 0)
  1890. goto re_arm;
  1891. // check if agg_select_timer timer after initialize is timed out
  1892. if (BOND_AD_INFO(bond).agg_select_timer && !(--BOND_AD_INFO(bond).agg_select_timer)) {
  1893. // select the active aggregator for the bond
  1894. if ((port = __get_first_port(bond))) {
  1895. if (!port->slave) {
  1896. pr_warning("%s: Warning: bond's first port is uninitialized\n",
  1897. bond->dev->name);
  1898. goto re_arm;
  1899. }
  1900. aggregator = __get_first_agg(port);
  1901. ad_agg_selection_logic(aggregator);
  1902. }
  1903. bond_3ad_set_carrier(bond);
  1904. }
  1905. // for each port run the state machines
  1906. for (port = __get_first_port(bond); port; port = __get_next_port(port)) {
  1907. if (!port->slave) {
  1908. pr_warning("%s: Warning: Found an uninitialized port\n",
  1909. bond->dev->name);
  1910. goto re_arm;
  1911. }
  1912. /* Lock around state machines to protect data accessed
  1913. * by all (e.g., port->sm_vars). ad_rx_machine may run
  1914. * concurrently due to incoming LACPDU.
  1915. */
  1916. __get_state_machine_lock(port);
  1917. ad_rx_machine(NULL, port);
  1918. ad_periodic_machine(port);
  1919. ad_port_selection_logic(port);
  1920. ad_mux_machine(port);
  1921. ad_tx_machine(port);
  1922. // turn off the BEGIN bit, since we already handled it
  1923. if (port->sm_vars & AD_PORT_BEGIN)
  1924. port->sm_vars &= ~AD_PORT_BEGIN;
  1925. __release_state_machine_lock(port);
  1926. }
  1927. re_arm:
  1928. queue_delayed_work(bond->wq, &bond->ad_work, ad_delta_in_ticks);
  1929. read_unlock(&bond->lock);
  1930. }
  1931. /**
  1932. * bond_3ad_rx_indication - handle a received frame
  1933. * @lacpdu: received lacpdu
  1934. * @slave: slave struct to work on
  1935. * @length: length of the data received
  1936. *
  1937. * It is assumed that frames that were sent on this NIC don't returned as new
  1938. * received frames (loopback). Since only the payload is given to this
  1939. * function, it check for loopback.
  1940. */
  1941. static void bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave, u16 length)
  1942. {
  1943. struct port *port;
  1944. if (length >= sizeof(struct lacpdu)) {
  1945. port = &(SLAVE_AD_INFO(slave).port);
  1946. if (!port->slave) {
  1947. pr_warning("%s: Warning: port of slave %s is uninitialized\n",
  1948. slave->dev->name, slave->dev->master->name);
  1949. return;
  1950. }
  1951. switch (lacpdu->subtype) {
  1952. case AD_TYPE_LACPDU:
  1953. pr_debug("Received LACPDU on port %d\n",
  1954. port->actor_port_number);
  1955. /* Protect against concurrent state machines */
  1956. __get_state_machine_lock(port);
  1957. ad_rx_machine(lacpdu, port);
  1958. __release_state_machine_lock(port);
  1959. break;
  1960. case AD_TYPE_MARKER:
  1961. // No need to convert fields to Little Endian since we don't use the marker's fields.
  1962. switch (((struct bond_marker *)lacpdu)->tlv_type) {
  1963. case AD_MARKER_INFORMATION_SUBTYPE:
  1964. pr_debug("Received Marker Information on port %d\n",
  1965. port->actor_port_number);
  1966. ad_marker_info_received((struct bond_marker *)lacpdu, port);
  1967. break;
  1968. case AD_MARKER_RESPONSE_SUBTYPE:
  1969. pr_debug("Received Marker Response on port %d\n",
  1970. port->actor_port_number);
  1971. ad_marker_response_received((struct bond_marker *)lacpdu, port);
  1972. break;
  1973. default:
  1974. pr_debug("Received an unknown Marker subtype on slot %d\n",
  1975. port->actor_port_number);
  1976. }
  1977. }
  1978. }
  1979. }
  1980. /**
  1981. * bond_3ad_adapter_speed_changed - handle a slave's speed change indication
  1982. * @slave: slave struct to work on
  1983. *
  1984. * Handle reselection of aggregator (if needed) for this port.
  1985. */
  1986. void bond_3ad_adapter_speed_changed(struct slave *slave)
  1987. {
  1988. struct port *port;
  1989. port = &(SLAVE_AD_INFO(slave).port);
  1990. // if slave is null, the whole port is not initialized
  1991. if (!port->slave) {
  1992. pr_warning("Warning: %s: speed changed for uninitialized port on %s\n",
  1993. slave->dev->master->name, slave->dev->name);
  1994. return;
  1995. }
  1996. port->actor_admin_port_key &= ~AD_SPEED_KEY_BITS;
  1997. port->actor_oper_port_key = port->actor_admin_port_key |=
  1998. (__get_link_speed(port) << 1);
  1999. pr_debug("Port %d changed speed\n", port->actor_port_number);
  2000. // there is no need to reselect a new aggregator, just signal the
  2001. // state machines to reinitialize
  2002. port->sm_vars |= AD_PORT_BEGIN;
  2003. }
  2004. /**
  2005. * bond_3ad_adapter_duplex_changed - handle a slave's duplex change indication
  2006. * @slave: slave struct to work on
  2007. *
  2008. * Handle reselection of aggregator (if needed) for this port.
  2009. */
  2010. void bond_3ad_adapter_duplex_changed(struct slave *slave)
  2011. {
  2012. struct port *port;
  2013. port = &(SLAVE_AD_INFO(slave).port);
  2014. // if slave is null, the whole port is not initialized
  2015. if (!port->slave) {
  2016. pr_warning("%s: Warning: duplex changed for uninitialized port on %s\n",
  2017. slave->dev->master->name, slave->dev->name);
  2018. return;
  2019. }
  2020. port->actor_admin_port_key &= ~AD_DUPLEX_KEY_BITS;
  2021. port->actor_oper_port_key = port->actor_admin_port_key |=
  2022. __get_duplex(port);
  2023. pr_debug("Port %d changed duplex\n", port->actor_port_number);
  2024. // there is no need to reselect a new aggregator, just signal the
  2025. // state machines to reinitialize
  2026. port->sm_vars |= AD_PORT_BEGIN;
  2027. }
  2028. /**
  2029. * bond_3ad_handle_link_change - handle a slave's link status change indication
  2030. * @slave: slave struct to work on
  2031. * @status: whether the link is now up or down
  2032. *
  2033. * Handle reselection of aggregator (if needed) for this port.
  2034. */
  2035. void bond_3ad_handle_link_change(struct slave *slave, char link)
  2036. {
  2037. struct port *port;
  2038. port = &(SLAVE_AD_INFO(slave).port);
  2039. // if slave is null, the whole port is not initialized
  2040. if (!port->slave) {
  2041. pr_warning("Warning: %s: link status changed for uninitialized port on %s\n",
  2042. slave->dev->master->name, slave->dev->name);
  2043. return;
  2044. }
  2045. // on link down we are zeroing duplex and speed since some of the adaptors(ce1000.lan) report full duplex/speed instead of N/A(duplex) / 0(speed)
  2046. // on link up we are forcing recheck on the duplex and speed since some of he adaptors(ce1000.lan) report
  2047. if (link == BOND_LINK_UP) {
  2048. port->is_enabled = true;
  2049. port->actor_admin_port_key &= ~AD_DUPLEX_KEY_BITS;
  2050. port->actor_oper_port_key = port->actor_admin_port_key |=
  2051. __get_duplex(port);
  2052. port->actor_admin_port_key &= ~AD_SPEED_KEY_BITS;
  2053. port->actor_oper_port_key = port->actor_admin_port_key |=
  2054. (__get_link_speed(port) << 1);
  2055. } else {
  2056. /* link has failed */
  2057. port->is_enabled = false;
  2058. port->actor_admin_port_key &= ~AD_DUPLEX_KEY_BITS;
  2059. port->actor_oper_port_key = (port->actor_admin_port_key &=
  2060. ~AD_SPEED_KEY_BITS);
  2061. }
  2062. //BOND_PRINT_DBG(("Port %d changed link status to %s", port->actor_port_number, ((link == BOND_LINK_UP)?"UP":"DOWN")));
  2063. // there is no need to reselect a new aggregator, just signal the
  2064. // state machines to reinitialize
  2065. port->sm_vars |= AD_PORT_BEGIN;
  2066. }
  2067. /*
  2068. * set link state for bonding master: if we have an active
  2069. * aggregator, we're up, if not, we're down. Presumes that we cannot
  2070. * have an active aggregator if there are no slaves with link up.
  2071. *
  2072. * This behavior complies with IEEE 802.3 section 43.3.9.
  2073. *
  2074. * Called by bond_set_carrier(). Return zero if carrier state does not
  2075. * change, nonzero if it does.
  2076. */
  2077. int bond_3ad_set_carrier(struct bonding *bond)
  2078. {
  2079. struct aggregator *active;
  2080. active = __get_active_agg(&(SLAVE_AD_INFO(bond->first_slave).aggregator));
  2081. if (active) {
  2082. /* are enough slaves available to consider link up? */
  2083. if (active->num_of_ports < bond->params.min_links) {
  2084. if (netif_carrier_ok(bond->dev)) {
  2085. netif_carrier_off(bond->dev);
  2086. return 1;
  2087. }
  2088. } else if (!netif_carrier_ok(bond->dev)) {
  2089. netif_carrier_on(bond->dev);
  2090. return 1;
  2091. }
  2092. return 0;
  2093. }
  2094. if (netif_carrier_ok(bond->dev)) {
  2095. netif_carrier_off(bond->dev);
  2096. return 1;
  2097. }
  2098. return 0;
  2099. }
  2100. /**
  2101. * bond_3ad_get_active_agg_info - get information of the active aggregator
  2102. * @bond: bonding struct to work on
  2103. * @ad_info: ad_info struct to fill with the bond's info
  2104. *
  2105. * Returns: 0 on success
  2106. * < 0 on error
  2107. */
  2108. int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info)
  2109. {
  2110. struct aggregator *aggregator = NULL;
  2111. struct port *port;
  2112. for (port = __get_first_port(bond); port; port = __get_next_port(port)) {
  2113. if (port->aggregator && port->aggregator->is_active) {
  2114. aggregator = port->aggregator;
  2115. break;
  2116. }
  2117. }
  2118. if (aggregator) {
  2119. ad_info->aggregator_id = aggregator->aggregator_identifier;
  2120. ad_info->ports = aggregator->num_of_ports;
  2121. ad_info->actor_key = aggregator->actor_oper_aggregator_key;
  2122. ad_info->partner_key = aggregator->partner_oper_aggregator_key;
  2123. memcpy(ad_info->partner_system, aggregator->partner_system.mac_addr_value, ETH_ALEN);
  2124. return 0;
  2125. }
  2126. return -1;
  2127. }
  2128. int bond_3ad_xmit_xor(struct sk_buff *skb, struct net_device *dev)
  2129. {
  2130. struct slave *slave, *start_at;
  2131. struct bonding *bond = netdev_priv(dev);
  2132. int slave_agg_no;
  2133. int slaves_in_agg;
  2134. int agg_id;
  2135. int i;
  2136. struct ad_info ad_info;
  2137. int res = 1;
  2138. if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
  2139. pr_debug("%s: Error: bond_3ad_get_active_agg_info failed\n",
  2140. dev->name);
  2141. goto out;
  2142. }
  2143. slaves_in_agg = ad_info.ports;
  2144. agg_id = ad_info.aggregator_id;
  2145. if (slaves_in_agg == 0) {
  2146. /*the aggregator is empty*/
  2147. pr_debug("%s: Error: active aggregator is empty\n", dev->name);
  2148. goto out;
  2149. }
  2150. slave_agg_no = bond->xmit_hash_policy(skb, slaves_in_agg);
  2151. bond_for_each_slave(bond, slave, i) {
  2152. struct aggregator *agg = SLAVE_AD_INFO(slave).port.aggregator;
  2153. if (agg && (agg->aggregator_identifier == agg_id)) {
  2154. slave_agg_no--;
  2155. if (slave_agg_no < 0)
  2156. break;
  2157. }
  2158. }
  2159. if (slave_agg_no >= 0) {
  2160. pr_err("%s: Error: Couldn't find a slave to tx on for aggregator ID %d\n",
  2161. dev->name, agg_id);
  2162. goto out;
  2163. }
  2164. start_at = slave;
  2165. bond_for_each_slave_from(bond, slave, i, start_at) {
  2166. int slave_agg_id = 0;
  2167. struct aggregator *agg = SLAVE_AD_INFO(slave).port.aggregator;
  2168. if (agg)
  2169. slave_agg_id = agg->aggregator_identifier;
  2170. if (SLAVE_IS_OK(slave) && agg && (slave_agg_id == agg_id)) {
  2171. res = bond_dev_queue_xmit(bond, skb, slave->dev);
  2172. break;
  2173. }
  2174. }
  2175. out:
  2176. if (res) {
  2177. /* no suitable interface, frame not sent */
  2178. dev_kfree_skb(skb);
  2179. }
  2180. return NETDEV_TX_OK;
  2181. }
  2182. void bond_3ad_lacpdu_recv(struct sk_buff *skb, struct bonding *bond,
  2183. struct slave *slave)
  2184. {
  2185. if (skb->protocol != PKT_TYPE_LACPDU)
  2186. return;
  2187. if (!pskb_may_pull(skb, sizeof(struct lacpdu)))
  2188. return;
  2189. read_lock(&bond->lock);
  2190. bond_3ad_rx_indication((struct lacpdu *) skb->data, slave, skb->len);
  2191. read_unlock(&bond->lock);
  2192. }
  2193. /*
  2194. * When modify lacp_rate parameter via sysfs,
  2195. * update actor_oper_port_state of each port.
  2196. *
  2197. * Hold slave->state_machine_lock,
  2198. * so we can modify port->actor_oper_port_state,
  2199. * no matter bond is up or down.
  2200. */
  2201. void bond_3ad_update_lacp_rate(struct bonding *bond)
  2202. {
  2203. int i;
  2204. struct slave *slave;
  2205. struct port *port = NULL;
  2206. int lacp_fast;
  2207. read_lock(&bond->lock);
  2208. lacp_fast = bond->params.lacp_fast;
  2209. bond_for_each_slave(bond, slave, i) {
  2210. port = &(SLAVE_AD_INFO(slave).port);
  2211. __get_state_machine_lock(port);
  2212. if (lacp_fast)
  2213. port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT;
  2214. else
  2215. port->actor_oper_port_state &= ~AD_STATE_LACP_TIMEOUT;
  2216. __release_state_machine_lock(port);
  2217. }
  2218. read_unlock(&bond->lock);
  2219. }