kconfiglib.py 254 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164
  1. # Copyright (c) 2011-2019, Ulf Magnusson
  2. # SPDX-License-Identifier: ISC
  3. """
  4. Overview
  5. ========
  6. Kconfiglib is a Python 2/3 library for scripting and extracting information
  7. from Kconfig (https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt)
  8. configuration systems.
  9. See the homepage at https://github.com/ulfalizer/Kconfiglib for a longer
  10. overview.
  11. Since Kconfiglib 12.0.0, the library version is available in
  12. kconfiglib.VERSION, which is a (<major>, <minor>, <patch>) tuple, e.g.
  13. (12, 0, 0).
  14. Using Kconfiglib on the Linux kernel with the Makefile targets
  15. ==============================================================
  16. For the Linux kernel, a handy interface is provided by the
  17. scripts/kconfig/Makefile patch, which can be applied with either 'git am' or
  18. the 'patch' utility:
  19. $ wget -qO- https://raw.githubusercontent.com/ulfalizer/Kconfiglib/master/makefile.patch | git am
  20. $ wget -qO- https://raw.githubusercontent.com/ulfalizer/Kconfiglib/master/makefile.patch | patch -p1
  21. Warning: Not passing -p1 to patch will cause the wrong file to be patched.
  22. Please tell me if the patch does not apply. It should be trivial to apply
  23. manually, as it's just a block of text that needs to be inserted near the other
  24. *conf: targets in scripts/kconfig/Makefile.
  25. Look further down for a motivation for the Makefile patch and for instructions
  26. on how you can use Kconfiglib without it.
  27. If you do not wish to install Kconfiglib via pip, the Makefile patch is set up
  28. so that you can also just clone Kconfiglib into the kernel root:
  29. $ git clone git://github.com/ulfalizer/Kconfiglib.git
  30. $ git am Kconfiglib/makefile.patch (or 'patch -p1 < Kconfiglib/makefile.patch')
  31. Warning: The directory name Kconfiglib/ is significant in this case, because
  32. it's added to PYTHONPATH by the new targets in makefile.patch.
  33. The targets added by the Makefile patch are described in the following
  34. sections.
  35. make kmenuconfig
  36. ----------------
  37. This target runs the curses menuconfig interface with Python 3. As of
  38. Kconfiglib 12.2.0, both Python 2 and Python 3 are supported (previously, only
  39. Python 3 was supported, so this was a backport).
  40. make guiconfig
  41. --------------
  42. This target runs the Tkinter menuconfig interface. Both Python 2 and Python 3
  43. are supported. To change the Python interpreter used, pass
  44. PYTHONCMD=<executable> to 'make'. The default is 'python'.
  45. make [ARCH=<arch>] iscriptconfig
  46. --------------------------------
  47. This target gives an interactive Python prompt where a Kconfig instance has
  48. been preloaded and is available in 'kconf'. To change the Python interpreter
  49. used, pass PYTHONCMD=<executable> to 'make'. The default is 'python'.
  50. To get a feel for the API, try evaluating and printing the symbols in
  51. kconf.defined_syms, and explore the MenuNode menu tree starting at
  52. kconf.top_node by following 'next' and 'list' pointers.
  53. The item contained in a menu node is found in MenuNode.item (note that this can
  54. be one of the constants kconfiglib.MENU and kconfiglib.COMMENT), and all
  55. symbols and choices have a 'nodes' attribute containing their menu nodes
  56. (usually only one). Printing a menu node will print its item, in Kconfig
  57. format.
  58. If you want to look up a symbol by name, use the kconf.syms dictionary.
  59. make scriptconfig SCRIPT=<script> [SCRIPT_ARG=<arg>]
  60. ----------------------------------------------------
  61. This target runs the Python script given by the SCRIPT parameter on the
  62. configuration. sys.argv[1] holds the name of the top-level Kconfig file
  63. (currently always "Kconfig" in practice), and sys.argv[2] holds the SCRIPT_ARG
  64. argument, if given.
  65. See the examples/ subdirectory for example scripts.
  66. make dumpvarsconfig
  67. -------------------
  68. This target prints a list of all environment variables referenced from the
  69. Kconfig files, together with their values. See the
  70. Kconfiglib/examples/dumpvars.py script.
  71. Only environment variables that are referenced via the Kconfig preprocessor
  72. $(FOO) syntax are included. The preprocessor was added in Linux 4.18.
  73. Using Kconfiglib without the Makefile targets
  74. =============================================
  75. The make targets are only needed to pick up environment variables exported from
  76. the Kbuild makefiles and referenced inside Kconfig files, via e.g.
  77. 'source "arch/$(SRCARCH)/Kconfig" and commands run via '$(shell,...)'.
  78. These variables are referenced as of writing (Linux 4.18), together with sample
  79. values:
  80. srctree (.)
  81. ARCH (x86)
  82. SRCARCH (x86)
  83. KERNELVERSION (4.18.0)
  84. CC (gcc)
  85. HOSTCC (gcc)
  86. HOSTCXX (g++)
  87. CC_VERSION_TEXT (gcc (Ubuntu 7.3.0-16ubuntu3) 7.3.0)
  88. Older kernels only reference ARCH, SRCARCH, and KERNELVERSION.
  89. If your kernel is recent enough (4.18+), you can get a list of referenced
  90. environment variables via 'make dumpvarsconfig' (see above). Note that this
  91. command is added by the Makefile patch.
  92. To run Kconfiglib without the Makefile patch, set the environment variables
  93. manually:
  94. $ srctree=. ARCH=x86 SRCARCH=x86 KERNELVERSION=`make kernelversion` ... python(3)
  95. >>> import kconfiglib
  96. >>> kconf = kconfiglib.Kconfig() # filename defaults to "Kconfig"
  97. Search the top-level Makefile for "Additional ARCH settings" to see other
  98. possibilities for ARCH and SRCARCH.
  99. Intro to symbol values
  100. ======================
  101. Kconfiglib has the same assignment semantics as the C implementation.
  102. Any symbol can be assigned a value by the user (via Kconfig.load_config() or
  103. Symbol.set_value()), but this user value is only respected if the symbol is
  104. visible, which corresponds to it (currently) being visible in the menuconfig
  105. interface.
  106. For symbols with prompts, the visibility of the symbol is determined by the
  107. condition on the prompt. Symbols without prompts are never visible, so setting
  108. a user value on them is pointless. A warning will be printed by default if
  109. Symbol.set_value() is called on a promptless symbol. Assignments to promptless
  110. symbols are normal within a .config file, so no similar warning will be printed
  111. by load_config().
  112. Dependencies from parents and 'if'/'depends on' are propagated to properties,
  113. including prompts, so these two configurations are logically equivalent:
  114. (1)
  115. menu "menu"
  116. depends on A
  117. if B
  118. config FOO
  119. tristate "foo" if D
  120. default y
  121. depends on C
  122. endif
  123. endmenu
  124. (2)
  125. menu "menu"
  126. depends on A
  127. config FOO
  128. tristate "foo" if A && B && C && D
  129. default y if A && B && C
  130. endmenu
  131. In this example, A && B && C && D (the prompt condition) needs to be non-n for
  132. FOO to be visible (assignable). If its value is m, the symbol can only be
  133. assigned the value m: The visibility sets an upper bound on the value that can
  134. be assigned by the user, and any higher user value will be truncated down.
  135. 'default' properties are independent of the visibility, though a 'default' will
  136. often get the same condition as the prompt due to dependency propagation.
  137. 'default' properties are used if the symbol is not visible or has no user
  138. value.
  139. Symbols with no user value (or that have a user value but are not visible) and
  140. no (active) 'default' default to n for bool/tristate symbols, and to the empty
  141. string for other symbol types.
  142. 'select' works similarly to symbol visibility, but sets a lower bound on the
  143. value of the symbol. The lower bound is determined by the value of the
  144. select*ing* symbol. 'select' does not respect visibility, so non-visible
  145. symbols can be forced to a particular (minimum) value by a select as well.
  146. For non-bool/tristate symbols, it only matters whether the visibility is n or
  147. non-n: m visibility acts the same as y visibility.
  148. Conditions on 'default' and 'select' work in mostly intuitive ways. If the
  149. condition is n, the 'default' or 'select' is disabled. If it is m, the
  150. 'default' or 'select' value (the value of the selecting symbol) is truncated
  151. down to m.
  152. When writing a configuration with Kconfig.write_config(), only symbols that are
  153. visible, have an (active) default, or are selected will get written out (note
  154. that this includes all symbols that would accept user values). Kconfiglib
  155. matches the .config format produced by the C implementations down to the
  156. character. This eases testing.
  157. For a visible bool/tristate symbol FOO with value n, this line is written to
  158. .config:
  159. # CONFIG_FOO is not set
  160. The point is to remember the user n selection (which might differ from the
  161. default value the symbol would get), while at the same sticking to the rule
  162. that undefined corresponds to n (.config uses Makefile format, making the line
  163. above a comment). When the .config file is read back in, this line will be
  164. treated the same as the following assignment:
  165. CONFIG_FOO=n
  166. In Kconfiglib, the set of (currently) assignable values for a bool/tristate
  167. symbol appear in Symbol.assignable. For other symbol types, just check if
  168. sym.visibility is non-0 (non-n) to see whether the user value will have an
  169. effect.
  170. Intro to the menu tree
  171. ======================
  172. The menu structure, as seen in e.g. menuconfig, is represented by a tree of
  173. MenuNode objects. The top node of the configuration corresponds to an implicit
  174. top-level menu, the title of which is shown at the top in the standard
  175. menuconfig interface. (The title is also available in Kconfig.mainmenu_text in
  176. Kconfiglib.)
  177. The top node is found in Kconfig.top_node. From there, you can visit child menu
  178. nodes by following the 'list' pointer, and any following menu nodes by
  179. following the 'next' pointer. Usually, a non-None 'list' pointer indicates a
  180. menu or Choice, but menu nodes for symbols can sometimes have a non-None 'list'
  181. pointer too due to submenus created implicitly from dependencies.
  182. MenuNode.item is either a Symbol or a Choice object, or one of the constants
  183. MENU and COMMENT. The prompt of the menu node can be found in MenuNode.prompt,
  184. which also holds the title for menus and comments. For Symbol and Choice,
  185. MenuNode.help holds the help text (if any, otherwise None).
  186. Most symbols will only have a single menu node. A symbol defined in multiple
  187. locations will have one menu node for each location. The list of menu nodes for
  188. a Symbol or Choice can be found in the Symbol/Choice.nodes attribute.
  189. Note that prompts and help texts for symbols and choices are stored in their
  190. menu node(s) rather than in the Symbol or Choice objects themselves. This makes
  191. it possible to define a symbol in multiple locations with a different prompt or
  192. help text in each location. To get the help text or prompt for a symbol with a
  193. single menu node, do sym.nodes[0].help and sym.nodes[0].prompt, respectively.
  194. The prompt is a (text, condition) tuple, where condition determines the
  195. visibility (see 'Intro to expressions' below).
  196. This organization mirrors the C implementation. MenuNode is called
  197. 'struct menu' there, but I thought "menu" was a confusing name.
  198. It is possible to give a Choice a name and define it in multiple locations,
  199. hence why Choice.nodes is also a list.
  200. As a convenience, the properties added at a particular definition location are
  201. available on the MenuNode itself, in e.g. MenuNode.defaults. This is helpful
  202. when generating documentation, so that symbols/choices defined in multiple
  203. locations can be shown with the correct properties at each location.
  204. Intro to expressions
  205. ====================
  206. Expressions can be evaluated with the expr_value() function and printed with
  207. the expr_str() function (these are used internally as well). Evaluating an
  208. expression always yields a tristate value, where n, m, and y are represented as
  209. 0, 1, and 2, respectively.
  210. The following table should help you figure out how expressions are represented.
  211. A, B, C, ... are symbols (Symbol instances), NOT is the kconfiglib.NOT
  212. constant, etc.
  213. Expression Representation
  214. ---------- --------------
  215. A A
  216. "A" A (constant symbol)
  217. !A (NOT, A)
  218. A && B (AND, A, B)
  219. A && B && C (AND, A, (AND, B, C))
  220. A || B (OR, A, B)
  221. A || (B && C && D) (OR, A, (AND, B, (AND, C, D)))
  222. A = B (EQUAL, A, B)
  223. A != "foo" (UNEQUAL, A, foo (constant symbol))
  224. A && B = C && D (AND, A, (AND, (EQUAL, B, C), D))
  225. n Kconfig.n (constant symbol)
  226. m Kconfig.m (constant symbol)
  227. y Kconfig.y (constant symbol)
  228. "y" Kconfig.y (constant symbol)
  229. Strings like "foo" in 'default "foo"' or 'depends on SYM = "foo"' are
  230. represented as constant symbols, so the only values that appear in expressions
  231. are symbols***. This mirrors the C implementation.
  232. ***For choice symbols, the parent Choice will appear in expressions as well,
  233. but it's usually invisible as the value interfaces of Symbol and Choice are
  234. identical. This mirrors the C implementation and makes different choice modes
  235. "just work".
  236. Manual evaluation examples:
  237. - The value of A && B is min(A.tri_value, B.tri_value)
  238. - The value of A || B is max(A.tri_value, B.tri_value)
  239. - The value of !A is 2 - A.tri_value
  240. - The value of A = B is 2 (y) if A.str_value == B.str_value, and 0 (n)
  241. otherwise. Note that str_value is used here instead of tri_value.
  242. For constant (as well as undefined) symbols, str_value matches the name of
  243. the symbol. This mirrors the C implementation and explains why
  244. 'depends on SYM = "foo"' above works as expected.
  245. n/m/y are automatically converted to the corresponding constant symbols
  246. "n"/"m"/"y" (Kconfig.n/m/y) during parsing.
  247. Kconfig.const_syms is a dictionary like Kconfig.syms but for constant symbols.
  248. If a condition is missing (e.g., <cond> when the 'if <cond>' is removed from
  249. 'default A if <cond>'), it is actually Kconfig.y. The standard __str__()
  250. functions just avoid printing 'if y' conditions to give cleaner output.
  251. Kconfig extensions
  252. ==================
  253. Kconfiglib includes a couple of Kconfig extensions:
  254. 'source' with relative path
  255. ---------------------------
  256. The 'rsource' statement sources Kconfig files with a path relative to directory
  257. of the Kconfig file containing the 'rsource' statement, instead of relative to
  258. the project root.
  259. Consider following directory tree:
  260. Project
  261. +--Kconfig
  262. |
  263. +--src
  264. +--Kconfig
  265. |
  266. +--SubSystem1
  267. +--Kconfig
  268. |
  269. +--ModuleA
  270. +--Kconfig
  271. In this example, assume that src/SubSystem1/Kconfig wants to source
  272. src/SubSystem1/ModuleA/Kconfig.
  273. With 'source', this statement would be used:
  274. source "src/SubSystem1/ModuleA/Kconfig"
  275. With 'rsource', this turns into
  276. rsource "ModuleA/Kconfig"
  277. If an absolute path is given to 'rsource', it acts the same as 'source'.
  278. 'rsource' can be used to create "position-independent" Kconfig trees that can
  279. be moved around freely.
  280. Globbing 'source'
  281. -----------------
  282. 'source' and 'rsource' accept glob patterns, sourcing all matching Kconfig
  283. files. They require at least one matching file, raising a KconfigError
  284. otherwise.
  285. For example, the following statement might source sub1/foofoofoo and
  286. sub2/foobarfoo:
  287. source "sub[12]/foo*foo"
  288. The glob patterns accepted are the same as for the standard glob.glob()
  289. function.
  290. Two additional statements are provided for cases where it's acceptable for a
  291. pattern to match no files: 'osource' and 'orsource' (the o is for "optional").
  292. For example, the following statements will be no-ops if neither "foo" nor any
  293. files matching "bar*" exist:
  294. osource "foo"
  295. osource "bar*"
  296. 'orsource' does a relative optional source.
  297. 'source' and 'osource' are analogous to 'include' and '-include' in Make.
  298. Generalized def_* keywords
  299. --------------------------
  300. def_int, def_hex, and def_string are available in addition to def_bool and
  301. def_tristate, allowing int, hex, and string symbols to be given a type and a
  302. default at the same time.
  303. Extra optional warnings
  304. -----------------------
  305. Some optional warnings can be controlled via environment variables:
  306. - KCONFIG_WARN_UNDEF: If set to 'y', warnings will be generated for all
  307. references to undefined symbols within Kconfig files. The only gotcha is
  308. that all hex literals must be prefixed with "0x" or "0X", to make it
  309. possible to distinguish them from symbol references.
  310. Some projects (e.g. the Linux kernel) use multiple Kconfig trees with many
  311. shared Kconfig files, leading to some safe undefined symbol references.
  312. KCONFIG_WARN_UNDEF is useful in projects that only have a single Kconfig
  313. tree though.
  314. KCONFIG_STRICT is an older alias for this environment variable, supported
  315. for backwards compatibility.
  316. - KCONFIG_WARN_UNDEF_ASSIGN: If set to 'y', warnings will be generated for
  317. all assignments to undefined symbols within .config files. By default, no
  318. such warnings are generated.
  319. This warning can also be enabled/disabled via the Kconfig.warn_assign_undef
  320. variable.
  321. Preprocessor user functions defined in Python
  322. ---------------------------------------------
  323. Preprocessor functions can be defined in Python, which makes it simple to
  324. integrate information from existing Python tools into Kconfig (e.g. to have
  325. Kconfig symbols depend on hardware information stored in some other format).
  326. Putting a Python module named kconfigfunctions(.py) anywhere in sys.path will
  327. cause it to be imported by Kconfiglib (in Kconfig.__init__()). Note that
  328. sys.path can be customized via PYTHONPATH, and includes the directory of the
  329. module being run by default, as well as installation directories.
  330. If the KCONFIG_FUNCTIONS environment variable is set, it gives a different
  331. module name to use instead of 'kconfigfunctions'.
  332. The imported module is expected to define a global dictionary named 'functions'
  333. that maps function names to Python functions, as follows:
  334. def my_fn(kconf, name, arg_1, arg_2, ...):
  335. # kconf:
  336. # Kconfig instance
  337. #
  338. # name:
  339. # Name of the user-defined function ("my-fn"). Think argv[0].
  340. #
  341. # arg_1, arg_2, ...:
  342. # Arguments passed to the function from Kconfig (strings)
  343. #
  344. # Returns a string to be substituted as the result of calling the
  345. # function
  346. ...
  347. def my_other_fn(kconf, name, arg_1, arg_2, ...):
  348. ...
  349. functions = {
  350. "my-fn": (my_fn, <min.args>, <max.args>/None),
  351. "my-other-fn": (my_other_fn, <min.args>, <max.args>/None),
  352. ...
  353. }
  354. ...
  355. <min.args> and <max.args> are the minimum and maximum number of arguments
  356. expected by the function (excluding the implicit 'name' argument). If
  357. <max.args> is None, there is no upper limit to the number of arguments. Passing
  358. an invalid number of arguments will generate a KconfigError exception.
  359. Functions can access the current parsing location as kconf.filename/linenr.
  360. Accessing other fields of the Kconfig object is not safe. See the warning
  361. below.
  362. Keep in mind that for a variable defined like 'foo = $(fn)', 'fn' will be
  363. called only when 'foo' is expanded. If 'fn' uses the parsing location and the
  364. intent is to use the location of the assignment, you want 'foo := $(fn)'
  365. instead, which calls the function immediately.
  366. Once defined, user functions can be called from Kconfig in the same way as
  367. other preprocessor functions:
  368. config FOO
  369. ...
  370. depends on $(my-fn,arg1,arg2)
  371. If my_fn() returns "n", this will result in
  372. config FOO
  373. ...
  374. depends on n
  375. Warning
  376. *******
  377. User-defined preprocessor functions are called as they're encountered at parse
  378. time, before all Kconfig files have been processed, and before the menu tree
  379. has been finalized. There are no guarantees that accessing Kconfig symbols or
  380. the menu tree via the 'kconf' parameter will work, and it could potentially
  381. lead to a crash.
  382. Preferably, user-defined functions should be stateless.
  383. Feedback
  384. ========
  385. Send bug reports, suggestions, and questions to ulfalizer a.t Google's email
  386. service, or open a ticket on the GitHub page.
  387. """
  388. import errno
  389. import importlib
  390. import os
  391. import re
  392. import sys
  393. # Get rid of some attribute lookups. These are obvious in context.
  394. from glob import iglob
  395. from os.path import dirname, exists, expandvars, islink, join, realpath
  396. VERSION = (14, 1, 0)
  397. # File layout:
  398. #
  399. # Public classes
  400. # Public functions
  401. # Internal functions
  402. # Global constants
  403. # Line length: 79 columns
  404. #
  405. # Public classes
  406. #
  407. class Kconfig(object):
  408. """
  409. Represents a Kconfig configuration, e.g. for x86 or ARM. This is the set of
  410. symbols, choices, and menu nodes appearing in the configuration. Creating
  411. any number of Kconfig objects (including for different architectures) is
  412. safe. Kconfiglib doesn't keep any global state.
  413. The following attributes are available. They should be treated as
  414. read-only, and some are implemented through @property magic.
  415. syms:
  416. A dictionary with all symbols in the configuration, indexed by name. Also
  417. includes all symbols that are referenced in expressions but never
  418. defined, except for constant (quoted) symbols.
  419. Undefined symbols can be recognized by Symbol.nodes being empty -- see
  420. the 'Intro to the menu tree' section in the module docstring.
  421. const_syms:
  422. A dictionary like 'syms' for constant (quoted) symbols
  423. named_choices:
  424. A dictionary like 'syms' for named choices (choice FOO)
  425. defined_syms:
  426. A list with all defined symbols, in the same order as they appear in the
  427. Kconfig files. Symbols defined in multiple locations appear multiple
  428. times.
  429. Note: You probably want to use 'unique_defined_syms' instead. This
  430. attribute is mostly maintained for backwards compatibility.
  431. unique_defined_syms:
  432. A list like 'defined_syms', but with duplicates removed. Just the first
  433. instance is kept for symbols defined in multiple locations. Kconfig order
  434. is preserved otherwise.
  435. Using this attribute instead of 'defined_syms' can save work, and
  436. automatically gives reasonable behavior when writing configuration output
  437. (symbols defined in multiple locations only generate output once, while
  438. still preserving Kconfig order for readability).
  439. choices:
  440. A list with all choices, in the same order as they appear in the Kconfig
  441. files.
  442. Note: You probably want to use 'unique_choices' instead. This attribute
  443. is mostly maintained for backwards compatibility.
  444. unique_choices:
  445. Analogous to 'unique_defined_syms', for choices. Named choices can have
  446. multiple definition locations.
  447. menus:
  448. A list with all menus, in the same order as they appear in the Kconfig
  449. files
  450. comments:
  451. A list with all comments, in the same order as they appear in the Kconfig
  452. files
  453. kconfig_filenames:
  454. A list with the filenames of all Kconfig files included in the
  455. configuration, relative to $srctree (or relative to the current directory
  456. if $srctree isn't set), except absolute paths (e.g.
  457. 'source "/foo/Kconfig"') are kept as-is.
  458. The files are listed in the order they are source'd, starting with the
  459. top-level Kconfig file. If a file is source'd multiple times, it will
  460. appear multiple times. Use set() to get unique filenames.
  461. Note that Kconfig.sync_deps() already indirectly catches any file
  462. modifications that change configuration output.
  463. env_vars:
  464. A set() with the names of all environment variables referenced in the
  465. Kconfig files.
  466. Only environment variables referenced with the preprocessor $(FOO) syntax
  467. will be registered. The older $FOO syntax is only supported for backwards
  468. compatibility.
  469. Also note that $(FOO) won't be registered unless the environment variable
  470. $FOO is actually set. If it isn't, $(FOO) is an expansion of an unset
  471. preprocessor variable (which gives the empty string).
  472. Another gotcha is that environment variables referenced in the values of
  473. recursively expanded preprocessor variables (those defined with =) will
  474. only be registered if the variable is actually used (expanded) somewhere.
  475. The note from the 'kconfig_filenames' documentation applies here too.
  476. n/m/y:
  477. The predefined constant symbols n/m/y. Also available in const_syms.
  478. modules:
  479. The Symbol instance for the modules symbol. Currently hardcoded to
  480. MODULES, which is backwards compatible. Kconfiglib will warn if
  481. 'option modules' is set on some other symbol. Tell me if you need proper
  482. 'option modules' support.
  483. 'modules' is never None. If the MODULES symbol is not explicitly defined,
  484. its tri_value will be 0 (n), as expected.
  485. A simple way to enable modules is to do 'kconf.modules.set_value(2)'
  486. (provided the MODULES symbol is defined and visible). Modules are
  487. disabled by default in the kernel Kconfig files as of writing, though
  488. nearly all defconfig files enable them (with 'CONFIG_MODULES=y').
  489. defconfig_list:
  490. The Symbol instance for the 'option defconfig_list' symbol, or None if no
  491. defconfig_list symbol exists. The defconfig filename derived from this
  492. symbol can be found in Kconfig.defconfig_filename.
  493. defconfig_filename:
  494. The filename given by the defconfig_list symbol. This is taken from the
  495. first 'default' with a satisfied condition where the specified file
  496. exists (can be opened for reading). If a defconfig file foo/defconfig is
  497. not found and $srctree was set when the Kconfig was created,
  498. $srctree/foo/defconfig is looked up as well.
  499. 'defconfig_filename' is None if either no defconfig_list symbol exists,
  500. or if the defconfig_list symbol has no 'default' with a satisfied
  501. condition that specifies a file that exists.
  502. Gotcha: scripts/kconfig/Makefile might pass --defconfig=<defconfig> to
  503. scripts/kconfig/conf when running e.g. 'make defconfig'. This option
  504. overrides the defconfig_list symbol, meaning defconfig_filename might not
  505. always match what 'make defconfig' would use.
  506. top_node:
  507. The menu node (see the MenuNode class) of the implicit top-level menu.
  508. Acts as the root of the menu tree.
  509. mainmenu_text:
  510. The prompt (title) of the top menu (top_node). Defaults to "Main menu".
  511. Can be changed with the 'mainmenu' statement (see kconfig-language.txt).
  512. variables:
  513. A dictionary with all preprocessor variables, indexed by name. See the
  514. Variable class.
  515. warn:
  516. Set this variable to True/False to enable/disable warnings. See
  517. Kconfig.__init__().
  518. When 'warn' is False, the values of the other warning-related variables
  519. are ignored.
  520. This variable as well as the other warn* variables can be read to check
  521. the current warning settings.
  522. warn_to_stderr:
  523. Set this variable to True/False to enable/disable warnings on stderr. See
  524. Kconfig.__init__().
  525. warn_assign_undef:
  526. Set this variable to True to generate warnings for assignments to
  527. undefined symbols in configuration files.
  528. This variable is False by default unless the KCONFIG_WARN_UNDEF_ASSIGN
  529. environment variable was set to 'y' when the Kconfig instance was
  530. created.
  531. warn_assign_override:
  532. Set this variable to True to generate warnings for multiple assignments
  533. to the same symbol in configuration files, where the assignments set
  534. different values (e.g. CONFIG_FOO=m followed by CONFIG_FOO=y, where the
  535. last value would get used).
  536. This variable is True by default. Disabling it might be useful when
  537. merging configurations.
  538. warn_assign_redun:
  539. Like warn_assign_override, but for multiple assignments setting a symbol
  540. to the same value.
  541. This variable is True by default. Disabling it might be useful when
  542. merging configurations.
  543. warnings:
  544. A list of strings containing all warnings that have been generated, for
  545. cases where more flexibility is needed.
  546. See the 'warn_to_stderr' parameter to Kconfig.__init__() and the
  547. Kconfig.warn_to_stderr variable as well. Note that warnings still get
  548. added to Kconfig.warnings when 'warn_to_stderr' is True.
  549. Just as for warnings printed to stderr, only warnings that are enabled
  550. will get added to Kconfig.warnings. See the various Kconfig.warn*
  551. variables.
  552. missing_syms:
  553. A list with (name, value) tuples for all assignments to undefined symbols
  554. within the most recently loaded .config file(s). 'name' is the symbol
  555. name without the 'CONFIG_' prefix. 'value' is a string that gives the
  556. right-hand side of the assignment verbatim.
  557. See Kconfig.load_config() as well.
  558. srctree:
  559. The value the $srctree environment variable had when the Kconfig instance
  560. was created, or the empty string if $srctree wasn't set. This gives nice
  561. behavior with os.path.join(), which treats "" as the current directory,
  562. without adding "./".
  563. Kconfig files are looked up relative to $srctree (unless absolute paths
  564. are used), and .config files are looked up relative to $srctree if they
  565. are not found in the current directory. This is used to support
  566. out-of-tree builds. The C tools use this environment variable in the same
  567. way.
  568. Changing $srctree after creating the Kconfig instance has no effect. Only
  569. the value when the configuration is loaded matters. This avoids surprises
  570. if multiple configurations are loaded with different values for $srctree.
  571. config_prefix:
  572. The value the CONFIG_ environment variable had when the Kconfig instance
  573. was created, or "CONFIG_" if CONFIG_ wasn't set. This is the prefix used
  574. (and expected) on symbol names in .config files and C headers. Used in
  575. the same way in the C tools.
  576. config_header:
  577. The value the KCONFIG_CONFIG_HEADER environment variable had when the
  578. Kconfig instance was created, or the empty string if
  579. KCONFIG_CONFIG_HEADER wasn't set. This string is inserted verbatim at the
  580. beginning of configuration files. See write_config().
  581. header_header:
  582. The value the KCONFIG_AUTOHEADER_HEADER environment variable had when the
  583. Kconfig instance was created, or the empty string if
  584. KCONFIG_AUTOHEADER_HEADER wasn't set. This string is inserted verbatim at
  585. the beginning of header files. See write_autoconf().
  586. filename/linenr:
  587. The current parsing location, for use in Python preprocessor functions.
  588. See the module docstring.
  589. """
  590. __slots__ = (
  591. "_encoding",
  592. "_functions",
  593. "_set_match",
  594. "_srctree_prefix",
  595. "_unset_match",
  596. "_warn_assign_no_prompt",
  597. "choices",
  598. "comments",
  599. "config_header",
  600. "config_prefix",
  601. "const_syms",
  602. "defconfig_list",
  603. "defined_syms",
  604. "env_vars",
  605. "header_header",
  606. "kconfig_filenames",
  607. "m",
  608. "menus",
  609. "missing_syms",
  610. "modules",
  611. "n",
  612. "named_choices",
  613. "srctree",
  614. "syms",
  615. "top_node",
  616. "unique_choices",
  617. "unique_defined_syms",
  618. "variables",
  619. "warn",
  620. "warn_assign_override",
  621. "warn_assign_redun",
  622. "warn_assign_undef",
  623. "warn_to_stderr",
  624. "warnings",
  625. "y",
  626. # Parsing-related
  627. "_parsing_kconfigs",
  628. "_readline",
  629. "filename",
  630. "linenr",
  631. "_include_path",
  632. "_filestack",
  633. "_line",
  634. "_tokens",
  635. "_tokens_i",
  636. "_reuse_tokens",
  637. )
  638. #
  639. # Public interface
  640. #
  641. def __init__(self, filename="Kconfig", warn=True, warn_to_stderr=True,
  642. encoding="utf-8", suppress_traceback=False):
  643. """
  644. Creates a new Kconfig object by parsing Kconfig files.
  645. Note that Kconfig files are not the same as .config files (which store
  646. configuration symbol values).
  647. See the module docstring for some environment variables that influence
  648. default warning settings (KCONFIG_WARN_UNDEF and
  649. KCONFIG_WARN_UNDEF_ASSIGN).
  650. Raises KconfigError on syntax/semantic errors, and OSError or (possibly
  651. a subclass of) IOError on IO errors ('errno', 'strerror', and
  652. 'filename' are available). Note that IOError is an alias for OSError on
  653. Python 3, so it's enough to catch OSError there. If you need Python 2/3
  654. compatibility, it's easiest to catch EnvironmentError, which is a
  655. common base class of OSError/IOError on Python 2 and an alias for
  656. OSError on Python 3.
  657. filename (default: "Kconfig"):
  658. The Kconfig file to load. For the Linux kernel, you'll want "Kconfig"
  659. from the top-level directory, as environment variables will make sure
  660. the right Kconfig is included from there (arch/$SRCARCH/Kconfig as of
  661. writing).
  662. If $srctree is set, 'filename' will be looked up relative to it.
  663. $srctree is also used to look up source'd files within Kconfig files.
  664. See the class documentation.
  665. If you are using Kconfiglib via 'make scriptconfig', the filename of
  666. the base base Kconfig file will be in sys.argv[1]. It's currently
  667. always "Kconfig" in practice.
  668. warn (default: True):
  669. True if warnings related to this configuration should be generated.
  670. This can be changed later by setting Kconfig.warn to True/False. It
  671. is provided as a constructor argument since warnings might be
  672. generated during parsing.
  673. See the other Kconfig.warn_* variables as well, which enable or
  674. suppress certain warnings when warnings are enabled.
  675. All generated warnings are added to the Kconfig.warnings list. See
  676. the class documentation.
  677. warn_to_stderr (default: True):
  678. True if warnings should be printed to stderr in addition to being
  679. added to Kconfig.warnings.
  680. This can be changed later by setting Kconfig.warn_to_stderr to
  681. True/False.
  682. encoding (default: "utf-8"):
  683. The encoding to use when reading and writing files, and when decoding
  684. output from commands run via $(shell). If None, the encoding
  685. specified in the current locale will be used.
  686. The "utf-8" default avoids exceptions on systems that are configured
  687. to use the C locale, which implies an ASCII encoding.
  688. This parameter has no effect on Python 2, due to implementation
  689. issues (regular strings turning into Unicode strings, which are
  690. distinct in Python 2). Python 2 doesn't decode regular strings
  691. anyway.
  692. Related PEP: https://www.python.org/dev/peps/pep-0538/
  693. suppress_traceback (default: False):
  694. Helper for tools. When True, any EnvironmentError or KconfigError
  695. generated during parsing is caught, the exception message is printed
  696. to stderr together with the command name, and sys.exit(1) is called
  697. (which generates SystemExit).
  698. This hides the Python traceback for "expected" errors like syntax
  699. errors in Kconfig files.
  700. Other exceptions besides EnvironmentError and KconfigError are still
  701. propagated when suppress_traceback is True.
  702. """
  703. try:
  704. self._init(filename, warn, warn_to_stderr, encoding)
  705. except (EnvironmentError, KconfigError) as e:
  706. if suppress_traceback:
  707. cmd = sys.argv[0] # Empty string if missing
  708. if cmd:
  709. cmd += ": "
  710. # Some long exception messages have extra newlines for better
  711. # formatting when reported as an unhandled exception. Strip
  712. # them here.
  713. sys.exit(cmd + str(e).strip())
  714. raise
  715. def _init(self, filename, warn, warn_to_stderr, encoding):
  716. # See __init__()
  717. self._encoding = encoding
  718. self.srctree = os.getenv("srctree", "")
  719. # A prefix we can reliably strip from glob() results to get a filename
  720. # relative to $srctree. relpath() can cause issues for symlinks,
  721. # because it assumes symlink/../foo is the same as foo/.
  722. self._srctree_prefix = realpath(self.srctree) + os.sep
  723. self.warn = warn
  724. self.warn_to_stderr = warn_to_stderr
  725. self.warn_assign_undef = os.getenv("KCONFIG_WARN_UNDEF_ASSIGN") == "y"
  726. self.warn_assign_override = True
  727. self.warn_assign_redun = True
  728. self._warn_assign_no_prompt = True
  729. self.warnings = []
  730. self.config_prefix = os.getenv("CONFIG_", "CONFIG_")
  731. # Regular expressions for parsing .config files
  732. self._set_match = _re_match(self.config_prefix + r"([^=]+)=(.*)")
  733. self._unset_match = _re_match(r"# {}([^ ]+) is not set".format(
  734. self.config_prefix))
  735. self.config_header = os.getenv("KCONFIG_CONFIG_HEADER", "")
  736. self.header_header = os.getenv("KCONFIG_AUTOHEADER_HEADER", "")
  737. self.syms = {}
  738. self.const_syms = {}
  739. self.defined_syms = []
  740. self.missing_syms = []
  741. self.named_choices = {}
  742. self.choices = []
  743. self.menus = []
  744. self.comments = []
  745. for nmy in "n", "m", "y":
  746. sym = Symbol()
  747. sym.kconfig = self
  748. sym.name = nmy
  749. sym.is_constant = True
  750. sym.orig_type = TRISTATE
  751. sym._cached_tri_val = STR_TO_TRI[nmy]
  752. self.const_syms[nmy] = sym
  753. self.n = self.const_syms["n"]
  754. self.m = self.const_syms["m"]
  755. self.y = self.const_syms["y"]
  756. # Make n/m/y well-formed symbols
  757. for nmy in "n", "m", "y":
  758. sym = self.const_syms[nmy]
  759. sym.rev_dep = sym.weak_rev_dep = sym.direct_dep = self.n
  760. # Maps preprocessor variables names to Variable instances
  761. self.variables = {}
  762. # Predefined preprocessor functions, with min/max number of arguments
  763. self._functions = {
  764. "info": (_info_fn, 1, 1),
  765. "error-if": (_error_if_fn, 2, 2),
  766. "filename": (_filename_fn, 0, 0),
  767. "lineno": (_lineno_fn, 0, 0),
  768. "shell": (_shell_fn, 1, 1),
  769. "warning-if": (_warning_if_fn, 2, 2),
  770. }
  771. # Add any user-defined preprocessor functions
  772. try:
  773. self._functions.update(
  774. importlib.import_module(
  775. os.getenv("KCONFIG_FUNCTIONS", "kconfigfunctions")
  776. ).functions)
  777. except ImportError:
  778. pass
  779. # This determines whether previously unseen symbols are registered.
  780. # They shouldn't be if we parse expressions after parsing, as part of
  781. # Kconfig.eval_string().
  782. self._parsing_kconfigs = True
  783. self.modules = self._lookup_sym("MODULES")
  784. self.defconfig_list = None
  785. self.top_node = MenuNode()
  786. self.top_node.kconfig = self
  787. self.top_node.item = MENU
  788. self.top_node.is_menuconfig = True
  789. self.top_node.visibility = self.y
  790. self.top_node.prompt = ("Main menu", self.y)
  791. self.top_node.parent = None
  792. self.top_node.dep = self.y
  793. self.top_node.filename = filename
  794. self.top_node.linenr = 1
  795. self.top_node.include_path = ()
  796. # Parse the Kconfig files
  797. # Not used internally. Provided as a convenience.
  798. self.kconfig_filenames = [filename]
  799. self.env_vars = set()
  800. # Keeps track of the location in the parent Kconfig files. Kconfig
  801. # files usually source other Kconfig files. See _enter_file().
  802. self._filestack = []
  803. self._include_path = ()
  804. # The current parsing location
  805. self.filename = filename
  806. self.linenr = 0
  807. # Used to avoid retokenizing lines when we discover that they're not
  808. # part of the construct currently being parsed. This is kinda like an
  809. # unget operation.
  810. self._reuse_tokens = False
  811. # Open the top-level Kconfig file. Store the readline() method directly
  812. # as a small optimization.
  813. self._readline = self._open(join(self.srctree, filename), "r").readline
  814. try:
  815. # Parse the Kconfig files. Returns the last node, which we
  816. # terminate with '.next = None'.
  817. self._parse_block(None, self.top_node, self.top_node).next = None
  818. self.top_node.list = self.top_node.next
  819. self.top_node.next = None
  820. except UnicodeDecodeError as e:
  821. _decoding_error(e, self.filename)
  822. # Close the top-level Kconfig file. __self__ fetches the 'file' object
  823. # for the method.
  824. self._readline.__self__.close()
  825. self._parsing_kconfigs = False
  826. # Do various menu tree post-processing
  827. self._finalize_node(self.top_node, self.y)
  828. self.unique_defined_syms = _ordered_unique(self.defined_syms)
  829. self.unique_choices = _ordered_unique(self.choices)
  830. # Do sanity checks. Some of these depend on everything being finalized.
  831. self._check_sym_sanity()
  832. self._check_choice_sanity()
  833. # KCONFIG_STRICT is an older alias for KCONFIG_WARN_UNDEF, supported
  834. # for backwards compatibility
  835. if os.getenv("KCONFIG_WARN_UNDEF") == "y" or \
  836. os.getenv("KCONFIG_STRICT") == "y":
  837. self._check_undef_syms()
  838. # Build Symbol._dependents for all symbols and choices
  839. self._build_dep()
  840. # Check for dependency loops
  841. check_dep_loop_sym = _check_dep_loop_sym # Micro-optimization
  842. for sym in self.unique_defined_syms:
  843. check_dep_loop_sym(sym, False)
  844. # Add extra dependencies from choices to choice symbols that get
  845. # awkward during dependency loop detection
  846. self._add_choice_deps()
  847. @property
  848. def mainmenu_text(self):
  849. """
  850. See the class documentation.
  851. """
  852. return self.top_node.prompt[0]
  853. @property
  854. def defconfig_filename(self):
  855. """
  856. See the class documentation.
  857. """
  858. if self.defconfig_list:
  859. for filename, cond in self.defconfig_list.defaults:
  860. if expr_value(cond):
  861. try:
  862. with self._open_config(filename.str_value) as f:
  863. return f.name
  864. except EnvironmentError:
  865. continue
  866. return None
  867. def load_config(self, filename=None, replace=True, verbose=None):
  868. """
  869. Loads symbol values from a file in the .config format. Equivalent to
  870. calling Symbol.set_value() to set each of the values.
  871. "# CONFIG_FOO is not set" within a .config file sets the user value of
  872. FOO to n. The C tools work the same way.
  873. For each symbol, the Symbol.user_value attribute holds the value the
  874. symbol was assigned in the .config file (if any). The user value might
  875. differ from Symbol.str/tri_value if there are unsatisfied dependencies.
  876. Calling this function also updates the Kconfig.missing_syms attribute
  877. with a list of all assignments to undefined symbols within the
  878. configuration file. Kconfig.missing_syms is cleared if 'replace' is
  879. True, and appended to otherwise. See the documentation for
  880. Kconfig.missing_syms as well.
  881. See the Kconfig.__init__() docstring for raised exceptions
  882. (OSError/IOError). KconfigError is never raised here.
  883. filename (default: None):
  884. Path to load configuration from (a string). Respects $srctree if set
  885. (see the class documentation).
  886. If 'filename' is None (the default), the configuration file to load
  887. (if any) is calculated automatically, giving the behavior you'd
  888. usually want:
  889. 1. If the KCONFIG_CONFIG environment variable is set, it gives the
  890. path to the configuration file to load. Otherwise, ".config" is
  891. used. See standard_config_filename().
  892. 2. If the path from (1.) doesn't exist, the configuration file
  893. given by kconf.defconfig_filename is loaded instead, which is
  894. derived from the 'option defconfig_list' symbol.
  895. 3. If (1.) and (2.) fail to find a configuration file to load, no
  896. configuration file is loaded, and symbols retain their current
  897. values (e.g., their default values). This is not an error.
  898. See the return value as well.
  899. replace (default: True):
  900. If True, all existing user values will be cleared before loading the
  901. .config. Pass False to merge configurations.
  902. verbose (default: None):
  903. Limited backwards compatibility to prevent crashes. A warning is
  904. printed if anything but None is passed.
  905. Prior to Kconfiglib 12.0.0, this option enabled printing of messages
  906. to stdout when 'filename' was None. A message is (always) returned
  907. now instead, which is more flexible.
  908. Will probably be removed in some future version.
  909. Returns a string with a message saying which file got loaded (or
  910. possibly that no file got loaded, when 'filename' is None). This is
  911. meant to reduce boilerplate in tools, which can do e.g.
  912. print(kconf.load_config()). The returned message distinguishes between
  913. loading (replace == True) and merging (replace == False).
  914. """
  915. if verbose is not None:
  916. _warn_verbose_deprecated("load_config")
  917. msg = None
  918. if filename is None:
  919. filename = standard_config_filename()
  920. if not exists(filename) and \
  921. not exists(join(self.srctree, filename)):
  922. defconfig = self.defconfig_filename
  923. if defconfig is None:
  924. return "Using default symbol values (no '{}')" \
  925. .format(filename)
  926. msg = " default configuration '{}' (no '{}')" \
  927. .format(defconfig, filename)
  928. filename = defconfig
  929. if not msg:
  930. msg = " configuration '{}'".format(filename)
  931. # Disable the warning about assigning to symbols without prompts. This
  932. # is normal and expected within a .config file.
  933. self._warn_assign_no_prompt = False
  934. # This stub only exists to make sure _warn_assign_no_prompt gets
  935. # reenabled
  936. try:
  937. self._load_config(filename, replace)
  938. except UnicodeDecodeError as e:
  939. _decoding_error(e, filename)
  940. finally:
  941. self._warn_assign_no_prompt = True
  942. return ("Loaded" if replace else "Merged") + msg
  943. def _load_config(self, filename, replace):
  944. with self._open_config(filename) as f:
  945. if replace:
  946. self.missing_syms = []
  947. # If we're replacing the configuration, keep track of which
  948. # symbols and choices got set so that we can unset the rest
  949. # later. This avoids invalidating everything and is faster.
  950. # Another benefit is that invalidation must be rock solid for
  951. # it to work, making it a good test.
  952. for sym in self.unique_defined_syms:
  953. sym._was_set = False
  954. for choice in self.unique_choices:
  955. choice._was_set = False
  956. # Small optimizations
  957. set_match = self._set_match
  958. unset_match = self._unset_match
  959. get_sym = self.syms.get
  960. for linenr, line in enumerate(f, 1):
  961. # The C tools ignore trailing whitespace
  962. line = line.rstrip()
  963. match = set_match(line)
  964. if match:
  965. name, val = match.groups()
  966. sym = get_sym(name)
  967. if not sym or not sym.nodes:
  968. self._undef_assign(name, val, filename, linenr)
  969. continue
  970. if sym.orig_type in _BOOL_TRISTATE:
  971. # The C implementation only checks the first character
  972. # to the right of '=', for whatever reason
  973. if not (sym.orig_type is BOOL
  974. and val.startswith(("y", "n")) or
  975. sym.orig_type is TRISTATE
  976. and val.startswith(("y", "m", "n"))):
  977. self._warn("'{}' is not a valid value for the {} "
  978. "symbol {}. Assignment ignored."
  979. .format(val, TYPE_TO_STR[sym.orig_type],
  980. sym.name_and_loc),
  981. filename, linenr)
  982. continue
  983. val = val[0]
  984. if sym.choice and val != "n":
  985. # During .config loading, we infer the mode of the
  986. # choice from the kind of values that are assigned
  987. # to the choice symbols
  988. prev_mode = sym.choice.user_value
  989. if prev_mode is not None and \
  990. TRI_TO_STR[prev_mode] != val:
  991. self._warn("both m and y assigned to symbols "
  992. "within the same choice",
  993. filename, linenr)
  994. # Set the choice's mode
  995. sym.choice.set_value(val)
  996. elif sym.orig_type is STRING:
  997. match = _conf_string_match(val)
  998. if not match:
  999. self._warn("malformed string literal in "
  1000. "assignment to {}. Assignment ignored."
  1001. .format(sym.name_and_loc),
  1002. filename, linenr)
  1003. continue
  1004. val = unescape(match.group(1))
  1005. else:
  1006. match = unset_match(line)
  1007. if not match:
  1008. # Print a warning for lines that match neither
  1009. # set_match() nor unset_match() and that are not blank
  1010. # lines or comments. 'line' has already been
  1011. # rstrip()'d, so blank lines show up as "" here.
  1012. if line and not line.lstrip().startswith("#"):
  1013. self._warn("ignoring malformed line '{}'"
  1014. .format(line),
  1015. filename, linenr)
  1016. continue
  1017. name = match.group(1)
  1018. sym = get_sym(name)
  1019. if not sym or not sym.nodes:
  1020. self._undef_assign(name, "n", filename, linenr)
  1021. continue
  1022. if sym.orig_type not in _BOOL_TRISTATE:
  1023. continue
  1024. val = "n"
  1025. # Done parsing the assignment. Set the value.
  1026. if sym._was_set:
  1027. self._assigned_twice(sym, val, filename, linenr)
  1028. sym.set_value(val)
  1029. if replace:
  1030. # If we're replacing the configuration, unset the symbols that
  1031. # didn't get set
  1032. for sym in self.unique_defined_syms:
  1033. if not sym._was_set:
  1034. sym.unset_value()
  1035. for choice in self.unique_choices:
  1036. if not choice._was_set:
  1037. choice.unset_value()
  1038. def _undef_assign(self, name, val, filename, linenr):
  1039. # Called for assignments to undefined symbols during .config loading
  1040. self.missing_syms.append((name, val))
  1041. if self.warn_assign_undef:
  1042. self._warn(
  1043. "attempt to assign the value '{}' to the undefined symbol {}"
  1044. .format(val, name), filename, linenr)
  1045. def _assigned_twice(self, sym, new_val, filename, linenr):
  1046. # Called when a symbol is assigned more than once in a .config file
  1047. # Use strings for bool/tristate user values in the warning
  1048. if sym.orig_type in _BOOL_TRISTATE:
  1049. user_val = TRI_TO_STR[sym.user_value]
  1050. else:
  1051. user_val = sym.user_value
  1052. msg = '{} set more than once. Old value "{}", new value "{}".'.format(
  1053. sym.name_and_loc, user_val, new_val)
  1054. if user_val == new_val:
  1055. if self.warn_assign_redun:
  1056. self._warn(msg, filename, linenr)
  1057. elif self.warn_assign_override:
  1058. self._warn(msg, filename, linenr)
  1059. def load_allconfig(self, filename):
  1060. """
  1061. Helper for all*config. Loads (merges) the configuration file specified
  1062. by KCONFIG_ALLCONFIG, if any. See Documentation/kbuild/kconfig.txt in
  1063. the Linux kernel.
  1064. Disables warnings for duplicated assignments within configuration files
  1065. for the duration of the call
  1066. (kconf.warn_assign_override/warn_assign_redun = False), and restores
  1067. the previous warning settings at the end. The KCONFIG_ALLCONFIG
  1068. configuration file is expected to override symbols.
  1069. Exits with sys.exit() (which raises a SystemExit exception) and prints
  1070. an error to stderr if KCONFIG_ALLCONFIG is set but the configuration
  1071. file can't be opened.
  1072. filename:
  1073. Command-specific configuration filename - "allyes.config",
  1074. "allno.config", etc.
  1075. """
  1076. load_allconfig(self, filename)
  1077. def write_autoconf(self, filename=None, header=None):
  1078. r"""
  1079. Writes out symbol values as a C header file, matching the format used
  1080. by include/generated/autoconf.h in the kernel.
  1081. The ordering of the #defines matches the one generated by
  1082. write_config(). The order in the C implementation depends on the hash
  1083. table implementation as of writing, and so won't match.
  1084. If 'filename' exists and its contents is identical to what would get
  1085. written out, it is left untouched. This avoids updating file metadata
  1086. like the modification time and possibly triggering redundant work in
  1087. build tools.
  1088. filename (default: None):
  1089. Path to write header to.
  1090. If None (the default), the path in the environment variable
  1091. KCONFIG_AUTOHEADER is used if set, and "include/generated/autoconf.h"
  1092. otherwise. This is compatible with the C tools.
  1093. header (default: None):
  1094. Text inserted verbatim at the beginning of the file. You would
  1095. usually want it enclosed in '/* */' to make it a C comment, and
  1096. include a trailing newline.
  1097. If None (the default), the value of the environment variable
  1098. KCONFIG_AUTOHEADER_HEADER had when the Kconfig instance was created
  1099. will be used if it was set, and no header otherwise. See the
  1100. Kconfig.header_header attribute.
  1101. Returns a string with a message saying that the header got saved, or
  1102. that there were no changes to it. This is meant to reduce boilerplate
  1103. in tools, which can do e.g. print(kconf.write_autoconf()).
  1104. """
  1105. if filename is None:
  1106. filename = os.getenv("KCONFIG_AUTOHEADER",
  1107. "include/generated/autoconf.h")
  1108. if self._write_if_changed(filename, self._autoconf_contents(header)):
  1109. return "Kconfig header saved to '{}'".format(filename)
  1110. return "No change to Kconfig header in '{}'".format(filename)
  1111. def _autoconf_contents(self, header):
  1112. # write_autoconf() helper. Returns the contents to write as a string,
  1113. # with 'header' or KCONFIG_AUTOHEADER_HEADER at the beginning.
  1114. if header is None:
  1115. header = self.header_header
  1116. chunks = [header] # "".join()ed later
  1117. add = chunks.append
  1118. for sym in self.unique_defined_syms:
  1119. # _write_to_conf is determined when the value is calculated. This
  1120. # is a hidden function call due to property magic.
  1121. #
  1122. # Note: In client code, you can check if sym.config_string is empty
  1123. # instead, to avoid accessing the internal _write_to_conf variable
  1124. # (though it's likely to keep working).
  1125. val = sym.str_value
  1126. if not sym._write_to_conf:
  1127. continue
  1128. if sym.orig_type in _BOOL_TRISTATE:
  1129. if val == "y":
  1130. add("#define {}{} 1\n"
  1131. .format(self.config_prefix, sym.name))
  1132. elif val == "m":
  1133. add("#define {}{}_MODULE 1\n"
  1134. .format(self.config_prefix, sym.name))
  1135. elif sym.orig_type is STRING:
  1136. add('#define {}{} "{}"\n'
  1137. .format(self.config_prefix, sym.name, escape(val)))
  1138. else: # sym.orig_type in _INT_HEX:
  1139. if sym.orig_type is HEX and \
  1140. not val.startswith(("0x", "0X")):
  1141. val = "0x" + val
  1142. add("#define {}{} {}\n"
  1143. .format(self.config_prefix, sym.name, val))
  1144. return "".join(chunks)
  1145. def write_config(self, filename=None, header=None, save_old=True,
  1146. verbose=None):
  1147. r"""
  1148. Writes out symbol values in the .config format. The format matches the
  1149. C implementation, including ordering.
  1150. Symbols appear in the same order in generated .config files as they do
  1151. in the Kconfig files. For symbols defined in multiple locations, a
  1152. single assignment is written out corresponding to the first location
  1153. where the symbol is defined.
  1154. See the 'Intro to symbol values' section in the module docstring to
  1155. understand which symbols get written out.
  1156. If 'filename' exists and its contents is identical to what would get
  1157. written out, it is left untouched. This avoids updating file metadata
  1158. like the modification time and possibly triggering redundant work in
  1159. build tools.
  1160. See the Kconfig.__init__() docstring for raised exceptions
  1161. (OSError/IOError). KconfigError is never raised here.
  1162. filename (default: None):
  1163. Path to write configuration to (a string).
  1164. If None (the default), the path in the environment variable
  1165. KCONFIG_CONFIG is used if set, and ".config" otherwise. See
  1166. standard_config_filename().
  1167. header (default: None):
  1168. Text inserted verbatim at the beginning of the file. You would
  1169. usually want each line to start with '#' to make it a comment, and
  1170. include a trailing newline.
  1171. if None (the default), the value of the environment variable
  1172. KCONFIG_CONFIG_HEADER had when the Kconfig instance was created will
  1173. be used if it was set, and no header otherwise. See the
  1174. Kconfig.config_header attribute.
  1175. save_old (default: True):
  1176. If True and <filename> already exists, a copy of it will be saved to
  1177. <filename>.old in the same directory before the new configuration is
  1178. written.
  1179. Errors are silently ignored if <filename>.old cannot be written (e.g.
  1180. due to permissions errors).
  1181. verbose (default: None):
  1182. Limited backwards compatibility to prevent crashes. A warning is
  1183. printed if anything but None is passed.
  1184. Prior to Kconfiglib 12.0.0, this option enabled printing of messages
  1185. to stdout when 'filename' was None. A message is (always) returned
  1186. now instead, which is more flexible.
  1187. Will probably be removed in some future version.
  1188. Returns a string with a message saying which file got saved. This is
  1189. meant to reduce boilerplate in tools, which can do e.g.
  1190. print(kconf.write_config()).
  1191. """
  1192. if verbose is not None:
  1193. _warn_verbose_deprecated("write_config")
  1194. if filename is None:
  1195. filename = standard_config_filename()
  1196. contents = self._config_contents(header)
  1197. if self._contents_eq(filename, contents):
  1198. return "No change to configuration in '{}'".format(filename)
  1199. if save_old:
  1200. _save_old(filename)
  1201. with self._open(filename, "w") as f:
  1202. f.write(contents)
  1203. return "Configuration saved to '{}'".format(filename)
  1204. def _config_contents(self, header):
  1205. # write_config() helper. Returns the contents to write as a string,
  1206. # with 'header' or KCONFIG_CONFIG_HEADER at the beginning.
  1207. #
  1208. # More memory friendly would be to 'yield' the strings and
  1209. # "".join(_config_contents()), but it was a bit slower on my system.
  1210. # node_iter() was used here before commit 3aea9f7 ("Add '# end of
  1211. # <menu>' after menus in .config"). Those comments get tricky to
  1212. # implement with it.
  1213. for sym in self.unique_defined_syms:
  1214. sym._visited = False
  1215. if header is None:
  1216. header = self.config_header
  1217. chunks = [header] # "".join()ed later
  1218. add = chunks.append
  1219. # Did we just print an '# end of ...' comment?
  1220. after_end_comment = False
  1221. node = self.top_node
  1222. while 1:
  1223. # Jump to the next node with an iterative tree walk
  1224. if node.list:
  1225. node = node.list
  1226. elif node.next:
  1227. node = node.next
  1228. else:
  1229. while node.parent:
  1230. node = node.parent
  1231. # Add a comment when leaving visible menus
  1232. if node.item is MENU and expr_value(node.dep) and \
  1233. expr_value(node.visibility) and \
  1234. node is not self.top_node:
  1235. add("# end of {}\n".format(node.prompt[0]))
  1236. after_end_comment = True
  1237. if node.next:
  1238. node = node.next
  1239. break
  1240. else:
  1241. # No more nodes
  1242. return "".join(chunks)
  1243. # Generate configuration output for the node
  1244. item = node.item
  1245. if item.__class__ is Symbol:
  1246. if item._visited:
  1247. continue
  1248. item._visited = True
  1249. conf_string = item.config_string
  1250. if not conf_string:
  1251. continue
  1252. if after_end_comment:
  1253. # Add a blank line before the first symbol printed after an
  1254. # '# end of ...' comment
  1255. after_end_comment = False
  1256. add("\n")
  1257. add(conf_string)
  1258. elif expr_value(node.dep) and \
  1259. ((item is MENU and expr_value(node.visibility)) or
  1260. item is COMMENT):
  1261. add("\n#\n# {}\n#\n".format(node.prompt[0]))
  1262. after_end_comment = False
  1263. def write_min_config(self, filename, header=None):
  1264. """
  1265. Writes out a "minimal" configuration file, omitting symbols whose value
  1266. matches their default value. The format matches the one produced by
  1267. 'make savedefconfig'.
  1268. The resulting configuration file is incomplete, but a complete
  1269. configuration can be derived from it by loading it. Minimal
  1270. configuration files can serve as a more manageable configuration format
  1271. compared to a "full" .config file, especially when configurations files
  1272. are merged or edited by hand.
  1273. See the Kconfig.__init__() docstring for raised exceptions
  1274. (OSError/IOError). KconfigError is never raised here.
  1275. filename:
  1276. Path to write minimal configuration to.
  1277. header (default: None):
  1278. Text inserted verbatim at the beginning of the file. You would
  1279. usually want each line to start with '#' to make it a comment, and
  1280. include a final terminating newline.
  1281. if None (the default), the value of the environment variable
  1282. KCONFIG_CONFIG_HEADER had when the Kconfig instance was created will
  1283. be used if it was set, and no header otherwise. See the
  1284. Kconfig.config_header attribute.
  1285. Returns a string with a message saying the minimal configuration got
  1286. saved, or that there were no changes to it. This is meant to reduce
  1287. boilerplate in tools, which can do e.g.
  1288. print(kconf.write_min_config()).
  1289. """
  1290. if self._write_if_changed(filename, self._min_config_contents(header)):
  1291. return "Minimal configuration saved to '{}'".format(filename)
  1292. return "No change to minimal configuration in '{}'".format(filename)
  1293. def _min_config_contents(self, header):
  1294. # write_min_config() helper. Returns the contents to write as a string,
  1295. # with 'header' or KCONFIG_CONFIG_HEADER at the beginning.
  1296. if header is None:
  1297. header = self.config_header
  1298. chunks = [header] # "".join()ed later
  1299. add = chunks.append
  1300. for sym in self.unique_defined_syms:
  1301. # Skip symbols that cannot be changed. Only check
  1302. # non-choice symbols, as selects don't affect choice
  1303. # symbols.
  1304. if not sym.choice and \
  1305. sym.visibility <= expr_value(sym.rev_dep):
  1306. continue
  1307. # Skip symbols whose value matches their default
  1308. if sym.str_value == sym._str_default():
  1309. continue
  1310. # Skip symbols that would be selected by default in a
  1311. # choice, unless the choice is optional or the symbol type
  1312. # isn't bool (it might be possible to set the choice mode
  1313. # to n or the symbol to m in those cases).
  1314. if sym.choice and \
  1315. not sym.choice.is_optional and \
  1316. sym.choice._selection_from_defaults() is sym and \
  1317. sym.orig_type is BOOL and \
  1318. sym.tri_value == 2:
  1319. continue
  1320. add(sym.config_string)
  1321. return "".join(chunks)
  1322. def sync_deps(self, path):
  1323. """
  1324. Creates or updates a directory structure that can be used to avoid
  1325. doing a full rebuild whenever the configuration is changed, mirroring
  1326. include/config/ in the kernel.
  1327. This function is intended to be called during each build, before
  1328. compiling source files that depend on configuration symbols.
  1329. See the Kconfig.__init__() docstring for raised exceptions
  1330. (OSError/IOError). KconfigError is never raised here.
  1331. path:
  1332. Path to directory
  1333. sync_deps(path) does the following:
  1334. 1. If the directory <path> does not exist, it is created.
  1335. 2. If <path>/auto.conf exists, old symbol values are loaded from it,
  1336. which are then compared against the current symbol values. If a
  1337. symbol has changed value (would generate different output in
  1338. autoconf.h compared to before), the change is signaled by
  1339. touch'ing a file corresponding to the symbol.
  1340. The first time sync_deps() is run on a directory, <path>/auto.conf
  1341. won't exist, and no old symbol values will be available. This
  1342. logically has the same effect as updating the entire
  1343. configuration.
  1344. The path to a symbol's file is calculated from the symbol's name
  1345. by replacing all '_' with '/' and appending '.h'. For example, the
  1346. symbol FOO_BAR_BAZ gets the file <path>/foo/bar/baz.h, and FOO
  1347. gets the file <path>/foo.h.
  1348. This scheme matches the C tools. The point is to avoid having a
  1349. single directory with a huge number of files, which the underlying
  1350. filesystem might not handle well.
  1351. 3. A new auto.conf with the current symbol values is written, to keep
  1352. track of them for the next build.
  1353. If auto.conf exists and its contents is identical to what would
  1354. get written out, it is left untouched. This avoids updating file
  1355. metadata like the modification time and possibly triggering
  1356. redundant work in build tools.
  1357. The last piece of the puzzle is knowing what symbols each source file
  1358. depends on. Knowing that, dependencies can be added from source files
  1359. to the files corresponding to the symbols they depends on. The source
  1360. file will then get recompiled (only) when the symbol value changes
  1361. (provided sync_deps() is run first during each build).
  1362. The tool in the kernel that extracts symbol dependencies from source
  1363. files is scripts/basic/fixdep.c. Missing symbol files also correspond
  1364. to "not changed", which fixdep deals with by using the $(wildcard) Make
  1365. function when adding symbol prerequisites to source files.
  1366. In case you need a different scheme for your project, the sync_deps()
  1367. implementation can be used as a template.
  1368. """
  1369. if not exists(path):
  1370. os.mkdir(path, 0o755)
  1371. # Load old values from auto.conf, if any
  1372. self._load_old_vals(path)
  1373. for sym in self.unique_defined_syms:
  1374. # _write_to_conf is determined when the value is calculated. This
  1375. # is a hidden function call due to property magic.
  1376. #
  1377. # Note: In client code, you can check if sym.config_string is empty
  1378. # instead, to avoid accessing the internal _write_to_conf variable
  1379. # (though it's likely to keep working).
  1380. val = sym.str_value
  1381. # n tristate values do not get written to auto.conf and autoconf.h,
  1382. # making a missing symbol logically equivalent to n
  1383. if sym._write_to_conf:
  1384. if sym._old_val is None and \
  1385. sym.orig_type in _BOOL_TRISTATE and \
  1386. val == "n":
  1387. # No old value (the symbol was missing or n), new value n.
  1388. # No change.
  1389. continue
  1390. if val == sym._old_val:
  1391. # New value matches old. No change.
  1392. continue
  1393. elif sym._old_val is None:
  1394. # The symbol wouldn't appear in autoconf.h (because
  1395. # _write_to_conf is false), and it wouldn't have appeared in
  1396. # autoconf.h previously either (because it didn't appear in
  1397. # auto.conf). No change.
  1398. continue
  1399. # 'sym' has a new value. Flag it.
  1400. _touch_dep_file(path, sym.name)
  1401. # Remember the current values as the "new old" values.
  1402. #
  1403. # This call could go anywhere after the call to _load_old_vals(), but
  1404. # putting it last means _sync_deps() can be safely rerun if it fails
  1405. # before this point.
  1406. self._write_old_vals(path)
  1407. def _load_old_vals(self, path):
  1408. # Loads old symbol values from auto.conf into a dedicated
  1409. # Symbol._old_val field. Mirrors load_config().
  1410. #
  1411. # The extra field could be avoided with some trickery involving dumping
  1412. # symbol values and restoring them later, but this is simpler and
  1413. # faster. The C tools also use a dedicated field for this purpose.
  1414. for sym in self.unique_defined_syms:
  1415. sym._old_val = None
  1416. try:
  1417. auto_conf = self._open(join(path, "auto.conf"), "r")
  1418. except EnvironmentError as e:
  1419. if e.errno == errno.ENOENT:
  1420. # No old values
  1421. return
  1422. raise
  1423. with auto_conf as f:
  1424. for line in f:
  1425. match = self._set_match(line)
  1426. if not match:
  1427. # We only expect CONFIG_FOO=... (and possibly a header
  1428. # comment) in auto.conf
  1429. continue
  1430. name, val = match.groups()
  1431. if name in self.syms:
  1432. sym = self.syms[name]
  1433. if sym.orig_type is STRING:
  1434. match = _conf_string_match(val)
  1435. if not match:
  1436. continue
  1437. val = unescape(match.group(1))
  1438. self.syms[name]._old_val = val
  1439. else:
  1440. # Flag that the symbol no longer exists, in
  1441. # case something still depends on it
  1442. _touch_dep_file(path, name)
  1443. def _write_old_vals(self, path):
  1444. # Helper for writing auto.conf. Basically just a simplified
  1445. # write_config() that doesn't write any comments (including
  1446. # '# CONFIG_FOO is not set' comments). The format matches the C
  1447. # implementation, though the ordering is arbitrary there (depends on
  1448. # the hash table implementation).
  1449. #
  1450. # A separate helper function is neater than complicating write_config()
  1451. # by passing a flag to it, plus we only need to look at symbols here.
  1452. self._write_if_changed(
  1453. os.path.join(path, "auto.conf"),
  1454. self._old_vals_contents())
  1455. def _old_vals_contents(self):
  1456. # _write_old_vals() helper. Returns the contents to write as a string.
  1457. # Temporary list instead of generator makes this a bit faster
  1458. return "".join([
  1459. sym.config_string for sym in self.unique_defined_syms
  1460. if not (sym.orig_type in _BOOL_TRISTATE and not sym.tri_value)
  1461. ])
  1462. def node_iter(self, unique_syms=False):
  1463. """
  1464. Returns a generator for iterating through all MenuNode's in the Kconfig
  1465. tree. The iteration is done in Kconfig definition order (each node is
  1466. visited before its children, and the children of a node are visited
  1467. before the next node).
  1468. The Kconfig.top_node menu node is skipped. It contains an implicit menu
  1469. that holds the top-level items.
  1470. As an example, the following code will produce a list equal to
  1471. Kconfig.defined_syms:
  1472. defined_syms = [node.item for node in kconf.node_iter()
  1473. if isinstance(node.item, Symbol)]
  1474. unique_syms (default: False):
  1475. If True, only the first MenuNode will be included for symbols defined
  1476. in multiple locations.
  1477. Using kconf.node_iter(True) in the example above would give a list
  1478. equal to unique_defined_syms.
  1479. """
  1480. if unique_syms:
  1481. for sym in self.unique_defined_syms:
  1482. sym._visited = False
  1483. node = self.top_node
  1484. while 1:
  1485. # Jump to the next node with an iterative tree walk
  1486. if node.list:
  1487. node = node.list
  1488. elif node.next:
  1489. node = node.next
  1490. else:
  1491. while node.parent:
  1492. node = node.parent
  1493. if node.next:
  1494. node = node.next
  1495. break
  1496. else:
  1497. # No more nodes
  1498. return
  1499. if unique_syms and node.item.__class__ is Symbol:
  1500. if node.item._visited:
  1501. continue
  1502. node.item._visited = True
  1503. yield node
  1504. def eval_string(self, s):
  1505. """
  1506. Returns the tristate value of the expression 's', represented as 0, 1,
  1507. and 2 for n, m, and y, respectively. Raises KconfigError on syntax
  1508. errors. Warns if undefined symbols are referenced.
  1509. As an example, if FOO and BAR are tristate symbols at least one of
  1510. which has the value y, then eval_string("y && (FOO || BAR)") returns
  1511. 2 (y).
  1512. To get the string value of non-bool/tristate symbols, use
  1513. Symbol.str_value. eval_string() always returns a tristate value, and
  1514. all non-bool/tristate symbols have the tristate value 0 (n).
  1515. The expression parsing is consistent with how parsing works for
  1516. conditional ('if ...') expressions in the configuration, and matches
  1517. the C implementation. m is rewritten to 'm && MODULES', so
  1518. eval_string("m") will return 0 (n) unless modules are enabled.
  1519. """
  1520. # The parser is optimized to be fast when parsing Kconfig files (where
  1521. # an expression can never appear at the beginning of a line). We have
  1522. # to monkey-patch things a bit here to reuse it.
  1523. self.filename = None
  1524. self._tokens = self._tokenize("if " + s)
  1525. # Strip "if " to avoid giving confusing error messages
  1526. self._line = s
  1527. self._tokens_i = 1 # Skip the 'if' token
  1528. return expr_value(self._expect_expr_and_eol())
  1529. def unset_values(self):
  1530. """
  1531. Removes any user values from all symbols, as if Kconfig.load_config()
  1532. or Symbol.set_value() had never been called.
  1533. """
  1534. self._warn_assign_no_prompt = False
  1535. try:
  1536. # set_value() already rejects undefined symbols, and they don't
  1537. # need to be invalidated (because their value never changes), so we
  1538. # can just iterate over defined symbols
  1539. for sym in self.unique_defined_syms:
  1540. sym.unset_value()
  1541. for choice in self.unique_choices:
  1542. choice.unset_value()
  1543. finally:
  1544. self._warn_assign_no_prompt = True
  1545. def enable_warnings(self):
  1546. """
  1547. Do 'Kconfig.warn = True' instead. Maintained for backwards
  1548. compatibility.
  1549. """
  1550. self.warn = True
  1551. def disable_warnings(self):
  1552. """
  1553. Do 'Kconfig.warn = False' instead. Maintained for backwards
  1554. compatibility.
  1555. """
  1556. self.warn = False
  1557. def enable_stderr_warnings(self):
  1558. """
  1559. Do 'Kconfig.warn_to_stderr = True' instead. Maintained for backwards
  1560. compatibility.
  1561. """
  1562. self.warn_to_stderr = True
  1563. def disable_stderr_warnings(self):
  1564. """
  1565. Do 'Kconfig.warn_to_stderr = False' instead. Maintained for backwards
  1566. compatibility.
  1567. """
  1568. self.warn_to_stderr = False
  1569. def enable_undef_warnings(self):
  1570. """
  1571. Do 'Kconfig.warn_assign_undef = True' instead. Maintained for backwards
  1572. compatibility.
  1573. """
  1574. self.warn_assign_undef = True
  1575. def disable_undef_warnings(self):
  1576. """
  1577. Do 'Kconfig.warn_assign_undef = False' instead. Maintained for
  1578. backwards compatibility.
  1579. """
  1580. self.warn_assign_undef = False
  1581. def enable_override_warnings(self):
  1582. """
  1583. Do 'Kconfig.warn_assign_override = True' instead. Maintained for
  1584. backwards compatibility.
  1585. """
  1586. self.warn_assign_override = True
  1587. def disable_override_warnings(self):
  1588. """
  1589. Do 'Kconfig.warn_assign_override = False' instead. Maintained for
  1590. backwards compatibility.
  1591. """
  1592. self.warn_assign_override = False
  1593. def enable_redun_warnings(self):
  1594. """
  1595. Do 'Kconfig.warn_assign_redun = True' instead. Maintained for backwards
  1596. compatibility.
  1597. """
  1598. self.warn_assign_redun = True
  1599. def disable_redun_warnings(self):
  1600. """
  1601. Do 'Kconfig.warn_assign_redun = False' instead. Maintained for
  1602. backwards compatibility.
  1603. """
  1604. self.warn_assign_redun = False
  1605. def __repr__(self):
  1606. """
  1607. Returns a string with information about the Kconfig object when it is
  1608. evaluated on e.g. the interactive Python prompt.
  1609. """
  1610. def status(flag):
  1611. return "enabled" if flag else "disabled"
  1612. return "<{}>".format(", ".join((
  1613. "configuration with {} symbols".format(len(self.syms)),
  1614. 'main menu prompt "{}"'.format(self.mainmenu_text),
  1615. "srctree is current directory" if not self.srctree else
  1616. 'srctree "{}"'.format(self.srctree),
  1617. 'config symbol prefix "{}"'.format(self.config_prefix),
  1618. "warnings " + status(self.warn),
  1619. "printing of warnings to stderr " + status(self.warn_to_stderr),
  1620. "undef. symbol assignment warnings " +
  1621. status(self.warn_assign_undef),
  1622. "overriding symbol assignment warnings " +
  1623. status(self.warn_assign_override),
  1624. "redundant symbol assignment warnings " +
  1625. status(self.warn_assign_redun)
  1626. )))
  1627. #
  1628. # Private methods
  1629. #
  1630. #
  1631. # File reading
  1632. #
  1633. def _open_config(self, filename):
  1634. # Opens a .config file. First tries to open 'filename', then
  1635. # '$srctree/filename' if $srctree was set when the configuration was
  1636. # loaded.
  1637. try:
  1638. return self._open(filename, "r")
  1639. except EnvironmentError as e:
  1640. # This will try opening the same file twice if $srctree is unset,
  1641. # but it's not a big deal
  1642. try:
  1643. return self._open(join(self.srctree, filename), "r")
  1644. except EnvironmentError as e2:
  1645. # This is needed for Python 3, because e2 is deleted after
  1646. # the try block:
  1647. #
  1648. # https://docs.python.org/3/reference/compound_stmts.html#the-try-statement
  1649. e = e2
  1650. raise _KconfigIOError(
  1651. e, "Could not open '{}' ({}: {}). Check that the $srctree "
  1652. "environment variable ({}) is set correctly."
  1653. .format(filename, errno.errorcode[e.errno], e.strerror,
  1654. "set to '{}'".format(self.srctree) if self.srctree
  1655. else "unset or blank"))
  1656. def _enter_file(self, filename):
  1657. # Jumps to the beginning of a sourced Kconfig file, saving the previous
  1658. # position and file object.
  1659. #
  1660. # filename:
  1661. # Absolute path to file
  1662. # Path relative to $srctree, stored in e.g. self.filename (which makes
  1663. # it indirectly show up in MenuNode.filename). Equals 'filename' for
  1664. # absolute paths passed to 'source'.
  1665. if filename.startswith(self._srctree_prefix):
  1666. # Relative path (or a redundant absolute path to within $srctree,
  1667. # but it's probably fine to reduce those too)
  1668. rel_filename = filename[len(self._srctree_prefix):]
  1669. else:
  1670. # Absolute path
  1671. rel_filename = filename
  1672. self.kconfig_filenames.append(rel_filename)
  1673. # The parent Kconfig files are represented as a list of
  1674. # (<include path>, <Python 'file' object for Kconfig file>) tuples.
  1675. #
  1676. # <include path> is immutable and holds a *tuple* of
  1677. # (<filename>, <linenr>) tuples, giving the locations of the 'source'
  1678. # statements in the parent Kconfig files. The current include path is
  1679. # also available in Kconfig._include_path.
  1680. #
  1681. # The point of this redundant setup is to allow Kconfig._include_path
  1682. # to be assigned directly to MenuNode.include_path without having to
  1683. # copy it, sharing it wherever possible.
  1684. # Save include path and 'file' object (via its 'readline' function)
  1685. # before entering the file
  1686. self._filestack.append((self._include_path, self._readline))
  1687. # _include_path is a tuple, so this rebinds the variable instead of
  1688. # doing in-place modification
  1689. self._include_path += ((self.filename, self.linenr),)
  1690. # Check for recursive 'source'
  1691. for name, _ in self._include_path:
  1692. if name == rel_filename:
  1693. raise KconfigError(
  1694. "\n{}:{}: recursive 'source' of '{}' detected. Check that "
  1695. "environment variables are set correctly.\n"
  1696. "Include path:\n{}"
  1697. .format(self.filename, self.linenr, rel_filename,
  1698. "\n".join("{}:{}".format(name, linenr)
  1699. for name, linenr in self._include_path)))
  1700. try:
  1701. self._readline = self._open(filename, "r").readline
  1702. except EnvironmentError as e:
  1703. # We already know that the file exists
  1704. raise _KconfigIOError(
  1705. e, "{}:{}: Could not open '{}' (in '{}') ({}: {})"
  1706. .format(self.filename, self.linenr, filename,
  1707. self._line.strip(),
  1708. errno.errorcode[e.errno], e.strerror))
  1709. self.filename = rel_filename
  1710. self.linenr = 0
  1711. def _leave_file(self):
  1712. # Returns from a Kconfig file to the file that sourced it. See
  1713. # _enter_file().
  1714. # Restore location from parent Kconfig file
  1715. self.filename, self.linenr = self._include_path[-1]
  1716. # Restore include path and 'file' object
  1717. self._readline.__self__.close() # __self__ fetches the 'file' object
  1718. self._include_path, self._readline = self._filestack.pop()
  1719. def _next_line(self):
  1720. # Fetches and tokenizes the next line from the current Kconfig file.
  1721. # Returns False at EOF and True otherwise.
  1722. # We might already have tokens from parsing a line and discovering that
  1723. # it's part of a different construct
  1724. if self._reuse_tokens:
  1725. self._reuse_tokens = False
  1726. # self._tokens_i is known to be 1 here, because _parse_props()
  1727. # leaves it like that when it can't recognize a line (or parses a
  1728. # help text)
  1729. return True
  1730. # readline() returns '' over and over at EOF, which we rely on for help
  1731. # texts at the end of files (see _line_after_help())
  1732. line = self._readline()
  1733. if not line:
  1734. return False
  1735. self.linenr += 1
  1736. # Handle line joining
  1737. while line.endswith("\\\n"):
  1738. line = line[:-2] + self._readline()
  1739. self.linenr += 1
  1740. self._tokens = self._tokenize(line)
  1741. # Initialize to 1 instead of 0 to factor out code from _parse_block()
  1742. # and _parse_props(). They immediately fetch self._tokens[0].
  1743. self._tokens_i = 1
  1744. return True
  1745. def _line_after_help(self, line):
  1746. # Tokenizes a line after a help text. This case is special in that the
  1747. # line has already been fetched (to discover that it isn't part of the
  1748. # help text).
  1749. #
  1750. # An earlier version used a _saved_line variable instead that was
  1751. # checked in _next_line(). This special-casing gets rid of it and makes
  1752. # _reuse_tokens alone sufficient to handle unget.
  1753. # Handle line joining
  1754. while line.endswith("\\\n"):
  1755. line = line[:-2] + self._readline()
  1756. self.linenr += 1
  1757. self._tokens = self._tokenize(line)
  1758. self._reuse_tokens = True
  1759. def _write_if_changed(self, filename, contents):
  1760. # Writes 'contents' into 'filename', but only if it differs from the
  1761. # current contents of the file.
  1762. #
  1763. # Another variant would be write a temporary file on the same
  1764. # filesystem, compare the files, and rename() the temporary file if it
  1765. # differs, but it breaks stuff like write_config("/dev/null"), which is
  1766. # used out there to force evaluation-related warnings to be generated.
  1767. # This simple version is pretty failsafe and portable.
  1768. #
  1769. # Returns True if the file has changed and is updated, and False
  1770. # otherwise.
  1771. if self._contents_eq(filename, contents):
  1772. return False
  1773. with self._open(filename, "w") as f:
  1774. f.write(contents)
  1775. return True
  1776. def _contents_eq(self, filename, contents):
  1777. # Returns True if the contents of 'filename' is 'contents' (a string),
  1778. # and False otherwise (including if 'filename' can't be opened/read)
  1779. try:
  1780. with self._open(filename, "r") as f:
  1781. # Robust re. things like encoding and line endings (mmap()
  1782. # trickery isn't)
  1783. return f.read(len(contents) + 1) == contents
  1784. except EnvironmentError:
  1785. # If the error here would prevent writing the file as well, we'll
  1786. # notice it later
  1787. return False
  1788. #
  1789. # Tokenization
  1790. #
  1791. def _lookup_sym(self, name):
  1792. # Fetches the symbol 'name' from the symbol table, creating and
  1793. # registering it if it does not exist. If '_parsing_kconfigs' is False,
  1794. # it means we're in eval_string(), and new symbols won't be registered.
  1795. if name in self.syms:
  1796. return self.syms[name]
  1797. sym = Symbol()
  1798. sym.kconfig = self
  1799. sym.name = name
  1800. sym.is_constant = False
  1801. sym.rev_dep = sym.weak_rev_dep = sym.direct_dep = self.n
  1802. if self._parsing_kconfigs:
  1803. self.syms[name] = sym
  1804. else:
  1805. self._warn("no symbol {} in configuration".format(name))
  1806. return sym
  1807. def _lookup_const_sym(self, name):
  1808. # Like _lookup_sym(), for constant (quoted) symbols
  1809. if name in self.const_syms:
  1810. return self.const_syms[name]
  1811. sym = Symbol()
  1812. sym.kconfig = self
  1813. sym.name = name
  1814. sym.is_constant = True
  1815. sym.rev_dep = sym.weak_rev_dep = sym.direct_dep = self.n
  1816. if self._parsing_kconfigs:
  1817. self.const_syms[name] = sym
  1818. return sym
  1819. def _tokenize(self, s):
  1820. # Parses 's', returning a None-terminated list of tokens. Registers any
  1821. # new symbols encountered with _lookup(_const)_sym().
  1822. #
  1823. # Tries to be reasonably speedy by processing chunks of text via
  1824. # regexes and string operations where possible. This is the biggest
  1825. # hotspot during parsing.
  1826. #
  1827. # It might be possible to rewrite this to 'yield' tokens instead,
  1828. # working across multiple lines. Lookback and compatibility with old
  1829. # janky versions of the C tools complicate things though.
  1830. self._line = s # Used for error reporting
  1831. # Initial token on the line
  1832. match = _command_match(s)
  1833. if not match:
  1834. if s.isspace() or s.lstrip().startswith("#"):
  1835. return (None,)
  1836. self._parse_error("unknown token at start of line")
  1837. # Tricky implementation detail: While parsing a token, 'token' refers
  1838. # to the previous token. See _STRING_LEX for why this is needed.
  1839. token = _get_keyword(match.group(1))
  1840. if not token:
  1841. # Backwards compatibility with old versions of the C tools, which
  1842. # (accidentally) accepted stuff like "--help--" and "-help---".
  1843. # This was fixed in the C tools by commit c2264564 ("kconfig: warn
  1844. # of unhandled characters in Kconfig commands"), committed in July
  1845. # 2015, but it seems people still run Kconfiglib on older kernels.
  1846. if s.strip(" \t\n-") == "help":
  1847. return (_T_HELP, None)
  1848. # If the first token is not a keyword (and not a weird help token),
  1849. # we have a preprocessor variable assignment (or a bare macro on a
  1850. # line)
  1851. self._parse_assignment(s)
  1852. return (None,)
  1853. tokens = [token]
  1854. # The current index in the string being tokenized
  1855. i = match.end()
  1856. # Main tokenization loop (for tokens past the first one)
  1857. while i < len(s):
  1858. # Test for an identifier/keyword first. This is the most common
  1859. # case.
  1860. match = _id_keyword_match(s, i)
  1861. if match:
  1862. # We have an identifier or keyword
  1863. # Check what it is. lookup_sym() will take care of allocating
  1864. # new symbols for us the first time we see them. Note that
  1865. # 'token' still refers to the previous token.
  1866. name = match.group(1)
  1867. keyword = _get_keyword(name)
  1868. if keyword:
  1869. # It's a keyword
  1870. token = keyword
  1871. # Jump past it
  1872. i = match.end()
  1873. elif token not in _STRING_LEX:
  1874. # It's a non-const symbol, except we translate n, m, and y
  1875. # into the corresponding constant symbols, like the C
  1876. # implementation
  1877. if "$" in name:
  1878. # Macro expansion within symbol name
  1879. name, s, i = self._expand_name(s, i)
  1880. else:
  1881. i = match.end()
  1882. token = self.const_syms[name] if name in STR_TO_TRI else \
  1883. self._lookup_sym(name)
  1884. else:
  1885. # It's a case of missing quotes. For example, the
  1886. # following is accepted:
  1887. #
  1888. # menu unquoted_title
  1889. #
  1890. # config A
  1891. # tristate unquoted_prompt
  1892. #
  1893. # endmenu
  1894. #
  1895. # Named choices ('choice FOO') also end up here.
  1896. if token is not _T_CHOICE:
  1897. self._warn("style: quotes recommended around '{}' in '{}'"
  1898. .format(name, self._line.strip()),
  1899. self.filename, self.linenr)
  1900. token = name
  1901. i = match.end()
  1902. else:
  1903. # Neither a keyword nor a non-const symbol
  1904. # We always strip whitespace after tokens, so it is safe to
  1905. # assume that s[i] is the start of a token here.
  1906. c = s[i]
  1907. if c in "\"'":
  1908. if "$" not in s and "\\" not in s:
  1909. # Fast path for lines without $ and \. Find the
  1910. # matching quote.
  1911. end_i = s.find(c, i + 1) + 1
  1912. if not end_i:
  1913. self._parse_error("unterminated string")
  1914. val = s[i + 1:end_i - 1]
  1915. i = end_i
  1916. else:
  1917. # Slow path
  1918. s, end_i = self._expand_str(s, i)
  1919. # os.path.expandvars() and the $UNAME_RELEASE replace()
  1920. # is a backwards compatibility hack, which should be
  1921. # reasonably safe as expandvars() leaves references to
  1922. # undefined env. vars. as is.
  1923. #
  1924. # The preprocessor functionality changed how
  1925. # environment variables are referenced, to $(FOO).
  1926. val = expandvars(s[i + 1:end_i - 1]
  1927. .replace("$UNAME_RELEASE",
  1928. _UNAME_RELEASE))
  1929. i = end_i
  1930. # This is the only place where we don't survive with a
  1931. # single token of lookback: 'option env="FOO"' does not
  1932. # refer to a constant symbol named "FOO".
  1933. token = \
  1934. val if token in _STRING_LEX or tokens[0] is _T_OPTION \
  1935. else self._lookup_const_sym(val)
  1936. elif s.startswith("&&", i):
  1937. token = _T_AND
  1938. i += 2
  1939. elif s.startswith("||", i):
  1940. token = _T_OR
  1941. i += 2
  1942. elif c == "=":
  1943. token = _T_EQUAL
  1944. i += 1
  1945. elif s.startswith("!=", i):
  1946. token = _T_UNEQUAL
  1947. i += 2
  1948. elif c == "!":
  1949. token = _T_NOT
  1950. i += 1
  1951. elif c == "(":
  1952. token = _T_OPEN_PAREN
  1953. i += 1
  1954. elif c == ")":
  1955. token = _T_CLOSE_PAREN
  1956. i += 1
  1957. elif c == "#":
  1958. break
  1959. # Very rare
  1960. elif s.startswith("<=", i):
  1961. token = _T_LESS_EQUAL
  1962. i += 2
  1963. elif c == "<":
  1964. token = _T_LESS
  1965. i += 1
  1966. elif s.startswith(">=", i):
  1967. token = _T_GREATER_EQUAL
  1968. i += 2
  1969. elif c == ">":
  1970. token = _T_GREATER
  1971. i += 1
  1972. else:
  1973. self._parse_error("unknown tokens in line")
  1974. # Skip trailing whitespace
  1975. while i < len(s) and s[i].isspace():
  1976. i += 1
  1977. # Add the token
  1978. tokens.append(token)
  1979. # None-terminating the token list makes token fetching simpler/faster
  1980. tokens.append(None)
  1981. return tokens
  1982. # Helpers for syntax checking and token fetching. See the
  1983. # 'Intro to expressions' section for what a constant symbol is.
  1984. #
  1985. # More of these could be added, but the single-use cases are inlined as an
  1986. # optimization.
  1987. def _expect_sym(self):
  1988. token = self._tokens[self._tokens_i]
  1989. self._tokens_i += 1
  1990. if token.__class__ is not Symbol:
  1991. self._parse_error("expected symbol")
  1992. return token
  1993. def _expect_nonconst_sym(self):
  1994. # Used for 'select' and 'imply' only. We know the token indices.
  1995. token = self._tokens[1]
  1996. self._tokens_i = 2
  1997. if token.__class__ is not Symbol or token.is_constant:
  1998. self._parse_error("expected nonconstant symbol")
  1999. return token
  2000. def _expect_str_and_eol(self):
  2001. token = self._tokens[self._tokens_i]
  2002. self._tokens_i += 1
  2003. if token.__class__ is not str:
  2004. self._parse_error("expected string")
  2005. if self._tokens[self._tokens_i] is not None:
  2006. self._trailing_tokens_error()
  2007. return token
  2008. def _expect_expr_and_eol(self):
  2009. expr = self._parse_expr(True)
  2010. if self._tokens[self._tokens_i] is not None:
  2011. self._trailing_tokens_error()
  2012. return expr
  2013. def _check_token(self, token):
  2014. # If the next token is 'token', removes it and returns True
  2015. if self._tokens[self._tokens_i] is token:
  2016. self._tokens_i += 1
  2017. return True
  2018. return False
  2019. #
  2020. # Preprocessor logic
  2021. #
  2022. def _parse_assignment(self, s):
  2023. # Parses a preprocessor variable assignment, registering the variable
  2024. # if it doesn't already exist. Also takes care of bare macros on lines
  2025. # (which are allowed, and can be useful for their side effects).
  2026. # Expand any macros in the left-hand side of the assignment (the
  2027. # variable name)
  2028. s = s.lstrip()
  2029. i = 0
  2030. while 1:
  2031. i = _assignment_lhs_fragment_match(s, i).end()
  2032. if s.startswith("$(", i):
  2033. s, i = self._expand_macro(s, i, ())
  2034. else:
  2035. break
  2036. if s.isspace():
  2037. # We also accept a bare macro on a line (e.g.
  2038. # $(warning-if,$(foo),ops)), provided it expands to a blank string
  2039. return
  2040. # Assigned variable
  2041. name = s[:i]
  2042. # Extract assignment operator (=, :=, or +=) and value
  2043. rhs_match = _assignment_rhs_match(s, i)
  2044. if not rhs_match:
  2045. self._parse_error("syntax error")
  2046. op, val = rhs_match.groups()
  2047. if name in self.variables:
  2048. # Already seen variable
  2049. var = self.variables[name]
  2050. else:
  2051. # New variable
  2052. var = Variable()
  2053. var.kconfig = self
  2054. var.name = name
  2055. var._n_expansions = 0
  2056. self.variables[name] = var
  2057. # += acts like = on undefined variables (defines a recursive
  2058. # variable)
  2059. if op == "+=":
  2060. op = "="
  2061. if op == "=":
  2062. var.is_recursive = True
  2063. var.value = val
  2064. elif op == ":=":
  2065. var.is_recursive = False
  2066. var.value = self._expand_whole(val, ())
  2067. else: # op == "+="
  2068. # += does immediate expansion if the variable was last set
  2069. # with :=
  2070. var.value += " " + (val if var.is_recursive else
  2071. self._expand_whole(val, ()))
  2072. def _expand_whole(self, s, args):
  2073. # Expands preprocessor macros in all of 's'. Used whenever we don't
  2074. # have to worry about delimiters. See _expand_macro() re. the 'args'
  2075. # parameter.
  2076. #
  2077. # Returns the expanded string.
  2078. i = 0
  2079. while 1:
  2080. i = s.find("$(", i)
  2081. if i == -1:
  2082. break
  2083. s, i = self._expand_macro(s, i, args)
  2084. return s
  2085. def _expand_name(self, s, i):
  2086. # Expands a symbol name starting at index 'i' in 's'.
  2087. #
  2088. # Returns the expanded name, the expanded 's' (including the part
  2089. # before the name), and the index of the first character in the next
  2090. # token after the name.
  2091. s, end_i = self._expand_name_iter(s, i)
  2092. name = s[i:end_i]
  2093. # isspace() is False for empty strings
  2094. if not name.strip():
  2095. # Avoid creating a Kconfig symbol with a blank name. It's almost
  2096. # guaranteed to be an error.
  2097. self._parse_error("macro expanded to blank string")
  2098. # Skip trailing whitespace
  2099. while end_i < len(s) and s[end_i].isspace():
  2100. end_i += 1
  2101. return name, s, end_i
  2102. def _expand_name_iter(self, s, i):
  2103. # Expands a symbol name starting at index 'i' in 's'.
  2104. #
  2105. # Returns the expanded 's' (including the part before the name) and the
  2106. # index of the first character after the expanded name in 's'.
  2107. while 1:
  2108. match = _name_special_search(s, i)
  2109. if match.group() != "$(":
  2110. return (s, match.start())
  2111. s, i = self._expand_macro(s, match.start(), ())
  2112. def _expand_str(self, s, i):
  2113. # Expands a quoted string starting at index 'i' in 's'. Handles both
  2114. # backslash escapes and macro expansion.
  2115. #
  2116. # Returns the expanded 's' (including the part before the string) and
  2117. # the index of the first character after the expanded string in 's'.
  2118. quote = s[i]
  2119. i += 1 # Skip over initial "/'
  2120. while 1:
  2121. match = _string_special_search(s, i)
  2122. if not match:
  2123. self._parse_error("unterminated string")
  2124. if match.group() == quote:
  2125. # Found the end of the string
  2126. return (s, match.end())
  2127. elif match.group() == "\\":
  2128. # Replace '\x' with 'x'. 'i' ends up pointing to the character
  2129. # after 'x', which allows macros to be canceled with '\$(foo)'.
  2130. i = match.end()
  2131. s = s[:match.start()] + s[i:]
  2132. elif match.group() == "$(":
  2133. # A macro call within the string
  2134. s, i = self._expand_macro(s, match.start(), ())
  2135. else:
  2136. # A ' quote within " quotes or vice versa
  2137. i += 1
  2138. def _expand_macro(self, s, i, args):
  2139. # Expands a macro starting at index 'i' in 's'. If this macro resulted
  2140. # from the expansion of another macro, 'args' holds the arguments
  2141. # passed to that macro.
  2142. #
  2143. # Returns the expanded 's' (including the part before the macro) and
  2144. # the index of the first character after the expanded macro in 's'.
  2145. res = s[:i]
  2146. i += 2 # Skip over "$("
  2147. arg_start = i # Start of current macro argument
  2148. new_args = [] # Arguments of this macro call
  2149. nesting = 0 # Current parentheses nesting level
  2150. while 1:
  2151. match = _macro_special_search(s, i)
  2152. if not match:
  2153. self._parse_error("missing end parenthesis in macro expansion")
  2154. if match.group() == "(":
  2155. nesting += 1
  2156. i = match.end()
  2157. elif match.group() == ")":
  2158. if nesting:
  2159. nesting -= 1
  2160. i = match.end()
  2161. continue
  2162. # Found the end of the macro
  2163. new_args.append(s[arg_start:match.start()])
  2164. # $(1) is replaced by the first argument to the function, etc.,
  2165. # provided at least that many arguments were passed
  2166. try:
  2167. # Does the macro look like an integer, with a corresponding
  2168. # argument? If so, expand it to the value of the argument.
  2169. res += args[int(new_args[0])]
  2170. except (ValueError, IndexError):
  2171. # Regular variables are just functions without arguments,
  2172. # and also go through the function value path
  2173. res += self._fn_val(new_args)
  2174. return (res + s[match.end():], len(res))
  2175. elif match.group() == ",":
  2176. i = match.end()
  2177. if nesting:
  2178. continue
  2179. # Found the end of a macro argument
  2180. new_args.append(s[arg_start:match.start()])
  2181. arg_start = i
  2182. else: # match.group() == "$("
  2183. # A nested macro call within the macro
  2184. s, i = self._expand_macro(s, match.start(), args)
  2185. def _fn_val(self, args):
  2186. # Returns the result of calling the function args[0] with the arguments
  2187. # args[1..len(args)-1]. Plain variables are treated as functions
  2188. # without arguments.
  2189. fn = args[0]
  2190. if fn in self.variables:
  2191. var = self.variables[fn]
  2192. if len(args) == 1:
  2193. # Plain variable
  2194. if var._n_expansions:
  2195. self._parse_error("Preprocessor variable {} recursively "
  2196. "references itself".format(var.name))
  2197. elif var._n_expansions > 100:
  2198. # Allow functions to call themselves, but guess that functions
  2199. # that are overly recursive are stuck
  2200. self._parse_error("Preprocessor function {} seems stuck "
  2201. "in infinite recursion".format(var.name))
  2202. var._n_expansions += 1
  2203. res = self._expand_whole(self.variables[fn].value, args)
  2204. var._n_expansions -= 1
  2205. return res
  2206. if fn in self._functions:
  2207. # Built-in or user-defined function
  2208. py_fn, min_arg, max_arg = self._functions[fn]
  2209. if len(args) - 1 < min_arg or \
  2210. (max_arg is not None and len(args) - 1 > max_arg):
  2211. if min_arg == max_arg:
  2212. expected_args = min_arg
  2213. elif max_arg is None:
  2214. expected_args = "{} or more".format(min_arg)
  2215. else:
  2216. expected_args = "{}-{}".format(min_arg, max_arg)
  2217. raise KconfigError("{}:{}: bad number of arguments in call "
  2218. "to {}, expected {}, got {}"
  2219. .format(self.filename, self.linenr, fn,
  2220. expected_args, len(args) - 1))
  2221. return py_fn(self, *args)
  2222. # Environment variables are tried last
  2223. if fn in os.environ:
  2224. self.env_vars.add(fn)
  2225. return os.environ[fn]
  2226. return ""
  2227. #
  2228. # Parsing
  2229. #
  2230. def _make_and(self, e1, e2):
  2231. # Constructs an AND (&&) expression. Performs trivial simplification.
  2232. if e1 is self.y:
  2233. return e2
  2234. if e2 is self.y:
  2235. return e1
  2236. if e1 is self.n or e2 is self.n:
  2237. return self.n
  2238. return (AND, e1, e2)
  2239. def _make_or(self, e1, e2):
  2240. # Constructs an OR (||) expression. Performs trivial simplification.
  2241. if e1 is self.n:
  2242. return e2
  2243. if e2 is self.n:
  2244. return e1
  2245. if e1 is self.y or e2 is self.y:
  2246. return self.y
  2247. return (OR, e1, e2)
  2248. def _parse_block(self, end_token, parent, prev):
  2249. # Parses a block, which is the contents of either a file or an if,
  2250. # menu, or choice statement.
  2251. #
  2252. # end_token:
  2253. # The token that ends the block, e.g. _T_ENDIF ("endif") for ifs.
  2254. # None for files.
  2255. #
  2256. # parent:
  2257. # The parent menu node, corresponding to a menu, Choice, or 'if'.
  2258. # 'if's are flattened after parsing.
  2259. #
  2260. # prev:
  2261. # The previous menu node. New nodes will be added after this one (by
  2262. # modifying 'next' pointers).
  2263. #
  2264. # 'prev' is reused to parse a list of child menu nodes (for a menu or
  2265. # Choice): After parsing the children, the 'next' pointer is assigned
  2266. # to the 'list' pointer to "tilt up" the children above the node.
  2267. #
  2268. # Returns the final menu node in the block (or 'prev' if the block is
  2269. # empty). This allows chaining.
  2270. while self._next_line():
  2271. t0 = self._tokens[0]
  2272. if t0 is _T_CONFIG or t0 is _T_MENUCONFIG:
  2273. # The tokenizer allocates Symbol objects for us
  2274. sym = self._tokens[1]
  2275. if sym.__class__ is not Symbol or sym.is_constant:
  2276. self._parse_error("missing or bad symbol name")
  2277. if self._tokens[2] is not None:
  2278. self._trailing_tokens_error()
  2279. self.defined_syms.append(sym)
  2280. node = MenuNode()
  2281. node.kconfig = self
  2282. node.item = sym
  2283. node.is_menuconfig = (t0 is _T_MENUCONFIG)
  2284. node.prompt = node.help = node.list = None
  2285. node.parent = parent
  2286. node.filename = self.filename
  2287. node.linenr = self.linenr
  2288. node.include_path = self._include_path
  2289. sym.nodes.append(node)
  2290. self._parse_props(node)
  2291. if node.is_menuconfig and not node.prompt:
  2292. self._warn("the menuconfig symbol {} has no prompt"
  2293. .format(sym.name_and_loc))
  2294. # Equivalent to
  2295. #
  2296. # prev.next = node
  2297. # prev = node
  2298. #
  2299. # due to tricky Python semantics. The order matters.
  2300. prev.next = prev = node
  2301. elif t0 is None:
  2302. # Blank line
  2303. continue
  2304. elif t0 in _SOURCE_TOKENS:
  2305. pattern = self._expect_str_and_eol()
  2306. if t0 in _REL_SOURCE_TOKENS:
  2307. # Relative source
  2308. pattern = join(dirname(self.filename), pattern)
  2309. # - glob() doesn't support globbing relative to a directory, so
  2310. # we need to prepend $srctree to 'pattern'. Use join()
  2311. # instead of '+' so that an absolute path in 'pattern' is
  2312. # preserved.
  2313. #
  2314. # - Sort the glob results to ensure a consistent ordering of
  2315. # Kconfig symbols, which indirectly ensures a consistent
  2316. # ordering in e.g. .config files
  2317. filenames = sorted(iglob(join(self._srctree_prefix, pattern)))
  2318. if not filenames and t0 in _OBL_SOURCE_TOKENS:
  2319. raise KconfigError(
  2320. "{}:{}: '{}' not found (in '{}'). Check that "
  2321. "environment variables are set correctly (e.g. "
  2322. "$srctree, which is {}). Also note that unset "
  2323. "environment variables expand to the empty string."
  2324. .format(self.filename, self.linenr, pattern,
  2325. self._line.strip(),
  2326. "set to '{}'".format(self.srctree)
  2327. if self.srctree else "unset or blank"))
  2328. for filename in filenames:
  2329. self._enter_file(filename)
  2330. prev = self._parse_block(None, parent, prev)
  2331. self._leave_file()
  2332. elif t0 is end_token:
  2333. # Reached the end of the block. Terminate the final node and
  2334. # return it.
  2335. if self._tokens[1] is not None:
  2336. self._trailing_tokens_error()
  2337. prev.next = None
  2338. return prev
  2339. elif t0 is _T_IF:
  2340. node = MenuNode()
  2341. node.item = node.prompt = None
  2342. node.parent = parent
  2343. node.dep = self._expect_expr_and_eol()
  2344. self._parse_block(_T_ENDIF, node, node)
  2345. node.list = node.next
  2346. prev.next = prev = node
  2347. elif t0 is _T_MENU:
  2348. node = MenuNode()
  2349. node.kconfig = self
  2350. node.item = t0 # _T_MENU == MENU
  2351. node.is_menuconfig = True
  2352. node.prompt = (self._expect_str_and_eol(), self.y)
  2353. node.visibility = self.y
  2354. node.parent = parent
  2355. node.filename = self.filename
  2356. node.linenr = self.linenr
  2357. node.include_path = self._include_path
  2358. self.menus.append(node)
  2359. self._parse_props(node)
  2360. self._parse_block(_T_ENDMENU, node, node)
  2361. node.list = node.next
  2362. prev.next = prev = node
  2363. elif t0 is _T_COMMENT:
  2364. node = MenuNode()
  2365. node.kconfig = self
  2366. node.item = t0 # _T_COMMENT == COMMENT
  2367. node.is_menuconfig = False
  2368. node.prompt = (self._expect_str_and_eol(), self.y)
  2369. node.list = None
  2370. node.parent = parent
  2371. node.filename = self.filename
  2372. node.linenr = self.linenr
  2373. node.include_path = self._include_path
  2374. self.comments.append(node)
  2375. self._parse_props(node)
  2376. prev.next = prev = node
  2377. elif t0 is _T_CHOICE:
  2378. if self._tokens[1] is None:
  2379. choice = Choice()
  2380. choice.direct_dep = self.n
  2381. else:
  2382. # Named choice
  2383. name = self._expect_str_and_eol()
  2384. choice = self.named_choices.get(name)
  2385. if not choice:
  2386. choice = Choice()
  2387. choice.name = name
  2388. choice.direct_dep = self.n
  2389. self.named_choices[name] = choice
  2390. self.choices.append(choice)
  2391. node = MenuNode()
  2392. node.kconfig = choice.kconfig = self
  2393. node.item = choice
  2394. node.is_menuconfig = True
  2395. node.prompt = node.help = None
  2396. node.parent = parent
  2397. node.filename = self.filename
  2398. node.linenr = self.linenr
  2399. node.include_path = self._include_path
  2400. choice.nodes.append(node)
  2401. self._parse_props(node)
  2402. self._parse_block(_T_ENDCHOICE, node, node)
  2403. node.list = node.next
  2404. prev.next = prev = node
  2405. elif t0 is _T_MAINMENU:
  2406. self.top_node.prompt = (self._expect_str_and_eol(), self.y)
  2407. else:
  2408. # A valid endchoice/endif/endmenu is caught by the 'end_token'
  2409. # check above
  2410. self._parse_error(
  2411. "no corresponding 'choice'" if t0 is _T_ENDCHOICE else
  2412. "no corresponding 'if'" if t0 is _T_ENDIF else
  2413. "no corresponding 'menu'" if t0 is _T_ENDMENU else
  2414. "unrecognized construct")
  2415. # End of file reached. Return the last node.
  2416. if end_token:
  2417. raise KconfigError(
  2418. "error: expected '{}' at end of '{}'"
  2419. .format("endchoice" if end_token is _T_ENDCHOICE else
  2420. "endif" if end_token is _T_ENDIF else
  2421. "endmenu",
  2422. self.filename))
  2423. return prev
  2424. def _parse_cond(self):
  2425. # Parses an optional 'if <expr>' construct and returns the parsed
  2426. # <expr>, or self.y if the next token is not _T_IF
  2427. expr = self._parse_expr(True) if self._check_token(_T_IF) else self.y
  2428. if self._tokens[self._tokens_i] is not None:
  2429. self._trailing_tokens_error()
  2430. return expr
  2431. def _parse_props(self, node):
  2432. # Parses and adds properties to the MenuNode 'node' (type, 'prompt',
  2433. # 'default's, etc.) Properties are later copied up to symbols and
  2434. # choices in a separate pass after parsing, in e.g.
  2435. # _add_props_to_sym().
  2436. #
  2437. # An older version of this code added properties directly to symbols
  2438. # and choices instead of to their menu nodes (and handled dependency
  2439. # propagation simultaneously), but that loses information on where a
  2440. # property is added when a symbol or choice is defined in multiple
  2441. # locations. Some Kconfig configuration systems rely heavily on such
  2442. # symbols, and better docs can be generated by keeping track of where
  2443. # properties are added.
  2444. #
  2445. # node:
  2446. # The menu node we're parsing properties on
  2447. # Dependencies from 'depends on'. Will get propagated to the properties
  2448. # below.
  2449. node.dep = self.y
  2450. while self._next_line():
  2451. t0 = self._tokens[0]
  2452. if t0 in _TYPE_TOKENS:
  2453. # Relies on '_T_BOOL is BOOL', etc., to save a conversion
  2454. self._set_type(node.item, t0)
  2455. if self._tokens[1] is not None:
  2456. self._parse_prompt(node)
  2457. elif t0 is _T_DEPENDS:
  2458. if not self._check_token(_T_ON):
  2459. self._parse_error("expected 'on' after 'depends'")
  2460. node.dep = self._make_and(node.dep,
  2461. self._expect_expr_and_eol())
  2462. elif t0 is _T_HELP:
  2463. self._parse_help(node)
  2464. elif t0 is _T_SELECT:
  2465. if node.item.__class__ is not Symbol:
  2466. self._parse_error("only symbols can select")
  2467. node.selects.append((self._expect_nonconst_sym(),
  2468. self._parse_cond()))
  2469. elif t0 is None:
  2470. # Blank line
  2471. continue
  2472. elif t0 is _T_DEFAULT:
  2473. node.defaults.append((self._parse_expr(False),
  2474. self._parse_cond()))
  2475. elif t0 in _DEF_TOKEN_TO_TYPE:
  2476. self._set_type(node.item, _DEF_TOKEN_TO_TYPE[t0])
  2477. node.defaults.append((self._parse_expr(False),
  2478. self._parse_cond()))
  2479. elif t0 is _T_PROMPT:
  2480. self._parse_prompt(node)
  2481. elif t0 is _T_RANGE:
  2482. node.ranges.append((self._expect_sym(), self._expect_sym(),
  2483. self._parse_cond()))
  2484. elif t0 is _T_IMPLY:
  2485. if node.item.__class__ is not Symbol:
  2486. self._parse_error("only symbols can imply")
  2487. node.implies.append((self._expect_nonconst_sym(),
  2488. self._parse_cond()))
  2489. elif t0 is _T_VISIBLE:
  2490. if not self._check_token(_T_IF):
  2491. self._parse_error("expected 'if' after 'visible'")
  2492. node.visibility = self._make_and(node.visibility,
  2493. self._expect_expr_and_eol())
  2494. elif t0 is _T_OPTION:
  2495. if self._check_token(_T_ENV):
  2496. if not self._check_token(_T_EQUAL):
  2497. self._parse_error("expected '=' after 'env'")
  2498. env_var = self._expect_str_and_eol()
  2499. node.item.env_var = env_var
  2500. if env_var in os.environ:
  2501. node.defaults.append(
  2502. (self._lookup_const_sym(os.environ[env_var]),
  2503. self.y))
  2504. else:
  2505. self._warn("{1} has 'option env=\"{0}\"', "
  2506. "but the environment variable {0} is not "
  2507. "set".format(node.item.name, env_var),
  2508. self.filename, self.linenr)
  2509. if env_var != node.item.name:
  2510. self._warn("Kconfiglib expands environment variables "
  2511. "in strings directly, meaning you do not "
  2512. "need 'option env=...' \"bounce\" symbols. "
  2513. "For compatibility with the C tools, "
  2514. "rename {} to {} (so that the symbol name "
  2515. "matches the environment variable name)."
  2516. .format(node.item.name, env_var),
  2517. self.filename, self.linenr)
  2518. elif self._check_token(_T_DEFCONFIG_LIST):
  2519. if not self.defconfig_list:
  2520. self.defconfig_list = node.item
  2521. else:
  2522. self._warn("'option defconfig_list' set on multiple "
  2523. "symbols ({0} and {1}). Only {0} will be "
  2524. "used.".format(self.defconfig_list.name,
  2525. node.item.name),
  2526. self.filename, self.linenr)
  2527. elif self._check_token(_T_MODULES):
  2528. # To reduce warning spam, only warn if 'option modules' is
  2529. # set on some symbol that isn't MODULES, which should be
  2530. # safe. I haven't run into any projects that make use
  2531. # modules besides the kernel yet, and there it's likely to
  2532. # keep being called "MODULES".
  2533. if node.item is not self.modules:
  2534. self._warn("the 'modules' option is not supported. "
  2535. "Let me know if this is a problem for you, "
  2536. "as it wouldn't be that hard to implement. "
  2537. "Note that modules are supported -- "
  2538. "Kconfiglib just assumes the symbol name "
  2539. "MODULES, like older versions of the C "
  2540. "implementation did when 'option modules' "
  2541. "wasn't used.",
  2542. self.filename, self.linenr)
  2543. elif self._check_token(_T_ALLNOCONFIG_Y):
  2544. if node.item.__class__ is not Symbol:
  2545. self._parse_error("the 'allnoconfig_y' option is only "
  2546. "valid for symbols")
  2547. node.item.is_allnoconfig_y = True
  2548. else:
  2549. self._parse_error("unrecognized option")
  2550. elif t0 is _T_OPTIONAL:
  2551. if node.item.__class__ is not Choice:
  2552. self._parse_error('"optional" is only valid for choices')
  2553. node.item.is_optional = True
  2554. else:
  2555. # Reuse the tokens for the non-property line later
  2556. self._reuse_tokens = True
  2557. return
  2558. def _set_type(self, sc, new_type):
  2559. # Sets the type of 'sc' (symbol or choice) to 'new_type'
  2560. # UNKNOWN is falsy
  2561. if sc.orig_type and sc.orig_type is not new_type:
  2562. self._warn("{} defined with multiple types, {} will be used"
  2563. .format(sc.name_and_loc, TYPE_TO_STR[new_type]))
  2564. sc.orig_type = new_type
  2565. def _parse_prompt(self, node):
  2566. # 'prompt' properties override each other within a single definition of
  2567. # a symbol, but additional prompts can be added by defining the symbol
  2568. # multiple times
  2569. if node.prompt:
  2570. self._warn(node.item.name_and_loc +
  2571. " defined with multiple prompts in single location")
  2572. prompt = self._tokens[1]
  2573. self._tokens_i = 2
  2574. if prompt.__class__ is not str:
  2575. self._parse_error("expected prompt string")
  2576. if prompt != prompt.strip():
  2577. self._warn(node.item.name_and_loc +
  2578. " has leading or trailing whitespace in its prompt")
  2579. # This avoid issues for e.g. reStructuredText documentation, where
  2580. # '*prompt *' is invalid
  2581. prompt = prompt.strip()
  2582. node.prompt = (prompt, self._parse_cond())
  2583. def _parse_help(self, node):
  2584. if node.help is not None:
  2585. self._warn(node.item.name_and_loc + " defined with more than "
  2586. "one help text -- only the last one will be used")
  2587. # Micro-optimization. This code is pretty hot.
  2588. readline = self._readline
  2589. # Find first non-blank (not all-space) line and get its
  2590. # indentation
  2591. while 1:
  2592. line = readline()
  2593. self.linenr += 1
  2594. if not line:
  2595. self._empty_help(node, line)
  2596. return
  2597. if not line.isspace():
  2598. break
  2599. len_ = len # Micro-optimization
  2600. # Use a separate 'expline' variable here and below to avoid stomping on
  2601. # any tabs people might've put deliberately into the first line after
  2602. # the help text
  2603. expline = line.expandtabs()
  2604. indent = len_(expline) - len_(expline.lstrip())
  2605. if not indent:
  2606. self._empty_help(node, line)
  2607. return
  2608. # The help text goes on till the first non-blank line with less indent
  2609. # than the first line
  2610. # Add the first line
  2611. lines = [expline[indent:]]
  2612. add_line = lines.append # Micro-optimization
  2613. while 1:
  2614. line = readline()
  2615. if line.isspace():
  2616. # No need to preserve the exact whitespace in these
  2617. add_line("\n")
  2618. elif not line:
  2619. # End of file
  2620. break
  2621. else:
  2622. expline = line.expandtabs()
  2623. if len_(expline) - len_(expline.lstrip()) < indent:
  2624. break
  2625. add_line(expline[indent:])
  2626. self.linenr += len_(lines)
  2627. node.help = "".join(lines).rstrip()
  2628. if line:
  2629. self._line_after_help(line)
  2630. def _empty_help(self, node, line):
  2631. self._warn(node.item.name_and_loc +
  2632. " has 'help' but empty help text")
  2633. node.help = ""
  2634. if line:
  2635. self._line_after_help(line)
  2636. def _parse_expr(self, transform_m):
  2637. # Parses an expression from the tokens in Kconfig._tokens using a
  2638. # simple top-down approach. See the module docstring for the expression
  2639. # format.
  2640. #
  2641. # transform_m:
  2642. # True if m should be rewritten to m && MODULES. See the
  2643. # Kconfig.eval_string() documentation.
  2644. # Grammar:
  2645. #
  2646. # expr: and_expr ['||' expr]
  2647. # and_expr: factor ['&&' and_expr]
  2648. # factor: <symbol> ['='/'!='/'<'/... <symbol>]
  2649. # '!' factor
  2650. # '(' expr ')'
  2651. #
  2652. # It helps to think of the 'expr: and_expr' case as a single-operand OR
  2653. # (no ||), and of the 'and_expr: factor' case as a single-operand AND
  2654. # (no &&). Parsing code is always a bit tricky.
  2655. # Mind dump: parse_factor() and two nested loops for OR and AND would
  2656. # work as well. The straightforward implementation there gives a
  2657. # (op, (op, (op, A, B), C), D) parse for A op B op C op D. Representing
  2658. # expressions as (op, [list of operands]) instead goes nicely with that
  2659. # version, but is wasteful for short expressions and complicates
  2660. # expression evaluation and other code that works on expressions (more
  2661. # complicated code likely offsets any performance gain from less
  2662. # recursion too). If we also try to optimize the list representation by
  2663. # merging lists when possible (e.g. when ANDing two AND expressions),
  2664. # we end up allocating a ton of lists instead of reusing expressions,
  2665. # which is bad.
  2666. and_expr = self._parse_and_expr(transform_m)
  2667. # Return 'and_expr' directly if we have a "single-operand" OR.
  2668. # Otherwise, parse the expression on the right and make an OR node.
  2669. # This turns A || B || C || D into (OR, A, (OR, B, (OR, C, D))).
  2670. return and_expr if not self._check_token(_T_OR) else \
  2671. (OR, and_expr, self._parse_expr(transform_m))
  2672. def _parse_and_expr(self, transform_m):
  2673. factor = self._parse_factor(transform_m)
  2674. # Return 'factor' directly if we have a "single-operand" AND.
  2675. # Otherwise, parse the right operand and make an AND node. This turns
  2676. # A && B && C && D into (AND, A, (AND, B, (AND, C, D))).
  2677. return factor if not self._check_token(_T_AND) else \
  2678. (AND, factor, self._parse_and_expr(transform_m))
  2679. def _parse_factor(self, transform_m):
  2680. token = self._tokens[self._tokens_i]
  2681. self._tokens_i += 1
  2682. if token.__class__ is Symbol:
  2683. # Plain symbol or relation
  2684. if self._tokens[self._tokens_i] not in _RELATIONS:
  2685. # Plain symbol
  2686. # For conditional expressions ('depends on <expr>',
  2687. # '... if <expr>', etc.), m is rewritten to m && MODULES.
  2688. if transform_m and token is self.m:
  2689. return (AND, self.m, self.modules)
  2690. return token
  2691. # Relation
  2692. #
  2693. # _T_EQUAL, _T_UNEQUAL, etc., deliberately have the same values as
  2694. # EQUAL, UNEQUAL, etc., so we can just use the token directly
  2695. self._tokens_i += 1
  2696. return (self._tokens[self._tokens_i - 1], token,
  2697. self._expect_sym())
  2698. if token is _T_NOT:
  2699. # token == _T_NOT == NOT
  2700. return (token, self._parse_factor(transform_m))
  2701. if token is _T_OPEN_PAREN:
  2702. expr_parse = self._parse_expr(transform_m)
  2703. if self._check_token(_T_CLOSE_PAREN):
  2704. return expr_parse
  2705. self._parse_error("malformed expression")
  2706. #
  2707. # Caching and invalidation
  2708. #
  2709. def _build_dep(self):
  2710. # Populates the Symbol/Choice._dependents sets, which contain all other
  2711. # items (symbols and choices) that immediately depend on the item in
  2712. # the sense that changing the value of the item might affect the value
  2713. # of the dependent items. This is used for caching/invalidation.
  2714. #
  2715. # The calculated sets might be larger than necessary as we don't do any
  2716. # complex analysis of the expressions.
  2717. depend_on = _depend_on # Micro-optimization
  2718. # Only calculate _dependents for defined symbols. Constant and
  2719. # undefined symbols could theoretically be selected/implied, but it
  2720. # wouldn't change their value, so it's not a true dependency.
  2721. for sym in self.unique_defined_syms:
  2722. # Symbols depend on the following:
  2723. # The prompt conditions
  2724. for node in sym.nodes:
  2725. if node.prompt:
  2726. depend_on(sym, node.prompt[1])
  2727. # The default values and their conditions
  2728. for value, cond in sym.defaults:
  2729. depend_on(sym, value)
  2730. depend_on(sym, cond)
  2731. # The reverse and weak reverse dependencies
  2732. depend_on(sym, sym.rev_dep)
  2733. depend_on(sym, sym.weak_rev_dep)
  2734. # The ranges along with their conditions
  2735. for low, high, cond in sym.ranges:
  2736. depend_on(sym, low)
  2737. depend_on(sym, high)
  2738. depend_on(sym, cond)
  2739. # The direct dependencies. This is usually redundant, as the direct
  2740. # dependencies get propagated to properties, but it's needed to get
  2741. # invalidation solid for 'imply', which only checks the direct
  2742. # dependencies (even if there are no properties to propagate it
  2743. # to).
  2744. depend_on(sym, sym.direct_dep)
  2745. # In addition to the above, choice symbols depend on the choice
  2746. # they're in, but that's handled automatically since the Choice is
  2747. # propagated to the conditions of the properties before
  2748. # _build_dep() runs.
  2749. for choice in self.unique_choices:
  2750. # Choices depend on the following:
  2751. # The prompt conditions
  2752. for node in choice.nodes:
  2753. if node.prompt:
  2754. depend_on(choice, node.prompt[1])
  2755. # The default symbol conditions
  2756. for _, cond in choice.defaults:
  2757. depend_on(choice, cond)
  2758. def _add_choice_deps(self):
  2759. # Choices also depend on the choice symbols themselves, because the
  2760. # y-mode selection of the choice might change if a choice symbol's
  2761. # visibility changes.
  2762. #
  2763. # We add these dependencies separately after dependency loop detection.
  2764. # The invalidation algorithm can handle the resulting
  2765. # <choice symbol> <-> <choice> dependency loops, but they make loop
  2766. # detection awkward.
  2767. for choice in self.unique_choices:
  2768. for sym in choice.syms:
  2769. sym._dependents.add(choice)
  2770. def _invalidate_all(self):
  2771. # Undefined symbols never change value and don't need to be
  2772. # invalidated, so we can just iterate over defined symbols.
  2773. # Invalidating constant symbols would break things horribly.
  2774. for sym in self.unique_defined_syms:
  2775. sym._invalidate()
  2776. for choice in self.unique_choices:
  2777. choice._invalidate()
  2778. #
  2779. # Post-parsing menu tree processing, including dependency propagation and
  2780. # implicit submenu creation
  2781. #
  2782. def _finalize_node(self, node, visible_if):
  2783. # Finalizes a menu node and its children:
  2784. #
  2785. # - Copies properties from menu nodes up to their contained
  2786. # symbols/choices
  2787. #
  2788. # - Propagates dependencies from parent to child nodes
  2789. #
  2790. # - Creates implicit menus (see kconfig-language.txt)
  2791. #
  2792. # - Removes 'if' nodes
  2793. #
  2794. # - Sets 'choice' types and registers choice symbols
  2795. #
  2796. # menu_finalize() in the C implementation is similar.
  2797. #
  2798. # node:
  2799. # The menu node to finalize. This node and its children will have
  2800. # been finalized when the function returns, and any implicit menus
  2801. # will have been created.
  2802. #
  2803. # visible_if:
  2804. # Dependencies from 'visible if' on parent menus. These are added to
  2805. # the prompts of symbols and choices.
  2806. if node.item.__class__ is Symbol:
  2807. # Copy defaults, ranges, selects, and implies to the Symbol
  2808. self._add_props_to_sym(node)
  2809. # Find any items that should go in an implicit menu rooted at the
  2810. # symbol
  2811. cur = node
  2812. while cur.next and _auto_menu_dep(node, cur.next):
  2813. # This makes implicit submenu creation work recursively, with
  2814. # implicit menus inside implicit menus
  2815. self._finalize_node(cur.next, visible_if)
  2816. cur = cur.next
  2817. cur.parent = node
  2818. if cur is not node:
  2819. # Found symbols that should go in an implicit submenu. Tilt
  2820. # them up above us.
  2821. node.list = node.next
  2822. node.next = cur.next
  2823. cur.next = None
  2824. elif node.list:
  2825. # The menu node is a choice, menu, or if. Finalize each child node.
  2826. if node.item is MENU:
  2827. visible_if = self._make_and(visible_if, node.visibility)
  2828. # Propagate the menu node's dependencies to each child menu node.
  2829. #
  2830. # This needs to go before the recursive _finalize_node() call so
  2831. # that implicit submenu creation can look ahead at dependencies.
  2832. self._propagate_deps(node, visible_if)
  2833. # Finalize the children
  2834. cur = node.list
  2835. while cur:
  2836. self._finalize_node(cur, visible_if)
  2837. cur = cur.next
  2838. if node.list:
  2839. # node's children have been individually finalized. Do final steps
  2840. # to finalize this "level" in the menu tree.
  2841. _flatten(node.list)
  2842. _remove_ifs(node)
  2843. # Empty choices (node.list None) are possible, so this needs to go
  2844. # outside
  2845. if node.item.__class__ is Choice:
  2846. # Add the node's non-node-specific properties to the choice, like
  2847. # _add_props_to_sym() does
  2848. choice = node.item
  2849. choice.direct_dep = self._make_or(choice.direct_dep, node.dep)
  2850. choice.defaults += node.defaults
  2851. _finalize_choice(node)
  2852. def _propagate_deps(self, node, visible_if):
  2853. # Propagates 'node's dependencies to its child menu nodes
  2854. # If the parent node holds a Choice, we use the Choice itself as the
  2855. # parent dependency. This makes sense as the value (mode) of the choice
  2856. # limits the visibility of the contained choice symbols. The C
  2857. # implementation works the same way.
  2858. #
  2859. # Due to the similar interface, Choice works as a drop-in replacement
  2860. # for Symbol here.
  2861. basedep = node.item if node.item.__class__ is Choice else node.dep
  2862. cur = node.list
  2863. while cur:
  2864. dep = cur.dep = self._make_and(cur.dep, basedep)
  2865. if cur.item.__class__ in _SYMBOL_CHOICE:
  2866. # Propagate 'visible if' and dependencies to the prompt
  2867. if cur.prompt:
  2868. cur.prompt = (cur.prompt[0],
  2869. self._make_and(
  2870. cur.prompt[1],
  2871. self._make_and(visible_if, dep)))
  2872. # Propagate dependencies to defaults
  2873. if cur.defaults:
  2874. cur.defaults = [(default, self._make_and(cond, dep))
  2875. for default, cond in cur.defaults]
  2876. # Propagate dependencies to ranges
  2877. if cur.ranges:
  2878. cur.ranges = [(low, high, self._make_and(cond, dep))
  2879. for low, high, cond in cur.ranges]
  2880. # Propagate dependencies to selects
  2881. if cur.selects:
  2882. cur.selects = [(target, self._make_and(cond, dep))
  2883. for target, cond in cur.selects]
  2884. # Propagate dependencies to implies
  2885. if cur.implies:
  2886. cur.implies = [(target, self._make_and(cond, dep))
  2887. for target, cond in cur.implies]
  2888. elif cur.prompt: # Not a symbol/choice
  2889. # Propagate dependencies to the prompt. 'visible if' is only
  2890. # propagated to symbols/choices.
  2891. cur.prompt = (cur.prompt[0],
  2892. self._make_and(cur.prompt[1], dep))
  2893. cur = cur.next
  2894. def _add_props_to_sym(self, node):
  2895. # Copies properties from the menu node 'node' up to its contained
  2896. # symbol, and adds (weak) reverse dependencies to selected/implied
  2897. # symbols.
  2898. #
  2899. # This can't be rolled into _propagate_deps(), because that function
  2900. # traverses the menu tree roughly breadth-first, meaning properties on
  2901. # symbols defined in multiple locations could end up in the wrong
  2902. # order.
  2903. sym = node.item
  2904. # See the Symbol class docstring
  2905. sym.direct_dep = self._make_or(sym.direct_dep, node.dep)
  2906. sym.defaults += node.defaults
  2907. sym.ranges += node.ranges
  2908. sym.selects += node.selects
  2909. sym.implies += node.implies
  2910. # Modify the reverse dependencies of the selected symbol
  2911. for target, cond in node.selects:
  2912. target.rev_dep = self._make_or(
  2913. target.rev_dep,
  2914. self._make_and(sym, cond))
  2915. # Modify the weak reverse dependencies of the implied
  2916. # symbol
  2917. for target, cond in node.implies:
  2918. target.weak_rev_dep = self._make_or(
  2919. target.weak_rev_dep,
  2920. self._make_and(sym, cond))
  2921. #
  2922. # Misc.
  2923. #
  2924. def _check_sym_sanity(self):
  2925. # Checks various symbol properties that are handiest to check after
  2926. # parsing. Only generates errors and warnings.
  2927. def num_ok(sym, type_):
  2928. # Returns True if the (possibly constant) symbol 'sym' is valid as a value
  2929. # for a symbol of type type_ (INT or HEX)
  2930. # 'not sym.nodes' implies a constant or undefined symbol, e.g. a plain
  2931. # "123"
  2932. if not sym.nodes:
  2933. return _is_base_n(sym.name, _TYPE_TO_BASE[type_])
  2934. return sym.orig_type is type_
  2935. for sym in self.unique_defined_syms:
  2936. if sym.orig_type in _BOOL_TRISTATE:
  2937. # A helper function could be factored out here, but keep it
  2938. # speedy/straightforward
  2939. for target_sym, _ in sym.selects:
  2940. if target_sym.orig_type not in _BOOL_TRISTATE_UNKNOWN:
  2941. self._warn("{} selects the {} symbol {}, which is not "
  2942. "bool or tristate"
  2943. .format(sym.name_and_loc,
  2944. TYPE_TO_STR[target_sym.orig_type],
  2945. target_sym.name_and_loc))
  2946. for target_sym, _ in sym.implies:
  2947. if target_sym.orig_type not in _BOOL_TRISTATE_UNKNOWN:
  2948. self._warn("{} implies the {} symbol {}, which is not "
  2949. "bool or tristate"
  2950. .format(sym.name_and_loc,
  2951. TYPE_TO_STR[target_sym.orig_type],
  2952. target_sym.name_and_loc))
  2953. elif sym.orig_type: # STRING/INT/HEX
  2954. for default, _ in sym.defaults:
  2955. if default.__class__ is not Symbol:
  2956. raise KconfigError(
  2957. "the {} symbol {} has a malformed default {} -- "
  2958. "expected a single symbol"
  2959. .format(TYPE_TO_STR[sym.orig_type],
  2960. sym.name_and_loc, expr_str(default)))
  2961. if sym.orig_type is STRING:
  2962. if not default.is_constant and not default.nodes and \
  2963. not default.name.isupper():
  2964. # 'default foo' on a string symbol could be either a symbol
  2965. # reference or someone leaving out the quotes. Guess that
  2966. # the quotes were left out if 'foo' isn't all-uppercase
  2967. # (and no symbol named 'foo' exists).
  2968. self._warn("style: quotes recommended around "
  2969. "default value for string symbol "
  2970. + sym.name_and_loc)
  2971. elif not num_ok(default, sym.orig_type): # INT/HEX
  2972. self._warn("the {0} symbol {1} has a non-{0} default {2}"
  2973. .format(TYPE_TO_STR[sym.orig_type],
  2974. sym.name_and_loc,
  2975. default.name_and_loc))
  2976. if sym.selects or sym.implies:
  2977. self._warn("the {} symbol {} has selects or implies"
  2978. .format(TYPE_TO_STR[sym.orig_type],
  2979. sym.name_and_loc))
  2980. else: # UNKNOWN
  2981. self._warn("{} defined without a type"
  2982. .format(sym.name_and_loc))
  2983. if sym.ranges:
  2984. if sym.orig_type not in _INT_HEX:
  2985. self._warn(
  2986. "the {} symbol {} has ranges, but is not int or hex"
  2987. .format(TYPE_TO_STR[sym.orig_type],
  2988. sym.name_and_loc))
  2989. else:
  2990. for low, high, _ in sym.ranges:
  2991. if not num_ok(low, sym.orig_type) or \
  2992. not num_ok(high, sym.orig_type):
  2993. self._warn("the {0} symbol {1} has a non-{0} "
  2994. "range [{2}, {3}]"
  2995. .format(TYPE_TO_STR[sym.orig_type],
  2996. sym.name_and_loc,
  2997. low.name_and_loc,
  2998. high.name_and_loc))
  2999. def _check_choice_sanity(self):
  3000. # Checks various choice properties that are handiest to check after
  3001. # parsing. Only generates errors and warnings.
  3002. def warn_select_imply(sym, expr, expr_type):
  3003. msg = "the choice symbol {} is {} by the following symbols, but " \
  3004. "select/imply has no effect on choice symbols" \
  3005. .format(sym.name_and_loc, expr_type)
  3006. # si = select/imply
  3007. for si in split_expr(expr, OR):
  3008. msg += "\n - " + split_expr(si, AND)[0].name_and_loc
  3009. self._warn(msg)
  3010. for choice in self.unique_choices:
  3011. if choice.orig_type not in _BOOL_TRISTATE:
  3012. self._warn("{} defined with type {}"
  3013. .format(choice.name_and_loc,
  3014. TYPE_TO_STR[choice.orig_type]))
  3015. for node in choice.nodes:
  3016. if node.prompt:
  3017. break
  3018. else:
  3019. self._warn(choice.name_and_loc + " defined without a prompt")
  3020. for default, _ in choice.defaults:
  3021. if default.__class__ is not Symbol:
  3022. raise KconfigError(
  3023. "{} has a malformed default {}"
  3024. .format(choice.name_and_loc, expr_str(default)))
  3025. if default.choice is not choice:
  3026. self._warn("the default selection {} of {} is not "
  3027. "contained in the choice"
  3028. .format(default.name_and_loc,
  3029. choice.name_and_loc))
  3030. for sym in choice.syms:
  3031. if sym.defaults:
  3032. self._warn("default on the choice symbol {} will have "
  3033. "no effect, as defaults do not affect choice "
  3034. "symbols".format(sym.name_and_loc))
  3035. if sym.rev_dep is not sym.kconfig.n:
  3036. warn_select_imply(sym, sym.rev_dep, "selected")
  3037. if sym.weak_rev_dep is not sym.kconfig.n:
  3038. warn_select_imply(sym, sym.weak_rev_dep, "implied")
  3039. for node in sym.nodes:
  3040. if node.parent.item is choice:
  3041. if not node.prompt:
  3042. self._warn("the choice symbol {} has no prompt"
  3043. .format(sym.name_and_loc))
  3044. elif node.prompt:
  3045. self._warn("the choice symbol {} is defined with a "
  3046. "prompt outside the choice"
  3047. .format(sym.name_and_loc))
  3048. def _parse_error(self, msg):
  3049. raise KconfigError("{}error: couldn't parse '{}': {}".format(
  3050. "" if self.filename is None else
  3051. "{}:{}: ".format(self.filename, self.linenr),
  3052. self._line.strip(), msg))
  3053. def _trailing_tokens_error(self):
  3054. self._parse_error("extra tokens at end of line")
  3055. def _open(self, filename, mode):
  3056. # open() wrapper:
  3057. #
  3058. # - Enable universal newlines mode on Python 2 to ease
  3059. # interoperability between Linux and Windows. It's already the
  3060. # default on Python 3.
  3061. #
  3062. # The "U" flag would currently work for both Python 2 and 3, but it's
  3063. # deprecated on Python 3, so play it future-safe.
  3064. #
  3065. # io.open() defaults to universal newlines on Python 2 (and is an
  3066. # alias for open() on Python 3), but it returns 'unicode' strings and
  3067. # slows things down:
  3068. #
  3069. # Parsing x86 Kconfigs on Python 2
  3070. #
  3071. # with open(..., "rU"):
  3072. #
  3073. # real 0m0.930s
  3074. # user 0m0.905s
  3075. # sys 0m0.025s
  3076. #
  3077. # with io.open():
  3078. #
  3079. # real 0m1.069s
  3080. # user 0m1.040s
  3081. # sys 0m0.029s
  3082. #
  3083. # There's no appreciable performance difference between "r" and
  3084. # "rU" for parsing performance on Python 2.
  3085. #
  3086. # - For Python 3, force the encoding. Forcing the encoding on Python 2
  3087. # turns strings into Unicode strings, which gets messy. Python 2
  3088. # doesn't decode regular strings anyway.
  3089. return open(filename, "rU" if mode == "r" else mode) if _IS_PY2 else \
  3090. open(filename, mode, encoding=self._encoding)
  3091. def _check_undef_syms(self):
  3092. # Prints warnings for all references to undefined symbols within the
  3093. # Kconfig files
  3094. def is_num(s):
  3095. # Returns True if the string 's' looks like a number.
  3096. #
  3097. # Internally, all operands in Kconfig are symbols, only undefined symbols
  3098. # (which numbers usually are) get their name as their value.
  3099. #
  3100. # Only hex numbers that start with 0x/0X are classified as numbers.
  3101. # Otherwise, symbols whose names happen to contain only the letters A-F
  3102. # would trigger false positives.
  3103. try:
  3104. int(s)
  3105. except ValueError:
  3106. if not s.startswith(("0x", "0X")):
  3107. return False
  3108. try:
  3109. int(s, 16)
  3110. except ValueError:
  3111. return False
  3112. return True
  3113. for sym in (self.syms.viewvalues if _IS_PY2 else self.syms.values)():
  3114. # - sym.nodes empty means the symbol is undefined (has no
  3115. # definition locations)
  3116. #
  3117. # - Due to Kconfig internals, numbers show up as undefined Kconfig
  3118. # symbols, but shouldn't be flagged
  3119. #
  3120. # - The MODULES symbol always exists
  3121. if not sym.nodes and not is_num(sym.name) and \
  3122. sym.name != "MODULES":
  3123. msg = "undefined symbol {}:".format(sym.name)
  3124. for node in self.node_iter():
  3125. if sym in node.referenced:
  3126. msg += "\n\n- Referenced at {}:{}:\n\n{}" \
  3127. .format(node.filename, node.linenr, node)
  3128. self._warn(msg)
  3129. def _warn(self, msg, filename=None, linenr=None):
  3130. # For printing general warnings
  3131. if not self.warn:
  3132. return
  3133. msg = "warning: " + msg
  3134. if filename is not None:
  3135. msg = "{}:{}: {}".format(filename, linenr, msg)
  3136. self.warnings.append(msg)
  3137. if self.warn_to_stderr:
  3138. sys.stderr.write(msg + "\n")
  3139. class Symbol(object):
  3140. """
  3141. Represents a configuration symbol:
  3142. (menu)config FOO
  3143. ...
  3144. The following attributes are available. They should be viewed as read-only,
  3145. and some are implemented through @property magic (but are still efficient
  3146. to access due to internal caching).
  3147. Note: Prompts, help texts, and locations are stored in the Symbol's
  3148. MenuNode(s) rather than in the Symbol itself. Check the MenuNode class and
  3149. the Symbol.nodes attribute. This organization matches the C tools.
  3150. name:
  3151. The name of the symbol, e.g. "FOO" for 'config FOO'.
  3152. type:
  3153. The type of the symbol. One of BOOL, TRISTATE, STRING, INT, HEX, UNKNOWN.
  3154. UNKNOWN is for undefined symbols, (non-special) constant symbols, and
  3155. symbols defined without a type.
  3156. When running without modules (MODULES having the value n), TRISTATE
  3157. symbols magically change type to BOOL. This also happens for symbols
  3158. within choices in "y" mode. This matches the C tools, and makes sense for
  3159. menuconfig-like functionality.
  3160. orig_type:
  3161. The type as given in the Kconfig file, without any magic applied. Used
  3162. when printing the symbol.
  3163. tri_value:
  3164. The tristate value of the symbol as an integer. One of 0, 1, 2,
  3165. representing n, m, y. Always 0 (n) for non-bool/tristate symbols.
  3166. This is the symbol value that's used outside of relation expressions
  3167. (A, !A, A && B, A || B).
  3168. str_value:
  3169. The value of the symbol as a string. Gives the value for string/int/hex
  3170. symbols. For bool/tristate symbols, gives "n", "m", or "y".
  3171. This is the symbol value that's used in relational expressions
  3172. (A = B, A != B, etc.)
  3173. Gotcha: For int/hex symbols, the exact format of the value is often
  3174. preserved (e.g. when writing a .config file), hence why you can't get it
  3175. directly as an int. Do int(int_sym.str_value) or
  3176. int(hex_sym.str_value, 16) to get the integer value.
  3177. user_value:
  3178. The user value of the symbol. None if no user value has been assigned
  3179. (via Kconfig.load_config() or Symbol.set_value()).
  3180. Holds 0, 1, or 2 for bool/tristate symbols, and a string for the other
  3181. symbol types.
  3182. WARNING: Do not assign directly to this. It will break things. Use
  3183. Symbol.set_value().
  3184. assignable:
  3185. A tuple containing the tristate user values that can currently be
  3186. assigned to the symbol (that would be respected), ordered from lowest (0,
  3187. representing n) to highest (2, representing y). This corresponds to the
  3188. selections available in the menuconfig interface. The set of assignable
  3189. values is calculated from the symbol's visibility and selects/implies.
  3190. Returns the empty set for non-bool/tristate symbols and for symbols with
  3191. visibility n. The other possible values are (0, 2), (0, 1, 2), (1, 2),
  3192. (1,), and (2,). A (1,) or (2,) result means the symbol is visible but
  3193. "locked" to m or y through a select, perhaps in combination with the
  3194. visibility. menuconfig represents this as -M- and -*-, respectively.
  3195. For string/hex/int symbols, check if Symbol.visibility is non-0 (non-n)
  3196. instead to determine if the value can be changed.
  3197. Some handy 'assignable' idioms:
  3198. # Is 'sym' an assignable (visible) bool/tristate symbol?
  3199. if sym.assignable:
  3200. # What's the highest value it can be assigned? [-1] in Python
  3201. # gives the last element.
  3202. sym_high = sym.assignable[-1]
  3203. # The lowest?
  3204. sym_low = sym.assignable[0]
  3205. # Can the symbol be set to at least m?
  3206. if sym.assignable[-1] >= 1:
  3207. ...
  3208. # Can the symbol be set to m?
  3209. if 1 in sym.assignable:
  3210. ...
  3211. visibility:
  3212. The visibility of the symbol. One of 0, 1, 2, representing n, m, y. See
  3213. the module documentation for an overview of symbol values and visibility.
  3214. config_string:
  3215. The .config assignment string that would get written out for the symbol
  3216. by Kconfig.write_config(). Returns the empty string if no .config
  3217. assignment would get written out.
  3218. In general, visible symbols, symbols with (active) defaults, and selected
  3219. symbols get written out. This includes all non-n-valued bool/tristate
  3220. symbols, and all visible string/int/hex symbols.
  3221. Symbols with the (no longer needed) 'option env=...' option generate no
  3222. configuration output, and neither does the special
  3223. 'option defconfig_list' symbol.
  3224. Tip: This field is useful when generating custom configuration output,
  3225. even for non-.config-like formats. To write just the symbols that would
  3226. get written out to .config files, do this:
  3227. if sym.config_string:
  3228. *Write symbol, e.g. by looking sym.str_value*
  3229. This is a superset of the symbols written out by write_autoconf().
  3230. That function skips all n-valued symbols.
  3231. There usually won't be any great harm in just writing all symbols either,
  3232. though you might get some special symbols and possibly some "redundant"
  3233. n-valued symbol entries in there.
  3234. name_and_loc:
  3235. Holds a string like
  3236. "MY_SYMBOL (defined at foo/Kconfig:12, bar/Kconfig:14)"
  3237. , giving the name of the symbol and its definition location(s).
  3238. If the symbol is undefined, the location is given as "(undefined)".
  3239. nodes:
  3240. A list of MenuNodes for this symbol. Will contain a single MenuNode for
  3241. most symbols. Undefined and constant symbols have an empty nodes list.
  3242. Symbols defined in multiple locations get one node for each location.
  3243. choice:
  3244. Holds the parent Choice for choice symbols, and None for non-choice
  3245. symbols. Doubles as a flag for whether a symbol is a choice symbol.
  3246. defaults:
  3247. List of (default, cond) tuples for the symbol's 'default' properties. For
  3248. example, 'default A && B if C || D' is represented as
  3249. ((AND, A, B), (OR, C, D)). If no condition was given, 'cond' is
  3250. self.kconfig.y.
  3251. Note that 'depends on' and parent dependencies are propagated to
  3252. 'default' conditions.
  3253. selects:
  3254. List of (symbol, cond) tuples for the symbol's 'select' properties. For
  3255. example, 'select A if B && C' is represented as (A, (AND, B, C)). If no
  3256. condition was given, 'cond' is self.kconfig.y.
  3257. Note that 'depends on' and parent dependencies are propagated to 'select'
  3258. conditions.
  3259. implies:
  3260. Like 'selects', for imply.
  3261. ranges:
  3262. List of (low, high, cond) tuples for the symbol's 'range' properties. For
  3263. example, 'range 1 2 if A' is represented as (1, 2, A). If there is no
  3264. condition, 'cond' is self.kconfig.y.
  3265. Note that 'depends on' and parent dependencies are propagated to 'range'
  3266. conditions.
  3267. Gotcha: 1 and 2 above will be represented as (undefined) Symbols rather
  3268. than plain integers. Undefined symbols get their name as their string
  3269. value, so this works out. The C tools work the same way.
  3270. orig_defaults:
  3271. orig_selects:
  3272. orig_implies:
  3273. orig_ranges:
  3274. See the corresponding attributes on the MenuNode class.
  3275. rev_dep:
  3276. Reverse dependency expression from other symbols selecting this symbol.
  3277. Multiple selections get ORed together. A condition on a select is ANDed
  3278. with the selecting symbol.
  3279. For example, if A has 'select FOO' and B has 'select FOO if C', then
  3280. FOO's rev_dep will be (OR, A, (AND, B, C)).
  3281. weak_rev_dep:
  3282. Like rev_dep, for imply.
  3283. direct_dep:
  3284. The direct ('depends on') dependencies for the symbol, or self.kconfig.y
  3285. if there are no direct dependencies.
  3286. This attribute includes any dependencies from surrounding menus and ifs.
  3287. Those get propagated to the direct dependencies, and the resulting direct
  3288. dependencies in turn get propagated to the conditions of all properties.
  3289. If the symbol is defined in multiple locations, the dependencies from the
  3290. different locations get ORed together.
  3291. referenced:
  3292. A set() with all symbols and choices referenced in the properties and
  3293. property conditions of the symbol.
  3294. Also includes dependencies from surrounding menus and ifs, because those
  3295. get propagated to the symbol (see the 'Intro to symbol values' section in
  3296. the module docstring).
  3297. Choices appear in the dependencies of choice symbols.
  3298. For the following definitions, only B and not C appears in A's
  3299. 'referenced'. To get transitive references, you'll have to recursively
  3300. expand 'references' until no new items appear.
  3301. config A
  3302. bool
  3303. depends on B
  3304. config B
  3305. bool
  3306. depends on C
  3307. config C
  3308. bool
  3309. See the Symbol.direct_dep attribute if you're only interested in the
  3310. direct dependencies of the symbol (its 'depends on'). You can extract the
  3311. symbols in it with the global expr_items() function.
  3312. env_var:
  3313. If the Symbol has an 'option env="FOO"' option, this contains the name
  3314. ("FOO") of the environment variable. None for symbols without no
  3315. 'option env'.
  3316. 'option env="FOO"' acts like a 'default' property whose value is the
  3317. value of $FOO.
  3318. Symbols with 'option env' are never written out to .config files, even if
  3319. they are visible. env_var corresponds to a flag called SYMBOL_AUTO in the
  3320. C implementation.
  3321. is_allnoconfig_y:
  3322. True if the symbol has 'option allnoconfig_y' set on it. This has no
  3323. effect internally (except when printing symbols), but can be checked by
  3324. scripts.
  3325. is_constant:
  3326. True if the symbol is a constant (quoted) symbol.
  3327. kconfig:
  3328. The Kconfig instance this symbol is from.
  3329. """
  3330. __slots__ = (
  3331. "_cached_assignable",
  3332. "_cached_str_val",
  3333. "_cached_tri_val",
  3334. "_cached_vis",
  3335. "_dependents",
  3336. "_old_val",
  3337. "_visited",
  3338. "_was_set",
  3339. "_write_to_conf",
  3340. "choice",
  3341. "defaults",
  3342. "direct_dep",
  3343. "env_var",
  3344. "implies",
  3345. "is_allnoconfig_y",
  3346. "is_constant",
  3347. "kconfig",
  3348. "name",
  3349. "nodes",
  3350. "orig_type",
  3351. "ranges",
  3352. "rev_dep",
  3353. "selects",
  3354. "user_value",
  3355. "weak_rev_dep",
  3356. )
  3357. #
  3358. # Public interface
  3359. #
  3360. @property
  3361. def type(self):
  3362. """
  3363. See the class documentation.
  3364. """
  3365. if self.orig_type is TRISTATE and \
  3366. (self.choice and self.choice.tri_value == 2 or
  3367. not self.kconfig.modules.tri_value):
  3368. return BOOL
  3369. return self.orig_type
  3370. @property
  3371. def str_value(self):
  3372. """
  3373. See the class documentation.
  3374. """
  3375. if self._cached_str_val is not None:
  3376. return self._cached_str_val
  3377. if self.orig_type in _BOOL_TRISTATE:
  3378. # Also calculates the visibility, so invalidation safe
  3379. self._cached_str_val = TRI_TO_STR[self.tri_value]
  3380. return self._cached_str_val
  3381. # As a quirk of Kconfig, undefined symbols get their name as their
  3382. # string value. This is why things like "FOO = bar" work for seeing if
  3383. # FOO has the value "bar".
  3384. if not self.orig_type: # UNKNOWN
  3385. self._cached_str_val = self.name
  3386. return self.name
  3387. val = ""
  3388. # Warning: See Symbol._rec_invalidate(), and note that this is a hidden
  3389. # function call (property magic)
  3390. vis = self.visibility
  3391. self._write_to_conf = (vis != 0)
  3392. if self.orig_type in _INT_HEX:
  3393. # The C implementation checks the user value against the range in a
  3394. # separate code path (post-processing after loading a .config).
  3395. # Checking all values here instead makes more sense for us. It
  3396. # requires that we check for a range first.
  3397. base = _TYPE_TO_BASE[self.orig_type]
  3398. # Check if a range is in effect
  3399. for low_expr, high_expr, cond in self.ranges:
  3400. if expr_value(cond):
  3401. has_active_range = True
  3402. # The zeros are from the C implementation running strtoll()
  3403. # on empty strings
  3404. low = int(low_expr.str_value, base) if \
  3405. _is_base_n(low_expr.str_value, base) else 0
  3406. high = int(high_expr.str_value, base) if \
  3407. _is_base_n(high_expr.str_value, base) else 0
  3408. break
  3409. else:
  3410. has_active_range = False
  3411. # Defaults are used if the symbol is invisible, lacks a user value,
  3412. # or has an out-of-range user value
  3413. use_defaults = True
  3414. if vis and self.user_value:
  3415. user_val = int(self.user_value, base)
  3416. if has_active_range and not low <= user_val <= high:
  3417. num2str = str if base == 10 else hex
  3418. self.kconfig._warn(
  3419. "user value {} on the {} symbol {} ignored due to "
  3420. "being outside the active range ([{}, {}]) -- falling "
  3421. "back on defaults"
  3422. .format(num2str(user_val), TYPE_TO_STR[self.orig_type],
  3423. self.name_and_loc,
  3424. num2str(low), num2str(high)))
  3425. else:
  3426. # If the user value is well-formed and satisfies range
  3427. # contraints, it is stored in exactly the same form as
  3428. # specified in the assignment (with or without "0x", etc.)
  3429. val = self.user_value
  3430. use_defaults = False
  3431. if use_defaults:
  3432. # No user value or invalid user value. Look at defaults.
  3433. # Used to implement the warning below
  3434. has_default = False
  3435. for sym, cond in self.defaults:
  3436. if expr_value(cond):
  3437. has_default = self._write_to_conf = True
  3438. val = sym.str_value
  3439. if _is_base_n(val, base):
  3440. val_num = int(val, base)
  3441. else:
  3442. val_num = 0 # strtoll() on empty string
  3443. break
  3444. else:
  3445. val_num = 0 # strtoll() on empty string
  3446. # This clamping procedure runs even if there's no default
  3447. if has_active_range:
  3448. clamp = None
  3449. if val_num < low:
  3450. clamp = low
  3451. elif val_num > high:
  3452. clamp = high
  3453. if clamp is not None:
  3454. # The value is rewritten to a standard form if it is
  3455. # clamped
  3456. val = str(clamp) \
  3457. if self.orig_type is INT else \
  3458. hex(clamp)
  3459. if has_default:
  3460. num2str = str if base == 10 else hex
  3461. self.kconfig._warn(
  3462. "default value {} on {} clamped to {} due to "
  3463. "being outside the active range ([{}, {}])"
  3464. .format(val_num, self.name_and_loc,
  3465. num2str(clamp), num2str(low),
  3466. num2str(high)))
  3467. elif self.orig_type is STRING:
  3468. if vis and self.user_value is not None:
  3469. # If the symbol is visible and has a user value, use that
  3470. val = self.user_value
  3471. else:
  3472. # Otherwise, look at defaults
  3473. for sym, cond in self.defaults:
  3474. if expr_value(cond):
  3475. val = sym.str_value
  3476. self._write_to_conf = True
  3477. break
  3478. # env_var corresponds to SYMBOL_AUTO in the C implementation, and is
  3479. # also set on the defconfig_list symbol there. Test for the
  3480. # defconfig_list symbol explicitly instead here, to avoid a nonsensical
  3481. # env_var setting and the defconfig_list symbol being printed
  3482. # incorrectly. This code is pretty cold anyway.
  3483. if self.env_var is not None or self is self.kconfig.defconfig_list:
  3484. self._write_to_conf = False
  3485. self._cached_str_val = val
  3486. return val
  3487. @property
  3488. def tri_value(self):
  3489. """
  3490. See the class documentation.
  3491. """
  3492. if self._cached_tri_val is not None:
  3493. return self._cached_tri_val
  3494. if self.orig_type not in _BOOL_TRISTATE:
  3495. if self.orig_type: # != UNKNOWN
  3496. # Would take some work to give the location here
  3497. self.kconfig._warn(
  3498. "The {} symbol {} is being evaluated in a logical context "
  3499. "somewhere. It will always evaluate to n."
  3500. .format(TYPE_TO_STR[self.orig_type], self.name_and_loc))
  3501. self._cached_tri_val = 0
  3502. return 0
  3503. # Warning: See Symbol._rec_invalidate(), and note that this is a hidden
  3504. # function call (property magic)
  3505. vis = self.visibility
  3506. self._write_to_conf = (vis != 0)
  3507. val = 0
  3508. if not self.choice:
  3509. # Non-choice symbol
  3510. if vis and self.user_value is not None:
  3511. # If the symbol is visible and has a user value, use that
  3512. val = min(self.user_value, vis)
  3513. else:
  3514. # Otherwise, look at defaults and weak reverse dependencies
  3515. # (implies)
  3516. for default, cond in self.defaults:
  3517. dep_val = expr_value(cond)
  3518. if dep_val:
  3519. val = min(expr_value(default), dep_val)
  3520. if val:
  3521. self._write_to_conf = True
  3522. break
  3523. # Weak reverse dependencies are only considered if our
  3524. # direct dependencies are met
  3525. dep_val = expr_value(self.weak_rev_dep)
  3526. if dep_val and expr_value(self.direct_dep):
  3527. val = max(dep_val, val)
  3528. self._write_to_conf = True
  3529. # Reverse (select-related) dependencies take precedence
  3530. dep_val = expr_value(self.rev_dep)
  3531. if dep_val:
  3532. if expr_value(self.direct_dep) < dep_val:
  3533. self._warn_select_unsatisfied_deps()
  3534. val = max(dep_val, val)
  3535. self._write_to_conf = True
  3536. # m is promoted to y for (1) bool symbols and (2) symbols with a
  3537. # weak_rev_dep (from imply) of y
  3538. if val == 1 and \
  3539. (self.type is BOOL or expr_value(self.weak_rev_dep) == 2):
  3540. val = 2
  3541. elif vis == 2:
  3542. # Visible choice symbol in y-mode choice. The choice mode limits
  3543. # the visibility of choice symbols, so it's sufficient to just
  3544. # check the visibility of the choice symbols themselves.
  3545. val = 2 if self.choice.selection is self else 0
  3546. elif vis and self.user_value:
  3547. # Visible choice symbol in m-mode choice, with set non-0 user value
  3548. val = 1
  3549. self._cached_tri_val = val
  3550. return val
  3551. @property
  3552. def assignable(self):
  3553. """
  3554. See the class documentation.
  3555. """
  3556. if self._cached_assignable is None:
  3557. self._cached_assignable = self._assignable()
  3558. return self._cached_assignable
  3559. @property
  3560. def visibility(self):
  3561. """
  3562. See the class documentation.
  3563. """
  3564. if self._cached_vis is None:
  3565. self._cached_vis = _visibility(self)
  3566. return self._cached_vis
  3567. @property
  3568. def config_string(self):
  3569. """
  3570. See the class documentation.
  3571. """
  3572. # _write_to_conf is determined when the value is calculated. This is a
  3573. # hidden function call due to property magic.
  3574. val = self.str_value
  3575. if not self._write_to_conf:
  3576. return ""
  3577. if self.orig_type in _BOOL_TRISTATE:
  3578. return "{}{}={}\n" \
  3579. .format(self.kconfig.config_prefix, self.name, val) \
  3580. if val != "n" else \
  3581. "# {}{} is not set\n" \
  3582. .format(self.kconfig.config_prefix, self.name)
  3583. if self.orig_type in _INT_HEX:
  3584. return "{}{}={}\n" \
  3585. .format(self.kconfig.config_prefix, self.name, val)
  3586. # sym.orig_type is STRING
  3587. return '{}{}="{}"\n' \
  3588. .format(self.kconfig.config_prefix, self.name, escape(val))
  3589. @property
  3590. def name_and_loc(self):
  3591. """
  3592. See the class documentation.
  3593. """
  3594. return self.name + " " + _locs(self)
  3595. def set_value(self, value):
  3596. """
  3597. Sets the user value of the symbol.
  3598. Equal in effect to assigning the value to the symbol within a .config
  3599. file. For bool and tristate symbols, use the 'assignable' attribute to
  3600. check which values can currently be assigned. Setting values outside
  3601. 'assignable' will cause Symbol.user_value to differ from
  3602. Symbol.str/tri_value (be truncated down or up).
  3603. Setting a choice symbol to 2 (y) sets Choice.user_selection to the
  3604. choice symbol in addition to setting Symbol.user_value.
  3605. Choice.user_selection is considered when the choice is in y mode (the
  3606. "normal" mode).
  3607. Other symbols that depend (possibly indirectly) on this symbol are
  3608. automatically recalculated to reflect the assigned value.
  3609. value:
  3610. The user value to give to the symbol. For bool and tristate symbols,
  3611. n/m/y can be specified either as 0/1/2 (the usual format for tristate
  3612. values in Kconfiglib) or as one of the strings "n", "m", or "y". For
  3613. other symbol types, pass a string.
  3614. Note that the value for an int/hex symbol is passed as a string, e.g.
  3615. "123" or "0x0123". The format of this string is preserved in the
  3616. output.
  3617. Values that are invalid for the type (such as "foo" or 1 (m) for a
  3618. BOOL or "0x123" for an INT) are ignored and won't be stored in
  3619. Symbol.user_value. Kconfiglib will print a warning by default for
  3620. invalid assignments, and set_value() will return False.
  3621. Returns True if the value is valid for the type of the symbol, and
  3622. False otherwise. This only looks at the form of the value. For BOOL and
  3623. TRISTATE symbols, check the Symbol.assignable attribute to see what
  3624. values are currently in range and would actually be reflected in the
  3625. value of the symbol. For other symbol types, check whether the
  3626. visibility is non-n.
  3627. """
  3628. if self.orig_type in _BOOL_TRISTATE and value in STR_TO_TRI:
  3629. value = STR_TO_TRI[value]
  3630. # If the new user value matches the old, nothing changes, and we can
  3631. # avoid invalidating cached values.
  3632. #
  3633. # This optimization is skipped for choice symbols: Setting a choice
  3634. # symbol's user value to y might change the state of the choice, so it
  3635. # wouldn't be safe (symbol user values always match the values set in a
  3636. # .config file or via set_value(), and are never implicitly updated).
  3637. if value == self.user_value and not self.choice:
  3638. self._was_set = True
  3639. return True
  3640. # Check if the value is valid for our type
  3641. if not (self.orig_type is BOOL and value in (2, 0) or
  3642. self.orig_type is TRISTATE and value in TRI_TO_STR or
  3643. value.__class__ is str and
  3644. (self.orig_type is STRING or
  3645. self.orig_type is INT and _is_base_n(value, 10) or
  3646. self.orig_type is HEX and _is_base_n(value, 16)
  3647. and int(value, 16) >= 0)):
  3648. # Display tristate values as n, m, y in the warning
  3649. self.kconfig._warn(
  3650. "the value {} is invalid for {}, which has type {} -- "
  3651. "assignment ignored"
  3652. .format(TRI_TO_STR[value] if value in TRI_TO_STR else
  3653. "'{}'".format(value),
  3654. self.name_and_loc, TYPE_TO_STR[self.orig_type]))
  3655. return False
  3656. self.user_value = value
  3657. self._was_set = True
  3658. if self.choice and value == 2:
  3659. # Setting a choice symbol to y makes it the user selection of the
  3660. # choice. Like for symbol user values, the user selection is not
  3661. # guaranteed to match the actual selection of the choice, as
  3662. # dependencies come into play.
  3663. self.choice.user_selection = self
  3664. self.choice._was_set = True
  3665. self.choice._rec_invalidate()
  3666. else:
  3667. self._rec_invalidate_if_has_prompt()
  3668. return True
  3669. def unset_value(self):
  3670. """
  3671. Removes any user value from the symbol, as if the symbol had never
  3672. gotten a user value via Kconfig.load_config() or Symbol.set_value().
  3673. """
  3674. if self.user_value is not None:
  3675. self.user_value = None
  3676. self._rec_invalidate_if_has_prompt()
  3677. @property
  3678. def referenced(self):
  3679. """
  3680. See the class documentation.
  3681. """
  3682. return {item for node in self.nodes for item in node.referenced}
  3683. @property
  3684. def orig_defaults(self):
  3685. """
  3686. See the class documentation.
  3687. """
  3688. return [d for node in self.nodes for d in node.orig_defaults]
  3689. @property
  3690. def orig_selects(self):
  3691. """
  3692. See the class documentation.
  3693. """
  3694. return [s for node in self.nodes for s in node.orig_selects]
  3695. @property
  3696. def orig_implies(self):
  3697. """
  3698. See the class documentation.
  3699. """
  3700. return [i for node in self.nodes for i in node.orig_implies]
  3701. @property
  3702. def orig_ranges(self):
  3703. """
  3704. See the class documentation.
  3705. """
  3706. return [r for node in self.nodes for r in node.orig_ranges]
  3707. def __repr__(self):
  3708. """
  3709. Returns a string with information about the symbol (including its name,
  3710. value, visibility, and location(s)) when it is evaluated on e.g. the
  3711. interactive Python prompt.
  3712. """
  3713. fields = ["symbol " + self.name, TYPE_TO_STR[self.type]]
  3714. add = fields.append
  3715. for node in self.nodes:
  3716. if node.prompt:
  3717. add('"{}"'.format(node.prompt[0]))
  3718. # Only add quotes for non-bool/tristate symbols
  3719. add("value " + (self.str_value if self.orig_type in _BOOL_TRISTATE
  3720. else '"{}"'.format(self.str_value)))
  3721. if not self.is_constant:
  3722. # These aren't helpful to show for constant symbols
  3723. if self.user_value is not None:
  3724. # Only add quotes for non-bool/tristate symbols
  3725. add("user value " + (TRI_TO_STR[self.user_value]
  3726. if self.orig_type in _BOOL_TRISTATE
  3727. else '"{}"'.format(self.user_value)))
  3728. add("visibility " + TRI_TO_STR[self.visibility])
  3729. if self.choice:
  3730. add("choice symbol")
  3731. if self.is_allnoconfig_y:
  3732. add("allnoconfig_y")
  3733. if self is self.kconfig.defconfig_list:
  3734. add("is the defconfig_list symbol")
  3735. if self.env_var is not None:
  3736. add("from environment variable " + self.env_var)
  3737. if self is self.kconfig.modules:
  3738. add("is the modules symbol")
  3739. add("direct deps " + TRI_TO_STR[expr_value(self.direct_dep)])
  3740. if self.nodes:
  3741. for node in self.nodes:
  3742. add("{}:{}".format(node.filename, node.linenr))
  3743. else:
  3744. add("constant" if self.is_constant else "undefined")
  3745. return "<{}>".format(", ".join(fields))
  3746. def __str__(self):
  3747. """
  3748. Returns a string representation of the symbol when it is printed.
  3749. Matches the Kconfig format, with any parent dependencies propagated to
  3750. the 'depends on' condition.
  3751. The string is constructed by joining the strings returned by
  3752. MenuNode.__str__() for each of the symbol's menu nodes, so symbols
  3753. defined in multiple locations will return a string with all
  3754. definitions.
  3755. The returned string does not end in a newline. An empty string is
  3756. returned for undefined and constant symbols.
  3757. """
  3758. return self.custom_str(standard_sc_expr_str)
  3759. def custom_str(self, sc_expr_str_fn):
  3760. """
  3761. Works like Symbol.__str__(), but allows a custom format to be used for
  3762. all symbol/choice references. See expr_str().
  3763. """
  3764. return "\n\n".join(node.custom_str(sc_expr_str_fn)
  3765. for node in self.nodes)
  3766. #
  3767. # Private methods
  3768. #
  3769. def __init__(self):
  3770. """
  3771. Symbol constructor -- not intended to be called directly by Kconfiglib
  3772. clients.
  3773. """
  3774. # These attributes are always set on the instance from outside and
  3775. # don't need defaults:
  3776. # kconfig
  3777. # direct_dep
  3778. # is_constant
  3779. # name
  3780. # rev_dep
  3781. # weak_rev_dep
  3782. # - UNKNOWN == 0
  3783. # - _visited is used during tree iteration and dep. loop detection
  3784. self.orig_type = self._visited = 0
  3785. self.nodes = []
  3786. self.defaults = []
  3787. self.selects = []
  3788. self.implies = []
  3789. self.ranges = []
  3790. self.user_value = \
  3791. self.choice = \
  3792. self.env_var = \
  3793. self._cached_str_val = self._cached_tri_val = self._cached_vis = \
  3794. self._cached_assignable = None
  3795. # _write_to_conf is calculated along with the value. If True, the
  3796. # Symbol gets a .config entry.
  3797. self.is_allnoconfig_y = \
  3798. self._was_set = \
  3799. self._write_to_conf = False
  3800. # See Kconfig._build_dep()
  3801. self._dependents = set()
  3802. def _assignable(self):
  3803. # Worker function for the 'assignable' attribute
  3804. if self.orig_type not in _BOOL_TRISTATE:
  3805. return ()
  3806. # Warning: See Symbol._rec_invalidate(), and note that this is a hidden
  3807. # function call (property magic)
  3808. vis = self.visibility
  3809. if not vis:
  3810. return ()
  3811. rev_dep_val = expr_value(self.rev_dep)
  3812. if vis == 2:
  3813. if self.choice:
  3814. return (2,)
  3815. if not rev_dep_val:
  3816. if self.type is BOOL or expr_value(self.weak_rev_dep) == 2:
  3817. return (0, 2)
  3818. return (0, 1, 2)
  3819. if rev_dep_val == 2:
  3820. return (2,)
  3821. # rev_dep_val == 1
  3822. if self.type is BOOL or expr_value(self.weak_rev_dep) == 2:
  3823. return (2,)
  3824. return (1, 2)
  3825. # vis == 1
  3826. # Must be a tristate here, because bool m visibility gets promoted to y
  3827. if not rev_dep_val:
  3828. return (0, 1) if expr_value(self.weak_rev_dep) != 2 else (0, 2)
  3829. if rev_dep_val == 2:
  3830. return (2,)
  3831. # vis == rev_dep_val == 1
  3832. return (1,)
  3833. def _invalidate(self):
  3834. # Marks the symbol as needing to be recalculated
  3835. self._cached_str_val = self._cached_tri_val = self._cached_vis = \
  3836. self._cached_assignable = None
  3837. def _rec_invalidate(self):
  3838. # Invalidates the symbol and all items that (possibly) depend on it
  3839. if self is self.kconfig.modules:
  3840. # Invalidating MODULES has wide-ranging effects
  3841. self.kconfig._invalidate_all()
  3842. else:
  3843. self._invalidate()
  3844. for item in self._dependents:
  3845. # _cached_vis doubles as a flag that tells us whether 'item'
  3846. # has cached values, because it's calculated as a side effect
  3847. # of calculating all other (non-constant) cached values.
  3848. #
  3849. # If item._cached_vis is None, it means there can't be cached
  3850. # values on other items that depend on 'item', because if there
  3851. # were, some value on 'item' would have been calculated and
  3852. # item._cached_vis set as a side effect. It's therefore safe to
  3853. # stop the invalidation at symbols with _cached_vis None.
  3854. #
  3855. # This approach massively speeds up scripts that set a lot of
  3856. # values, vs simply invalidating all possibly dependent symbols
  3857. # (even when you already have a list of all the dependent
  3858. # symbols, because some symbols get huge dependency trees).
  3859. #
  3860. # This gracefully handles dependency loops too, which is nice
  3861. # for choices, where the choice depends on the choice symbols
  3862. # and vice versa.
  3863. if item._cached_vis is not None:
  3864. item._rec_invalidate()
  3865. def _rec_invalidate_if_has_prompt(self):
  3866. # Invalidates the symbol and its dependent symbols, but only if the
  3867. # symbol has a prompt. User values never have an effect on promptless
  3868. # symbols, so we skip invalidation for them as an optimization.
  3869. #
  3870. # This also prevents constant (quoted) symbols from being invalidated
  3871. # if set_value() is called on them, which would make them lose their
  3872. # value and break things.
  3873. #
  3874. # Prints a warning if the symbol has no prompt. In some contexts (e.g.
  3875. # when loading a .config files) assignments to promptless symbols are
  3876. # normal and expected, so the warning can be disabled.
  3877. for node in self.nodes:
  3878. if node.prompt:
  3879. self._rec_invalidate()
  3880. return
  3881. if self.kconfig._warn_assign_no_prompt:
  3882. self.kconfig._warn(self.name_and_loc + " has no prompt, meaning "
  3883. "user values have no effect on it")
  3884. def _str_default(self):
  3885. # write_min_config() helper function. Returns the value the symbol
  3886. # would get from defaults if it didn't have a user value. Uses exactly
  3887. # the same algorithm as the C implementation (though a bit cleaned up),
  3888. # for compatibility.
  3889. if self.orig_type in _BOOL_TRISTATE:
  3890. val = 0
  3891. # Defaults, selects, and implies do not affect choice symbols
  3892. if not self.choice:
  3893. for default, cond in self.defaults:
  3894. cond_val = expr_value(cond)
  3895. if cond_val:
  3896. val = min(expr_value(default), cond_val)
  3897. break
  3898. val = max(expr_value(self.rev_dep),
  3899. expr_value(self.weak_rev_dep),
  3900. val)
  3901. # Transpose mod to yes if type is bool (possibly due to modules
  3902. # being disabled)
  3903. if val == 1 and self.type is BOOL:
  3904. val = 2
  3905. return TRI_TO_STR[val]
  3906. if self.orig_type: # STRING/INT/HEX
  3907. for default, cond in self.defaults:
  3908. if expr_value(cond):
  3909. return default.str_value
  3910. return ""
  3911. def _warn_select_unsatisfied_deps(self):
  3912. # Helper for printing an informative warning when a symbol with
  3913. # unsatisfied direct dependencies (dependencies from 'depends on', ifs,
  3914. # and menus) is selected by some other symbol. Also warn if a symbol
  3915. # whose direct dependencies evaluate to m is selected to y.
  3916. msg = "{} has direct dependencies {} with value {}, but is " \
  3917. "currently being {}-selected by the following symbols:" \
  3918. .format(self.name_and_loc, expr_str(self.direct_dep),
  3919. TRI_TO_STR[expr_value(self.direct_dep)],
  3920. TRI_TO_STR[expr_value(self.rev_dep)])
  3921. # The reverse dependencies from each select are ORed together
  3922. for select in split_expr(self.rev_dep, OR):
  3923. if expr_value(select) <= expr_value(self.direct_dep):
  3924. # Only include selects that exceed the direct dependencies
  3925. continue
  3926. # - 'select A if B' turns into A && B
  3927. # - 'select A' just turns into A
  3928. #
  3929. # In both cases, we can split on AND and pick the first operand
  3930. selecting_sym = split_expr(select, AND)[0]
  3931. msg += "\n - {}, with value {}, direct dependencies {} " \
  3932. "(value: {})" \
  3933. .format(selecting_sym.name_and_loc,
  3934. selecting_sym.str_value,
  3935. expr_str(selecting_sym.direct_dep),
  3936. TRI_TO_STR[expr_value(selecting_sym.direct_dep)])
  3937. if select.__class__ is tuple:
  3938. msg += ", and select condition {} (value: {})" \
  3939. .format(expr_str(select[2]),
  3940. TRI_TO_STR[expr_value(select[2])])
  3941. self.kconfig._warn(msg)
  3942. class Choice(object):
  3943. """
  3944. Represents a choice statement:
  3945. choice
  3946. ...
  3947. endchoice
  3948. The following attributes are available on Choice instances. They should be
  3949. treated as read-only, and some are implemented through @property magic (but
  3950. are still efficient to access due to internal caching).
  3951. Note: Prompts, help texts, and locations are stored in the Choice's
  3952. MenuNode(s) rather than in the Choice itself. Check the MenuNode class and
  3953. the Choice.nodes attribute. This organization matches the C tools.
  3954. name:
  3955. The name of the choice, e.g. "FOO" for 'choice FOO', or None if the
  3956. Choice has no name.
  3957. type:
  3958. The type of the choice. One of BOOL, TRISTATE, UNKNOWN. UNKNOWN is for
  3959. choices defined without a type where none of the contained symbols have a
  3960. type either (otherwise the choice inherits the type of the first symbol
  3961. defined with a type).
  3962. When running without modules (CONFIG_MODULES=n), TRISTATE choices
  3963. magically change type to BOOL. This matches the C tools, and makes sense
  3964. for menuconfig-like functionality.
  3965. orig_type:
  3966. The type as given in the Kconfig file, without any magic applied. Used
  3967. when printing the choice.
  3968. tri_value:
  3969. The tristate value (mode) of the choice. A choice can be in one of three
  3970. modes:
  3971. 0 (n) - The choice is disabled and no symbols can be selected. For
  3972. visible choices, this mode is only possible for choices with
  3973. the 'optional' flag set (see kconfig-language.txt).
  3974. 1 (m) - Any number of choice symbols can be set to m, the rest will
  3975. be n.
  3976. 2 (y) - One symbol will be y, the rest n.
  3977. Only tristate choices can be in m mode. The visibility of the choice is
  3978. an upper bound on the mode, and the mode in turn is an upper bound on the
  3979. visibility of the choice symbols.
  3980. To change the mode, use Choice.set_value().
  3981. Implementation note:
  3982. The C tools internally represent choices as a type of symbol, with
  3983. special-casing in many code paths. This is why there is a lot of
  3984. similarity to Symbol. The value (mode) of a choice is really just a
  3985. normal symbol value, and an implicit reverse dependency forces its
  3986. lower bound to m for visible non-optional choices (the reverse
  3987. dependency is 'm && <visibility>').
  3988. Symbols within choices get the choice propagated as a dependency to
  3989. their properties. This turns the mode of the choice into an upper bound
  3990. on e.g. the visibility of choice symbols, and explains the gotcha
  3991. related to printing choice symbols mentioned in the module docstring.
  3992. Kconfiglib uses a separate Choice class only because it makes the code
  3993. and interface less confusing (especially in a user-facing interface).
  3994. Corresponding attributes have the same name in the Symbol and Choice
  3995. classes, for consistency and compatibility.
  3996. str_value:
  3997. Like choice.tri_value, but gives the value as one of the strings
  3998. "n", "m", or "y"
  3999. user_value:
  4000. The value (mode) selected by the user through Choice.set_value(). Either
  4001. 0, 1, or 2, or None if the user hasn't selected a mode. See
  4002. Symbol.user_value.
  4003. WARNING: Do not assign directly to this. It will break things. Use
  4004. Choice.set_value() instead.
  4005. assignable:
  4006. See the symbol class documentation. Gives the assignable values (modes).
  4007. selection:
  4008. The Symbol instance of the currently selected symbol. None if the Choice
  4009. is not in y mode or has no selected symbol (due to unsatisfied
  4010. dependencies on choice symbols).
  4011. WARNING: Do not assign directly to this. It will break things. Call
  4012. sym.set_value(2) on the choice symbol you want to select instead.
  4013. user_selection:
  4014. The symbol selected by the user (by setting it to y). Ignored if the
  4015. choice is not in y mode, but still remembered so that the choice "snaps
  4016. back" to the user selection if the mode is changed back to y. This might
  4017. differ from 'selection' due to unsatisfied dependencies.
  4018. WARNING: Do not assign directly to this. It will break things. Call
  4019. sym.set_value(2) on the choice symbol to be selected instead.
  4020. visibility:
  4021. See the Symbol class documentation. Acts on the value (mode).
  4022. name_and_loc:
  4023. Holds a string like
  4024. "<choice MY_CHOICE> (defined at foo/Kconfig:12)"
  4025. , giving the name of the choice and its definition location(s). If the
  4026. choice has no name (isn't defined with 'choice MY_CHOICE'), then it will
  4027. be shown as "<choice>" before the list of locations (always a single one
  4028. in that case).
  4029. syms:
  4030. List of symbols contained in the choice.
  4031. Obscure gotcha: If a symbol depends on the previous symbol within a
  4032. choice so that an implicit menu is created, it won't be a choice symbol,
  4033. and won't be included in 'syms'.
  4034. nodes:
  4035. A list of MenuNodes for this choice. In practice, the list will probably
  4036. always contain a single MenuNode, but it is possible to give a choice a
  4037. name and define it in multiple locations.
  4038. defaults:
  4039. List of (symbol, cond) tuples for the choice's 'defaults' properties. For
  4040. example, 'default A if B && C' is represented as (A, (AND, B, C)). If
  4041. there is no condition, 'cond' is self.kconfig.y.
  4042. Note that 'depends on' and parent dependencies are propagated to
  4043. 'default' conditions.
  4044. orig_defaults:
  4045. See the corresponding attribute on the MenuNode class.
  4046. direct_dep:
  4047. See Symbol.direct_dep.
  4048. referenced:
  4049. A set() with all symbols referenced in the properties and property
  4050. conditions of the choice.
  4051. Also includes dependencies from surrounding menus and ifs, because those
  4052. get propagated to the choice (see the 'Intro to symbol values' section in
  4053. the module docstring).
  4054. is_optional:
  4055. True if the choice has the 'optional' flag set on it and can be in
  4056. n mode.
  4057. kconfig:
  4058. The Kconfig instance this choice is from.
  4059. """
  4060. __slots__ = (
  4061. "_cached_assignable",
  4062. "_cached_selection",
  4063. "_cached_vis",
  4064. "_dependents",
  4065. "_visited",
  4066. "_was_set",
  4067. "defaults",
  4068. "direct_dep",
  4069. "is_constant",
  4070. "is_optional",
  4071. "kconfig",
  4072. "name",
  4073. "nodes",
  4074. "orig_type",
  4075. "syms",
  4076. "user_selection",
  4077. "user_value",
  4078. )
  4079. #
  4080. # Public interface
  4081. #
  4082. @property
  4083. def type(self):
  4084. """
  4085. Returns the type of the choice. See Symbol.type.
  4086. """
  4087. if self.orig_type is TRISTATE and not self.kconfig.modules.tri_value:
  4088. return BOOL
  4089. return self.orig_type
  4090. @property
  4091. def str_value(self):
  4092. """
  4093. See the class documentation.
  4094. """
  4095. return TRI_TO_STR[self.tri_value]
  4096. @property
  4097. def tri_value(self):
  4098. """
  4099. See the class documentation.
  4100. """
  4101. # This emulates a reverse dependency of 'm && visibility' for
  4102. # non-optional choices, which is how the C implementation does it
  4103. val = 0 if self.is_optional else 1
  4104. if self.user_value is not None:
  4105. val = max(val, self.user_value)
  4106. # Warning: See Symbol._rec_invalidate(), and note that this is a hidden
  4107. # function call (property magic)
  4108. val = min(val, self.visibility)
  4109. # Promote m to y for boolean choices
  4110. return 2 if val == 1 and self.type is BOOL else val
  4111. @property
  4112. def assignable(self):
  4113. """
  4114. See the class documentation.
  4115. """
  4116. if self._cached_assignable is None:
  4117. self._cached_assignable = self._assignable()
  4118. return self._cached_assignable
  4119. @property
  4120. def visibility(self):
  4121. """
  4122. See the class documentation.
  4123. """
  4124. if self._cached_vis is None:
  4125. self._cached_vis = _visibility(self)
  4126. return self._cached_vis
  4127. @property
  4128. def name_and_loc(self):
  4129. """
  4130. See the class documentation.
  4131. """
  4132. # Reuse the expression format, which is '<choice (name, if any)>'.
  4133. return standard_sc_expr_str(self) + " " + _locs(self)
  4134. @property
  4135. def selection(self):
  4136. """
  4137. See the class documentation.
  4138. """
  4139. if self._cached_selection is _NO_CACHED_SELECTION:
  4140. self._cached_selection = self._selection()
  4141. return self._cached_selection
  4142. def set_value(self, value):
  4143. """
  4144. Sets the user value (mode) of the choice. Like for Symbol.set_value(),
  4145. the visibility might truncate the value. Choices without the 'optional'
  4146. attribute (is_optional) can never be in n mode, but 0/"n" is still
  4147. accepted since it's not a malformed value (though it will have no
  4148. effect).
  4149. Returns True if the value is valid for the type of the choice, and
  4150. False otherwise. This only looks at the form of the value. Check the
  4151. Choice.assignable attribute to see what values are currently in range
  4152. and would actually be reflected in the mode of the choice.
  4153. """
  4154. if value in STR_TO_TRI:
  4155. value = STR_TO_TRI[value]
  4156. if value == self.user_value:
  4157. # We know the value must be valid if it was successfully set
  4158. # previously
  4159. self._was_set = True
  4160. return True
  4161. if not (self.orig_type is BOOL and value in (2, 0) or
  4162. self.orig_type is TRISTATE and value in TRI_TO_STR):
  4163. # Display tristate values as n, m, y in the warning
  4164. self.kconfig._warn(
  4165. "the value {} is invalid for {}, which has type {} -- "
  4166. "assignment ignored"
  4167. .format(TRI_TO_STR[value] if value in TRI_TO_STR else
  4168. "'{}'".format(value),
  4169. self.name_and_loc, TYPE_TO_STR[self.orig_type]))
  4170. return False
  4171. self.user_value = value
  4172. self._was_set = True
  4173. self._rec_invalidate()
  4174. return True
  4175. def unset_value(self):
  4176. """
  4177. Resets the user value (mode) and user selection of the Choice, as if
  4178. the user had never touched the mode or any of the choice symbols.
  4179. """
  4180. if self.user_value is not None or self.user_selection:
  4181. self.user_value = self.user_selection = None
  4182. self._rec_invalidate()
  4183. @property
  4184. def referenced(self):
  4185. """
  4186. See the class documentation.
  4187. """
  4188. return {item for node in self.nodes for item in node.referenced}
  4189. @property
  4190. def orig_defaults(self):
  4191. """
  4192. See the class documentation.
  4193. """
  4194. return [d for node in self.nodes for d in node.orig_defaults]
  4195. def __repr__(self):
  4196. """
  4197. Returns a string with information about the choice when it is evaluated
  4198. on e.g. the interactive Python prompt.
  4199. """
  4200. fields = ["choice " + self.name if self.name else "choice",
  4201. TYPE_TO_STR[self.type]]
  4202. add = fields.append
  4203. for node in self.nodes:
  4204. if node.prompt:
  4205. add('"{}"'.format(node.prompt[0]))
  4206. add("mode " + self.str_value)
  4207. if self.user_value is not None:
  4208. add('user mode {}'.format(TRI_TO_STR[self.user_value]))
  4209. if self.selection:
  4210. add("{} selected".format(self.selection.name))
  4211. if self.user_selection:
  4212. user_sel_str = "{} selected by user" \
  4213. .format(self.user_selection.name)
  4214. if self.selection is not self.user_selection:
  4215. user_sel_str += " (overridden)"
  4216. add(user_sel_str)
  4217. add("visibility " + TRI_TO_STR[self.visibility])
  4218. if self.is_optional:
  4219. add("optional")
  4220. for node in self.nodes:
  4221. add("{}:{}".format(node.filename, node.linenr))
  4222. return "<{}>".format(", ".join(fields))
  4223. def __str__(self):
  4224. """
  4225. Returns a string representation of the choice when it is printed.
  4226. Matches the Kconfig format (though without the contained choice
  4227. symbols), with any parent dependencies propagated to the 'depends on'
  4228. condition.
  4229. The returned string does not end in a newline.
  4230. See Symbol.__str__() as well.
  4231. """
  4232. return self.custom_str(standard_sc_expr_str)
  4233. def custom_str(self, sc_expr_str_fn):
  4234. """
  4235. Works like Choice.__str__(), but allows a custom format to be used for
  4236. all symbol/choice references. See expr_str().
  4237. """
  4238. return "\n\n".join(node.custom_str(sc_expr_str_fn)
  4239. for node in self.nodes)
  4240. #
  4241. # Private methods
  4242. #
  4243. def __init__(self):
  4244. """
  4245. Choice constructor -- not intended to be called directly by Kconfiglib
  4246. clients.
  4247. """
  4248. # These attributes are always set on the instance from outside and
  4249. # don't need defaults:
  4250. # direct_dep
  4251. # kconfig
  4252. # - UNKNOWN == 0
  4253. # - _visited is used during dep. loop detection
  4254. self.orig_type = self._visited = 0
  4255. self.nodes = []
  4256. self.syms = []
  4257. self.defaults = []
  4258. self.name = \
  4259. self.user_value = self.user_selection = \
  4260. self._cached_vis = self._cached_assignable = None
  4261. self._cached_selection = _NO_CACHED_SELECTION
  4262. # is_constant is checked by _depend_on(). Just set it to avoid having
  4263. # to special-case choices.
  4264. self.is_constant = self.is_optional = False
  4265. # See Kconfig._build_dep()
  4266. self._dependents = set()
  4267. def _assignable(self):
  4268. # Worker function for the 'assignable' attribute
  4269. # Warning: See Symbol._rec_invalidate(), and note that this is a hidden
  4270. # function call (property magic)
  4271. vis = self.visibility
  4272. if not vis:
  4273. return ()
  4274. if vis == 2:
  4275. if not self.is_optional:
  4276. return (2,) if self.type is BOOL else (1, 2)
  4277. return (0, 2) if self.type is BOOL else (0, 1, 2)
  4278. # vis == 1
  4279. return (0, 1) if self.is_optional else (1,)
  4280. def _selection(self):
  4281. # Worker function for the 'selection' attribute
  4282. # Warning: See Symbol._rec_invalidate(), and note that this is a hidden
  4283. # function call (property magic)
  4284. if self.tri_value != 2:
  4285. # Not in y mode, so no selection
  4286. return None
  4287. # Use the user selection if it's visible
  4288. if self.user_selection and self.user_selection.visibility:
  4289. return self.user_selection
  4290. # Otherwise, check if we have a default
  4291. return self._selection_from_defaults()
  4292. def _selection_from_defaults(self):
  4293. # Check if we have a default
  4294. for sym, cond in self.defaults:
  4295. # The default symbol must be visible too
  4296. if expr_value(cond) and sym.visibility:
  4297. return sym
  4298. # Otherwise, pick the first visible symbol, if any
  4299. for sym in self.syms:
  4300. if sym.visibility:
  4301. return sym
  4302. # Couldn't find a selection
  4303. return None
  4304. def _invalidate(self):
  4305. self._cached_vis = self._cached_assignable = None
  4306. self._cached_selection = _NO_CACHED_SELECTION
  4307. def _rec_invalidate(self):
  4308. # See Symbol._rec_invalidate()
  4309. self._invalidate()
  4310. for item in self._dependents:
  4311. if item._cached_vis is not None:
  4312. item._rec_invalidate()
  4313. class MenuNode(object):
  4314. """
  4315. Represents a menu node in the configuration. This corresponds to an entry
  4316. in e.g. the 'make menuconfig' interface, though non-visible choices, menus,
  4317. and comments also get menu nodes. If a symbol or choice is defined in
  4318. multiple locations, it gets one menu node for each location.
  4319. The top-level menu node, corresponding to the implicit top-level menu, is
  4320. available in Kconfig.top_node.
  4321. The menu nodes for a Symbol or Choice can be found in the
  4322. Symbol/Choice.nodes attribute. Menus and comments are represented as plain
  4323. menu nodes, with their text stored in the prompt attribute (prompt[0]).
  4324. This mirrors the C implementation.
  4325. The following attributes are available on MenuNode instances. They should
  4326. be viewed as read-only.
  4327. item:
  4328. Either a Symbol, a Choice, or one of the constants MENU and COMMENT.
  4329. Menus and comments are represented as plain menu nodes. Ifs are collapsed
  4330. (matching the C implementation) and do not appear in the final menu tree.
  4331. next:
  4332. The following menu node. None if there is no following node.
  4333. list:
  4334. The first child menu node. None if there are no children.
  4335. Choices and menus naturally have children, but Symbols can also have
  4336. children because of menus created automatically from dependencies (see
  4337. kconfig-language.txt).
  4338. parent:
  4339. The parent menu node. None if there is no parent.
  4340. prompt:
  4341. A (string, cond) tuple with the prompt for the menu node and its
  4342. conditional expression (which is self.kconfig.y if there is no
  4343. condition). None if there is no prompt.
  4344. For symbols and choices, the prompt is stored in the MenuNode rather than
  4345. the Symbol or Choice instance. For menus and comments, the prompt holds
  4346. the text.
  4347. defaults:
  4348. The 'default' properties for this particular menu node. See
  4349. symbol.defaults.
  4350. When evaluating defaults, you should use Symbol/Choice.defaults instead,
  4351. as it include properties from all menu nodes (a symbol/choice can have
  4352. multiple definition locations/menu nodes). MenuNode.defaults is meant for
  4353. documentation generation.
  4354. selects:
  4355. Like MenuNode.defaults, for selects.
  4356. implies:
  4357. Like MenuNode.defaults, for implies.
  4358. ranges:
  4359. Like MenuNode.defaults, for ranges.
  4360. orig_prompt:
  4361. orig_defaults:
  4362. orig_selects:
  4363. orig_implies:
  4364. orig_ranges:
  4365. These work the like the corresponding attributes without orig_*, but omit
  4366. any dependencies propagated from 'depends on' and surrounding 'if's (the
  4367. direct dependencies, stored in MenuNode.dep).
  4368. One use for this is generating less cluttered documentation, by only
  4369. showing the direct dependencies in one place.
  4370. help:
  4371. The help text for the menu node for Symbols and Choices. None if there is
  4372. no help text. Always stored in the node rather than the Symbol or Choice.
  4373. It is possible to have a separate help text at each location if a symbol
  4374. is defined in multiple locations.
  4375. Trailing whitespace (including a final newline) is stripped from the help
  4376. text. This was not the case before Kconfiglib 10.21.0, where the format
  4377. was undocumented.
  4378. dep:
  4379. The direct ('depends on') dependencies for the menu node, or
  4380. self.kconfig.y if there are no direct dependencies.
  4381. This attribute includes any dependencies from surrounding menus and ifs.
  4382. Those get propagated to the direct dependencies, and the resulting direct
  4383. dependencies in turn get propagated to the conditions of all properties.
  4384. If a symbol or choice is defined in multiple locations, only the
  4385. properties defined at a particular location get the corresponding
  4386. MenuNode.dep dependencies propagated to them.
  4387. visibility:
  4388. The 'visible if' dependencies for the menu node (which must represent a
  4389. menu), or self.kconfig.y if there are no 'visible if' dependencies.
  4390. 'visible if' dependencies are recursively propagated to the prompts of
  4391. symbols and choices within the menu.
  4392. referenced:
  4393. A set() with all symbols and choices referenced in the properties and
  4394. property conditions of the menu node.
  4395. Also includes dependencies inherited from surrounding menus and ifs.
  4396. Choices appear in the dependencies of choice symbols.
  4397. is_menuconfig:
  4398. Set to True if the children of the menu node should be displayed in a
  4399. separate menu. This is the case for the following items:
  4400. - Menus (node.item == MENU)
  4401. - Choices
  4402. - Symbols defined with the 'menuconfig' keyword. The children come from
  4403. implicitly created submenus, and should be displayed in a separate
  4404. menu rather than being indented.
  4405. 'is_menuconfig' is just a hint on how to display the menu node. It's
  4406. ignored internally by Kconfiglib, except when printing symbols.
  4407. filename/linenr:
  4408. The location where the menu node appears. The filename is relative to
  4409. $srctree (or to the current directory if $srctree isn't set), except
  4410. absolute paths are used for paths outside $srctree.
  4411. include_path:
  4412. A tuple of (filename, linenr) tuples, giving the locations of the
  4413. 'source' statements via which the Kconfig file containing this menu node
  4414. was included. The first element is the location of the 'source' statement
  4415. in the top-level Kconfig file passed to Kconfig.__init__(), etc.
  4416. Note that the Kconfig file of the menu node itself isn't included. Check
  4417. 'filename' and 'linenr' for that.
  4418. kconfig:
  4419. The Kconfig instance the menu node is from.
  4420. """
  4421. __slots__ = (
  4422. "dep",
  4423. "filename",
  4424. "help",
  4425. "include_path",
  4426. "is_menuconfig",
  4427. "item",
  4428. "kconfig",
  4429. "linenr",
  4430. "list",
  4431. "next",
  4432. "parent",
  4433. "prompt",
  4434. "visibility",
  4435. # Properties
  4436. "defaults",
  4437. "selects",
  4438. "implies",
  4439. "ranges",
  4440. )
  4441. def __init__(self):
  4442. # Properties defined on this particular menu node. A local 'depends on'
  4443. # only applies to these, in case a symbol is defined in multiple
  4444. # locations.
  4445. self.defaults = []
  4446. self.selects = []
  4447. self.implies = []
  4448. self.ranges = []
  4449. @property
  4450. def orig_prompt(self):
  4451. """
  4452. See the class documentation.
  4453. """
  4454. if not self.prompt:
  4455. return None
  4456. return (self.prompt[0], self._strip_dep(self.prompt[1]))
  4457. @property
  4458. def orig_defaults(self):
  4459. """
  4460. See the class documentation.
  4461. """
  4462. return [(default, self._strip_dep(cond))
  4463. for default, cond in self.defaults]
  4464. @property
  4465. def orig_selects(self):
  4466. """
  4467. See the class documentation.
  4468. """
  4469. return [(select, self._strip_dep(cond))
  4470. for select, cond in self.selects]
  4471. @property
  4472. def orig_implies(self):
  4473. """
  4474. See the class documentation.
  4475. """
  4476. return [(imply, self._strip_dep(cond))
  4477. for imply, cond in self.implies]
  4478. @property
  4479. def orig_ranges(self):
  4480. """
  4481. See the class documentation.
  4482. """
  4483. return [(low, high, self._strip_dep(cond))
  4484. for low, high, cond in self.ranges]
  4485. @property
  4486. def referenced(self):
  4487. """
  4488. See the class documentation.
  4489. """
  4490. # self.dep is included to catch dependencies from a lone 'depends on'
  4491. # when there are no properties to propagate it to
  4492. res = expr_items(self.dep)
  4493. if self.prompt:
  4494. res |= expr_items(self.prompt[1])
  4495. if self.item is MENU:
  4496. res |= expr_items(self.visibility)
  4497. for value, cond in self.defaults:
  4498. res |= expr_items(value)
  4499. res |= expr_items(cond)
  4500. for value, cond in self.selects:
  4501. res.add(value)
  4502. res |= expr_items(cond)
  4503. for value, cond in self.implies:
  4504. res.add(value)
  4505. res |= expr_items(cond)
  4506. for low, high, cond in self.ranges:
  4507. res.add(low)
  4508. res.add(high)
  4509. res |= expr_items(cond)
  4510. return res
  4511. def __repr__(self):
  4512. """
  4513. Returns a string with information about the menu node when it is
  4514. evaluated on e.g. the interactive Python prompt.
  4515. """
  4516. fields = []
  4517. add = fields.append
  4518. if self.item.__class__ is Symbol:
  4519. add("menu node for symbol " + self.item.name)
  4520. elif self.item.__class__ is Choice:
  4521. s = "menu node for choice"
  4522. if self.item.name is not None:
  4523. s += " " + self.item.name
  4524. add(s)
  4525. elif self.item is MENU:
  4526. add("menu node for menu")
  4527. else: # self.item is COMMENT
  4528. add("menu node for comment")
  4529. if self.prompt:
  4530. add('prompt "{}" (visibility {})'.format(
  4531. self.prompt[0], TRI_TO_STR[expr_value(self.prompt[1])]))
  4532. if self.item.__class__ is Symbol and self.is_menuconfig:
  4533. add("is menuconfig")
  4534. add("deps " + TRI_TO_STR[expr_value(self.dep)])
  4535. if self.item is MENU:
  4536. add("'visible if' deps " + TRI_TO_STR[expr_value(self.visibility)])
  4537. if self.item.__class__ in _SYMBOL_CHOICE and self.help is not None:
  4538. add("has help")
  4539. if self.list:
  4540. add("has child")
  4541. if self.next:
  4542. add("has next")
  4543. add("{}:{}".format(self.filename, self.linenr))
  4544. return "<{}>".format(", ".join(fields))
  4545. def __str__(self):
  4546. """
  4547. Returns a string representation of the menu node. Matches the Kconfig
  4548. format, with any parent dependencies propagated to the 'depends on'
  4549. condition.
  4550. The output could (almost) be fed back into a Kconfig parser to redefine
  4551. the object associated with the menu node. See the module documentation
  4552. for a gotcha related to choice symbols.
  4553. For symbols and choices with multiple menu nodes (multiple definition
  4554. locations), properties that aren't associated with a particular menu
  4555. node are shown on all menu nodes ('option env=...', 'optional' for
  4556. choices, etc.).
  4557. The returned string does not end in a newline.
  4558. """
  4559. return self.custom_str(standard_sc_expr_str)
  4560. def custom_str(self, sc_expr_str_fn):
  4561. """
  4562. Works like MenuNode.__str__(), but allows a custom format to be used
  4563. for all symbol/choice references. See expr_str().
  4564. """
  4565. return self._menu_comment_node_str(sc_expr_str_fn) \
  4566. if self.item in _MENU_COMMENT else \
  4567. self._sym_choice_node_str(sc_expr_str_fn)
  4568. def _menu_comment_node_str(self, sc_expr_str_fn):
  4569. s = '{} "{}"'.format("menu" if self.item is MENU else "comment",
  4570. self.prompt[0])
  4571. if self.dep is not self.kconfig.y:
  4572. s += "\n\tdepends on {}".format(expr_str(self.dep, sc_expr_str_fn))
  4573. if self.item is MENU and self.visibility is not self.kconfig.y:
  4574. s += "\n\tvisible if {}".format(expr_str(self.visibility,
  4575. sc_expr_str_fn))
  4576. return s
  4577. def _sym_choice_node_str(self, sc_expr_str_fn):
  4578. def indent_add(s):
  4579. lines.append("\t" + s)
  4580. def indent_add_cond(s, cond):
  4581. if cond is not self.kconfig.y:
  4582. s += " if " + expr_str(cond, sc_expr_str_fn)
  4583. indent_add(s)
  4584. sc = self.item
  4585. if sc.__class__ is Symbol:
  4586. lines = [("menuconfig " if self.is_menuconfig else "config ")
  4587. + sc.name]
  4588. else:
  4589. lines = ["choice " + sc.name if sc.name else "choice"]
  4590. if sc.orig_type and not self.prompt: # sc.orig_type != UNKNOWN
  4591. # If there's a prompt, we'll use the '<type> "prompt"' shorthand
  4592. # instead
  4593. indent_add(TYPE_TO_STR[sc.orig_type])
  4594. if self.prompt:
  4595. if sc.orig_type:
  4596. prefix = TYPE_TO_STR[sc.orig_type]
  4597. else:
  4598. # Symbol defined without a type (which generates a warning)
  4599. prefix = "prompt"
  4600. indent_add_cond(prefix + ' "{}"'.format(escape(self.prompt[0])),
  4601. self.orig_prompt[1])
  4602. if sc.__class__ is Symbol:
  4603. if sc.is_allnoconfig_y:
  4604. indent_add("option allnoconfig_y")
  4605. if sc is sc.kconfig.defconfig_list:
  4606. indent_add("option defconfig_list")
  4607. if sc.env_var is not None:
  4608. indent_add('option env="{}"'.format(sc.env_var))
  4609. if sc is sc.kconfig.modules:
  4610. indent_add("option modules")
  4611. for low, high, cond in self.orig_ranges:
  4612. indent_add_cond(
  4613. "range {} {}".format(sc_expr_str_fn(low),
  4614. sc_expr_str_fn(high)),
  4615. cond)
  4616. for default, cond in self.orig_defaults:
  4617. indent_add_cond("default " + expr_str(default, sc_expr_str_fn),
  4618. cond)
  4619. if sc.__class__ is Choice and sc.is_optional:
  4620. indent_add("optional")
  4621. if sc.__class__ is Symbol:
  4622. for select, cond in self.orig_selects:
  4623. indent_add_cond("select " + sc_expr_str_fn(select), cond)
  4624. for imply, cond in self.orig_implies:
  4625. indent_add_cond("imply " + sc_expr_str_fn(imply), cond)
  4626. if self.dep is not sc.kconfig.y:
  4627. indent_add("depends on " + expr_str(self.dep, sc_expr_str_fn))
  4628. if self.help is not None:
  4629. indent_add("help")
  4630. for line in self.help.splitlines():
  4631. indent_add(" " + line)
  4632. return "\n".join(lines)
  4633. def _strip_dep(self, expr):
  4634. # Helper function for removing MenuNode.dep from 'expr'. Uses two
  4635. # pieces of internal knowledge: (1) Expressions are reused rather than
  4636. # copied, and (2) the direct dependencies always appear at the end.
  4637. # ... if dep -> ... if y
  4638. if self.dep is expr:
  4639. return self.kconfig.y
  4640. # (AND, X, dep) -> X
  4641. if expr.__class__ is tuple and expr[0] is AND and expr[2] is self.dep:
  4642. return expr[1]
  4643. return expr
  4644. class Variable(object):
  4645. """
  4646. Represents a preprocessor variable/function.
  4647. The following attributes are available:
  4648. name:
  4649. The name of the variable.
  4650. value:
  4651. The unexpanded value of the variable.
  4652. expanded_value:
  4653. The expanded value of the variable. For simple variables (those defined
  4654. with :=), this will equal 'value'. Accessing this property will raise a
  4655. KconfigError if the expansion seems to be stuck in a loop.
  4656. Accessing this field is the same as calling expanded_value_w_args() with
  4657. no arguments. I hadn't considered function arguments when adding it. It
  4658. is retained for backwards compatibility though.
  4659. is_recursive:
  4660. True if the variable is recursive (defined with =).
  4661. """
  4662. __slots__ = (
  4663. "_n_expansions",
  4664. "is_recursive",
  4665. "kconfig",
  4666. "name",
  4667. "value",
  4668. )
  4669. @property
  4670. def expanded_value(self):
  4671. """
  4672. See the class documentation.
  4673. """
  4674. return self.expanded_value_w_args()
  4675. def expanded_value_w_args(self, *args):
  4676. """
  4677. Returns the expanded value of the variable/function. Any arguments
  4678. passed will be substituted for $(1), $(2), etc.
  4679. Raises a KconfigError if the expansion seems to be stuck in a loop.
  4680. """
  4681. return self.kconfig._fn_val((self.name,) + args)
  4682. def __repr__(self):
  4683. return "<variable {}, {}, value '{}'>" \
  4684. .format(self.name,
  4685. "recursive" if self.is_recursive else "immediate",
  4686. self.value)
  4687. class KconfigError(Exception):
  4688. """
  4689. Exception raised for Kconfig-related errors.
  4690. KconfigError and KconfigSyntaxError are the same class. The
  4691. KconfigSyntaxError alias is only maintained for backwards compatibility.
  4692. """
  4693. KconfigSyntaxError = KconfigError # Backwards compatibility
  4694. class InternalError(Exception):
  4695. "Never raised. Kept around for backwards compatibility."
  4696. # Workaround:
  4697. #
  4698. # If 'errno' and 'strerror' are set on IOError, then __str__() always returns
  4699. # "[Errno <errno>] <strerror>", ignoring any custom message passed to the
  4700. # constructor. By defining our own subclass, we can use a custom message while
  4701. # also providing 'errno', 'strerror', and 'filename' to scripts.
  4702. class _KconfigIOError(IOError):
  4703. def __init__(self, ioerror, msg):
  4704. self.msg = msg
  4705. super(_KconfigIOError, self).__init__(
  4706. ioerror.errno, ioerror.strerror, ioerror.filename)
  4707. def __str__(self):
  4708. return self.msg
  4709. #
  4710. # Public functions
  4711. #
  4712. def expr_value(expr):
  4713. """
  4714. Evaluates the expression 'expr' to a tristate value. Returns 0 (n), 1 (m),
  4715. or 2 (y).
  4716. 'expr' must be an already-parsed expression from a Symbol, Choice, or
  4717. MenuNode property. To evaluate an expression represented as a string, use
  4718. Kconfig.eval_string().
  4719. Passing subexpressions of expressions to this function works as expected.
  4720. """
  4721. if expr.__class__ is not tuple:
  4722. return expr.tri_value
  4723. if expr[0] is AND:
  4724. v1 = expr_value(expr[1])
  4725. # Short-circuit the n case as an optimization (~5% faster
  4726. # allnoconfig.py and allyesconfig.py, as of writing)
  4727. return 0 if not v1 else min(v1, expr_value(expr[2]))
  4728. if expr[0] is OR:
  4729. v1 = expr_value(expr[1])
  4730. # Short-circuit the y case as an optimization
  4731. return 2 if v1 == 2 else max(v1, expr_value(expr[2]))
  4732. if expr[0] is NOT:
  4733. return 2 - expr_value(expr[1])
  4734. # Relation
  4735. #
  4736. # Implements <, <=, >, >= comparisons as well. These were added to
  4737. # kconfig in 31847b67 (kconfig: allow use of relations other than
  4738. # (in)equality).
  4739. rel, v1, v2 = expr
  4740. # If both operands are strings...
  4741. if v1.orig_type is STRING and v2.orig_type is STRING:
  4742. # ...then compare them lexicographically
  4743. comp = _strcmp(v1.str_value, v2.str_value)
  4744. else:
  4745. # Otherwise, try to compare them as numbers
  4746. try:
  4747. comp = _sym_to_num(v1) - _sym_to_num(v2)
  4748. except ValueError:
  4749. # Fall back on a lexicographic comparison if the operands don't
  4750. # parse as numbers
  4751. comp = _strcmp(v1.str_value, v2.str_value)
  4752. return 2*(comp == 0 if rel is EQUAL else
  4753. comp != 0 if rel is UNEQUAL else
  4754. comp < 0 if rel is LESS else
  4755. comp <= 0 if rel is LESS_EQUAL else
  4756. comp > 0 if rel is GREATER else
  4757. comp >= 0)
  4758. def standard_sc_expr_str(sc):
  4759. """
  4760. Standard symbol/choice printing function. Uses plain Kconfig syntax, and
  4761. displays choices as <choice> (or <choice NAME>, for named choices).
  4762. See expr_str().
  4763. """
  4764. if sc.__class__ is Symbol:
  4765. if sc.is_constant and sc.name not in STR_TO_TRI:
  4766. return '"{}"'.format(escape(sc.name))
  4767. return sc.name
  4768. return "<choice {}>".format(sc.name) if sc.name else "<choice>"
  4769. def expr_str(expr, sc_expr_str_fn=standard_sc_expr_str):
  4770. """
  4771. Returns the string representation of the expression 'expr', as in a Kconfig
  4772. file.
  4773. Passing subexpressions of expressions to this function works as expected.
  4774. sc_expr_str_fn (default: standard_sc_expr_str):
  4775. This function is called for every symbol/choice (hence "sc") appearing in
  4776. the expression, with the symbol/choice as the argument. It is expected to
  4777. return a string to be used for the symbol/choice.
  4778. This can be used e.g. to turn symbols/choices into links when generating
  4779. documentation, or for printing the value of each symbol/choice after it.
  4780. Note that quoted values are represented as constants symbols
  4781. (Symbol.is_constant == True).
  4782. """
  4783. if expr.__class__ is not tuple:
  4784. return sc_expr_str_fn(expr)
  4785. if expr[0] is AND:
  4786. return "{} && {}".format(_parenthesize(expr[1], OR, sc_expr_str_fn),
  4787. _parenthesize(expr[2], OR, sc_expr_str_fn))
  4788. if expr[0] is OR:
  4789. # This turns A && B || C && D into "(A && B) || (C && D)", which is
  4790. # redundant, but more readable
  4791. return "{} || {}".format(_parenthesize(expr[1], AND, sc_expr_str_fn),
  4792. _parenthesize(expr[2], AND, sc_expr_str_fn))
  4793. if expr[0] is NOT:
  4794. if expr[1].__class__ is tuple:
  4795. return "!({})".format(expr_str(expr[1], sc_expr_str_fn))
  4796. return "!" + sc_expr_str_fn(expr[1]) # Symbol
  4797. # Relation
  4798. #
  4799. # Relation operands are always symbols (quoted strings are constant
  4800. # symbols)
  4801. return "{} {} {}".format(sc_expr_str_fn(expr[1]), REL_TO_STR[expr[0]],
  4802. sc_expr_str_fn(expr[2]))
  4803. def expr_items(expr):
  4804. """
  4805. Returns a set() of all items (symbols and choices) that appear in the
  4806. expression 'expr'.
  4807. Passing subexpressions of expressions to this function works as expected.
  4808. """
  4809. res = set()
  4810. def rec(subexpr):
  4811. if subexpr.__class__ is tuple:
  4812. # AND, OR, NOT, or relation
  4813. rec(subexpr[1])
  4814. # NOTs only have a single operand
  4815. if subexpr[0] is not NOT:
  4816. rec(subexpr[2])
  4817. else:
  4818. # Symbol or choice
  4819. res.add(subexpr)
  4820. rec(expr)
  4821. return res
  4822. def split_expr(expr, op):
  4823. """
  4824. Returns a list containing the top-level AND or OR operands in the
  4825. expression 'expr', in the same (left-to-right) order as they appear in
  4826. the expression.
  4827. This can be handy e.g. for splitting (weak) reverse dependencies
  4828. from 'select' and 'imply' into individual selects/implies.
  4829. op:
  4830. Either AND to get AND operands, or OR to get OR operands.
  4831. (Having this as an operand might be more future-safe than having two
  4832. hardcoded functions.)
  4833. Pseudo-code examples:
  4834. split_expr( A , OR ) -> [A]
  4835. split_expr( A && B , OR ) -> [A && B]
  4836. split_expr( A || B , OR ) -> [A, B]
  4837. split_expr( A || B , AND ) -> [A || B]
  4838. split_expr( A || B || (C && D) , OR ) -> [A, B, C && D]
  4839. # Second || is not at the top level
  4840. split_expr( A || (B && (C || D)) , OR ) -> [A, B && (C || D)]
  4841. # Parentheses don't matter as long as we stay at the top level (don't
  4842. # encounter any non-'op' nodes)
  4843. split_expr( (A || B) || C , OR ) -> [A, B, C]
  4844. split_expr( A || (B || C) , OR ) -> [A, B, C]
  4845. """
  4846. res = []
  4847. def rec(subexpr):
  4848. if subexpr.__class__ is tuple and subexpr[0] is op:
  4849. rec(subexpr[1])
  4850. rec(subexpr[2])
  4851. else:
  4852. res.append(subexpr)
  4853. rec(expr)
  4854. return res
  4855. def escape(s):
  4856. r"""
  4857. Escapes the string 's' in the same fashion as is done for display in
  4858. Kconfig format and when writing strings to a .config file. " and \ are
  4859. replaced by \" and \\, respectively.
  4860. """
  4861. # \ must be escaped before " to avoid double escaping
  4862. return s.replace("\\", r"\\").replace('"', r'\"')
  4863. def unescape(s):
  4864. r"""
  4865. Unescapes the string 's'. \ followed by any character is replaced with just
  4866. that character. Used internally when reading .config files.
  4867. """
  4868. return _unescape_sub(r"\1", s)
  4869. # unescape() helper
  4870. _unescape_sub = re.compile(r"\\(.)").sub
  4871. def standard_kconfig(description=None):
  4872. """
  4873. Argument parsing helper for tools that take a single optional Kconfig file
  4874. argument (default: Kconfig). Returns the Kconfig instance for the parsed
  4875. configuration. Uses argparse internally.
  4876. Exits with sys.exit() (which raises SystemExit) on errors.
  4877. description (default: None):
  4878. The 'description' passed to argparse.ArgumentParser().
  4879. argparse.RawDescriptionHelpFormatter is used, so formatting is preserved.
  4880. """
  4881. import argparse
  4882. parser = argparse.ArgumentParser(
  4883. formatter_class=argparse.RawDescriptionHelpFormatter,
  4884. description=description)
  4885. parser.add_argument(
  4886. "kconfig",
  4887. metavar="KCONFIG",
  4888. default="Kconfig",
  4889. nargs="?",
  4890. help="Top-level Kconfig file (default: Kconfig)")
  4891. return Kconfig(parser.parse_args().kconfig, suppress_traceback=True)
  4892. def standard_config_filename():
  4893. """
  4894. Helper for tools. Returns the value of KCONFIG_CONFIG (which specifies the
  4895. .config file to load/save) if it is set, and ".config" otherwise.
  4896. Calling load_config() with filename=None might give the behavior you want,
  4897. without having to use this function.
  4898. """
  4899. return os.getenv("KCONFIG_CONFIG", ".config")
  4900. def load_allconfig(kconf, filename):
  4901. """
  4902. Use Kconfig.load_allconfig() instead, which was added in Kconfiglib 13.4.0.
  4903. Supported for backwards compatibility. Might be removed at some point after
  4904. a long period of deprecation warnings.
  4905. """
  4906. allconfig = os.getenv("KCONFIG_ALLCONFIG")
  4907. if allconfig is None:
  4908. return
  4909. def std_msg(e):
  4910. # "Upcasts" a _KconfigIOError to an IOError, removing the custom
  4911. # __str__() message. The standard message is better here.
  4912. #
  4913. # This might also convert an OSError to an IOError in obscure cases,
  4914. # but it's probably not a big deal. The distinction is shaky (see
  4915. # PEP-3151).
  4916. return IOError(e.errno, e.strerror, e.filename)
  4917. old_warn_assign_override = kconf.warn_assign_override
  4918. old_warn_assign_redun = kconf.warn_assign_redun
  4919. kconf.warn_assign_override = kconf.warn_assign_redun = False
  4920. if allconfig in ("", "1"):
  4921. try:
  4922. print(kconf.load_config(filename, False))
  4923. except EnvironmentError as e1:
  4924. try:
  4925. print(kconf.load_config("all.config", False))
  4926. except EnvironmentError as e2:
  4927. sys.exit("error: KCONFIG_ALLCONFIG is set, but neither {} "
  4928. "nor all.config could be opened: {}, {}"
  4929. .format(filename, std_msg(e1), std_msg(e2)))
  4930. else:
  4931. try:
  4932. print(kconf.load_config(allconfig, False))
  4933. except EnvironmentError as e:
  4934. sys.exit("error: KCONFIG_ALLCONFIG is set to '{}', which "
  4935. "could not be opened: {}"
  4936. .format(allconfig, std_msg(e)))
  4937. kconf.warn_assign_override = old_warn_assign_override
  4938. kconf.warn_assign_redun = old_warn_assign_redun
  4939. #
  4940. # Internal functions
  4941. #
  4942. def _visibility(sc):
  4943. # Symbols and Choices have a "visibility" that acts as an upper bound on
  4944. # the values a user can set for them, corresponding to the visibility in
  4945. # e.g. 'make menuconfig'. This function calculates the visibility for the
  4946. # Symbol or Choice 'sc' -- the logic is nearly identical.
  4947. vis = 0
  4948. for node in sc.nodes:
  4949. if node.prompt:
  4950. vis = max(vis, expr_value(node.prompt[1]))
  4951. if sc.__class__ is Symbol and sc.choice:
  4952. if sc.choice.orig_type is TRISTATE and \
  4953. sc.orig_type is not TRISTATE and sc.choice.tri_value != 2:
  4954. # Non-tristate choice symbols are only visible in y mode
  4955. return 0
  4956. if sc.orig_type is TRISTATE and vis == 1 and sc.choice.tri_value == 2:
  4957. # Choice symbols with m visibility are not visible in y mode
  4958. return 0
  4959. # Promote m to y if we're dealing with a non-tristate (possibly due to
  4960. # modules being disabled)
  4961. if vis == 1 and sc.type is not TRISTATE:
  4962. return 2
  4963. return vis
  4964. def _depend_on(sc, expr):
  4965. # Adds 'sc' (symbol or choice) as a "dependee" to all symbols in 'expr'.
  4966. # Constant symbols in 'expr' are skipped as they can never change value
  4967. # anyway.
  4968. if expr.__class__ is tuple:
  4969. # AND, OR, NOT, or relation
  4970. _depend_on(sc, expr[1])
  4971. # NOTs only have a single operand
  4972. if expr[0] is not NOT:
  4973. _depend_on(sc, expr[2])
  4974. elif not expr.is_constant:
  4975. # Non-constant symbol, or choice
  4976. expr._dependents.add(sc)
  4977. def _parenthesize(expr, type_, sc_expr_str_fn):
  4978. # expr_str() helper. Adds parentheses around expressions of type 'type_'.
  4979. if expr.__class__ is tuple and expr[0] is type_:
  4980. return "({})".format(expr_str(expr, sc_expr_str_fn))
  4981. return expr_str(expr, sc_expr_str_fn)
  4982. def _ordered_unique(lst):
  4983. # Returns 'lst' with any duplicates removed, preserving order. This hacky
  4984. # version seems to be a common idiom. It relies on short-circuit evaluation
  4985. # and set.add() returning None, which is falsy.
  4986. seen = set()
  4987. seen_add = seen.add
  4988. return [x for x in lst if x not in seen and not seen_add(x)]
  4989. def _is_base_n(s, n):
  4990. try:
  4991. int(s, n)
  4992. return True
  4993. except ValueError:
  4994. return False
  4995. def _strcmp(s1, s2):
  4996. # strcmp()-alike that returns -1, 0, or 1
  4997. return (s1 > s2) - (s1 < s2)
  4998. def _sym_to_num(sym):
  4999. # expr_value() helper for converting a symbol to a number. Raises
  5000. # ValueError for symbols that can't be converted.
  5001. # For BOOL and TRISTATE, n/m/y count as 0/1/2. This mirrors 9059a3493ef
  5002. # ("kconfig: fix relational operators for bool and tristate symbols") in
  5003. # the C implementation.
  5004. return sym.tri_value if sym.orig_type in _BOOL_TRISTATE else \
  5005. int(sym.str_value, _TYPE_TO_BASE[sym.orig_type])
  5006. def _touch_dep_file(path, sym_name):
  5007. # If sym_name is MY_SYM_NAME, touches my/sym/name.h. See the sync_deps()
  5008. # docstring.
  5009. sym_path = path + os.sep + sym_name.lower().replace("_", os.sep) + ".h"
  5010. sym_path_dir = dirname(sym_path)
  5011. if not exists(sym_path_dir):
  5012. os.makedirs(sym_path_dir, 0o755)
  5013. # A kind of truncating touch, mirroring the C tools
  5014. os.close(os.open(
  5015. sym_path, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, 0o644))
  5016. def _save_old(path):
  5017. # See write_config()
  5018. if not os.path.isfile(path):
  5019. # Backup only files (and symlinks to files). Simplest alternative
  5020. # to avoid e.g. (potentially successful attempt to) rename /dev/null
  5021. # (and to keep fifos).
  5022. return
  5023. def copy(src, dst):
  5024. # Import as needed, to save some startup time
  5025. import shutil
  5026. shutil.copyfile(src, dst)
  5027. if islink(path):
  5028. # Preserve symlinks
  5029. copy_fn = copy
  5030. elif hasattr(os, "replace"):
  5031. # Python 3 (3.3+) only. Best choice when available, because it
  5032. # removes <filename>.old on both *nix and Windows.
  5033. copy_fn = os.replace
  5034. elif os.name == "posix":
  5035. # Removes <filename>.old on POSIX systems
  5036. copy_fn = os.rename
  5037. else:
  5038. # Fall back on copying
  5039. copy_fn = copy
  5040. try:
  5041. copy_fn(path, path + ".old")
  5042. except Exception:
  5043. # Ignore errors from 'path' missing as well as other errors.
  5044. # <filename>.old file is usually more of a nice-to-have, and not worth
  5045. # erroring out over e.g. if <filename>.old happens to be a directory.
  5046. pass
  5047. def _locs(sc):
  5048. # Symbol/Choice.name_and_loc helper. Returns the "(defined at ...)" part of
  5049. # the string. 'sc' is a Symbol or Choice.
  5050. if sc.nodes:
  5051. return "(defined at {})".format(
  5052. ", ".join("{0.filename}:{0.linenr}".format(node)
  5053. for node in sc.nodes))
  5054. return "(undefined)"
  5055. # Menu manipulation
  5056. def _expr_depends_on(expr, sym):
  5057. # Reimplementation of expr_depends_symbol() from mconf.c. Used to determine
  5058. # if a submenu should be implicitly created. This also influences which
  5059. # items inside choice statements are considered choice items.
  5060. if expr.__class__ is not tuple:
  5061. return expr is sym
  5062. if expr[0] in _EQUAL_UNEQUAL:
  5063. # Check for one of the following:
  5064. # sym = m/y, m/y = sym, sym != n, n != sym
  5065. left, right = expr[1:]
  5066. if right is sym:
  5067. left, right = right, left
  5068. elif left is not sym:
  5069. return False
  5070. return (expr[0] is EQUAL and right is sym.kconfig.m or
  5071. right is sym.kconfig.y) or \
  5072. (expr[0] is UNEQUAL and right is sym.kconfig.n)
  5073. return expr[0] is AND and \
  5074. (_expr_depends_on(expr[1], sym) or
  5075. _expr_depends_on(expr[2], sym))
  5076. def _auto_menu_dep(node1, node2):
  5077. # Returns True if node2 has an "automatic menu dependency" on node1. If
  5078. # node2 has a prompt, we check its condition. Otherwise, we look directly
  5079. # at node2.dep.
  5080. return _expr_depends_on(node2.prompt[1] if node2.prompt else node2.dep,
  5081. node1.item)
  5082. def _flatten(node):
  5083. # "Flattens" menu nodes without prompts (e.g. 'if' nodes and non-visible
  5084. # symbols with children from automatic menu creation) so that their
  5085. # children appear after them instead. This gives a clean menu structure
  5086. # with no unexpected "jumps" in the indentation.
  5087. #
  5088. # Do not flatten promptless choices (which can appear "legitimately" if a
  5089. # named choice is defined in multiple locations to add on symbols). It
  5090. # looks confusing, and the menuconfig already shows all choice symbols if
  5091. # you enter the choice at some location with a prompt.
  5092. while node:
  5093. if node.list and not node.prompt and \
  5094. node.item.__class__ is not Choice:
  5095. last_node = node.list
  5096. while 1:
  5097. last_node.parent = node.parent
  5098. if not last_node.next:
  5099. break
  5100. last_node = last_node.next
  5101. last_node.next = node.next
  5102. node.next = node.list
  5103. node.list = None
  5104. node = node.next
  5105. def _remove_ifs(node):
  5106. # Removes 'if' nodes (which can be recognized by MenuNode.item being None),
  5107. # which are assumed to already have been flattened. The C implementation
  5108. # doesn't bother to do this, but we expose the menu tree directly, and it
  5109. # makes it nicer to work with.
  5110. cur = node.list
  5111. while cur and not cur.item:
  5112. cur = cur.next
  5113. node.list = cur
  5114. while cur:
  5115. next = cur.next
  5116. while next and not next.item:
  5117. next = next.next
  5118. # Equivalent to
  5119. #
  5120. # cur.next = next
  5121. # cur = next
  5122. #
  5123. # due to tricky Python semantics. The order matters.
  5124. cur.next = cur = next
  5125. def _finalize_choice(node):
  5126. # Finalizes a choice, marking each symbol whose menu node has the choice as
  5127. # the parent as a choice symbol, and automatically determining types if not
  5128. # specified.
  5129. choice = node.item
  5130. cur = node.list
  5131. while cur:
  5132. if cur.item.__class__ is Symbol:
  5133. cur.item.choice = choice
  5134. choice.syms.append(cur.item)
  5135. cur = cur.next
  5136. # If no type is specified for the choice, its type is that of
  5137. # the first choice item with a specified type
  5138. if not choice.orig_type:
  5139. for item in choice.syms:
  5140. if item.orig_type:
  5141. choice.orig_type = item.orig_type
  5142. break
  5143. # Each choice item of UNKNOWN type gets the type of the choice
  5144. for sym in choice.syms:
  5145. if not sym.orig_type:
  5146. sym.orig_type = choice.orig_type
  5147. def _check_dep_loop_sym(sym, ignore_choice):
  5148. # Detects dependency loops using depth-first search on the dependency graph
  5149. # (which is calculated earlier in Kconfig._build_dep()).
  5150. #
  5151. # Algorithm:
  5152. #
  5153. # 1. Symbols/choices start out with _visited = 0, meaning unvisited.
  5154. #
  5155. # 2. When a symbol/choice is first visited, _visited is set to 1, meaning
  5156. # "visited, potentially part of a dependency loop". The recursive
  5157. # search then continues from the symbol/choice.
  5158. #
  5159. # 3. If we run into a symbol/choice X with _visited already set to 1,
  5160. # there's a dependency loop. The loop is found on the call stack by
  5161. # recording symbols while returning ("on the way back") until X is seen
  5162. # again.
  5163. #
  5164. # 4. Once a symbol/choice and all its dependencies (or dependents in this
  5165. # case) have been checked recursively without detecting any loops, its
  5166. # _visited is set to 2, meaning "visited, not part of a dependency
  5167. # loop".
  5168. #
  5169. # This saves work if we run into the symbol/choice again in later calls
  5170. # to _check_dep_loop_sym(). We just return immediately.
  5171. #
  5172. # Choices complicate things, as every choice symbol depends on every other
  5173. # choice symbol in a sense. When a choice is "entered" via a choice symbol
  5174. # X, we visit all choice symbols from the choice except X, and prevent
  5175. # immediately revisiting the choice with a flag (ignore_choice).
  5176. #
  5177. # Maybe there's a better way to handle this (different flags or the
  5178. # like...)
  5179. if not sym._visited:
  5180. # sym._visited == 0, unvisited
  5181. sym._visited = 1
  5182. for dep in sym._dependents:
  5183. # Choices show up in Symbol._dependents when the choice has the
  5184. # symbol in a 'prompt' or 'default' condition (e.g.
  5185. # 'default ... if SYM').
  5186. #
  5187. # Since we aren't entering the choice via a choice symbol, all
  5188. # choice symbols need to be checked, hence the None.
  5189. loop = _check_dep_loop_choice(dep, None) \
  5190. if dep.__class__ is Choice \
  5191. else _check_dep_loop_sym(dep, False)
  5192. if loop:
  5193. # Dependency loop found
  5194. return _found_dep_loop(loop, sym)
  5195. if sym.choice and not ignore_choice:
  5196. loop = _check_dep_loop_choice(sym.choice, sym)
  5197. if loop:
  5198. # Dependency loop found
  5199. return _found_dep_loop(loop, sym)
  5200. # The symbol is not part of a dependency loop
  5201. sym._visited = 2
  5202. # No dependency loop found
  5203. return None
  5204. if sym._visited == 2:
  5205. # The symbol was checked earlier and is already known to not be part of
  5206. # a dependency loop
  5207. return None
  5208. # sym._visited == 1, found a dependency loop. Return the symbol as the
  5209. # first element in it.
  5210. return (sym,)
  5211. def _check_dep_loop_choice(choice, skip):
  5212. if not choice._visited:
  5213. # choice._visited == 0, unvisited
  5214. choice._visited = 1
  5215. # Check for loops involving choice symbols. If we came here via a
  5216. # choice symbol, skip that one, as we'd get a false positive
  5217. # '<sym FOO> -> <choice> -> <sym FOO>' loop otherwise.
  5218. for sym in choice.syms:
  5219. if sym is not skip:
  5220. # Prevent the choice from being immediately re-entered via the
  5221. # "is a choice symbol" path by passing True
  5222. loop = _check_dep_loop_sym(sym, True)
  5223. if loop:
  5224. # Dependency loop found
  5225. return _found_dep_loop(loop, choice)
  5226. # The choice is not part of a dependency loop
  5227. choice._visited = 2
  5228. # No dependency loop found
  5229. return None
  5230. if choice._visited == 2:
  5231. # The choice was checked earlier and is already known to not be part of
  5232. # a dependency loop
  5233. return None
  5234. # choice._visited == 1, found a dependency loop. Return the choice as the
  5235. # first element in it.
  5236. return (choice,)
  5237. def _found_dep_loop(loop, cur):
  5238. # Called "on the way back" when we know we have a loop
  5239. # Is the symbol/choice 'cur' where the loop started?
  5240. if cur is not loop[0]:
  5241. # Nope, it's just a part of the loop
  5242. return loop + (cur,)
  5243. # Yep, we have the entire loop. Throw an exception that shows it.
  5244. msg = "\nDependency loop\n" \
  5245. "===============\n\n"
  5246. for item in loop:
  5247. if item is not loop[0]:
  5248. msg += "...depends on "
  5249. if item.__class__ is Symbol and item.choice:
  5250. msg += "the choice symbol "
  5251. msg += "{}, with definition...\n\n{}\n\n" \
  5252. .format(item.name_and_loc, item)
  5253. # Small wart: Since we reuse the already calculated
  5254. # Symbol/Choice._dependents sets for recursive dependency detection, we
  5255. # lose information on whether a dependency came from a 'select'/'imply'
  5256. # condition or e.g. a 'depends on'.
  5257. #
  5258. # This might cause selecting symbols to "disappear". For example,
  5259. # a symbol B having 'select A if C' gives a direct dependency from A to
  5260. # C, since it corresponds to a reverse dependency of B && C.
  5261. #
  5262. # Always print reverse dependencies for symbols that have them to make
  5263. # sure information isn't lost. I wonder if there's some neat way to
  5264. # improve this.
  5265. if item.__class__ is Symbol:
  5266. if item.rev_dep is not item.kconfig.n:
  5267. msg += "(select-related dependencies: {})\n\n" \
  5268. .format(expr_str(item.rev_dep))
  5269. if item.weak_rev_dep is not item.kconfig.n:
  5270. msg += "(imply-related dependencies: {})\n\n" \
  5271. .format(expr_str(item.rev_dep))
  5272. msg += "...depends again on " + loop[0].name_and_loc
  5273. raise KconfigError(msg)
  5274. def _decoding_error(e, filename, macro_linenr=None):
  5275. # Gives the filename and context for UnicodeDecodeError's, which are a pain
  5276. # to debug otherwise. 'e' is the UnicodeDecodeError object.
  5277. #
  5278. # If the decoding error is for the output of a $(shell,...) command,
  5279. # macro_linenr holds the line number where it was run (the exact line
  5280. # number isn't available for decoding errors in files).
  5281. raise KconfigError(
  5282. "\n"
  5283. "Malformed {} in {}\n"
  5284. "Context: {}\n"
  5285. "Problematic data: {}\n"
  5286. "Reason: {}".format(
  5287. e.encoding,
  5288. "'{}'".format(filename) if macro_linenr is None else
  5289. "output from macro at {}:{}".format(filename, macro_linenr),
  5290. e.object[max(e.start - 40, 0):e.end + 40],
  5291. e.object[e.start:e.end],
  5292. e.reason))
  5293. def _warn_verbose_deprecated(fn_name):
  5294. sys.stderr.write(
  5295. "Deprecation warning: {0}()'s 'verbose' argument has no effect. Since "
  5296. "Kconfiglib 12.0.0, the message is returned from {0}() instead, "
  5297. "and is always generated. Do e.g. print(kconf.{0}()) if you want to "
  5298. "want to show a message like \"Loaded configuration '.config'\" on "
  5299. "stdout. The old API required ugly hacks to reuse messages in "
  5300. "configuration interfaces.\n".format(fn_name))
  5301. # Predefined preprocessor functions
  5302. def _filename_fn(kconf, _):
  5303. return kconf.filename
  5304. def _lineno_fn(kconf, _):
  5305. return str(kconf.linenr)
  5306. def _info_fn(kconf, _, msg):
  5307. print("{}:{}: {}".format(kconf.filename, kconf.linenr, msg))
  5308. return ""
  5309. def _warning_if_fn(kconf, _, cond, msg):
  5310. if cond == "y":
  5311. kconf._warn(msg, kconf.filename, kconf.linenr)
  5312. return ""
  5313. def _error_if_fn(kconf, _, cond, msg):
  5314. if cond == "y":
  5315. raise KconfigError("{}:{}: {}".format(
  5316. kconf.filename, kconf.linenr, msg))
  5317. return ""
  5318. def _shell_fn(kconf, _, command):
  5319. import subprocess # Only import as needed, to save some startup time
  5320. stdout, stderr = subprocess.Popen(
  5321. command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE
  5322. ).communicate()
  5323. if not _IS_PY2:
  5324. try:
  5325. stdout = stdout.decode(kconf._encoding)
  5326. stderr = stderr.decode(kconf._encoding)
  5327. except UnicodeDecodeError as e:
  5328. _decoding_error(e, kconf.filename, kconf.linenr)
  5329. if stderr:
  5330. kconf._warn("'{}' wrote to stderr: {}".format(
  5331. command, "\n".join(stderr.splitlines())),
  5332. kconf.filename, kconf.linenr)
  5333. # Universal newlines with splitlines() (to prevent e.g. stray \r's in
  5334. # command output on Windows), trailing newline removal, and
  5335. # newline-to-space conversion.
  5336. #
  5337. # On Python 3 versions before 3.6, it's not possible to specify the
  5338. # encoding when passing universal_newlines=True to Popen() (the 'encoding'
  5339. # parameter was added in 3.6), so we do this manual version instead.
  5340. return "\n".join(stdout.splitlines()).rstrip("\n").replace("\n", " ")
  5341. #
  5342. # Global constants
  5343. #
  5344. TRI_TO_STR = {
  5345. 0: "n",
  5346. 1: "m",
  5347. 2: "y",
  5348. }
  5349. STR_TO_TRI = {
  5350. "n": 0,
  5351. "m": 1,
  5352. "y": 2,
  5353. }
  5354. # Constant representing that there's no cached choice selection. This is
  5355. # distinct from a cached None (no selection). Any object that's not None or a
  5356. # Symbol will do. We test this with 'is'.
  5357. _NO_CACHED_SELECTION = 0
  5358. # Are we running on Python 2?
  5359. _IS_PY2 = sys.version_info[0] < 3
  5360. try:
  5361. _UNAME_RELEASE = os.uname()[2]
  5362. except AttributeError:
  5363. # Only import as needed, to save some startup time
  5364. import platform
  5365. _UNAME_RELEASE = platform.uname()[2]
  5366. # The token and type constants below are safe to test with 'is', which is a bit
  5367. # faster (~30% faster on my machine, and a few % faster for total parsing
  5368. # time), even without assuming Python's small integer optimization (which
  5369. # caches small integer objects). The constants end up pointing to unique
  5370. # integer objects, and since we consistently refer to them via the names below,
  5371. # we always get the same object.
  5372. #
  5373. # Client code should use == though.
  5374. # Tokens, with values 1, 2, ... . Avoiding 0 simplifies some checks by making
  5375. # all tokens except empty strings truthy.
  5376. (
  5377. _T_ALLNOCONFIG_Y,
  5378. _T_AND,
  5379. _T_BOOL,
  5380. _T_CHOICE,
  5381. _T_CLOSE_PAREN,
  5382. _T_COMMENT,
  5383. _T_CONFIG,
  5384. _T_DEFAULT,
  5385. _T_DEFCONFIG_LIST,
  5386. _T_DEF_BOOL,
  5387. _T_DEF_HEX,
  5388. _T_DEF_INT,
  5389. _T_DEF_STRING,
  5390. _T_DEF_TRISTATE,
  5391. _T_DEPENDS,
  5392. _T_ENDCHOICE,
  5393. _T_ENDIF,
  5394. _T_ENDMENU,
  5395. _T_ENV,
  5396. _T_EQUAL,
  5397. _T_GREATER,
  5398. _T_GREATER_EQUAL,
  5399. _T_HELP,
  5400. _T_HEX,
  5401. _T_IF,
  5402. _T_IMPLY,
  5403. _T_INT,
  5404. _T_LESS,
  5405. _T_LESS_EQUAL,
  5406. _T_MAINMENU,
  5407. _T_MENU,
  5408. _T_MENUCONFIG,
  5409. _T_MODULES,
  5410. _T_NOT,
  5411. _T_ON,
  5412. _T_OPEN_PAREN,
  5413. _T_OPTION,
  5414. _T_OPTIONAL,
  5415. _T_OR,
  5416. _T_ORSOURCE,
  5417. _T_OSOURCE,
  5418. _T_PROMPT,
  5419. _T_RANGE,
  5420. _T_RSOURCE,
  5421. _T_SELECT,
  5422. _T_SOURCE,
  5423. _T_STRING,
  5424. _T_TRISTATE,
  5425. _T_UNEQUAL,
  5426. _T_VISIBLE,
  5427. ) = range(1, 51)
  5428. # Keyword to token map, with the get() method assigned directly as a small
  5429. # optimization
  5430. _get_keyword = {
  5431. "---help---": _T_HELP,
  5432. "allnoconfig_y": _T_ALLNOCONFIG_Y,
  5433. "bool": _T_BOOL,
  5434. "boolean": _T_BOOL,
  5435. "choice": _T_CHOICE,
  5436. "comment": _T_COMMENT,
  5437. "config": _T_CONFIG,
  5438. "def_bool": _T_DEF_BOOL,
  5439. "def_hex": _T_DEF_HEX,
  5440. "def_int": _T_DEF_INT,
  5441. "def_string": _T_DEF_STRING,
  5442. "def_tristate": _T_DEF_TRISTATE,
  5443. "default": _T_DEFAULT,
  5444. "defconfig_list": _T_DEFCONFIG_LIST,
  5445. "depends": _T_DEPENDS,
  5446. "endchoice": _T_ENDCHOICE,
  5447. "endif": _T_ENDIF,
  5448. "endmenu": _T_ENDMENU,
  5449. "env": _T_ENV,
  5450. "grsource": _T_ORSOURCE, # Backwards compatibility
  5451. "gsource": _T_OSOURCE, # Backwards compatibility
  5452. "help": _T_HELP,
  5453. "hex": _T_HEX,
  5454. "if": _T_IF,
  5455. "imply": _T_IMPLY,
  5456. "int": _T_INT,
  5457. "mainmenu": _T_MAINMENU,
  5458. "menu": _T_MENU,
  5459. "menuconfig": _T_MENUCONFIG,
  5460. "modules": _T_MODULES,
  5461. "on": _T_ON,
  5462. "option": _T_OPTION,
  5463. "optional": _T_OPTIONAL,
  5464. "orsource": _T_ORSOURCE,
  5465. "osource": _T_OSOURCE,
  5466. "prompt": _T_PROMPT,
  5467. "range": _T_RANGE,
  5468. "rsource": _T_RSOURCE,
  5469. "select": _T_SELECT,
  5470. "source": _T_SOURCE,
  5471. "string": _T_STRING,
  5472. "tristate": _T_TRISTATE,
  5473. "visible": _T_VISIBLE,
  5474. }.get
  5475. # The constants below match the value of the corresponding tokens to remove the
  5476. # need for conversion
  5477. # Node types
  5478. MENU = _T_MENU
  5479. COMMENT = _T_COMMENT
  5480. # Expression types
  5481. AND = _T_AND
  5482. OR = _T_OR
  5483. NOT = _T_NOT
  5484. EQUAL = _T_EQUAL
  5485. UNEQUAL = _T_UNEQUAL
  5486. LESS = _T_LESS
  5487. LESS_EQUAL = _T_LESS_EQUAL
  5488. GREATER = _T_GREATER
  5489. GREATER_EQUAL = _T_GREATER_EQUAL
  5490. REL_TO_STR = {
  5491. EQUAL: "=",
  5492. UNEQUAL: "!=",
  5493. LESS: "<",
  5494. LESS_EQUAL: "<=",
  5495. GREATER: ">",
  5496. GREATER_EQUAL: ">=",
  5497. }
  5498. # Symbol/choice types. UNKNOWN is 0 (falsy) to simplify some checks.
  5499. # Client code shouldn't rely on it though, as it was non-zero in
  5500. # older versions.
  5501. UNKNOWN = 0
  5502. BOOL = _T_BOOL
  5503. TRISTATE = _T_TRISTATE
  5504. STRING = _T_STRING
  5505. INT = _T_INT
  5506. HEX = _T_HEX
  5507. TYPE_TO_STR = {
  5508. UNKNOWN: "unknown",
  5509. BOOL: "bool",
  5510. TRISTATE: "tristate",
  5511. STRING: "string",
  5512. INT: "int",
  5513. HEX: "hex",
  5514. }
  5515. # Used in comparisons. 0 means the base is inferred from the format of the
  5516. # string.
  5517. _TYPE_TO_BASE = {
  5518. HEX: 16,
  5519. INT: 10,
  5520. STRING: 0,
  5521. UNKNOWN: 0,
  5522. }
  5523. # def_bool -> BOOL, etc.
  5524. _DEF_TOKEN_TO_TYPE = {
  5525. _T_DEF_BOOL: BOOL,
  5526. _T_DEF_HEX: HEX,
  5527. _T_DEF_INT: INT,
  5528. _T_DEF_STRING: STRING,
  5529. _T_DEF_TRISTATE: TRISTATE,
  5530. }
  5531. # Tokens after which strings are expected. This is used to tell strings from
  5532. # constant symbol references during tokenization, both of which are enclosed in
  5533. # quotes.
  5534. #
  5535. # Identifier-like lexemes ("missing quotes") are also treated as strings after
  5536. # these tokens. _T_CHOICE is included to avoid symbols being registered for
  5537. # named choices.
  5538. _STRING_LEX = frozenset({
  5539. _T_BOOL,
  5540. _T_CHOICE,
  5541. _T_COMMENT,
  5542. _T_HEX,
  5543. _T_INT,
  5544. _T_MAINMENU,
  5545. _T_MENU,
  5546. _T_ORSOURCE,
  5547. _T_OSOURCE,
  5548. _T_PROMPT,
  5549. _T_RSOURCE,
  5550. _T_SOURCE,
  5551. _T_STRING,
  5552. _T_TRISTATE,
  5553. })
  5554. # Various sets for quick membership tests. Gives a single global lookup and
  5555. # avoids creating temporary dicts/tuples.
  5556. _TYPE_TOKENS = frozenset({
  5557. _T_BOOL,
  5558. _T_TRISTATE,
  5559. _T_INT,
  5560. _T_HEX,
  5561. _T_STRING,
  5562. })
  5563. _SOURCE_TOKENS = frozenset({
  5564. _T_SOURCE,
  5565. _T_RSOURCE,
  5566. _T_OSOURCE,
  5567. _T_ORSOURCE,
  5568. })
  5569. _REL_SOURCE_TOKENS = frozenset({
  5570. _T_RSOURCE,
  5571. _T_ORSOURCE,
  5572. })
  5573. # Obligatory (non-optional) sources
  5574. _OBL_SOURCE_TOKENS = frozenset({
  5575. _T_SOURCE,
  5576. _T_RSOURCE,
  5577. })
  5578. _BOOL_TRISTATE = frozenset({
  5579. BOOL,
  5580. TRISTATE,
  5581. })
  5582. _BOOL_TRISTATE_UNKNOWN = frozenset({
  5583. BOOL,
  5584. TRISTATE,
  5585. UNKNOWN,
  5586. })
  5587. _INT_HEX = frozenset({
  5588. INT,
  5589. HEX,
  5590. })
  5591. _SYMBOL_CHOICE = frozenset({
  5592. Symbol,
  5593. Choice,
  5594. })
  5595. _MENU_COMMENT = frozenset({
  5596. MENU,
  5597. COMMENT,
  5598. })
  5599. _EQUAL_UNEQUAL = frozenset({
  5600. EQUAL,
  5601. UNEQUAL,
  5602. })
  5603. _RELATIONS = frozenset({
  5604. EQUAL,
  5605. UNEQUAL,
  5606. LESS,
  5607. LESS_EQUAL,
  5608. GREATER,
  5609. GREATER_EQUAL,
  5610. })
  5611. # Helper functions for getting compiled regular expressions, with the needed
  5612. # matching function returned directly as a small optimization.
  5613. #
  5614. # Use ASCII regex matching on Python 3. It's already the default on Python 2.
  5615. def _re_match(regex):
  5616. return re.compile(regex, 0 if _IS_PY2 else re.ASCII).match
  5617. def _re_search(regex):
  5618. return re.compile(regex, 0 if _IS_PY2 else re.ASCII).search
  5619. # Various regular expressions used during parsing
  5620. # The initial token on a line. Also eats leading and trailing whitespace, so
  5621. # that we can jump straight to the next token (or to the end of the line if
  5622. # there is only one token).
  5623. #
  5624. # This regex will also fail to match for empty lines and comment lines.
  5625. #
  5626. # '$' is included to detect preprocessor variable assignments with macro
  5627. # expansions in the left-hand side.
  5628. _command_match = _re_match(r"\s*([A-Za-z0-9_$-]+)\s*")
  5629. # An identifier/keyword after the first token. Also eats trailing whitespace.
  5630. # '$' is included to detect identifiers containing macro expansions.
  5631. _id_keyword_match = _re_match(r"([A-Za-z0-9_$/.-]+)\s*")
  5632. # A fragment in the left-hand side of a preprocessor variable assignment. These
  5633. # are the portions between macro expansions ($(foo)). Macros are supported in
  5634. # the LHS (variable name).
  5635. _assignment_lhs_fragment_match = _re_match("[A-Za-z0-9_-]*")
  5636. # The assignment operator and value (right-hand side) in a preprocessor
  5637. # variable assignment
  5638. _assignment_rhs_match = _re_match(r"\s*(=|:=|\+=)\s*(.*)")
  5639. # Special characters/strings while expanding a macro ('(', ')', ',', and '$(')
  5640. _macro_special_search = _re_search(r"\(|\)|,|\$\(")
  5641. # Special characters/strings while expanding a string (quotes, '\', and '$(')
  5642. _string_special_search = _re_search(r'"|\'|\\|\$\(')
  5643. # Special characters/strings while expanding a symbol name. Also includes
  5644. # end-of-line, in case the macro is the last thing on the line.
  5645. _name_special_search = _re_search(r'[^A-Za-z0-9_$/.-]|\$\(|$')
  5646. # A valid right-hand side for an assignment to a string symbol in a .config
  5647. # file, including escaped characters. Extracts the contents.
  5648. _conf_string_match = _re_match(r'"((?:[^\\"]|\\.)*)"')