bond_main.c 137 KB

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