bond_main.c 129 KB

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