bond_main.c 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581
  1. /*
  2. * originally based on the dummy device.
  3. *
  4. * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
  5. * Licensed under the GPL. Based on dummy.c, and eql.c devices.
  6. *
  7. * bonding.c: an Ethernet Bonding driver
  8. *
  9. * This is useful to talk to a Cisco EtherChannel compatible equipment:
  10. * Cisco 5500
  11. * Sun Trunking (Solaris)
  12. * Alteon AceDirector Trunks
  13. * Linux Bonding
  14. * and probably many L2 switches ...
  15. *
  16. * How it works:
  17. * ifconfig bond0 ipaddress netmask up
  18. * will setup a network device, with an ip address. No mac address
  19. * will be assigned at this time. The hw mac address will come from
  20. * the first slave bonded to the channel. All slaves will then use
  21. * this hw mac address.
  22. *
  23. * ifconfig bond0 down
  24. * will release all slaves, marking them as down.
  25. *
  26. * ifenslave bond0 eth0
  27. * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
  28. * a: be used as initial mac address
  29. * b: if a hw mac address already is there, eth0's hw mac address
  30. * will then be set from bond0.
  31. *
  32. */
  33. #include <linux/kernel.h>
  34. #include <linux/module.h>
  35. #include <linux/types.h>
  36. #include <linux/fcntl.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/ptrace.h>
  39. #include <linux/ioport.h>
  40. #include <linux/in.h>
  41. #include <net/ip.h>
  42. #include <linux/ip.h>
  43. #include <linux/tcp.h>
  44. #include <linux/udp.h>
  45. #include <linux/slab.h>
  46. #include <linux/string.h>
  47. #include <linux/init.h>
  48. #include <linux/timer.h>
  49. #include <linux/socket.h>
  50. #include <linux/ctype.h>
  51. #include <linux/inet.h>
  52. #include <linux/bitops.h>
  53. #include <linux/io.h>
  54. #include <asm/dma.h>
  55. #include <linux/uaccess.h>
  56. #include <linux/errno.h>
  57. #include <linux/netdevice.h>
  58. #include <linux/inetdevice.h>
  59. #include <linux/igmp.h>
  60. #include <linux/etherdevice.h>
  61. #include <linux/skbuff.h>
  62. #include <net/sock.h>
  63. #include <linux/rtnetlink.h>
  64. #include <linux/smp.h>
  65. #include <linux/if_ether.h>
  66. #include <net/arp.h>
  67. #include <linux/mii.h>
  68. #include <linux/ethtool.h>
  69. #include <linux/if_vlan.h>
  70. #include <linux/if_bonding.h>
  71. #include <linux/jiffies.h>
  72. #include <linux/preempt.h>
  73. #include <net/route.h>
  74. #include <net/net_namespace.h>
  75. #include <net/netns/generic.h>
  76. #include <net/pkt_sched.h>
  77. #include <linux/rculist.h>
  78. #include <net/flow_keys.h>
  79. #include "bonding.h"
  80. #include "bond_3ad.h"
  81. #include "bond_alb.h"
  82. /*---------------------------- Module parameters ----------------------------*/
  83. /* monitor all links that often (in milliseconds). <=0 disables monitoring */
  84. static int max_bonds = BOND_DEFAULT_MAX_BONDS;
  85. static int tx_queues = BOND_DEFAULT_TX_QUEUES;
  86. static int num_peer_notif = 1;
  87. static int miimon;
  88. static int updelay;
  89. static int downdelay;
  90. static int use_carrier = 1;
  91. static char *mode;
  92. static char *primary;
  93. static char *primary_reselect;
  94. static char *lacp_rate;
  95. static int min_links;
  96. static char *ad_select;
  97. static char *xmit_hash_policy;
  98. static int arp_interval;
  99. static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
  100. static char *arp_validate;
  101. static char *arp_all_targets;
  102. static char *fail_over_mac;
  103. static int all_slaves_active;
  104. static struct bond_params bonding_defaults;
  105. static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
  106. static int packets_per_slave = 1;
  107. static int lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL;
  108. module_param(max_bonds, int, 0);
  109. MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
  110. module_param(tx_queues, int, 0);
  111. MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
  112. module_param_named(num_grat_arp, num_peer_notif, int, 0644);
  113. MODULE_PARM_DESC(num_grat_arp, "Number of peer notifications to send on "
  114. "failover event (alias of num_unsol_na)");
  115. module_param_named(num_unsol_na, num_peer_notif, int, 0644);
  116. MODULE_PARM_DESC(num_unsol_na, "Number of peer notifications to send on "
  117. "failover event (alias of num_grat_arp)");
  118. module_param(miimon, int, 0);
  119. MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
  120. module_param(updelay, int, 0);
  121. MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
  122. module_param(downdelay, int, 0);
  123. MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
  124. "in milliseconds");
  125. module_param(use_carrier, int, 0);
  126. MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
  127. "0 for off, 1 for on (default)");
  128. module_param(mode, charp, 0);
  129. MODULE_PARM_DESC(mode, "Mode of operation; 0 for balance-rr, "
  130. "1 for active-backup, 2 for balance-xor, "
  131. "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
  132. "6 for balance-alb");
  133. module_param(primary, charp, 0);
  134. MODULE_PARM_DESC(primary, "Primary network device to use");
  135. module_param(primary_reselect, charp, 0);
  136. MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
  137. "once it comes up; "
  138. "0 for always (default), "
  139. "1 for only if speed of primary is "
  140. "better, "
  141. "2 for only on active slave "
  142. "failure");
  143. module_param(lacp_rate, charp, 0);
  144. MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner; "
  145. "0 for slow, 1 for fast");
  146. module_param(ad_select, charp, 0);
  147. MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic; "
  148. "0 for stable (default), 1 for bandwidth, "
  149. "2 for count");
  150. module_param(min_links, int, 0);
  151. MODULE_PARM_DESC(min_links, "Minimum number of available links before turning on carrier");
  152. module_param(xmit_hash_policy, charp, 0);
  153. MODULE_PARM_DESC(xmit_hash_policy, "balance-xor and 802.3ad hashing method; "
  154. "0 for layer 2 (default), 1 for layer 3+4, "
  155. "2 for layer 2+3, 3 for encap layer 2+3, "
  156. "4 for encap layer 3+4");
  157. module_param(arp_interval, int, 0);
  158. MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
  159. module_param_array(arp_ip_target, charp, NULL, 0);
  160. MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
  161. module_param(arp_validate, charp, 0);
  162. MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes; "
  163. "0 for none (default), 1 for active, "
  164. "2 for backup, 3 for all");
  165. module_param(arp_all_targets, charp, 0);
  166. MODULE_PARM_DESC(arp_all_targets, "fail on any/all arp targets timeout; 0 for any (default), 1 for all");
  167. module_param(fail_over_mac, charp, 0);
  168. MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to "
  169. "the same MAC; 0 for none (default), "
  170. "1 for active, 2 for follow");
  171. module_param(all_slaves_active, int, 0);
  172. MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface "
  173. "by setting active flag for all slaves; "
  174. "0 for never (default), 1 for always.");
  175. module_param(resend_igmp, int, 0);
  176. MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on "
  177. "link failure");
  178. module_param(packets_per_slave, int, 0);
  179. MODULE_PARM_DESC(packets_per_slave, "Packets to send per slave in balance-rr "
  180. "mode; 0 for a random slave, 1 packet per "
  181. "slave (default), >1 packets per slave.");
  182. module_param(lp_interval, uint, 0);
  183. MODULE_PARM_DESC(lp_interval, "The number of seconds between instances where "
  184. "the bonding driver sends learning packets to "
  185. "each slaves peer switch. The default is 1.");
  186. /*----------------------------- Global variables ----------------------------*/
  187. #ifdef CONFIG_NET_POLL_CONTROLLER
  188. atomic_t netpoll_block_tx = ATOMIC_INIT(0);
  189. #endif
  190. int bond_net_id __read_mostly;
  191. static __be32 arp_target[BOND_MAX_ARP_TARGETS];
  192. static int arp_ip_count;
  193. static int bond_mode = BOND_MODE_ROUNDROBIN;
  194. static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
  195. static int lacp_fast;
  196. /*-------------------------- Forward declarations ---------------------------*/
  197. static int bond_init(struct net_device *bond_dev);
  198. static void bond_uninit(struct net_device *bond_dev);
  199. static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
  200. struct rtnl_link_stats64 *stats);
  201. static void bond_slave_arr_handler(struct work_struct *work);
  202. /*---------------------------- General routines -----------------------------*/
  203. const char *bond_mode_name(int mode)
  204. {
  205. static const char *names[] = {
  206. [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
  207. [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
  208. [BOND_MODE_XOR] = "load balancing (xor)",
  209. [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
  210. [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
  211. [BOND_MODE_TLB] = "transmit load balancing",
  212. [BOND_MODE_ALB] = "adaptive load balancing",
  213. };
  214. if (mode < BOND_MODE_ROUNDROBIN || mode > BOND_MODE_ALB)
  215. return "unknown";
  216. return names[mode];
  217. }
  218. /*---------------------------------- VLAN -----------------------------------*/
  219. /**
  220. * bond_dev_queue_xmit - Prepare skb for xmit.
  221. *
  222. * @bond: bond device that got this skb for tx.
  223. * @skb: hw accel VLAN tagged skb to transmit
  224. * @slave_dev: slave that is supposed to xmit this skbuff
  225. */
  226. void bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
  227. struct net_device *slave_dev)
  228. {
  229. skb->dev = slave_dev;
  230. BUILD_BUG_ON(sizeof(skb->queue_mapping) !=
  231. sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping));
  232. skb->queue_mapping = qdisc_skb_cb(skb)->slave_dev_queue_mapping;
  233. if (unlikely(netpoll_tx_running(bond->dev)))
  234. bond_netpoll_send_skb(bond_get_slave_by_dev(bond, slave_dev), skb);
  235. else
  236. dev_queue_xmit(skb);
  237. }
  238. /* In the following 2 functions, bond_vlan_rx_add_vid and bond_vlan_rx_kill_vid,
  239. * We don't protect the slave list iteration with a lock because:
  240. * a. This operation is performed in IOCTL context,
  241. * b. The operation is protected by the RTNL semaphore in the 8021q code,
  242. * c. Holding a lock with BH disabled while directly calling a base driver
  243. * entry point is generally a BAD idea.
  244. *
  245. * The design of synchronization/protection for this operation in the 8021q
  246. * module is good for one or more VLAN devices over a single physical device
  247. * and cannot be extended for a teaming solution like bonding, so there is a
  248. * potential race condition here where a net device from the vlan group might
  249. * be referenced (either by a base driver or the 8021q code) while it is being
  250. * removed from the system. However, it turns out we're not making matters
  251. * worse, and if it works for regular VLAN usage it will work here too.
  252. */
  253. /**
  254. * bond_vlan_rx_add_vid - Propagates adding an id to slaves
  255. * @bond_dev: bonding net device that got called
  256. * @vid: vlan id being added
  257. */
  258. static int bond_vlan_rx_add_vid(struct net_device *bond_dev,
  259. __be16 proto, u16 vid)
  260. {
  261. struct bonding *bond = netdev_priv(bond_dev);
  262. struct slave *slave, *rollback_slave;
  263. struct list_head *iter;
  264. int res;
  265. bond_for_each_slave(bond, slave, iter) {
  266. res = vlan_vid_add(slave->dev, proto, vid);
  267. if (res)
  268. goto unwind;
  269. }
  270. return 0;
  271. unwind:
  272. /* unwind to the slave that failed */
  273. bond_for_each_slave(bond, rollback_slave, iter) {
  274. if (rollback_slave == slave)
  275. break;
  276. vlan_vid_del(rollback_slave->dev, proto, vid);
  277. }
  278. return res;
  279. }
  280. /**
  281. * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
  282. * @bond_dev: bonding net device that got called
  283. * @vid: vlan id being removed
  284. */
  285. static int bond_vlan_rx_kill_vid(struct net_device *bond_dev,
  286. __be16 proto, u16 vid)
  287. {
  288. struct bonding *bond = netdev_priv(bond_dev);
  289. struct list_head *iter;
  290. struct slave *slave;
  291. bond_for_each_slave(bond, slave, iter)
  292. vlan_vid_del(slave->dev, proto, vid);
  293. if (bond_is_lb(bond))
  294. bond_alb_clear_vlan(bond, vid);
  295. return 0;
  296. }
  297. /*------------------------------- Link status -------------------------------*/
  298. /* Set the carrier state for the master according to the state of its
  299. * slaves. If any slaves are up, the master is up. In 802.3ad mode,
  300. * do special 802.3ad magic.
  301. *
  302. * Returns zero if carrier state does not change, nonzero if it does.
  303. */
  304. static int bond_set_carrier(struct bonding *bond)
  305. {
  306. struct list_head *iter;
  307. struct slave *slave;
  308. if (!bond_has_slaves(bond))
  309. goto down;
  310. if (BOND_MODE(bond) == BOND_MODE_8023AD)
  311. return bond_3ad_set_carrier(bond);
  312. bond_for_each_slave(bond, slave, iter) {
  313. if (slave->link == BOND_LINK_UP) {
  314. if (!netif_carrier_ok(bond->dev)) {
  315. netif_carrier_on(bond->dev);
  316. return 1;
  317. }
  318. return 0;
  319. }
  320. }
  321. down:
  322. if (netif_carrier_ok(bond->dev)) {
  323. netif_carrier_off(bond->dev);
  324. return 1;
  325. }
  326. return 0;
  327. }
  328. /* Get link speed and duplex from the slave's base driver
  329. * using ethtool. If for some reason the call fails or the
  330. * values are invalid, set speed and duplex to -1,
  331. * and return.
  332. */
  333. static void bond_update_speed_duplex(struct slave *slave)
  334. {
  335. struct net_device *slave_dev = slave->dev;
  336. struct ethtool_cmd ecmd;
  337. u32 slave_speed;
  338. int res;
  339. slave->speed = SPEED_UNKNOWN;
  340. slave->duplex = DUPLEX_UNKNOWN;
  341. res = __ethtool_get_settings(slave_dev, &ecmd);
  342. if (res < 0)
  343. return;
  344. slave_speed = ethtool_cmd_speed(&ecmd);
  345. if (slave_speed == 0 || slave_speed == ((__u32) -1))
  346. return;
  347. switch (ecmd.duplex) {
  348. case DUPLEX_FULL:
  349. case DUPLEX_HALF:
  350. break;
  351. default:
  352. return;
  353. }
  354. slave->speed = slave_speed;
  355. slave->duplex = ecmd.duplex;
  356. return;
  357. }
  358. const char *bond_slave_link_status(s8 link)
  359. {
  360. switch (link) {
  361. case BOND_LINK_UP:
  362. return "up";
  363. case BOND_LINK_FAIL:
  364. return "going down";
  365. case BOND_LINK_DOWN:
  366. return "down";
  367. case BOND_LINK_BACK:
  368. return "going back";
  369. default:
  370. return "unknown";
  371. }
  372. }
  373. /* if <dev> supports MII link status reporting, check its link status.
  374. *
  375. * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
  376. * depending upon the setting of the use_carrier parameter.
  377. *
  378. * Return either BMSR_LSTATUS, meaning that the link is up (or we
  379. * can't tell and just pretend it is), or 0, meaning that the link is
  380. * down.
  381. *
  382. * If reporting is non-zero, instead of faking link up, return -1 if
  383. * both ETHTOOL and MII ioctls fail (meaning the device does not
  384. * support them). If use_carrier is set, return whatever it says.
  385. * It'd be nice if there was a good way to tell if a driver supports
  386. * netif_carrier, but there really isn't.
  387. */
  388. static int bond_check_dev_link(struct bonding *bond,
  389. struct net_device *slave_dev, int reporting)
  390. {
  391. const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
  392. int (*ioctl)(struct net_device *, struct ifreq *, int);
  393. struct ifreq ifr;
  394. struct mii_ioctl_data *mii;
  395. if (!reporting && !netif_running(slave_dev))
  396. return 0;
  397. if (bond->params.use_carrier)
  398. return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
  399. /* Try to get link status using Ethtool first. */
  400. if (slave_dev->ethtool_ops->get_link)
  401. return slave_dev->ethtool_ops->get_link(slave_dev) ?
  402. BMSR_LSTATUS : 0;
  403. /* Ethtool can't be used, fallback to MII ioctls. */
  404. ioctl = slave_ops->ndo_do_ioctl;
  405. if (ioctl) {
  406. /* TODO: set pointer to correct ioctl on a per team member
  407. * bases to make this more efficient. that is, once
  408. * we determine the correct ioctl, we will always
  409. * call it and not the others for that team
  410. * member.
  411. */
  412. /* We cannot assume that SIOCGMIIPHY will also read a
  413. * register; not all network drivers (e.g., e100)
  414. * support that.
  415. */
  416. /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
  417. strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
  418. mii = if_mii(&ifr);
  419. if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
  420. mii->reg_num = MII_BMSR;
  421. if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
  422. return mii->val_out & BMSR_LSTATUS;
  423. }
  424. }
  425. /* If reporting, report that either there's no dev->do_ioctl,
  426. * or both SIOCGMIIREG and get_link failed (meaning that we
  427. * cannot report link status). If not reporting, pretend
  428. * we're ok.
  429. */
  430. return reporting ? -1 : BMSR_LSTATUS;
  431. }
  432. /*----------------------------- Multicast list ------------------------------*/
  433. /* Push the promiscuity flag down to appropriate slaves */
  434. static int bond_set_promiscuity(struct bonding *bond, int inc)
  435. {
  436. struct list_head *iter;
  437. int err = 0;
  438. if (bond_uses_primary(bond)) {
  439. struct slave *curr_active = rtnl_dereference(bond->curr_active_slave);
  440. if (curr_active)
  441. err = dev_set_promiscuity(curr_active->dev, inc);
  442. } else {
  443. struct slave *slave;
  444. bond_for_each_slave(bond, slave, iter) {
  445. err = dev_set_promiscuity(slave->dev, inc);
  446. if (err)
  447. return err;
  448. }
  449. }
  450. return err;
  451. }
  452. /* Push the allmulti flag down to all slaves */
  453. static int bond_set_allmulti(struct bonding *bond, int inc)
  454. {
  455. struct list_head *iter;
  456. int err = 0;
  457. if (bond_uses_primary(bond)) {
  458. struct slave *curr_active = rtnl_dereference(bond->curr_active_slave);
  459. if (curr_active)
  460. err = dev_set_allmulti(curr_active->dev, inc);
  461. } else {
  462. struct slave *slave;
  463. bond_for_each_slave(bond, slave, iter) {
  464. err = dev_set_allmulti(slave->dev, inc);
  465. if (err)
  466. return err;
  467. }
  468. }
  469. return err;
  470. }
  471. /* Retrieve the list of registered multicast addresses for the bonding
  472. * device and retransmit an IGMP JOIN request to the current active
  473. * slave.
  474. */
  475. static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
  476. {
  477. struct bonding *bond = container_of(work, struct bonding,
  478. mcast_work.work);
  479. if (!rtnl_trylock()) {
  480. queue_delayed_work(bond->wq, &bond->mcast_work, 1);
  481. return;
  482. }
  483. call_netdevice_notifiers(NETDEV_RESEND_IGMP, bond->dev);
  484. if (bond->igmp_retrans > 1) {
  485. bond->igmp_retrans--;
  486. queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
  487. }
  488. rtnl_unlock();
  489. }
  490. /* Flush bond's hardware addresses from slave */
  491. static void bond_hw_addr_flush(struct net_device *bond_dev,
  492. struct net_device *slave_dev)
  493. {
  494. struct bonding *bond = netdev_priv(bond_dev);
  495. dev_uc_unsync(slave_dev, bond_dev);
  496. dev_mc_unsync(slave_dev, bond_dev);
  497. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  498. /* del lacpdu mc addr from mc list */
  499. u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
  500. dev_mc_del(slave_dev, lacpdu_multicast);
  501. }
  502. }
  503. /*--------------------------- Active slave change ---------------------------*/
  504. /* Update the hardware address list and promisc/allmulti for the new and
  505. * old active slaves (if any). Modes that are not using primary keep all
  506. * slaves up date at all times; only the modes that use primary need to call
  507. * this function to swap these settings during a failover.
  508. */
  509. static void bond_hw_addr_swap(struct bonding *bond, struct slave *new_active,
  510. struct slave *old_active)
  511. {
  512. if (old_active) {
  513. if (bond->dev->flags & IFF_PROMISC)
  514. dev_set_promiscuity(old_active->dev, -1);
  515. if (bond->dev->flags & IFF_ALLMULTI)
  516. dev_set_allmulti(old_active->dev, -1);
  517. bond_hw_addr_flush(bond->dev, old_active->dev);
  518. }
  519. if (new_active) {
  520. /* FIXME: Signal errors upstream. */
  521. if (bond->dev->flags & IFF_PROMISC)
  522. dev_set_promiscuity(new_active->dev, 1);
  523. if (bond->dev->flags & IFF_ALLMULTI)
  524. dev_set_allmulti(new_active->dev, 1);
  525. netif_addr_lock_bh(bond->dev);
  526. dev_uc_sync(new_active->dev, bond->dev);
  527. dev_mc_sync(new_active->dev, bond->dev);
  528. netif_addr_unlock_bh(bond->dev);
  529. }
  530. }
  531. /**
  532. * bond_set_dev_addr - clone slave's address to bond
  533. * @bond_dev: bond net device
  534. * @slave_dev: slave net device
  535. *
  536. * Should be called with RTNL held.
  537. */
  538. static void bond_set_dev_addr(struct net_device *bond_dev,
  539. struct net_device *slave_dev)
  540. {
  541. netdev_dbg(bond_dev, "bond_dev=%p slave_dev=%p slave_dev->addr_len=%d\n",
  542. bond_dev, slave_dev, slave_dev->addr_len);
  543. memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
  544. bond_dev->addr_assign_type = NET_ADDR_STOLEN;
  545. call_netdevice_notifiers(NETDEV_CHANGEADDR, bond_dev);
  546. }
  547. /* bond_do_fail_over_mac
  548. *
  549. * Perform special MAC address swapping for fail_over_mac settings
  550. *
  551. * Called with RTNL
  552. */
  553. static void bond_do_fail_over_mac(struct bonding *bond,
  554. struct slave *new_active,
  555. struct slave *old_active)
  556. {
  557. u8 tmp_mac[ETH_ALEN];
  558. struct sockaddr saddr;
  559. int rv;
  560. switch (bond->params.fail_over_mac) {
  561. case BOND_FOM_ACTIVE:
  562. if (new_active)
  563. bond_set_dev_addr(bond->dev, new_active->dev);
  564. break;
  565. case BOND_FOM_FOLLOW:
  566. /* if new_active && old_active, swap them
  567. * if just old_active, do nothing (going to no active slave)
  568. * if just new_active, set new_active to bond's MAC
  569. */
  570. if (!new_active)
  571. return;
  572. if (old_active) {
  573. ether_addr_copy(tmp_mac, new_active->dev->dev_addr);
  574. ether_addr_copy(saddr.sa_data,
  575. old_active->dev->dev_addr);
  576. saddr.sa_family = new_active->dev->type;
  577. } else {
  578. ether_addr_copy(saddr.sa_data, bond->dev->dev_addr);
  579. saddr.sa_family = bond->dev->type;
  580. }
  581. rv = dev_set_mac_address(new_active->dev, &saddr);
  582. if (rv) {
  583. netdev_err(bond->dev, "Error %d setting MAC of slave %s\n",
  584. -rv, new_active->dev->name);
  585. goto out;
  586. }
  587. if (!old_active)
  588. goto out;
  589. ether_addr_copy(saddr.sa_data, tmp_mac);
  590. saddr.sa_family = old_active->dev->type;
  591. rv = dev_set_mac_address(old_active->dev, &saddr);
  592. if (rv)
  593. netdev_err(bond->dev, "Error %d setting MAC of slave %s\n",
  594. -rv, new_active->dev->name);
  595. out:
  596. break;
  597. default:
  598. netdev_err(bond->dev, "bond_do_fail_over_mac impossible: bad policy %d\n",
  599. bond->params.fail_over_mac);
  600. break;
  601. }
  602. }
  603. static bool bond_should_change_active(struct bonding *bond)
  604. {
  605. struct slave *prim = rtnl_dereference(bond->primary_slave);
  606. struct slave *curr = rtnl_dereference(bond->curr_active_slave);
  607. if (!prim || !curr || curr->link != BOND_LINK_UP)
  608. return true;
  609. if (bond->force_primary) {
  610. bond->force_primary = false;
  611. return true;
  612. }
  613. if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
  614. (prim->speed < curr->speed ||
  615. (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
  616. return false;
  617. if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
  618. return false;
  619. return true;
  620. }
  621. /**
  622. * find_best_interface - select the best available slave to be the active one
  623. * @bond: our bonding struct
  624. */
  625. static struct slave *bond_find_best_slave(struct bonding *bond)
  626. {
  627. struct slave *slave, *bestslave = NULL, *primary;
  628. struct list_head *iter;
  629. int mintime = bond->params.updelay;
  630. primary = rtnl_dereference(bond->primary_slave);
  631. if (primary && primary->link == BOND_LINK_UP &&
  632. bond_should_change_active(bond))
  633. return primary;
  634. bond_for_each_slave(bond, slave, iter) {
  635. if (slave->link == BOND_LINK_UP)
  636. return slave;
  637. if (slave->link == BOND_LINK_BACK && bond_slave_is_up(slave) &&
  638. slave->delay < mintime) {
  639. mintime = slave->delay;
  640. bestslave = slave;
  641. }
  642. }
  643. return bestslave;
  644. }
  645. static bool bond_should_notify_peers(struct bonding *bond)
  646. {
  647. struct slave *slave;
  648. rcu_read_lock();
  649. slave = rcu_dereference(bond->curr_active_slave);
  650. rcu_read_unlock();
  651. netdev_dbg(bond->dev, "bond_should_notify_peers: slave %s\n",
  652. slave ? slave->dev->name : "NULL");
  653. if (!slave || !bond->send_peer_notif ||
  654. test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
  655. return false;
  656. return true;
  657. }
  658. /**
  659. * change_active_interface - change the active slave into the specified one
  660. * @bond: our bonding struct
  661. * @new: the new slave to make the active one
  662. *
  663. * Set the new slave to the bond's settings and unset them on the old
  664. * curr_active_slave.
  665. * Setting include flags, mc-list, promiscuity, allmulti, etc.
  666. *
  667. * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
  668. * because it is apparently the best available slave we have, even though its
  669. * updelay hasn't timed out yet.
  670. *
  671. * Caller must hold RTNL.
  672. */
  673. void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
  674. {
  675. struct slave *old_active;
  676. ASSERT_RTNL();
  677. old_active = rtnl_dereference(bond->curr_active_slave);
  678. if (old_active == new_active)
  679. return;
  680. if (new_active) {
  681. new_active->last_link_up = jiffies;
  682. if (new_active->link == BOND_LINK_BACK) {
  683. if (bond_uses_primary(bond)) {
  684. netdev_info(bond->dev, "making interface %s the new active one %d ms earlier\n",
  685. new_active->dev->name,
  686. (bond->params.updelay - new_active->delay) * bond->params.miimon);
  687. }
  688. new_active->delay = 0;
  689. new_active->link = BOND_LINK_UP;
  690. if (BOND_MODE(bond) == BOND_MODE_8023AD)
  691. bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
  692. if (bond_is_lb(bond))
  693. bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
  694. } else {
  695. if (bond_uses_primary(bond)) {
  696. netdev_info(bond->dev, "making interface %s the new active one\n",
  697. new_active->dev->name);
  698. }
  699. }
  700. }
  701. if (bond_uses_primary(bond))
  702. bond_hw_addr_swap(bond, new_active, old_active);
  703. if (bond_is_lb(bond)) {
  704. bond_alb_handle_active_change(bond, new_active);
  705. if (old_active)
  706. bond_set_slave_inactive_flags(old_active,
  707. BOND_SLAVE_NOTIFY_NOW);
  708. if (new_active)
  709. bond_set_slave_active_flags(new_active,
  710. BOND_SLAVE_NOTIFY_NOW);
  711. } else {
  712. rcu_assign_pointer(bond->curr_active_slave, new_active);
  713. }
  714. if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) {
  715. if (old_active)
  716. bond_set_slave_inactive_flags(old_active,
  717. BOND_SLAVE_NOTIFY_NOW);
  718. if (new_active) {
  719. bool should_notify_peers = false;
  720. bond_set_slave_active_flags(new_active,
  721. BOND_SLAVE_NOTIFY_NOW);
  722. if (bond->params.fail_over_mac)
  723. bond_do_fail_over_mac(bond, new_active,
  724. old_active);
  725. if (netif_running(bond->dev)) {
  726. bond->send_peer_notif =
  727. bond->params.num_peer_notif;
  728. should_notify_peers =
  729. bond_should_notify_peers(bond);
  730. }
  731. call_netdevice_notifiers(NETDEV_BONDING_FAILOVER, bond->dev);
  732. if (should_notify_peers)
  733. call_netdevice_notifiers(NETDEV_NOTIFY_PEERS,
  734. bond->dev);
  735. }
  736. }
  737. /* resend IGMP joins since active slave has changed or
  738. * all were sent on curr_active_slave.
  739. * resend only if bond is brought up with the affected
  740. * bonding modes and the retransmission is enabled
  741. */
  742. if (netif_running(bond->dev) && (bond->params.resend_igmp > 0) &&
  743. ((bond_uses_primary(bond) && new_active) ||
  744. BOND_MODE(bond) == BOND_MODE_ROUNDROBIN)) {
  745. bond->igmp_retrans = bond->params.resend_igmp;
  746. queue_delayed_work(bond->wq, &bond->mcast_work, 1);
  747. }
  748. }
  749. /**
  750. * bond_select_active_slave - select a new active slave, if needed
  751. * @bond: our bonding struct
  752. *
  753. * This functions should be called when one of the following occurs:
  754. * - The old curr_active_slave has been released or lost its link.
  755. * - The primary_slave has got its link back.
  756. * - A slave has got its link back and there's no old curr_active_slave.
  757. *
  758. * Caller must hold RTNL.
  759. */
  760. void bond_select_active_slave(struct bonding *bond)
  761. {
  762. struct slave *best_slave;
  763. int rv;
  764. ASSERT_RTNL();
  765. best_slave = bond_find_best_slave(bond);
  766. if (best_slave != rtnl_dereference(bond->curr_active_slave)) {
  767. bond_change_active_slave(bond, best_slave);
  768. rv = bond_set_carrier(bond);
  769. if (!rv)
  770. return;
  771. if (netif_carrier_ok(bond->dev)) {
  772. netdev_info(bond->dev, "first active interface up!\n");
  773. } else {
  774. netdev_info(bond->dev, "now running without any active interface!\n");
  775. }
  776. }
  777. }
  778. #ifdef CONFIG_NET_POLL_CONTROLLER
  779. static inline int slave_enable_netpoll(struct slave *slave)
  780. {
  781. struct netpoll *np;
  782. int err = 0;
  783. np = kzalloc(sizeof(*np), GFP_KERNEL);
  784. err = -ENOMEM;
  785. if (!np)
  786. goto out;
  787. err = __netpoll_setup(np, slave->dev);
  788. if (err) {
  789. kfree(np);
  790. goto out;
  791. }
  792. slave->np = np;
  793. out:
  794. return err;
  795. }
  796. static inline void slave_disable_netpoll(struct slave *slave)
  797. {
  798. struct netpoll *np = slave->np;
  799. if (!np)
  800. return;
  801. slave->np = NULL;
  802. __netpoll_free_async(np);
  803. }
  804. static void bond_poll_controller(struct net_device *bond_dev)
  805. {
  806. }
  807. static void bond_netpoll_cleanup(struct net_device *bond_dev)
  808. {
  809. struct bonding *bond = netdev_priv(bond_dev);
  810. struct list_head *iter;
  811. struct slave *slave;
  812. bond_for_each_slave(bond, slave, iter)
  813. if (bond_slave_is_up(slave))
  814. slave_disable_netpoll(slave);
  815. }
  816. static int bond_netpoll_setup(struct net_device *dev, struct netpoll_info *ni)
  817. {
  818. struct bonding *bond = netdev_priv(dev);
  819. struct list_head *iter;
  820. struct slave *slave;
  821. int err = 0;
  822. bond_for_each_slave(bond, slave, iter) {
  823. err = slave_enable_netpoll(slave);
  824. if (err) {
  825. bond_netpoll_cleanup(dev);
  826. break;
  827. }
  828. }
  829. return err;
  830. }
  831. #else
  832. static inline int slave_enable_netpoll(struct slave *slave)
  833. {
  834. return 0;
  835. }
  836. static inline void slave_disable_netpoll(struct slave *slave)
  837. {
  838. }
  839. static void bond_netpoll_cleanup(struct net_device *bond_dev)
  840. {
  841. }
  842. #endif
  843. /*---------------------------------- IOCTL ----------------------------------*/
  844. static netdev_features_t bond_fix_features(struct net_device *dev,
  845. netdev_features_t features)
  846. {
  847. struct bonding *bond = netdev_priv(dev);
  848. struct list_head *iter;
  849. netdev_features_t mask;
  850. struct slave *slave;
  851. mask = features;
  852. features &= ~NETIF_F_ONE_FOR_ALL;
  853. features |= NETIF_F_ALL_FOR_ALL;
  854. bond_for_each_slave(bond, slave, iter) {
  855. features = netdev_increment_features(features,
  856. slave->dev->features,
  857. mask);
  858. }
  859. features = netdev_add_tso_features(features, mask);
  860. return features;
  861. }
  862. #define BOND_VLAN_FEATURES (NETIF_F_ALL_CSUM | NETIF_F_SG | \
  863. NETIF_F_FRAGLIST | NETIF_F_ALL_TSO | \
  864. NETIF_F_HIGHDMA | NETIF_F_LRO)
  865. #define BOND_ENC_FEATURES (NETIF_F_ALL_CSUM | NETIF_F_SG | NETIF_F_RXCSUM |\
  866. NETIF_F_TSO | NETIF_F_GSO_UDP_TUNNEL)
  867. static void bond_compute_features(struct bonding *bond)
  868. {
  869. unsigned int dst_release_flag = IFF_XMIT_DST_RELEASE |
  870. IFF_XMIT_DST_RELEASE_PERM;
  871. netdev_features_t vlan_features = BOND_VLAN_FEATURES;
  872. netdev_features_t enc_features = BOND_ENC_FEATURES;
  873. struct net_device *bond_dev = bond->dev;
  874. struct list_head *iter;
  875. struct slave *slave;
  876. unsigned short max_hard_header_len = ETH_HLEN;
  877. unsigned int gso_max_size = GSO_MAX_SIZE;
  878. u16 gso_max_segs = GSO_MAX_SEGS;
  879. if (!bond_has_slaves(bond))
  880. goto done;
  881. vlan_features &= NETIF_F_ALL_FOR_ALL;
  882. bond_for_each_slave(bond, slave, iter) {
  883. vlan_features = netdev_increment_features(vlan_features,
  884. slave->dev->vlan_features, BOND_VLAN_FEATURES);
  885. enc_features = netdev_increment_features(enc_features,
  886. slave->dev->hw_enc_features,
  887. BOND_ENC_FEATURES);
  888. dst_release_flag &= slave->dev->priv_flags;
  889. if (slave->dev->hard_header_len > max_hard_header_len)
  890. max_hard_header_len = slave->dev->hard_header_len;
  891. gso_max_size = min(gso_max_size, slave->dev->gso_max_size);
  892. gso_max_segs = min(gso_max_segs, slave->dev->gso_max_segs);
  893. }
  894. done:
  895. bond_dev->vlan_features = vlan_features;
  896. bond_dev->hw_enc_features = enc_features;
  897. bond_dev->hard_header_len = max_hard_header_len;
  898. bond_dev->gso_max_segs = gso_max_segs;
  899. netif_set_gso_max_size(bond_dev, gso_max_size);
  900. bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
  901. if ((bond_dev->priv_flags & IFF_XMIT_DST_RELEASE_PERM) &&
  902. dst_release_flag == (IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM))
  903. bond_dev->priv_flags |= IFF_XMIT_DST_RELEASE;
  904. netdev_change_features(bond_dev);
  905. }
  906. static void bond_setup_by_slave(struct net_device *bond_dev,
  907. struct net_device *slave_dev)
  908. {
  909. bond_dev->header_ops = slave_dev->header_ops;
  910. bond_dev->type = slave_dev->type;
  911. bond_dev->hard_header_len = slave_dev->hard_header_len;
  912. bond_dev->addr_len = slave_dev->addr_len;
  913. memcpy(bond_dev->broadcast, slave_dev->broadcast,
  914. slave_dev->addr_len);
  915. }
  916. /* On bonding slaves other than the currently active slave, suppress
  917. * duplicates except for alb non-mcast/bcast.
  918. */
  919. static bool bond_should_deliver_exact_match(struct sk_buff *skb,
  920. struct slave *slave,
  921. struct bonding *bond)
  922. {
  923. if (bond_is_slave_inactive(slave)) {
  924. if (BOND_MODE(bond) == BOND_MODE_ALB &&
  925. skb->pkt_type != PACKET_BROADCAST &&
  926. skb->pkt_type != PACKET_MULTICAST)
  927. return false;
  928. return true;
  929. }
  930. return false;
  931. }
  932. static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb)
  933. {
  934. struct sk_buff *skb = *pskb;
  935. struct slave *slave;
  936. struct bonding *bond;
  937. int (*recv_probe)(const struct sk_buff *, struct bonding *,
  938. struct slave *);
  939. int ret = RX_HANDLER_ANOTHER;
  940. skb = skb_share_check(skb, GFP_ATOMIC);
  941. if (unlikely(!skb))
  942. return RX_HANDLER_CONSUMED;
  943. *pskb = skb;
  944. slave = bond_slave_get_rcu(skb->dev);
  945. bond = slave->bond;
  946. recv_probe = ACCESS_ONCE(bond->recv_probe);
  947. if (recv_probe) {
  948. ret = recv_probe(skb, bond, slave);
  949. if (ret == RX_HANDLER_CONSUMED) {
  950. consume_skb(skb);
  951. return ret;
  952. }
  953. }
  954. if (bond_should_deliver_exact_match(skb, slave, bond)) {
  955. return RX_HANDLER_EXACT;
  956. }
  957. skb->dev = bond->dev;
  958. if (BOND_MODE(bond) == BOND_MODE_ALB &&
  959. bond->dev->priv_flags & IFF_BRIDGE_PORT &&
  960. skb->pkt_type == PACKET_HOST) {
  961. if (unlikely(skb_cow_head(skb,
  962. skb->data - skb_mac_header(skb)))) {
  963. kfree_skb(skb);
  964. return RX_HANDLER_CONSUMED;
  965. }
  966. ether_addr_copy(eth_hdr(skb)->h_dest, bond->dev->dev_addr);
  967. }
  968. return ret;
  969. }
  970. static int bond_master_upper_dev_link(struct net_device *bond_dev,
  971. struct net_device *slave_dev,
  972. struct slave *slave)
  973. {
  974. int err;
  975. err = netdev_master_upper_dev_link_private(slave_dev, bond_dev, slave);
  976. if (err)
  977. return err;
  978. slave_dev->flags |= IFF_SLAVE;
  979. rtmsg_ifinfo(RTM_NEWLINK, slave_dev, IFF_SLAVE, GFP_KERNEL);
  980. return 0;
  981. }
  982. static void bond_upper_dev_unlink(struct net_device *bond_dev,
  983. struct net_device *slave_dev)
  984. {
  985. netdev_upper_dev_unlink(slave_dev, bond_dev);
  986. slave_dev->flags &= ~IFF_SLAVE;
  987. rtmsg_ifinfo(RTM_NEWLINK, slave_dev, IFF_SLAVE, GFP_KERNEL);
  988. }
  989. static struct slave *bond_alloc_slave(struct bonding *bond)
  990. {
  991. struct slave *slave = NULL;
  992. slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
  993. if (!slave)
  994. return NULL;
  995. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  996. SLAVE_AD_INFO(slave) = kzalloc(sizeof(struct ad_slave_info),
  997. GFP_KERNEL);
  998. if (!SLAVE_AD_INFO(slave)) {
  999. kfree(slave);
  1000. return NULL;
  1001. }
  1002. }
  1003. return slave;
  1004. }
  1005. static void bond_free_slave(struct slave *slave)
  1006. {
  1007. struct bonding *bond = bond_get_bond_by_slave(slave);
  1008. if (BOND_MODE(bond) == BOND_MODE_8023AD)
  1009. kfree(SLAVE_AD_INFO(slave));
  1010. kfree(slave);
  1011. }
  1012. /* enslave device <slave> to bond device <master> */
  1013. int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
  1014. {
  1015. struct bonding *bond = netdev_priv(bond_dev);
  1016. const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
  1017. struct slave *new_slave = NULL, *prev_slave;
  1018. struct sockaddr addr;
  1019. int link_reporting;
  1020. int res = 0, i;
  1021. if (!bond->params.use_carrier &&
  1022. slave_dev->ethtool_ops->get_link == NULL &&
  1023. slave_ops->ndo_do_ioctl == NULL) {
  1024. netdev_warn(bond_dev, "no link monitoring support for %s\n",
  1025. slave_dev->name);
  1026. }
  1027. /* already enslaved */
  1028. if (slave_dev->flags & IFF_SLAVE) {
  1029. netdev_dbg(bond_dev, "Error: Device was already enslaved\n");
  1030. return -EBUSY;
  1031. }
  1032. if (bond_dev == slave_dev) {
  1033. netdev_err(bond_dev, "cannot enslave bond to itself.\n");
  1034. return -EPERM;
  1035. }
  1036. /* vlan challenged mutual exclusion */
  1037. /* no need to lock since we're protected by rtnl_lock */
  1038. if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
  1039. netdev_dbg(bond_dev, "%s is NETIF_F_VLAN_CHALLENGED\n",
  1040. slave_dev->name);
  1041. if (vlan_uses_dev(bond_dev)) {
  1042. netdev_err(bond_dev, "Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
  1043. slave_dev->name, bond_dev->name);
  1044. return -EPERM;
  1045. } else {
  1046. netdev_warn(bond_dev, "enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
  1047. slave_dev->name, slave_dev->name,
  1048. bond_dev->name);
  1049. }
  1050. } else {
  1051. netdev_dbg(bond_dev, "%s is !NETIF_F_VLAN_CHALLENGED\n",
  1052. slave_dev->name);
  1053. }
  1054. /* Old ifenslave binaries are no longer supported. These can
  1055. * be identified with moderate accuracy by the state of the slave:
  1056. * the current ifenslave will set the interface down prior to
  1057. * enslaving it; the old ifenslave will not.
  1058. */
  1059. if ((slave_dev->flags & IFF_UP)) {
  1060. netdev_err(bond_dev, "%s is up - this may be due to an out of date ifenslave\n",
  1061. slave_dev->name);
  1062. res = -EPERM;
  1063. goto err_undo_flags;
  1064. }
  1065. /* set bonding device ether type by slave - bonding netdevices are
  1066. * created with ether_setup, so when the slave type is not ARPHRD_ETHER
  1067. * there is a need to override some of the type dependent attribs/funcs.
  1068. *
  1069. * bond ether type mutual exclusion - don't allow slaves of dissimilar
  1070. * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
  1071. */
  1072. if (!bond_has_slaves(bond)) {
  1073. if (bond_dev->type != slave_dev->type) {
  1074. netdev_dbg(bond_dev, "change device type from %d to %d\n",
  1075. bond_dev->type, slave_dev->type);
  1076. res = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE,
  1077. bond_dev);
  1078. res = notifier_to_errno(res);
  1079. if (res) {
  1080. netdev_err(bond_dev, "refused to change device type\n");
  1081. res = -EBUSY;
  1082. goto err_undo_flags;
  1083. }
  1084. /* Flush unicast and multicast addresses */
  1085. dev_uc_flush(bond_dev);
  1086. dev_mc_flush(bond_dev);
  1087. if (slave_dev->type != ARPHRD_ETHER)
  1088. bond_setup_by_slave(bond_dev, slave_dev);
  1089. else {
  1090. ether_setup(bond_dev);
  1091. bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING;
  1092. }
  1093. call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE,
  1094. bond_dev);
  1095. }
  1096. } else if (bond_dev->type != slave_dev->type) {
  1097. netdev_err(bond_dev, "%s ether type (%d) is different from other slaves (%d), can not enslave it\n",
  1098. slave_dev->name, slave_dev->type, bond_dev->type);
  1099. res = -EINVAL;
  1100. goto err_undo_flags;
  1101. }
  1102. if (slave_ops->ndo_set_mac_address == NULL) {
  1103. netdev_warn(bond_dev, "The slave device specified does not support setting the MAC address\n");
  1104. if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP &&
  1105. bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
  1106. if (!bond_has_slaves(bond)) {
  1107. bond->params.fail_over_mac = BOND_FOM_ACTIVE;
  1108. netdev_warn(bond_dev, "Setting fail_over_mac to active for active-backup mode\n");
  1109. } else {
  1110. netdev_err(bond_dev, "The slave device specified does not support setting the MAC address, but fail_over_mac is not set to active\n");
  1111. res = -EOPNOTSUPP;
  1112. goto err_undo_flags;
  1113. }
  1114. }
  1115. }
  1116. call_netdevice_notifiers(NETDEV_JOIN, slave_dev);
  1117. /* If this is the first slave, then we need to set the master's hardware
  1118. * address to be the same as the slave's.
  1119. */
  1120. if (!bond_has_slaves(bond) &&
  1121. bond->dev->addr_assign_type == NET_ADDR_RANDOM)
  1122. bond_set_dev_addr(bond->dev, slave_dev);
  1123. new_slave = bond_alloc_slave(bond);
  1124. if (!new_slave) {
  1125. res = -ENOMEM;
  1126. goto err_undo_flags;
  1127. }
  1128. new_slave->bond = bond;
  1129. new_slave->dev = slave_dev;
  1130. /* Set the new_slave's queue_id to be zero. Queue ID mapping
  1131. * is set via sysfs or module option if desired.
  1132. */
  1133. new_slave->queue_id = 0;
  1134. /* Save slave's original mtu and then set it to match the bond */
  1135. new_slave->original_mtu = slave_dev->mtu;
  1136. res = dev_set_mtu(slave_dev, bond->dev->mtu);
  1137. if (res) {
  1138. netdev_dbg(bond_dev, "Error %d calling dev_set_mtu\n", res);
  1139. goto err_free;
  1140. }
  1141. /* Save slave's original ("permanent") mac address for modes
  1142. * that need it, and for restoring it upon release, and then
  1143. * set it to the master's address
  1144. */
  1145. ether_addr_copy(new_slave->perm_hwaddr, slave_dev->dev_addr);
  1146. if (!bond->params.fail_over_mac ||
  1147. BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
  1148. /* Set slave to master's mac address. The application already
  1149. * set the master's mac address to that of the first slave
  1150. */
  1151. memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
  1152. addr.sa_family = slave_dev->type;
  1153. res = dev_set_mac_address(slave_dev, &addr);
  1154. if (res) {
  1155. netdev_dbg(bond_dev, "Error %d calling set_mac_address\n", res);
  1156. goto err_restore_mtu;
  1157. }
  1158. }
  1159. /* open the slave since the application closed it */
  1160. res = dev_open(slave_dev);
  1161. if (res) {
  1162. netdev_dbg(bond_dev, "Opening slave %s failed\n", slave_dev->name);
  1163. goto err_restore_mac;
  1164. }
  1165. slave_dev->priv_flags |= IFF_BONDING;
  1166. /* initialize slave stats */
  1167. dev_get_stats(new_slave->dev, &new_slave->slave_stats);
  1168. if (bond_is_lb(bond)) {
  1169. /* bond_alb_init_slave() must be called before all other stages since
  1170. * it might fail and we do not want to have to undo everything
  1171. */
  1172. res = bond_alb_init_slave(bond, new_slave);
  1173. if (res)
  1174. goto err_close;
  1175. }
  1176. /* If the mode uses primary, then the following is handled by
  1177. * bond_change_active_slave().
  1178. */
  1179. if (!bond_uses_primary(bond)) {
  1180. /* set promiscuity level to new slave */
  1181. if (bond_dev->flags & IFF_PROMISC) {
  1182. res = dev_set_promiscuity(slave_dev, 1);
  1183. if (res)
  1184. goto err_close;
  1185. }
  1186. /* set allmulti level to new slave */
  1187. if (bond_dev->flags & IFF_ALLMULTI) {
  1188. res = dev_set_allmulti(slave_dev, 1);
  1189. if (res)
  1190. goto err_close;
  1191. }
  1192. netif_addr_lock_bh(bond_dev);
  1193. dev_mc_sync_multiple(slave_dev, bond_dev);
  1194. dev_uc_sync_multiple(slave_dev, bond_dev);
  1195. netif_addr_unlock_bh(bond_dev);
  1196. }
  1197. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  1198. /* add lacpdu mc addr to mc list */
  1199. u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
  1200. dev_mc_add(slave_dev, lacpdu_multicast);
  1201. }
  1202. res = vlan_vids_add_by_dev(slave_dev, bond_dev);
  1203. if (res) {
  1204. netdev_err(bond_dev, "Couldn't add bond vlan ids to %s\n",
  1205. slave_dev->name);
  1206. goto err_close;
  1207. }
  1208. prev_slave = bond_last_slave(bond);
  1209. new_slave->delay = 0;
  1210. new_slave->link_failure_count = 0;
  1211. bond_update_speed_duplex(new_slave);
  1212. new_slave->last_rx = jiffies -
  1213. (msecs_to_jiffies(bond->params.arp_interval) + 1);
  1214. for (i = 0; i < BOND_MAX_ARP_TARGETS; i++)
  1215. new_slave->target_last_arp_rx[i] = new_slave->last_rx;
  1216. if (bond->params.miimon && !bond->params.use_carrier) {
  1217. link_reporting = bond_check_dev_link(bond, slave_dev, 1);
  1218. if ((link_reporting == -1) && !bond->params.arp_interval) {
  1219. /* miimon is set but a bonded network driver
  1220. * does not support ETHTOOL/MII and
  1221. * arp_interval is not set. Note: if
  1222. * use_carrier is enabled, we will never go
  1223. * here (because netif_carrier is always
  1224. * supported); thus, we don't need to change
  1225. * the messages for netif_carrier.
  1226. */
  1227. netdev_warn(bond_dev, "MII and ETHTOOL support not available for interface %s, and arp_interval/arp_ip_target module parameters not specified, thus bonding will not detect link failures! see bonding.txt for details\n",
  1228. slave_dev->name);
  1229. } else if (link_reporting == -1) {
  1230. /* unable get link status using mii/ethtool */
  1231. netdev_warn(bond_dev, "can't get link status from interface %s; the network driver associated with this interface does not support MII or ETHTOOL link status reporting, thus miimon has no effect on this interface\n",
  1232. slave_dev->name);
  1233. }
  1234. }
  1235. /* check for initial state */
  1236. if (bond->params.miimon) {
  1237. if (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS) {
  1238. if (bond->params.updelay) {
  1239. new_slave->link = BOND_LINK_BACK;
  1240. new_slave->delay = bond->params.updelay;
  1241. } else {
  1242. new_slave->link = BOND_LINK_UP;
  1243. }
  1244. } else {
  1245. new_slave->link = BOND_LINK_DOWN;
  1246. }
  1247. } else if (bond->params.arp_interval) {
  1248. new_slave->link = (netif_carrier_ok(slave_dev) ?
  1249. BOND_LINK_UP : BOND_LINK_DOWN);
  1250. } else {
  1251. new_slave->link = BOND_LINK_UP;
  1252. }
  1253. if (new_slave->link != BOND_LINK_DOWN)
  1254. new_slave->last_link_up = jiffies;
  1255. netdev_dbg(bond_dev, "Initial state of slave_dev is BOND_LINK_%s\n",
  1256. new_slave->link == BOND_LINK_DOWN ? "DOWN" :
  1257. (new_slave->link == BOND_LINK_UP ? "UP" : "BACK"));
  1258. if (bond_uses_primary(bond) && bond->params.primary[0]) {
  1259. /* if there is a primary slave, remember it */
  1260. if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
  1261. rcu_assign_pointer(bond->primary_slave, new_slave);
  1262. bond->force_primary = true;
  1263. }
  1264. }
  1265. switch (BOND_MODE(bond)) {
  1266. case BOND_MODE_ACTIVEBACKUP:
  1267. bond_set_slave_inactive_flags(new_slave,
  1268. BOND_SLAVE_NOTIFY_NOW);
  1269. break;
  1270. case BOND_MODE_8023AD:
  1271. /* in 802.3ad mode, the internal mechanism
  1272. * will activate the slaves in the selected
  1273. * aggregator
  1274. */
  1275. bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW);
  1276. /* if this is the first slave */
  1277. if (!prev_slave) {
  1278. SLAVE_AD_INFO(new_slave)->id = 1;
  1279. /* Initialize AD with the number of times that the AD timer is called in 1 second
  1280. * can be called only after the mac address of the bond is set
  1281. */
  1282. bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL);
  1283. } else {
  1284. SLAVE_AD_INFO(new_slave)->id =
  1285. SLAVE_AD_INFO(prev_slave)->id + 1;
  1286. }
  1287. bond_3ad_bind_slave(new_slave);
  1288. break;
  1289. case BOND_MODE_TLB:
  1290. case BOND_MODE_ALB:
  1291. bond_set_active_slave(new_slave);
  1292. bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW);
  1293. break;
  1294. default:
  1295. netdev_dbg(bond_dev, "This slave is always active in trunk mode\n");
  1296. /* always active in trunk mode */
  1297. bond_set_active_slave(new_slave);
  1298. /* In trunking mode there is little meaning to curr_active_slave
  1299. * anyway (it holds no special properties of the bond device),
  1300. * so we can change it without calling change_active_interface()
  1301. */
  1302. if (!rcu_access_pointer(bond->curr_active_slave) &&
  1303. new_slave->link == BOND_LINK_UP)
  1304. rcu_assign_pointer(bond->curr_active_slave, new_slave);
  1305. break;
  1306. } /* switch(bond_mode) */
  1307. #ifdef CONFIG_NET_POLL_CONTROLLER
  1308. slave_dev->npinfo = bond->dev->npinfo;
  1309. if (slave_dev->npinfo) {
  1310. if (slave_enable_netpoll(new_slave)) {
  1311. netdev_info(bond_dev, "master_dev is using netpoll, but new slave device does not support netpoll\n");
  1312. res = -EBUSY;
  1313. goto err_detach;
  1314. }
  1315. }
  1316. #endif
  1317. res = netdev_rx_handler_register(slave_dev, bond_handle_frame,
  1318. new_slave);
  1319. if (res) {
  1320. netdev_dbg(bond_dev, "Error %d calling netdev_rx_handler_register\n", res);
  1321. goto err_detach;
  1322. }
  1323. res = bond_master_upper_dev_link(bond_dev, slave_dev, new_slave);
  1324. if (res) {
  1325. netdev_dbg(bond_dev, "Error %d calling bond_master_upper_dev_link\n", res);
  1326. goto err_unregister;
  1327. }
  1328. res = bond_sysfs_slave_add(new_slave);
  1329. if (res) {
  1330. netdev_dbg(bond_dev, "Error %d calling bond_sysfs_slave_add\n", res);
  1331. goto err_upper_unlink;
  1332. }
  1333. bond->slave_cnt++;
  1334. bond_compute_features(bond);
  1335. bond_set_carrier(bond);
  1336. if (bond_uses_primary(bond)) {
  1337. block_netpoll_tx();
  1338. bond_select_active_slave(bond);
  1339. unblock_netpoll_tx();
  1340. }
  1341. if (bond_mode_uses_xmit_hash(bond))
  1342. bond_update_slave_arr(bond, NULL);
  1343. netdev_info(bond_dev, "Enslaving %s as %s interface with %s link\n",
  1344. slave_dev->name,
  1345. bond_is_active_slave(new_slave) ? "an active" : "a backup",
  1346. new_slave->link != BOND_LINK_DOWN ? "an up" : "a down");
  1347. /* enslave is successful */
  1348. return 0;
  1349. /* Undo stages on error */
  1350. err_upper_unlink:
  1351. bond_upper_dev_unlink(bond_dev, slave_dev);
  1352. err_unregister:
  1353. netdev_rx_handler_unregister(slave_dev);
  1354. err_detach:
  1355. if (!bond_uses_primary(bond))
  1356. bond_hw_addr_flush(bond_dev, slave_dev);
  1357. vlan_vids_del_by_dev(slave_dev, bond_dev);
  1358. if (rcu_access_pointer(bond->primary_slave) == new_slave)
  1359. RCU_INIT_POINTER(bond->primary_slave, NULL);
  1360. if (rcu_access_pointer(bond->curr_active_slave) == new_slave) {
  1361. block_netpoll_tx();
  1362. bond_change_active_slave(bond, NULL);
  1363. bond_select_active_slave(bond);
  1364. unblock_netpoll_tx();
  1365. }
  1366. /* either primary_slave or curr_active_slave might've changed */
  1367. synchronize_rcu();
  1368. slave_disable_netpoll(new_slave);
  1369. err_close:
  1370. slave_dev->priv_flags &= ~IFF_BONDING;
  1371. dev_close(slave_dev);
  1372. err_restore_mac:
  1373. if (!bond->params.fail_over_mac ||
  1374. BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
  1375. /* XXX TODO - fom follow mode needs to change master's
  1376. * MAC if this slave's MAC is in use by the bond, or at
  1377. * least print a warning.
  1378. */
  1379. ether_addr_copy(addr.sa_data, new_slave->perm_hwaddr);
  1380. addr.sa_family = slave_dev->type;
  1381. dev_set_mac_address(slave_dev, &addr);
  1382. }
  1383. err_restore_mtu:
  1384. dev_set_mtu(slave_dev, new_slave->original_mtu);
  1385. err_free:
  1386. bond_free_slave(new_slave);
  1387. err_undo_flags:
  1388. /* Enslave of first slave has failed and we need to fix master's mac */
  1389. if (!bond_has_slaves(bond) &&
  1390. ether_addr_equal_64bits(bond_dev->dev_addr, slave_dev->dev_addr))
  1391. eth_hw_addr_random(bond_dev);
  1392. return res;
  1393. }
  1394. /* Try to release the slave device <slave> from the bond device <master>
  1395. * It is legal to access curr_active_slave without a lock because all the function
  1396. * is RTNL-locked. If "all" is true it means that the function is being called
  1397. * while destroying a bond interface and all slaves are being released.
  1398. *
  1399. * The rules for slave state should be:
  1400. * for Active/Backup:
  1401. * Active stays on all backups go down
  1402. * for Bonded connections:
  1403. * The first up interface should be left on and all others downed.
  1404. */
  1405. static int __bond_release_one(struct net_device *bond_dev,
  1406. struct net_device *slave_dev,
  1407. bool all)
  1408. {
  1409. struct bonding *bond = netdev_priv(bond_dev);
  1410. struct slave *slave, *oldcurrent;
  1411. struct sockaddr addr;
  1412. int old_flags = bond_dev->flags;
  1413. netdev_features_t old_features = bond_dev->features;
  1414. /* slave is not a slave or master is not master of this slave */
  1415. if (!(slave_dev->flags & IFF_SLAVE) ||
  1416. !netdev_has_upper_dev(slave_dev, bond_dev)) {
  1417. netdev_err(bond_dev, "cannot release %s\n",
  1418. slave_dev->name);
  1419. return -EINVAL;
  1420. }
  1421. block_netpoll_tx();
  1422. slave = bond_get_slave_by_dev(bond, slave_dev);
  1423. if (!slave) {
  1424. /* not a slave of this bond */
  1425. netdev_info(bond_dev, "%s not enslaved\n",
  1426. slave_dev->name);
  1427. unblock_netpoll_tx();
  1428. return -EINVAL;
  1429. }
  1430. bond_sysfs_slave_del(slave);
  1431. /* recompute stats just before removing the slave */
  1432. bond_get_stats(bond->dev, &bond->bond_stats);
  1433. bond_upper_dev_unlink(bond_dev, slave_dev);
  1434. /* unregister rx_handler early so bond_handle_frame wouldn't be called
  1435. * for this slave anymore.
  1436. */
  1437. netdev_rx_handler_unregister(slave_dev);
  1438. if (BOND_MODE(bond) == BOND_MODE_8023AD)
  1439. bond_3ad_unbind_slave(slave);
  1440. if (bond_mode_uses_xmit_hash(bond))
  1441. bond_update_slave_arr(bond, slave);
  1442. netdev_info(bond_dev, "Releasing %s interface %s\n",
  1443. bond_is_active_slave(slave) ? "active" : "backup",
  1444. slave_dev->name);
  1445. oldcurrent = rcu_access_pointer(bond->curr_active_slave);
  1446. RCU_INIT_POINTER(bond->current_arp_slave, NULL);
  1447. if (!all && (!bond->params.fail_over_mac ||
  1448. BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP)) {
  1449. if (ether_addr_equal_64bits(bond_dev->dev_addr, slave->perm_hwaddr) &&
  1450. bond_has_slaves(bond))
  1451. netdev_warn(bond_dev, "the permanent HWaddr of %s - %pM - is still in use by %s - set the HWaddr of %s to a different address to avoid conflicts\n",
  1452. slave_dev->name, slave->perm_hwaddr,
  1453. bond_dev->name, slave_dev->name);
  1454. }
  1455. if (rtnl_dereference(bond->primary_slave) == slave)
  1456. RCU_INIT_POINTER(bond->primary_slave, NULL);
  1457. if (oldcurrent == slave)
  1458. bond_change_active_slave(bond, NULL);
  1459. if (bond_is_lb(bond)) {
  1460. /* Must be called only after the slave has been
  1461. * detached from the list and the curr_active_slave
  1462. * has been cleared (if our_slave == old_current),
  1463. * but before a new active slave is selected.
  1464. */
  1465. bond_alb_deinit_slave(bond, slave);
  1466. }
  1467. if (all) {
  1468. RCU_INIT_POINTER(bond->curr_active_slave, NULL);
  1469. } else if (oldcurrent == slave) {
  1470. /* Note that we hold RTNL over this sequence, so there
  1471. * is no concern that another slave add/remove event
  1472. * will interfere.
  1473. */
  1474. bond_select_active_slave(bond);
  1475. }
  1476. if (!bond_has_slaves(bond)) {
  1477. bond_set_carrier(bond);
  1478. eth_hw_addr_random(bond_dev);
  1479. }
  1480. unblock_netpoll_tx();
  1481. synchronize_rcu();
  1482. bond->slave_cnt--;
  1483. if (!bond_has_slaves(bond)) {
  1484. call_netdevice_notifiers(NETDEV_CHANGEADDR, bond->dev);
  1485. call_netdevice_notifiers(NETDEV_RELEASE, bond->dev);
  1486. }
  1487. bond_compute_features(bond);
  1488. if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
  1489. (old_features & NETIF_F_VLAN_CHALLENGED))
  1490. netdev_info(bond_dev, "last VLAN challenged slave %s left bond %s - VLAN blocking is removed\n",
  1491. slave_dev->name, bond_dev->name);
  1492. vlan_vids_del_by_dev(slave_dev, bond_dev);
  1493. /* If the mode uses primary, then this case was handled above by
  1494. * bond_change_active_slave(..., NULL)
  1495. */
  1496. if (!bond_uses_primary(bond)) {
  1497. /* unset promiscuity level from slave
  1498. * NOTE: The NETDEV_CHANGEADDR call above may change the value
  1499. * of the IFF_PROMISC flag in the bond_dev, but we need the
  1500. * value of that flag before that change, as that was the value
  1501. * when this slave was attached, so we cache at the start of the
  1502. * function and use it here. Same goes for ALLMULTI below
  1503. */
  1504. if (old_flags & IFF_PROMISC)
  1505. dev_set_promiscuity(slave_dev, -1);
  1506. /* unset allmulti level from slave */
  1507. if (old_flags & IFF_ALLMULTI)
  1508. dev_set_allmulti(slave_dev, -1);
  1509. bond_hw_addr_flush(bond_dev, slave_dev);
  1510. }
  1511. slave_disable_netpoll(slave);
  1512. /* close slave before restoring its mac address */
  1513. dev_close(slave_dev);
  1514. if (bond->params.fail_over_mac != BOND_FOM_ACTIVE ||
  1515. BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
  1516. /* restore original ("permanent") mac address */
  1517. ether_addr_copy(addr.sa_data, slave->perm_hwaddr);
  1518. addr.sa_family = slave_dev->type;
  1519. dev_set_mac_address(slave_dev, &addr);
  1520. }
  1521. dev_set_mtu(slave_dev, slave->original_mtu);
  1522. slave_dev->priv_flags &= ~IFF_BONDING;
  1523. bond_free_slave(slave);
  1524. return 0;
  1525. }
  1526. /* A wrapper used because of ndo_del_link */
  1527. int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
  1528. {
  1529. return __bond_release_one(bond_dev, slave_dev, false);
  1530. }
  1531. /* First release a slave and then destroy the bond if no more slaves are left.
  1532. * Must be under rtnl_lock when this function is called.
  1533. */
  1534. static int bond_release_and_destroy(struct net_device *bond_dev,
  1535. struct net_device *slave_dev)
  1536. {
  1537. struct bonding *bond = netdev_priv(bond_dev);
  1538. int ret;
  1539. ret = bond_release(bond_dev, slave_dev);
  1540. if (ret == 0 && !bond_has_slaves(bond)) {
  1541. bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
  1542. netdev_info(bond_dev, "Destroying bond %s\n",
  1543. bond_dev->name);
  1544. unregister_netdevice(bond_dev);
  1545. }
  1546. return ret;
  1547. }
  1548. static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
  1549. {
  1550. struct bonding *bond = netdev_priv(bond_dev);
  1551. info->bond_mode = BOND_MODE(bond);
  1552. info->miimon = bond->params.miimon;
  1553. info->num_slaves = bond->slave_cnt;
  1554. return 0;
  1555. }
  1556. static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
  1557. {
  1558. struct bonding *bond = netdev_priv(bond_dev);
  1559. struct list_head *iter;
  1560. int i = 0, res = -ENODEV;
  1561. struct slave *slave;
  1562. bond_for_each_slave(bond, slave, iter) {
  1563. if (i++ == (int)info->slave_id) {
  1564. res = 0;
  1565. strcpy(info->slave_name, slave->dev->name);
  1566. info->link = slave->link;
  1567. info->state = bond_slave_state(slave);
  1568. info->link_failure_count = slave->link_failure_count;
  1569. break;
  1570. }
  1571. }
  1572. return res;
  1573. }
  1574. /*-------------------------------- Monitoring -------------------------------*/
  1575. /* called with rcu_read_lock() */
  1576. static int bond_miimon_inspect(struct bonding *bond)
  1577. {
  1578. int link_state, commit = 0;
  1579. struct list_head *iter;
  1580. struct slave *slave;
  1581. bool ignore_updelay;
  1582. ignore_updelay = !rcu_dereference(bond->curr_active_slave);
  1583. bond_for_each_slave_rcu(bond, slave, iter) {
  1584. slave->new_link = BOND_LINK_NOCHANGE;
  1585. link_state = bond_check_dev_link(bond, slave->dev, 0);
  1586. switch (slave->link) {
  1587. case BOND_LINK_UP:
  1588. if (link_state)
  1589. continue;
  1590. slave->link = BOND_LINK_FAIL;
  1591. slave->delay = bond->params.downdelay;
  1592. if (slave->delay) {
  1593. netdev_info(bond->dev, "link status down for %sinterface %s, disabling it in %d ms\n",
  1594. (BOND_MODE(bond) ==
  1595. BOND_MODE_ACTIVEBACKUP) ?
  1596. (bond_is_active_slave(slave) ?
  1597. "active " : "backup ") : "",
  1598. slave->dev->name,
  1599. bond->params.downdelay * bond->params.miimon);
  1600. }
  1601. /*FALLTHRU*/
  1602. case BOND_LINK_FAIL:
  1603. if (link_state) {
  1604. /* recovered before downdelay expired */
  1605. slave->link = BOND_LINK_UP;
  1606. slave->last_link_up = jiffies;
  1607. netdev_info(bond->dev, "link status up again after %d ms for interface %s\n",
  1608. (bond->params.downdelay - slave->delay) *
  1609. bond->params.miimon,
  1610. slave->dev->name);
  1611. continue;
  1612. }
  1613. if (slave->delay <= 0) {
  1614. slave->new_link = BOND_LINK_DOWN;
  1615. commit++;
  1616. continue;
  1617. }
  1618. slave->delay--;
  1619. break;
  1620. case BOND_LINK_DOWN:
  1621. if (!link_state)
  1622. continue;
  1623. slave->link = BOND_LINK_BACK;
  1624. slave->delay = bond->params.updelay;
  1625. if (slave->delay) {
  1626. netdev_info(bond->dev, "link status up for interface %s, enabling it in %d ms\n",
  1627. slave->dev->name,
  1628. ignore_updelay ? 0 :
  1629. bond->params.updelay *
  1630. bond->params.miimon);
  1631. }
  1632. /*FALLTHRU*/
  1633. case BOND_LINK_BACK:
  1634. if (!link_state) {
  1635. slave->link = BOND_LINK_DOWN;
  1636. netdev_info(bond->dev, "link status down again after %d ms for interface %s\n",
  1637. (bond->params.updelay - slave->delay) *
  1638. bond->params.miimon,
  1639. slave->dev->name);
  1640. continue;
  1641. }
  1642. if (ignore_updelay)
  1643. slave->delay = 0;
  1644. if (slave->delay <= 0) {
  1645. slave->new_link = BOND_LINK_UP;
  1646. commit++;
  1647. ignore_updelay = false;
  1648. continue;
  1649. }
  1650. slave->delay--;
  1651. break;
  1652. }
  1653. }
  1654. return commit;
  1655. }
  1656. static void bond_miimon_commit(struct bonding *bond)
  1657. {
  1658. struct list_head *iter;
  1659. struct slave *slave, *primary;
  1660. bond_for_each_slave(bond, slave, iter) {
  1661. switch (slave->new_link) {
  1662. case BOND_LINK_NOCHANGE:
  1663. continue;
  1664. case BOND_LINK_UP:
  1665. slave->link = BOND_LINK_UP;
  1666. slave->last_link_up = jiffies;
  1667. primary = rtnl_dereference(bond->primary_slave);
  1668. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  1669. /* prevent it from being the active one */
  1670. bond_set_backup_slave(slave);
  1671. } else if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
  1672. /* make it immediately active */
  1673. bond_set_active_slave(slave);
  1674. } else if (slave != primary) {
  1675. /* prevent it from being the active one */
  1676. bond_set_backup_slave(slave);
  1677. }
  1678. netdev_info(bond->dev, "link status definitely up for interface %s, %u Mbps %s duplex\n",
  1679. slave->dev->name,
  1680. slave->speed == SPEED_UNKNOWN ? 0 : slave->speed,
  1681. slave->duplex ? "full" : "half");
  1682. /* notify ad that the link status has changed */
  1683. if (BOND_MODE(bond) == BOND_MODE_8023AD)
  1684. bond_3ad_handle_link_change(slave, BOND_LINK_UP);
  1685. if (bond_is_lb(bond))
  1686. bond_alb_handle_link_change(bond, slave,
  1687. BOND_LINK_UP);
  1688. if (BOND_MODE(bond) == BOND_MODE_XOR)
  1689. bond_update_slave_arr(bond, NULL);
  1690. if (!bond->curr_active_slave || slave == primary)
  1691. goto do_failover;
  1692. continue;
  1693. case BOND_LINK_DOWN:
  1694. if (slave->link_failure_count < UINT_MAX)
  1695. slave->link_failure_count++;
  1696. slave->link = BOND_LINK_DOWN;
  1697. if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP ||
  1698. BOND_MODE(bond) == BOND_MODE_8023AD)
  1699. bond_set_slave_inactive_flags(slave,
  1700. BOND_SLAVE_NOTIFY_NOW);
  1701. netdev_info(bond->dev, "link status definitely down for interface %s, disabling it\n",
  1702. slave->dev->name);
  1703. if (BOND_MODE(bond) == BOND_MODE_8023AD)
  1704. bond_3ad_handle_link_change(slave,
  1705. BOND_LINK_DOWN);
  1706. if (bond_is_lb(bond))
  1707. bond_alb_handle_link_change(bond, slave,
  1708. BOND_LINK_DOWN);
  1709. if (BOND_MODE(bond) == BOND_MODE_XOR)
  1710. bond_update_slave_arr(bond, NULL);
  1711. if (slave == rcu_access_pointer(bond->curr_active_slave))
  1712. goto do_failover;
  1713. continue;
  1714. default:
  1715. netdev_err(bond->dev, "invalid new link %d on slave %s\n",
  1716. slave->new_link, slave->dev->name);
  1717. slave->new_link = BOND_LINK_NOCHANGE;
  1718. continue;
  1719. }
  1720. do_failover:
  1721. block_netpoll_tx();
  1722. bond_select_active_slave(bond);
  1723. unblock_netpoll_tx();
  1724. }
  1725. bond_set_carrier(bond);
  1726. }
  1727. /* bond_mii_monitor
  1728. *
  1729. * Really a wrapper that splits the mii monitor into two phases: an
  1730. * inspection, then (if inspection indicates something needs to be done)
  1731. * an acquisition of appropriate locks followed by a commit phase to
  1732. * implement whatever link state changes are indicated.
  1733. */
  1734. static void bond_mii_monitor(struct work_struct *work)
  1735. {
  1736. struct bonding *bond = container_of(work, struct bonding,
  1737. mii_work.work);
  1738. bool should_notify_peers = false;
  1739. unsigned long delay;
  1740. delay = msecs_to_jiffies(bond->params.miimon);
  1741. if (!bond_has_slaves(bond))
  1742. goto re_arm;
  1743. rcu_read_lock();
  1744. should_notify_peers = bond_should_notify_peers(bond);
  1745. if (bond_miimon_inspect(bond)) {
  1746. rcu_read_unlock();
  1747. /* Race avoidance with bond_close cancel of workqueue */
  1748. if (!rtnl_trylock()) {
  1749. delay = 1;
  1750. should_notify_peers = false;
  1751. goto re_arm;
  1752. }
  1753. bond_miimon_commit(bond);
  1754. rtnl_unlock(); /* might sleep, hold no other locks */
  1755. } else
  1756. rcu_read_unlock();
  1757. re_arm:
  1758. if (bond->params.miimon)
  1759. queue_delayed_work(bond->wq, &bond->mii_work, delay);
  1760. if (should_notify_peers) {
  1761. if (!rtnl_trylock())
  1762. return;
  1763. call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, bond->dev);
  1764. rtnl_unlock();
  1765. }
  1766. }
  1767. static bool bond_has_this_ip(struct bonding *bond, __be32 ip)
  1768. {
  1769. struct net_device *upper;
  1770. struct list_head *iter;
  1771. bool ret = false;
  1772. if (ip == bond_confirm_addr(bond->dev, 0, ip))
  1773. return true;
  1774. rcu_read_lock();
  1775. netdev_for_each_all_upper_dev_rcu(bond->dev, upper, iter) {
  1776. if (ip == bond_confirm_addr(upper, 0, ip)) {
  1777. ret = true;
  1778. break;
  1779. }
  1780. }
  1781. rcu_read_unlock();
  1782. return ret;
  1783. }
  1784. /* We go to the (large) trouble of VLAN tagging ARP frames because
  1785. * switches in VLAN mode (especially if ports are configured as
  1786. * "native" to a VLAN) might not pass non-tagged frames.
  1787. */
  1788. static void bond_arp_send(struct net_device *slave_dev, int arp_op,
  1789. __be32 dest_ip, __be32 src_ip,
  1790. struct bond_vlan_tag *tags)
  1791. {
  1792. struct sk_buff *skb;
  1793. struct bond_vlan_tag *outer_tag = tags;
  1794. netdev_dbg(slave_dev, "arp %d on slave %s: dst %pI4 src %pI4\n",
  1795. arp_op, slave_dev->name, &dest_ip, &src_ip);
  1796. skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
  1797. NULL, slave_dev->dev_addr, NULL);
  1798. if (!skb) {
  1799. net_err_ratelimited("ARP packet allocation failed\n");
  1800. return;
  1801. }
  1802. if (!tags || tags->vlan_proto == VLAN_N_VID)
  1803. goto xmit;
  1804. tags++;
  1805. /* Go through all the tags backwards and add them to the packet */
  1806. while (tags->vlan_proto != VLAN_N_VID) {
  1807. if (!tags->vlan_id) {
  1808. tags++;
  1809. continue;
  1810. }
  1811. netdev_dbg(slave_dev, "inner tag: proto %X vid %X\n",
  1812. ntohs(outer_tag->vlan_proto), tags->vlan_id);
  1813. skb = __vlan_put_tag(skb, tags->vlan_proto,
  1814. tags->vlan_id);
  1815. if (!skb) {
  1816. net_err_ratelimited("failed to insert inner VLAN tag\n");
  1817. return;
  1818. }
  1819. tags++;
  1820. }
  1821. /* Set the outer tag */
  1822. if (outer_tag->vlan_id) {
  1823. netdev_dbg(slave_dev, "outer tag: proto %X vid %X\n",
  1824. ntohs(outer_tag->vlan_proto), outer_tag->vlan_id);
  1825. skb = vlan_put_tag(skb, outer_tag->vlan_proto,
  1826. outer_tag->vlan_id);
  1827. if (!skb) {
  1828. net_err_ratelimited("failed to insert outer VLAN tag\n");
  1829. return;
  1830. }
  1831. }
  1832. xmit:
  1833. arp_xmit(skb);
  1834. }
  1835. /* Validate the device path between the @start_dev and the @end_dev.
  1836. * The path is valid if the @end_dev is reachable through device
  1837. * stacking.
  1838. * When the path is validated, collect any vlan information in the
  1839. * path.
  1840. */
  1841. struct bond_vlan_tag *bond_verify_device_path(struct net_device *start_dev,
  1842. struct net_device *end_dev,
  1843. int level)
  1844. {
  1845. struct bond_vlan_tag *tags;
  1846. struct net_device *upper;
  1847. struct list_head *iter;
  1848. if (start_dev == end_dev) {
  1849. tags = kzalloc(sizeof(*tags) * (level + 1), GFP_ATOMIC);
  1850. if (!tags)
  1851. return ERR_PTR(-ENOMEM);
  1852. tags[level].vlan_proto = VLAN_N_VID;
  1853. return tags;
  1854. }
  1855. netdev_for_each_upper_dev_rcu(start_dev, upper, iter) {
  1856. tags = bond_verify_device_path(upper, end_dev, level + 1);
  1857. if (IS_ERR_OR_NULL(tags)) {
  1858. if (IS_ERR(tags))
  1859. return tags;
  1860. continue;
  1861. }
  1862. if (is_vlan_dev(upper)) {
  1863. tags[level].vlan_proto = vlan_dev_vlan_proto(upper);
  1864. tags[level].vlan_id = vlan_dev_vlan_id(upper);
  1865. }
  1866. return tags;
  1867. }
  1868. return NULL;
  1869. }
  1870. static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
  1871. {
  1872. struct rtable *rt;
  1873. struct bond_vlan_tag *tags;
  1874. __be32 *targets = bond->params.arp_targets, addr;
  1875. int i;
  1876. for (i = 0; i < BOND_MAX_ARP_TARGETS && targets[i]; i++) {
  1877. netdev_dbg(bond->dev, "basa: target %pI4\n", &targets[i]);
  1878. tags = NULL;
  1879. /* Find out through which dev should the packet go */
  1880. rt = ip_route_output(dev_net(bond->dev), targets[i], 0,
  1881. RTO_ONLINK, 0);
  1882. if (IS_ERR(rt)) {
  1883. /* there's no route to target - try to send arp
  1884. * probe to generate any traffic (arp_validate=0)
  1885. */
  1886. if (bond->params.arp_validate)
  1887. net_warn_ratelimited("%s: no route to arp_ip_target %pI4 and arp_validate is set\n",
  1888. bond->dev->name,
  1889. &targets[i]);
  1890. bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
  1891. 0, tags);
  1892. continue;
  1893. }
  1894. /* bond device itself */
  1895. if (rt->dst.dev == bond->dev)
  1896. goto found;
  1897. rcu_read_lock();
  1898. tags = bond_verify_device_path(bond->dev, rt->dst.dev, 0);
  1899. rcu_read_unlock();
  1900. if (!IS_ERR_OR_NULL(tags))
  1901. goto found;
  1902. /* Not our device - skip */
  1903. netdev_dbg(bond->dev, "no path to arp_ip_target %pI4 via rt.dev %s\n",
  1904. &targets[i], rt->dst.dev ? rt->dst.dev->name : "NULL");
  1905. ip_rt_put(rt);
  1906. continue;
  1907. found:
  1908. addr = bond_confirm_addr(rt->dst.dev, targets[i], 0);
  1909. ip_rt_put(rt);
  1910. bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
  1911. addr, tags);
  1912. kfree(tags);
  1913. }
  1914. }
  1915. static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
  1916. {
  1917. int i;
  1918. if (!sip || !bond_has_this_ip(bond, tip)) {
  1919. netdev_dbg(bond->dev, "bva: sip %pI4 tip %pI4 not found\n",
  1920. &sip, &tip);
  1921. return;
  1922. }
  1923. i = bond_get_targets_ip(bond->params.arp_targets, sip);
  1924. if (i == -1) {
  1925. netdev_dbg(bond->dev, "bva: sip %pI4 not found in targets\n",
  1926. &sip);
  1927. return;
  1928. }
  1929. slave->last_rx = jiffies;
  1930. slave->target_last_arp_rx[i] = jiffies;
  1931. }
  1932. int bond_arp_rcv(const struct sk_buff *skb, struct bonding *bond,
  1933. struct slave *slave)
  1934. {
  1935. struct arphdr *arp = (struct arphdr *)skb->data;
  1936. struct slave *curr_active_slave;
  1937. unsigned char *arp_ptr;
  1938. __be32 sip, tip;
  1939. int alen, is_arp = skb->protocol == __cpu_to_be16(ETH_P_ARP);
  1940. if (!slave_do_arp_validate(bond, slave)) {
  1941. if ((slave_do_arp_validate_only(bond) && is_arp) ||
  1942. !slave_do_arp_validate_only(bond))
  1943. slave->last_rx = jiffies;
  1944. return RX_HANDLER_ANOTHER;
  1945. } else if (!is_arp) {
  1946. return RX_HANDLER_ANOTHER;
  1947. }
  1948. alen = arp_hdr_len(bond->dev);
  1949. netdev_dbg(bond->dev, "bond_arp_rcv: skb->dev %s\n",
  1950. skb->dev->name);
  1951. if (alen > skb_headlen(skb)) {
  1952. arp = kmalloc(alen, GFP_ATOMIC);
  1953. if (!arp)
  1954. goto out_unlock;
  1955. if (skb_copy_bits(skb, 0, arp, alen) < 0)
  1956. goto out_unlock;
  1957. }
  1958. if (arp->ar_hln != bond->dev->addr_len ||
  1959. skb->pkt_type == PACKET_OTHERHOST ||
  1960. skb->pkt_type == PACKET_LOOPBACK ||
  1961. arp->ar_hrd != htons(ARPHRD_ETHER) ||
  1962. arp->ar_pro != htons(ETH_P_IP) ||
  1963. arp->ar_pln != 4)
  1964. goto out_unlock;
  1965. arp_ptr = (unsigned char *)(arp + 1);
  1966. arp_ptr += bond->dev->addr_len;
  1967. memcpy(&sip, arp_ptr, 4);
  1968. arp_ptr += 4 + bond->dev->addr_len;
  1969. memcpy(&tip, arp_ptr, 4);
  1970. netdev_dbg(bond->dev, "bond_arp_rcv: %s/%d av %d sv %d sip %pI4 tip %pI4\n",
  1971. slave->dev->name, bond_slave_state(slave),
  1972. bond->params.arp_validate, slave_do_arp_validate(bond, slave),
  1973. &sip, &tip);
  1974. curr_active_slave = rcu_dereference(bond->curr_active_slave);
  1975. /* Backup slaves won't see the ARP reply, but do come through
  1976. * here for each ARP probe (so we swap the sip/tip to validate
  1977. * the probe). In a "redundant switch, common router" type of
  1978. * configuration, the ARP probe will (hopefully) travel from
  1979. * the active, through one switch, the router, then the other
  1980. * switch before reaching the backup.
  1981. *
  1982. * We 'trust' the arp requests if there is an active slave and
  1983. * it received valid arp reply(s) after it became active. This
  1984. * is done to avoid endless looping when we can't reach the
  1985. * arp_ip_target and fool ourselves with our own arp requests.
  1986. */
  1987. if (bond_is_active_slave(slave))
  1988. bond_validate_arp(bond, slave, sip, tip);
  1989. else if (curr_active_slave &&
  1990. time_after(slave_last_rx(bond, curr_active_slave),
  1991. curr_active_slave->last_link_up))
  1992. bond_validate_arp(bond, slave, tip, sip);
  1993. out_unlock:
  1994. if (arp != (struct arphdr *)skb->data)
  1995. kfree(arp);
  1996. return RX_HANDLER_ANOTHER;
  1997. }
  1998. /* function to verify if we're in the arp_interval timeslice, returns true if
  1999. * (last_act - arp_interval) <= jiffies <= (last_act + mod * arp_interval +
  2000. * arp_interval/2) . the arp_interval/2 is needed for really fast networks.
  2001. */
  2002. static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act,
  2003. int mod)
  2004. {
  2005. int delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
  2006. return time_in_range(jiffies,
  2007. last_act - delta_in_ticks,
  2008. last_act + mod * delta_in_ticks + delta_in_ticks/2);
  2009. }
  2010. /* This function is called regularly to monitor each slave's link
  2011. * ensuring that traffic is being sent and received when arp monitoring
  2012. * is used in load-balancing mode. if the adapter has been dormant, then an
  2013. * arp is transmitted to generate traffic. see activebackup_arp_monitor for
  2014. * arp monitoring in active backup mode.
  2015. */
  2016. static void bond_loadbalance_arp_mon(struct work_struct *work)
  2017. {
  2018. struct bonding *bond = container_of(work, struct bonding,
  2019. arp_work.work);
  2020. struct slave *slave, *oldcurrent;
  2021. struct list_head *iter;
  2022. int do_failover = 0, slave_state_changed = 0;
  2023. if (!bond_has_slaves(bond))
  2024. goto re_arm;
  2025. rcu_read_lock();
  2026. oldcurrent = rcu_dereference(bond->curr_active_slave);
  2027. /* see if any of the previous devices are up now (i.e. they have
  2028. * xmt and rcv traffic). the curr_active_slave does not come into
  2029. * the picture unless it is null. also, slave->last_link_up is not
  2030. * needed here because we send an arp on each slave and give a slave
  2031. * as long as it needs to get the tx/rx within the delta.
  2032. * TODO: what about up/down delay in arp mode? it wasn't here before
  2033. * so it can wait
  2034. */
  2035. bond_for_each_slave_rcu(bond, slave, iter) {
  2036. unsigned long trans_start = dev_trans_start(slave->dev);
  2037. if (slave->link != BOND_LINK_UP) {
  2038. if (bond_time_in_interval(bond, trans_start, 1) &&
  2039. bond_time_in_interval(bond, slave->last_rx, 1)) {
  2040. slave->link = BOND_LINK_UP;
  2041. slave_state_changed = 1;
  2042. /* primary_slave has no meaning in round-robin
  2043. * mode. the window of a slave being up and
  2044. * curr_active_slave being null after enslaving
  2045. * is closed.
  2046. */
  2047. if (!oldcurrent) {
  2048. netdev_info(bond->dev, "link status definitely up for interface %s\n",
  2049. slave->dev->name);
  2050. do_failover = 1;
  2051. } else {
  2052. netdev_info(bond->dev, "interface %s is now up\n",
  2053. slave->dev->name);
  2054. }
  2055. }
  2056. } else {
  2057. /* slave->link == BOND_LINK_UP */
  2058. /* not all switches will respond to an arp request
  2059. * when the source ip is 0, so don't take the link down
  2060. * if we don't know our ip yet
  2061. */
  2062. if (!bond_time_in_interval(bond, trans_start, 2) ||
  2063. !bond_time_in_interval(bond, slave->last_rx, 2)) {
  2064. slave->link = BOND_LINK_DOWN;
  2065. slave_state_changed = 1;
  2066. if (slave->link_failure_count < UINT_MAX)
  2067. slave->link_failure_count++;
  2068. netdev_info(bond->dev, "interface %s is now down\n",
  2069. slave->dev->name);
  2070. if (slave == oldcurrent)
  2071. do_failover = 1;
  2072. }
  2073. }
  2074. /* note: if switch is in round-robin mode, all links
  2075. * must tx arp to ensure all links rx an arp - otherwise
  2076. * links may oscillate or not come up at all; if switch is
  2077. * in something like xor mode, there is nothing we can
  2078. * do - all replies will be rx'ed on same link causing slaves
  2079. * to be unstable during low/no traffic periods
  2080. */
  2081. if (bond_slave_is_up(slave))
  2082. bond_arp_send_all(bond, slave);
  2083. }
  2084. rcu_read_unlock();
  2085. if (do_failover || slave_state_changed) {
  2086. if (!rtnl_trylock())
  2087. goto re_arm;
  2088. if (slave_state_changed) {
  2089. bond_slave_state_change(bond);
  2090. if (BOND_MODE(bond) == BOND_MODE_XOR)
  2091. bond_update_slave_arr(bond, NULL);
  2092. } else if (do_failover) {
  2093. block_netpoll_tx();
  2094. bond_select_active_slave(bond);
  2095. unblock_netpoll_tx();
  2096. }
  2097. rtnl_unlock();
  2098. }
  2099. re_arm:
  2100. if (bond->params.arp_interval)
  2101. queue_delayed_work(bond->wq, &bond->arp_work,
  2102. msecs_to_jiffies(bond->params.arp_interval));
  2103. }
  2104. /* Called to inspect slaves for active-backup mode ARP monitor link state
  2105. * changes. Sets new_link in slaves to specify what action should take
  2106. * place for the slave. Returns 0 if no changes are found, >0 if changes
  2107. * to link states must be committed.
  2108. *
  2109. * Called with rcu_read_lock held.
  2110. */
  2111. static int bond_ab_arp_inspect(struct bonding *bond)
  2112. {
  2113. unsigned long trans_start, last_rx;
  2114. struct list_head *iter;
  2115. struct slave *slave;
  2116. int commit = 0;
  2117. bond_for_each_slave_rcu(bond, slave, iter) {
  2118. slave->new_link = BOND_LINK_NOCHANGE;
  2119. last_rx = slave_last_rx(bond, slave);
  2120. if (slave->link != BOND_LINK_UP) {
  2121. if (bond_time_in_interval(bond, last_rx, 1)) {
  2122. slave->new_link = BOND_LINK_UP;
  2123. commit++;
  2124. }
  2125. continue;
  2126. }
  2127. /* Give slaves 2*delta after being enslaved or made
  2128. * active. This avoids bouncing, as the last receive
  2129. * times need a full ARP monitor cycle to be updated.
  2130. */
  2131. if (bond_time_in_interval(bond, slave->last_link_up, 2))
  2132. continue;
  2133. /* Backup slave is down if:
  2134. * - No current_arp_slave AND
  2135. * - more than 3*delta since last receive AND
  2136. * - the bond has an IP address
  2137. *
  2138. * Note: a non-null current_arp_slave indicates
  2139. * the curr_active_slave went down and we are
  2140. * searching for a new one; under this condition
  2141. * we only take the curr_active_slave down - this
  2142. * gives each slave a chance to tx/rx traffic
  2143. * before being taken out
  2144. */
  2145. if (!bond_is_active_slave(slave) &&
  2146. !rcu_access_pointer(bond->current_arp_slave) &&
  2147. !bond_time_in_interval(bond, last_rx, 3)) {
  2148. slave->new_link = BOND_LINK_DOWN;
  2149. commit++;
  2150. }
  2151. /* Active slave is down if:
  2152. * - more than 2*delta since transmitting OR
  2153. * - (more than 2*delta since receive AND
  2154. * the bond has an IP address)
  2155. */
  2156. trans_start = dev_trans_start(slave->dev);
  2157. if (bond_is_active_slave(slave) &&
  2158. (!bond_time_in_interval(bond, trans_start, 2) ||
  2159. !bond_time_in_interval(bond, last_rx, 2))) {
  2160. slave->new_link = BOND_LINK_DOWN;
  2161. commit++;
  2162. }
  2163. }
  2164. return commit;
  2165. }
  2166. /* Called to commit link state changes noted by inspection step of
  2167. * active-backup mode ARP monitor.
  2168. *
  2169. * Called with RTNL hold.
  2170. */
  2171. static void bond_ab_arp_commit(struct bonding *bond)
  2172. {
  2173. unsigned long trans_start;
  2174. struct list_head *iter;
  2175. struct slave *slave;
  2176. bond_for_each_slave(bond, slave, iter) {
  2177. switch (slave->new_link) {
  2178. case BOND_LINK_NOCHANGE:
  2179. continue;
  2180. case BOND_LINK_UP:
  2181. trans_start = dev_trans_start(slave->dev);
  2182. if (rtnl_dereference(bond->curr_active_slave) != slave ||
  2183. (!rtnl_dereference(bond->curr_active_slave) &&
  2184. bond_time_in_interval(bond, trans_start, 1))) {
  2185. struct slave *current_arp_slave;
  2186. current_arp_slave = rtnl_dereference(bond->current_arp_slave);
  2187. slave->link = BOND_LINK_UP;
  2188. if (current_arp_slave) {
  2189. bond_set_slave_inactive_flags(
  2190. current_arp_slave,
  2191. BOND_SLAVE_NOTIFY_NOW);
  2192. RCU_INIT_POINTER(bond->current_arp_slave, NULL);
  2193. }
  2194. netdev_info(bond->dev, "link status definitely up for interface %s\n",
  2195. slave->dev->name);
  2196. if (!rtnl_dereference(bond->curr_active_slave) ||
  2197. slave == rtnl_dereference(bond->primary_slave))
  2198. goto do_failover;
  2199. }
  2200. continue;
  2201. case BOND_LINK_DOWN:
  2202. if (slave->link_failure_count < UINT_MAX)
  2203. slave->link_failure_count++;
  2204. slave->link = BOND_LINK_DOWN;
  2205. bond_set_slave_inactive_flags(slave,
  2206. BOND_SLAVE_NOTIFY_NOW);
  2207. netdev_info(bond->dev, "link status definitely down for interface %s, disabling it\n",
  2208. slave->dev->name);
  2209. if (slave == rtnl_dereference(bond->curr_active_slave)) {
  2210. RCU_INIT_POINTER(bond->current_arp_slave, NULL);
  2211. goto do_failover;
  2212. }
  2213. continue;
  2214. default:
  2215. netdev_err(bond->dev, "impossible: new_link %d on slave %s\n",
  2216. slave->new_link, slave->dev->name);
  2217. continue;
  2218. }
  2219. do_failover:
  2220. block_netpoll_tx();
  2221. bond_select_active_slave(bond);
  2222. unblock_netpoll_tx();
  2223. }
  2224. bond_set_carrier(bond);
  2225. }
  2226. /* Send ARP probes for active-backup mode ARP monitor.
  2227. *
  2228. * Called with rcu_read_lock held.
  2229. */
  2230. static bool bond_ab_arp_probe(struct bonding *bond)
  2231. {
  2232. struct slave *slave, *before = NULL, *new_slave = NULL,
  2233. *curr_arp_slave = rcu_dereference(bond->current_arp_slave),
  2234. *curr_active_slave = rcu_dereference(bond->curr_active_slave);
  2235. struct list_head *iter;
  2236. bool found = false;
  2237. bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
  2238. if (curr_arp_slave && curr_active_slave)
  2239. netdev_info(bond->dev, "PROBE: c_arp %s && cas %s BAD\n",
  2240. curr_arp_slave->dev->name,
  2241. curr_active_slave->dev->name);
  2242. if (curr_active_slave) {
  2243. bond_arp_send_all(bond, curr_active_slave);
  2244. return should_notify_rtnl;
  2245. }
  2246. /* if we don't have a curr_active_slave, search for the next available
  2247. * backup slave from the current_arp_slave and make it the candidate
  2248. * for becoming the curr_active_slave
  2249. */
  2250. if (!curr_arp_slave) {
  2251. curr_arp_slave = bond_first_slave_rcu(bond);
  2252. if (!curr_arp_slave)
  2253. return should_notify_rtnl;
  2254. }
  2255. bond_set_slave_inactive_flags(curr_arp_slave, BOND_SLAVE_NOTIFY_LATER);
  2256. bond_for_each_slave_rcu(bond, slave, iter) {
  2257. if (!found && !before && bond_slave_is_up(slave))
  2258. before = slave;
  2259. if (found && !new_slave && bond_slave_is_up(slave))
  2260. new_slave = slave;
  2261. /* if the link state is up at this point, we
  2262. * mark it down - this can happen if we have
  2263. * simultaneous link failures and
  2264. * reselect_active_interface doesn't make this
  2265. * one the current slave so it is still marked
  2266. * up when it is actually down
  2267. */
  2268. if (!bond_slave_is_up(slave) && slave->link == BOND_LINK_UP) {
  2269. slave->link = BOND_LINK_DOWN;
  2270. if (slave->link_failure_count < UINT_MAX)
  2271. slave->link_failure_count++;
  2272. bond_set_slave_inactive_flags(slave,
  2273. BOND_SLAVE_NOTIFY_LATER);
  2274. netdev_info(bond->dev, "backup interface %s is now down\n",
  2275. slave->dev->name);
  2276. }
  2277. if (slave == curr_arp_slave)
  2278. found = true;
  2279. }
  2280. if (!new_slave && before)
  2281. new_slave = before;
  2282. if (!new_slave)
  2283. goto check_state;
  2284. new_slave->link = BOND_LINK_BACK;
  2285. bond_set_slave_active_flags(new_slave, BOND_SLAVE_NOTIFY_LATER);
  2286. bond_arp_send_all(bond, new_slave);
  2287. new_slave->last_link_up = jiffies;
  2288. rcu_assign_pointer(bond->current_arp_slave, new_slave);
  2289. check_state:
  2290. bond_for_each_slave_rcu(bond, slave, iter) {
  2291. if (slave->should_notify) {
  2292. should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
  2293. break;
  2294. }
  2295. }
  2296. return should_notify_rtnl;
  2297. }
  2298. static void bond_activebackup_arp_mon(struct work_struct *work)
  2299. {
  2300. struct bonding *bond = container_of(work, struct bonding,
  2301. arp_work.work);
  2302. bool should_notify_peers = false;
  2303. bool should_notify_rtnl = false;
  2304. int delta_in_ticks;
  2305. delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
  2306. if (!bond_has_slaves(bond))
  2307. goto re_arm;
  2308. rcu_read_lock();
  2309. should_notify_peers = bond_should_notify_peers(bond);
  2310. if (bond_ab_arp_inspect(bond)) {
  2311. rcu_read_unlock();
  2312. /* Race avoidance with bond_close flush of workqueue */
  2313. if (!rtnl_trylock()) {
  2314. delta_in_ticks = 1;
  2315. should_notify_peers = false;
  2316. goto re_arm;
  2317. }
  2318. bond_ab_arp_commit(bond);
  2319. rtnl_unlock();
  2320. rcu_read_lock();
  2321. }
  2322. should_notify_rtnl = bond_ab_arp_probe(bond);
  2323. rcu_read_unlock();
  2324. re_arm:
  2325. if (bond->params.arp_interval)
  2326. queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
  2327. if (should_notify_peers || should_notify_rtnl) {
  2328. if (!rtnl_trylock())
  2329. return;
  2330. if (should_notify_peers)
  2331. call_netdevice_notifiers(NETDEV_NOTIFY_PEERS,
  2332. bond->dev);
  2333. if (should_notify_rtnl)
  2334. bond_slave_state_notify(bond);
  2335. rtnl_unlock();
  2336. }
  2337. }
  2338. /*-------------------------- netdev event handling --------------------------*/
  2339. /* Change device name */
  2340. static int bond_event_changename(struct bonding *bond)
  2341. {
  2342. bond_remove_proc_entry(bond);
  2343. bond_create_proc_entry(bond);
  2344. bond_debug_reregister(bond);
  2345. return NOTIFY_DONE;
  2346. }
  2347. static int bond_master_netdev_event(unsigned long event,
  2348. struct net_device *bond_dev)
  2349. {
  2350. struct bonding *event_bond = netdev_priv(bond_dev);
  2351. switch (event) {
  2352. case NETDEV_CHANGENAME:
  2353. return bond_event_changename(event_bond);
  2354. case NETDEV_UNREGISTER:
  2355. bond_remove_proc_entry(event_bond);
  2356. break;
  2357. case NETDEV_REGISTER:
  2358. bond_create_proc_entry(event_bond);
  2359. break;
  2360. case NETDEV_NOTIFY_PEERS:
  2361. if (event_bond->send_peer_notif)
  2362. event_bond->send_peer_notif--;
  2363. break;
  2364. default:
  2365. break;
  2366. }
  2367. return NOTIFY_DONE;
  2368. }
  2369. static int bond_slave_netdev_event(unsigned long event,
  2370. struct net_device *slave_dev)
  2371. {
  2372. struct slave *slave = bond_slave_get_rtnl(slave_dev), *primary;
  2373. struct bonding *bond;
  2374. struct net_device *bond_dev;
  2375. u32 old_speed;
  2376. u8 old_duplex;
  2377. /* A netdev event can be generated while enslaving a device
  2378. * before netdev_rx_handler_register is called in which case
  2379. * slave will be NULL
  2380. */
  2381. if (!slave)
  2382. return NOTIFY_DONE;
  2383. bond_dev = slave->bond->dev;
  2384. bond = slave->bond;
  2385. primary = rtnl_dereference(bond->primary_slave);
  2386. switch (event) {
  2387. case NETDEV_UNREGISTER:
  2388. if (bond_dev->type != ARPHRD_ETHER)
  2389. bond_release_and_destroy(bond_dev, slave_dev);
  2390. else
  2391. bond_release(bond_dev, slave_dev);
  2392. break;
  2393. case NETDEV_UP:
  2394. case NETDEV_CHANGE:
  2395. old_speed = slave->speed;
  2396. old_duplex = slave->duplex;
  2397. bond_update_speed_duplex(slave);
  2398. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  2399. if (old_speed != slave->speed)
  2400. bond_3ad_adapter_speed_changed(slave);
  2401. if (old_duplex != slave->duplex)
  2402. bond_3ad_adapter_duplex_changed(slave);
  2403. }
  2404. /* Refresh slave-array if applicable!
  2405. * If the setup does not use miimon or arpmon (mode-specific!),
  2406. * then these events will not cause the slave-array to be
  2407. * refreshed. This will cause xmit to use a slave that is not
  2408. * usable. Avoid such situation by refeshing the array at these
  2409. * events. If these (miimon/arpmon) parameters are configured
  2410. * then array gets refreshed twice and that should be fine!
  2411. */
  2412. if (bond_mode_uses_xmit_hash(bond))
  2413. bond_update_slave_arr(bond, NULL);
  2414. break;
  2415. case NETDEV_DOWN:
  2416. if (bond_mode_uses_xmit_hash(bond))
  2417. bond_update_slave_arr(bond, NULL);
  2418. break;
  2419. case NETDEV_CHANGEMTU:
  2420. /* TODO: Should slaves be allowed to
  2421. * independently alter their MTU? For
  2422. * an active-backup bond, slaves need
  2423. * not be the same type of device, so
  2424. * MTUs may vary. For other modes,
  2425. * slaves arguably should have the
  2426. * same MTUs. To do this, we'd need to
  2427. * take over the slave's change_mtu
  2428. * function for the duration of their
  2429. * servitude.
  2430. */
  2431. break;
  2432. case NETDEV_CHANGENAME:
  2433. /* we don't care if we don't have primary set */
  2434. if (!bond_uses_primary(bond) ||
  2435. !bond->params.primary[0])
  2436. break;
  2437. if (slave == primary) {
  2438. /* slave's name changed - he's no longer primary */
  2439. RCU_INIT_POINTER(bond->primary_slave, NULL);
  2440. } else if (!strcmp(slave_dev->name, bond->params.primary)) {
  2441. /* we have a new primary slave */
  2442. rcu_assign_pointer(bond->primary_slave, slave);
  2443. } else { /* we didn't change primary - exit */
  2444. break;
  2445. }
  2446. netdev_info(bond->dev, "Primary slave changed to %s, reselecting active slave\n",
  2447. primary ? slave_dev->name : "none");
  2448. block_netpoll_tx();
  2449. bond_select_active_slave(bond);
  2450. unblock_netpoll_tx();
  2451. break;
  2452. case NETDEV_FEAT_CHANGE:
  2453. bond_compute_features(bond);
  2454. break;
  2455. case NETDEV_RESEND_IGMP:
  2456. /* Propagate to master device */
  2457. call_netdevice_notifiers(event, slave->bond->dev);
  2458. break;
  2459. default:
  2460. break;
  2461. }
  2462. return NOTIFY_DONE;
  2463. }
  2464. /* bond_netdev_event: handle netdev notifier chain events.
  2465. *
  2466. * This function receives events for the netdev chain. The caller (an
  2467. * ioctl handler calling blocking_notifier_call_chain) holds the necessary
  2468. * locks for us to safely manipulate the slave devices (RTNL lock,
  2469. * dev_probe_lock).
  2470. */
  2471. static int bond_netdev_event(struct notifier_block *this,
  2472. unsigned long event, void *ptr)
  2473. {
  2474. struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
  2475. netdev_dbg(event_dev, "event: %lx\n", event);
  2476. if (!(event_dev->priv_flags & IFF_BONDING))
  2477. return NOTIFY_DONE;
  2478. if (event_dev->flags & IFF_MASTER) {
  2479. netdev_dbg(event_dev, "IFF_MASTER\n");
  2480. return bond_master_netdev_event(event, event_dev);
  2481. }
  2482. if (event_dev->flags & IFF_SLAVE) {
  2483. netdev_dbg(event_dev, "IFF_SLAVE\n");
  2484. return bond_slave_netdev_event(event, event_dev);
  2485. }
  2486. return NOTIFY_DONE;
  2487. }
  2488. static struct notifier_block bond_netdev_notifier = {
  2489. .notifier_call = bond_netdev_event,
  2490. };
  2491. /*---------------------------- Hashing Policies -----------------------------*/
  2492. /* L2 hash helper */
  2493. static inline u32 bond_eth_hash(struct sk_buff *skb)
  2494. {
  2495. struct ethhdr *ep, hdr_tmp;
  2496. ep = skb_header_pointer(skb, 0, sizeof(hdr_tmp), &hdr_tmp);
  2497. if (ep)
  2498. return ep->h_dest[5] ^ ep->h_source[5] ^ ep->h_proto;
  2499. return 0;
  2500. }
  2501. /* Extract the appropriate headers based on bond's xmit policy */
  2502. static bool bond_flow_dissect(struct bonding *bond, struct sk_buff *skb,
  2503. struct flow_keys *fk)
  2504. {
  2505. const struct ipv6hdr *iph6;
  2506. const struct iphdr *iph;
  2507. int noff, proto = -1;
  2508. if (bond->params.xmit_policy > BOND_XMIT_POLICY_LAYER23)
  2509. return skb_flow_dissect(skb, fk);
  2510. fk->ports = 0;
  2511. noff = skb_network_offset(skb);
  2512. if (skb->protocol == htons(ETH_P_IP)) {
  2513. if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph))))
  2514. return false;
  2515. iph = ip_hdr(skb);
  2516. fk->src = iph->saddr;
  2517. fk->dst = iph->daddr;
  2518. noff += iph->ihl << 2;
  2519. if (!ip_is_fragment(iph))
  2520. proto = iph->protocol;
  2521. } else if (skb->protocol == htons(ETH_P_IPV6)) {
  2522. if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph6))))
  2523. return false;
  2524. iph6 = ipv6_hdr(skb);
  2525. fk->src = (__force __be32)ipv6_addr_hash(&iph6->saddr);
  2526. fk->dst = (__force __be32)ipv6_addr_hash(&iph6->daddr);
  2527. noff += sizeof(*iph6);
  2528. proto = iph6->nexthdr;
  2529. } else {
  2530. return false;
  2531. }
  2532. if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER34 && proto >= 0)
  2533. fk->ports = skb_flow_get_ports(skb, noff, proto);
  2534. return true;
  2535. }
  2536. /**
  2537. * bond_xmit_hash - generate a hash value based on the xmit policy
  2538. * @bond: bonding device
  2539. * @skb: buffer to use for headers
  2540. *
  2541. * This function will extract the necessary headers from the skb buffer and use
  2542. * them to generate a hash based on the xmit_policy set in the bonding device
  2543. */
  2544. u32 bond_xmit_hash(struct bonding *bond, struct sk_buff *skb)
  2545. {
  2546. struct flow_keys flow;
  2547. u32 hash;
  2548. if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER2 ||
  2549. !bond_flow_dissect(bond, skb, &flow))
  2550. return bond_eth_hash(skb);
  2551. if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER23 ||
  2552. bond->params.xmit_policy == BOND_XMIT_POLICY_ENCAP23)
  2553. hash = bond_eth_hash(skb);
  2554. else
  2555. hash = (__force u32)flow.ports;
  2556. hash ^= (__force u32)flow.dst ^ (__force u32)flow.src;
  2557. hash ^= (hash >> 16);
  2558. hash ^= (hash >> 8);
  2559. return hash;
  2560. }
  2561. /*-------------------------- Device entry points ----------------------------*/
  2562. static void bond_work_init_all(struct bonding *bond)
  2563. {
  2564. INIT_DELAYED_WORK(&bond->mcast_work,
  2565. bond_resend_igmp_join_requests_delayed);
  2566. INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
  2567. INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
  2568. if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP)
  2569. INIT_DELAYED_WORK(&bond->arp_work, bond_activebackup_arp_mon);
  2570. else
  2571. INIT_DELAYED_WORK(&bond->arp_work, bond_loadbalance_arp_mon);
  2572. INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
  2573. INIT_DELAYED_WORK(&bond->slave_arr_work, bond_slave_arr_handler);
  2574. }
  2575. static void bond_work_cancel_all(struct bonding *bond)
  2576. {
  2577. cancel_delayed_work_sync(&bond->mii_work);
  2578. cancel_delayed_work_sync(&bond->arp_work);
  2579. cancel_delayed_work_sync(&bond->alb_work);
  2580. cancel_delayed_work_sync(&bond->ad_work);
  2581. cancel_delayed_work_sync(&bond->mcast_work);
  2582. cancel_delayed_work_sync(&bond->slave_arr_work);
  2583. }
  2584. static int bond_open(struct net_device *bond_dev)
  2585. {
  2586. struct bonding *bond = netdev_priv(bond_dev);
  2587. struct list_head *iter;
  2588. struct slave *slave;
  2589. /* reset slave->backup and slave->inactive */
  2590. if (bond_has_slaves(bond)) {
  2591. bond_for_each_slave(bond, slave, iter) {
  2592. if (bond_uses_primary(bond) &&
  2593. slave != rcu_access_pointer(bond->curr_active_slave)) {
  2594. bond_set_slave_inactive_flags(slave,
  2595. BOND_SLAVE_NOTIFY_NOW);
  2596. } else {
  2597. bond_set_slave_active_flags(slave,
  2598. BOND_SLAVE_NOTIFY_NOW);
  2599. }
  2600. }
  2601. }
  2602. bond_work_init_all(bond);
  2603. if (bond_is_lb(bond)) {
  2604. /* bond_alb_initialize must be called before the timer
  2605. * is started.
  2606. */
  2607. if (bond_alb_initialize(bond, (BOND_MODE(bond) == BOND_MODE_ALB)))
  2608. return -ENOMEM;
  2609. if (bond->params.tlb_dynamic_lb)
  2610. queue_delayed_work(bond->wq, &bond->alb_work, 0);
  2611. }
  2612. if (bond->params.miimon) /* link check interval, in milliseconds. */
  2613. queue_delayed_work(bond->wq, &bond->mii_work, 0);
  2614. if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
  2615. queue_delayed_work(bond->wq, &bond->arp_work, 0);
  2616. bond->recv_probe = bond_arp_rcv;
  2617. }
  2618. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  2619. queue_delayed_work(bond->wq, &bond->ad_work, 0);
  2620. /* register to receive LACPDUs */
  2621. bond->recv_probe = bond_3ad_lacpdu_recv;
  2622. bond_3ad_initiate_agg_selection(bond, 1);
  2623. }
  2624. if (bond_mode_uses_xmit_hash(bond))
  2625. bond_update_slave_arr(bond, NULL);
  2626. return 0;
  2627. }
  2628. static int bond_close(struct net_device *bond_dev)
  2629. {
  2630. struct bonding *bond = netdev_priv(bond_dev);
  2631. bond_work_cancel_all(bond);
  2632. bond->send_peer_notif = 0;
  2633. if (bond_is_lb(bond))
  2634. bond_alb_deinitialize(bond);
  2635. bond->recv_probe = NULL;
  2636. return 0;
  2637. }
  2638. static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
  2639. struct rtnl_link_stats64 *stats)
  2640. {
  2641. struct bonding *bond = netdev_priv(bond_dev);
  2642. struct rtnl_link_stats64 temp;
  2643. struct list_head *iter;
  2644. struct slave *slave;
  2645. memcpy(stats, &bond->bond_stats, sizeof(*stats));
  2646. bond_for_each_slave(bond, slave, iter) {
  2647. const struct rtnl_link_stats64 *sstats =
  2648. dev_get_stats(slave->dev, &temp);
  2649. struct rtnl_link_stats64 *pstats = &slave->slave_stats;
  2650. stats->rx_packets += sstats->rx_packets - pstats->rx_packets;
  2651. stats->rx_bytes += sstats->rx_bytes - pstats->rx_bytes;
  2652. stats->rx_errors += sstats->rx_errors - pstats->rx_errors;
  2653. stats->rx_dropped += sstats->rx_dropped - pstats->rx_dropped;
  2654. stats->tx_packets += sstats->tx_packets - pstats->tx_packets;;
  2655. stats->tx_bytes += sstats->tx_bytes - pstats->tx_bytes;
  2656. stats->tx_errors += sstats->tx_errors - pstats->tx_errors;
  2657. stats->tx_dropped += sstats->tx_dropped - pstats->tx_dropped;
  2658. stats->multicast += sstats->multicast - pstats->multicast;
  2659. stats->collisions += sstats->collisions - pstats->collisions;
  2660. stats->rx_length_errors += sstats->rx_length_errors - pstats->rx_length_errors;
  2661. stats->rx_over_errors += sstats->rx_over_errors - pstats->rx_over_errors;
  2662. stats->rx_crc_errors += sstats->rx_crc_errors - pstats->rx_crc_errors;
  2663. stats->rx_frame_errors += sstats->rx_frame_errors - pstats->rx_frame_errors;
  2664. stats->rx_fifo_errors += sstats->rx_fifo_errors - pstats->rx_fifo_errors;
  2665. stats->rx_missed_errors += sstats->rx_missed_errors - pstats->rx_missed_errors;
  2666. stats->tx_aborted_errors += sstats->tx_aborted_errors - pstats->tx_aborted_errors;
  2667. stats->tx_carrier_errors += sstats->tx_carrier_errors - pstats->tx_carrier_errors;
  2668. stats->tx_fifo_errors += sstats->tx_fifo_errors - pstats->tx_fifo_errors;
  2669. stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors - pstats->tx_heartbeat_errors;
  2670. stats->tx_window_errors += sstats->tx_window_errors - pstats->tx_window_errors;
  2671. /* save off the slave stats for the next run */
  2672. memcpy(pstats, sstats, sizeof(*sstats));
  2673. }
  2674. memcpy(&bond->bond_stats, stats, sizeof(*stats));
  2675. return stats;
  2676. }
  2677. static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
  2678. {
  2679. struct bonding *bond = netdev_priv(bond_dev);
  2680. struct net_device *slave_dev = NULL;
  2681. struct ifbond k_binfo;
  2682. struct ifbond __user *u_binfo = NULL;
  2683. struct ifslave k_sinfo;
  2684. struct ifslave __user *u_sinfo = NULL;
  2685. struct mii_ioctl_data *mii = NULL;
  2686. struct bond_opt_value newval;
  2687. struct net *net;
  2688. int res = 0;
  2689. netdev_dbg(bond_dev, "bond_ioctl: cmd=%d\n", cmd);
  2690. switch (cmd) {
  2691. case SIOCGMIIPHY:
  2692. mii = if_mii(ifr);
  2693. if (!mii)
  2694. return -EINVAL;
  2695. mii->phy_id = 0;
  2696. /* Fall Through */
  2697. case SIOCGMIIREG:
  2698. /* We do this again just in case we were called by SIOCGMIIREG
  2699. * instead of SIOCGMIIPHY.
  2700. */
  2701. mii = if_mii(ifr);
  2702. if (!mii)
  2703. return -EINVAL;
  2704. if (mii->reg_num == 1) {
  2705. mii->val_out = 0;
  2706. if (netif_carrier_ok(bond->dev))
  2707. mii->val_out = BMSR_LSTATUS;
  2708. }
  2709. return 0;
  2710. case BOND_INFO_QUERY_OLD:
  2711. case SIOCBONDINFOQUERY:
  2712. u_binfo = (struct ifbond __user *)ifr->ifr_data;
  2713. if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
  2714. return -EFAULT;
  2715. res = bond_info_query(bond_dev, &k_binfo);
  2716. if (res == 0 &&
  2717. copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
  2718. return -EFAULT;
  2719. return res;
  2720. case BOND_SLAVE_INFO_QUERY_OLD:
  2721. case SIOCBONDSLAVEINFOQUERY:
  2722. u_sinfo = (struct ifslave __user *)ifr->ifr_data;
  2723. if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
  2724. return -EFAULT;
  2725. res = bond_slave_info_query(bond_dev, &k_sinfo);
  2726. if (res == 0 &&
  2727. copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
  2728. return -EFAULT;
  2729. return res;
  2730. default:
  2731. break;
  2732. }
  2733. net = dev_net(bond_dev);
  2734. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  2735. return -EPERM;
  2736. slave_dev = __dev_get_by_name(net, ifr->ifr_slave);
  2737. netdev_dbg(bond_dev, "slave_dev=%p:\n", slave_dev);
  2738. if (!slave_dev)
  2739. return -ENODEV;
  2740. netdev_dbg(bond_dev, "slave_dev->name=%s:\n", slave_dev->name);
  2741. switch (cmd) {
  2742. case BOND_ENSLAVE_OLD:
  2743. case SIOCBONDENSLAVE:
  2744. res = bond_enslave(bond_dev, slave_dev);
  2745. break;
  2746. case BOND_RELEASE_OLD:
  2747. case SIOCBONDRELEASE:
  2748. res = bond_release(bond_dev, slave_dev);
  2749. break;
  2750. case BOND_SETHWADDR_OLD:
  2751. case SIOCBONDSETHWADDR:
  2752. bond_set_dev_addr(bond_dev, slave_dev);
  2753. res = 0;
  2754. break;
  2755. case BOND_CHANGE_ACTIVE_OLD:
  2756. case SIOCBONDCHANGEACTIVE:
  2757. bond_opt_initstr(&newval, slave_dev->name);
  2758. res = __bond_opt_set(bond, BOND_OPT_ACTIVE_SLAVE, &newval);
  2759. break;
  2760. default:
  2761. res = -EOPNOTSUPP;
  2762. }
  2763. return res;
  2764. }
  2765. static void bond_change_rx_flags(struct net_device *bond_dev, int change)
  2766. {
  2767. struct bonding *bond = netdev_priv(bond_dev);
  2768. if (change & IFF_PROMISC)
  2769. bond_set_promiscuity(bond,
  2770. bond_dev->flags & IFF_PROMISC ? 1 : -1);
  2771. if (change & IFF_ALLMULTI)
  2772. bond_set_allmulti(bond,
  2773. bond_dev->flags & IFF_ALLMULTI ? 1 : -1);
  2774. }
  2775. static void bond_set_rx_mode(struct net_device *bond_dev)
  2776. {
  2777. struct bonding *bond = netdev_priv(bond_dev);
  2778. struct list_head *iter;
  2779. struct slave *slave;
  2780. rcu_read_lock();
  2781. if (bond_uses_primary(bond)) {
  2782. slave = rcu_dereference(bond->curr_active_slave);
  2783. if (slave) {
  2784. dev_uc_sync(slave->dev, bond_dev);
  2785. dev_mc_sync(slave->dev, bond_dev);
  2786. }
  2787. } else {
  2788. bond_for_each_slave_rcu(bond, slave, iter) {
  2789. dev_uc_sync_multiple(slave->dev, bond_dev);
  2790. dev_mc_sync_multiple(slave->dev, bond_dev);
  2791. }
  2792. }
  2793. rcu_read_unlock();
  2794. }
  2795. static int bond_neigh_init(struct neighbour *n)
  2796. {
  2797. struct bonding *bond = netdev_priv(n->dev);
  2798. const struct net_device_ops *slave_ops;
  2799. struct neigh_parms parms;
  2800. struct slave *slave;
  2801. int ret;
  2802. slave = bond_first_slave(bond);
  2803. if (!slave)
  2804. return 0;
  2805. slave_ops = slave->dev->netdev_ops;
  2806. if (!slave_ops->ndo_neigh_setup)
  2807. return 0;
  2808. parms.neigh_setup = NULL;
  2809. parms.neigh_cleanup = NULL;
  2810. ret = slave_ops->ndo_neigh_setup(slave->dev, &parms);
  2811. if (ret)
  2812. return ret;
  2813. /* Assign slave's neigh_cleanup to neighbour in case cleanup is called
  2814. * after the last slave has been detached. Assumes that all slaves
  2815. * utilize the same neigh_cleanup (true at this writing as only user
  2816. * is ipoib).
  2817. */
  2818. n->parms->neigh_cleanup = parms.neigh_cleanup;
  2819. if (!parms.neigh_setup)
  2820. return 0;
  2821. return parms.neigh_setup(n);
  2822. }
  2823. /* The bonding ndo_neigh_setup is called at init time beofre any
  2824. * slave exists. So we must declare proxy setup function which will
  2825. * be used at run time to resolve the actual slave neigh param setup.
  2826. *
  2827. * It's also called by master devices (such as vlans) to setup their
  2828. * underlying devices. In that case - do nothing, we're already set up from
  2829. * our init.
  2830. */
  2831. static int bond_neigh_setup(struct net_device *dev,
  2832. struct neigh_parms *parms)
  2833. {
  2834. /* modify only our neigh_parms */
  2835. if (parms->dev == dev)
  2836. parms->neigh_setup = bond_neigh_init;
  2837. return 0;
  2838. }
  2839. /* Change the MTU of all of a master's slaves to match the master */
  2840. static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
  2841. {
  2842. struct bonding *bond = netdev_priv(bond_dev);
  2843. struct slave *slave, *rollback_slave;
  2844. struct list_head *iter;
  2845. int res = 0;
  2846. netdev_dbg(bond_dev, "bond=%p, new_mtu=%d\n", bond, new_mtu);
  2847. bond_for_each_slave(bond, slave, iter) {
  2848. netdev_dbg(bond_dev, "s %p c_m %p\n",
  2849. slave, slave->dev->netdev_ops->ndo_change_mtu);
  2850. res = dev_set_mtu(slave->dev, new_mtu);
  2851. if (res) {
  2852. /* If we failed to set the slave's mtu to the new value
  2853. * we must abort the operation even in ACTIVE_BACKUP
  2854. * mode, because if we allow the backup slaves to have
  2855. * different mtu values than the active slave we'll
  2856. * need to change their mtu when doing a failover. That
  2857. * means changing their mtu from timer context, which
  2858. * is probably not a good idea.
  2859. */
  2860. netdev_dbg(bond_dev, "err %d %s\n", res,
  2861. slave->dev->name);
  2862. goto unwind;
  2863. }
  2864. }
  2865. bond_dev->mtu = new_mtu;
  2866. return 0;
  2867. unwind:
  2868. /* unwind from head to the slave that failed */
  2869. bond_for_each_slave(bond, rollback_slave, iter) {
  2870. int tmp_res;
  2871. if (rollback_slave == slave)
  2872. break;
  2873. tmp_res = dev_set_mtu(rollback_slave->dev, bond_dev->mtu);
  2874. if (tmp_res) {
  2875. netdev_dbg(bond_dev, "unwind err %d dev %s\n",
  2876. tmp_res, rollback_slave->dev->name);
  2877. }
  2878. }
  2879. return res;
  2880. }
  2881. /* Change HW address
  2882. *
  2883. * Note that many devices must be down to change the HW address, and
  2884. * downing the master releases all slaves. We can make bonds full of
  2885. * bonding devices to test this, however.
  2886. */
  2887. static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
  2888. {
  2889. struct bonding *bond = netdev_priv(bond_dev);
  2890. struct slave *slave, *rollback_slave;
  2891. struct sockaddr *sa = addr, tmp_sa;
  2892. struct list_head *iter;
  2893. int res = 0;
  2894. if (BOND_MODE(bond) == BOND_MODE_ALB)
  2895. return bond_alb_set_mac_address(bond_dev, addr);
  2896. netdev_dbg(bond_dev, "bond=%p\n", bond);
  2897. /* If fail_over_mac is enabled, do nothing and return success.
  2898. * Returning an error causes ifenslave to fail.
  2899. */
  2900. if (bond->params.fail_over_mac &&
  2901. BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP)
  2902. return 0;
  2903. if (!is_valid_ether_addr(sa->sa_data))
  2904. return -EADDRNOTAVAIL;
  2905. bond_for_each_slave(bond, slave, iter) {
  2906. netdev_dbg(bond_dev, "slave %p %s\n", slave, slave->dev->name);
  2907. res = dev_set_mac_address(slave->dev, addr);
  2908. if (res) {
  2909. /* TODO: consider downing the slave
  2910. * and retry ?
  2911. * User should expect communications
  2912. * breakage anyway until ARP finish
  2913. * updating, so...
  2914. */
  2915. netdev_dbg(bond_dev, "err %d %s\n", res, slave->dev->name);
  2916. goto unwind;
  2917. }
  2918. }
  2919. /* success */
  2920. memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
  2921. return 0;
  2922. unwind:
  2923. memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
  2924. tmp_sa.sa_family = bond_dev->type;
  2925. /* unwind from head to the slave that failed */
  2926. bond_for_each_slave(bond, rollback_slave, iter) {
  2927. int tmp_res;
  2928. if (rollback_slave == slave)
  2929. break;
  2930. tmp_res = dev_set_mac_address(rollback_slave->dev, &tmp_sa);
  2931. if (tmp_res) {
  2932. netdev_dbg(bond_dev, "unwind err %d dev %s\n",
  2933. tmp_res, rollback_slave->dev->name);
  2934. }
  2935. }
  2936. return res;
  2937. }
  2938. /**
  2939. * bond_xmit_slave_id - transmit skb through slave with slave_id
  2940. * @bond: bonding device that is transmitting
  2941. * @skb: buffer to transmit
  2942. * @slave_id: slave id up to slave_cnt-1 through which to transmit
  2943. *
  2944. * This function tries to transmit through slave with slave_id but in case
  2945. * it fails, it tries to find the first available slave for transmission.
  2946. * The skb is consumed in all cases, thus the function is void.
  2947. */
  2948. static void bond_xmit_slave_id(struct bonding *bond, struct sk_buff *skb, int slave_id)
  2949. {
  2950. struct list_head *iter;
  2951. struct slave *slave;
  2952. int i = slave_id;
  2953. /* Here we start from the slave with slave_id */
  2954. bond_for_each_slave_rcu(bond, slave, iter) {
  2955. if (--i < 0) {
  2956. if (bond_slave_can_tx(slave)) {
  2957. bond_dev_queue_xmit(bond, skb, slave->dev);
  2958. return;
  2959. }
  2960. }
  2961. }
  2962. /* Here we start from the first slave up to slave_id */
  2963. i = slave_id;
  2964. bond_for_each_slave_rcu(bond, slave, iter) {
  2965. if (--i < 0)
  2966. break;
  2967. if (bond_slave_can_tx(slave)) {
  2968. bond_dev_queue_xmit(bond, skb, slave->dev);
  2969. return;
  2970. }
  2971. }
  2972. /* no slave that can tx has been found */
  2973. dev_kfree_skb_any(skb);
  2974. }
  2975. /**
  2976. * bond_rr_gen_slave_id - generate slave id based on packets_per_slave
  2977. * @bond: bonding device to use
  2978. *
  2979. * Based on the value of the bonding device's packets_per_slave parameter
  2980. * this function generates a slave id, which is usually used as the next
  2981. * slave to transmit through.
  2982. */
  2983. static u32 bond_rr_gen_slave_id(struct bonding *bond)
  2984. {
  2985. u32 slave_id;
  2986. struct reciprocal_value reciprocal_packets_per_slave;
  2987. int packets_per_slave = bond->params.packets_per_slave;
  2988. switch (packets_per_slave) {
  2989. case 0:
  2990. slave_id = prandom_u32();
  2991. break;
  2992. case 1:
  2993. slave_id = bond->rr_tx_counter;
  2994. break;
  2995. default:
  2996. reciprocal_packets_per_slave =
  2997. bond->params.reciprocal_packets_per_slave;
  2998. slave_id = reciprocal_divide(bond->rr_tx_counter,
  2999. reciprocal_packets_per_slave);
  3000. break;
  3001. }
  3002. bond->rr_tx_counter++;
  3003. return slave_id;
  3004. }
  3005. static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
  3006. {
  3007. struct bonding *bond = netdev_priv(bond_dev);
  3008. struct iphdr *iph = ip_hdr(skb);
  3009. struct slave *slave;
  3010. u32 slave_id;
  3011. /* Start with the curr_active_slave that joined the bond as the
  3012. * default for sending IGMP traffic. For failover purposes one
  3013. * needs to maintain some consistency for the interface that will
  3014. * send the join/membership reports. The curr_active_slave found
  3015. * will send all of this type of traffic.
  3016. */
  3017. if (iph->protocol == IPPROTO_IGMP && skb->protocol == htons(ETH_P_IP)) {
  3018. slave = rcu_dereference(bond->curr_active_slave);
  3019. if (slave)
  3020. bond_dev_queue_xmit(bond, skb, slave->dev);
  3021. else
  3022. bond_xmit_slave_id(bond, skb, 0);
  3023. } else {
  3024. int slave_cnt = ACCESS_ONCE(bond->slave_cnt);
  3025. if (likely(slave_cnt)) {
  3026. slave_id = bond_rr_gen_slave_id(bond);
  3027. bond_xmit_slave_id(bond, skb, slave_id % slave_cnt);
  3028. } else {
  3029. dev_kfree_skb_any(skb);
  3030. }
  3031. }
  3032. return NETDEV_TX_OK;
  3033. }
  3034. /* In active-backup mode, we know that bond->curr_active_slave is always valid if
  3035. * the bond has a usable interface.
  3036. */
  3037. static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
  3038. {
  3039. struct bonding *bond = netdev_priv(bond_dev);
  3040. struct slave *slave;
  3041. slave = rcu_dereference(bond->curr_active_slave);
  3042. if (slave)
  3043. bond_dev_queue_xmit(bond, skb, slave->dev);
  3044. else
  3045. dev_kfree_skb_any(skb);
  3046. return NETDEV_TX_OK;
  3047. }
  3048. /* Use this to update slave_array when (a) it's not appropriate to update
  3049. * slave_array right away (note that update_slave_array() may sleep)
  3050. * and / or (b) RTNL is not held.
  3051. */
  3052. void bond_slave_arr_work_rearm(struct bonding *bond, unsigned long delay)
  3053. {
  3054. queue_delayed_work(bond->wq, &bond->slave_arr_work, delay);
  3055. }
  3056. /* Slave array work handler. Holds only RTNL */
  3057. static void bond_slave_arr_handler(struct work_struct *work)
  3058. {
  3059. struct bonding *bond = container_of(work, struct bonding,
  3060. slave_arr_work.work);
  3061. int ret;
  3062. if (!rtnl_trylock())
  3063. goto err;
  3064. ret = bond_update_slave_arr(bond, NULL);
  3065. rtnl_unlock();
  3066. if (ret) {
  3067. pr_warn_ratelimited("Failed to update slave array from WT\n");
  3068. goto err;
  3069. }
  3070. return;
  3071. err:
  3072. bond_slave_arr_work_rearm(bond, 1);
  3073. }
  3074. /* Build the usable slaves array in control path for modes that use xmit-hash
  3075. * to determine the slave interface -
  3076. * (a) BOND_MODE_8023AD
  3077. * (b) BOND_MODE_XOR
  3078. * (c) BOND_MODE_TLB && tlb_dynamic_lb == 0
  3079. *
  3080. * The caller is expected to hold RTNL only and NO other lock!
  3081. */
  3082. int bond_update_slave_arr(struct bonding *bond, struct slave *skipslave)
  3083. {
  3084. struct slave *slave;
  3085. struct list_head *iter;
  3086. struct bond_up_slave *new_arr, *old_arr;
  3087. int slaves_in_agg;
  3088. int agg_id = 0;
  3089. int ret = 0;
  3090. #ifdef CONFIG_LOCKDEP
  3091. WARN_ON(lockdep_is_held(&bond->mode_lock));
  3092. #endif
  3093. new_arr = kzalloc(offsetof(struct bond_up_slave, arr[bond->slave_cnt]),
  3094. GFP_KERNEL);
  3095. if (!new_arr) {
  3096. ret = -ENOMEM;
  3097. pr_err("Failed to build slave-array.\n");
  3098. goto out;
  3099. }
  3100. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  3101. struct ad_info ad_info;
  3102. if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
  3103. pr_debug("bond_3ad_get_active_agg_info failed\n");
  3104. kfree_rcu(new_arr, rcu);
  3105. /* No active aggragator means it's not safe to use
  3106. * the previous array.
  3107. */
  3108. old_arr = rtnl_dereference(bond->slave_arr);
  3109. if (old_arr) {
  3110. RCU_INIT_POINTER(bond->slave_arr, NULL);
  3111. kfree_rcu(old_arr, rcu);
  3112. }
  3113. goto out;
  3114. }
  3115. slaves_in_agg = ad_info.ports;
  3116. agg_id = ad_info.aggregator_id;
  3117. }
  3118. bond_for_each_slave(bond, slave, iter) {
  3119. if (BOND_MODE(bond) == BOND_MODE_8023AD) {
  3120. struct aggregator *agg;
  3121. agg = SLAVE_AD_INFO(slave)->port.aggregator;
  3122. if (!agg || agg->aggregator_identifier != agg_id)
  3123. continue;
  3124. }
  3125. if (!bond_slave_can_tx(slave))
  3126. continue;
  3127. if (skipslave == slave)
  3128. continue;
  3129. new_arr->arr[new_arr->count++] = slave;
  3130. }
  3131. old_arr = rtnl_dereference(bond->slave_arr);
  3132. rcu_assign_pointer(bond->slave_arr, new_arr);
  3133. if (old_arr)
  3134. kfree_rcu(old_arr, rcu);
  3135. out:
  3136. if (ret != 0 && skipslave) {
  3137. int idx;
  3138. /* Rare situation where caller has asked to skip a specific
  3139. * slave but allocation failed (most likely!). BTW this is
  3140. * only possible when the call is initiated from
  3141. * __bond_release_one(). In this situation; overwrite the
  3142. * skipslave entry in the array with the last entry from the
  3143. * array to avoid a situation where the xmit path may choose
  3144. * this to-be-skipped slave to send a packet out.
  3145. */
  3146. old_arr = rtnl_dereference(bond->slave_arr);
  3147. for (idx = 0; idx < old_arr->count; idx++) {
  3148. if (skipslave == old_arr->arr[idx]) {
  3149. old_arr->arr[idx] =
  3150. old_arr->arr[old_arr->count-1];
  3151. old_arr->count--;
  3152. break;
  3153. }
  3154. }
  3155. }
  3156. return ret;
  3157. }
  3158. /* Use this Xmit function for 3AD as well as XOR modes. The current
  3159. * usable slave array is formed in the control path. The xmit function
  3160. * just calculates hash and sends the packet out.
  3161. */
  3162. int bond_3ad_xor_xmit(struct sk_buff *skb, struct net_device *dev)
  3163. {
  3164. struct bonding *bond = netdev_priv(dev);
  3165. struct slave *slave;
  3166. struct bond_up_slave *slaves;
  3167. unsigned int count;
  3168. slaves = rcu_dereference(bond->slave_arr);
  3169. count = slaves ? ACCESS_ONCE(slaves->count) : 0;
  3170. if (likely(count)) {
  3171. slave = slaves->arr[bond_xmit_hash(bond, skb) % count];
  3172. bond_dev_queue_xmit(bond, skb, slave->dev);
  3173. } else {
  3174. dev_kfree_skb_any(skb);
  3175. atomic_long_inc(&dev->tx_dropped);
  3176. }
  3177. return NETDEV_TX_OK;
  3178. }
  3179. /* in broadcast mode, we send everything to all usable interfaces. */
  3180. static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
  3181. {
  3182. struct bonding *bond = netdev_priv(bond_dev);
  3183. struct slave *slave = NULL;
  3184. struct list_head *iter;
  3185. bond_for_each_slave_rcu(bond, slave, iter) {
  3186. if (bond_is_last_slave(bond, slave))
  3187. break;
  3188. if (bond_slave_is_up(slave) && slave->link == BOND_LINK_UP) {
  3189. struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
  3190. if (!skb2) {
  3191. net_err_ratelimited("%s: Error: %s: skb_clone() failed\n",
  3192. bond_dev->name, __func__);
  3193. continue;
  3194. }
  3195. bond_dev_queue_xmit(bond, skb2, slave->dev);
  3196. }
  3197. }
  3198. if (slave && bond_slave_is_up(slave) && slave->link == BOND_LINK_UP)
  3199. bond_dev_queue_xmit(bond, skb, slave->dev);
  3200. else
  3201. dev_kfree_skb_any(skb);
  3202. return NETDEV_TX_OK;
  3203. }
  3204. /*------------------------- Device initialization ---------------------------*/
  3205. /* Lookup the slave that corresponds to a qid */
  3206. static inline int bond_slave_override(struct bonding *bond,
  3207. struct sk_buff *skb)
  3208. {
  3209. struct slave *slave = NULL;
  3210. struct list_head *iter;
  3211. if (!skb->queue_mapping)
  3212. return 1;
  3213. /* Find out if any slaves have the same mapping as this skb. */
  3214. bond_for_each_slave_rcu(bond, slave, iter) {
  3215. if (slave->queue_id == skb->queue_mapping) {
  3216. if (bond_slave_can_tx(slave)) {
  3217. bond_dev_queue_xmit(bond, skb, slave->dev);
  3218. return 0;
  3219. }
  3220. /* If the slave isn't UP, use default transmit policy. */
  3221. break;
  3222. }
  3223. }
  3224. return 1;
  3225. }
  3226. static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb,
  3227. void *accel_priv, select_queue_fallback_t fallback)
  3228. {
  3229. /* This helper function exists to help dev_pick_tx get the correct
  3230. * destination queue. Using a helper function skips a call to
  3231. * skb_tx_hash and will put the skbs in the queue we expect on their
  3232. * way down to the bonding driver.
  3233. */
  3234. u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
  3235. /* Save the original txq to restore before passing to the driver */
  3236. qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb->queue_mapping;
  3237. if (unlikely(txq >= dev->real_num_tx_queues)) {
  3238. do {
  3239. txq -= dev->real_num_tx_queues;
  3240. } while (txq >= dev->real_num_tx_queues);
  3241. }
  3242. return txq;
  3243. }
  3244. static netdev_tx_t __bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
  3245. {
  3246. struct bonding *bond = netdev_priv(dev);
  3247. if (bond_should_override_tx_queue(bond) &&
  3248. !bond_slave_override(bond, skb))
  3249. return NETDEV_TX_OK;
  3250. switch (BOND_MODE(bond)) {
  3251. case BOND_MODE_ROUNDROBIN:
  3252. return bond_xmit_roundrobin(skb, dev);
  3253. case BOND_MODE_ACTIVEBACKUP:
  3254. return bond_xmit_activebackup(skb, dev);
  3255. case BOND_MODE_8023AD:
  3256. case BOND_MODE_XOR:
  3257. return bond_3ad_xor_xmit(skb, dev);
  3258. case BOND_MODE_BROADCAST:
  3259. return bond_xmit_broadcast(skb, dev);
  3260. case BOND_MODE_ALB:
  3261. return bond_alb_xmit(skb, dev);
  3262. case BOND_MODE_TLB:
  3263. return bond_tlb_xmit(skb, dev);
  3264. default:
  3265. /* Should never happen, mode already checked */
  3266. netdev_err(dev, "Unknown bonding mode %d\n", BOND_MODE(bond));
  3267. WARN_ON_ONCE(1);
  3268. dev_kfree_skb_any(skb);
  3269. return NETDEV_TX_OK;
  3270. }
  3271. }
  3272. static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
  3273. {
  3274. struct bonding *bond = netdev_priv(dev);
  3275. netdev_tx_t ret = NETDEV_TX_OK;
  3276. /* If we risk deadlock from transmitting this in the
  3277. * netpoll path, tell netpoll to queue the frame for later tx
  3278. */
  3279. if (unlikely(is_netpoll_tx_blocked(dev)))
  3280. return NETDEV_TX_BUSY;
  3281. rcu_read_lock();
  3282. if (bond_has_slaves(bond))
  3283. ret = __bond_start_xmit(skb, dev);
  3284. else
  3285. dev_kfree_skb_any(skb);
  3286. rcu_read_unlock();
  3287. return ret;
  3288. }
  3289. static int bond_ethtool_get_settings(struct net_device *bond_dev,
  3290. struct ethtool_cmd *ecmd)
  3291. {
  3292. struct bonding *bond = netdev_priv(bond_dev);
  3293. unsigned long speed = 0;
  3294. struct list_head *iter;
  3295. struct slave *slave;
  3296. ecmd->duplex = DUPLEX_UNKNOWN;
  3297. ecmd->port = PORT_OTHER;
  3298. /* Since bond_slave_can_tx returns false for all inactive or down slaves, we
  3299. * do not need to check mode. Though link speed might not represent
  3300. * the true receive or transmit bandwidth (not all modes are symmetric)
  3301. * this is an accurate maximum.
  3302. */
  3303. bond_for_each_slave(bond, slave, iter) {
  3304. if (bond_slave_can_tx(slave)) {
  3305. if (slave->speed != SPEED_UNKNOWN)
  3306. speed += slave->speed;
  3307. if (ecmd->duplex == DUPLEX_UNKNOWN &&
  3308. slave->duplex != DUPLEX_UNKNOWN)
  3309. ecmd->duplex = slave->duplex;
  3310. }
  3311. }
  3312. ethtool_cmd_speed_set(ecmd, speed ? : SPEED_UNKNOWN);
  3313. return 0;
  3314. }
  3315. static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
  3316. struct ethtool_drvinfo *drvinfo)
  3317. {
  3318. strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
  3319. strlcpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version));
  3320. snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "%d",
  3321. BOND_ABI_VERSION);
  3322. }
  3323. static const struct ethtool_ops bond_ethtool_ops = {
  3324. .get_drvinfo = bond_ethtool_get_drvinfo,
  3325. .get_settings = bond_ethtool_get_settings,
  3326. .get_link = ethtool_op_get_link,
  3327. };
  3328. static const struct net_device_ops bond_netdev_ops = {
  3329. .ndo_init = bond_init,
  3330. .ndo_uninit = bond_uninit,
  3331. .ndo_open = bond_open,
  3332. .ndo_stop = bond_close,
  3333. .ndo_start_xmit = bond_start_xmit,
  3334. .ndo_select_queue = bond_select_queue,
  3335. .ndo_get_stats64 = bond_get_stats,
  3336. .ndo_do_ioctl = bond_do_ioctl,
  3337. .ndo_change_rx_flags = bond_change_rx_flags,
  3338. .ndo_set_rx_mode = bond_set_rx_mode,
  3339. .ndo_change_mtu = bond_change_mtu,
  3340. .ndo_set_mac_address = bond_set_mac_address,
  3341. .ndo_neigh_setup = bond_neigh_setup,
  3342. .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
  3343. .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
  3344. #ifdef CONFIG_NET_POLL_CONTROLLER
  3345. .ndo_netpoll_setup = bond_netpoll_setup,
  3346. .ndo_netpoll_cleanup = bond_netpoll_cleanup,
  3347. .ndo_poll_controller = bond_poll_controller,
  3348. #endif
  3349. .ndo_add_slave = bond_enslave,
  3350. .ndo_del_slave = bond_release,
  3351. .ndo_fix_features = bond_fix_features,
  3352. };
  3353. static const struct device_type bond_type = {
  3354. .name = "bond",
  3355. };
  3356. static void bond_destructor(struct net_device *bond_dev)
  3357. {
  3358. struct bonding *bond = netdev_priv(bond_dev);
  3359. if (bond->wq)
  3360. destroy_workqueue(bond->wq);
  3361. free_netdev(bond_dev);
  3362. }
  3363. void bond_setup(struct net_device *bond_dev)
  3364. {
  3365. struct bonding *bond = netdev_priv(bond_dev);
  3366. spin_lock_init(&bond->mode_lock);
  3367. bond->params = bonding_defaults;
  3368. /* Initialize pointers */
  3369. bond->dev = bond_dev;
  3370. /* Initialize the device entry points */
  3371. ether_setup(bond_dev);
  3372. bond_dev->netdev_ops = &bond_netdev_ops;
  3373. bond_dev->ethtool_ops = &bond_ethtool_ops;
  3374. bond_dev->destructor = bond_destructor;
  3375. SET_NETDEV_DEVTYPE(bond_dev, &bond_type);
  3376. /* Initialize the device options */
  3377. bond_dev->tx_queue_len = 0;
  3378. bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
  3379. bond_dev->priv_flags |= IFF_BONDING | IFF_UNICAST_FLT;
  3380. bond_dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
  3381. /* don't acquire bond device's netif_tx_lock when transmitting */
  3382. bond_dev->features |= NETIF_F_LLTX;
  3383. /* By default, we declare the bond to be fully
  3384. * VLAN hardware accelerated capable. Special
  3385. * care is taken in the various xmit functions
  3386. * when there are slaves that are not hw accel
  3387. * capable
  3388. */
  3389. /* Don't allow bond devices to change network namespaces. */
  3390. bond_dev->features |= NETIF_F_NETNS_LOCAL;
  3391. bond_dev->hw_features = BOND_VLAN_FEATURES |
  3392. NETIF_F_HW_VLAN_CTAG_TX |
  3393. NETIF_F_HW_VLAN_CTAG_RX |
  3394. NETIF_F_HW_VLAN_CTAG_FILTER;
  3395. bond_dev->hw_features &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_HW_CSUM);
  3396. bond_dev->hw_features |= NETIF_F_GSO_UDP_TUNNEL;
  3397. bond_dev->features |= bond_dev->hw_features;
  3398. }
  3399. /* Destroy a bonding device.
  3400. * Must be under rtnl_lock when this function is called.
  3401. */
  3402. static void bond_uninit(struct net_device *bond_dev)
  3403. {
  3404. struct bonding *bond = netdev_priv(bond_dev);
  3405. struct list_head *iter;
  3406. struct slave *slave;
  3407. struct bond_up_slave *arr;
  3408. bond_netpoll_cleanup(bond_dev);
  3409. /* Release the bonded slaves */
  3410. bond_for_each_slave(bond, slave, iter)
  3411. __bond_release_one(bond_dev, slave->dev, true);
  3412. netdev_info(bond_dev, "Released all slaves\n");
  3413. arr = rtnl_dereference(bond->slave_arr);
  3414. if (arr) {
  3415. RCU_INIT_POINTER(bond->slave_arr, NULL);
  3416. kfree_rcu(arr, rcu);
  3417. }
  3418. list_del(&bond->bond_list);
  3419. bond_debug_unregister(bond);
  3420. }
  3421. /*------------------------- Module initialization ---------------------------*/
  3422. static int bond_check_params(struct bond_params *params)
  3423. {
  3424. int arp_validate_value, fail_over_mac_value, primary_reselect_value, i;
  3425. struct bond_opt_value newval;
  3426. const struct bond_opt_value *valptr;
  3427. int arp_all_targets_value;
  3428. /* Convert string parameters. */
  3429. if (mode) {
  3430. bond_opt_initstr(&newval, mode);
  3431. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_MODE), &newval);
  3432. if (!valptr) {
  3433. pr_err("Error: Invalid bonding mode \"%s\"\n", mode);
  3434. return -EINVAL;
  3435. }
  3436. bond_mode = valptr->value;
  3437. }
  3438. if (xmit_hash_policy) {
  3439. if ((bond_mode != BOND_MODE_XOR) &&
  3440. (bond_mode != BOND_MODE_8023AD) &&
  3441. (bond_mode != BOND_MODE_TLB)) {
  3442. pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
  3443. bond_mode_name(bond_mode));
  3444. } else {
  3445. bond_opt_initstr(&newval, xmit_hash_policy);
  3446. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_XMIT_HASH),
  3447. &newval);
  3448. if (!valptr) {
  3449. pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
  3450. xmit_hash_policy);
  3451. return -EINVAL;
  3452. }
  3453. xmit_hashtype = valptr->value;
  3454. }
  3455. }
  3456. if (lacp_rate) {
  3457. if (bond_mode != BOND_MODE_8023AD) {
  3458. pr_info("lacp_rate param is irrelevant in mode %s\n",
  3459. bond_mode_name(bond_mode));
  3460. } else {
  3461. bond_opt_initstr(&newval, lacp_rate);
  3462. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_LACP_RATE),
  3463. &newval);
  3464. if (!valptr) {
  3465. pr_err("Error: Invalid lacp rate \"%s\"\n",
  3466. lacp_rate);
  3467. return -EINVAL;
  3468. }
  3469. lacp_fast = valptr->value;
  3470. }
  3471. }
  3472. if (ad_select) {
  3473. bond_opt_initstr(&newval, ad_select);
  3474. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_AD_SELECT),
  3475. &newval);
  3476. if (!valptr) {
  3477. pr_err("Error: Invalid ad_select \"%s\"\n", ad_select);
  3478. return -EINVAL;
  3479. }
  3480. params->ad_select = valptr->value;
  3481. if (bond_mode != BOND_MODE_8023AD)
  3482. pr_warn("ad_select param only affects 802.3ad mode\n");
  3483. } else {
  3484. params->ad_select = BOND_AD_STABLE;
  3485. }
  3486. if (max_bonds < 0) {
  3487. pr_warn("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
  3488. max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
  3489. max_bonds = BOND_DEFAULT_MAX_BONDS;
  3490. }
  3491. if (miimon < 0) {
  3492. pr_warn("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to 0\n",
  3493. miimon, INT_MAX);
  3494. miimon = 0;
  3495. }
  3496. if (updelay < 0) {
  3497. pr_warn("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
  3498. updelay, INT_MAX);
  3499. updelay = 0;
  3500. }
  3501. if (downdelay < 0) {
  3502. pr_warn("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
  3503. downdelay, INT_MAX);
  3504. downdelay = 0;
  3505. }
  3506. if ((use_carrier != 0) && (use_carrier != 1)) {
  3507. pr_warn("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
  3508. use_carrier);
  3509. use_carrier = 1;
  3510. }
  3511. if (num_peer_notif < 0 || num_peer_notif > 255) {
  3512. pr_warn("Warning: num_grat_arp/num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
  3513. num_peer_notif);
  3514. num_peer_notif = 1;
  3515. }
  3516. /* reset values for 802.3ad/TLB/ALB */
  3517. if (!bond_mode_uses_arp(bond_mode)) {
  3518. if (!miimon) {
  3519. pr_warn("Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation\n");
  3520. pr_warn("Forcing miimon to 100msec\n");
  3521. miimon = BOND_DEFAULT_MIIMON;
  3522. }
  3523. }
  3524. if (tx_queues < 1 || tx_queues > 255) {
  3525. pr_warn("Warning: tx_queues (%d) should be between 1 and 255, resetting to %d\n",
  3526. tx_queues, BOND_DEFAULT_TX_QUEUES);
  3527. tx_queues = BOND_DEFAULT_TX_QUEUES;
  3528. }
  3529. if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
  3530. pr_warn("Warning: all_slaves_active module parameter (%d), not of valid value (0/1), so it was set to 0\n",
  3531. all_slaves_active);
  3532. all_slaves_active = 0;
  3533. }
  3534. if (resend_igmp < 0 || resend_igmp > 255) {
  3535. pr_warn("Warning: resend_igmp (%d) should be between 0 and 255, resetting to %d\n",
  3536. resend_igmp, BOND_DEFAULT_RESEND_IGMP);
  3537. resend_igmp = BOND_DEFAULT_RESEND_IGMP;
  3538. }
  3539. bond_opt_initval(&newval, packets_per_slave);
  3540. if (!bond_opt_parse(bond_opt_get(BOND_OPT_PACKETS_PER_SLAVE), &newval)) {
  3541. pr_warn("Warning: packets_per_slave (%d) should be between 0 and %u resetting to 1\n",
  3542. packets_per_slave, USHRT_MAX);
  3543. packets_per_slave = 1;
  3544. }
  3545. if (bond_mode == BOND_MODE_ALB) {
  3546. pr_notice("In ALB mode you might experience client disconnections upon reconnection of a link if the bonding module updelay parameter (%d msec) is incompatible with the forwarding delay time of the switch\n",
  3547. updelay);
  3548. }
  3549. if (!miimon) {
  3550. if (updelay || downdelay) {
  3551. /* just warn the user the up/down delay will have
  3552. * no effect since miimon is zero...
  3553. */
  3554. pr_warn("Warning: miimon module parameter not set and updelay (%d) or downdelay (%d) module parameter is set; updelay and downdelay have no effect unless miimon is set\n",
  3555. updelay, downdelay);
  3556. }
  3557. } else {
  3558. /* don't allow arp monitoring */
  3559. if (arp_interval) {
  3560. pr_warn("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
  3561. miimon, arp_interval);
  3562. arp_interval = 0;
  3563. }
  3564. if ((updelay % miimon) != 0) {
  3565. pr_warn("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
  3566. updelay, miimon, (updelay / miimon) * miimon);
  3567. }
  3568. updelay /= miimon;
  3569. if ((downdelay % miimon) != 0) {
  3570. pr_warn("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
  3571. downdelay, miimon,
  3572. (downdelay / miimon) * miimon);
  3573. }
  3574. downdelay /= miimon;
  3575. }
  3576. if (arp_interval < 0) {
  3577. pr_warn("Warning: arp_interval module parameter (%d), not in range 0-%d, so it was reset to 0\n",
  3578. arp_interval, INT_MAX);
  3579. arp_interval = 0;
  3580. }
  3581. for (arp_ip_count = 0, i = 0;
  3582. (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[i]; i++) {
  3583. __be32 ip;
  3584. /* not a complete check, but good enough to catch mistakes */
  3585. if (!in4_pton(arp_ip_target[i], -1, (u8 *)&ip, -1, NULL) ||
  3586. !bond_is_ip_target_ok(ip)) {
  3587. pr_warn("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
  3588. arp_ip_target[i]);
  3589. arp_interval = 0;
  3590. } else {
  3591. if (bond_get_targets_ip(arp_target, ip) == -1)
  3592. arp_target[arp_ip_count++] = ip;
  3593. else
  3594. pr_warn("Warning: duplicate address %pI4 in arp_ip_target, skipping\n",
  3595. &ip);
  3596. }
  3597. }
  3598. if (arp_interval && !arp_ip_count) {
  3599. /* don't allow arping if no arp_ip_target given... */
  3600. pr_warn("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
  3601. arp_interval);
  3602. arp_interval = 0;
  3603. }
  3604. if (arp_validate) {
  3605. if (!arp_interval) {
  3606. pr_err("arp_validate requires arp_interval\n");
  3607. return -EINVAL;
  3608. }
  3609. bond_opt_initstr(&newval, arp_validate);
  3610. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_VALIDATE),
  3611. &newval);
  3612. if (!valptr) {
  3613. pr_err("Error: invalid arp_validate \"%s\"\n",
  3614. arp_validate);
  3615. return -EINVAL;
  3616. }
  3617. arp_validate_value = valptr->value;
  3618. } else {
  3619. arp_validate_value = 0;
  3620. }
  3621. arp_all_targets_value = 0;
  3622. if (arp_all_targets) {
  3623. bond_opt_initstr(&newval, arp_all_targets);
  3624. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_ALL_TARGETS),
  3625. &newval);
  3626. if (!valptr) {
  3627. pr_err("Error: invalid arp_all_targets_value \"%s\"\n",
  3628. arp_all_targets);
  3629. arp_all_targets_value = 0;
  3630. } else {
  3631. arp_all_targets_value = valptr->value;
  3632. }
  3633. }
  3634. if (miimon) {
  3635. pr_info("MII link monitoring set to %d ms\n", miimon);
  3636. } else if (arp_interval) {
  3637. valptr = bond_opt_get_val(BOND_OPT_ARP_VALIDATE,
  3638. arp_validate_value);
  3639. pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
  3640. arp_interval, valptr->string, arp_ip_count);
  3641. for (i = 0; i < arp_ip_count; i++)
  3642. pr_cont(" %s", arp_ip_target[i]);
  3643. pr_cont("\n");
  3644. } else if (max_bonds) {
  3645. /* miimon and arp_interval not set, we need one so things
  3646. * work as expected, see bonding.txt for details
  3647. */
  3648. pr_debug("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details\n");
  3649. }
  3650. if (primary && !bond_mode_uses_primary(bond_mode)) {
  3651. /* currently, using a primary only makes sense
  3652. * in active backup, TLB or ALB modes
  3653. */
  3654. pr_warn("Warning: %s primary device specified but has no effect in %s mode\n",
  3655. primary, bond_mode_name(bond_mode));
  3656. primary = NULL;
  3657. }
  3658. if (primary && primary_reselect) {
  3659. bond_opt_initstr(&newval, primary_reselect);
  3660. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_PRIMARY_RESELECT),
  3661. &newval);
  3662. if (!valptr) {
  3663. pr_err("Error: Invalid primary_reselect \"%s\"\n",
  3664. primary_reselect);
  3665. return -EINVAL;
  3666. }
  3667. primary_reselect_value = valptr->value;
  3668. } else {
  3669. primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
  3670. }
  3671. if (fail_over_mac) {
  3672. bond_opt_initstr(&newval, fail_over_mac);
  3673. valptr = bond_opt_parse(bond_opt_get(BOND_OPT_FAIL_OVER_MAC),
  3674. &newval);
  3675. if (!valptr) {
  3676. pr_err("Error: invalid fail_over_mac \"%s\"\n",
  3677. fail_over_mac);
  3678. return -EINVAL;
  3679. }
  3680. fail_over_mac_value = valptr->value;
  3681. if (bond_mode != BOND_MODE_ACTIVEBACKUP)
  3682. pr_warn("Warning: fail_over_mac only affects active-backup mode\n");
  3683. } else {
  3684. fail_over_mac_value = BOND_FOM_NONE;
  3685. }
  3686. if (lp_interval == 0) {
  3687. pr_warn("Warning: ip_interval must be between 1 and %d, so it was reset to %d\n",
  3688. INT_MAX, BOND_ALB_DEFAULT_LP_INTERVAL);
  3689. lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL;
  3690. }
  3691. /* fill params struct with the proper values */
  3692. params->mode = bond_mode;
  3693. params->xmit_policy = xmit_hashtype;
  3694. params->miimon = miimon;
  3695. params->num_peer_notif = num_peer_notif;
  3696. params->arp_interval = arp_interval;
  3697. params->arp_validate = arp_validate_value;
  3698. params->arp_all_targets = arp_all_targets_value;
  3699. params->updelay = updelay;
  3700. params->downdelay = downdelay;
  3701. params->use_carrier = use_carrier;
  3702. params->lacp_fast = lacp_fast;
  3703. params->primary[0] = 0;
  3704. params->primary_reselect = primary_reselect_value;
  3705. params->fail_over_mac = fail_over_mac_value;
  3706. params->tx_queues = tx_queues;
  3707. params->all_slaves_active = all_slaves_active;
  3708. params->resend_igmp = resend_igmp;
  3709. params->min_links = min_links;
  3710. params->lp_interval = lp_interval;
  3711. params->packets_per_slave = packets_per_slave;
  3712. params->tlb_dynamic_lb = 1; /* Default value */
  3713. if (packets_per_slave > 0) {
  3714. params->reciprocal_packets_per_slave =
  3715. reciprocal_value(packets_per_slave);
  3716. } else {
  3717. /* reciprocal_packets_per_slave is unused if
  3718. * packets_per_slave is 0 or 1, just initialize it
  3719. */
  3720. params->reciprocal_packets_per_slave =
  3721. (struct reciprocal_value) { 0 };
  3722. }
  3723. if (primary) {
  3724. strncpy(params->primary, primary, IFNAMSIZ);
  3725. params->primary[IFNAMSIZ - 1] = 0;
  3726. }
  3727. memcpy(params->arp_targets, arp_target, sizeof(arp_target));
  3728. return 0;
  3729. }
  3730. static struct lock_class_key bonding_netdev_xmit_lock_key;
  3731. static struct lock_class_key bonding_netdev_addr_lock_key;
  3732. static struct lock_class_key bonding_tx_busylock_key;
  3733. static void bond_set_lockdep_class_one(struct net_device *dev,
  3734. struct netdev_queue *txq,
  3735. void *_unused)
  3736. {
  3737. lockdep_set_class(&txq->_xmit_lock,
  3738. &bonding_netdev_xmit_lock_key);
  3739. }
  3740. static void bond_set_lockdep_class(struct net_device *dev)
  3741. {
  3742. lockdep_set_class(&dev->addr_list_lock,
  3743. &bonding_netdev_addr_lock_key);
  3744. netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
  3745. dev->qdisc_tx_busylock = &bonding_tx_busylock_key;
  3746. }
  3747. /* Called from registration process */
  3748. static int bond_init(struct net_device *bond_dev)
  3749. {
  3750. struct bonding *bond = netdev_priv(bond_dev);
  3751. struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
  3752. netdev_dbg(bond_dev, "Begin bond_init\n");
  3753. bond->wq = create_singlethread_workqueue(bond_dev->name);
  3754. if (!bond->wq)
  3755. return -ENOMEM;
  3756. bond_set_lockdep_class(bond_dev);
  3757. list_add_tail(&bond->bond_list, &bn->dev_list);
  3758. bond_prepare_sysfs_group(bond);
  3759. bond_debug_register(bond);
  3760. /* Ensure valid dev_addr */
  3761. if (is_zero_ether_addr(bond_dev->dev_addr) &&
  3762. bond_dev->addr_assign_type == NET_ADDR_PERM)
  3763. eth_hw_addr_random(bond_dev);
  3764. return 0;
  3765. }
  3766. unsigned int bond_get_num_tx_queues(void)
  3767. {
  3768. return tx_queues;
  3769. }
  3770. /* Create a new bond based on the specified name and bonding parameters.
  3771. * If name is NULL, obtain a suitable "bond%d" name for us.
  3772. * Caller must NOT hold rtnl_lock; we need to release it here before we
  3773. * set up our sysfs entries.
  3774. */
  3775. int bond_create(struct net *net, const char *name)
  3776. {
  3777. struct net_device *bond_dev;
  3778. int res;
  3779. rtnl_lock();
  3780. bond_dev = alloc_netdev_mq(sizeof(struct bonding),
  3781. name ? name : "bond%d", NET_NAME_UNKNOWN,
  3782. bond_setup, tx_queues);
  3783. if (!bond_dev) {
  3784. pr_err("%s: eek! can't alloc netdev!\n", name);
  3785. rtnl_unlock();
  3786. return -ENOMEM;
  3787. }
  3788. dev_net_set(bond_dev, net);
  3789. bond_dev->rtnl_link_ops = &bond_link_ops;
  3790. res = register_netdevice(bond_dev);
  3791. netif_carrier_off(bond_dev);
  3792. rtnl_unlock();
  3793. if (res < 0)
  3794. bond_destructor(bond_dev);
  3795. return res;
  3796. }
  3797. static int __net_init bond_net_init(struct net *net)
  3798. {
  3799. struct bond_net *bn = net_generic(net, bond_net_id);
  3800. bn->net = net;
  3801. INIT_LIST_HEAD(&bn->dev_list);
  3802. bond_create_proc_dir(bn);
  3803. bond_create_sysfs(bn);
  3804. return 0;
  3805. }
  3806. static void __net_exit bond_net_exit(struct net *net)
  3807. {
  3808. struct bond_net *bn = net_generic(net, bond_net_id);
  3809. struct bonding *bond, *tmp_bond;
  3810. LIST_HEAD(list);
  3811. bond_destroy_sysfs(bn);
  3812. /* Kill off any bonds created after unregistering bond rtnl ops */
  3813. rtnl_lock();
  3814. list_for_each_entry_safe(bond, tmp_bond, &bn->dev_list, bond_list)
  3815. unregister_netdevice_queue(bond->dev, &list);
  3816. unregister_netdevice_many(&list);
  3817. rtnl_unlock();
  3818. bond_destroy_proc_dir(bn);
  3819. }
  3820. static struct pernet_operations bond_net_ops = {
  3821. .init = bond_net_init,
  3822. .exit = bond_net_exit,
  3823. .id = &bond_net_id,
  3824. .size = sizeof(struct bond_net),
  3825. };
  3826. static int __init bonding_init(void)
  3827. {
  3828. int i;
  3829. int res;
  3830. pr_info("%s", bond_version);
  3831. res = bond_check_params(&bonding_defaults);
  3832. if (res)
  3833. goto out;
  3834. res = register_pernet_subsys(&bond_net_ops);
  3835. if (res)
  3836. goto out;
  3837. res = bond_netlink_init();
  3838. if (res)
  3839. goto err_link;
  3840. bond_create_debugfs();
  3841. for (i = 0; i < max_bonds; i++) {
  3842. res = bond_create(&init_net, NULL);
  3843. if (res)
  3844. goto err;
  3845. }
  3846. register_netdevice_notifier(&bond_netdev_notifier);
  3847. out:
  3848. return res;
  3849. err:
  3850. bond_destroy_debugfs();
  3851. bond_netlink_fini();
  3852. err_link:
  3853. unregister_pernet_subsys(&bond_net_ops);
  3854. goto out;
  3855. }
  3856. static void __exit bonding_exit(void)
  3857. {
  3858. unregister_netdevice_notifier(&bond_netdev_notifier);
  3859. bond_destroy_debugfs();
  3860. bond_netlink_fini();
  3861. unregister_pernet_subsys(&bond_net_ops);
  3862. #ifdef CONFIG_NET_POLL_CONTROLLER
  3863. /* Make sure we don't have an imbalance on our netpoll blocking */
  3864. WARN_ON(atomic_read(&netpoll_block_tx));
  3865. #endif
  3866. }
  3867. module_init(bonding_init);
  3868. module_exit(bonding_exit);
  3869. MODULE_LICENSE("GPL");
  3870. MODULE_VERSION(DRV_VERSION);
  3871. MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
  3872. MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");