addrconf.c 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869
  1. /*
  2. * IPv6 Address [auto]configuration
  3. * Linux INET6 implementation
  4. *
  5. * Authors:
  6. * Pedro Roque <roque@di.fc.ul.pt>
  7. * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. */
  14. /*
  15. * Changes:
  16. *
  17. * Janos Farkas : delete timer on ifdown
  18. * <chexum@bankinf.banki.hu>
  19. * Andi Kleen : kill double kfree on module
  20. * unload.
  21. * Maciej W. Rozycki : FDDI support
  22. * sekiya@USAGI : Don't send too many RS
  23. * packets.
  24. * yoshfuji@USAGI : Fixed interval between DAD
  25. * packets.
  26. * YOSHIFUJI Hideaki @USAGI : improved accuracy of
  27. * address validation timer.
  28. * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
  29. * support.
  30. * Yuji SEKIYA @USAGI : Don't assign a same IPv6
  31. * address on a same interface.
  32. * YOSHIFUJI Hideaki @USAGI : ARCnet support
  33. * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
  34. * seq_file.
  35. * YOSHIFUJI Hideaki @USAGI : improved source address
  36. * selection; consider scope,
  37. * status etc.
  38. */
  39. #include <linux/errno.h>
  40. #include <linux/types.h>
  41. #include <linux/kernel.h>
  42. #include <linux/socket.h>
  43. #include <linux/sockios.h>
  44. #include <linux/net.h>
  45. #include <linux/in6.h>
  46. #include <linux/netdevice.h>
  47. #include <linux/if_addr.h>
  48. #include <linux/if_arp.h>
  49. #include <linux/if_arcnet.h>
  50. #include <linux/if_infiniband.h>
  51. #include <linux/route.h>
  52. #include <linux/inetdevice.h>
  53. #include <linux/init.h>
  54. #include <linux/slab.h>
  55. #ifdef CONFIG_SYSCTL
  56. #include <linux/sysctl.h>
  57. #endif
  58. #include <linux/capability.h>
  59. #include <linux/delay.h>
  60. #include <linux/notifier.h>
  61. #include <linux/string.h>
  62. #include <net/net_namespace.h>
  63. #include <net/sock.h>
  64. #include <net/snmp.h>
  65. #include <net/af_ieee802154.h>
  66. #include <net/ipv6.h>
  67. #include <net/protocol.h>
  68. #include <net/ndisc.h>
  69. #include <net/ip6_route.h>
  70. #include <net/addrconf.h>
  71. #include <net/tcp.h>
  72. #include <net/ip.h>
  73. #include <net/netlink.h>
  74. #include <net/pkt_sched.h>
  75. #include <linux/if_tunnel.h>
  76. #include <linux/rtnetlink.h>
  77. #ifdef CONFIG_IPV6_PRIVACY
  78. #include <linux/random.h>
  79. #endif
  80. #include <linux/uaccess.h>
  81. #include <asm/unaligned.h>
  82. #include <linux/proc_fs.h>
  83. #include <linux/seq_file.h>
  84. #include <linux/export.h>
  85. /* Set to 3 to get tracing... */
  86. #define ACONF_DEBUG 2
  87. #if ACONF_DEBUG >= 3
  88. #define ADBG(x) printk x
  89. #else
  90. #define ADBG(x)
  91. #endif
  92. #define INFINITY_LIFE_TIME 0xFFFFFFFF
  93. static inline u32 cstamp_delta(unsigned long cstamp)
  94. {
  95. return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
  96. }
  97. #define ADDRCONF_TIMER_FUZZ_MINUS (HZ > 50 ? HZ/50 : 1)
  98. #define ADDRCONF_TIMER_FUZZ (HZ / 4)
  99. #define ADDRCONF_TIMER_FUZZ_MAX (HZ)
  100. #ifdef CONFIG_SYSCTL
  101. static void addrconf_sysctl_register(struct inet6_dev *idev);
  102. static void addrconf_sysctl_unregister(struct inet6_dev *idev);
  103. #else
  104. static inline void addrconf_sysctl_register(struct inet6_dev *idev)
  105. {
  106. }
  107. static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
  108. {
  109. }
  110. #endif
  111. #ifdef CONFIG_IPV6_PRIVACY
  112. static int __ipv6_regen_rndid(struct inet6_dev *idev);
  113. static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
  114. static void ipv6_regen_rndid(unsigned long data);
  115. #endif
  116. static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
  117. static int ipv6_count_addresses(struct inet6_dev *idev);
  118. /*
  119. * Configured unicast address hash table
  120. */
  121. static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
  122. static DEFINE_SPINLOCK(addrconf_hash_lock);
  123. static void addrconf_verify(unsigned long);
  124. static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
  125. static DEFINE_SPINLOCK(addrconf_verify_lock);
  126. static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
  127. static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
  128. static void addrconf_type_change(struct net_device *dev,
  129. unsigned long event);
  130. static int addrconf_ifdown(struct net_device *dev, int how);
  131. static void addrconf_dad_start(struct inet6_ifaddr *ifp);
  132. static void addrconf_dad_timer(unsigned long data);
  133. static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
  134. static void addrconf_dad_run(struct inet6_dev *idev);
  135. static void addrconf_rs_timer(unsigned long data);
  136. static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
  137. static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
  138. static void inet6_prefix_notify(int event, struct inet6_dev *idev,
  139. struct prefix_info *pinfo);
  140. static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
  141. struct net_device *dev);
  142. static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
  143. static struct ipv6_devconf ipv6_devconf __read_mostly = {
  144. .forwarding = 0,
  145. .hop_limit = IPV6_DEFAULT_HOPLIMIT,
  146. .mtu6 = IPV6_MIN_MTU,
  147. .accept_ra = 1,
  148. .accept_redirects = 1,
  149. .autoconf = 1,
  150. .force_mld_version = 0,
  151. .dad_transmits = 1,
  152. .rtr_solicits = MAX_RTR_SOLICITATIONS,
  153. .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
  154. .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
  155. #ifdef CONFIG_IPV6_PRIVACY
  156. .use_tempaddr = 0,
  157. .temp_valid_lft = TEMP_VALID_LIFETIME,
  158. .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
  159. .regen_max_retry = REGEN_MAX_RETRY,
  160. .max_desync_factor = MAX_DESYNC_FACTOR,
  161. #endif
  162. .max_addresses = IPV6_MAX_ADDRESSES,
  163. .accept_ra_defrtr = 1,
  164. .accept_ra_pinfo = 1,
  165. #ifdef CONFIG_IPV6_ROUTER_PREF
  166. .accept_ra_rtr_pref = 1,
  167. .rtr_probe_interval = 60 * HZ,
  168. #ifdef CONFIG_IPV6_ROUTE_INFO
  169. .accept_ra_rt_info_max_plen = 0,
  170. #endif
  171. #endif
  172. .proxy_ndp = 0,
  173. .accept_source_route = 0, /* we do not accept RH0 by default. */
  174. .disable_ipv6 = 0,
  175. .accept_dad = 1,
  176. };
  177. static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
  178. .forwarding = 0,
  179. .hop_limit = IPV6_DEFAULT_HOPLIMIT,
  180. .mtu6 = IPV6_MIN_MTU,
  181. .accept_ra = 1,
  182. .accept_redirects = 1,
  183. .autoconf = 1,
  184. .dad_transmits = 1,
  185. .rtr_solicits = MAX_RTR_SOLICITATIONS,
  186. .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
  187. .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
  188. #ifdef CONFIG_IPV6_PRIVACY
  189. .use_tempaddr = 0,
  190. .temp_valid_lft = TEMP_VALID_LIFETIME,
  191. .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
  192. .regen_max_retry = REGEN_MAX_RETRY,
  193. .max_desync_factor = MAX_DESYNC_FACTOR,
  194. #endif
  195. .max_addresses = IPV6_MAX_ADDRESSES,
  196. .accept_ra_defrtr = 1,
  197. .accept_ra_pinfo = 1,
  198. #ifdef CONFIG_IPV6_ROUTER_PREF
  199. .accept_ra_rtr_pref = 1,
  200. .rtr_probe_interval = 60 * HZ,
  201. #ifdef CONFIG_IPV6_ROUTE_INFO
  202. .accept_ra_rt_info_max_plen = 0,
  203. #endif
  204. #endif
  205. .proxy_ndp = 0,
  206. .accept_source_route = 0, /* we do not accept RH0 by default. */
  207. .disable_ipv6 = 0,
  208. .accept_dad = 1,
  209. };
  210. /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
  211. const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
  212. const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
  213. const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
  214. const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
  215. /* Check if a valid qdisc is available */
  216. static inline bool addrconf_qdisc_ok(const struct net_device *dev)
  217. {
  218. return !qdisc_tx_is_noop(dev);
  219. }
  220. /* Check if a route is valid prefix route */
  221. static inline int addrconf_is_prefix_route(const struct rt6_info *rt)
  222. {
  223. return (rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0;
  224. }
  225. static void addrconf_del_timer(struct inet6_ifaddr *ifp)
  226. {
  227. if (del_timer(&ifp->timer))
  228. __in6_ifa_put(ifp);
  229. }
  230. enum addrconf_timer_t {
  231. AC_NONE,
  232. AC_DAD,
  233. AC_RS,
  234. };
  235. static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
  236. enum addrconf_timer_t what,
  237. unsigned long when)
  238. {
  239. if (!del_timer(&ifp->timer))
  240. in6_ifa_hold(ifp);
  241. switch (what) {
  242. case AC_DAD:
  243. ifp->timer.function = addrconf_dad_timer;
  244. break;
  245. case AC_RS:
  246. ifp->timer.function = addrconf_rs_timer;
  247. break;
  248. default:
  249. break;
  250. }
  251. ifp->timer.expires = jiffies + when;
  252. add_timer(&ifp->timer);
  253. }
  254. static int snmp6_alloc_dev(struct inet6_dev *idev)
  255. {
  256. if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
  257. sizeof(struct ipstats_mib),
  258. __alignof__(struct ipstats_mib)) < 0)
  259. goto err_ip;
  260. idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
  261. GFP_KERNEL);
  262. if (!idev->stats.icmpv6dev)
  263. goto err_icmp;
  264. idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
  265. GFP_KERNEL);
  266. if (!idev->stats.icmpv6msgdev)
  267. goto err_icmpmsg;
  268. return 0;
  269. err_icmpmsg:
  270. kfree(idev->stats.icmpv6dev);
  271. err_icmp:
  272. snmp_mib_free((void __percpu **)idev->stats.ipv6);
  273. err_ip:
  274. return -ENOMEM;
  275. }
  276. static void snmp6_free_dev(struct inet6_dev *idev)
  277. {
  278. kfree(idev->stats.icmpv6msgdev);
  279. kfree(idev->stats.icmpv6dev);
  280. snmp_mib_free((void __percpu **)idev->stats.ipv6);
  281. }
  282. /* Nobody refers to this device, we may destroy it. */
  283. void in6_dev_finish_destroy(struct inet6_dev *idev)
  284. {
  285. struct net_device *dev = idev->dev;
  286. WARN_ON(!list_empty(&idev->addr_list));
  287. WARN_ON(idev->mc_list != NULL);
  288. #ifdef NET_REFCNT_DEBUG
  289. printk(KERN_DEBUG "in6_dev_finish_destroy: %s\n", dev ? dev->name : "NIL");
  290. #endif
  291. dev_put(dev);
  292. if (!idev->dead) {
  293. pr_warning("Freeing alive inet6 device %p\n", idev);
  294. return;
  295. }
  296. snmp6_free_dev(idev);
  297. kfree_rcu(idev, rcu);
  298. }
  299. EXPORT_SYMBOL(in6_dev_finish_destroy);
  300. static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
  301. {
  302. struct inet6_dev *ndev;
  303. ASSERT_RTNL();
  304. if (dev->mtu < IPV6_MIN_MTU)
  305. return NULL;
  306. ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
  307. if (ndev == NULL)
  308. return NULL;
  309. rwlock_init(&ndev->lock);
  310. ndev->dev = dev;
  311. INIT_LIST_HEAD(&ndev->addr_list);
  312. memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
  313. ndev->cnf.mtu6 = dev->mtu;
  314. ndev->cnf.sysctl = NULL;
  315. ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
  316. if (ndev->nd_parms == NULL) {
  317. kfree(ndev);
  318. return NULL;
  319. }
  320. if (ndev->cnf.forwarding)
  321. dev_disable_lro(dev);
  322. /* We refer to the device */
  323. dev_hold(dev);
  324. if (snmp6_alloc_dev(ndev) < 0) {
  325. ADBG((KERN_WARNING
  326. "%s(): cannot allocate memory for statistics; dev=%s.\n",
  327. __func__, dev->name));
  328. neigh_parms_release(&nd_tbl, ndev->nd_parms);
  329. dev_put(dev);
  330. kfree(ndev);
  331. return NULL;
  332. }
  333. if (snmp6_register_dev(ndev) < 0) {
  334. ADBG((KERN_WARNING
  335. "%s(): cannot create /proc/net/dev_snmp6/%s\n",
  336. __func__, dev->name));
  337. neigh_parms_release(&nd_tbl, ndev->nd_parms);
  338. ndev->dead = 1;
  339. in6_dev_finish_destroy(ndev);
  340. return NULL;
  341. }
  342. /* One reference from device. We must do this before
  343. * we invoke __ipv6_regen_rndid().
  344. */
  345. in6_dev_hold(ndev);
  346. if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
  347. ndev->cnf.accept_dad = -1;
  348. #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
  349. if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
  350. printk(KERN_INFO
  351. "%s: Disabled Multicast RS\n",
  352. dev->name);
  353. ndev->cnf.rtr_solicits = 0;
  354. }
  355. #endif
  356. #ifdef CONFIG_IPV6_PRIVACY
  357. INIT_LIST_HEAD(&ndev->tempaddr_list);
  358. setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
  359. if ((dev->flags&IFF_LOOPBACK) ||
  360. dev->type == ARPHRD_TUNNEL ||
  361. dev->type == ARPHRD_TUNNEL6 ||
  362. dev->type == ARPHRD_SIT ||
  363. dev->type == ARPHRD_NONE) {
  364. ndev->cnf.use_tempaddr = -1;
  365. } else {
  366. in6_dev_hold(ndev);
  367. ipv6_regen_rndid((unsigned long) ndev);
  368. }
  369. #endif
  370. if (netif_running(dev) && addrconf_qdisc_ok(dev))
  371. ndev->if_flags |= IF_READY;
  372. ipv6_mc_init_dev(ndev);
  373. ndev->tstamp = jiffies;
  374. addrconf_sysctl_register(ndev);
  375. /* protected by rtnl_lock */
  376. rcu_assign_pointer(dev->ip6_ptr, ndev);
  377. /* Join all-node multicast group */
  378. ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
  379. /* Join all-router multicast group if forwarding is set */
  380. if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
  381. ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
  382. return ndev;
  383. }
  384. static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
  385. {
  386. struct inet6_dev *idev;
  387. ASSERT_RTNL();
  388. idev = __in6_dev_get(dev);
  389. if (!idev) {
  390. idev = ipv6_add_dev(dev);
  391. if (!idev)
  392. return NULL;
  393. }
  394. if (dev->flags&IFF_UP)
  395. ipv6_mc_up(idev);
  396. return idev;
  397. }
  398. #ifdef CONFIG_SYSCTL
  399. static void dev_forward_change(struct inet6_dev *idev)
  400. {
  401. struct net_device *dev;
  402. struct inet6_ifaddr *ifa;
  403. if (!idev)
  404. return;
  405. dev = idev->dev;
  406. if (idev->cnf.forwarding)
  407. dev_disable_lro(dev);
  408. if (dev && (dev->flags & IFF_MULTICAST)) {
  409. if (idev->cnf.forwarding)
  410. ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
  411. else
  412. ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
  413. }
  414. list_for_each_entry(ifa, &idev->addr_list, if_list) {
  415. if (ifa->flags&IFA_F_TENTATIVE)
  416. continue;
  417. if (idev->cnf.forwarding)
  418. addrconf_join_anycast(ifa);
  419. else
  420. addrconf_leave_anycast(ifa);
  421. }
  422. }
  423. static void addrconf_forward_change(struct net *net, __s32 newf)
  424. {
  425. struct net_device *dev;
  426. struct inet6_dev *idev;
  427. rcu_read_lock();
  428. for_each_netdev_rcu(net, dev) {
  429. idev = __in6_dev_get(dev);
  430. if (idev) {
  431. int changed = (!idev->cnf.forwarding) ^ (!newf);
  432. idev->cnf.forwarding = newf;
  433. if (changed)
  434. dev_forward_change(idev);
  435. }
  436. }
  437. rcu_read_unlock();
  438. }
  439. static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
  440. {
  441. struct net *net;
  442. int old;
  443. if (!rtnl_trylock())
  444. return restart_syscall();
  445. net = (struct net *)table->extra2;
  446. old = *p;
  447. *p = newf;
  448. if (p == &net->ipv6.devconf_dflt->forwarding) {
  449. rtnl_unlock();
  450. return 0;
  451. }
  452. if (p == &net->ipv6.devconf_all->forwarding) {
  453. net->ipv6.devconf_dflt->forwarding = newf;
  454. addrconf_forward_change(net, newf);
  455. } else if ((!newf) ^ (!old))
  456. dev_forward_change((struct inet6_dev *)table->extra1);
  457. rtnl_unlock();
  458. if (newf)
  459. rt6_purge_dflt_routers(net);
  460. return 1;
  461. }
  462. #endif
  463. /* Nobody refers to this ifaddr, destroy it */
  464. void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
  465. {
  466. WARN_ON(!hlist_unhashed(&ifp->addr_lst));
  467. #ifdef NET_REFCNT_DEBUG
  468. printk(KERN_DEBUG "inet6_ifa_finish_destroy\n");
  469. #endif
  470. in6_dev_put(ifp->idev);
  471. if (del_timer(&ifp->timer))
  472. pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
  473. if (ifp->state != INET6_IFADDR_STATE_DEAD) {
  474. pr_warning("Freeing alive inet6 address %p\n", ifp);
  475. return;
  476. }
  477. dst_release(&ifp->rt->dst);
  478. kfree_rcu(ifp, rcu);
  479. }
  480. static void
  481. ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
  482. {
  483. struct list_head *p;
  484. int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
  485. /*
  486. * Each device address list is sorted in order of scope -
  487. * global before linklocal.
  488. */
  489. list_for_each(p, &idev->addr_list) {
  490. struct inet6_ifaddr *ifa
  491. = list_entry(p, struct inet6_ifaddr, if_list);
  492. if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
  493. break;
  494. }
  495. list_add_tail(&ifp->if_list, p);
  496. }
  497. static u32 ipv6_addr_hash(const struct in6_addr *addr)
  498. {
  499. /*
  500. * We perform the hash function over the last 64 bits of the address
  501. * This will include the IEEE address token on links that support it.
  502. */
  503. return jhash_2words((__force u32)addr->s6_addr32[2],
  504. (__force u32)addr->s6_addr32[3], 0)
  505. & (IN6_ADDR_HSIZE - 1);
  506. }
  507. /* On success it returns ifp with increased reference count */
  508. static struct inet6_ifaddr *
  509. ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
  510. int scope, u32 flags)
  511. {
  512. struct inet6_ifaddr *ifa = NULL;
  513. struct rt6_info *rt;
  514. unsigned int hash;
  515. int err = 0;
  516. int addr_type = ipv6_addr_type(addr);
  517. if (addr_type == IPV6_ADDR_ANY ||
  518. addr_type & IPV6_ADDR_MULTICAST ||
  519. (!(idev->dev->flags & IFF_LOOPBACK) &&
  520. addr_type & IPV6_ADDR_LOOPBACK))
  521. return ERR_PTR(-EADDRNOTAVAIL);
  522. rcu_read_lock_bh();
  523. if (idev->dead) {
  524. err = -ENODEV; /*XXX*/
  525. goto out2;
  526. }
  527. if (idev->cnf.disable_ipv6) {
  528. err = -EACCES;
  529. goto out2;
  530. }
  531. spin_lock(&addrconf_hash_lock);
  532. /* Ignore adding duplicate addresses on an interface */
  533. if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
  534. ADBG(("ipv6_add_addr: already assigned\n"));
  535. err = -EEXIST;
  536. goto out;
  537. }
  538. ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
  539. if (ifa == NULL) {
  540. ADBG(("ipv6_add_addr: malloc failed\n"));
  541. err = -ENOBUFS;
  542. goto out;
  543. }
  544. rt = addrconf_dst_alloc(idev, addr, false);
  545. if (IS_ERR(rt)) {
  546. err = PTR_ERR(rt);
  547. goto out;
  548. }
  549. ifa->addr = *addr;
  550. spin_lock_init(&ifa->lock);
  551. spin_lock_init(&ifa->state_lock);
  552. init_timer(&ifa->timer);
  553. INIT_HLIST_NODE(&ifa->addr_lst);
  554. ifa->timer.data = (unsigned long) ifa;
  555. ifa->scope = scope;
  556. ifa->prefix_len = pfxlen;
  557. ifa->flags = flags | IFA_F_TENTATIVE;
  558. ifa->cstamp = ifa->tstamp = jiffies;
  559. ifa->rt = rt;
  560. ifa->idev = idev;
  561. in6_dev_hold(idev);
  562. /* For caller */
  563. in6_ifa_hold(ifa);
  564. /* Add to big hash table */
  565. hash = ipv6_addr_hash(addr);
  566. hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
  567. spin_unlock(&addrconf_hash_lock);
  568. write_lock(&idev->lock);
  569. /* Add to inet6_dev unicast addr list. */
  570. ipv6_link_dev_addr(idev, ifa);
  571. #ifdef CONFIG_IPV6_PRIVACY
  572. if (ifa->flags&IFA_F_TEMPORARY) {
  573. list_add(&ifa->tmp_list, &idev->tempaddr_list);
  574. in6_ifa_hold(ifa);
  575. }
  576. #endif
  577. in6_ifa_hold(ifa);
  578. write_unlock(&idev->lock);
  579. out2:
  580. rcu_read_unlock_bh();
  581. if (likely(err == 0))
  582. atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
  583. else {
  584. kfree(ifa);
  585. ifa = ERR_PTR(err);
  586. }
  587. return ifa;
  588. out:
  589. spin_unlock(&addrconf_hash_lock);
  590. goto out2;
  591. }
  592. /* This function wants to get referenced ifp and releases it before return */
  593. static void ipv6_del_addr(struct inet6_ifaddr *ifp)
  594. {
  595. struct inet6_ifaddr *ifa, *ifn;
  596. struct inet6_dev *idev = ifp->idev;
  597. int state;
  598. int deleted = 0, onlink = 0;
  599. unsigned long expires = jiffies;
  600. spin_lock_bh(&ifp->state_lock);
  601. state = ifp->state;
  602. ifp->state = INET6_IFADDR_STATE_DEAD;
  603. spin_unlock_bh(&ifp->state_lock);
  604. if (state == INET6_IFADDR_STATE_DEAD)
  605. goto out;
  606. spin_lock_bh(&addrconf_hash_lock);
  607. hlist_del_init_rcu(&ifp->addr_lst);
  608. spin_unlock_bh(&addrconf_hash_lock);
  609. write_lock_bh(&idev->lock);
  610. #ifdef CONFIG_IPV6_PRIVACY
  611. if (ifp->flags&IFA_F_TEMPORARY) {
  612. list_del(&ifp->tmp_list);
  613. if (ifp->ifpub) {
  614. in6_ifa_put(ifp->ifpub);
  615. ifp->ifpub = NULL;
  616. }
  617. __in6_ifa_put(ifp);
  618. }
  619. #endif
  620. list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
  621. if (ifa == ifp) {
  622. list_del_init(&ifp->if_list);
  623. __in6_ifa_put(ifp);
  624. if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
  625. break;
  626. deleted = 1;
  627. continue;
  628. } else if (ifp->flags & IFA_F_PERMANENT) {
  629. if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
  630. ifp->prefix_len)) {
  631. if (ifa->flags & IFA_F_PERMANENT) {
  632. onlink = 1;
  633. if (deleted)
  634. break;
  635. } else {
  636. unsigned long lifetime;
  637. if (!onlink)
  638. onlink = -1;
  639. spin_lock(&ifa->lock);
  640. lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
  641. /*
  642. * Note: Because this address is
  643. * not permanent, lifetime <
  644. * LONG_MAX / HZ here.
  645. */
  646. if (time_before(expires,
  647. ifa->tstamp + lifetime * HZ))
  648. expires = ifa->tstamp + lifetime * HZ;
  649. spin_unlock(&ifa->lock);
  650. }
  651. }
  652. }
  653. }
  654. write_unlock_bh(&idev->lock);
  655. addrconf_del_timer(ifp);
  656. ipv6_ifa_notify(RTM_DELADDR, ifp);
  657. atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
  658. /*
  659. * Purge or update corresponding prefix
  660. *
  661. * 1) we don't purge prefix here if address was not permanent.
  662. * prefix is managed by its own lifetime.
  663. * 2) if there're no addresses, delete prefix.
  664. * 3) if there're still other permanent address(es),
  665. * corresponding prefix is still permanent.
  666. * 4) otherwise, update prefix lifetime to the
  667. * longest valid lifetime among the corresponding
  668. * addresses on the device.
  669. * Note: subsequent RA will update lifetime.
  670. *
  671. * --yoshfuji
  672. */
  673. if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
  674. struct in6_addr prefix;
  675. struct rt6_info *rt;
  676. struct net *net = dev_net(ifp->idev->dev);
  677. ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
  678. rt = rt6_lookup(net, &prefix, NULL, ifp->idev->dev->ifindex, 1);
  679. if (rt && addrconf_is_prefix_route(rt)) {
  680. if (onlink == 0) {
  681. ip6_del_rt(rt);
  682. rt = NULL;
  683. } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
  684. rt6_set_expires(rt, expires);
  685. }
  686. }
  687. dst_release(&rt->dst);
  688. }
  689. /* clean up prefsrc entries */
  690. rt6_remove_prefsrc(ifp);
  691. out:
  692. in6_ifa_put(ifp);
  693. }
  694. #ifdef CONFIG_IPV6_PRIVACY
  695. static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
  696. {
  697. struct inet6_dev *idev = ifp->idev;
  698. struct in6_addr addr, *tmpaddr;
  699. unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
  700. unsigned long regen_advance;
  701. int tmp_plen;
  702. int ret = 0;
  703. int max_addresses;
  704. u32 addr_flags;
  705. unsigned long now = jiffies;
  706. write_lock(&idev->lock);
  707. if (ift) {
  708. spin_lock_bh(&ift->lock);
  709. memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
  710. spin_unlock_bh(&ift->lock);
  711. tmpaddr = &addr;
  712. } else {
  713. tmpaddr = NULL;
  714. }
  715. retry:
  716. in6_dev_hold(idev);
  717. if (idev->cnf.use_tempaddr <= 0) {
  718. write_unlock(&idev->lock);
  719. printk(KERN_INFO
  720. "ipv6_create_tempaddr(): use_tempaddr is disabled.\n");
  721. in6_dev_put(idev);
  722. ret = -1;
  723. goto out;
  724. }
  725. spin_lock_bh(&ifp->lock);
  726. if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
  727. idev->cnf.use_tempaddr = -1; /*XXX*/
  728. spin_unlock_bh(&ifp->lock);
  729. write_unlock(&idev->lock);
  730. printk(KERN_WARNING
  731. "ipv6_create_tempaddr(): regeneration time exceeded. disabled temporary address support.\n");
  732. in6_dev_put(idev);
  733. ret = -1;
  734. goto out;
  735. }
  736. in6_ifa_hold(ifp);
  737. memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
  738. if (__ipv6_try_regen_rndid(idev, tmpaddr) < 0) {
  739. spin_unlock_bh(&ifp->lock);
  740. write_unlock(&idev->lock);
  741. printk(KERN_WARNING
  742. "ipv6_create_tempaddr(): regeneration of randomized interface id failed.\n");
  743. in6_ifa_put(ifp);
  744. in6_dev_put(idev);
  745. ret = -1;
  746. goto out;
  747. }
  748. memcpy(&addr.s6_addr[8], idev->rndid, 8);
  749. age = (now - ifp->tstamp) / HZ;
  750. tmp_valid_lft = min_t(__u32,
  751. ifp->valid_lft,
  752. idev->cnf.temp_valid_lft + age);
  753. tmp_prefered_lft = min_t(__u32,
  754. ifp->prefered_lft,
  755. idev->cnf.temp_prefered_lft + age -
  756. idev->cnf.max_desync_factor);
  757. tmp_plen = ifp->prefix_len;
  758. max_addresses = idev->cnf.max_addresses;
  759. tmp_tstamp = ifp->tstamp;
  760. spin_unlock_bh(&ifp->lock);
  761. regen_advance = idev->cnf.regen_max_retry *
  762. idev->cnf.dad_transmits *
  763. idev->nd_parms->retrans_time / HZ;
  764. write_unlock(&idev->lock);
  765. /* A temporary address is created only if this calculated Preferred
  766. * Lifetime is greater than REGEN_ADVANCE time units. In particular,
  767. * an implementation must not create a temporary address with a zero
  768. * Preferred Lifetime.
  769. */
  770. if (tmp_prefered_lft <= regen_advance) {
  771. in6_ifa_put(ifp);
  772. in6_dev_put(idev);
  773. ret = -1;
  774. goto out;
  775. }
  776. addr_flags = IFA_F_TEMPORARY;
  777. /* set in addrconf_prefix_rcv() */
  778. if (ifp->flags & IFA_F_OPTIMISTIC)
  779. addr_flags |= IFA_F_OPTIMISTIC;
  780. ift = !max_addresses ||
  781. ipv6_count_addresses(idev) < max_addresses ?
  782. ipv6_add_addr(idev, &addr, tmp_plen,
  783. ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
  784. addr_flags) : NULL;
  785. if (!ift || IS_ERR(ift)) {
  786. in6_ifa_put(ifp);
  787. in6_dev_put(idev);
  788. printk(KERN_INFO
  789. "ipv6_create_tempaddr(): retry temporary address regeneration.\n");
  790. tmpaddr = &addr;
  791. write_lock(&idev->lock);
  792. goto retry;
  793. }
  794. spin_lock_bh(&ift->lock);
  795. ift->ifpub = ifp;
  796. ift->valid_lft = tmp_valid_lft;
  797. ift->prefered_lft = tmp_prefered_lft;
  798. ift->cstamp = now;
  799. ift->tstamp = tmp_tstamp;
  800. spin_unlock_bh(&ift->lock);
  801. addrconf_dad_start(ift);
  802. in6_ifa_put(ift);
  803. in6_dev_put(idev);
  804. out:
  805. return ret;
  806. }
  807. #endif
  808. /*
  809. * Choose an appropriate source address (RFC3484)
  810. */
  811. enum {
  812. IPV6_SADDR_RULE_INIT = 0,
  813. IPV6_SADDR_RULE_LOCAL,
  814. IPV6_SADDR_RULE_SCOPE,
  815. IPV6_SADDR_RULE_PREFERRED,
  816. #ifdef CONFIG_IPV6_MIP6
  817. IPV6_SADDR_RULE_HOA,
  818. #endif
  819. IPV6_SADDR_RULE_OIF,
  820. IPV6_SADDR_RULE_LABEL,
  821. #ifdef CONFIG_IPV6_PRIVACY
  822. IPV6_SADDR_RULE_PRIVACY,
  823. #endif
  824. IPV6_SADDR_RULE_ORCHID,
  825. IPV6_SADDR_RULE_PREFIX,
  826. IPV6_SADDR_RULE_MAX
  827. };
  828. struct ipv6_saddr_score {
  829. int rule;
  830. int addr_type;
  831. struct inet6_ifaddr *ifa;
  832. DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
  833. int scopedist;
  834. int matchlen;
  835. };
  836. struct ipv6_saddr_dst {
  837. const struct in6_addr *addr;
  838. int ifindex;
  839. int scope;
  840. int label;
  841. unsigned int prefs;
  842. };
  843. static inline int ipv6_saddr_preferred(int type)
  844. {
  845. if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
  846. return 1;
  847. return 0;
  848. }
  849. static int ipv6_get_saddr_eval(struct net *net,
  850. struct ipv6_saddr_score *score,
  851. struct ipv6_saddr_dst *dst,
  852. int i)
  853. {
  854. int ret;
  855. if (i <= score->rule) {
  856. switch (i) {
  857. case IPV6_SADDR_RULE_SCOPE:
  858. ret = score->scopedist;
  859. break;
  860. case IPV6_SADDR_RULE_PREFIX:
  861. ret = score->matchlen;
  862. break;
  863. default:
  864. ret = !!test_bit(i, score->scorebits);
  865. }
  866. goto out;
  867. }
  868. switch (i) {
  869. case IPV6_SADDR_RULE_INIT:
  870. /* Rule 0: remember if hiscore is not ready yet */
  871. ret = !!score->ifa;
  872. break;
  873. case IPV6_SADDR_RULE_LOCAL:
  874. /* Rule 1: Prefer same address */
  875. ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
  876. break;
  877. case IPV6_SADDR_RULE_SCOPE:
  878. /* Rule 2: Prefer appropriate scope
  879. *
  880. * ret
  881. * ^
  882. * -1 | d 15
  883. * ---+--+-+---> scope
  884. * |
  885. * | d is scope of the destination.
  886. * B-d | \
  887. * | \ <- smaller scope is better if
  888. * B-15 | \ if scope is enough for destinaion.
  889. * | ret = B - scope (-1 <= scope >= d <= 15).
  890. * d-C-1 | /
  891. * |/ <- greater is better
  892. * -C / if scope is not enough for destination.
  893. * /| ret = scope - C (-1 <= d < scope <= 15).
  894. *
  895. * d - C - 1 < B -15 (for all -1 <= d <= 15).
  896. * C > d + 14 - B >= 15 + 14 - B = 29 - B.
  897. * Assume B = 0 and we get C > 29.
  898. */
  899. ret = __ipv6_addr_src_scope(score->addr_type);
  900. if (ret >= dst->scope)
  901. ret = -ret;
  902. else
  903. ret -= 128; /* 30 is enough */
  904. score->scopedist = ret;
  905. break;
  906. case IPV6_SADDR_RULE_PREFERRED:
  907. /* Rule 3: Avoid deprecated and optimistic addresses */
  908. ret = ipv6_saddr_preferred(score->addr_type) ||
  909. !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
  910. break;
  911. #ifdef CONFIG_IPV6_MIP6
  912. case IPV6_SADDR_RULE_HOA:
  913. {
  914. /* Rule 4: Prefer home address */
  915. int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
  916. ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
  917. break;
  918. }
  919. #endif
  920. case IPV6_SADDR_RULE_OIF:
  921. /* Rule 5: Prefer outgoing interface */
  922. ret = (!dst->ifindex ||
  923. dst->ifindex == score->ifa->idev->dev->ifindex);
  924. break;
  925. case IPV6_SADDR_RULE_LABEL:
  926. /* Rule 6: Prefer matching label */
  927. ret = ipv6_addr_label(net,
  928. &score->ifa->addr, score->addr_type,
  929. score->ifa->idev->dev->ifindex) == dst->label;
  930. break;
  931. #ifdef CONFIG_IPV6_PRIVACY
  932. case IPV6_SADDR_RULE_PRIVACY:
  933. {
  934. /* Rule 7: Prefer public address
  935. * Note: prefer temporary address if use_tempaddr >= 2
  936. */
  937. int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
  938. !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
  939. score->ifa->idev->cnf.use_tempaddr >= 2;
  940. ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
  941. break;
  942. }
  943. #endif
  944. case IPV6_SADDR_RULE_ORCHID:
  945. /* Rule 8-: Prefer ORCHID vs ORCHID or
  946. * non-ORCHID vs non-ORCHID
  947. */
  948. ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
  949. ipv6_addr_orchid(dst->addr));
  950. break;
  951. case IPV6_SADDR_RULE_PREFIX:
  952. /* Rule 8: Use longest matching prefix */
  953. score->matchlen = ret = ipv6_addr_diff(&score->ifa->addr,
  954. dst->addr);
  955. break;
  956. default:
  957. ret = 0;
  958. }
  959. if (ret)
  960. __set_bit(i, score->scorebits);
  961. score->rule = i;
  962. out:
  963. return ret;
  964. }
  965. int ipv6_dev_get_saddr(struct net *net, struct net_device *dst_dev,
  966. const struct in6_addr *daddr, unsigned int prefs,
  967. struct in6_addr *saddr)
  968. {
  969. struct ipv6_saddr_score scores[2],
  970. *score = &scores[0], *hiscore = &scores[1];
  971. struct ipv6_saddr_dst dst;
  972. struct net_device *dev;
  973. int dst_type;
  974. dst_type = __ipv6_addr_type(daddr);
  975. dst.addr = daddr;
  976. dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
  977. dst.scope = __ipv6_addr_src_scope(dst_type);
  978. dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
  979. dst.prefs = prefs;
  980. hiscore->rule = -1;
  981. hiscore->ifa = NULL;
  982. rcu_read_lock();
  983. for_each_netdev_rcu(net, dev) {
  984. struct inet6_dev *idev;
  985. /* Candidate Source Address (section 4)
  986. * - multicast and link-local destination address,
  987. * the set of candidate source address MUST only
  988. * include addresses assigned to interfaces
  989. * belonging to the same link as the outgoing
  990. * interface.
  991. * (- For site-local destination addresses, the
  992. * set of candidate source addresses MUST only
  993. * include addresses assigned to interfaces
  994. * belonging to the same site as the outgoing
  995. * interface.)
  996. */
  997. if (((dst_type & IPV6_ADDR_MULTICAST) ||
  998. dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
  999. dst.ifindex && dev->ifindex != dst.ifindex)
  1000. continue;
  1001. idev = __in6_dev_get(dev);
  1002. if (!idev)
  1003. continue;
  1004. read_lock_bh(&idev->lock);
  1005. list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
  1006. int i;
  1007. /*
  1008. * - Tentative Address (RFC2462 section 5.4)
  1009. * - A tentative address is not considered
  1010. * "assigned to an interface" in the traditional
  1011. * sense, unless it is also flagged as optimistic.
  1012. * - Candidate Source Address (section 4)
  1013. * - In any case, anycast addresses, multicast
  1014. * addresses, and the unspecified address MUST
  1015. * NOT be included in a candidate set.
  1016. */
  1017. if ((score->ifa->flags & IFA_F_TENTATIVE) &&
  1018. (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
  1019. continue;
  1020. score->addr_type = __ipv6_addr_type(&score->ifa->addr);
  1021. if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
  1022. score->addr_type & IPV6_ADDR_MULTICAST)) {
  1023. LIMIT_NETDEBUG(KERN_DEBUG
  1024. "ADDRCONF: unspecified / multicast address "
  1025. "assigned as unicast address on %s",
  1026. dev->name);
  1027. continue;
  1028. }
  1029. score->rule = -1;
  1030. bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
  1031. for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
  1032. int minihiscore, miniscore;
  1033. minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
  1034. miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
  1035. if (minihiscore > miniscore) {
  1036. if (i == IPV6_SADDR_RULE_SCOPE &&
  1037. score->scopedist > 0) {
  1038. /*
  1039. * special case:
  1040. * each remaining entry
  1041. * has too small (not enough)
  1042. * scope, because ifa entries
  1043. * are sorted by their scope
  1044. * values.
  1045. */
  1046. goto try_nextdev;
  1047. }
  1048. break;
  1049. } else if (minihiscore < miniscore) {
  1050. if (hiscore->ifa)
  1051. in6_ifa_put(hiscore->ifa);
  1052. in6_ifa_hold(score->ifa);
  1053. swap(hiscore, score);
  1054. /* restore our iterator */
  1055. score->ifa = hiscore->ifa;
  1056. break;
  1057. }
  1058. }
  1059. }
  1060. try_nextdev:
  1061. read_unlock_bh(&idev->lock);
  1062. }
  1063. rcu_read_unlock();
  1064. if (!hiscore->ifa)
  1065. return -EADDRNOTAVAIL;
  1066. *saddr = hiscore->ifa->addr;
  1067. in6_ifa_put(hiscore->ifa);
  1068. return 0;
  1069. }
  1070. EXPORT_SYMBOL(ipv6_dev_get_saddr);
  1071. int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
  1072. unsigned char banned_flags)
  1073. {
  1074. struct inet6_dev *idev;
  1075. int err = -EADDRNOTAVAIL;
  1076. rcu_read_lock();
  1077. idev = __in6_dev_get(dev);
  1078. if (idev) {
  1079. struct inet6_ifaddr *ifp;
  1080. read_lock_bh(&idev->lock);
  1081. list_for_each_entry(ifp, &idev->addr_list, if_list) {
  1082. if (ifp->scope == IFA_LINK &&
  1083. !(ifp->flags & banned_flags)) {
  1084. *addr = ifp->addr;
  1085. err = 0;
  1086. break;
  1087. }
  1088. }
  1089. read_unlock_bh(&idev->lock);
  1090. }
  1091. rcu_read_unlock();
  1092. return err;
  1093. }
  1094. static int ipv6_count_addresses(struct inet6_dev *idev)
  1095. {
  1096. int cnt = 0;
  1097. struct inet6_ifaddr *ifp;
  1098. read_lock_bh(&idev->lock);
  1099. list_for_each_entry(ifp, &idev->addr_list, if_list)
  1100. cnt++;
  1101. read_unlock_bh(&idev->lock);
  1102. return cnt;
  1103. }
  1104. int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
  1105. struct net_device *dev, int strict)
  1106. {
  1107. struct inet6_ifaddr *ifp;
  1108. struct hlist_node *node;
  1109. unsigned int hash = ipv6_addr_hash(addr);
  1110. rcu_read_lock_bh();
  1111. hlist_for_each_entry_rcu(ifp, node, &inet6_addr_lst[hash], addr_lst) {
  1112. if (!net_eq(dev_net(ifp->idev->dev), net))
  1113. continue;
  1114. if (ipv6_addr_equal(&ifp->addr, addr) &&
  1115. !(ifp->flags&IFA_F_TENTATIVE) &&
  1116. (dev == NULL || ifp->idev->dev == dev ||
  1117. !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
  1118. rcu_read_unlock_bh();
  1119. return 1;
  1120. }
  1121. }
  1122. rcu_read_unlock_bh();
  1123. return 0;
  1124. }
  1125. EXPORT_SYMBOL(ipv6_chk_addr);
  1126. static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
  1127. struct net_device *dev)
  1128. {
  1129. unsigned int hash = ipv6_addr_hash(addr);
  1130. struct inet6_ifaddr *ifp;
  1131. struct hlist_node *node;
  1132. hlist_for_each_entry(ifp, node, &inet6_addr_lst[hash], addr_lst) {
  1133. if (!net_eq(dev_net(ifp->idev->dev), net))
  1134. continue;
  1135. if (ipv6_addr_equal(&ifp->addr, addr)) {
  1136. if (dev == NULL || ifp->idev->dev == dev)
  1137. return true;
  1138. }
  1139. }
  1140. return false;
  1141. }
  1142. int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
  1143. {
  1144. struct inet6_dev *idev;
  1145. struct inet6_ifaddr *ifa;
  1146. int onlink;
  1147. onlink = 0;
  1148. rcu_read_lock();
  1149. idev = __in6_dev_get(dev);
  1150. if (idev) {
  1151. read_lock_bh(&idev->lock);
  1152. list_for_each_entry(ifa, &idev->addr_list, if_list) {
  1153. onlink = ipv6_prefix_equal(addr, &ifa->addr,
  1154. ifa->prefix_len);
  1155. if (onlink)
  1156. break;
  1157. }
  1158. read_unlock_bh(&idev->lock);
  1159. }
  1160. rcu_read_unlock();
  1161. return onlink;
  1162. }
  1163. EXPORT_SYMBOL(ipv6_chk_prefix);
  1164. struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
  1165. struct net_device *dev, int strict)
  1166. {
  1167. struct inet6_ifaddr *ifp, *result = NULL;
  1168. unsigned int hash = ipv6_addr_hash(addr);
  1169. struct hlist_node *node;
  1170. rcu_read_lock_bh();
  1171. hlist_for_each_entry_rcu_bh(ifp, node, &inet6_addr_lst[hash], addr_lst) {
  1172. if (!net_eq(dev_net(ifp->idev->dev), net))
  1173. continue;
  1174. if (ipv6_addr_equal(&ifp->addr, addr)) {
  1175. if (dev == NULL || ifp->idev->dev == dev ||
  1176. !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
  1177. result = ifp;
  1178. in6_ifa_hold(ifp);
  1179. break;
  1180. }
  1181. }
  1182. }
  1183. rcu_read_unlock_bh();
  1184. return result;
  1185. }
  1186. /* Gets referenced address, destroys ifaddr */
  1187. static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
  1188. {
  1189. if (ifp->flags&IFA_F_PERMANENT) {
  1190. spin_lock_bh(&ifp->lock);
  1191. addrconf_del_timer(ifp);
  1192. ifp->flags |= IFA_F_TENTATIVE;
  1193. if (dad_failed)
  1194. ifp->flags |= IFA_F_DADFAILED;
  1195. spin_unlock_bh(&ifp->lock);
  1196. if (dad_failed)
  1197. ipv6_ifa_notify(0, ifp);
  1198. in6_ifa_put(ifp);
  1199. #ifdef CONFIG_IPV6_PRIVACY
  1200. } else if (ifp->flags&IFA_F_TEMPORARY) {
  1201. struct inet6_ifaddr *ifpub;
  1202. spin_lock_bh(&ifp->lock);
  1203. ifpub = ifp->ifpub;
  1204. if (ifpub) {
  1205. in6_ifa_hold(ifpub);
  1206. spin_unlock_bh(&ifp->lock);
  1207. ipv6_create_tempaddr(ifpub, ifp);
  1208. in6_ifa_put(ifpub);
  1209. } else {
  1210. spin_unlock_bh(&ifp->lock);
  1211. }
  1212. ipv6_del_addr(ifp);
  1213. #endif
  1214. } else
  1215. ipv6_del_addr(ifp);
  1216. }
  1217. static int addrconf_dad_end(struct inet6_ifaddr *ifp)
  1218. {
  1219. int err = -ENOENT;
  1220. spin_lock(&ifp->state_lock);
  1221. if (ifp->state == INET6_IFADDR_STATE_DAD) {
  1222. ifp->state = INET6_IFADDR_STATE_POSTDAD;
  1223. err = 0;
  1224. }
  1225. spin_unlock(&ifp->state_lock);
  1226. return err;
  1227. }
  1228. void addrconf_dad_failure(struct inet6_ifaddr *ifp)
  1229. {
  1230. struct inet6_dev *idev = ifp->idev;
  1231. if (addrconf_dad_end(ifp)) {
  1232. in6_ifa_put(ifp);
  1233. return;
  1234. }
  1235. if (net_ratelimit())
  1236. printk(KERN_INFO "%s: IPv6 duplicate address %pI6c detected!\n",
  1237. ifp->idev->dev->name, &ifp->addr);
  1238. if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
  1239. struct in6_addr addr;
  1240. addr.s6_addr32[0] = htonl(0xfe800000);
  1241. addr.s6_addr32[1] = 0;
  1242. if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
  1243. ipv6_addr_equal(&ifp->addr, &addr)) {
  1244. /* DAD failed for link-local based on MAC address */
  1245. idev->cnf.disable_ipv6 = 1;
  1246. printk(KERN_INFO "%s: IPv6 being disabled!\n",
  1247. ifp->idev->dev->name);
  1248. }
  1249. }
  1250. addrconf_dad_stop(ifp, 1);
  1251. }
  1252. /* Join to solicited addr multicast group. */
  1253. void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
  1254. {
  1255. struct in6_addr maddr;
  1256. if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
  1257. return;
  1258. addrconf_addr_solict_mult(addr, &maddr);
  1259. ipv6_dev_mc_inc(dev, &maddr);
  1260. }
  1261. void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
  1262. {
  1263. struct in6_addr maddr;
  1264. if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
  1265. return;
  1266. addrconf_addr_solict_mult(addr, &maddr);
  1267. __ipv6_dev_mc_dec(idev, &maddr);
  1268. }
  1269. static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
  1270. {
  1271. struct in6_addr addr;
  1272. if (ifp->prefix_len == 127) /* RFC 6164 */
  1273. return;
  1274. ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
  1275. if (ipv6_addr_any(&addr))
  1276. return;
  1277. ipv6_dev_ac_inc(ifp->idev->dev, &addr);
  1278. }
  1279. static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
  1280. {
  1281. struct in6_addr addr;
  1282. if (ifp->prefix_len == 127) /* RFC 6164 */
  1283. return;
  1284. ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
  1285. if (ipv6_addr_any(&addr))
  1286. return;
  1287. __ipv6_dev_ac_dec(ifp->idev, &addr);
  1288. }
  1289. static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
  1290. {
  1291. if (dev->addr_len != ETH_ALEN)
  1292. return -1;
  1293. memcpy(eui, dev->dev_addr, 3);
  1294. memcpy(eui + 5, dev->dev_addr + 3, 3);
  1295. /*
  1296. * The zSeries OSA network cards can be shared among various
  1297. * OS instances, but the OSA cards have only one MAC address.
  1298. * This leads to duplicate address conflicts in conjunction
  1299. * with IPv6 if more than one instance uses the same card.
  1300. *
  1301. * The driver for these cards can deliver a unique 16-bit
  1302. * identifier for each instance sharing the same card. It is
  1303. * placed instead of 0xFFFE in the interface identifier. The
  1304. * "u" bit of the interface identifier is not inverted in this
  1305. * case. Hence the resulting interface identifier has local
  1306. * scope according to RFC2373.
  1307. */
  1308. if (dev->dev_id) {
  1309. eui[3] = (dev->dev_id >> 8) & 0xFF;
  1310. eui[4] = dev->dev_id & 0xFF;
  1311. } else {
  1312. eui[3] = 0xFF;
  1313. eui[4] = 0xFE;
  1314. eui[0] ^= 2;
  1315. }
  1316. return 0;
  1317. }
  1318. static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
  1319. {
  1320. if (dev->addr_len != IEEE802154_ADDR_LEN)
  1321. return -1;
  1322. memcpy(eui, dev->dev_addr, 8);
  1323. return 0;
  1324. }
  1325. static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
  1326. {
  1327. /* XXX: inherit EUI-64 from other interface -- yoshfuji */
  1328. if (dev->addr_len != ARCNET_ALEN)
  1329. return -1;
  1330. memset(eui, 0, 7);
  1331. eui[7] = *(u8 *)dev->dev_addr;
  1332. return 0;
  1333. }
  1334. static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
  1335. {
  1336. if (dev->addr_len != INFINIBAND_ALEN)
  1337. return -1;
  1338. memcpy(eui, dev->dev_addr + 12, 8);
  1339. eui[0] |= 2;
  1340. return 0;
  1341. }
  1342. static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
  1343. {
  1344. if (addr == 0)
  1345. return -1;
  1346. eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
  1347. ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
  1348. ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
  1349. ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
  1350. ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
  1351. ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
  1352. eui[1] = 0;
  1353. eui[2] = 0x5E;
  1354. eui[3] = 0xFE;
  1355. memcpy(eui + 4, &addr, 4);
  1356. return 0;
  1357. }
  1358. static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
  1359. {
  1360. if (dev->priv_flags & IFF_ISATAP)
  1361. return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
  1362. return -1;
  1363. }
  1364. static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
  1365. {
  1366. return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
  1367. }
  1368. static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
  1369. {
  1370. switch (dev->type) {
  1371. case ARPHRD_ETHER:
  1372. case ARPHRD_FDDI:
  1373. case ARPHRD_IEEE802_TR:
  1374. return addrconf_ifid_eui48(eui, dev);
  1375. case ARPHRD_ARCNET:
  1376. return addrconf_ifid_arcnet(eui, dev);
  1377. case ARPHRD_INFINIBAND:
  1378. return addrconf_ifid_infiniband(eui, dev);
  1379. case ARPHRD_SIT:
  1380. return addrconf_ifid_sit(eui, dev);
  1381. case ARPHRD_IPGRE:
  1382. return addrconf_ifid_gre(eui, dev);
  1383. case ARPHRD_IEEE802154:
  1384. return addrconf_ifid_eui64(eui, dev);
  1385. }
  1386. return -1;
  1387. }
  1388. static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
  1389. {
  1390. int err = -1;
  1391. struct inet6_ifaddr *ifp;
  1392. read_lock_bh(&idev->lock);
  1393. list_for_each_entry(ifp, &idev->addr_list, if_list) {
  1394. if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
  1395. memcpy(eui, ifp->addr.s6_addr+8, 8);
  1396. err = 0;
  1397. break;
  1398. }
  1399. }
  1400. read_unlock_bh(&idev->lock);
  1401. return err;
  1402. }
  1403. #ifdef CONFIG_IPV6_PRIVACY
  1404. /* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
  1405. static int __ipv6_regen_rndid(struct inet6_dev *idev)
  1406. {
  1407. regen:
  1408. get_random_bytes(idev->rndid, sizeof(idev->rndid));
  1409. idev->rndid[0] &= ~0x02;
  1410. /*
  1411. * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
  1412. * check if generated address is not inappropriate
  1413. *
  1414. * - Reserved subnet anycast (RFC 2526)
  1415. * 11111101 11....11 1xxxxxxx
  1416. * - ISATAP (RFC4214) 6.1
  1417. * 00-00-5E-FE-xx-xx-xx-xx
  1418. * - value 0
  1419. * - XXX: already assigned to an address on the device
  1420. */
  1421. if (idev->rndid[0] == 0xfd &&
  1422. (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
  1423. (idev->rndid[7]&0x80))
  1424. goto regen;
  1425. if ((idev->rndid[0]|idev->rndid[1]) == 0) {
  1426. if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
  1427. goto regen;
  1428. if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
  1429. goto regen;
  1430. }
  1431. return 0;
  1432. }
  1433. static void ipv6_regen_rndid(unsigned long data)
  1434. {
  1435. struct inet6_dev *idev = (struct inet6_dev *) data;
  1436. unsigned long expires;
  1437. rcu_read_lock_bh();
  1438. write_lock_bh(&idev->lock);
  1439. if (idev->dead)
  1440. goto out;
  1441. if (__ipv6_regen_rndid(idev) < 0)
  1442. goto out;
  1443. expires = jiffies +
  1444. idev->cnf.temp_prefered_lft * HZ -
  1445. idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
  1446. idev->cnf.max_desync_factor * HZ;
  1447. if (time_before(expires, jiffies)) {
  1448. printk(KERN_WARNING
  1449. "ipv6_regen_rndid(): too short regeneration interval; timer disabled for %s.\n",
  1450. idev->dev->name);
  1451. goto out;
  1452. }
  1453. if (!mod_timer(&idev->regen_timer, expires))
  1454. in6_dev_hold(idev);
  1455. out:
  1456. write_unlock_bh(&idev->lock);
  1457. rcu_read_unlock_bh();
  1458. in6_dev_put(idev);
  1459. }
  1460. static int __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
  1461. {
  1462. int ret = 0;
  1463. if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
  1464. ret = __ipv6_regen_rndid(idev);
  1465. return ret;
  1466. }
  1467. #endif
  1468. /*
  1469. * Add prefix route.
  1470. */
  1471. static void
  1472. addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
  1473. unsigned long expires, u32 flags)
  1474. {
  1475. struct fib6_config cfg = {
  1476. .fc_table = RT6_TABLE_PREFIX,
  1477. .fc_metric = IP6_RT_PRIO_ADDRCONF,
  1478. .fc_ifindex = dev->ifindex,
  1479. .fc_expires = expires,
  1480. .fc_dst_len = plen,
  1481. .fc_flags = RTF_UP | flags,
  1482. .fc_nlinfo.nl_net = dev_net(dev),
  1483. .fc_protocol = RTPROT_KERNEL,
  1484. };
  1485. cfg.fc_dst = *pfx;
  1486. /* Prevent useless cloning on PtP SIT.
  1487. This thing is done here expecting that the whole
  1488. class of non-broadcast devices need not cloning.
  1489. */
  1490. #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
  1491. if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
  1492. cfg.fc_flags |= RTF_NONEXTHOP;
  1493. #endif
  1494. ip6_route_add(&cfg);
  1495. }
  1496. static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
  1497. int plen,
  1498. const struct net_device *dev,
  1499. u32 flags, u32 noflags)
  1500. {
  1501. struct fib6_node *fn;
  1502. struct rt6_info *rt = NULL;
  1503. struct fib6_table *table;
  1504. table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
  1505. if (table == NULL)
  1506. return NULL;
  1507. write_lock_bh(&table->tb6_lock);
  1508. fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
  1509. if (!fn)
  1510. goto out;
  1511. for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
  1512. if (rt->dst.dev->ifindex != dev->ifindex)
  1513. continue;
  1514. if ((rt->rt6i_flags & flags) != flags)
  1515. continue;
  1516. if ((noflags != 0) && ((rt->rt6i_flags & flags) != 0))
  1517. continue;
  1518. dst_hold(&rt->dst);
  1519. break;
  1520. }
  1521. out:
  1522. write_unlock_bh(&table->tb6_lock);
  1523. return rt;
  1524. }
  1525. /* Create "default" multicast route to the interface */
  1526. static void addrconf_add_mroute(struct net_device *dev)
  1527. {
  1528. struct fib6_config cfg = {
  1529. .fc_table = RT6_TABLE_LOCAL,
  1530. .fc_metric = IP6_RT_PRIO_ADDRCONF,
  1531. .fc_ifindex = dev->ifindex,
  1532. .fc_dst_len = 8,
  1533. .fc_flags = RTF_UP,
  1534. .fc_nlinfo.nl_net = dev_net(dev),
  1535. };
  1536. ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
  1537. ip6_route_add(&cfg);
  1538. }
  1539. #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
  1540. static void sit_route_add(struct net_device *dev)
  1541. {
  1542. struct fib6_config cfg = {
  1543. .fc_table = RT6_TABLE_MAIN,
  1544. .fc_metric = IP6_RT_PRIO_ADDRCONF,
  1545. .fc_ifindex = dev->ifindex,
  1546. .fc_dst_len = 96,
  1547. .fc_flags = RTF_UP | RTF_NONEXTHOP,
  1548. .fc_nlinfo.nl_net = dev_net(dev),
  1549. };
  1550. /* prefix length - 96 bits "::d.d.d.d" */
  1551. ip6_route_add(&cfg);
  1552. }
  1553. #endif
  1554. static void addrconf_add_lroute(struct net_device *dev)
  1555. {
  1556. struct in6_addr addr;
  1557. ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
  1558. addrconf_prefix_route(&addr, 64, dev, 0, 0);
  1559. }
  1560. static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
  1561. {
  1562. struct inet6_dev *idev;
  1563. ASSERT_RTNL();
  1564. idev = ipv6_find_idev(dev);
  1565. if (!idev)
  1566. return ERR_PTR(-ENOBUFS);
  1567. if (idev->cnf.disable_ipv6)
  1568. return ERR_PTR(-EACCES);
  1569. /* Add default multicast route */
  1570. if (!(dev->flags & IFF_LOOPBACK))
  1571. addrconf_add_mroute(dev);
  1572. /* Add link local route */
  1573. addrconf_add_lroute(dev);
  1574. return idev;
  1575. }
  1576. void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
  1577. {
  1578. struct prefix_info *pinfo;
  1579. __u32 valid_lft;
  1580. __u32 prefered_lft;
  1581. int addr_type;
  1582. struct inet6_dev *in6_dev;
  1583. struct net *net = dev_net(dev);
  1584. pinfo = (struct prefix_info *) opt;
  1585. if (len < sizeof(struct prefix_info)) {
  1586. ADBG(("addrconf: prefix option too short\n"));
  1587. return;
  1588. }
  1589. /*
  1590. * Validation checks ([ADDRCONF], page 19)
  1591. */
  1592. addr_type = ipv6_addr_type(&pinfo->prefix);
  1593. if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
  1594. return;
  1595. valid_lft = ntohl(pinfo->valid);
  1596. prefered_lft = ntohl(pinfo->prefered);
  1597. if (prefered_lft > valid_lft) {
  1598. if (net_ratelimit())
  1599. printk(KERN_WARNING "addrconf: prefix option has invalid lifetime\n");
  1600. return;
  1601. }
  1602. in6_dev = in6_dev_get(dev);
  1603. if (in6_dev == NULL) {
  1604. if (net_ratelimit())
  1605. printk(KERN_DEBUG "addrconf: device %s not configured\n", dev->name);
  1606. return;
  1607. }
  1608. /*
  1609. * Two things going on here:
  1610. * 1) Add routes for on-link prefixes
  1611. * 2) Configure prefixes with the auto flag set
  1612. */
  1613. if (pinfo->onlink) {
  1614. struct rt6_info *rt;
  1615. unsigned long rt_expires;
  1616. /* Avoid arithmetic overflow. Really, we could
  1617. * save rt_expires in seconds, likely valid_lft,
  1618. * but it would require division in fib gc, that it
  1619. * not good.
  1620. */
  1621. if (HZ > USER_HZ)
  1622. rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
  1623. else
  1624. rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
  1625. if (addrconf_finite_timeout(rt_expires))
  1626. rt_expires *= HZ;
  1627. rt = addrconf_get_prefix_route(&pinfo->prefix,
  1628. pinfo->prefix_len,
  1629. dev,
  1630. RTF_ADDRCONF | RTF_PREFIX_RT,
  1631. RTF_GATEWAY | RTF_DEFAULT);
  1632. if (rt) {
  1633. /* Autoconf prefix route */
  1634. if (valid_lft == 0) {
  1635. ip6_del_rt(rt);
  1636. rt = NULL;
  1637. } else if (addrconf_finite_timeout(rt_expires)) {
  1638. /* not infinity */
  1639. rt6_set_expires(rt, jiffies + rt_expires);
  1640. } else {
  1641. rt6_clean_expires(rt);
  1642. }
  1643. } else if (valid_lft) {
  1644. clock_t expires = 0;
  1645. int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
  1646. if (addrconf_finite_timeout(rt_expires)) {
  1647. /* not infinity */
  1648. flags |= RTF_EXPIRES;
  1649. expires = jiffies_to_clock_t(rt_expires);
  1650. }
  1651. addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
  1652. dev, expires, flags);
  1653. }
  1654. if (rt)
  1655. dst_release(&rt->dst);
  1656. }
  1657. /* Try to figure out our local address for this prefix */
  1658. if (pinfo->autoconf && in6_dev->cnf.autoconf) {
  1659. struct inet6_ifaddr *ifp;
  1660. struct in6_addr addr;
  1661. int create = 0, update_lft = 0;
  1662. if (pinfo->prefix_len == 64) {
  1663. memcpy(&addr, &pinfo->prefix, 8);
  1664. if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
  1665. ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
  1666. in6_dev_put(in6_dev);
  1667. return;
  1668. }
  1669. goto ok;
  1670. }
  1671. if (net_ratelimit())
  1672. printk(KERN_DEBUG "IPv6 addrconf: prefix with wrong length %d\n",
  1673. pinfo->prefix_len);
  1674. in6_dev_put(in6_dev);
  1675. return;
  1676. ok:
  1677. ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
  1678. if (ifp == NULL && valid_lft) {
  1679. int max_addresses = in6_dev->cnf.max_addresses;
  1680. u32 addr_flags = 0;
  1681. #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
  1682. if (in6_dev->cnf.optimistic_dad &&
  1683. !net->ipv6.devconf_all->forwarding && sllao)
  1684. addr_flags = IFA_F_OPTIMISTIC;
  1685. #endif
  1686. /* Do not allow to create too much of autoconfigured
  1687. * addresses; this would be too easy way to crash kernel.
  1688. */
  1689. if (!max_addresses ||
  1690. ipv6_count_addresses(in6_dev) < max_addresses)
  1691. ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
  1692. addr_type&IPV6_ADDR_SCOPE_MASK,
  1693. addr_flags);
  1694. if (!ifp || IS_ERR(ifp)) {
  1695. in6_dev_put(in6_dev);
  1696. return;
  1697. }
  1698. update_lft = create = 1;
  1699. ifp->cstamp = jiffies;
  1700. addrconf_dad_start(ifp);
  1701. }
  1702. if (ifp) {
  1703. int flags;
  1704. unsigned long now;
  1705. #ifdef CONFIG_IPV6_PRIVACY
  1706. struct inet6_ifaddr *ift;
  1707. #endif
  1708. u32 stored_lft;
  1709. /* update lifetime (RFC2462 5.5.3 e) */
  1710. spin_lock(&ifp->lock);
  1711. now = jiffies;
  1712. if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
  1713. stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
  1714. else
  1715. stored_lft = 0;
  1716. if (!update_lft && stored_lft) {
  1717. if (valid_lft > MIN_VALID_LIFETIME ||
  1718. valid_lft > stored_lft)
  1719. update_lft = 1;
  1720. else if (stored_lft <= MIN_VALID_LIFETIME) {
  1721. /* valid_lft <= stored_lft is always true */
  1722. /*
  1723. * RFC 4862 Section 5.5.3e:
  1724. * "Note that the preferred lifetime of
  1725. * the corresponding address is always
  1726. * reset to the Preferred Lifetime in
  1727. * the received Prefix Information
  1728. * option, regardless of whether the
  1729. * valid lifetime is also reset or
  1730. * ignored."
  1731. *
  1732. * So if the preferred lifetime in
  1733. * this advertisement is different
  1734. * than what we have stored, but the
  1735. * valid lifetime is invalid, just
  1736. * reset prefered_lft.
  1737. *
  1738. * We must set the valid lifetime
  1739. * to the stored lifetime since we'll
  1740. * be updating the timestamp below,
  1741. * else we'll set it back to the
  1742. * minimum.
  1743. */
  1744. if (prefered_lft != ifp->prefered_lft) {
  1745. valid_lft = stored_lft;
  1746. update_lft = 1;
  1747. }
  1748. } else {
  1749. valid_lft = MIN_VALID_LIFETIME;
  1750. if (valid_lft < prefered_lft)
  1751. prefered_lft = valid_lft;
  1752. update_lft = 1;
  1753. }
  1754. }
  1755. if (update_lft) {
  1756. ifp->valid_lft = valid_lft;
  1757. ifp->prefered_lft = prefered_lft;
  1758. ifp->tstamp = now;
  1759. flags = ifp->flags;
  1760. ifp->flags &= ~IFA_F_DEPRECATED;
  1761. spin_unlock(&ifp->lock);
  1762. if (!(flags&IFA_F_TENTATIVE))
  1763. ipv6_ifa_notify(0, ifp);
  1764. } else
  1765. spin_unlock(&ifp->lock);
  1766. #ifdef CONFIG_IPV6_PRIVACY
  1767. read_lock_bh(&in6_dev->lock);
  1768. /* update all temporary addresses in the list */
  1769. list_for_each_entry(ift, &in6_dev->tempaddr_list,
  1770. tmp_list) {
  1771. int age, max_valid, max_prefered;
  1772. if (ifp != ift->ifpub)
  1773. continue;
  1774. /*
  1775. * RFC 4941 section 3.3:
  1776. * If a received option will extend the lifetime
  1777. * of a public address, the lifetimes of
  1778. * temporary addresses should be extended,
  1779. * subject to the overall constraint that no
  1780. * temporary addresses should ever remain
  1781. * "valid" or "preferred" for a time longer than
  1782. * (TEMP_VALID_LIFETIME) or
  1783. * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
  1784. * respectively.
  1785. */
  1786. age = (now - ift->cstamp) / HZ;
  1787. max_valid = in6_dev->cnf.temp_valid_lft - age;
  1788. if (max_valid < 0)
  1789. max_valid = 0;
  1790. max_prefered = in6_dev->cnf.temp_prefered_lft -
  1791. in6_dev->cnf.max_desync_factor -
  1792. age;
  1793. if (max_prefered < 0)
  1794. max_prefered = 0;
  1795. if (valid_lft > max_valid)
  1796. valid_lft = max_valid;
  1797. if (prefered_lft > max_prefered)
  1798. prefered_lft = max_prefered;
  1799. spin_lock(&ift->lock);
  1800. flags = ift->flags;
  1801. ift->valid_lft = valid_lft;
  1802. ift->prefered_lft = prefered_lft;
  1803. ift->tstamp = now;
  1804. if (prefered_lft > 0)
  1805. ift->flags &= ~IFA_F_DEPRECATED;
  1806. spin_unlock(&ift->lock);
  1807. if (!(flags&IFA_F_TENTATIVE))
  1808. ipv6_ifa_notify(0, ift);
  1809. }
  1810. if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
  1811. /*
  1812. * When a new public address is created as
  1813. * described in [ADDRCONF], also create a new
  1814. * temporary address. Also create a temporary
  1815. * address if it's enabled but no temporary
  1816. * address currently exists.
  1817. */
  1818. read_unlock_bh(&in6_dev->lock);
  1819. ipv6_create_tempaddr(ifp, NULL);
  1820. } else {
  1821. read_unlock_bh(&in6_dev->lock);
  1822. }
  1823. #endif
  1824. in6_ifa_put(ifp);
  1825. addrconf_verify(0);
  1826. }
  1827. }
  1828. inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
  1829. in6_dev_put(in6_dev);
  1830. }
  1831. /*
  1832. * Set destination address.
  1833. * Special case for SIT interfaces where we create a new "virtual"
  1834. * device.
  1835. */
  1836. int addrconf_set_dstaddr(struct net *net, void __user *arg)
  1837. {
  1838. struct in6_ifreq ireq;
  1839. struct net_device *dev;
  1840. int err = -EINVAL;
  1841. rtnl_lock();
  1842. err = -EFAULT;
  1843. if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
  1844. goto err_exit;
  1845. dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
  1846. err = -ENODEV;
  1847. if (dev == NULL)
  1848. goto err_exit;
  1849. #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
  1850. if (dev->type == ARPHRD_SIT) {
  1851. const struct net_device_ops *ops = dev->netdev_ops;
  1852. struct ifreq ifr;
  1853. struct ip_tunnel_parm p;
  1854. err = -EADDRNOTAVAIL;
  1855. if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
  1856. goto err_exit;
  1857. memset(&p, 0, sizeof(p));
  1858. p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
  1859. p.iph.saddr = 0;
  1860. p.iph.version = 4;
  1861. p.iph.ihl = 5;
  1862. p.iph.protocol = IPPROTO_IPV6;
  1863. p.iph.ttl = 64;
  1864. ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
  1865. if (ops->ndo_do_ioctl) {
  1866. mm_segment_t oldfs = get_fs();
  1867. set_fs(KERNEL_DS);
  1868. err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
  1869. set_fs(oldfs);
  1870. } else
  1871. err = -EOPNOTSUPP;
  1872. if (err == 0) {
  1873. err = -ENOBUFS;
  1874. dev = __dev_get_by_name(net, p.name);
  1875. if (!dev)
  1876. goto err_exit;
  1877. err = dev_open(dev);
  1878. }
  1879. }
  1880. #endif
  1881. err_exit:
  1882. rtnl_unlock();
  1883. return err;
  1884. }
  1885. /*
  1886. * Manual configuration of address on an interface
  1887. */
  1888. static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
  1889. unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
  1890. __u32 valid_lft)
  1891. {
  1892. struct inet6_ifaddr *ifp;
  1893. struct inet6_dev *idev;
  1894. struct net_device *dev;
  1895. int scope;
  1896. u32 flags;
  1897. clock_t expires;
  1898. unsigned long timeout;
  1899. ASSERT_RTNL();
  1900. if (plen > 128)
  1901. return -EINVAL;
  1902. /* check the lifetime */
  1903. if (!valid_lft || prefered_lft > valid_lft)
  1904. return -EINVAL;
  1905. dev = __dev_get_by_index(net, ifindex);
  1906. if (!dev)
  1907. return -ENODEV;
  1908. idev = addrconf_add_dev(dev);
  1909. if (IS_ERR(idev))
  1910. return PTR_ERR(idev);
  1911. scope = ipv6_addr_scope(pfx);
  1912. timeout = addrconf_timeout_fixup(valid_lft, HZ);
  1913. if (addrconf_finite_timeout(timeout)) {
  1914. expires = jiffies_to_clock_t(timeout * HZ);
  1915. valid_lft = timeout;
  1916. flags = RTF_EXPIRES;
  1917. } else {
  1918. expires = 0;
  1919. flags = 0;
  1920. ifa_flags |= IFA_F_PERMANENT;
  1921. }
  1922. timeout = addrconf_timeout_fixup(prefered_lft, HZ);
  1923. if (addrconf_finite_timeout(timeout)) {
  1924. if (timeout == 0)
  1925. ifa_flags |= IFA_F_DEPRECATED;
  1926. prefered_lft = timeout;
  1927. }
  1928. ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
  1929. if (!IS_ERR(ifp)) {
  1930. spin_lock_bh(&ifp->lock);
  1931. ifp->valid_lft = valid_lft;
  1932. ifp->prefered_lft = prefered_lft;
  1933. ifp->tstamp = jiffies;
  1934. spin_unlock_bh(&ifp->lock);
  1935. addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
  1936. expires, flags);
  1937. /*
  1938. * Note that section 3.1 of RFC 4429 indicates
  1939. * that the Optimistic flag should not be set for
  1940. * manually configured addresses
  1941. */
  1942. addrconf_dad_start(ifp);
  1943. in6_ifa_put(ifp);
  1944. addrconf_verify(0);
  1945. return 0;
  1946. }
  1947. return PTR_ERR(ifp);
  1948. }
  1949. static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
  1950. unsigned int plen)
  1951. {
  1952. struct inet6_ifaddr *ifp;
  1953. struct inet6_dev *idev;
  1954. struct net_device *dev;
  1955. if (plen > 128)
  1956. return -EINVAL;
  1957. dev = __dev_get_by_index(net, ifindex);
  1958. if (!dev)
  1959. return -ENODEV;
  1960. if ((idev = __in6_dev_get(dev)) == NULL)
  1961. return -ENXIO;
  1962. read_lock_bh(&idev->lock);
  1963. list_for_each_entry(ifp, &idev->addr_list, if_list) {
  1964. if (ifp->prefix_len == plen &&
  1965. ipv6_addr_equal(pfx, &ifp->addr)) {
  1966. in6_ifa_hold(ifp);
  1967. read_unlock_bh(&idev->lock);
  1968. ipv6_del_addr(ifp);
  1969. /* If the last address is deleted administratively,
  1970. disable IPv6 on this interface.
  1971. */
  1972. if (list_empty(&idev->addr_list))
  1973. addrconf_ifdown(idev->dev, 1);
  1974. return 0;
  1975. }
  1976. }
  1977. read_unlock_bh(&idev->lock);
  1978. return -EADDRNOTAVAIL;
  1979. }
  1980. int addrconf_add_ifaddr(struct net *net, void __user *arg)
  1981. {
  1982. struct in6_ifreq ireq;
  1983. int err;
  1984. if (!capable(CAP_NET_ADMIN))
  1985. return -EPERM;
  1986. if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
  1987. return -EFAULT;
  1988. rtnl_lock();
  1989. err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
  1990. ireq.ifr6_prefixlen, IFA_F_PERMANENT,
  1991. INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
  1992. rtnl_unlock();
  1993. return err;
  1994. }
  1995. int addrconf_del_ifaddr(struct net *net, void __user *arg)
  1996. {
  1997. struct in6_ifreq ireq;
  1998. int err;
  1999. if (!capable(CAP_NET_ADMIN))
  2000. return -EPERM;
  2001. if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
  2002. return -EFAULT;
  2003. rtnl_lock();
  2004. err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
  2005. ireq.ifr6_prefixlen);
  2006. rtnl_unlock();
  2007. return err;
  2008. }
  2009. static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
  2010. int plen, int scope)
  2011. {
  2012. struct inet6_ifaddr *ifp;
  2013. ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT);
  2014. if (!IS_ERR(ifp)) {
  2015. spin_lock_bh(&ifp->lock);
  2016. ifp->flags &= ~IFA_F_TENTATIVE;
  2017. spin_unlock_bh(&ifp->lock);
  2018. ipv6_ifa_notify(RTM_NEWADDR, ifp);
  2019. in6_ifa_put(ifp);
  2020. }
  2021. }
  2022. #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
  2023. static void sit_add_v4_addrs(struct inet6_dev *idev)
  2024. {
  2025. struct in6_addr addr;
  2026. struct net_device *dev;
  2027. struct net *net = dev_net(idev->dev);
  2028. int scope;
  2029. ASSERT_RTNL();
  2030. memset(&addr, 0, sizeof(struct in6_addr));
  2031. memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
  2032. if (idev->dev->flags&IFF_POINTOPOINT) {
  2033. addr.s6_addr32[0] = htonl(0xfe800000);
  2034. scope = IFA_LINK;
  2035. } else {
  2036. scope = IPV6_ADDR_COMPATv4;
  2037. }
  2038. if (addr.s6_addr32[3]) {
  2039. add_addr(idev, &addr, 128, scope);
  2040. return;
  2041. }
  2042. for_each_netdev(net, dev) {
  2043. struct in_device *in_dev = __in_dev_get_rtnl(dev);
  2044. if (in_dev && (dev->flags & IFF_UP)) {
  2045. struct in_ifaddr *ifa;
  2046. int flag = scope;
  2047. for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
  2048. int plen;
  2049. addr.s6_addr32[3] = ifa->ifa_local;
  2050. if (ifa->ifa_scope == RT_SCOPE_LINK)
  2051. continue;
  2052. if (ifa->ifa_scope >= RT_SCOPE_HOST) {
  2053. if (idev->dev->flags&IFF_POINTOPOINT)
  2054. continue;
  2055. flag |= IFA_HOST;
  2056. }
  2057. if (idev->dev->flags&IFF_POINTOPOINT)
  2058. plen = 64;
  2059. else
  2060. plen = 96;
  2061. add_addr(idev, &addr, plen, flag);
  2062. }
  2063. }
  2064. }
  2065. }
  2066. #endif
  2067. static void init_loopback(struct net_device *dev)
  2068. {
  2069. struct inet6_dev *idev;
  2070. /* ::1 */
  2071. ASSERT_RTNL();
  2072. if ((idev = ipv6_find_idev(dev)) == NULL) {
  2073. printk(KERN_DEBUG "init loopback: add_dev failed\n");
  2074. return;
  2075. }
  2076. add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
  2077. }
  2078. static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
  2079. {
  2080. struct inet6_ifaddr *ifp;
  2081. u32 addr_flags = IFA_F_PERMANENT;
  2082. #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
  2083. if (idev->cnf.optimistic_dad &&
  2084. !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
  2085. addr_flags |= IFA_F_OPTIMISTIC;
  2086. #endif
  2087. ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
  2088. if (!IS_ERR(ifp)) {
  2089. addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
  2090. addrconf_dad_start(ifp);
  2091. in6_ifa_put(ifp);
  2092. }
  2093. }
  2094. static void addrconf_dev_config(struct net_device *dev)
  2095. {
  2096. struct in6_addr addr;
  2097. struct inet6_dev *idev;
  2098. ASSERT_RTNL();
  2099. if ((dev->type != ARPHRD_ETHER) &&
  2100. (dev->type != ARPHRD_FDDI) &&
  2101. (dev->type != ARPHRD_IEEE802_TR) &&
  2102. (dev->type != ARPHRD_ARCNET) &&
  2103. (dev->type != ARPHRD_INFINIBAND) &&
  2104. (dev->type != ARPHRD_IEEE802154)) {
  2105. /* Alas, we support only Ethernet autoconfiguration. */
  2106. return;
  2107. }
  2108. idev = addrconf_add_dev(dev);
  2109. if (IS_ERR(idev))
  2110. return;
  2111. memset(&addr, 0, sizeof(struct in6_addr));
  2112. addr.s6_addr32[0] = htonl(0xFE800000);
  2113. if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
  2114. addrconf_add_linklocal(idev, &addr);
  2115. }
  2116. #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
  2117. static void addrconf_sit_config(struct net_device *dev)
  2118. {
  2119. struct inet6_dev *idev;
  2120. ASSERT_RTNL();
  2121. /*
  2122. * Configure the tunnel with one of our IPv4
  2123. * addresses... we should configure all of
  2124. * our v4 addrs in the tunnel
  2125. */
  2126. if ((idev = ipv6_find_idev(dev)) == NULL) {
  2127. printk(KERN_DEBUG "init sit: add_dev failed\n");
  2128. return;
  2129. }
  2130. if (dev->priv_flags & IFF_ISATAP) {
  2131. struct in6_addr addr;
  2132. ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
  2133. addrconf_prefix_route(&addr, 64, dev, 0, 0);
  2134. if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
  2135. addrconf_add_linklocal(idev, &addr);
  2136. return;
  2137. }
  2138. sit_add_v4_addrs(idev);
  2139. if (dev->flags&IFF_POINTOPOINT) {
  2140. addrconf_add_mroute(dev);
  2141. addrconf_add_lroute(dev);
  2142. } else
  2143. sit_route_add(dev);
  2144. }
  2145. #endif
  2146. #if defined(CONFIG_NET_IPGRE) || defined(CONFIG_NET_IPGRE_MODULE)
  2147. static void addrconf_gre_config(struct net_device *dev)
  2148. {
  2149. struct inet6_dev *idev;
  2150. struct in6_addr addr;
  2151. pr_info("ipv6: addrconf_gre_config(%s)\n", dev->name);
  2152. ASSERT_RTNL();
  2153. if ((idev = ipv6_find_idev(dev)) == NULL) {
  2154. printk(KERN_DEBUG "init gre: add_dev failed\n");
  2155. return;
  2156. }
  2157. ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
  2158. addrconf_prefix_route(&addr, 64, dev, 0, 0);
  2159. if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
  2160. addrconf_add_linklocal(idev, &addr);
  2161. }
  2162. #endif
  2163. static inline int
  2164. ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
  2165. {
  2166. struct in6_addr lladdr;
  2167. if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
  2168. addrconf_add_linklocal(idev, &lladdr);
  2169. return 0;
  2170. }
  2171. return -1;
  2172. }
  2173. static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
  2174. {
  2175. struct net_device *link_dev;
  2176. struct net *net = dev_net(idev->dev);
  2177. /* first try to inherit the link-local address from the link device */
  2178. if (idev->dev->iflink &&
  2179. (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
  2180. if (!ipv6_inherit_linklocal(idev, link_dev))
  2181. return;
  2182. }
  2183. /* then try to inherit it from any device */
  2184. for_each_netdev(net, link_dev) {
  2185. if (!ipv6_inherit_linklocal(idev, link_dev))
  2186. return;
  2187. }
  2188. printk(KERN_DEBUG "init ip6-ip6: add_linklocal failed\n");
  2189. }
  2190. /*
  2191. * Autoconfigure tunnel with a link-local address so routing protocols,
  2192. * DHCPv6, MLD etc. can be run over the virtual link
  2193. */
  2194. static void addrconf_ip6_tnl_config(struct net_device *dev)
  2195. {
  2196. struct inet6_dev *idev;
  2197. ASSERT_RTNL();
  2198. idev = addrconf_add_dev(dev);
  2199. if (IS_ERR(idev)) {
  2200. printk(KERN_DEBUG "init ip6-ip6: add_dev failed\n");
  2201. return;
  2202. }
  2203. ip6_tnl_add_linklocal(idev);
  2204. }
  2205. static int addrconf_notify(struct notifier_block *this, unsigned long event,
  2206. void *data)
  2207. {
  2208. struct net_device *dev = (struct net_device *) data;
  2209. struct inet6_dev *idev = __in6_dev_get(dev);
  2210. int run_pending = 0;
  2211. int err;
  2212. switch (event) {
  2213. case NETDEV_REGISTER:
  2214. if (!idev && dev->mtu >= IPV6_MIN_MTU) {
  2215. idev = ipv6_add_dev(dev);
  2216. if (!idev)
  2217. return notifier_from_errno(-ENOMEM);
  2218. }
  2219. break;
  2220. case NETDEV_UP:
  2221. case NETDEV_CHANGE:
  2222. if (dev->flags & IFF_SLAVE)
  2223. break;
  2224. if (event == NETDEV_UP) {
  2225. if (!addrconf_qdisc_ok(dev)) {
  2226. /* device is not ready yet. */
  2227. printk(KERN_INFO
  2228. "ADDRCONF(NETDEV_UP): %s: "
  2229. "link is not ready\n",
  2230. dev->name);
  2231. break;
  2232. }
  2233. if (!idev && dev->mtu >= IPV6_MIN_MTU)
  2234. idev = ipv6_add_dev(dev);
  2235. if (idev) {
  2236. idev->if_flags |= IF_READY;
  2237. run_pending = 1;
  2238. }
  2239. } else {
  2240. if (!addrconf_qdisc_ok(dev)) {
  2241. /* device is still not ready. */
  2242. break;
  2243. }
  2244. if (idev) {
  2245. if (idev->if_flags & IF_READY)
  2246. /* device is already configured. */
  2247. break;
  2248. idev->if_flags |= IF_READY;
  2249. }
  2250. printk(KERN_INFO
  2251. "ADDRCONF(NETDEV_CHANGE): %s: "
  2252. "link becomes ready\n",
  2253. dev->name);
  2254. run_pending = 1;
  2255. }
  2256. switch (dev->type) {
  2257. #if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
  2258. case ARPHRD_SIT:
  2259. addrconf_sit_config(dev);
  2260. break;
  2261. #endif
  2262. #if defined(CONFIG_NET_IPGRE) || defined(CONFIG_NET_IPGRE_MODULE)
  2263. case ARPHRD_IPGRE:
  2264. addrconf_gre_config(dev);
  2265. break;
  2266. #endif
  2267. case ARPHRD_TUNNEL6:
  2268. addrconf_ip6_tnl_config(dev);
  2269. break;
  2270. case ARPHRD_LOOPBACK:
  2271. init_loopback(dev);
  2272. break;
  2273. default:
  2274. addrconf_dev_config(dev);
  2275. break;
  2276. }
  2277. if (idev) {
  2278. if (run_pending)
  2279. addrconf_dad_run(idev);
  2280. /*
  2281. * If the MTU changed during the interface down,
  2282. * when the interface up, the changed MTU must be
  2283. * reflected in the idev as well as routers.
  2284. */
  2285. if (idev->cnf.mtu6 != dev->mtu &&
  2286. dev->mtu >= IPV6_MIN_MTU) {
  2287. rt6_mtu_change(dev, dev->mtu);
  2288. idev->cnf.mtu6 = dev->mtu;
  2289. }
  2290. idev->tstamp = jiffies;
  2291. inet6_ifinfo_notify(RTM_NEWLINK, idev);
  2292. /*
  2293. * If the changed mtu during down is lower than
  2294. * IPV6_MIN_MTU stop IPv6 on this interface.
  2295. */
  2296. if (dev->mtu < IPV6_MIN_MTU)
  2297. addrconf_ifdown(dev, 1);
  2298. }
  2299. break;
  2300. case NETDEV_CHANGEMTU:
  2301. if (idev && dev->mtu >= IPV6_MIN_MTU) {
  2302. rt6_mtu_change(dev, dev->mtu);
  2303. idev->cnf.mtu6 = dev->mtu;
  2304. break;
  2305. }
  2306. if (!idev && dev->mtu >= IPV6_MIN_MTU) {
  2307. idev = ipv6_add_dev(dev);
  2308. if (idev)
  2309. break;
  2310. }
  2311. /*
  2312. * MTU falled under IPV6_MIN_MTU.
  2313. * Stop IPv6 on this interface.
  2314. */
  2315. case NETDEV_DOWN:
  2316. case NETDEV_UNREGISTER:
  2317. /*
  2318. * Remove all addresses from this interface.
  2319. */
  2320. addrconf_ifdown(dev, event != NETDEV_DOWN);
  2321. break;
  2322. case NETDEV_CHANGENAME:
  2323. if (idev) {
  2324. snmp6_unregister_dev(idev);
  2325. addrconf_sysctl_unregister(idev);
  2326. addrconf_sysctl_register(idev);
  2327. err = snmp6_register_dev(idev);
  2328. if (err)
  2329. return notifier_from_errno(err);
  2330. }
  2331. break;
  2332. case NETDEV_PRE_TYPE_CHANGE:
  2333. case NETDEV_POST_TYPE_CHANGE:
  2334. addrconf_type_change(dev, event);
  2335. break;
  2336. }
  2337. return NOTIFY_OK;
  2338. }
  2339. /*
  2340. * addrconf module should be notified of a device going up
  2341. */
  2342. static struct notifier_block ipv6_dev_notf = {
  2343. .notifier_call = addrconf_notify,
  2344. };
  2345. static void addrconf_type_change(struct net_device *dev, unsigned long event)
  2346. {
  2347. struct inet6_dev *idev;
  2348. ASSERT_RTNL();
  2349. idev = __in6_dev_get(dev);
  2350. if (event == NETDEV_POST_TYPE_CHANGE)
  2351. ipv6_mc_remap(idev);
  2352. else if (event == NETDEV_PRE_TYPE_CHANGE)
  2353. ipv6_mc_unmap(idev);
  2354. }
  2355. static int addrconf_ifdown(struct net_device *dev, int how)
  2356. {
  2357. struct net *net = dev_net(dev);
  2358. struct inet6_dev *idev;
  2359. struct inet6_ifaddr *ifa;
  2360. int state, i;
  2361. ASSERT_RTNL();
  2362. rt6_ifdown(net, dev);
  2363. neigh_ifdown(&nd_tbl, dev);
  2364. idev = __in6_dev_get(dev);
  2365. if (idev == NULL)
  2366. return -ENODEV;
  2367. /*
  2368. * Step 1: remove reference to ipv6 device from parent device.
  2369. * Do not dev_put!
  2370. */
  2371. if (how) {
  2372. idev->dead = 1;
  2373. /* protected by rtnl_lock */
  2374. RCU_INIT_POINTER(dev->ip6_ptr, NULL);
  2375. /* Step 1.5: remove snmp6 entry */
  2376. snmp6_unregister_dev(idev);
  2377. }
  2378. /* Step 2: clear hash table */
  2379. for (i = 0; i < IN6_ADDR_HSIZE; i++) {
  2380. struct hlist_head *h = &inet6_addr_lst[i];
  2381. struct hlist_node *n;
  2382. spin_lock_bh(&addrconf_hash_lock);
  2383. restart:
  2384. hlist_for_each_entry_rcu(ifa, n, h, addr_lst) {
  2385. if (ifa->idev == idev) {
  2386. hlist_del_init_rcu(&ifa->addr_lst);
  2387. addrconf_del_timer(ifa);
  2388. goto restart;
  2389. }
  2390. }
  2391. spin_unlock_bh(&addrconf_hash_lock);
  2392. }
  2393. write_lock_bh(&idev->lock);
  2394. /* Step 2: clear flags for stateless addrconf */
  2395. if (!how)
  2396. idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
  2397. #ifdef CONFIG_IPV6_PRIVACY
  2398. if (how && del_timer(&idev->regen_timer))
  2399. in6_dev_put(idev);
  2400. /* Step 3: clear tempaddr list */
  2401. while (!list_empty(&idev->tempaddr_list)) {
  2402. ifa = list_first_entry(&idev->tempaddr_list,
  2403. struct inet6_ifaddr, tmp_list);
  2404. list_del(&ifa->tmp_list);
  2405. write_unlock_bh(&idev->lock);
  2406. spin_lock_bh(&ifa->lock);
  2407. if (ifa->ifpub) {
  2408. in6_ifa_put(ifa->ifpub);
  2409. ifa->ifpub = NULL;
  2410. }
  2411. spin_unlock_bh(&ifa->lock);
  2412. in6_ifa_put(ifa);
  2413. write_lock_bh(&idev->lock);
  2414. }
  2415. #endif
  2416. while (!list_empty(&idev->addr_list)) {
  2417. ifa = list_first_entry(&idev->addr_list,
  2418. struct inet6_ifaddr, if_list);
  2419. addrconf_del_timer(ifa);
  2420. list_del(&ifa->if_list);
  2421. write_unlock_bh(&idev->lock);
  2422. spin_lock_bh(&ifa->state_lock);
  2423. state = ifa->state;
  2424. ifa->state = INET6_IFADDR_STATE_DEAD;
  2425. spin_unlock_bh(&ifa->state_lock);
  2426. if (state != INET6_IFADDR_STATE_DEAD) {
  2427. __ipv6_ifa_notify(RTM_DELADDR, ifa);
  2428. atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
  2429. }
  2430. in6_ifa_put(ifa);
  2431. write_lock_bh(&idev->lock);
  2432. }
  2433. write_unlock_bh(&idev->lock);
  2434. /* Step 5: Discard multicast list */
  2435. if (how)
  2436. ipv6_mc_destroy_dev(idev);
  2437. else
  2438. ipv6_mc_down(idev);
  2439. idev->tstamp = jiffies;
  2440. /* Last: Shot the device (if unregistered) */
  2441. if (how) {
  2442. addrconf_sysctl_unregister(idev);
  2443. neigh_parms_release(&nd_tbl, idev->nd_parms);
  2444. neigh_ifdown(&nd_tbl, dev);
  2445. in6_dev_put(idev);
  2446. }
  2447. return 0;
  2448. }
  2449. static void addrconf_rs_timer(unsigned long data)
  2450. {
  2451. struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
  2452. struct inet6_dev *idev = ifp->idev;
  2453. read_lock(&idev->lock);
  2454. if (idev->dead || !(idev->if_flags & IF_READY))
  2455. goto out;
  2456. if (idev->cnf.forwarding)
  2457. goto out;
  2458. /* Announcement received after solicitation was sent */
  2459. if (idev->if_flags & IF_RA_RCVD)
  2460. goto out;
  2461. spin_lock(&ifp->lock);
  2462. if (ifp->probes++ < idev->cnf.rtr_solicits) {
  2463. /* The wait after the last probe can be shorter */
  2464. addrconf_mod_timer(ifp, AC_RS,
  2465. (ifp->probes == idev->cnf.rtr_solicits) ?
  2466. idev->cnf.rtr_solicit_delay :
  2467. idev->cnf.rtr_solicit_interval);
  2468. spin_unlock(&ifp->lock);
  2469. ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
  2470. } else {
  2471. spin_unlock(&ifp->lock);
  2472. /*
  2473. * Note: we do not support deprecated "all on-link"
  2474. * assumption any longer.
  2475. */
  2476. printk(KERN_DEBUG "%s: no IPv6 routers present\n",
  2477. idev->dev->name);
  2478. }
  2479. out:
  2480. read_unlock(&idev->lock);
  2481. in6_ifa_put(ifp);
  2482. }
  2483. /*
  2484. * Duplicate Address Detection
  2485. */
  2486. static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
  2487. {
  2488. unsigned long rand_num;
  2489. struct inet6_dev *idev = ifp->idev;
  2490. if (ifp->flags & IFA_F_OPTIMISTIC)
  2491. rand_num = 0;
  2492. else
  2493. rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
  2494. ifp->probes = idev->cnf.dad_transmits;
  2495. addrconf_mod_timer(ifp, AC_DAD, rand_num);
  2496. }
  2497. static void addrconf_dad_start(struct inet6_ifaddr *ifp)
  2498. {
  2499. struct inet6_dev *idev = ifp->idev;
  2500. struct net_device *dev = idev->dev;
  2501. addrconf_join_solict(dev, &ifp->addr);
  2502. net_srandom(ifp->addr.s6_addr32[3]);
  2503. read_lock_bh(&idev->lock);
  2504. spin_lock(&ifp->lock);
  2505. if (ifp->state == INET6_IFADDR_STATE_DEAD)
  2506. goto out;
  2507. if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
  2508. idev->cnf.accept_dad < 1 ||
  2509. !(ifp->flags&IFA_F_TENTATIVE) ||
  2510. ifp->flags & IFA_F_NODAD) {
  2511. ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
  2512. spin_unlock(&ifp->lock);
  2513. read_unlock_bh(&idev->lock);
  2514. addrconf_dad_completed(ifp);
  2515. return;
  2516. }
  2517. if (!(idev->if_flags & IF_READY)) {
  2518. spin_unlock(&ifp->lock);
  2519. read_unlock_bh(&idev->lock);
  2520. /*
  2521. * If the device is not ready:
  2522. * - keep it tentative if it is a permanent address.
  2523. * - otherwise, kill it.
  2524. */
  2525. in6_ifa_hold(ifp);
  2526. addrconf_dad_stop(ifp, 0);
  2527. return;
  2528. }
  2529. /*
  2530. * Optimistic nodes can start receiving
  2531. * Frames right away
  2532. */
  2533. if (ifp->flags & IFA_F_OPTIMISTIC)
  2534. ip6_ins_rt(ifp->rt);
  2535. addrconf_dad_kick(ifp);
  2536. out:
  2537. spin_unlock(&ifp->lock);
  2538. read_unlock_bh(&idev->lock);
  2539. }
  2540. static void addrconf_dad_timer(unsigned long data)
  2541. {
  2542. struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
  2543. struct inet6_dev *idev = ifp->idev;
  2544. struct in6_addr mcaddr;
  2545. if (!ifp->probes && addrconf_dad_end(ifp))
  2546. goto out;
  2547. read_lock(&idev->lock);
  2548. if (idev->dead || !(idev->if_flags & IF_READY)) {
  2549. read_unlock(&idev->lock);
  2550. goto out;
  2551. }
  2552. spin_lock(&ifp->lock);
  2553. if (ifp->state == INET6_IFADDR_STATE_DEAD) {
  2554. spin_unlock(&ifp->lock);
  2555. read_unlock(&idev->lock);
  2556. goto out;
  2557. }
  2558. if (ifp->probes == 0) {
  2559. /*
  2560. * DAD was successful
  2561. */
  2562. ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
  2563. spin_unlock(&ifp->lock);
  2564. read_unlock(&idev->lock);
  2565. addrconf_dad_completed(ifp);
  2566. goto out;
  2567. }
  2568. ifp->probes--;
  2569. addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
  2570. spin_unlock(&ifp->lock);
  2571. read_unlock(&idev->lock);
  2572. /* send a neighbour solicitation for our addr */
  2573. addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
  2574. ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
  2575. out:
  2576. in6_ifa_put(ifp);
  2577. }
  2578. static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
  2579. {
  2580. struct net_device *dev = ifp->idev->dev;
  2581. /*
  2582. * Configure the address for reception. Now it is valid.
  2583. */
  2584. ipv6_ifa_notify(RTM_NEWADDR, ifp);
  2585. /* If added prefix is link local and we are prepared to process
  2586. router advertisements, start sending router solicitations.
  2587. */
  2588. if (((ifp->idev->cnf.accept_ra == 1 && !ifp->idev->cnf.forwarding) ||
  2589. ifp->idev->cnf.accept_ra == 2) &&
  2590. ifp->idev->cnf.rtr_solicits > 0 &&
  2591. (dev->flags&IFF_LOOPBACK) == 0 &&
  2592. (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
  2593. /*
  2594. * If a host as already performed a random delay
  2595. * [...] as part of DAD [...] there is no need
  2596. * to delay again before sending the first RS
  2597. */
  2598. ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
  2599. spin_lock_bh(&ifp->lock);
  2600. ifp->probes = 1;
  2601. ifp->idev->if_flags |= IF_RS_SENT;
  2602. addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
  2603. spin_unlock_bh(&ifp->lock);
  2604. }
  2605. }
  2606. static void addrconf_dad_run(struct inet6_dev *idev)
  2607. {
  2608. struct inet6_ifaddr *ifp;
  2609. read_lock_bh(&idev->lock);
  2610. list_for_each_entry(ifp, &idev->addr_list, if_list) {
  2611. spin_lock(&ifp->lock);
  2612. if (ifp->flags & IFA_F_TENTATIVE &&
  2613. ifp->state == INET6_IFADDR_STATE_DAD)
  2614. addrconf_dad_kick(ifp);
  2615. spin_unlock(&ifp->lock);
  2616. }
  2617. read_unlock_bh(&idev->lock);
  2618. }
  2619. #ifdef CONFIG_PROC_FS
  2620. struct if6_iter_state {
  2621. struct seq_net_private p;
  2622. int bucket;
  2623. int offset;
  2624. };
  2625. static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
  2626. {
  2627. struct inet6_ifaddr *ifa = NULL;
  2628. struct if6_iter_state *state = seq->private;
  2629. struct net *net = seq_file_net(seq);
  2630. int p = 0;
  2631. /* initial bucket if pos is 0 */
  2632. if (pos == 0) {
  2633. state->bucket = 0;
  2634. state->offset = 0;
  2635. }
  2636. for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
  2637. struct hlist_node *n;
  2638. hlist_for_each_entry_rcu_bh(ifa, n, &inet6_addr_lst[state->bucket],
  2639. addr_lst) {
  2640. /* sync with offset */
  2641. if (p < state->offset) {
  2642. p++;
  2643. continue;
  2644. }
  2645. state->offset++;
  2646. if (net_eq(dev_net(ifa->idev->dev), net))
  2647. return ifa;
  2648. }
  2649. /* prepare for next bucket */
  2650. state->offset = 0;
  2651. p = 0;
  2652. }
  2653. return NULL;
  2654. }
  2655. static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
  2656. struct inet6_ifaddr *ifa)
  2657. {
  2658. struct if6_iter_state *state = seq->private;
  2659. struct net *net = seq_file_net(seq);
  2660. struct hlist_node *n = &ifa->addr_lst;
  2661. hlist_for_each_entry_continue_rcu_bh(ifa, n, addr_lst) {
  2662. state->offset++;
  2663. if (net_eq(dev_net(ifa->idev->dev), net))
  2664. return ifa;
  2665. }
  2666. while (++state->bucket < IN6_ADDR_HSIZE) {
  2667. state->offset = 0;
  2668. hlist_for_each_entry_rcu_bh(ifa, n,
  2669. &inet6_addr_lst[state->bucket], addr_lst) {
  2670. state->offset++;
  2671. if (net_eq(dev_net(ifa->idev->dev), net))
  2672. return ifa;
  2673. }
  2674. }
  2675. return NULL;
  2676. }
  2677. static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
  2678. __acquires(rcu_bh)
  2679. {
  2680. rcu_read_lock_bh();
  2681. return if6_get_first(seq, *pos);
  2682. }
  2683. static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  2684. {
  2685. struct inet6_ifaddr *ifa;
  2686. ifa = if6_get_next(seq, v);
  2687. ++*pos;
  2688. return ifa;
  2689. }
  2690. static void if6_seq_stop(struct seq_file *seq, void *v)
  2691. __releases(rcu_bh)
  2692. {
  2693. rcu_read_unlock_bh();
  2694. }
  2695. static int if6_seq_show(struct seq_file *seq, void *v)
  2696. {
  2697. struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
  2698. seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
  2699. &ifp->addr,
  2700. ifp->idev->dev->ifindex,
  2701. ifp->prefix_len,
  2702. ifp->scope,
  2703. ifp->flags,
  2704. ifp->idev->dev->name);
  2705. return 0;
  2706. }
  2707. static const struct seq_operations if6_seq_ops = {
  2708. .start = if6_seq_start,
  2709. .next = if6_seq_next,
  2710. .show = if6_seq_show,
  2711. .stop = if6_seq_stop,
  2712. };
  2713. static int if6_seq_open(struct inode *inode, struct file *file)
  2714. {
  2715. return seq_open_net(inode, file, &if6_seq_ops,
  2716. sizeof(struct if6_iter_state));
  2717. }
  2718. static const struct file_operations if6_fops = {
  2719. .owner = THIS_MODULE,
  2720. .open = if6_seq_open,
  2721. .read = seq_read,
  2722. .llseek = seq_lseek,
  2723. .release = seq_release_net,
  2724. };
  2725. static int __net_init if6_proc_net_init(struct net *net)
  2726. {
  2727. if (!proc_net_fops_create(net, "if_inet6", S_IRUGO, &if6_fops))
  2728. return -ENOMEM;
  2729. return 0;
  2730. }
  2731. static void __net_exit if6_proc_net_exit(struct net *net)
  2732. {
  2733. proc_net_remove(net, "if_inet6");
  2734. }
  2735. static struct pernet_operations if6_proc_net_ops = {
  2736. .init = if6_proc_net_init,
  2737. .exit = if6_proc_net_exit,
  2738. };
  2739. int __init if6_proc_init(void)
  2740. {
  2741. return register_pernet_subsys(&if6_proc_net_ops);
  2742. }
  2743. void if6_proc_exit(void)
  2744. {
  2745. unregister_pernet_subsys(&if6_proc_net_ops);
  2746. }
  2747. #endif /* CONFIG_PROC_FS */
  2748. #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
  2749. /* Check if address is a home address configured on any interface. */
  2750. int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
  2751. {
  2752. int ret = 0;
  2753. struct inet6_ifaddr *ifp = NULL;
  2754. struct hlist_node *n;
  2755. unsigned int hash = ipv6_addr_hash(addr);
  2756. rcu_read_lock_bh();
  2757. hlist_for_each_entry_rcu_bh(ifp, n, &inet6_addr_lst[hash], addr_lst) {
  2758. if (!net_eq(dev_net(ifp->idev->dev), net))
  2759. continue;
  2760. if (ipv6_addr_equal(&ifp->addr, addr) &&
  2761. (ifp->flags & IFA_F_HOMEADDRESS)) {
  2762. ret = 1;
  2763. break;
  2764. }
  2765. }
  2766. rcu_read_unlock_bh();
  2767. return ret;
  2768. }
  2769. #endif
  2770. /*
  2771. * Periodic address status verification
  2772. */
  2773. static void addrconf_verify(unsigned long foo)
  2774. {
  2775. unsigned long now, next, next_sec, next_sched;
  2776. struct inet6_ifaddr *ifp;
  2777. struct hlist_node *node;
  2778. int i;
  2779. rcu_read_lock_bh();
  2780. spin_lock(&addrconf_verify_lock);
  2781. now = jiffies;
  2782. next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
  2783. del_timer(&addr_chk_timer);
  2784. for (i = 0; i < IN6_ADDR_HSIZE; i++) {
  2785. restart:
  2786. hlist_for_each_entry_rcu_bh(ifp, node,
  2787. &inet6_addr_lst[i], addr_lst) {
  2788. unsigned long age;
  2789. if (ifp->flags & IFA_F_PERMANENT)
  2790. continue;
  2791. spin_lock(&ifp->lock);
  2792. /* We try to batch several events at once. */
  2793. age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
  2794. if (ifp->valid_lft != INFINITY_LIFE_TIME &&
  2795. age >= ifp->valid_lft) {
  2796. spin_unlock(&ifp->lock);
  2797. in6_ifa_hold(ifp);
  2798. ipv6_del_addr(ifp);
  2799. goto restart;
  2800. } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
  2801. spin_unlock(&ifp->lock);
  2802. continue;
  2803. } else if (age >= ifp->prefered_lft) {
  2804. /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
  2805. int deprecate = 0;
  2806. if (!(ifp->flags&IFA_F_DEPRECATED)) {
  2807. deprecate = 1;
  2808. ifp->flags |= IFA_F_DEPRECATED;
  2809. }
  2810. if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
  2811. next = ifp->tstamp + ifp->valid_lft * HZ;
  2812. spin_unlock(&ifp->lock);
  2813. if (deprecate) {
  2814. in6_ifa_hold(ifp);
  2815. ipv6_ifa_notify(0, ifp);
  2816. in6_ifa_put(ifp);
  2817. goto restart;
  2818. }
  2819. #ifdef CONFIG_IPV6_PRIVACY
  2820. } else if ((ifp->flags&IFA_F_TEMPORARY) &&
  2821. !(ifp->flags&IFA_F_TENTATIVE)) {
  2822. unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
  2823. ifp->idev->cnf.dad_transmits *
  2824. ifp->idev->nd_parms->retrans_time / HZ;
  2825. if (age >= ifp->prefered_lft - regen_advance) {
  2826. struct inet6_ifaddr *ifpub = ifp->ifpub;
  2827. if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
  2828. next = ifp->tstamp + ifp->prefered_lft * HZ;
  2829. if (!ifp->regen_count && ifpub) {
  2830. ifp->regen_count++;
  2831. in6_ifa_hold(ifp);
  2832. in6_ifa_hold(ifpub);
  2833. spin_unlock(&ifp->lock);
  2834. spin_lock(&ifpub->lock);
  2835. ifpub->regen_count = 0;
  2836. spin_unlock(&ifpub->lock);
  2837. ipv6_create_tempaddr(ifpub, ifp);
  2838. in6_ifa_put(ifpub);
  2839. in6_ifa_put(ifp);
  2840. goto restart;
  2841. }
  2842. } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
  2843. next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
  2844. spin_unlock(&ifp->lock);
  2845. #endif
  2846. } else {
  2847. /* ifp->prefered_lft <= ifp->valid_lft */
  2848. if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
  2849. next = ifp->tstamp + ifp->prefered_lft * HZ;
  2850. spin_unlock(&ifp->lock);
  2851. }
  2852. }
  2853. }
  2854. next_sec = round_jiffies_up(next);
  2855. next_sched = next;
  2856. /* If rounded timeout is accurate enough, accept it. */
  2857. if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
  2858. next_sched = next_sec;
  2859. /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
  2860. if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
  2861. next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
  2862. ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
  2863. now, next, next_sec, next_sched));
  2864. addr_chk_timer.expires = next_sched;
  2865. add_timer(&addr_chk_timer);
  2866. spin_unlock(&addrconf_verify_lock);
  2867. rcu_read_unlock_bh();
  2868. }
  2869. static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
  2870. {
  2871. struct in6_addr *pfx = NULL;
  2872. if (addr)
  2873. pfx = nla_data(addr);
  2874. if (local) {
  2875. if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
  2876. pfx = NULL;
  2877. else
  2878. pfx = nla_data(local);
  2879. }
  2880. return pfx;
  2881. }
  2882. static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
  2883. [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
  2884. [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
  2885. [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
  2886. };
  2887. static int
  2888. inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
  2889. {
  2890. struct net *net = sock_net(skb->sk);
  2891. struct ifaddrmsg *ifm;
  2892. struct nlattr *tb[IFA_MAX+1];
  2893. struct in6_addr *pfx;
  2894. int err;
  2895. err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
  2896. if (err < 0)
  2897. return err;
  2898. ifm = nlmsg_data(nlh);
  2899. pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
  2900. if (pfx == NULL)
  2901. return -EINVAL;
  2902. return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
  2903. }
  2904. static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
  2905. u32 prefered_lft, u32 valid_lft)
  2906. {
  2907. u32 flags;
  2908. clock_t expires;
  2909. unsigned long timeout;
  2910. if (!valid_lft || (prefered_lft > valid_lft))
  2911. return -EINVAL;
  2912. timeout = addrconf_timeout_fixup(valid_lft, HZ);
  2913. if (addrconf_finite_timeout(timeout)) {
  2914. expires = jiffies_to_clock_t(timeout * HZ);
  2915. valid_lft = timeout;
  2916. flags = RTF_EXPIRES;
  2917. } else {
  2918. expires = 0;
  2919. flags = 0;
  2920. ifa_flags |= IFA_F_PERMANENT;
  2921. }
  2922. timeout = addrconf_timeout_fixup(prefered_lft, HZ);
  2923. if (addrconf_finite_timeout(timeout)) {
  2924. if (timeout == 0)
  2925. ifa_flags |= IFA_F_DEPRECATED;
  2926. prefered_lft = timeout;
  2927. }
  2928. spin_lock_bh(&ifp->lock);
  2929. ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags;
  2930. ifp->tstamp = jiffies;
  2931. ifp->valid_lft = valid_lft;
  2932. ifp->prefered_lft = prefered_lft;
  2933. spin_unlock_bh(&ifp->lock);
  2934. if (!(ifp->flags&IFA_F_TENTATIVE))
  2935. ipv6_ifa_notify(0, ifp);
  2936. addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
  2937. expires, flags);
  2938. addrconf_verify(0);
  2939. return 0;
  2940. }
  2941. static int
  2942. inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
  2943. {
  2944. struct net *net = sock_net(skb->sk);
  2945. struct ifaddrmsg *ifm;
  2946. struct nlattr *tb[IFA_MAX+1];
  2947. struct in6_addr *pfx;
  2948. struct inet6_ifaddr *ifa;
  2949. struct net_device *dev;
  2950. u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
  2951. u8 ifa_flags;
  2952. int err;
  2953. err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
  2954. if (err < 0)
  2955. return err;
  2956. ifm = nlmsg_data(nlh);
  2957. pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
  2958. if (pfx == NULL)
  2959. return -EINVAL;
  2960. if (tb[IFA_CACHEINFO]) {
  2961. struct ifa_cacheinfo *ci;
  2962. ci = nla_data(tb[IFA_CACHEINFO]);
  2963. valid_lft = ci->ifa_valid;
  2964. preferred_lft = ci->ifa_prefered;
  2965. } else {
  2966. preferred_lft = INFINITY_LIFE_TIME;
  2967. valid_lft = INFINITY_LIFE_TIME;
  2968. }
  2969. dev = __dev_get_by_index(net, ifm->ifa_index);
  2970. if (dev == NULL)
  2971. return -ENODEV;
  2972. /* We ignore other flags so far. */
  2973. ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
  2974. ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
  2975. if (ifa == NULL) {
  2976. /*
  2977. * It would be best to check for !NLM_F_CREATE here but
  2978. * userspace alreay relies on not having to provide this.
  2979. */
  2980. return inet6_addr_add(net, ifm->ifa_index, pfx,
  2981. ifm->ifa_prefixlen, ifa_flags,
  2982. preferred_lft, valid_lft);
  2983. }
  2984. if (nlh->nlmsg_flags & NLM_F_EXCL ||
  2985. !(nlh->nlmsg_flags & NLM_F_REPLACE))
  2986. err = -EEXIST;
  2987. else
  2988. err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
  2989. in6_ifa_put(ifa);
  2990. return err;
  2991. }
  2992. static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
  2993. u8 scope, int ifindex)
  2994. {
  2995. struct ifaddrmsg *ifm;
  2996. ifm = nlmsg_data(nlh);
  2997. ifm->ifa_family = AF_INET6;
  2998. ifm->ifa_prefixlen = prefixlen;
  2999. ifm->ifa_flags = flags;
  3000. ifm->ifa_scope = scope;
  3001. ifm->ifa_index = ifindex;
  3002. }
  3003. static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
  3004. unsigned long tstamp, u32 preferred, u32 valid)
  3005. {
  3006. struct ifa_cacheinfo ci;
  3007. ci.cstamp = cstamp_delta(cstamp);
  3008. ci.tstamp = cstamp_delta(tstamp);
  3009. ci.ifa_prefered = preferred;
  3010. ci.ifa_valid = valid;
  3011. return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
  3012. }
  3013. static inline int rt_scope(int ifa_scope)
  3014. {
  3015. if (ifa_scope & IFA_HOST)
  3016. return RT_SCOPE_HOST;
  3017. else if (ifa_scope & IFA_LINK)
  3018. return RT_SCOPE_LINK;
  3019. else if (ifa_scope & IFA_SITE)
  3020. return RT_SCOPE_SITE;
  3021. else
  3022. return RT_SCOPE_UNIVERSE;
  3023. }
  3024. static inline int inet6_ifaddr_msgsize(void)
  3025. {
  3026. return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
  3027. + nla_total_size(16) /* IFA_ADDRESS */
  3028. + nla_total_size(sizeof(struct ifa_cacheinfo));
  3029. }
  3030. static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
  3031. u32 pid, u32 seq, int event, unsigned int flags)
  3032. {
  3033. struct nlmsghdr *nlh;
  3034. u32 preferred, valid;
  3035. nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
  3036. if (nlh == NULL)
  3037. return -EMSGSIZE;
  3038. put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
  3039. ifa->idev->dev->ifindex);
  3040. if (!(ifa->flags&IFA_F_PERMANENT)) {
  3041. preferred = ifa->prefered_lft;
  3042. valid = ifa->valid_lft;
  3043. if (preferred != INFINITY_LIFE_TIME) {
  3044. long tval = (jiffies - ifa->tstamp)/HZ;
  3045. if (preferred > tval)
  3046. preferred -= tval;
  3047. else
  3048. preferred = 0;
  3049. if (valid != INFINITY_LIFE_TIME) {
  3050. if (valid > tval)
  3051. valid -= tval;
  3052. else
  3053. valid = 0;
  3054. }
  3055. }
  3056. } else {
  3057. preferred = INFINITY_LIFE_TIME;
  3058. valid = INFINITY_LIFE_TIME;
  3059. }
  3060. if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
  3061. put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
  3062. nlmsg_cancel(skb, nlh);
  3063. return -EMSGSIZE;
  3064. }
  3065. return nlmsg_end(skb, nlh);
  3066. }
  3067. static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
  3068. u32 pid, u32 seq, int event, u16 flags)
  3069. {
  3070. struct nlmsghdr *nlh;
  3071. u8 scope = RT_SCOPE_UNIVERSE;
  3072. int ifindex = ifmca->idev->dev->ifindex;
  3073. if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
  3074. scope = RT_SCOPE_SITE;
  3075. nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
  3076. if (nlh == NULL)
  3077. return -EMSGSIZE;
  3078. put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
  3079. if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
  3080. put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
  3081. INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
  3082. nlmsg_cancel(skb, nlh);
  3083. return -EMSGSIZE;
  3084. }
  3085. return nlmsg_end(skb, nlh);
  3086. }
  3087. static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
  3088. u32 pid, u32 seq, int event, unsigned int flags)
  3089. {
  3090. struct nlmsghdr *nlh;
  3091. u8 scope = RT_SCOPE_UNIVERSE;
  3092. int ifindex = ifaca->aca_idev->dev->ifindex;
  3093. if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
  3094. scope = RT_SCOPE_SITE;
  3095. nlh = nlmsg_put(skb, pid, seq, event, sizeof(struct ifaddrmsg), flags);
  3096. if (nlh == NULL)
  3097. return -EMSGSIZE;
  3098. put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
  3099. if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
  3100. put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
  3101. INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
  3102. nlmsg_cancel(skb, nlh);
  3103. return -EMSGSIZE;
  3104. }
  3105. return nlmsg_end(skb, nlh);
  3106. }
  3107. enum addr_type_t {
  3108. UNICAST_ADDR,
  3109. MULTICAST_ADDR,
  3110. ANYCAST_ADDR,
  3111. };
  3112. /* called with rcu_read_lock() */
  3113. static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
  3114. struct netlink_callback *cb, enum addr_type_t type,
  3115. int s_ip_idx, int *p_ip_idx)
  3116. {
  3117. struct ifmcaddr6 *ifmca;
  3118. struct ifacaddr6 *ifaca;
  3119. int err = 1;
  3120. int ip_idx = *p_ip_idx;
  3121. read_lock_bh(&idev->lock);
  3122. switch (type) {
  3123. case UNICAST_ADDR: {
  3124. struct inet6_ifaddr *ifa;
  3125. /* unicast address incl. temp addr */
  3126. list_for_each_entry(ifa, &idev->addr_list, if_list) {
  3127. if (++ip_idx < s_ip_idx)
  3128. continue;
  3129. err = inet6_fill_ifaddr(skb, ifa,
  3130. NETLINK_CB(cb->skb).pid,
  3131. cb->nlh->nlmsg_seq,
  3132. RTM_NEWADDR,
  3133. NLM_F_MULTI);
  3134. if (err <= 0)
  3135. break;
  3136. }
  3137. break;
  3138. }
  3139. case MULTICAST_ADDR:
  3140. /* multicast address */
  3141. for (ifmca = idev->mc_list; ifmca;
  3142. ifmca = ifmca->next, ip_idx++) {
  3143. if (ip_idx < s_ip_idx)
  3144. continue;
  3145. err = inet6_fill_ifmcaddr(skb, ifmca,
  3146. NETLINK_CB(cb->skb).pid,
  3147. cb->nlh->nlmsg_seq,
  3148. RTM_GETMULTICAST,
  3149. NLM_F_MULTI);
  3150. if (err <= 0)
  3151. break;
  3152. }
  3153. break;
  3154. case ANYCAST_ADDR:
  3155. /* anycast address */
  3156. for (ifaca = idev->ac_list; ifaca;
  3157. ifaca = ifaca->aca_next, ip_idx++) {
  3158. if (ip_idx < s_ip_idx)
  3159. continue;
  3160. err = inet6_fill_ifacaddr(skb, ifaca,
  3161. NETLINK_CB(cb->skb).pid,
  3162. cb->nlh->nlmsg_seq,
  3163. RTM_GETANYCAST,
  3164. NLM_F_MULTI);
  3165. if (err <= 0)
  3166. break;
  3167. }
  3168. break;
  3169. default:
  3170. break;
  3171. }
  3172. read_unlock_bh(&idev->lock);
  3173. *p_ip_idx = ip_idx;
  3174. return err;
  3175. }
  3176. static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
  3177. enum addr_type_t type)
  3178. {
  3179. struct net *net = sock_net(skb->sk);
  3180. int h, s_h;
  3181. int idx, ip_idx;
  3182. int s_idx, s_ip_idx;
  3183. struct net_device *dev;
  3184. struct inet6_dev *idev;
  3185. struct hlist_head *head;
  3186. struct hlist_node *node;
  3187. s_h = cb->args[0];
  3188. s_idx = idx = cb->args[1];
  3189. s_ip_idx = ip_idx = cb->args[2];
  3190. rcu_read_lock();
  3191. for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
  3192. idx = 0;
  3193. head = &net->dev_index_head[h];
  3194. hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
  3195. if (idx < s_idx)
  3196. goto cont;
  3197. if (h > s_h || idx > s_idx)
  3198. s_ip_idx = 0;
  3199. ip_idx = 0;
  3200. idev = __in6_dev_get(dev);
  3201. if (!idev)
  3202. goto cont;
  3203. if (in6_dump_addrs(idev, skb, cb, type,
  3204. s_ip_idx, &ip_idx) <= 0)
  3205. goto done;
  3206. cont:
  3207. idx++;
  3208. }
  3209. }
  3210. done:
  3211. rcu_read_unlock();
  3212. cb->args[0] = h;
  3213. cb->args[1] = idx;
  3214. cb->args[2] = ip_idx;
  3215. return skb->len;
  3216. }
  3217. static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
  3218. {
  3219. enum addr_type_t type = UNICAST_ADDR;
  3220. return inet6_dump_addr(skb, cb, type);
  3221. }
  3222. static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
  3223. {
  3224. enum addr_type_t type = MULTICAST_ADDR;
  3225. return inet6_dump_addr(skb, cb, type);
  3226. }
  3227. static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
  3228. {
  3229. enum addr_type_t type = ANYCAST_ADDR;
  3230. return inet6_dump_addr(skb, cb, type);
  3231. }
  3232. static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
  3233. void *arg)
  3234. {
  3235. struct net *net = sock_net(in_skb->sk);
  3236. struct ifaddrmsg *ifm;
  3237. struct nlattr *tb[IFA_MAX+1];
  3238. struct in6_addr *addr = NULL;
  3239. struct net_device *dev = NULL;
  3240. struct inet6_ifaddr *ifa;
  3241. struct sk_buff *skb;
  3242. int err;
  3243. err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
  3244. if (err < 0)
  3245. goto errout;
  3246. addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
  3247. if (addr == NULL) {
  3248. err = -EINVAL;
  3249. goto errout;
  3250. }
  3251. ifm = nlmsg_data(nlh);
  3252. if (ifm->ifa_index)
  3253. dev = __dev_get_by_index(net, ifm->ifa_index);
  3254. ifa = ipv6_get_ifaddr(net, addr, dev, 1);
  3255. if (!ifa) {
  3256. err = -EADDRNOTAVAIL;
  3257. goto errout;
  3258. }
  3259. skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
  3260. if (!skb) {
  3261. err = -ENOBUFS;
  3262. goto errout_ifa;
  3263. }
  3264. err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).pid,
  3265. nlh->nlmsg_seq, RTM_NEWADDR, 0);
  3266. if (err < 0) {
  3267. /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
  3268. WARN_ON(err == -EMSGSIZE);
  3269. kfree_skb(skb);
  3270. goto errout_ifa;
  3271. }
  3272. err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).pid);
  3273. errout_ifa:
  3274. in6_ifa_put(ifa);
  3275. errout:
  3276. return err;
  3277. }
  3278. static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
  3279. {
  3280. struct sk_buff *skb;
  3281. struct net *net = dev_net(ifa->idev->dev);
  3282. int err = -ENOBUFS;
  3283. skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
  3284. if (skb == NULL)
  3285. goto errout;
  3286. err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
  3287. if (err < 0) {
  3288. /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
  3289. WARN_ON(err == -EMSGSIZE);
  3290. kfree_skb(skb);
  3291. goto errout;
  3292. }
  3293. rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
  3294. return;
  3295. errout:
  3296. if (err < 0)
  3297. rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
  3298. }
  3299. static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
  3300. __s32 *array, int bytes)
  3301. {
  3302. BUG_ON(bytes < (DEVCONF_MAX * 4));
  3303. memset(array, 0, bytes);
  3304. array[DEVCONF_FORWARDING] = cnf->forwarding;
  3305. array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
  3306. array[DEVCONF_MTU6] = cnf->mtu6;
  3307. array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
  3308. array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
  3309. array[DEVCONF_AUTOCONF] = cnf->autoconf;
  3310. array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
  3311. array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
  3312. array[DEVCONF_RTR_SOLICIT_INTERVAL] =
  3313. jiffies_to_msecs(cnf->rtr_solicit_interval);
  3314. array[DEVCONF_RTR_SOLICIT_DELAY] =
  3315. jiffies_to_msecs(cnf->rtr_solicit_delay);
  3316. array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
  3317. #ifdef CONFIG_IPV6_PRIVACY
  3318. array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
  3319. array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
  3320. array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
  3321. array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
  3322. array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
  3323. #endif
  3324. array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
  3325. array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
  3326. array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
  3327. #ifdef CONFIG_IPV6_ROUTER_PREF
  3328. array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
  3329. array[DEVCONF_RTR_PROBE_INTERVAL] =
  3330. jiffies_to_msecs(cnf->rtr_probe_interval);
  3331. #ifdef CONFIG_IPV6_ROUTE_INFO
  3332. array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
  3333. #endif
  3334. #endif
  3335. array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
  3336. array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
  3337. #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
  3338. array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
  3339. #endif
  3340. #ifdef CONFIG_IPV6_MROUTE
  3341. array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
  3342. #endif
  3343. array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
  3344. array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
  3345. array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
  3346. }
  3347. static inline size_t inet6_ifla6_size(void)
  3348. {
  3349. return nla_total_size(4) /* IFLA_INET6_FLAGS */
  3350. + nla_total_size(sizeof(struct ifla_cacheinfo))
  3351. + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
  3352. + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
  3353. + nla_total_size(ICMP6_MIB_MAX * 8); /* IFLA_INET6_ICMP6STATS */
  3354. }
  3355. static inline size_t inet6_if_nlmsg_size(void)
  3356. {
  3357. return NLMSG_ALIGN(sizeof(struct ifinfomsg))
  3358. + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
  3359. + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
  3360. + nla_total_size(4) /* IFLA_MTU */
  3361. + nla_total_size(4) /* IFLA_LINK */
  3362. + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
  3363. }
  3364. static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
  3365. int items, int bytes)
  3366. {
  3367. int i;
  3368. int pad = bytes - sizeof(u64) * items;
  3369. BUG_ON(pad < 0);
  3370. /* Use put_unaligned() because stats may not be aligned for u64. */
  3371. put_unaligned(items, &stats[0]);
  3372. for (i = 1; i < items; i++)
  3373. put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
  3374. memset(&stats[items], 0, pad);
  3375. }
  3376. static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
  3377. int items, int bytes, size_t syncpoff)
  3378. {
  3379. int i;
  3380. int pad = bytes - sizeof(u64) * items;
  3381. BUG_ON(pad < 0);
  3382. /* Use put_unaligned() because stats may not be aligned for u64. */
  3383. put_unaligned(items, &stats[0]);
  3384. for (i = 1; i < items; i++)
  3385. put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
  3386. memset(&stats[items], 0, pad);
  3387. }
  3388. static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
  3389. int bytes)
  3390. {
  3391. switch (attrtype) {
  3392. case IFLA_INET6_STATS:
  3393. __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
  3394. IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
  3395. break;
  3396. case IFLA_INET6_ICMP6STATS:
  3397. __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
  3398. break;
  3399. }
  3400. }
  3401. static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
  3402. {
  3403. struct nlattr *nla;
  3404. struct ifla_cacheinfo ci;
  3405. if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
  3406. goto nla_put_failure;
  3407. ci.max_reasm_len = IPV6_MAXPLEN;
  3408. ci.tstamp = cstamp_delta(idev->tstamp);
  3409. ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
  3410. ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
  3411. if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
  3412. goto nla_put_failure;
  3413. nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
  3414. if (nla == NULL)
  3415. goto nla_put_failure;
  3416. ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
  3417. /* XXX - MC not implemented */
  3418. nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
  3419. if (nla == NULL)
  3420. goto nla_put_failure;
  3421. snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
  3422. nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
  3423. if (nla == NULL)
  3424. goto nla_put_failure;
  3425. snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
  3426. return 0;
  3427. nla_put_failure:
  3428. return -EMSGSIZE;
  3429. }
  3430. static size_t inet6_get_link_af_size(const struct net_device *dev)
  3431. {
  3432. if (!__in6_dev_get(dev))
  3433. return 0;
  3434. return inet6_ifla6_size();
  3435. }
  3436. static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
  3437. {
  3438. struct inet6_dev *idev = __in6_dev_get(dev);
  3439. if (!idev)
  3440. return -ENODATA;
  3441. if (inet6_fill_ifla6_attrs(skb, idev) < 0)
  3442. return -EMSGSIZE;
  3443. return 0;
  3444. }
  3445. static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
  3446. u32 pid, u32 seq, int event, unsigned int flags)
  3447. {
  3448. struct net_device *dev = idev->dev;
  3449. struct ifinfomsg *hdr;
  3450. struct nlmsghdr *nlh;
  3451. void *protoinfo;
  3452. nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
  3453. if (nlh == NULL)
  3454. return -EMSGSIZE;
  3455. hdr = nlmsg_data(nlh);
  3456. hdr->ifi_family = AF_INET6;
  3457. hdr->__ifi_pad = 0;
  3458. hdr->ifi_type = dev->type;
  3459. hdr->ifi_index = dev->ifindex;
  3460. hdr->ifi_flags = dev_get_flags(dev);
  3461. hdr->ifi_change = 0;
  3462. if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
  3463. (dev->addr_len &&
  3464. nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
  3465. nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
  3466. (dev->ifindex != dev->iflink &&
  3467. nla_put_u32(skb, IFLA_LINK, dev->iflink)))
  3468. goto nla_put_failure;
  3469. protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
  3470. if (protoinfo == NULL)
  3471. goto nla_put_failure;
  3472. if (inet6_fill_ifla6_attrs(skb, idev) < 0)
  3473. goto nla_put_failure;
  3474. nla_nest_end(skb, protoinfo);
  3475. return nlmsg_end(skb, nlh);
  3476. nla_put_failure:
  3477. nlmsg_cancel(skb, nlh);
  3478. return -EMSGSIZE;
  3479. }
  3480. static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
  3481. {
  3482. struct net *net = sock_net(skb->sk);
  3483. int h, s_h;
  3484. int idx = 0, s_idx;
  3485. struct net_device *dev;
  3486. struct inet6_dev *idev;
  3487. struct hlist_head *head;
  3488. struct hlist_node *node;
  3489. s_h = cb->args[0];
  3490. s_idx = cb->args[1];
  3491. rcu_read_lock();
  3492. for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
  3493. idx = 0;
  3494. head = &net->dev_index_head[h];
  3495. hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
  3496. if (idx < s_idx)
  3497. goto cont;
  3498. idev = __in6_dev_get(dev);
  3499. if (!idev)
  3500. goto cont;
  3501. if (inet6_fill_ifinfo(skb, idev,
  3502. NETLINK_CB(cb->skb).pid,
  3503. cb->nlh->nlmsg_seq,
  3504. RTM_NEWLINK, NLM_F_MULTI) <= 0)
  3505. goto out;
  3506. cont:
  3507. idx++;
  3508. }
  3509. }
  3510. out:
  3511. rcu_read_unlock();
  3512. cb->args[1] = idx;
  3513. cb->args[0] = h;
  3514. return skb->len;
  3515. }
  3516. void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
  3517. {
  3518. struct sk_buff *skb;
  3519. struct net *net = dev_net(idev->dev);
  3520. int err = -ENOBUFS;
  3521. skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
  3522. if (skb == NULL)
  3523. goto errout;
  3524. err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
  3525. if (err < 0) {
  3526. /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
  3527. WARN_ON(err == -EMSGSIZE);
  3528. kfree_skb(skb);
  3529. goto errout;
  3530. }
  3531. rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
  3532. return;
  3533. errout:
  3534. if (err < 0)
  3535. rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
  3536. }
  3537. static inline size_t inet6_prefix_nlmsg_size(void)
  3538. {
  3539. return NLMSG_ALIGN(sizeof(struct prefixmsg))
  3540. + nla_total_size(sizeof(struct in6_addr))
  3541. + nla_total_size(sizeof(struct prefix_cacheinfo));
  3542. }
  3543. static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
  3544. struct prefix_info *pinfo, u32 pid, u32 seq,
  3545. int event, unsigned int flags)
  3546. {
  3547. struct prefixmsg *pmsg;
  3548. struct nlmsghdr *nlh;
  3549. struct prefix_cacheinfo ci;
  3550. nlh = nlmsg_put(skb, pid, seq, event, sizeof(*pmsg), flags);
  3551. if (nlh == NULL)
  3552. return -EMSGSIZE;
  3553. pmsg = nlmsg_data(nlh);
  3554. pmsg->prefix_family = AF_INET6;
  3555. pmsg->prefix_pad1 = 0;
  3556. pmsg->prefix_pad2 = 0;
  3557. pmsg->prefix_ifindex = idev->dev->ifindex;
  3558. pmsg->prefix_len = pinfo->prefix_len;
  3559. pmsg->prefix_type = pinfo->type;
  3560. pmsg->prefix_pad3 = 0;
  3561. pmsg->prefix_flags = 0;
  3562. if (pinfo->onlink)
  3563. pmsg->prefix_flags |= IF_PREFIX_ONLINK;
  3564. if (pinfo->autoconf)
  3565. pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
  3566. if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
  3567. goto nla_put_failure;
  3568. ci.preferred_time = ntohl(pinfo->prefered);
  3569. ci.valid_time = ntohl(pinfo->valid);
  3570. if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
  3571. goto nla_put_failure;
  3572. return nlmsg_end(skb, nlh);
  3573. nla_put_failure:
  3574. nlmsg_cancel(skb, nlh);
  3575. return -EMSGSIZE;
  3576. }
  3577. static void inet6_prefix_notify(int event, struct inet6_dev *idev,
  3578. struct prefix_info *pinfo)
  3579. {
  3580. struct sk_buff *skb;
  3581. struct net *net = dev_net(idev->dev);
  3582. int err = -ENOBUFS;
  3583. skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
  3584. if (skb == NULL)
  3585. goto errout;
  3586. err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
  3587. if (err < 0) {
  3588. /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
  3589. WARN_ON(err == -EMSGSIZE);
  3590. kfree_skb(skb);
  3591. goto errout;
  3592. }
  3593. rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
  3594. return;
  3595. errout:
  3596. if (err < 0)
  3597. rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
  3598. }
  3599. static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
  3600. {
  3601. inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
  3602. switch (event) {
  3603. case RTM_NEWADDR:
  3604. /*
  3605. * If the address was optimistic
  3606. * we inserted the route at the start of
  3607. * our DAD process, so we don't need
  3608. * to do it again
  3609. */
  3610. if (!(ifp->rt->rt6i_node))
  3611. ip6_ins_rt(ifp->rt);
  3612. if (ifp->idev->cnf.forwarding)
  3613. addrconf_join_anycast(ifp);
  3614. break;
  3615. case RTM_DELADDR:
  3616. if (ifp->idev->cnf.forwarding)
  3617. addrconf_leave_anycast(ifp);
  3618. addrconf_leave_solict(ifp->idev, &ifp->addr);
  3619. dst_hold(&ifp->rt->dst);
  3620. if (ip6_del_rt(ifp->rt))
  3621. dst_free(&ifp->rt->dst);
  3622. break;
  3623. }
  3624. }
  3625. static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
  3626. {
  3627. rcu_read_lock_bh();
  3628. if (likely(ifp->idev->dead == 0))
  3629. __ipv6_ifa_notify(event, ifp);
  3630. rcu_read_unlock_bh();
  3631. }
  3632. #ifdef CONFIG_SYSCTL
  3633. static
  3634. int addrconf_sysctl_forward(ctl_table *ctl, int write,
  3635. void __user *buffer, size_t *lenp, loff_t *ppos)
  3636. {
  3637. int *valp = ctl->data;
  3638. int val = *valp;
  3639. loff_t pos = *ppos;
  3640. ctl_table lctl;
  3641. int ret;
  3642. /*
  3643. * ctl->data points to idev->cnf.forwarding, we should
  3644. * not modify it until we get the rtnl lock.
  3645. */
  3646. lctl = *ctl;
  3647. lctl.data = &val;
  3648. ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
  3649. if (write)
  3650. ret = addrconf_fixup_forwarding(ctl, valp, val);
  3651. if (ret)
  3652. *ppos = pos;
  3653. return ret;
  3654. }
  3655. static void dev_disable_change(struct inet6_dev *idev)
  3656. {
  3657. if (!idev || !idev->dev)
  3658. return;
  3659. if (idev->cnf.disable_ipv6)
  3660. addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
  3661. else
  3662. addrconf_notify(NULL, NETDEV_UP, idev->dev);
  3663. }
  3664. static void addrconf_disable_change(struct net *net, __s32 newf)
  3665. {
  3666. struct net_device *dev;
  3667. struct inet6_dev *idev;
  3668. rcu_read_lock();
  3669. for_each_netdev_rcu(net, dev) {
  3670. idev = __in6_dev_get(dev);
  3671. if (idev) {
  3672. int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
  3673. idev->cnf.disable_ipv6 = newf;
  3674. if (changed)
  3675. dev_disable_change(idev);
  3676. }
  3677. }
  3678. rcu_read_unlock();
  3679. }
  3680. static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
  3681. {
  3682. struct net *net;
  3683. int old;
  3684. if (!rtnl_trylock())
  3685. return restart_syscall();
  3686. net = (struct net *)table->extra2;
  3687. old = *p;
  3688. *p = newf;
  3689. if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
  3690. rtnl_unlock();
  3691. return 0;
  3692. }
  3693. if (p == &net->ipv6.devconf_all->disable_ipv6) {
  3694. net->ipv6.devconf_dflt->disable_ipv6 = newf;
  3695. addrconf_disable_change(net, newf);
  3696. } else if ((!newf) ^ (!old))
  3697. dev_disable_change((struct inet6_dev *)table->extra1);
  3698. rtnl_unlock();
  3699. return 0;
  3700. }
  3701. static
  3702. int addrconf_sysctl_disable(ctl_table *ctl, int write,
  3703. void __user *buffer, size_t *lenp, loff_t *ppos)
  3704. {
  3705. int *valp = ctl->data;
  3706. int val = *valp;
  3707. loff_t pos = *ppos;
  3708. ctl_table lctl;
  3709. int ret;
  3710. /*
  3711. * ctl->data points to idev->cnf.disable_ipv6, we should
  3712. * not modify it until we get the rtnl lock.
  3713. */
  3714. lctl = *ctl;
  3715. lctl.data = &val;
  3716. ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
  3717. if (write)
  3718. ret = addrconf_disable_ipv6(ctl, valp, val);
  3719. if (ret)
  3720. *ppos = pos;
  3721. return ret;
  3722. }
  3723. static struct addrconf_sysctl_table
  3724. {
  3725. struct ctl_table_header *sysctl_header;
  3726. ctl_table addrconf_vars[DEVCONF_MAX+1];
  3727. } addrconf_sysctl __read_mostly = {
  3728. .sysctl_header = NULL,
  3729. .addrconf_vars = {
  3730. {
  3731. .procname = "forwarding",
  3732. .data = &ipv6_devconf.forwarding,
  3733. .maxlen = sizeof(int),
  3734. .mode = 0644,
  3735. .proc_handler = addrconf_sysctl_forward,
  3736. },
  3737. {
  3738. .procname = "hop_limit",
  3739. .data = &ipv6_devconf.hop_limit,
  3740. .maxlen = sizeof(int),
  3741. .mode = 0644,
  3742. .proc_handler = proc_dointvec,
  3743. },
  3744. {
  3745. .procname = "mtu",
  3746. .data = &ipv6_devconf.mtu6,
  3747. .maxlen = sizeof(int),
  3748. .mode = 0644,
  3749. .proc_handler = proc_dointvec,
  3750. },
  3751. {
  3752. .procname = "accept_ra",
  3753. .data = &ipv6_devconf.accept_ra,
  3754. .maxlen = sizeof(int),
  3755. .mode = 0644,
  3756. .proc_handler = proc_dointvec,
  3757. },
  3758. {
  3759. .procname = "accept_redirects",
  3760. .data = &ipv6_devconf.accept_redirects,
  3761. .maxlen = sizeof(int),
  3762. .mode = 0644,
  3763. .proc_handler = proc_dointvec,
  3764. },
  3765. {
  3766. .procname = "autoconf",
  3767. .data = &ipv6_devconf.autoconf,
  3768. .maxlen = sizeof(int),
  3769. .mode = 0644,
  3770. .proc_handler = proc_dointvec,
  3771. },
  3772. {
  3773. .procname = "dad_transmits",
  3774. .data = &ipv6_devconf.dad_transmits,
  3775. .maxlen = sizeof(int),
  3776. .mode = 0644,
  3777. .proc_handler = proc_dointvec,
  3778. },
  3779. {
  3780. .procname = "router_solicitations",
  3781. .data = &ipv6_devconf.rtr_solicits,
  3782. .maxlen = sizeof(int),
  3783. .mode = 0644,
  3784. .proc_handler = proc_dointvec,
  3785. },
  3786. {
  3787. .procname = "router_solicitation_interval",
  3788. .data = &ipv6_devconf.rtr_solicit_interval,
  3789. .maxlen = sizeof(int),
  3790. .mode = 0644,
  3791. .proc_handler = proc_dointvec_jiffies,
  3792. },
  3793. {
  3794. .procname = "router_solicitation_delay",
  3795. .data = &ipv6_devconf.rtr_solicit_delay,
  3796. .maxlen = sizeof(int),
  3797. .mode = 0644,
  3798. .proc_handler = proc_dointvec_jiffies,
  3799. },
  3800. {
  3801. .procname = "force_mld_version",
  3802. .data = &ipv6_devconf.force_mld_version,
  3803. .maxlen = sizeof(int),
  3804. .mode = 0644,
  3805. .proc_handler = proc_dointvec,
  3806. },
  3807. #ifdef CONFIG_IPV6_PRIVACY
  3808. {
  3809. .procname = "use_tempaddr",
  3810. .data = &ipv6_devconf.use_tempaddr,
  3811. .maxlen = sizeof(int),
  3812. .mode = 0644,
  3813. .proc_handler = proc_dointvec,
  3814. },
  3815. {
  3816. .procname = "temp_valid_lft",
  3817. .data = &ipv6_devconf.temp_valid_lft,
  3818. .maxlen = sizeof(int),
  3819. .mode = 0644,
  3820. .proc_handler = proc_dointvec,
  3821. },
  3822. {
  3823. .procname = "temp_prefered_lft",
  3824. .data = &ipv6_devconf.temp_prefered_lft,
  3825. .maxlen = sizeof(int),
  3826. .mode = 0644,
  3827. .proc_handler = proc_dointvec,
  3828. },
  3829. {
  3830. .procname = "regen_max_retry",
  3831. .data = &ipv6_devconf.regen_max_retry,
  3832. .maxlen = sizeof(int),
  3833. .mode = 0644,
  3834. .proc_handler = proc_dointvec,
  3835. },
  3836. {
  3837. .procname = "max_desync_factor",
  3838. .data = &ipv6_devconf.max_desync_factor,
  3839. .maxlen = sizeof(int),
  3840. .mode = 0644,
  3841. .proc_handler = proc_dointvec,
  3842. },
  3843. #endif
  3844. {
  3845. .procname = "max_addresses",
  3846. .data = &ipv6_devconf.max_addresses,
  3847. .maxlen = sizeof(int),
  3848. .mode = 0644,
  3849. .proc_handler = proc_dointvec,
  3850. },
  3851. {
  3852. .procname = "accept_ra_defrtr",
  3853. .data = &ipv6_devconf.accept_ra_defrtr,
  3854. .maxlen = sizeof(int),
  3855. .mode = 0644,
  3856. .proc_handler = proc_dointvec,
  3857. },
  3858. {
  3859. .procname = "accept_ra_pinfo",
  3860. .data = &ipv6_devconf.accept_ra_pinfo,
  3861. .maxlen = sizeof(int),
  3862. .mode = 0644,
  3863. .proc_handler = proc_dointvec,
  3864. },
  3865. #ifdef CONFIG_IPV6_ROUTER_PREF
  3866. {
  3867. .procname = "accept_ra_rtr_pref",
  3868. .data = &ipv6_devconf.accept_ra_rtr_pref,
  3869. .maxlen = sizeof(int),
  3870. .mode = 0644,
  3871. .proc_handler = proc_dointvec,
  3872. },
  3873. {
  3874. .procname = "router_probe_interval",
  3875. .data = &ipv6_devconf.rtr_probe_interval,
  3876. .maxlen = sizeof(int),
  3877. .mode = 0644,
  3878. .proc_handler = proc_dointvec_jiffies,
  3879. },
  3880. #ifdef CONFIG_IPV6_ROUTE_INFO
  3881. {
  3882. .procname = "accept_ra_rt_info_max_plen",
  3883. .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
  3884. .maxlen = sizeof(int),
  3885. .mode = 0644,
  3886. .proc_handler = proc_dointvec,
  3887. },
  3888. #endif
  3889. #endif
  3890. {
  3891. .procname = "proxy_ndp",
  3892. .data = &ipv6_devconf.proxy_ndp,
  3893. .maxlen = sizeof(int),
  3894. .mode = 0644,
  3895. .proc_handler = proc_dointvec,
  3896. },
  3897. {
  3898. .procname = "accept_source_route",
  3899. .data = &ipv6_devconf.accept_source_route,
  3900. .maxlen = sizeof(int),
  3901. .mode = 0644,
  3902. .proc_handler = proc_dointvec,
  3903. },
  3904. #ifdef CONFIG_IPV6_OPTIMISTIC_DAD
  3905. {
  3906. .procname = "optimistic_dad",
  3907. .data = &ipv6_devconf.optimistic_dad,
  3908. .maxlen = sizeof(int),
  3909. .mode = 0644,
  3910. .proc_handler = proc_dointvec,
  3911. },
  3912. #endif
  3913. #ifdef CONFIG_IPV6_MROUTE
  3914. {
  3915. .procname = "mc_forwarding",
  3916. .data = &ipv6_devconf.mc_forwarding,
  3917. .maxlen = sizeof(int),
  3918. .mode = 0444,
  3919. .proc_handler = proc_dointvec,
  3920. },
  3921. #endif
  3922. {
  3923. .procname = "disable_ipv6",
  3924. .data = &ipv6_devconf.disable_ipv6,
  3925. .maxlen = sizeof(int),
  3926. .mode = 0644,
  3927. .proc_handler = addrconf_sysctl_disable,
  3928. },
  3929. {
  3930. .procname = "accept_dad",
  3931. .data = &ipv6_devconf.accept_dad,
  3932. .maxlen = sizeof(int),
  3933. .mode = 0644,
  3934. .proc_handler = proc_dointvec,
  3935. },
  3936. {
  3937. .procname = "force_tllao",
  3938. .data = &ipv6_devconf.force_tllao,
  3939. .maxlen = sizeof(int),
  3940. .mode = 0644,
  3941. .proc_handler = proc_dointvec
  3942. },
  3943. {
  3944. /* sentinel */
  3945. }
  3946. },
  3947. };
  3948. static int __addrconf_sysctl_register(struct net *net, char *dev_name,
  3949. struct inet6_dev *idev, struct ipv6_devconf *p)
  3950. {
  3951. int i;
  3952. struct addrconf_sysctl_table *t;
  3953. char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
  3954. t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
  3955. if (t == NULL)
  3956. goto out;
  3957. for (i = 0; t->addrconf_vars[i].data; i++) {
  3958. t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
  3959. t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
  3960. t->addrconf_vars[i].extra2 = net;
  3961. }
  3962. snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
  3963. t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
  3964. if (t->sysctl_header == NULL)
  3965. goto free;
  3966. p->sysctl = t;
  3967. return 0;
  3968. free:
  3969. kfree(t);
  3970. out:
  3971. return -ENOBUFS;
  3972. }
  3973. static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
  3974. {
  3975. struct addrconf_sysctl_table *t;
  3976. if (p->sysctl == NULL)
  3977. return;
  3978. t = p->sysctl;
  3979. p->sysctl = NULL;
  3980. unregister_net_sysctl_table(t->sysctl_header);
  3981. kfree(t);
  3982. }
  3983. static void addrconf_sysctl_register(struct inet6_dev *idev)
  3984. {
  3985. neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
  3986. &ndisc_ifinfo_sysctl_change);
  3987. __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
  3988. idev, &idev->cnf);
  3989. }
  3990. static void addrconf_sysctl_unregister(struct inet6_dev *idev)
  3991. {
  3992. __addrconf_sysctl_unregister(&idev->cnf);
  3993. neigh_sysctl_unregister(idev->nd_parms);
  3994. }
  3995. #endif
  3996. static int __net_init addrconf_init_net(struct net *net)
  3997. {
  3998. int err;
  3999. struct ipv6_devconf *all, *dflt;
  4000. err = -ENOMEM;
  4001. all = &ipv6_devconf;
  4002. dflt = &ipv6_devconf_dflt;
  4003. if (!net_eq(net, &init_net)) {
  4004. all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
  4005. if (all == NULL)
  4006. goto err_alloc_all;
  4007. dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
  4008. if (dflt == NULL)
  4009. goto err_alloc_dflt;
  4010. } else {
  4011. /* these will be inherited by all namespaces */
  4012. dflt->autoconf = ipv6_defaults.autoconf;
  4013. dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
  4014. }
  4015. net->ipv6.devconf_all = all;
  4016. net->ipv6.devconf_dflt = dflt;
  4017. #ifdef CONFIG_SYSCTL
  4018. err = __addrconf_sysctl_register(net, "all", NULL, all);
  4019. if (err < 0)
  4020. goto err_reg_all;
  4021. err = __addrconf_sysctl_register(net, "default", NULL, dflt);
  4022. if (err < 0)
  4023. goto err_reg_dflt;
  4024. #endif
  4025. return 0;
  4026. #ifdef CONFIG_SYSCTL
  4027. err_reg_dflt:
  4028. __addrconf_sysctl_unregister(all);
  4029. err_reg_all:
  4030. kfree(dflt);
  4031. #endif
  4032. err_alloc_dflt:
  4033. kfree(all);
  4034. err_alloc_all:
  4035. return err;
  4036. }
  4037. static void __net_exit addrconf_exit_net(struct net *net)
  4038. {
  4039. #ifdef CONFIG_SYSCTL
  4040. __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
  4041. __addrconf_sysctl_unregister(net->ipv6.devconf_all);
  4042. #endif
  4043. if (!net_eq(net, &init_net)) {
  4044. kfree(net->ipv6.devconf_dflt);
  4045. kfree(net->ipv6.devconf_all);
  4046. }
  4047. }
  4048. static struct pernet_operations addrconf_ops = {
  4049. .init = addrconf_init_net,
  4050. .exit = addrconf_exit_net,
  4051. };
  4052. /*
  4053. * Device notifier
  4054. */
  4055. int register_inet6addr_notifier(struct notifier_block *nb)
  4056. {
  4057. return atomic_notifier_chain_register(&inet6addr_chain, nb);
  4058. }
  4059. EXPORT_SYMBOL(register_inet6addr_notifier);
  4060. int unregister_inet6addr_notifier(struct notifier_block *nb)
  4061. {
  4062. return atomic_notifier_chain_unregister(&inet6addr_chain, nb);
  4063. }
  4064. EXPORT_SYMBOL(unregister_inet6addr_notifier);
  4065. static struct rtnl_af_ops inet6_ops = {
  4066. .family = AF_INET6,
  4067. .fill_link_af = inet6_fill_link_af,
  4068. .get_link_af_size = inet6_get_link_af_size,
  4069. };
  4070. /*
  4071. * Init / cleanup code
  4072. */
  4073. int __init addrconf_init(void)
  4074. {
  4075. int i, err;
  4076. err = ipv6_addr_label_init();
  4077. if (err < 0) {
  4078. printk(KERN_CRIT "IPv6 Addrconf:"
  4079. " cannot initialize default policy table: %d.\n", err);
  4080. goto out;
  4081. }
  4082. err = register_pernet_subsys(&addrconf_ops);
  4083. if (err < 0)
  4084. goto out_addrlabel;
  4085. /* The addrconf netdev notifier requires that loopback_dev
  4086. * has it's ipv6 private information allocated and setup
  4087. * before it can bring up and give link-local addresses
  4088. * to other devices which are up.
  4089. *
  4090. * Unfortunately, loopback_dev is not necessarily the first
  4091. * entry in the global dev_base list of net devices. In fact,
  4092. * it is likely to be the very last entry on that list.
  4093. * So this causes the notifier registry below to try and
  4094. * give link-local addresses to all devices besides loopback_dev
  4095. * first, then loopback_dev, which cases all the non-loopback_dev
  4096. * devices to fail to get a link-local address.
  4097. *
  4098. * So, as a temporary fix, allocate the ipv6 structure for
  4099. * loopback_dev first by hand.
  4100. * Longer term, all of the dependencies ipv6 has upon the loopback
  4101. * device and it being up should be removed.
  4102. */
  4103. rtnl_lock();
  4104. if (!ipv6_add_dev(init_net.loopback_dev))
  4105. err = -ENOMEM;
  4106. rtnl_unlock();
  4107. if (err)
  4108. goto errlo;
  4109. for (i = 0; i < IN6_ADDR_HSIZE; i++)
  4110. INIT_HLIST_HEAD(&inet6_addr_lst[i]);
  4111. register_netdevice_notifier(&ipv6_dev_notf);
  4112. addrconf_verify(0);
  4113. err = rtnl_af_register(&inet6_ops);
  4114. if (err < 0)
  4115. goto errout_af;
  4116. err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
  4117. NULL);
  4118. if (err < 0)
  4119. goto errout;
  4120. /* Only the first call to __rtnl_register can fail */
  4121. __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
  4122. __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
  4123. __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
  4124. inet6_dump_ifaddr, NULL);
  4125. __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
  4126. inet6_dump_ifmcaddr, NULL);
  4127. __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
  4128. inet6_dump_ifacaddr, NULL);
  4129. ipv6_addr_label_rtnl_register();
  4130. return 0;
  4131. errout:
  4132. rtnl_af_unregister(&inet6_ops);
  4133. errout_af:
  4134. unregister_netdevice_notifier(&ipv6_dev_notf);
  4135. errlo:
  4136. unregister_pernet_subsys(&addrconf_ops);
  4137. out_addrlabel:
  4138. ipv6_addr_label_cleanup();
  4139. out:
  4140. return err;
  4141. }
  4142. void addrconf_cleanup(void)
  4143. {
  4144. struct net_device *dev;
  4145. int i;
  4146. unregister_netdevice_notifier(&ipv6_dev_notf);
  4147. unregister_pernet_subsys(&addrconf_ops);
  4148. ipv6_addr_label_cleanup();
  4149. rtnl_lock();
  4150. __rtnl_af_unregister(&inet6_ops);
  4151. /* clean dev list */
  4152. for_each_netdev(&init_net, dev) {
  4153. if (__in6_dev_get(dev) == NULL)
  4154. continue;
  4155. addrconf_ifdown(dev, 1);
  4156. }
  4157. addrconf_ifdown(init_net.loopback_dev, 2);
  4158. /*
  4159. * Check hash table.
  4160. */
  4161. spin_lock_bh(&addrconf_hash_lock);
  4162. for (i = 0; i < IN6_ADDR_HSIZE; i++)
  4163. WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
  4164. spin_unlock_bh(&addrconf_hash_lock);
  4165. del_timer(&addr_chk_timer);
  4166. rtnl_unlock();
  4167. }