bond_main.c 132 KB

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