bond_main.c 133 KB

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