config.c 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386
  1. /*
  2. * WPA Supplicant / Configuration parser and common functions
  3. * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "utils/uuid.h"
  11. #include "utils/ip_addr.h"
  12. #include "crypto/sha1.h"
  13. #include "rsn_supp/wpa.h"
  14. #include "eap_peer/eap.h"
  15. #include "p2p/p2p.h"
  16. #include "fst/fst.h"
  17. #include "config.h"
  18. #if !defined(CONFIG_CTRL_IFACE) && defined(CONFIG_NO_CONFIG_WRITE)
  19. #define NO_CONFIG_WRITE
  20. #endif
  21. /*
  22. * Structure for network configuration parsing. This data is used to implement
  23. * a generic parser for each network block variable. The table of configuration
  24. * variables is defined below in this file (ssid_fields[]).
  25. */
  26. struct parse_data {
  27. /* Configuration variable name */
  28. char *name;
  29. /* Parser function for this variable */
  30. int (*parser)(const struct parse_data *data, struct wpa_ssid *ssid,
  31. int line, const char *value);
  32. #ifndef NO_CONFIG_WRITE
  33. /* Writer function (i.e., to get the variable in text format from
  34. * internal presentation). */
  35. char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid);
  36. #endif /* NO_CONFIG_WRITE */
  37. /* Variable specific parameters for the parser. */
  38. void *param1, *param2, *param3, *param4;
  39. /* 0 = this variable can be included in debug output and ctrl_iface
  40. * 1 = this variable contains key/private data and it must not be
  41. * included in debug output unless explicitly requested. In
  42. * addition, this variable will not be readable through the
  43. * ctrl_iface.
  44. */
  45. int key_data;
  46. };
  47. static int wpa_config_parse_str(const struct parse_data *data,
  48. struct wpa_ssid *ssid,
  49. int line, const char *value)
  50. {
  51. size_t res_len, *dst_len;
  52. char **dst, *tmp;
  53. if (os_strcmp(value, "NULL") == 0) {
  54. wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
  55. data->name);
  56. tmp = NULL;
  57. res_len = 0;
  58. goto set;
  59. }
  60. tmp = wpa_config_parse_string(value, &res_len);
  61. if (tmp == NULL) {
  62. wpa_printf(MSG_ERROR, "Line %d: failed to parse %s '%s'.",
  63. line, data->name,
  64. data->key_data ? "[KEY DATA REMOVED]" : value);
  65. return -1;
  66. }
  67. if (data->key_data) {
  68. wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
  69. (u8 *) tmp, res_len);
  70. } else {
  71. wpa_hexdump_ascii(MSG_MSGDUMP, data->name,
  72. (u8 *) tmp, res_len);
  73. }
  74. if (data->param3 && res_len < (size_t) data->param3) {
  75. wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
  76. "min_len=%ld)", line, data->name,
  77. (unsigned long) res_len, (long) data->param3);
  78. os_free(tmp);
  79. return -1;
  80. }
  81. if (data->param4 && res_len > (size_t) data->param4) {
  82. wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
  83. "max_len=%ld)", line, data->name,
  84. (unsigned long) res_len, (long) data->param4);
  85. os_free(tmp);
  86. return -1;
  87. }
  88. set:
  89. dst = (char **) (((u8 *) ssid) + (long) data->param1);
  90. dst_len = (size_t *) (((u8 *) ssid) + (long) data->param2);
  91. os_free(*dst);
  92. *dst = tmp;
  93. if (data->param2)
  94. *dst_len = res_len;
  95. return 0;
  96. }
  97. #ifndef NO_CONFIG_WRITE
  98. static char * wpa_config_write_string_ascii(const u8 *value, size_t len)
  99. {
  100. char *buf;
  101. buf = os_malloc(len + 3);
  102. if (buf == NULL)
  103. return NULL;
  104. buf[0] = '"';
  105. os_memcpy(buf + 1, value, len);
  106. buf[len + 1] = '"';
  107. buf[len + 2] = '\0';
  108. return buf;
  109. }
  110. static char * wpa_config_write_string_hex(const u8 *value, size_t len)
  111. {
  112. char *buf;
  113. buf = os_zalloc(2 * len + 1);
  114. if (buf == NULL)
  115. return NULL;
  116. wpa_snprintf_hex(buf, 2 * len + 1, value, len);
  117. return buf;
  118. }
  119. static char * wpa_config_write_string(const u8 *value, size_t len)
  120. {
  121. if (value == NULL)
  122. return NULL;
  123. if (is_hex(value, len))
  124. return wpa_config_write_string_hex(value, len);
  125. else
  126. return wpa_config_write_string_ascii(value, len);
  127. }
  128. static char * wpa_config_write_str(const struct parse_data *data,
  129. struct wpa_ssid *ssid)
  130. {
  131. size_t len;
  132. char **src;
  133. src = (char **) (((u8 *) ssid) + (long) data->param1);
  134. if (*src == NULL)
  135. return NULL;
  136. if (data->param2)
  137. len = *((size_t *) (((u8 *) ssid) + (long) data->param2));
  138. else
  139. len = os_strlen(*src);
  140. return wpa_config_write_string((const u8 *) *src, len);
  141. }
  142. #endif /* NO_CONFIG_WRITE */
  143. static int wpa_config_parse_int(const struct parse_data *data,
  144. struct wpa_ssid *ssid,
  145. int line, const char *value)
  146. {
  147. int val, *dst;
  148. char *end;
  149. dst = (int *) (((u8 *) ssid) + (long) data->param1);
  150. val = strtol(value, &end, 0);
  151. if (*end) {
  152. wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
  153. line, value);
  154. return -1;
  155. }
  156. *dst = val;
  157. wpa_printf(MSG_MSGDUMP, "%s=%d (0x%x)", data->name, *dst, *dst);
  158. if (data->param3 && *dst < (long) data->param3) {
  159. wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
  160. "min_value=%ld)", line, data->name, *dst,
  161. (long) data->param3);
  162. *dst = (long) data->param3;
  163. return -1;
  164. }
  165. if (data->param4 && *dst > (long) data->param4) {
  166. wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
  167. "max_value=%ld)", line, data->name, *dst,
  168. (long) data->param4);
  169. *dst = (long) data->param4;
  170. return -1;
  171. }
  172. return 0;
  173. }
  174. #ifndef NO_CONFIG_WRITE
  175. static char * wpa_config_write_int(const struct parse_data *data,
  176. struct wpa_ssid *ssid)
  177. {
  178. int *src, res;
  179. char *value;
  180. src = (int *) (((u8 *) ssid) + (long) data->param1);
  181. value = os_malloc(20);
  182. if (value == NULL)
  183. return NULL;
  184. res = os_snprintf(value, 20, "%d", *src);
  185. if (os_snprintf_error(20, res)) {
  186. os_free(value);
  187. return NULL;
  188. }
  189. value[20 - 1] = '\0';
  190. return value;
  191. }
  192. #endif /* NO_CONFIG_WRITE */
  193. static int wpa_config_parse_addr_list(const struct parse_data *data,
  194. int line, const char *value,
  195. u8 **list, size_t *num, char *name,
  196. u8 abort_on_error, u8 masked)
  197. {
  198. const char *pos;
  199. u8 *buf, *n, addr[2 * ETH_ALEN];
  200. size_t count;
  201. buf = NULL;
  202. count = 0;
  203. pos = value;
  204. while (pos && *pos) {
  205. while (*pos == ' ')
  206. pos++;
  207. if (hwaddr_masked_aton(pos, addr, &addr[ETH_ALEN], masked)) {
  208. if (abort_on_error || count == 0) {
  209. wpa_printf(MSG_ERROR,
  210. "Line %d: Invalid %s address '%s'",
  211. line, name, value);
  212. os_free(buf);
  213. return -1;
  214. }
  215. /* continue anyway since this could have been from a
  216. * truncated configuration file line */
  217. wpa_printf(MSG_INFO,
  218. "Line %d: Ignore likely truncated %s address '%s'",
  219. line, name, pos);
  220. } else {
  221. n = os_realloc_array(buf, count + 1, 2 * ETH_ALEN);
  222. if (n == NULL) {
  223. os_free(buf);
  224. return -1;
  225. }
  226. buf = n;
  227. os_memmove(buf + 2 * ETH_ALEN, buf,
  228. count * 2 * ETH_ALEN);
  229. os_memcpy(buf, addr, 2 * ETH_ALEN);
  230. count++;
  231. wpa_printf(MSG_MSGDUMP,
  232. "%s: addr=" MACSTR " mask=" MACSTR,
  233. name, MAC2STR(addr),
  234. MAC2STR(&addr[ETH_ALEN]));
  235. }
  236. pos = os_strchr(pos, ' ');
  237. }
  238. os_free(*list);
  239. *list = buf;
  240. *num = count;
  241. return 0;
  242. }
  243. #ifndef NO_CONFIG_WRITE
  244. static char * wpa_config_write_addr_list(const struct parse_data *data,
  245. const u8 *list, size_t num, char *name)
  246. {
  247. char *value, *end, *pos;
  248. int res;
  249. size_t i;
  250. if (list == NULL || num == 0)
  251. return NULL;
  252. value = os_malloc(2 * 20 * num);
  253. if (value == NULL)
  254. return NULL;
  255. pos = value;
  256. end = value + 2 * 20 * num;
  257. for (i = num; i > 0; i--) {
  258. const u8 *a = list + (i - 1) * 2 * ETH_ALEN;
  259. const u8 *m = a + ETH_ALEN;
  260. if (i < num)
  261. *pos++ = ' ';
  262. res = hwaddr_mask_txt(pos, end - pos, a, m);
  263. if (res < 0) {
  264. os_free(value);
  265. return NULL;
  266. }
  267. pos += res;
  268. }
  269. return value;
  270. }
  271. #endif /* NO_CONFIG_WRITE */
  272. static int wpa_config_parse_bssid(const struct parse_data *data,
  273. struct wpa_ssid *ssid, int line,
  274. const char *value)
  275. {
  276. if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
  277. os_strcmp(value, "any") == 0) {
  278. ssid->bssid_set = 0;
  279. wpa_printf(MSG_MSGDUMP, "BSSID any");
  280. return 0;
  281. }
  282. if (hwaddr_aton(value, ssid->bssid)) {
  283. wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID '%s'.",
  284. line, value);
  285. return -1;
  286. }
  287. ssid->bssid_set = 1;
  288. wpa_hexdump(MSG_MSGDUMP, "BSSID", ssid->bssid, ETH_ALEN);
  289. return 0;
  290. }
  291. #ifndef NO_CONFIG_WRITE
  292. static char * wpa_config_write_bssid(const struct parse_data *data,
  293. struct wpa_ssid *ssid)
  294. {
  295. char *value;
  296. int res;
  297. if (!ssid->bssid_set)
  298. return NULL;
  299. value = os_malloc(20);
  300. if (value == NULL)
  301. return NULL;
  302. res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid));
  303. if (os_snprintf_error(20, res)) {
  304. os_free(value);
  305. return NULL;
  306. }
  307. value[20 - 1] = '\0';
  308. return value;
  309. }
  310. #endif /* NO_CONFIG_WRITE */
  311. static int wpa_config_parse_bssid_blacklist(const struct parse_data *data,
  312. struct wpa_ssid *ssid, int line,
  313. const char *value)
  314. {
  315. return wpa_config_parse_addr_list(data, line, value,
  316. &ssid->bssid_blacklist,
  317. &ssid->num_bssid_blacklist,
  318. "bssid_blacklist", 1, 1);
  319. }
  320. #ifndef NO_CONFIG_WRITE
  321. static char * wpa_config_write_bssid_blacklist(const struct parse_data *data,
  322. struct wpa_ssid *ssid)
  323. {
  324. return wpa_config_write_addr_list(data, ssid->bssid_blacklist,
  325. ssid->num_bssid_blacklist,
  326. "bssid_blacklist");
  327. }
  328. #endif /* NO_CONFIG_WRITE */
  329. static int wpa_config_parse_bssid_whitelist(const struct parse_data *data,
  330. struct wpa_ssid *ssid, int line,
  331. const char *value)
  332. {
  333. return wpa_config_parse_addr_list(data, line, value,
  334. &ssid->bssid_whitelist,
  335. &ssid->num_bssid_whitelist,
  336. "bssid_whitelist", 1, 1);
  337. }
  338. #ifndef NO_CONFIG_WRITE
  339. static char * wpa_config_write_bssid_whitelist(const struct parse_data *data,
  340. struct wpa_ssid *ssid)
  341. {
  342. return wpa_config_write_addr_list(data, ssid->bssid_whitelist,
  343. ssid->num_bssid_whitelist,
  344. "bssid_whitelist");
  345. }
  346. #endif /* NO_CONFIG_WRITE */
  347. static int wpa_config_parse_psk(const struct parse_data *data,
  348. struct wpa_ssid *ssid, int line,
  349. const char *value)
  350. {
  351. #ifdef CONFIG_EXT_PASSWORD
  352. if (os_strncmp(value, "ext:", 4) == 0) {
  353. str_clear_free(ssid->passphrase);
  354. ssid->passphrase = NULL;
  355. ssid->psk_set = 0;
  356. os_free(ssid->ext_psk);
  357. ssid->ext_psk = os_strdup(value + 4);
  358. if (ssid->ext_psk == NULL)
  359. return -1;
  360. wpa_printf(MSG_DEBUG, "PSK: External password '%s'",
  361. ssid->ext_psk);
  362. return 0;
  363. }
  364. #endif /* CONFIG_EXT_PASSWORD */
  365. if (*value == '"') {
  366. #ifndef CONFIG_NO_PBKDF2
  367. const char *pos;
  368. size_t len;
  369. value++;
  370. pos = os_strrchr(value, '"');
  371. if (pos)
  372. len = pos - value;
  373. else
  374. len = os_strlen(value);
  375. if (len < 8 || len > 63) {
  376. wpa_printf(MSG_ERROR, "Line %d: Invalid passphrase "
  377. "length %lu (expected: 8..63) '%s'.",
  378. line, (unsigned long) len, value);
  379. return -1;
  380. }
  381. wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
  382. (u8 *) value, len);
  383. if (ssid->passphrase && os_strlen(ssid->passphrase) == len &&
  384. os_memcmp(ssid->passphrase, value, len) == 0)
  385. return 0;
  386. ssid->psk_set = 0;
  387. str_clear_free(ssid->passphrase);
  388. ssid->passphrase = dup_binstr(value, len);
  389. if (ssid->passphrase == NULL)
  390. return -1;
  391. return 0;
  392. #else /* CONFIG_NO_PBKDF2 */
  393. wpa_printf(MSG_ERROR, "Line %d: ASCII passphrase not "
  394. "supported.", line);
  395. return -1;
  396. #endif /* CONFIG_NO_PBKDF2 */
  397. }
  398. if (hexstr2bin(value, ssid->psk, PMK_LEN) ||
  399. value[PMK_LEN * 2] != '\0') {
  400. wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
  401. line, value);
  402. return -1;
  403. }
  404. str_clear_free(ssid->passphrase);
  405. ssid->passphrase = NULL;
  406. ssid->psk_set = 1;
  407. wpa_hexdump_key(MSG_MSGDUMP, "PSK", ssid->psk, PMK_LEN);
  408. return 0;
  409. }
  410. #ifndef NO_CONFIG_WRITE
  411. static char * wpa_config_write_psk(const struct parse_data *data,
  412. struct wpa_ssid *ssid)
  413. {
  414. #ifdef CONFIG_EXT_PASSWORD
  415. if (ssid->ext_psk) {
  416. size_t len = 4 + os_strlen(ssid->ext_psk) + 1;
  417. char *buf = os_malloc(len);
  418. int res;
  419. if (buf == NULL)
  420. return NULL;
  421. res = os_snprintf(buf, len, "ext:%s", ssid->ext_psk);
  422. if (os_snprintf_error(len, res)) {
  423. os_free(buf);
  424. buf = NULL;
  425. }
  426. return buf;
  427. }
  428. #endif /* CONFIG_EXT_PASSWORD */
  429. if (ssid->passphrase)
  430. return wpa_config_write_string_ascii(
  431. (const u8 *) ssid->passphrase,
  432. os_strlen(ssid->passphrase));
  433. if (ssid->psk_set)
  434. return wpa_config_write_string_hex(ssid->psk, PMK_LEN);
  435. return NULL;
  436. }
  437. #endif /* NO_CONFIG_WRITE */
  438. static int wpa_config_parse_proto(const struct parse_data *data,
  439. struct wpa_ssid *ssid, int line,
  440. const char *value)
  441. {
  442. int val = 0, last, errors = 0;
  443. char *start, *end, *buf;
  444. buf = os_strdup(value);
  445. if (buf == NULL)
  446. return -1;
  447. start = buf;
  448. while (*start != '\0') {
  449. while (*start == ' ' || *start == '\t')
  450. start++;
  451. if (*start == '\0')
  452. break;
  453. end = start;
  454. while (*end != ' ' && *end != '\t' && *end != '\0')
  455. end++;
  456. last = *end == '\0';
  457. *end = '\0';
  458. if (os_strcmp(start, "WPA") == 0)
  459. val |= WPA_PROTO_WPA;
  460. else if (os_strcmp(start, "RSN") == 0 ||
  461. os_strcmp(start, "WPA2") == 0)
  462. val |= WPA_PROTO_RSN;
  463. else if (os_strcmp(start, "OSEN") == 0)
  464. val |= WPA_PROTO_OSEN;
  465. else {
  466. wpa_printf(MSG_ERROR, "Line %d: invalid proto '%s'",
  467. line, start);
  468. errors++;
  469. }
  470. if (last)
  471. break;
  472. start = end + 1;
  473. }
  474. os_free(buf);
  475. if (val == 0) {
  476. wpa_printf(MSG_ERROR,
  477. "Line %d: no proto values configured.", line);
  478. errors++;
  479. }
  480. wpa_printf(MSG_MSGDUMP, "proto: 0x%x", val);
  481. ssid->proto = val;
  482. return errors ? -1 : 0;
  483. }
  484. #ifndef NO_CONFIG_WRITE
  485. static char * wpa_config_write_proto(const struct parse_data *data,
  486. struct wpa_ssid *ssid)
  487. {
  488. int ret;
  489. char *buf, *pos, *end;
  490. pos = buf = os_zalloc(20);
  491. if (buf == NULL)
  492. return NULL;
  493. end = buf + 20;
  494. if (ssid->proto & WPA_PROTO_WPA) {
  495. ret = os_snprintf(pos, end - pos, "%sWPA",
  496. pos == buf ? "" : " ");
  497. if (os_snprintf_error(end - pos, ret))
  498. return buf;
  499. pos += ret;
  500. }
  501. if (ssid->proto & WPA_PROTO_RSN) {
  502. ret = os_snprintf(pos, end - pos, "%sRSN",
  503. pos == buf ? "" : " ");
  504. if (os_snprintf_error(end - pos, ret))
  505. return buf;
  506. pos += ret;
  507. }
  508. if (ssid->proto & WPA_PROTO_OSEN) {
  509. ret = os_snprintf(pos, end - pos, "%sOSEN",
  510. pos == buf ? "" : " ");
  511. if (os_snprintf_error(end - pos, ret))
  512. return buf;
  513. pos += ret;
  514. }
  515. if (pos == buf) {
  516. os_free(buf);
  517. buf = NULL;
  518. }
  519. return buf;
  520. }
  521. #endif /* NO_CONFIG_WRITE */
  522. static int wpa_config_parse_key_mgmt(const struct parse_data *data,
  523. struct wpa_ssid *ssid, int line,
  524. const char *value)
  525. {
  526. int val = 0, last, errors = 0;
  527. char *start, *end, *buf;
  528. buf = os_strdup(value);
  529. if (buf == NULL)
  530. return -1;
  531. start = buf;
  532. while (*start != '\0') {
  533. while (*start == ' ' || *start == '\t')
  534. start++;
  535. if (*start == '\0')
  536. break;
  537. end = start;
  538. while (*end != ' ' && *end != '\t' && *end != '\0')
  539. end++;
  540. last = *end == '\0';
  541. *end = '\0';
  542. if (os_strcmp(start, "WPA-PSK") == 0)
  543. val |= WPA_KEY_MGMT_PSK;
  544. else if (os_strcmp(start, "WPA-EAP") == 0)
  545. val |= WPA_KEY_MGMT_IEEE8021X;
  546. else if (os_strcmp(start, "IEEE8021X") == 0)
  547. val |= WPA_KEY_MGMT_IEEE8021X_NO_WPA;
  548. else if (os_strcmp(start, "NONE") == 0)
  549. val |= WPA_KEY_MGMT_NONE;
  550. else if (os_strcmp(start, "WPA-NONE") == 0)
  551. val |= WPA_KEY_MGMT_WPA_NONE;
  552. #ifdef CONFIG_IEEE80211R
  553. else if (os_strcmp(start, "FT-PSK") == 0)
  554. val |= WPA_KEY_MGMT_FT_PSK;
  555. else if (os_strcmp(start, "FT-EAP") == 0)
  556. val |= WPA_KEY_MGMT_FT_IEEE8021X;
  557. #endif /* CONFIG_IEEE80211R */
  558. #ifdef CONFIG_IEEE80211W
  559. else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
  560. val |= WPA_KEY_MGMT_PSK_SHA256;
  561. else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
  562. val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
  563. #endif /* CONFIG_IEEE80211W */
  564. #ifdef CONFIG_WPS
  565. else if (os_strcmp(start, "WPS") == 0)
  566. val |= WPA_KEY_MGMT_WPS;
  567. #endif /* CONFIG_WPS */
  568. #ifdef CONFIG_SAE
  569. else if (os_strcmp(start, "SAE") == 0)
  570. val |= WPA_KEY_MGMT_SAE;
  571. else if (os_strcmp(start, "FT-SAE") == 0)
  572. val |= WPA_KEY_MGMT_FT_SAE;
  573. #endif /* CONFIG_SAE */
  574. #ifdef CONFIG_HS20
  575. else if (os_strcmp(start, "OSEN") == 0)
  576. val |= WPA_KEY_MGMT_OSEN;
  577. #endif /* CONFIG_HS20 */
  578. #ifdef CONFIG_SUITEB
  579. else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
  580. val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
  581. #endif /* CONFIG_SUITEB */
  582. #ifdef CONFIG_SUITEB192
  583. else if (os_strcmp(start, "WPA-EAP-SUITE-B-192") == 0)
  584. val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
  585. #endif /* CONFIG_SUITEB192 */
  586. else {
  587. wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
  588. line, start);
  589. errors++;
  590. }
  591. if (last)
  592. break;
  593. start = end + 1;
  594. }
  595. os_free(buf);
  596. if (val == 0) {
  597. wpa_printf(MSG_ERROR,
  598. "Line %d: no key_mgmt values configured.", line);
  599. errors++;
  600. }
  601. wpa_printf(MSG_MSGDUMP, "key_mgmt: 0x%x", val);
  602. ssid->key_mgmt = val;
  603. return errors ? -1 : 0;
  604. }
  605. #ifndef NO_CONFIG_WRITE
  606. static char * wpa_config_write_key_mgmt(const struct parse_data *data,
  607. struct wpa_ssid *ssid)
  608. {
  609. char *buf, *pos, *end;
  610. int ret;
  611. pos = buf = os_zalloc(100);
  612. if (buf == NULL)
  613. return NULL;
  614. end = buf + 100;
  615. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
  616. ret = os_snprintf(pos, end - pos, "%sWPA-PSK",
  617. pos == buf ? "" : " ");
  618. if (os_snprintf_error(end - pos, ret)) {
  619. end[-1] = '\0';
  620. return buf;
  621. }
  622. pos += ret;
  623. }
  624. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  625. ret = os_snprintf(pos, end - pos, "%sWPA-EAP",
  626. pos == buf ? "" : " ");
  627. if (os_snprintf_error(end - pos, ret)) {
  628. end[-1] = '\0';
  629. return buf;
  630. }
  631. pos += ret;
  632. }
  633. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  634. ret = os_snprintf(pos, end - pos, "%sIEEE8021X",
  635. pos == buf ? "" : " ");
  636. if (os_snprintf_error(end - pos, ret)) {
  637. end[-1] = '\0';
  638. return buf;
  639. }
  640. pos += ret;
  641. }
  642. if (ssid->key_mgmt & WPA_KEY_MGMT_NONE) {
  643. ret = os_snprintf(pos, end - pos, "%sNONE",
  644. pos == buf ? "" : " ");
  645. if (os_snprintf_error(end - pos, ret)) {
  646. end[-1] = '\0';
  647. return buf;
  648. }
  649. pos += ret;
  650. }
  651. if (ssid->key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
  652. ret = os_snprintf(pos, end - pos, "%sWPA-NONE",
  653. pos == buf ? "" : " ");
  654. if (os_snprintf_error(end - pos, ret)) {
  655. end[-1] = '\0';
  656. return buf;
  657. }
  658. pos += ret;
  659. }
  660. #ifdef CONFIG_IEEE80211R
  661. if (ssid->key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  662. ret = os_snprintf(pos, end - pos, "%sFT-PSK",
  663. pos == buf ? "" : " ");
  664. if (os_snprintf_error(end - pos, ret)) {
  665. end[-1] = '\0';
  666. return buf;
  667. }
  668. pos += ret;
  669. }
  670. if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  671. ret = os_snprintf(pos, end - pos, "%sFT-EAP",
  672. pos == buf ? "" : " ");
  673. if (os_snprintf_error(end - pos, ret)) {
  674. end[-1] = '\0';
  675. return buf;
  676. }
  677. pos += ret;
  678. }
  679. #endif /* CONFIG_IEEE80211R */
  680. #ifdef CONFIG_IEEE80211W
  681. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  682. ret = os_snprintf(pos, end - pos, "%sWPA-PSK-SHA256",
  683. pos == buf ? "" : " ");
  684. if (os_snprintf_error(end - pos, ret)) {
  685. end[-1] = '\0';
  686. return buf;
  687. }
  688. pos += ret;
  689. }
  690. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  691. ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SHA256",
  692. pos == buf ? "" : " ");
  693. if (os_snprintf_error(end - pos, ret)) {
  694. end[-1] = '\0';
  695. return buf;
  696. }
  697. pos += ret;
  698. }
  699. #endif /* CONFIG_IEEE80211W */
  700. #ifdef CONFIG_WPS
  701. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  702. ret = os_snprintf(pos, end - pos, "%sWPS",
  703. pos == buf ? "" : " ");
  704. if (os_snprintf_error(end - pos, ret)) {
  705. end[-1] = '\0';
  706. return buf;
  707. }
  708. pos += ret;
  709. }
  710. #endif /* CONFIG_WPS */
  711. #ifdef CONFIG_SAE
  712. if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
  713. ret = os_snprintf(pos, end - pos, "%sSAE",
  714. pos == buf ? "" : " ");
  715. if (os_snprintf_error(end - pos, ret)) {
  716. end[-1] = '\0';
  717. return buf;
  718. }
  719. pos += ret;
  720. }
  721. if (ssid->key_mgmt & WPA_KEY_MGMT_FT_SAE) {
  722. ret = os_snprintf(pos, end - pos, "%sFT-SAE",
  723. pos == buf ? "" : " ");
  724. if (os_snprintf_error(end - pos, ret)) {
  725. end[-1] = '\0';
  726. return buf;
  727. }
  728. pos += ret;
  729. }
  730. #endif /* CONFIG_SAE */
  731. #ifdef CONFIG_HS20
  732. if (ssid->key_mgmt & WPA_KEY_MGMT_OSEN) {
  733. ret = os_snprintf(pos, end - pos, "%sOSEN",
  734. pos == buf ? "" : " ");
  735. if (os_snprintf_error(end - pos, ret)) {
  736. end[-1] = '\0';
  737. return buf;
  738. }
  739. pos += ret;
  740. }
  741. #endif /* CONFIG_HS20 */
  742. #ifdef CONFIG_SUITEB
  743. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
  744. ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SUITE-B",
  745. pos == buf ? "" : " ");
  746. if (os_snprintf_error(end - pos, ret)) {
  747. end[-1] = '\0';
  748. return buf;
  749. }
  750. pos += ret;
  751. }
  752. #endif /* CONFIG_SUITEB */
  753. #ifdef CONFIG_SUITEB192
  754. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
  755. ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SUITE-B-192",
  756. pos == buf ? "" : " ");
  757. if (os_snprintf_error(end - pos, ret)) {
  758. end[-1] = '\0';
  759. return buf;
  760. }
  761. pos += ret;
  762. }
  763. #endif /* CONFIG_SUITEB192 */
  764. if (pos == buf) {
  765. os_free(buf);
  766. buf = NULL;
  767. }
  768. return buf;
  769. }
  770. #endif /* NO_CONFIG_WRITE */
  771. static int wpa_config_parse_cipher(int line, const char *value)
  772. {
  773. #ifdef CONFIG_NO_WPA
  774. return -1;
  775. #else /* CONFIG_NO_WPA */
  776. int val = wpa_parse_cipher(value);
  777. if (val < 0) {
  778. wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
  779. line, value);
  780. return -1;
  781. }
  782. if (val == 0) {
  783. wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
  784. line);
  785. return -1;
  786. }
  787. return val;
  788. #endif /* CONFIG_NO_WPA */
  789. }
  790. #ifndef NO_CONFIG_WRITE
  791. static char * wpa_config_write_cipher(int cipher)
  792. {
  793. #ifdef CONFIG_NO_WPA
  794. return NULL;
  795. #else /* CONFIG_NO_WPA */
  796. char *buf = os_zalloc(50);
  797. if (buf == NULL)
  798. return NULL;
  799. if (wpa_write_ciphers(buf, buf + 50, cipher, " ") < 0) {
  800. os_free(buf);
  801. return NULL;
  802. }
  803. return buf;
  804. #endif /* CONFIG_NO_WPA */
  805. }
  806. #endif /* NO_CONFIG_WRITE */
  807. static int wpa_config_parse_pairwise(const struct parse_data *data,
  808. struct wpa_ssid *ssid, int line,
  809. const char *value)
  810. {
  811. int val;
  812. val = wpa_config_parse_cipher(line, value);
  813. if (val == -1)
  814. return -1;
  815. if (val & ~WPA_ALLOWED_PAIRWISE_CIPHERS) {
  816. wpa_printf(MSG_ERROR, "Line %d: not allowed pairwise cipher "
  817. "(0x%x).", line, val);
  818. return -1;
  819. }
  820. wpa_printf(MSG_MSGDUMP, "pairwise: 0x%x", val);
  821. ssid->pairwise_cipher = val;
  822. return 0;
  823. }
  824. #ifndef NO_CONFIG_WRITE
  825. static char * wpa_config_write_pairwise(const struct parse_data *data,
  826. struct wpa_ssid *ssid)
  827. {
  828. return wpa_config_write_cipher(ssid->pairwise_cipher);
  829. }
  830. #endif /* NO_CONFIG_WRITE */
  831. static int wpa_config_parse_group(const struct parse_data *data,
  832. struct wpa_ssid *ssid, int line,
  833. const char *value)
  834. {
  835. int val;
  836. val = wpa_config_parse_cipher(line, value);
  837. if (val == -1)
  838. return -1;
  839. /*
  840. * Backwards compatibility - filter out WEP ciphers that were previously
  841. * allowed.
  842. */
  843. val &= ~(WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40);
  844. if (val & ~WPA_ALLOWED_GROUP_CIPHERS) {
  845. wpa_printf(MSG_ERROR, "Line %d: not allowed group cipher "
  846. "(0x%x).", line, val);
  847. return -1;
  848. }
  849. wpa_printf(MSG_MSGDUMP, "group: 0x%x", val);
  850. ssid->group_cipher = val;
  851. return 0;
  852. }
  853. #ifndef NO_CONFIG_WRITE
  854. static char * wpa_config_write_group(const struct parse_data *data,
  855. struct wpa_ssid *ssid)
  856. {
  857. return wpa_config_write_cipher(ssid->group_cipher);
  858. }
  859. #endif /* NO_CONFIG_WRITE */
  860. static int wpa_config_parse_auth_alg(const struct parse_data *data,
  861. struct wpa_ssid *ssid, int line,
  862. const char *value)
  863. {
  864. int val = 0, last, errors = 0;
  865. char *start, *end, *buf;
  866. buf = os_strdup(value);
  867. if (buf == NULL)
  868. return -1;
  869. start = buf;
  870. while (*start != '\0') {
  871. while (*start == ' ' || *start == '\t')
  872. start++;
  873. if (*start == '\0')
  874. break;
  875. end = start;
  876. while (*end != ' ' && *end != '\t' && *end != '\0')
  877. end++;
  878. last = *end == '\0';
  879. *end = '\0';
  880. if (os_strcmp(start, "OPEN") == 0)
  881. val |= WPA_AUTH_ALG_OPEN;
  882. else if (os_strcmp(start, "SHARED") == 0)
  883. val |= WPA_AUTH_ALG_SHARED;
  884. else if (os_strcmp(start, "LEAP") == 0)
  885. val |= WPA_AUTH_ALG_LEAP;
  886. else {
  887. wpa_printf(MSG_ERROR, "Line %d: invalid auth_alg '%s'",
  888. line, start);
  889. errors++;
  890. }
  891. if (last)
  892. break;
  893. start = end + 1;
  894. }
  895. os_free(buf);
  896. if (val == 0) {
  897. wpa_printf(MSG_ERROR,
  898. "Line %d: no auth_alg values configured.", line);
  899. errors++;
  900. }
  901. wpa_printf(MSG_MSGDUMP, "auth_alg: 0x%x", val);
  902. ssid->auth_alg = val;
  903. return errors ? -1 : 0;
  904. }
  905. #ifndef NO_CONFIG_WRITE
  906. static char * wpa_config_write_auth_alg(const struct parse_data *data,
  907. struct wpa_ssid *ssid)
  908. {
  909. char *buf, *pos, *end;
  910. int ret;
  911. pos = buf = os_zalloc(30);
  912. if (buf == NULL)
  913. return NULL;
  914. end = buf + 30;
  915. if (ssid->auth_alg & WPA_AUTH_ALG_OPEN) {
  916. ret = os_snprintf(pos, end - pos, "%sOPEN",
  917. pos == buf ? "" : " ");
  918. if (os_snprintf_error(end - pos, ret)) {
  919. end[-1] = '\0';
  920. return buf;
  921. }
  922. pos += ret;
  923. }
  924. if (ssid->auth_alg & WPA_AUTH_ALG_SHARED) {
  925. ret = os_snprintf(pos, end - pos, "%sSHARED",
  926. pos == buf ? "" : " ");
  927. if (os_snprintf_error(end - pos, ret)) {
  928. end[-1] = '\0';
  929. return buf;
  930. }
  931. pos += ret;
  932. }
  933. if (ssid->auth_alg & WPA_AUTH_ALG_LEAP) {
  934. ret = os_snprintf(pos, end - pos, "%sLEAP",
  935. pos == buf ? "" : " ");
  936. if (os_snprintf_error(end - pos, ret)) {
  937. end[-1] = '\0';
  938. return buf;
  939. }
  940. pos += ret;
  941. }
  942. if (pos == buf) {
  943. os_free(buf);
  944. buf = NULL;
  945. }
  946. return buf;
  947. }
  948. #endif /* NO_CONFIG_WRITE */
  949. static int * wpa_config_parse_int_array(const char *value)
  950. {
  951. int *freqs;
  952. size_t used, len;
  953. const char *pos;
  954. used = 0;
  955. len = 10;
  956. freqs = os_calloc(len + 1, sizeof(int));
  957. if (freqs == NULL)
  958. return NULL;
  959. pos = value;
  960. while (pos) {
  961. while (*pos == ' ')
  962. pos++;
  963. if (used == len) {
  964. int *n;
  965. size_t i;
  966. n = os_realloc_array(freqs, len * 2 + 1, sizeof(int));
  967. if (n == NULL) {
  968. os_free(freqs);
  969. return NULL;
  970. }
  971. for (i = len; i <= len * 2; i++)
  972. n[i] = 0;
  973. freqs = n;
  974. len *= 2;
  975. }
  976. freqs[used] = atoi(pos);
  977. if (freqs[used] == 0)
  978. break;
  979. used++;
  980. pos = os_strchr(pos + 1, ' ');
  981. }
  982. return freqs;
  983. }
  984. static int wpa_config_parse_scan_freq(const struct parse_data *data,
  985. struct wpa_ssid *ssid, int line,
  986. const char *value)
  987. {
  988. int *freqs;
  989. freqs = wpa_config_parse_int_array(value);
  990. if (freqs == NULL)
  991. return -1;
  992. if (freqs[0] == 0) {
  993. os_free(freqs);
  994. freqs = NULL;
  995. }
  996. os_free(ssid->scan_freq);
  997. ssid->scan_freq = freqs;
  998. return 0;
  999. }
  1000. static int wpa_config_parse_freq_list(const struct parse_data *data,
  1001. struct wpa_ssid *ssid, int line,
  1002. const char *value)
  1003. {
  1004. int *freqs;
  1005. freqs = wpa_config_parse_int_array(value);
  1006. if (freqs == NULL)
  1007. return -1;
  1008. if (freqs[0] == 0) {
  1009. os_free(freqs);
  1010. freqs = NULL;
  1011. }
  1012. os_free(ssid->freq_list);
  1013. ssid->freq_list = freqs;
  1014. return 0;
  1015. }
  1016. #ifndef NO_CONFIG_WRITE
  1017. static char * wpa_config_write_freqs(const struct parse_data *data,
  1018. const int *freqs)
  1019. {
  1020. char *buf, *pos, *end;
  1021. int i, ret;
  1022. size_t count;
  1023. if (freqs == NULL)
  1024. return NULL;
  1025. count = 0;
  1026. for (i = 0; freqs[i]; i++)
  1027. count++;
  1028. pos = buf = os_zalloc(10 * count + 1);
  1029. if (buf == NULL)
  1030. return NULL;
  1031. end = buf + 10 * count + 1;
  1032. for (i = 0; freqs[i]; i++) {
  1033. ret = os_snprintf(pos, end - pos, "%s%u",
  1034. i == 0 ? "" : " ", freqs[i]);
  1035. if (os_snprintf_error(end - pos, ret)) {
  1036. end[-1] = '\0';
  1037. return buf;
  1038. }
  1039. pos += ret;
  1040. }
  1041. return buf;
  1042. }
  1043. static char * wpa_config_write_scan_freq(const struct parse_data *data,
  1044. struct wpa_ssid *ssid)
  1045. {
  1046. return wpa_config_write_freqs(data, ssid->scan_freq);
  1047. }
  1048. static char * wpa_config_write_freq_list(const struct parse_data *data,
  1049. struct wpa_ssid *ssid)
  1050. {
  1051. return wpa_config_write_freqs(data, ssid->freq_list);
  1052. }
  1053. #endif /* NO_CONFIG_WRITE */
  1054. #ifdef IEEE8021X_EAPOL
  1055. static int wpa_config_parse_eap(const struct parse_data *data,
  1056. struct wpa_ssid *ssid, int line,
  1057. const char *value)
  1058. {
  1059. int last, errors = 0;
  1060. char *start, *end, *buf;
  1061. struct eap_method_type *methods = NULL, *tmp;
  1062. size_t num_methods = 0;
  1063. buf = os_strdup(value);
  1064. if (buf == NULL)
  1065. return -1;
  1066. start = buf;
  1067. while (*start != '\0') {
  1068. while (*start == ' ' || *start == '\t')
  1069. start++;
  1070. if (*start == '\0')
  1071. break;
  1072. end = start;
  1073. while (*end != ' ' && *end != '\t' && *end != '\0')
  1074. end++;
  1075. last = *end == '\0';
  1076. *end = '\0';
  1077. tmp = methods;
  1078. methods = os_realloc_array(methods, num_methods + 1,
  1079. sizeof(*methods));
  1080. if (methods == NULL) {
  1081. os_free(tmp);
  1082. os_free(buf);
  1083. return -1;
  1084. }
  1085. methods[num_methods].method = eap_peer_get_type(
  1086. start, &methods[num_methods].vendor);
  1087. if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
  1088. methods[num_methods].method == EAP_TYPE_NONE) {
  1089. wpa_printf(MSG_ERROR, "Line %d: unknown EAP method "
  1090. "'%s'", line, start);
  1091. wpa_printf(MSG_ERROR, "You may need to add support for"
  1092. " this EAP method during wpa_supplicant\n"
  1093. "build time configuration.\n"
  1094. "See README for more information.");
  1095. errors++;
  1096. } else if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
  1097. methods[num_methods].method == EAP_TYPE_LEAP)
  1098. ssid->leap++;
  1099. else
  1100. ssid->non_leap++;
  1101. num_methods++;
  1102. if (last)
  1103. break;
  1104. start = end + 1;
  1105. }
  1106. os_free(buf);
  1107. tmp = methods;
  1108. methods = os_realloc_array(methods, num_methods + 1, sizeof(*methods));
  1109. if (methods == NULL) {
  1110. os_free(tmp);
  1111. return -1;
  1112. }
  1113. methods[num_methods].vendor = EAP_VENDOR_IETF;
  1114. methods[num_methods].method = EAP_TYPE_NONE;
  1115. num_methods++;
  1116. wpa_hexdump(MSG_MSGDUMP, "eap methods",
  1117. (u8 *) methods, num_methods * sizeof(*methods));
  1118. os_free(ssid->eap.eap_methods);
  1119. ssid->eap.eap_methods = methods;
  1120. return errors ? -1 : 0;
  1121. }
  1122. #ifndef NO_CONFIG_WRITE
  1123. static char * wpa_config_write_eap(const struct parse_data *data,
  1124. struct wpa_ssid *ssid)
  1125. {
  1126. int i, ret;
  1127. char *buf, *pos, *end;
  1128. const struct eap_method_type *eap_methods = ssid->eap.eap_methods;
  1129. const char *name;
  1130. if (eap_methods == NULL)
  1131. return NULL;
  1132. pos = buf = os_zalloc(100);
  1133. if (buf == NULL)
  1134. return NULL;
  1135. end = buf + 100;
  1136. for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
  1137. eap_methods[i].method != EAP_TYPE_NONE; i++) {
  1138. name = eap_get_name(eap_methods[i].vendor,
  1139. eap_methods[i].method);
  1140. if (name) {
  1141. ret = os_snprintf(pos, end - pos, "%s%s",
  1142. pos == buf ? "" : " ", name);
  1143. if (os_snprintf_error(end - pos, ret))
  1144. break;
  1145. pos += ret;
  1146. }
  1147. }
  1148. end[-1] = '\0';
  1149. return buf;
  1150. }
  1151. #endif /* NO_CONFIG_WRITE */
  1152. static int wpa_config_parse_password(const struct parse_data *data,
  1153. struct wpa_ssid *ssid, int line,
  1154. const char *value)
  1155. {
  1156. u8 *hash;
  1157. if (os_strcmp(value, "NULL") == 0) {
  1158. wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
  1159. bin_clear_free(ssid->eap.password, ssid->eap.password_len);
  1160. ssid->eap.password = NULL;
  1161. ssid->eap.password_len = 0;
  1162. return 0;
  1163. }
  1164. #ifdef CONFIG_EXT_PASSWORD
  1165. if (os_strncmp(value, "ext:", 4) == 0) {
  1166. char *name = os_strdup(value + 4);
  1167. if (name == NULL)
  1168. return -1;
  1169. bin_clear_free(ssid->eap.password, ssid->eap.password_len);
  1170. ssid->eap.password = (u8 *) name;
  1171. ssid->eap.password_len = os_strlen(name);
  1172. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  1173. ssid->eap.flags |= EAP_CONFIG_FLAGS_EXT_PASSWORD;
  1174. return 0;
  1175. }
  1176. #endif /* CONFIG_EXT_PASSWORD */
  1177. if (os_strncmp(value, "hash:", 5) != 0) {
  1178. char *tmp;
  1179. size_t res_len;
  1180. tmp = wpa_config_parse_string(value, &res_len);
  1181. if (tmp == NULL) {
  1182. wpa_printf(MSG_ERROR, "Line %d: failed to parse "
  1183. "password.", line);
  1184. return -1;
  1185. }
  1186. wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
  1187. (u8 *) tmp, res_len);
  1188. bin_clear_free(ssid->eap.password, ssid->eap.password_len);
  1189. ssid->eap.password = (u8 *) tmp;
  1190. ssid->eap.password_len = res_len;
  1191. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  1192. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
  1193. return 0;
  1194. }
  1195. /* NtPasswordHash: hash:<32 hex digits> */
  1196. if (os_strlen(value + 5) != 2 * 16) {
  1197. wpa_printf(MSG_ERROR, "Line %d: Invalid password hash length "
  1198. "(expected 32 hex digits)", line);
  1199. return -1;
  1200. }
  1201. hash = os_malloc(16);
  1202. if (hash == NULL)
  1203. return -1;
  1204. if (hexstr2bin(value + 5, hash, 16)) {
  1205. os_free(hash);
  1206. wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
  1207. return -1;
  1208. }
  1209. wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
  1210. bin_clear_free(ssid->eap.password, ssid->eap.password_len);
  1211. ssid->eap.password = hash;
  1212. ssid->eap.password_len = 16;
  1213. ssid->eap.flags |= EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  1214. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
  1215. return 0;
  1216. }
  1217. #ifndef NO_CONFIG_WRITE
  1218. static char * wpa_config_write_password(const struct parse_data *data,
  1219. struct wpa_ssid *ssid)
  1220. {
  1221. char *buf;
  1222. if (ssid->eap.password == NULL)
  1223. return NULL;
  1224. #ifdef CONFIG_EXT_PASSWORD
  1225. if (ssid->eap.flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) {
  1226. buf = os_zalloc(4 + ssid->eap.password_len + 1);
  1227. if (buf == NULL)
  1228. return NULL;
  1229. os_memcpy(buf, "ext:", 4);
  1230. os_memcpy(buf + 4, ssid->eap.password, ssid->eap.password_len);
  1231. return buf;
  1232. }
  1233. #endif /* CONFIG_EXT_PASSWORD */
  1234. if (!(ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
  1235. return wpa_config_write_string(
  1236. ssid->eap.password, ssid->eap.password_len);
  1237. }
  1238. buf = os_malloc(5 + 32 + 1);
  1239. if (buf == NULL)
  1240. return NULL;
  1241. os_memcpy(buf, "hash:", 5);
  1242. wpa_snprintf_hex(buf + 5, 32 + 1, ssid->eap.password, 16);
  1243. return buf;
  1244. }
  1245. #endif /* NO_CONFIG_WRITE */
  1246. #endif /* IEEE8021X_EAPOL */
  1247. static int wpa_config_parse_wep_key(u8 *key, size_t *len, int line,
  1248. const char *value, int idx)
  1249. {
  1250. char *buf, title[20];
  1251. int res;
  1252. buf = wpa_config_parse_string(value, len);
  1253. if (buf == NULL) {
  1254. wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key %d '%s'.",
  1255. line, idx, value);
  1256. return -1;
  1257. }
  1258. if (*len > MAX_WEP_KEY_LEN) {
  1259. wpa_printf(MSG_ERROR, "Line %d: Too long WEP key %d '%s'.",
  1260. line, idx, value);
  1261. os_free(buf);
  1262. return -1;
  1263. }
  1264. if (*len && *len != 5 && *len != 13 && *len != 16) {
  1265. wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key length %u - "
  1266. "this network block will be ignored",
  1267. line, (unsigned int) *len);
  1268. }
  1269. os_memcpy(key, buf, *len);
  1270. str_clear_free(buf);
  1271. res = os_snprintf(title, sizeof(title), "wep_key%d", idx);
  1272. if (!os_snprintf_error(sizeof(title), res))
  1273. wpa_hexdump_key(MSG_MSGDUMP, title, key, *len);
  1274. return 0;
  1275. }
  1276. static int wpa_config_parse_wep_key0(const struct parse_data *data,
  1277. struct wpa_ssid *ssid, int line,
  1278. const char *value)
  1279. {
  1280. return wpa_config_parse_wep_key(ssid->wep_key[0],
  1281. &ssid->wep_key_len[0], line,
  1282. value, 0);
  1283. }
  1284. static int wpa_config_parse_wep_key1(const struct parse_data *data,
  1285. struct wpa_ssid *ssid, int line,
  1286. const char *value)
  1287. {
  1288. return wpa_config_parse_wep_key(ssid->wep_key[1],
  1289. &ssid->wep_key_len[1], line,
  1290. value, 1);
  1291. }
  1292. static int wpa_config_parse_wep_key2(const struct parse_data *data,
  1293. struct wpa_ssid *ssid, int line,
  1294. const char *value)
  1295. {
  1296. return wpa_config_parse_wep_key(ssid->wep_key[2],
  1297. &ssid->wep_key_len[2], line,
  1298. value, 2);
  1299. }
  1300. static int wpa_config_parse_wep_key3(const struct parse_data *data,
  1301. struct wpa_ssid *ssid, int line,
  1302. const char *value)
  1303. {
  1304. return wpa_config_parse_wep_key(ssid->wep_key[3],
  1305. &ssid->wep_key_len[3], line,
  1306. value, 3);
  1307. }
  1308. #ifndef NO_CONFIG_WRITE
  1309. static char * wpa_config_write_wep_key(struct wpa_ssid *ssid, int idx)
  1310. {
  1311. if (ssid->wep_key_len[idx] == 0)
  1312. return NULL;
  1313. return wpa_config_write_string(ssid->wep_key[idx],
  1314. ssid->wep_key_len[idx]);
  1315. }
  1316. static char * wpa_config_write_wep_key0(const struct parse_data *data,
  1317. struct wpa_ssid *ssid)
  1318. {
  1319. return wpa_config_write_wep_key(ssid, 0);
  1320. }
  1321. static char * wpa_config_write_wep_key1(const struct parse_data *data,
  1322. struct wpa_ssid *ssid)
  1323. {
  1324. return wpa_config_write_wep_key(ssid, 1);
  1325. }
  1326. static char * wpa_config_write_wep_key2(const struct parse_data *data,
  1327. struct wpa_ssid *ssid)
  1328. {
  1329. return wpa_config_write_wep_key(ssid, 2);
  1330. }
  1331. static char * wpa_config_write_wep_key3(const struct parse_data *data,
  1332. struct wpa_ssid *ssid)
  1333. {
  1334. return wpa_config_write_wep_key(ssid, 3);
  1335. }
  1336. #endif /* NO_CONFIG_WRITE */
  1337. #ifdef CONFIG_P2P
  1338. static int wpa_config_parse_go_p2p_dev_addr(const struct parse_data *data,
  1339. struct wpa_ssid *ssid, int line,
  1340. const char *value)
  1341. {
  1342. if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
  1343. os_strcmp(value, "any") == 0) {
  1344. os_memset(ssid->go_p2p_dev_addr, 0, ETH_ALEN);
  1345. wpa_printf(MSG_MSGDUMP, "GO P2P Device Address any");
  1346. return 0;
  1347. }
  1348. if (hwaddr_aton(value, ssid->go_p2p_dev_addr)) {
  1349. wpa_printf(MSG_ERROR, "Line %d: Invalid GO P2P Device Address '%s'.",
  1350. line, value);
  1351. return -1;
  1352. }
  1353. ssid->bssid_set = 1;
  1354. wpa_printf(MSG_MSGDUMP, "GO P2P Device Address " MACSTR,
  1355. MAC2STR(ssid->go_p2p_dev_addr));
  1356. return 0;
  1357. }
  1358. #ifndef NO_CONFIG_WRITE
  1359. static char * wpa_config_write_go_p2p_dev_addr(const struct parse_data *data,
  1360. struct wpa_ssid *ssid)
  1361. {
  1362. char *value;
  1363. int res;
  1364. if (is_zero_ether_addr(ssid->go_p2p_dev_addr))
  1365. return NULL;
  1366. value = os_malloc(20);
  1367. if (value == NULL)
  1368. return NULL;
  1369. res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->go_p2p_dev_addr));
  1370. if (os_snprintf_error(20, res)) {
  1371. os_free(value);
  1372. return NULL;
  1373. }
  1374. value[20 - 1] = '\0';
  1375. return value;
  1376. }
  1377. #endif /* NO_CONFIG_WRITE */
  1378. static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
  1379. struct wpa_ssid *ssid, int line,
  1380. const char *value)
  1381. {
  1382. return wpa_config_parse_addr_list(data, line, value,
  1383. &ssid->p2p_client_list,
  1384. &ssid->num_p2p_clients,
  1385. "p2p_client_list", 0, 0);
  1386. }
  1387. #ifndef NO_CONFIG_WRITE
  1388. static char * wpa_config_write_p2p_client_list(const struct parse_data *data,
  1389. struct wpa_ssid *ssid)
  1390. {
  1391. return wpa_config_write_addr_list(data, ssid->p2p_client_list,
  1392. ssid->num_p2p_clients,
  1393. "p2p_client_list");
  1394. }
  1395. #endif /* NO_CONFIG_WRITE */
  1396. static int wpa_config_parse_psk_list(const struct parse_data *data,
  1397. struct wpa_ssid *ssid, int line,
  1398. const char *value)
  1399. {
  1400. struct psk_list_entry *p;
  1401. const char *pos;
  1402. p = os_zalloc(sizeof(*p));
  1403. if (p == NULL)
  1404. return -1;
  1405. pos = value;
  1406. if (os_strncmp(pos, "P2P-", 4) == 0) {
  1407. p->p2p = 1;
  1408. pos += 4;
  1409. }
  1410. if (hwaddr_aton(pos, p->addr)) {
  1411. wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list address '%s'",
  1412. line, pos);
  1413. os_free(p);
  1414. return -1;
  1415. }
  1416. pos += 17;
  1417. if (*pos != '-') {
  1418. wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list '%s'",
  1419. line, pos);
  1420. os_free(p);
  1421. return -1;
  1422. }
  1423. pos++;
  1424. if (hexstr2bin(pos, p->psk, PMK_LEN) || pos[PMK_LEN * 2] != '\0') {
  1425. wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list PSK '%s'",
  1426. line, pos);
  1427. os_free(p);
  1428. return -1;
  1429. }
  1430. dl_list_add(&ssid->psk_list, &p->list);
  1431. return 0;
  1432. }
  1433. #ifndef NO_CONFIG_WRITE
  1434. static char * wpa_config_write_psk_list(const struct parse_data *data,
  1435. struct wpa_ssid *ssid)
  1436. {
  1437. return NULL;
  1438. }
  1439. #endif /* NO_CONFIG_WRITE */
  1440. #endif /* CONFIG_P2P */
  1441. #ifdef CONFIG_MESH
  1442. static int wpa_config_parse_mesh_basic_rates(const struct parse_data *data,
  1443. struct wpa_ssid *ssid, int line,
  1444. const char *value)
  1445. {
  1446. int *rates = wpa_config_parse_int_array(value);
  1447. if (rates == NULL) {
  1448. wpa_printf(MSG_ERROR, "Line %d: Invalid mesh_basic_rates '%s'",
  1449. line, value);
  1450. return -1;
  1451. }
  1452. if (rates[0] == 0) {
  1453. os_free(rates);
  1454. rates = NULL;
  1455. }
  1456. os_free(ssid->mesh_basic_rates);
  1457. ssid->mesh_basic_rates = rates;
  1458. return 0;
  1459. }
  1460. #ifndef NO_CONFIG_WRITE
  1461. static char * wpa_config_write_mesh_basic_rates(const struct parse_data *data,
  1462. struct wpa_ssid *ssid)
  1463. {
  1464. return wpa_config_write_freqs(data, ssid->mesh_basic_rates);
  1465. }
  1466. #endif /* NO_CONFIG_WRITE */
  1467. #endif /* CONFIG_MESH */
  1468. /* Helper macros for network block parser */
  1469. #ifdef OFFSET
  1470. #undef OFFSET
  1471. #endif /* OFFSET */
  1472. /* OFFSET: Get offset of a variable within the wpa_ssid structure */
  1473. #define OFFSET(v) ((void *) &((struct wpa_ssid *) 0)->v)
  1474. /* STR: Define a string variable for an ASCII string; f = field name */
  1475. #ifdef NO_CONFIG_WRITE
  1476. #define _STR(f) #f, wpa_config_parse_str, OFFSET(f)
  1477. #define _STRe(f) #f, wpa_config_parse_str, OFFSET(eap.f)
  1478. #else /* NO_CONFIG_WRITE */
  1479. #define _STR(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(f)
  1480. #define _STRe(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(eap.f)
  1481. #endif /* NO_CONFIG_WRITE */
  1482. #define STR(f) _STR(f), NULL, NULL, NULL, 0
  1483. #define STRe(f) _STRe(f), NULL, NULL, NULL, 0
  1484. #define STR_KEY(f) _STR(f), NULL, NULL, NULL, 1
  1485. #define STR_KEYe(f) _STRe(f), NULL, NULL, NULL, 1
  1486. /* STR_LEN: Define a string variable with a separate variable for storing the
  1487. * data length. Unlike STR(), this can be used to store arbitrary binary data
  1488. * (i.e., even nul termination character). */
  1489. #define _STR_LEN(f) _STR(f), OFFSET(f ## _len)
  1490. #define _STR_LENe(f) _STRe(f), OFFSET(eap.f ## _len)
  1491. #define STR_LEN(f) _STR_LEN(f), NULL, NULL, 0
  1492. #define STR_LENe(f) _STR_LENe(f), NULL, NULL, 0
  1493. #define STR_LEN_KEY(f) _STR_LEN(f), NULL, NULL, 1
  1494. /* STR_RANGE: Like STR_LEN(), but with minimum and maximum allowed length
  1495. * explicitly specified. */
  1496. #define _STR_RANGE(f, min, max) _STR_LEN(f), (void *) (min), (void *) (max)
  1497. #define STR_RANGE(f, min, max) _STR_RANGE(f, min, max), 0
  1498. #define STR_RANGE_KEY(f, min, max) _STR_RANGE(f, min, max), 1
  1499. #ifdef NO_CONFIG_WRITE
  1500. #define _INT(f) #f, wpa_config_parse_int, OFFSET(f), (void *) 0
  1501. #define _INTe(f) #f, wpa_config_parse_int, OFFSET(eap.f), (void *) 0
  1502. #else /* NO_CONFIG_WRITE */
  1503. #define _INT(f) #f, wpa_config_parse_int, wpa_config_write_int, \
  1504. OFFSET(f), (void *) 0
  1505. #define _INTe(f) #f, wpa_config_parse_int, wpa_config_write_int, \
  1506. OFFSET(eap.f), (void *) 0
  1507. #endif /* NO_CONFIG_WRITE */
  1508. /* INT: Define an integer variable */
  1509. #define INT(f) _INT(f), NULL, NULL, 0
  1510. #define INTe(f) _INTe(f), NULL, NULL, 0
  1511. /* INT_RANGE: Define an integer variable with allowed value range */
  1512. #define INT_RANGE(f, min, max) _INT(f), (void *) (min), (void *) (max), 0
  1513. /* FUNC: Define a configuration variable that uses a custom function for
  1514. * parsing and writing the value. */
  1515. #ifdef NO_CONFIG_WRITE
  1516. #define _FUNC(f) #f, wpa_config_parse_ ## f, NULL, NULL, NULL, NULL
  1517. #else /* NO_CONFIG_WRITE */
  1518. #define _FUNC(f) #f, wpa_config_parse_ ## f, wpa_config_write_ ## f, \
  1519. NULL, NULL, NULL, NULL
  1520. #endif /* NO_CONFIG_WRITE */
  1521. #define FUNC(f) _FUNC(f), 0
  1522. #define FUNC_KEY(f) _FUNC(f), 1
  1523. /*
  1524. * Table of network configuration variables. This table is used to parse each
  1525. * network configuration variable, e.g., each line in wpa_supplicant.conf file
  1526. * that is inside a network block.
  1527. *
  1528. * This table is generated using the helper macros defined above and with
  1529. * generous help from the C pre-processor. The field name is stored as a string
  1530. * into .name and for STR and INT types, the offset of the target buffer within
  1531. * struct wpa_ssid is stored in .param1. .param2 (if not NULL) is similar
  1532. * offset to the field containing the length of the configuration variable.
  1533. * .param3 and .param4 can be used to mark the allowed range (length for STR
  1534. * and value for INT).
  1535. *
  1536. * For each configuration line in wpa_supplicant.conf, the parser goes through
  1537. * this table and select the entry that matches with the field name. The parser
  1538. * function (.parser) is then called to parse the actual value of the field.
  1539. *
  1540. * This kind of mechanism makes it easy to add new configuration parameters,
  1541. * since only one line needs to be added into this table and into the
  1542. * struct wpa_ssid definition if the new variable is either a string or
  1543. * integer. More complex types will need to use their own parser and writer
  1544. * functions.
  1545. */
  1546. static const struct parse_data ssid_fields[] = {
  1547. { STR_RANGE(ssid, 0, SSID_MAX_LEN) },
  1548. { INT_RANGE(scan_ssid, 0, 1) },
  1549. { FUNC(bssid) },
  1550. { FUNC(bssid_blacklist) },
  1551. { FUNC(bssid_whitelist) },
  1552. { FUNC_KEY(psk) },
  1553. { INT(mem_only_psk) },
  1554. { FUNC(proto) },
  1555. { FUNC(key_mgmt) },
  1556. { INT(bg_scan_period) },
  1557. { FUNC(pairwise) },
  1558. { FUNC(group) },
  1559. { FUNC(auth_alg) },
  1560. { FUNC(scan_freq) },
  1561. { FUNC(freq_list) },
  1562. { INT_RANGE(max_oper_chwidth, VHT_CHANWIDTH_USE_HT,
  1563. VHT_CHANWIDTH_80P80MHZ) },
  1564. #ifdef IEEE8021X_EAPOL
  1565. { FUNC(eap) },
  1566. { STR_LENe(identity) },
  1567. { STR_LENe(anonymous_identity) },
  1568. { FUNC_KEY(password) },
  1569. { STRe(ca_cert) },
  1570. { STRe(ca_path) },
  1571. { STRe(client_cert) },
  1572. { STRe(private_key) },
  1573. { STR_KEYe(private_key_passwd) },
  1574. { STRe(dh_file) },
  1575. { STRe(subject_match) },
  1576. { STRe(altsubject_match) },
  1577. { STRe(domain_suffix_match) },
  1578. { STRe(domain_match) },
  1579. { STRe(ca_cert2) },
  1580. { STRe(ca_path2) },
  1581. { STRe(client_cert2) },
  1582. { STRe(private_key2) },
  1583. { STR_KEYe(private_key2_passwd) },
  1584. { STRe(dh_file2) },
  1585. { STRe(subject_match2) },
  1586. { STRe(altsubject_match2) },
  1587. { STRe(domain_suffix_match2) },
  1588. { STRe(domain_match2) },
  1589. { STRe(phase1) },
  1590. { STRe(phase2) },
  1591. { STRe(pcsc) },
  1592. { STR_KEYe(pin) },
  1593. { STRe(engine_id) },
  1594. { STRe(key_id) },
  1595. { STRe(cert_id) },
  1596. { STRe(ca_cert_id) },
  1597. { STR_KEYe(pin2) },
  1598. { STRe(engine2_id) },
  1599. { STRe(key2_id) },
  1600. { STRe(cert2_id) },
  1601. { STRe(ca_cert2_id) },
  1602. { INTe(engine) },
  1603. { INTe(engine2) },
  1604. { INT(eapol_flags) },
  1605. { INTe(sim_num) },
  1606. { STRe(openssl_ciphers) },
  1607. { INTe(erp) },
  1608. #endif /* IEEE8021X_EAPOL */
  1609. { FUNC_KEY(wep_key0) },
  1610. { FUNC_KEY(wep_key1) },
  1611. { FUNC_KEY(wep_key2) },
  1612. { FUNC_KEY(wep_key3) },
  1613. { INT(wep_tx_keyidx) },
  1614. { INT(priority) },
  1615. #ifdef IEEE8021X_EAPOL
  1616. { INT(eap_workaround) },
  1617. { STRe(pac_file) },
  1618. { INTe(fragment_size) },
  1619. { INTe(ocsp) },
  1620. #endif /* IEEE8021X_EAPOL */
  1621. #ifdef CONFIG_MESH
  1622. { INT_RANGE(mode, 0, 5) },
  1623. { INT_RANGE(no_auto_peer, 0, 1) },
  1624. #else /* CONFIG_MESH */
  1625. { INT_RANGE(mode, 0, 4) },
  1626. #endif /* CONFIG_MESH */
  1627. { INT_RANGE(proactive_key_caching, 0, 1) },
  1628. { INT_RANGE(disabled, 0, 2) },
  1629. { STR(id_str) },
  1630. #ifdef CONFIG_IEEE80211W
  1631. { INT_RANGE(ieee80211w, 0, 2) },
  1632. #endif /* CONFIG_IEEE80211W */
  1633. { INT_RANGE(peerkey, 0, 1) },
  1634. { INT_RANGE(mixed_cell, 0, 1) },
  1635. { INT_RANGE(frequency, 0, 65000) },
  1636. { INT_RANGE(fixed_freq, 0, 1) },
  1637. #ifdef CONFIG_MESH
  1638. { FUNC(mesh_basic_rates) },
  1639. { INT(dot11MeshMaxRetries) },
  1640. { INT(dot11MeshRetryTimeout) },
  1641. { INT(dot11MeshConfirmTimeout) },
  1642. { INT(dot11MeshHoldingTimeout) },
  1643. #endif /* CONFIG_MESH */
  1644. { INT(wpa_ptk_rekey) },
  1645. { STR(bgscan) },
  1646. { INT_RANGE(ignore_broadcast_ssid, 0, 2) },
  1647. #ifdef CONFIG_P2P
  1648. { FUNC(go_p2p_dev_addr) },
  1649. { FUNC(p2p_client_list) },
  1650. { FUNC(psk_list) },
  1651. #endif /* CONFIG_P2P */
  1652. #ifdef CONFIG_HT_OVERRIDES
  1653. { INT_RANGE(disable_ht, 0, 1) },
  1654. { INT_RANGE(disable_ht40, -1, 1) },
  1655. { INT_RANGE(disable_sgi, 0, 1) },
  1656. { INT_RANGE(disable_ldpc, 0, 1) },
  1657. { INT_RANGE(ht40_intolerant, 0, 1) },
  1658. { INT_RANGE(disable_max_amsdu, -1, 1) },
  1659. { INT_RANGE(ampdu_factor, -1, 3) },
  1660. { INT_RANGE(ampdu_density, -1, 7) },
  1661. { STR(ht_mcs) },
  1662. #endif /* CONFIG_HT_OVERRIDES */
  1663. #ifdef CONFIG_VHT_OVERRIDES
  1664. { INT_RANGE(disable_vht, 0, 1) },
  1665. { INT(vht_capa) },
  1666. { INT(vht_capa_mask) },
  1667. { INT_RANGE(vht_rx_mcs_nss_1, -1, 3) },
  1668. { INT_RANGE(vht_rx_mcs_nss_2, -1, 3) },
  1669. { INT_RANGE(vht_rx_mcs_nss_3, -1, 3) },
  1670. { INT_RANGE(vht_rx_mcs_nss_4, -1, 3) },
  1671. { INT_RANGE(vht_rx_mcs_nss_5, -1, 3) },
  1672. { INT_RANGE(vht_rx_mcs_nss_6, -1, 3) },
  1673. { INT_RANGE(vht_rx_mcs_nss_7, -1, 3) },
  1674. { INT_RANGE(vht_rx_mcs_nss_8, -1, 3) },
  1675. { INT_RANGE(vht_tx_mcs_nss_1, -1, 3) },
  1676. { INT_RANGE(vht_tx_mcs_nss_2, -1, 3) },
  1677. { INT_RANGE(vht_tx_mcs_nss_3, -1, 3) },
  1678. { INT_RANGE(vht_tx_mcs_nss_4, -1, 3) },
  1679. { INT_RANGE(vht_tx_mcs_nss_5, -1, 3) },
  1680. { INT_RANGE(vht_tx_mcs_nss_6, -1, 3) },
  1681. { INT_RANGE(vht_tx_mcs_nss_7, -1, 3) },
  1682. { INT_RANGE(vht_tx_mcs_nss_8, -1, 3) },
  1683. #endif /* CONFIG_VHT_OVERRIDES */
  1684. { INT(ap_max_inactivity) },
  1685. { INT(dtim_period) },
  1686. { INT(beacon_int) },
  1687. #ifdef CONFIG_MACSEC
  1688. { INT_RANGE(macsec_policy, 0, 1) },
  1689. #endif /* CONFIG_MACSEC */
  1690. #ifdef CONFIG_HS20
  1691. { INT(update_identifier) },
  1692. #endif /* CONFIG_HS20 */
  1693. { INT_RANGE(mac_addr, 0, 2) },
  1694. };
  1695. #undef OFFSET
  1696. #undef _STR
  1697. #undef STR
  1698. #undef STR_KEY
  1699. #undef _STR_LEN
  1700. #undef STR_LEN
  1701. #undef STR_LEN_KEY
  1702. #undef _STR_RANGE
  1703. #undef STR_RANGE
  1704. #undef STR_RANGE_KEY
  1705. #undef _INT
  1706. #undef INT
  1707. #undef INT_RANGE
  1708. #undef _FUNC
  1709. #undef FUNC
  1710. #undef FUNC_KEY
  1711. #define NUM_SSID_FIELDS ARRAY_SIZE(ssid_fields)
  1712. /**
  1713. * wpa_config_add_prio_network - Add a network to priority lists
  1714. * @config: Configuration data from wpa_config_read()
  1715. * @ssid: Pointer to the network configuration to be added to the list
  1716. * Returns: 0 on success, -1 on failure
  1717. *
  1718. * This function is used to add a network block to the priority list of
  1719. * networks. This must be called for each network when reading in the full
  1720. * configuration. In addition, this can be used indirectly when updating
  1721. * priorities by calling wpa_config_update_prio_list().
  1722. */
  1723. int wpa_config_add_prio_network(struct wpa_config *config,
  1724. struct wpa_ssid *ssid)
  1725. {
  1726. int prio;
  1727. struct wpa_ssid *prev, **nlist;
  1728. /*
  1729. * Add to an existing priority list if one is available for the
  1730. * configured priority level for this network.
  1731. */
  1732. for (prio = 0; prio < config->num_prio; prio++) {
  1733. prev = config->pssid[prio];
  1734. if (prev->priority == ssid->priority) {
  1735. while (prev->pnext)
  1736. prev = prev->pnext;
  1737. prev->pnext = ssid;
  1738. return 0;
  1739. }
  1740. }
  1741. /* First network for this priority - add a new priority list */
  1742. nlist = os_realloc_array(config->pssid, config->num_prio + 1,
  1743. sizeof(struct wpa_ssid *));
  1744. if (nlist == NULL)
  1745. return -1;
  1746. for (prio = 0; prio < config->num_prio; prio++) {
  1747. if (nlist[prio]->priority < ssid->priority) {
  1748. os_memmove(&nlist[prio + 1], &nlist[prio],
  1749. (config->num_prio - prio) *
  1750. sizeof(struct wpa_ssid *));
  1751. break;
  1752. }
  1753. }
  1754. nlist[prio] = ssid;
  1755. config->num_prio++;
  1756. config->pssid = nlist;
  1757. return 0;
  1758. }
  1759. /**
  1760. * wpa_config_update_prio_list - Update network priority list
  1761. * @config: Configuration data from wpa_config_read()
  1762. * Returns: 0 on success, -1 on failure
  1763. *
  1764. * This function is called to update the priority list of networks in the
  1765. * configuration when a network is being added or removed. This is also called
  1766. * if a priority for a network is changed.
  1767. */
  1768. int wpa_config_update_prio_list(struct wpa_config *config)
  1769. {
  1770. struct wpa_ssid *ssid;
  1771. int ret = 0;
  1772. os_free(config->pssid);
  1773. config->pssid = NULL;
  1774. config->num_prio = 0;
  1775. ssid = config->ssid;
  1776. while (ssid) {
  1777. ssid->pnext = NULL;
  1778. if (wpa_config_add_prio_network(config, ssid) < 0)
  1779. ret = -1;
  1780. ssid = ssid->next;
  1781. }
  1782. return ret;
  1783. }
  1784. #ifdef IEEE8021X_EAPOL
  1785. static void eap_peer_config_free(struct eap_peer_config *eap)
  1786. {
  1787. os_free(eap->eap_methods);
  1788. bin_clear_free(eap->identity, eap->identity_len);
  1789. os_free(eap->anonymous_identity);
  1790. bin_clear_free(eap->password, eap->password_len);
  1791. os_free(eap->ca_cert);
  1792. os_free(eap->ca_path);
  1793. os_free(eap->client_cert);
  1794. os_free(eap->private_key);
  1795. str_clear_free(eap->private_key_passwd);
  1796. os_free(eap->dh_file);
  1797. os_free(eap->subject_match);
  1798. os_free(eap->altsubject_match);
  1799. os_free(eap->domain_suffix_match);
  1800. os_free(eap->domain_match);
  1801. os_free(eap->ca_cert2);
  1802. os_free(eap->ca_path2);
  1803. os_free(eap->client_cert2);
  1804. os_free(eap->private_key2);
  1805. str_clear_free(eap->private_key2_passwd);
  1806. os_free(eap->dh_file2);
  1807. os_free(eap->subject_match2);
  1808. os_free(eap->altsubject_match2);
  1809. os_free(eap->domain_suffix_match2);
  1810. os_free(eap->domain_match2);
  1811. os_free(eap->phase1);
  1812. os_free(eap->phase2);
  1813. os_free(eap->pcsc);
  1814. str_clear_free(eap->pin);
  1815. os_free(eap->engine_id);
  1816. os_free(eap->key_id);
  1817. os_free(eap->cert_id);
  1818. os_free(eap->ca_cert_id);
  1819. os_free(eap->key2_id);
  1820. os_free(eap->cert2_id);
  1821. os_free(eap->ca_cert2_id);
  1822. str_clear_free(eap->pin2);
  1823. os_free(eap->engine2_id);
  1824. os_free(eap->otp);
  1825. os_free(eap->pending_req_otp);
  1826. os_free(eap->pac_file);
  1827. bin_clear_free(eap->new_password, eap->new_password_len);
  1828. str_clear_free(eap->external_sim_resp);
  1829. os_free(eap->openssl_ciphers);
  1830. }
  1831. #endif /* IEEE8021X_EAPOL */
  1832. /**
  1833. * wpa_config_free_ssid - Free network/ssid configuration data
  1834. * @ssid: Configuration data for the network
  1835. *
  1836. * This function frees all resources allocated for the network configuration
  1837. * data.
  1838. */
  1839. void wpa_config_free_ssid(struct wpa_ssid *ssid)
  1840. {
  1841. struct psk_list_entry *psk;
  1842. os_free(ssid->ssid);
  1843. str_clear_free(ssid->passphrase);
  1844. os_free(ssid->ext_psk);
  1845. #ifdef IEEE8021X_EAPOL
  1846. eap_peer_config_free(&ssid->eap);
  1847. #endif /* IEEE8021X_EAPOL */
  1848. os_free(ssid->id_str);
  1849. os_free(ssid->scan_freq);
  1850. os_free(ssid->freq_list);
  1851. os_free(ssid->bgscan);
  1852. os_free(ssid->p2p_client_list);
  1853. os_free(ssid->bssid_blacklist);
  1854. os_free(ssid->bssid_whitelist);
  1855. #ifdef CONFIG_HT_OVERRIDES
  1856. os_free(ssid->ht_mcs);
  1857. #endif /* CONFIG_HT_OVERRIDES */
  1858. #ifdef CONFIG_MESH
  1859. os_free(ssid->mesh_basic_rates);
  1860. #endif /* CONFIG_MESH */
  1861. while ((psk = dl_list_first(&ssid->psk_list, struct psk_list_entry,
  1862. list))) {
  1863. dl_list_del(&psk->list);
  1864. bin_clear_free(psk, sizeof(*psk));
  1865. }
  1866. bin_clear_free(ssid, sizeof(*ssid));
  1867. }
  1868. void wpa_config_free_cred(struct wpa_cred *cred)
  1869. {
  1870. size_t i;
  1871. os_free(cred->realm);
  1872. str_clear_free(cred->username);
  1873. str_clear_free(cred->password);
  1874. os_free(cred->ca_cert);
  1875. os_free(cred->client_cert);
  1876. os_free(cred->private_key);
  1877. str_clear_free(cred->private_key_passwd);
  1878. os_free(cred->imsi);
  1879. str_clear_free(cred->milenage);
  1880. for (i = 0; i < cred->num_domain; i++)
  1881. os_free(cred->domain[i]);
  1882. os_free(cred->domain);
  1883. os_free(cred->domain_suffix_match);
  1884. os_free(cred->eap_method);
  1885. os_free(cred->phase1);
  1886. os_free(cred->phase2);
  1887. os_free(cred->excluded_ssid);
  1888. os_free(cred->roaming_partner);
  1889. os_free(cred->provisioning_sp);
  1890. for (i = 0; i < cred->num_req_conn_capab; i++)
  1891. os_free(cred->req_conn_capab_port[i]);
  1892. os_free(cred->req_conn_capab_port);
  1893. os_free(cred->req_conn_capab_proto);
  1894. os_free(cred);
  1895. }
  1896. void wpa_config_flush_blobs(struct wpa_config *config)
  1897. {
  1898. #ifndef CONFIG_NO_CONFIG_BLOBS
  1899. struct wpa_config_blob *blob, *prev;
  1900. blob = config->blobs;
  1901. config->blobs = NULL;
  1902. while (blob) {
  1903. prev = blob;
  1904. blob = blob->next;
  1905. wpa_config_free_blob(prev);
  1906. }
  1907. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1908. }
  1909. /**
  1910. * wpa_config_free - Free configuration data
  1911. * @config: Configuration data from wpa_config_read()
  1912. *
  1913. * This function frees all resources allocated for the configuration data by
  1914. * wpa_config_read().
  1915. */
  1916. void wpa_config_free(struct wpa_config *config)
  1917. {
  1918. struct wpa_ssid *ssid, *prev = NULL;
  1919. struct wpa_cred *cred, *cprev;
  1920. int i;
  1921. ssid = config->ssid;
  1922. while (ssid) {
  1923. prev = ssid;
  1924. ssid = ssid->next;
  1925. wpa_config_free_ssid(prev);
  1926. }
  1927. cred = config->cred;
  1928. while (cred) {
  1929. cprev = cred;
  1930. cred = cred->next;
  1931. wpa_config_free_cred(cprev);
  1932. }
  1933. wpa_config_flush_blobs(config);
  1934. wpabuf_free(config->wps_vendor_ext_m1);
  1935. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++)
  1936. wpabuf_free(config->wps_vendor_ext[i]);
  1937. os_free(config->ctrl_interface);
  1938. os_free(config->ctrl_interface_group);
  1939. os_free(config->opensc_engine_path);
  1940. os_free(config->pkcs11_engine_path);
  1941. os_free(config->pkcs11_module_path);
  1942. os_free(config->openssl_ciphers);
  1943. os_free(config->pcsc_reader);
  1944. str_clear_free(config->pcsc_pin);
  1945. os_free(config->driver_param);
  1946. os_free(config->device_name);
  1947. os_free(config->manufacturer);
  1948. os_free(config->model_name);
  1949. os_free(config->model_number);
  1950. os_free(config->serial_number);
  1951. os_free(config->config_methods);
  1952. os_free(config->p2p_ssid_postfix);
  1953. os_free(config->pssid);
  1954. os_free(config->p2p_pref_chan);
  1955. os_free(config->p2p_no_go_freq.range);
  1956. os_free(config->autoscan);
  1957. os_free(config->freq_list);
  1958. wpabuf_free(config->wps_nfc_dh_pubkey);
  1959. wpabuf_free(config->wps_nfc_dh_privkey);
  1960. wpabuf_free(config->wps_nfc_dev_pw);
  1961. os_free(config->ext_password_backend);
  1962. os_free(config->sae_groups);
  1963. wpabuf_free(config->ap_vendor_elements);
  1964. os_free(config->osu_dir);
  1965. os_free(config->bgscan);
  1966. os_free(config->wowlan_triggers);
  1967. os_free(config->fst_group_id);
  1968. os_free(config);
  1969. }
  1970. /**
  1971. * wpa_config_foreach_network - Iterate over each configured network
  1972. * @config: Configuration data from wpa_config_read()
  1973. * @func: Callback function to process each network
  1974. * @arg: Opaque argument to pass to callback function
  1975. *
  1976. * Iterate over the set of configured networks calling the specified
  1977. * function for each item. We guard against callbacks removing the
  1978. * supplied network.
  1979. */
  1980. void wpa_config_foreach_network(struct wpa_config *config,
  1981. void (*func)(void *, struct wpa_ssid *),
  1982. void *arg)
  1983. {
  1984. struct wpa_ssid *ssid, *next;
  1985. ssid = config->ssid;
  1986. while (ssid) {
  1987. next = ssid->next;
  1988. func(arg, ssid);
  1989. ssid = next;
  1990. }
  1991. }
  1992. /**
  1993. * wpa_config_get_network - Get configured network based on id
  1994. * @config: Configuration data from wpa_config_read()
  1995. * @id: Unique network id to search for
  1996. * Returns: Network configuration or %NULL if not found
  1997. */
  1998. struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
  1999. {
  2000. struct wpa_ssid *ssid;
  2001. ssid = config->ssid;
  2002. while (ssid) {
  2003. if (id == ssid->id)
  2004. break;
  2005. ssid = ssid->next;
  2006. }
  2007. return ssid;
  2008. }
  2009. /**
  2010. * wpa_config_add_network - Add a new network with empty configuration
  2011. * @config: Configuration data from wpa_config_read()
  2012. * Returns: The new network configuration or %NULL if operation failed
  2013. */
  2014. struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
  2015. {
  2016. int id;
  2017. struct wpa_ssid *ssid, *last = NULL;
  2018. id = -1;
  2019. ssid = config->ssid;
  2020. while (ssid) {
  2021. if (ssid->id > id)
  2022. id = ssid->id;
  2023. last = ssid;
  2024. ssid = ssid->next;
  2025. }
  2026. id++;
  2027. ssid = os_zalloc(sizeof(*ssid));
  2028. if (ssid == NULL)
  2029. return NULL;
  2030. ssid->id = id;
  2031. dl_list_init(&ssid->psk_list);
  2032. if (last)
  2033. last->next = ssid;
  2034. else
  2035. config->ssid = ssid;
  2036. wpa_config_update_prio_list(config);
  2037. return ssid;
  2038. }
  2039. /**
  2040. * wpa_config_remove_network - Remove a configured network based on id
  2041. * @config: Configuration data from wpa_config_read()
  2042. * @id: Unique network id to search for
  2043. * Returns: 0 on success, or -1 if the network was not found
  2044. */
  2045. int wpa_config_remove_network(struct wpa_config *config, int id)
  2046. {
  2047. struct wpa_ssid *ssid, *prev = NULL;
  2048. ssid = config->ssid;
  2049. while (ssid) {
  2050. if (id == ssid->id)
  2051. break;
  2052. prev = ssid;
  2053. ssid = ssid->next;
  2054. }
  2055. if (ssid == NULL)
  2056. return -1;
  2057. if (prev)
  2058. prev->next = ssid->next;
  2059. else
  2060. config->ssid = ssid->next;
  2061. wpa_config_update_prio_list(config);
  2062. wpa_config_free_ssid(ssid);
  2063. return 0;
  2064. }
  2065. /**
  2066. * wpa_config_set_network_defaults - Set network default values
  2067. * @ssid: Pointer to network configuration data
  2068. */
  2069. void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
  2070. {
  2071. ssid->proto = DEFAULT_PROTO;
  2072. ssid->pairwise_cipher = DEFAULT_PAIRWISE;
  2073. ssid->group_cipher = DEFAULT_GROUP;
  2074. ssid->key_mgmt = DEFAULT_KEY_MGMT;
  2075. ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
  2076. #ifdef IEEE8021X_EAPOL
  2077. ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
  2078. ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
  2079. ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
  2080. ssid->eap.sim_num = DEFAULT_USER_SELECTED_SIM;
  2081. #endif /* IEEE8021X_EAPOL */
  2082. #ifdef CONFIG_MESH
  2083. ssid->dot11MeshMaxRetries = DEFAULT_MESH_MAX_RETRIES;
  2084. ssid->dot11MeshRetryTimeout = DEFAULT_MESH_RETRY_TIMEOUT;
  2085. ssid->dot11MeshConfirmTimeout = DEFAULT_MESH_CONFIRM_TIMEOUT;
  2086. ssid->dot11MeshHoldingTimeout = DEFAULT_MESH_HOLDING_TIMEOUT;
  2087. #endif /* CONFIG_MESH */
  2088. #ifdef CONFIG_HT_OVERRIDES
  2089. ssid->disable_ht = DEFAULT_DISABLE_HT;
  2090. ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
  2091. ssid->disable_sgi = DEFAULT_DISABLE_SGI;
  2092. ssid->disable_ldpc = DEFAULT_DISABLE_LDPC;
  2093. ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
  2094. ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
  2095. ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
  2096. #endif /* CONFIG_HT_OVERRIDES */
  2097. #ifdef CONFIG_VHT_OVERRIDES
  2098. ssid->vht_rx_mcs_nss_1 = -1;
  2099. ssid->vht_rx_mcs_nss_2 = -1;
  2100. ssid->vht_rx_mcs_nss_3 = -1;
  2101. ssid->vht_rx_mcs_nss_4 = -1;
  2102. ssid->vht_rx_mcs_nss_5 = -1;
  2103. ssid->vht_rx_mcs_nss_6 = -1;
  2104. ssid->vht_rx_mcs_nss_7 = -1;
  2105. ssid->vht_rx_mcs_nss_8 = -1;
  2106. ssid->vht_tx_mcs_nss_1 = -1;
  2107. ssid->vht_tx_mcs_nss_2 = -1;
  2108. ssid->vht_tx_mcs_nss_3 = -1;
  2109. ssid->vht_tx_mcs_nss_4 = -1;
  2110. ssid->vht_tx_mcs_nss_5 = -1;
  2111. ssid->vht_tx_mcs_nss_6 = -1;
  2112. ssid->vht_tx_mcs_nss_7 = -1;
  2113. ssid->vht_tx_mcs_nss_8 = -1;
  2114. #endif /* CONFIG_VHT_OVERRIDES */
  2115. ssid->proactive_key_caching = -1;
  2116. #ifdef CONFIG_IEEE80211W
  2117. ssid->ieee80211w = MGMT_FRAME_PROTECTION_DEFAULT;
  2118. #endif /* CONFIG_IEEE80211W */
  2119. ssid->mac_addr = -1;
  2120. }
  2121. /**
  2122. * wpa_config_set - Set a variable in network configuration
  2123. * @ssid: Pointer to network configuration data
  2124. * @var: Variable name, e.g., "ssid"
  2125. * @value: Variable value
  2126. * @line: Line number in configuration file or 0 if not used
  2127. * Returns: 0 on success, -1 on failure
  2128. *
  2129. * This function can be used to set network configuration variables based on
  2130. * both the configuration file and management interface input. The value
  2131. * parameter must be in the same format as the text-based configuration file is
  2132. * using. For example, strings are using double quotation marks.
  2133. */
  2134. int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
  2135. int line)
  2136. {
  2137. size_t i;
  2138. int ret = 0;
  2139. if (ssid == NULL || var == NULL || value == NULL)
  2140. return -1;
  2141. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  2142. const struct parse_data *field = &ssid_fields[i];
  2143. if (os_strcmp(var, field->name) != 0)
  2144. continue;
  2145. if (field->parser(field, ssid, line, value)) {
  2146. if (line) {
  2147. wpa_printf(MSG_ERROR, "Line %d: failed to "
  2148. "parse %s '%s'.", line, var, value);
  2149. }
  2150. ret = -1;
  2151. }
  2152. break;
  2153. }
  2154. if (i == NUM_SSID_FIELDS) {
  2155. if (line) {
  2156. wpa_printf(MSG_ERROR, "Line %d: unknown network field "
  2157. "'%s'.", line, var);
  2158. }
  2159. ret = -1;
  2160. }
  2161. return ret;
  2162. }
  2163. int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
  2164. const char *value)
  2165. {
  2166. size_t len;
  2167. char *buf;
  2168. int ret;
  2169. len = os_strlen(value);
  2170. buf = os_malloc(len + 3);
  2171. if (buf == NULL)
  2172. return -1;
  2173. buf[0] = '"';
  2174. os_memcpy(buf + 1, value, len);
  2175. buf[len + 1] = '"';
  2176. buf[len + 2] = '\0';
  2177. ret = wpa_config_set(ssid, var, buf, 0);
  2178. os_free(buf);
  2179. return ret;
  2180. }
  2181. /**
  2182. * wpa_config_get_all - Get all options from network configuration
  2183. * @ssid: Pointer to network configuration data
  2184. * @get_keys: Determines if keys/passwords will be included in returned list
  2185. * (if they may be exported)
  2186. * Returns: %NULL terminated list of all set keys and their values in the form
  2187. * of [key1, val1, key2, val2, ... , NULL]
  2188. *
  2189. * This function can be used to get list of all configured network properties.
  2190. * The caller is responsible for freeing the returned list and all its
  2191. * elements.
  2192. */
  2193. char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
  2194. {
  2195. #ifdef NO_CONFIG_WRITE
  2196. return NULL;
  2197. #else /* NO_CONFIG_WRITE */
  2198. const struct parse_data *field;
  2199. char *key, *value;
  2200. size_t i;
  2201. char **props;
  2202. int fields_num;
  2203. get_keys = get_keys && ssid->export_keys;
  2204. props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
  2205. if (!props)
  2206. return NULL;
  2207. fields_num = 0;
  2208. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  2209. field = &ssid_fields[i];
  2210. if (field->key_data && !get_keys)
  2211. continue;
  2212. value = field->writer(field, ssid);
  2213. if (value == NULL)
  2214. continue;
  2215. if (os_strlen(value) == 0) {
  2216. os_free(value);
  2217. continue;
  2218. }
  2219. key = os_strdup(field->name);
  2220. if (key == NULL) {
  2221. os_free(value);
  2222. goto err;
  2223. }
  2224. props[fields_num * 2] = key;
  2225. props[fields_num * 2 + 1] = value;
  2226. fields_num++;
  2227. }
  2228. return props;
  2229. err:
  2230. value = *props;
  2231. while (value)
  2232. os_free(value++);
  2233. os_free(props);
  2234. return NULL;
  2235. #endif /* NO_CONFIG_WRITE */
  2236. }
  2237. #ifndef NO_CONFIG_WRITE
  2238. /**
  2239. * wpa_config_get - Get a variable in network configuration
  2240. * @ssid: Pointer to network configuration data
  2241. * @var: Variable name, e.g., "ssid"
  2242. * Returns: Value of the variable or %NULL on failure
  2243. *
  2244. * This function can be used to get network configuration variables. The
  2245. * returned value is a copy of the configuration variable in text format, i.e,.
  2246. * the same format that the text-based configuration file and wpa_config_set()
  2247. * are using for the value. The caller is responsible for freeing the returned
  2248. * value.
  2249. */
  2250. char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
  2251. {
  2252. size_t i;
  2253. if (ssid == NULL || var == NULL)
  2254. return NULL;
  2255. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  2256. const struct parse_data *field = &ssid_fields[i];
  2257. if (os_strcmp(var, field->name) == 0)
  2258. return field->writer(field, ssid);
  2259. }
  2260. return NULL;
  2261. }
  2262. /**
  2263. * wpa_config_get_no_key - Get a variable in network configuration (no keys)
  2264. * @ssid: Pointer to network configuration data
  2265. * @var: Variable name, e.g., "ssid"
  2266. * Returns: Value of the variable or %NULL on failure
  2267. *
  2268. * This function can be used to get network configuration variable like
  2269. * wpa_config_get(). The only difference is that this functions does not expose
  2270. * key/password material from the configuration. In case a key/password field
  2271. * is requested, the returned value is an empty string or %NULL if the variable
  2272. * is not set or "*" if the variable is set (regardless of its value). The
  2273. * returned value is a copy of the configuration variable in text format, i.e,.
  2274. * the same format that the text-based configuration file and wpa_config_set()
  2275. * are using for the value. The caller is responsible for freeing the returned
  2276. * value.
  2277. */
  2278. char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
  2279. {
  2280. size_t i;
  2281. if (ssid == NULL || var == NULL)
  2282. return NULL;
  2283. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  2284. const struct parse_data *field = &ssid_fields[i];
  2285. if (os_strcmp(var, field->name) == 0) {
  2286. char *res = field->writer(field, ssid);
  2287. if (field->key_data) {
  2288. if (res && res[0]) {
  2289. wpa_printf(MSG_DEBUG, "Do not allow "
  2290. "key_data field to be "
  2291. "exposed");
  2292. str_clear_free(res);
  2293. return os_strdup("*");
  2294. }
  2295. os_free(res);
  2296. return NULL;
  2297. }
  2298. return res;
  2299. }
  2300. }
  2301. return NULL;
  2302. }
  2303. #endif /* NO_CONFIG_WRITE */
  2304. /**
  2305. * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
  2306. * @ssid: Pointer to network configuration data
  2307. *
  2308. * This function must be called to update WPA PSK when either SSID or the
  2309. * passphrase has changed for the network configuration.
  2310. */
  2311. void wpa_config_update_psk(struct wpa_ssid *ssid)
  2312. {
  2313. #ifndef CONFIG_NO_PBKDF2
  2314. pbkdf2_sha1(ssid->passphrase, ssid->ssid, ssid->ssid_len, 4096,
  2315. ssid->psk, PMK_LEN);
  2316. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
  2317. ssid->psk, PMK_LEN);
  2318. ssid->psk_set = 1;
  2319. #endif /* CONFIG_NO_PBKDF2 */
  2320. }
  2321. static int wpa_config_set_cred_req_conn_capab(struct wpa_cred *cred,
  2322. const char *value)
  2323. {
  2324. u8 *proto;
  2325. int **port;
  2326. int *ports, *nports;
  2327. const char *pos;
  2328. unsigned int num_ports;
  2329. proto = os_realloc_array(cred->req_conn_capab_proto,
  2330. cred->num_req_conn_capab + 1, sizeof(u8));
  2331. if (proto == NULL)
  2332. return -1;
  2333. cred->req_conn_capab_proto = proto;
  2334. port = os_realloc_array(cred->req_conn_capab_port,
  2335. cred->num_req_conn_capab + 1, sizeof(int *));
  2336. if (port == NULL)
  2337. return -1;
  2338. cred->req_conn_capab_port = port;
  2339. proto[cred->num_req_conn_capab] = atoi(value);
  2340. pos = os_strchr(value, ':');
  2341. if (pos == NULL) {
  2342. port[cred->num_req_conn_capab] = NULL;
  2343. cred->num_req_conn_capab++;
  2344. return 0;
  2345. }
  2346. pos++;
  2347. ports = NULL;
  2348. num_ports = 0;
  2349. while (*pos) {
  2350. nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
  2351. if (nports == NULL) {
  2352. os_free(ports);
  2353. return -1;
  2354. }
  2355. ports = nports;
  2356. ports[num_ports++] = atoi(pos);
  2357. pos = os_strchr(pos, ',');
  2358. if (pos == NULL)
  2359. break;
  2360. pos++;
  2361. }
  2362. nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
  2363. if (nports == NULL) {
  2364. os_free(ports);
  2365. return -1;
  2366. }
  2367. ports = nports;
  2368. ports[num_ports] = -1;
  2369. port[cred->num_req_conn_capab] = ports;
  2370. cred->num_req_conn_capab++;
  2371. return 0;
  2372. }
  2373. int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
  2374. const char *value, int line)
  2375. {
  2376. char *val;
  2377. size_t len;
  2378. if (os_strcmp(var, "temporary") == 0) {
  2379. cred->temporary = atoi(value);
  2380. return 0;
  2381. }
  2382. if (os_strcmp(var, "priority") == 0) {
  2383. cred->priority = atoi(value);
  2384. return 0;
  2385. }
  2386. if (os_strcmp(var, "sp_priority") == 0) {
  2387. int prio = atoi(value);
  2388. if (prio < 0 || prio > 255)
  2389. return -1;
  2390. cred->sp_priority = prio;
  2391. return 0;
  2392. }
  2393. if (os_strcmp(var, "pcsc") == 0) {
  2394. cred->pcsc = atoi(value);
  2395. return 0;
  2396. }
  2397. if (os_strcmp(var, "eap") == 0) {
  2398. struct eap_method_type method;
  2399. method.method = eap_peer_get_type(value, &method.vendor);
  2400. if (method.vendor == EAP_VENDOR_IETF &&
  2401. method.method == EAP_TYPE_NONE) {
  2402. wpa_printf(MSG_ERROR, "Line %d: unknown EAP type '%s' "
  2403. "for a credential", line, value);
  2404. return -1;
  2405. }
  2406. os_free(cred->eap_method);
  2407. cred->eap_method = os_malloc(sizeof(*cred->eap_method));
  2408. if (cred->eap_method == NULL)
  2409. return -1;
  2410. os_memcpy(cred->eap_method, &method, sizeof(method));
  2411. return 0;
  2412. }
  2413. if (os_strcmp(var, "password") == 0 &&
  2414. os_strncmp(value, "ext:", 4) == 0) {
  2415. str_clear_free(cred->password);
  2416. cred->password = os_strdup(value);
  2417. cred->ext_password = 1;
  2418. return 0;
  2419. }
  2420. if (os_strcmp(var, "update_identifier") == 0) {
  2421. cred->update_identifier = atoi(value);
  2422. return 0;
  2423. }
  2424. if (os_strcmp(var, "min_dl_bandwidth_home") == 0) {
  2425. cred->min_dl_bandwidth_home = atoi(value);
  2426. return 0;
  2427. }
  2428. if (os_strcmp(var, "min_ul_bandwidth_home") == 0) {
  2429. cred->min_ul_bandwidth_home = atoi(value);
  2430. return 0;
  2431. }
  2432. if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0) {
  2433. cred->min_dl_bandwidth_roaming = atoi(value);
  2434. return 0;
  2435. }
  2436. if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0) {
  2437. cred->min_ul_bandwidth_roaming = atoi(value);
  2438. return 0;
  2439. }
  2440. if (os_strcmp(var, "max_bss_load") == 0) {
  2441. cred->max_bss_load = atoi(value);
  2442. return 0;
  2443. }
  2444. if (os_strcmp(var, "req_conn_capab") == 0)
  2445. return wpa_config_set_cred_req_conn_capab(cred, value);
  2446. if (os_strcmp(var, "ocsp") == 0) {
  2447. cred->ocsp = atoi(value);
  2448. return 0;
  2449. }
  2450. if (os_strcmp(var, "sim_num") == 0) {
  2451. cred->sim_num = atoi(value);
  2452. return 0;
  2453. }
  2454. val = wpa_config_parse_string(value, &len);
  2455. if (val == NULL) {
  2456. wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
  2457. "value '%s'.", line, var, value);
  2458. return -1;
  2459. }
  2460. if (os_strcmp(var, "realm") == 0) {
  2461. os_free(cred->realm);
  2462. cred->realm = val;
  2463. return 0;
  2464. }
  2465. if (os_strcmp(var, "username") == 0) {
  2466. str_clear_free(cred->username);
  2467. cred->username = val;
  2468. return 0;
  2469. }
  2470. if (os_strcmp(var, "password") == 0) {
  2471. str_clear_free(cred->password);
  2472. cred->password = val;
  2473. cred->ext_password = 0;
  2474. return 0;
  2475. }
  2476. if (os_strcmp(var, "ca_cert") == 0) {
  2477. os_free(cred->ca_cert);
  2478. cred->ca_cert = val;
  2479. return 0;
  2480. }
  2481. if (os_strcmp(var, "client_cert") == 0) {
  2482. os_free(cred->client_cert);
  2483. cred->client_cert = val;
  2484. return 0;
  2485. }
  2486. if (os_strcmp(var, "private_key") == 0) {
  2487. os_free(cred->private_key);
  2488. cred->private_key = val;
  2489. return 0;
  2490. }
  2491. if (os_strcmp(var, "private_key_passwd") == 0) {
  2492. str_clear_free(cred->private_key_passwd);
  2493. cred->private_key_passwd = val;
  2494. return 0;
  2495. }
  2496. if (os_strcmp(var, "imsi") == 0) {
  2497. os_free(cred->imsi);
  2498. cred->imsi = val;
  2499. return 0;
  2500. }
  2501. if (os_strcmp(var, "milenage") == 0) {
  2502. str_clear_free(cred->milenage);
  2503. cred->milenage = val;
  2504. return 0;
  2505. }
  2506. if (os_strcmp(var, "domain_suffix_match") == 0) {
  2507. os_free(cred->domain_suffix_match);
  2508. cred->domain_suffix_match = val;
  2509. return 0;
  2510. }
  2511. if (os_strcmp(var, "domain") == 0) {
  2512. char **new_domain;
  2513. new_domain = os_realloc_array(cred->domain,
  2514. cred->num_domain + 1,
  2515. sizeof(char *));
  2516. if (new_domain == NULL) {
  2517. os_free(val);
  2518. return -1;
  2519. }
  2520. new_domain[cred->num_domain++] = val;
  2521. cred->domain = new_domain;
  2522. return 0;
  2523. }
  2524. if (os_strcmp(var, "phase1") == 0) {
  2525. os_free(cred->phase1);
  2526. cred->phase1 = val;
  2527. return 0;
  2528. }
  2529. if (os_strcmp(var, "phase2") == 0) {
  2530. os_free(cred->phase2);
  2531. cred->phase2 = val;
  2532. return 0;
  2533. }
  2534. if (os_strcmp(var, "roaming_consortium") == 0) {
  2535. if (len < 3 || len > sizeof(cred->roaming_consortium)) {
  2536. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2537. "roaming_consortium length %d (3..15 "
  2538. "expected)", line, (int) len);
  2539. os_free(val);
  2540. return -1;
  2541. }
  2542. os_memcpy(cred->roaming_consortium, val, len);
  2543. cred->roaming_consortium_len = len;
  2544. os_free(val);
  2545. return 0;
  2546. }
  2547. if (os_strcmp(var, "required_roaming_consortium") == 0) {
  2548. if (len < 3 || len > sizeof(cred->required_roaming_consortium))
  2549. {
  2550. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2551. "required_roaming_consortium length %d "
  2552. "(3..15 expected)", line, (int) len);
  2553. os_free(val);
  2554. return -1;
  2555. }
  2556. os_memcpy(cred->required_roaming_consortium, val, len);
  2557. cred->required_roaming_consortium_len = len;
  2558. os_free(val);
  2559. return 0;
  2560. }
  2561. if (os_strcmp(var, "excluded_ssid") == 0) {
  2562. struct excluded_ssid *e;
  2563. if (len > SSID_MAX_LEN) {
  2564. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2565. "excluded_ssid length %d", line, (int) len);
  2566. os_free(val);
  2567. return -1;
  2568. }
  2569. e = os_realloc_array(cred->excluded_ssid,
  2570. cred->num_excluded_ssid + 1,
  2571. sizeof(struct excluded_ssid));
  2572. if (e == NULL) {
  2573. os_free(val);
  2574. return -1;
  2575. }
  2576. cred->excluded_ssid = e;
  2577. e = &cred->excluded_ssid[cred->num_excluded_ssid++];
  2578. os_memcpy(e->ssid, val, len);
  2579. e->ssid_len = len;
  2580. os_free(val);
  2581. return 0;
  2582. }
  2583. if (os_strcmp(var, "roaming_partner") == 0) {
  2584. struct roaming_partner *p;
  2585. char *pos;
  2586. p = os_realloc_array(cred->roaming_partner,
  2587. cred->num_roaming_partner + 1,
  2588. sizeof(struct roaming_partner));
  2589. if (p == NULL) {
  2590. os_free(val);
  2591. return -1;
  2592. }
  2593. cred->roaming_partner = p;
  2594. p = &cred->roaming_partner[cred->num_roaming_partner];
  2595. pos = os_strchr(val, ',');
  2596. if (pos == NULL) {
  2597. os_free(val);
  2598. return -1;
  2599. }
  2600. *pos++ = '\0';
  2601. if (pos - val - 1 >= (int) sizeof(p->fqdn)) {
  2602. os_free(val);
  2603. return -1;
  2604. }
  2605. os_memcpy(p->fqdn, val, pos - val);
  2606. p->exact_match = atoi(pos);
  2607. pos = os_strchr(pos, ',');
  2608. if (pos == NULL) {
  2609. os_free(val);
  2610. return -1;
  2611. }
  2612. *pos++ = '\0';
  2613. p->priority = atoi(pos);
  2614. pos = os_strchr(pos, ',');
  2615. if (pos == NULL) {
  2616. os_free(val);
  2617. return -1;
  2618. }
  2619. *pos++ = '\0';
  2620. if (os_strlen(pos) >= sizeof(p->country)) {
  2621. os_free(val);
  2622. return -1;
  2623. }
  2624. os_memcpy(p->country, pos, os_strlen(pos) + 1);
  2625. cred->num_roaming_partner++;
  2626. os_free(val);
  2627. return 0;
  2628. }
  2629. if (os_strcmp(var, "provisioning_sp") == 0) {
  2630. os_free(cred->provisioning_sp);
  2631. cred->provisioning_sp = val;
  2632. return 0;
  2633. }
  2634. if (line) {
  2635. wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
  2636. line, var);
  2637. }
  2638. os_free(val);
  2639. return -1;
  2640. }
  2641. static char * alloc_int_str(int val)
  2642. {
  2643. const unsigned int bufsize = 20;
  2644. char *buf;
  2645. int res;
  2646. buf = os_malloc(bufsize);
  2647. if (buf == NULL)
  2648. return NULL;
  2649. res = os_snprintf(buf, bufsize, "%d", val);
  2650. if (os_snprintf_error(bufsize, res)) {
  2651. os_free(buf);
  2652. buf = NULL;
  2653. }
  2654. return buf;
  2655. }
  2656. static char * alloc_strdup(const char *str)
  2657. {
  2658. if (str == NULL)
  2659. return NULL;
  2660. return os_strdup(str);
  2661. }
  2662. char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var)
  2663. {
  2664. if (os_strcmp(var, "temporary") == 0)
  2665. return alloc_int_str(cred->temporary);
  2666. if (os_strcmp(var, "priority") == 0)
  2667. return alloc_int_str(cred->priority);
  2668. if (os_strcmp(var, "sp_priority") == 0)
  2669. return alloc_int_str(cred->sp_priority);
  2670. if (os_strcmp(var, "pcsc") == 0)
  2671. return alloc_int_str(cred->pcsc);
  2672. if (os_strcmp(var, "eap") == 0) {
  2673. if (!cred->eap_method)
  2674. return NULL;
  2675. return alloc_strdup(eap_get_name(cred->eap_method[0].vendor,
  2676. cred->eap_method[0].method));
  2677. }
  2678. if (os_strcmp(var, "update_identifier") == 0)
  2679. return alloc_int_str(cred->update_identifier);
  2680. if (os_strcmp(var, "min_dl_bandwidth_home") == 0)
  2681. return alloc_int_str(cred->min_dl_bandwidth_home);
  2682. if (os_strcmp(var, "min_ul_bandwidth_home") == 0)
  2683. return alloc_int_str(cred->min_ul_bandwidth_home);
  2684. if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0)
  2685. return alloc_int_str(cred->min_dl_bandwidth_roaming);
  2686. if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0)
  2687. return alloc_int_str(cred->min_ul_bandwidth_roaming);
  2688. if (os_strcmp(var, "max_bss_load") == 0)
  2689. return alloc_int_str(cred->max_bss_load);
  2690. if (os_strcmp(var, "req_conn_capab") == 0) {
  2691. unsigned int i;
  2692. char *buf, *end, *pos;
  2693. int ret;
  2694. if (!cred->num_req_conn_capab)
  2695. return NULL;
  2696. buf = os_malloc(4000);
  2697. if (buf == NULL)
  2698. return NULL;
  2699. pos = buf;
  2700. end = pos + 4000;
  2701. for (i = 0; i < cred->num_req_conn_capab; i++) {
  2702. int *ports;
  2703. ret = os_snprintf(pos, end - pos, "%s%u",
  2704. i > 0 ? "\n" : "",
  2705. cred->req_conn_capab_proto[i]);
  2706. if (os_snprintf_error(end - pos, ret))
  2707. return buf;
  2708. pos += ret;
  2709. ports = cred->req_conn_capab_port[i];
  2710. if (ports) {
  2711. int j;
  2712. for (j = 0; ports[j] != -1; j++) {
  2713. ret = os_snprintf(pos, end - pos,
  2714. "%s%d",
  2715. j > 0 ? "," : ":",
  2716. ports[j]);
  2717. if (os_snprintf_error(end - pos, ret))
  2718. return buf;
  2719. pos += ret;
  2720. }
  2721. }
  2722. }
  2723. return buf;
  2724. }
  2725. if (os_strcmp(var, "ocsp") == 0)
  2726. return alloc_int_str(cred->ocsp);
  2727. if (os_strcmp(var, "realm") == 0)
  2728. return alloc_strdup(cred->realm);
  2729. if (os_strcmp(var, "username") == 0)
  2730. return alloc_strdup(cred->username);
  2731. if (os_strcmp(var, "password") == 0) {
  2732. if (!cred->password)
  2733. return NULL;
  2734. return alloc_strdup("*");
  2735. }
  2736. if (os_strcmp(var, "ca_cert") == 0)
  2737. return alloc_strdup(cred->ca_cert);
  2738. if (os_strcmp(var, "client_cert") == 0)
  2739. return alloc_strdup(cred->client_cert);
  2740. if (os_strcmp(var, "private_key") == 0)
  2741. return alloc_strdup(cred->private_key);
  2742. if (os_strcmp(var, "private_key_passwd") == 0) {
  2743. if (!cred->private_key_passwd)
  2744. return NULL;
  2745. return alloc_strdup("*");
  2746. }
  2747. if (os_strcmp(var, "imsi") == 0)
  2748. return alloc_strdup(cred->imsi);
  2749. if (os_strcmp(var, "milenage") == 0) {
  2750. if (!(cred->milenage))
  2751. return NULL;
  2752. return alloc_strdup("*");
  2753. }
  2754. if (os_strcmp(var, "domain_suffix_match") == 0)
  2755. return alloc_strdup(cred->domain_suffix_match);
  2756. if (os_strcmp(var, "domain") == 0) {
  2757. unsigned int i;
  2758. char *buf, *end, *pos;
  2759. int ret;
  2760. if (!cred->num_domain)
  2761. return NULL;
  2762. buf = os_malloc(4000);
  2763. if (buf == NULL)
  2764. return NULL;
  2765. pos = buf;
  2766. end = pos + 4000;
  2767. for (i = 0; i < cred->num_domain; i++) {
  2768. ret = os_snprintf(pos, end - pos, "%s%s",
  2769. i > 0 ? "\n" : "", cred->domain[i]);
  2770. if (os_snprintf_error(end - pos, ret))
  2771. return buf;
  2772. pos += ret;
  2773. }
  2774. return buf;
  2775. }
  2776. if (os_strcmp(var, "phase1") == 0)
  2777. return alloc_strdup(cred->phase1);
  2778. if (os_strcmp(var, "phase2") == 0)
  2779. return alloc_strdup(cred->phase2);
  2780. if (os_strcmp(var, "roaming_consortium") == 0) {
  2781. size_t buflen;
  2782. char *buf;
  2783. if (!cred->roaming_consortium_len)
  2784. return NULL;
  2785. buflen = cred->roaming_consortium_len * 2 + 1;
  2786. buf = os_malloc(buflen);
  2787. if (buf == NULL)
  2788. return NULL;
  2789. wpa_snprintf_hex(buf, buflen, cred->roaming_consortium,
  2790. cred->roaming_consortium_len);
  2791. return buf;
  2792. }
  2793. if (os_strcmp(var, "required_roaming_consortium") == 0) {
  2794. size_t buflen;
  2795. char *buf;
  2796. if (!cred->required_roaming_consortium_len)
  2797. return NULL;
  2798. buflen = cred->required_roaming_consortium_len * 2 + 1;
  2799. buf = os_malloc(buflen);
  2800. if (buf == NULL)
  2801. return NULL;
  2802. wpa_snprintf_hex(buf, buflen, cred->required_roaming_consortium,
  2803. cred->required_roaming_consortium_len);
  2804. return buf;
  2805. }
  2806. if (os_strcmp(var, "excluded_ssid") == 0) {
  2807. unsigned int i;
  2808. char *buf, *end, *pos;
  2809. if (!cred->num_excluded_ssid)
  2810. return NULL;
  2811. buf = os_malloc(4000);
  2812. if (buf == NULL)
  2813. return NULL;
  2814. pos = buf;
  2815. end = pos + 4000;
  2816. for (i = 0; i < cred->num_excluded_ssid; i++) {
  2817. struct excluded_ssid *e;
  2818. int ret;
  2819. e = &cred->excluded_ssid[i];
  2820. ret = os_snprintf(pos, end - pos, "%s%s",
  2821. i > 0 ? "\n" : "",
  2822. wpa_ssid_txt(e->ssid, e->ssid_len));
  2823. if (os_snprintf_error(end - pos, ret))
  2824. return buf;
  2825. pos += ret;
  2826. }
  2827. return buf;
  2828. }
  2829. if (os_strcmp(var, "roaming_partner") == 0) {
  2830. unsigned int i;
  2831. char *buf, *end, *pos;
  2832. if (!cred->num_roaming_partner)
  2833. return NULL;
  2834. buf = os_malloc(4000);
  2835. if (buf == NULL)
  2836. return NULL;
  2837. pos = buf;
  2838. end = pos + 4000;
  2839. for (i = 0; i < cred->num_roaming_partner; i++) {
  2840. struct roaming_partner *p;
  2841. int ret;
  2842. p = &cred->roaming_partner[i];
  2843. ret = os_snprintf(pos, end - pos, "%s%s,%d,%u,%s",
  2844. i > 0 ? "\n" : "",
  2845. p->fqdn, p->exact_match, p->priority,
  2846. p->country);
  2847. if (os_snprintf_error(end - pos, ret))
  2848. return buf;
  2849. pos += ret;
  2850. }
  2851. return buf;
  2852. }
  2853. if (os_strcmp(var, "provisioning_sp") == 0)
  2854. return alloc_strdup(cred->provisioning_sp);
  2855. return NULL;
  2856. }
  2857. struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
  2858. {
  2859. struct wpa_cred *cred;
  2860. cred = config->cred;
  2861. while (cred) {
  2862. if (id == cred->id)
  2863. break;
  2864. cred = cred->next;
  2865. }
  2866. return cred;
  2867. }
  2868. struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
  2869. {
  2870. int id;
  2871. struct wpa_cred *cred, *last = NULL;
  2872. id = -1;
  2873. cred = config->cred;
  2874. while (cred) {
  2875. if (cred->id > id)
  2876. id = cred->id;
  2877. last = cred;
  2878. cred = cred->next;
  2879. }
  2880. id++;
  2881. cred = os_zalloc(sizeof(*cred));
  2882. if (cred == NULL)
  2883. return NULL;
  2884. cred->id = id;
  2885. cred->sim_num = DEFAULT_USER_SELECTED_SIM;
  2886. if (last)
  2887. last->next = cred;
  2888. else
  2889. config->cred = cred;
  2890. return cred;
  2891. }
  2892. int wpa_config_remove_cred(struct wpa_config *config, int id)
  2893. {
  2894. struct wpa_cred *cred, *prev = NULL;
  2895. cred = config->cred;
  2896. while (cred) {
  2897. if (id == cred->id)
  2898. break;
  2899. prev = cred;
  2900. cred = cred->next;
  2901. }
  2902. if (cred == NULL)
  2903. return -1;
  2904. if (prev)
  2905. prev->next = cred->next;
  2906. else
  2907. config->cred = cred->next;
  2908. wpa_config_free_cred(cred);
  2909. return 0;
  2910. }
  2911. #ifndef CONFIG_NO_CONFIG_BLOBS
  2912. /**
  2913. * wpa_config_get_blob - Get a named configuration blob
  2914. * @config: Configuration data from wpa_config_read()
  2915. * @name: Name of the blob
  2916. * Returns: Pointer to blob data or %NULL if not found
  2917. */
  2918. const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
  2919. const char *name)
  2920. {
  2921. struct wpa_config_blob *blob = config->blobs;
  2922. while (blob) {
  2923. if (os_strcmp(blob->name, name) == 0)
  2924. return blob;
  2925. blob = blob->next;
  2926. }
  2927. return NULL;
  2928. }
  2929. /**
  2930. * wpa_config_set_blob - Set or add a named configuration blob
  2931. * @config: Configuration data from wpa_config_read()
  2932. * @blob: New value for the blob
  2933. *
  2934. * Adds a new configuration blob or replaces the current value of an existing
  2935. * blob.
  2936. */
  2937. void wpa_config_set_blob(struct wpa_config *config,
  2938. struct wpa_config_blob *blob)
  2939. {
  2940. wpa_config_remove_blob(config, blob->name);
  2941. blob->next = config->blobs;
  2942. config->blobs = blob;
  2943. }
  2944. /**
  2945. * wpa_config_free_blob - Free blob data
  2946. * @blob: Pointer to blob to be freed
  2947. */
  2948. void wpa_config_free_blob(struct wpa_config_blob *blob)
  2949. {
  2950. if (blob) {
  2951. os_free(blob->name);
  2952. bin_clear_free(blob->data, blob->len);
  2953. os_free(blob);
  2954. }
  2955. }
  2956. /**
  2957. * wpa_config_remove_blob - Remove a named configuration blob
  2958. * @config: Configuration data from wpa_config_read()
  2959. * @name: Name of the blob to remove
  2960. * Returns: 0 if blob was removed or -1 if blob was not found
  2961. */
  2962. int wpa_config_remove_blob(struct wpa_config *config, const char *name)
  2963. {
  2964. struct wpa_config_blob *pos = config->blobs, *prev = NULL;
  2965. while (pos) {
  2966. if (os_strcmp(pos->name, name) == 0) {
  2967. if (prev)
  2968. prev->next = pos->next;
  2969. else
  2970. config->blobs = pos->next;
  2971. wpa_config_free_blob(pos);
  2972. return 0;
  2973. }
  2974. prev = pos;
  2975. pos = pos->next;
  2976. }
  2977. return -1;
  2978. }
  2979. #endif /* CONFIG_NO_CONFIG_BLOBS */
  2980. /**
  2981. * wpa_config_alloc_empty - Allocate an empty configuration
  2982. * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
  2983. * socket
  2984. * @driver_param: Driver parameters
  2985. * Returns: Pointer to allocated configuration data or %NULL on failure
  2986. */
  2987. struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
  2988. const char *driver_param)
  2989. {
  2990. struct wpa_config *config;
  2991. const int aCWmin = 4, aCWmax = 10;
  2992. const struct hostapd_wmm_ac_params ac_bk =
  2993. { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
  2994. const struct hostapd_wmm_ac_params ac_be =
  2995. { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
  2996. const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
  2997. { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
  2998. const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
  2999. { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
  3000. config = os_zalloc(sizeof(*config));
  3001. if (config == NULL)
  3002. return NULL;
  3003. config->eapol_version = DEFAULT_EAPOL_VERSION;
  3004. config->ap_scan = DEFAULT_AP_SCAN;
  3005. config->user_mpm = DEFAULT_USER_MPM;
  3006. config->max_peer_links = DEFAULT_MAX_PEER_LINKS;
  3007. config->mesh_max_inactivity = DEFAULT_MESH_MAX_INACTIVITY;
  3008. config->dot11RSNASAERetransPeriod =
  3009. DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD;
  3010. config->fast_reauth = DEFAULT_FAST_REAUTH;
  3011. config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
  3012. config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
  3013. config->p2p_go_freq_change_policy = DEFAULT_P2P_GO_FREQ_MOVE;
  3014. config->p2p_go_max_inactivity = DEFAULT_P2P_GO_MAX_INACTIVITY;
  3015. config->p2p_optimize_listen_chan = DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN;
  3016. config->p2p_go_ctwindow = DEFAULT_P2P_GO_CTWINDOW;
  3017. config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
  3018. config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
  3019. config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
  3020. config->max_num_sta = DEFAULT_MAX_NUM_STA;
  3021. config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
  3022. config->scan_cur_freq = DEFAULT_SCAN_CUR_FREQ;
  3023. config->wmm_ac_params[0] = ac_be;
  3024. config->wmm_ac_params[1] = ac_bk;
  3025. config->wmm_ac_params[2] = ac_vi;
  3026. config->wmm_ac_params[3] = ac_vo;
  3027. config->p2p_search_delay = DEFAULT_P2P_SEARCH_DELAY;
  3028. config->rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
  3029. config->key_mgmt_offload = DEFAULT_KEY_MGMT_OFFLOAD;
  3030. config->cert_in_cb = DEFAULT_CERT_IN_CB;
  3031. config->wpa_rsc_relaxation = DEFAULT_WPA_RSC_RELAXATION;
  3032. if (ctrl_interface)
  3033. config->ctrl_interface = os_strdup(ctrl_interface);
  3034. if (driver_param)
  3035. config->driver_param = os_strdup(driver_param);
  3036. return config;
  3037. }
  3038. #ifndef CONFIG_NO_STDOUT_DEBUG
  3039. /**
  3040. * wpa_config_debug_dump_networks - Debug dump of configured networks
  3041. * @config: Configuration data from wpa_config_read()
  3042. */
  3043. void wpa_config_debug_dump_networks(struct wpa_config *config)
  3044. {
  3045. int prio;
  3046. struct wpa_ssid *ssid;
  3047. for (prio = 0; prio < config->num_prio; prio++) {
  3048. ssid = config->pssid[prio];
  3049. wpa_printf(MSG_DEBUG, "Priority group %d",
  3050. ssid->priority);
  3051. while (ssid) {
  3052. wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
  3053. ssid->id,
  3054. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  3055. ssid = ssid->pnext;
  3056. }
  3057. }
  3058. }
  3059. #endif /* CONFIG_NO_STDOUT_DEBUG */
  3060. struct global_parse_data {
  3061. char *name;
  3062. int (*parser)(const struct global_parse_data *data,
  3063. struct wpa_config *config, int line, const char *value);
  3064. int (*get)(const char *name, struct wpa_config *config, long offset,
  3065. char *buf, size_t buflen, int pretty_print);
  3066. void *param1, *param2, *param3;
  3067. unsigned int changed_flag;
  3068. };
  3069. static int wpa_global_config_parse_int(const struct global_parse_data *data,
  3070. struct wpa_config *config, int line,
  3071. const char *pos)
  3072. {
  3073. int val, *dst;
  3074. char *end;
  3075. dst = (int *) (((u8 *) config) + (long) data->param1);
  3076. val = strtol(pos, &end, 0);
  3077. if (*end) {
  3078. wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
  3079. line, pos);
  3080. return -1;
  3081. }
  3082. *dst = val;
  3083. wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
  3084. if (data->param2 && *dst < (long) data->param2) {
  3085. wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
  3086. "min_value=%ld)", line, data->name, *dst,
  3087. (long) data->param2);
  3088. *dst = (long) data->param2;
  3089. return -1;
  3090. }
  3091. if (data->param3 && *dst > (long) data->param3) {
  3092. wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
  3093. "max_value=%ld)", line, data->name, *dst,
  3094. (long) data->param3);
  3095. *dst = (long) data->param3;
  3096. return -1;
  3097. }
  3098. return 0;
  3099. }
  3100. static int wpa_global_config_parse_str(const struct global_parse_data *data,
  3101. struct wpa_config *config, int line,
  3102. const char *pos)
  3103. {
  3104. size_t len;
  3105. char **dst, *tmp;
  3106. len = os_strlen(pos);
  3107. if (data->param2 && len < (size_t) data->param2) {
  3108. wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
  3109. "min_len=%ld)", line, data->name,
  3110. (unsigned long) len, (long) data->param2);
  3111. return -1;
  3112. }
  3113. if (data->param3 && len > (size_t) data->param3) {
  3114. wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
  3115. "max_len=%ld)", line, data->name,
  3116. (unsigned long) len, (long) data->param3);
  3117. return -1;
  3118. }
  3119. tmp = os_strdup(pos);
  3120. if (tmp == NULL)
  3121. return -1;
  3122. dst = (char **) (((u8 *) config) + (long) data->param1);
  3123. os_free(*dst);
  3124. *dst = tmp;
  3125. wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
  3126. return 0;
  3127. }
  3128. static int wpa_config_process_bgscan(const struct global_parse_data *data,
  3129. struct wpa_config *config, int line,
  3130. const char *pos)
  3131. {
  3132. size_t len;
  3133. char *tmp;
  3134. int res;
  3135. tmp = wpa_config_parse_string(pos, &len);
  3136. if (tmp == NULL) {
  3137. wpa_printf(MSG_ERROR, "Line %d: failed to parse %s",
  3138. line, data->name);
  3139. return -1;
  3140. }
  3141. res = wpa_global_config_parse_str(data, config, line, tmp);
  3142. os_free(tmp);
  3143. return res;
  3144. }
  3145. static int wpa_global_config_parse_bin(const struct global_parse_data *data,
  3146. struct wpa_config *config, int line,
  3147. const char *pos)
  3148. {
  3149. size_t len;
  3150. struct wpabuf **dst, *tmp;
  3151. len = os_strlen(pos);
  3152. if (len & 0x01)
  3153. return -1;
  3154. tmp = wpabuf_alloc(len / 2);
  3155. if (tmp == NULL)
  3156. return -1;
  3157. if (hexstr2bin(pos, wpabuf_put(tmp, len / 2), len / 2)) {
  3158. wpabuf_free(tmp);
  3159. return -1;
  3160. }
  3161. dst = (struct wpabuf **) (((u8 *) config) + (long) data->param1);
  3162. wpabuf_free(*dst);
  3163. *dst = tmp;
  3164. wpa_printf(MSG_DEBUG, "%s", data->name);
  3165. return 0;
  3166. }
  3167. static int wpa_config_process_freq_list(const struct global_parse_data *data,
  3168. struct wpa_config *config, int line,
  3169. const char *value)
  3170. {
  3171. int *freqs;
  3172. freqs = wpa_config_parse_int_array(value);
  3173. if (freqs == NULL)
  3174. return -1;
  3175. if (freqs[0] == 0) {
  3176. os_free(freqs);
  3177. freqs = NULL;
  3178. }
  3179. os_free(config->freq_list);
  3180. config->freq_list = freqs;
  3181. return 0;
  3182. }
  3183. #ifdef CONFIG_P2P
  3184. static int wpa_global_config_parse_ipv4(const struct global_parse_data *data,
  3185. struct wpa_config *config, int line,
  3186. const char *pos)
  3187. {
  3188. u32 *dst;
  3189. struct hostapd_ip_addr addr;
  3190. if (hostapd_parse_ip_addr(pos, &addr) < 0)
  3191. return -1;
  3192. if (addr.af != AF_INET)
  3193. return -1;
  3194. dst = (u32 *) (((u8 *) config) + (long) data->param1);
  3195. os_memcpy(dst, &addr.u.v4.s_addr, 4);
  3196. wpa_printf(MSG_DEBUG, "%s = 0x%x", data->name,
  3197. WPA_GET_BE32((u8 *) dst));
  3198. return 0;
  3199. }
  3200. #endif /* CONFIG_P2P */
  3201. static int wpa_config_process_country(const struct global_parse_data *data,
  3202. struct wpa_config *config, int line,
  3203. const char *pos)
  3204. {
  3205. if (!pos[0] || !pos[1]) {
  3206. wpa_printf(MSG_DEBUG, "Invalid country set");
  3207. return -1;
  3208. }
  3209. config->country[0] = pos[0];
  3210. config->country[1] = pos[1];
  3211. wpa_printf(MSG_DEBUG, "country='%c%c'",
  3212. config->country[0], config->country[1]);
  3213. return 0;
  3214. }
  3215. static int wpa_config_process_load_dynamic_eap(
  3216. const struct global_parse_data *data, struct wpa_config *config,
  3217. int line, const char *so)
  3218. {
  3219. int ret;
  3220. wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
  3221. ret = eap_peer_method_load(so);
  3222. if (ret == -2) {
  3223. wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
  3224. "reloading.");
  3225. } else if (ret) {
  3226. wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
  3227. "method '%s'.", line, so);
  3228. return -1;
  3229. }
  3230. return 0;
  3231. }
  3232. #ifdef CONFIG_WPS
  3233. static int wpa_config_process_uuid(const struct global_parse_data *data,
  3234. struct wpa_config *config, int line,
  3235. const char *pos)
  3236. {
  3237. char buf[40];
  3238. if (uuid_str2bin(pos, config->uuid)) {
  3239. wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
  3240. return -1;
  3241. }
  3242. uuid_bin2str(config->uuid, buf, sizeof(buf));
  3243. wpa_printf(MSG_DEBUG, "uuid=%s", buf);
  3244. return 0;
  3245. }
  3246. static int wpa_config_process_device_type(
  3247. const struct global_parse_data *data,
  3248. struct wpa_config *config, int line, const char *pos)
  3249. {
  3250. return wps_dev_type_str2bin(pos, config->device_type);
  3251. }
  3252. static int wpa_config_process_os_version(const struct global_parse_data *data,
  3253. struct wpa_config *config, int line,
  3254. const char *pos)
  3255. {
  3256. if (hexstr2bin(pos, config->os_version, 4)) {
  3257. wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
  3258. return -1;
  3259. }
  3260. wpa_printf(MSG_DEBUG, "os_version=%08x",
  3261. WPA_GET_BE32(config->os_version));
  3262. return 0;
  3263. }
  3264. static int wpa_config_process_wps_vendor_ext_m1(
  3265. const struct global_parse_data *data,
  3266. struct wpa_config *config, int line, const char *pos)
  3267. {
  3268. struct wpabuf *tmp;
  3269. int len = os_strlen(pos) / 2;
  3270. u8 *p;
  3271. if (!len) {
  3272. wpa_printf(MSG_ERROR, "Line %d: "
  3273. "invalid wps_vendor_ext_m1", line);
  3274. return -1;
  3275. }
  3276. tmp = wpabuf_alloc(len);
  3277. if (tmp) {
  3278. p = wpabuf_put(tmp, len);
  3279. if (hexstr2bin(pos, p, len)) {
  3280. wpa_printf(MSG_ERROR, "Line %d: "
  3281. "invalid wps_vendor_ext_m1", line);
  3282. wpabuf_free(tmp);
  3283. return -1;
  3284. }
  3285. wpabuf_free(config->wps_vendor_ext_m1);
  3286. config->wps_vendor_ext_m1 = tmp;
  3287. } else {
  3288. wpa_printf(MSG_ERROR, "Can not allocate "
  3289. "memory for wps_vendor_ext_m1");
  3290. return -1;
  3291. }
  3292. return 0;
  3293. }
  3294. #endif /* CONFIG_WPS */
  3295. #ifdef CONFIG_P2P
  3296. static int wpa_config_process_sec_device_type(
  3297. const struct global_parse_data *data,
  3298. struct wpa_config *config, int line, const char *pos)
  3299. {
  3300. int idx;
  3301. if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
  3302. wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
  3303. "items", line);
  3304. return -1;
  3305. }
  3306. idx = config->num_sec_device_types;
  3307. if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
  3308. return -1;
  3309. config->num_sec_device_types++;
  3310. return 0;
  3311. }
  3312. static int wpa_config_process_p2p_pref_chan(
  3313. const struct global_parse_data *data,
  3314. struct wpa_config *config, int line, const char *pos)
  3315. {
  3316. struct p2p_channel *pref = NULL, *n;
  3317. unsigned int num = 0;
  3318. const char *pos2;
  3319. u8 op_class, chan;
  3320. /* format: class:chan,class:chan,... */
  3321. while (*pos) {
  3322. op_class = atoi(pos);
  3323. pos2 = os_strchr(pos, ':');
  3324. if (pos2 == NULL)
  3325. goto fail;
  3326. pos2++;
  3327. chan = atoi(pos2);
  3328. n = os_realloc_array(pref, num + 1,
  3329. sizeof(struct p2p_channel));
  3330. if (n == NULL)
  3331. goto fail;
  3332. pref = n;
  3333. pref[num].op_class = op_class;
  3334. pref[num].chan = chan;
  3335. num++;
  3336. pos = os_strchr(pos2, ',');
  3337. if (pos == NULL)
  3338. break;
  3339. pos++;
  3340. }
  3341. os_free(config->p2p_pref_chan);
  3342. config->p2p_pref_chan = pref;
  3343. config->num_p2p_pref_chan = num;
  3344. wpa_hexdump(MSG_DEBUG, "P2P: Preferred class/channel pairs",
  3345. (u8 *) config->p2p_pref_chan,
  3346. config->num_p2p_pref_chan * sizeof(struct p2p_channel));
  3347. return 0;
  3348. fail:
  3349. os_free(pref);
  3350. wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_pref_chan list", line);
  3351. return -1;
  3352. }
  3353. static int wpa_config_process_p2p_no_go_freq(
  3354. const struct global_parse_data *data,
  3355. struct wpa_config *config, int line, const char *pos)
  3356. {
  3357. int ret;
  3358. ret = freq_range_list_parse(&config->p2p_no_go_freq, pos);
  3359. if (ret < 0) {
  3360. wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_no_go_freq", line);
  3361. return -1;
  3362. }
  3363. wpa_printf(MSG_DEBUG, "P2P: p2p_no_go_freq with %u items",
  3364. config->p2p_no_go_freq.num);
  3365. return 0;
  3366. }
  3367. #endif /* CONFIG_P2P */
  3368. static int wpa_config_process_hessid(
  3369. const struct global_parse_data *data,
  3370. struct wpa_config *config, int line, const char *pos)
  3371. {
  3372. if (hwaddr_aton2(pos, config->hessid) < 0) {
  3373. wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
  3374. line, pos);
  3375. return -1;
  3376. }
  3377. return 0;
  3378. }
  3379. static int wpa_config_process_sae_groups(
  3380. const struct global_parse_data *data,
  3381. struct wpa_config *config, int line, const char *pos)
  3382. {
  3383. int *groups = wpa_config_parse_int_array(pos);
  3384. if (groups == NULL) {
  3385. wpa_printf(MSG_ERROR, "Line %d: Invalid sae_groups '%s'",
  3386. line, pos);
  3387. return -1;
  3388. }
  3389. os_free(config->sae_groups);
  3390. config->sae_groups = groups;
  3391. return 0;
  3392. }
  3393. static int wpa_config_process_ap_vendor_elements(
  3394. const struct global_parse_data *data,
  3395. struct wpa_config *config, int line, const char *pos)
  3396. {
  3397. struct wpabuf *tmp;
  3398. int len = os_strlen(pos) / 2;
  3399. u8 *p;
  3400. if (!len) {
  3401. wpa_printf(MSG_ERROR, "Line %d: invalid ap_vendor_elements",
  3402. line);
  3403. return -1;
  3404. }
  3405. tmp = wpabuf_alloc(len);
  3406. if (tmp) {
  3407. p = wpabuf_put(tmp, len);
  3408. if (hexstr2bin(pos, p, len)) {
  3409. wpa_printf(MSG_ERROR, "Line %d: invalid "
  3410. "ap_vendor_elements", line);
  3411. wpabuf_free(tmp);
  3412. return -1;
  3413. }
  3414. wpabuf_free(config->ap_vendor_elements);
  3415. config->ap_vendor_elements = tmp;
  3416. } else {
  3417. wpa_printf(MSG_ERROR, "Cannot allocate memory for "
  3418. "ap_vendor_elements");
  3419. return -1;
  3420. }
  3421. return 0;
  3422. }
  3423. #ifdef CONFIG_CTRL_IFACE
  3424. static int wpa_config_process_no_ctrl_interface(
  3425. const struct global_parse_data *data,
  3426. struct wpa_config *config, int line, const char *pos)
  3427. {
  3428. wpa_printf(MSG_DEBUG, "no_ctrl_interface -> ctrl_interface=NULL");
  3429. os_free(config->ctrl_interface);
  3430. config->ctrl_interface = NULL;
  3431. return 0;
  3432. }
  3433. #endif /* CONFIG_CTRL_IFACE */
  3434. static int wpa_config_get_int(const char *name, struct wpa_config *config,
  3435. long offset, char *buf, size_t buflen,
  3436. int pretty_print)
  3437. {
  3438. int *val = (int *) (((u8 *) config) + (long) offset);
  3439. if (pretty_print)
  3440. return os_snprintf(buf, buflen, "%s=%d\n", name, *val);
  3441. return os_snprintf(buf, buflen, "%d", *val);
  3442. }
  3443. static int wpa_config_get_str(const char *name, struct wpa_config *config,
  3444. long offset, char *buf, size_t buflen,
  3445. int pretty_print)
  3446. {
  3447. char **val = (char **) (((u8 *) config) + (long) offset);
  3448. int res;
  3449. if (pretty_print)
  3450. res = os_snprintf(buf, buflen, "%s=%s\n", name,
  3451. *val ? *val : "null");
  3452. else if (!*val)
  3453. return -1;
  3454. else
  3455. res = os_snprintf(buf, buflen, "%s", *val);
  3456. if (os_snprintf_error(buflen, res))
  3457. res = -1;
  3458. return res;
  3459. }
  3460. #ifdef CONFIG_P2P
  3461. static int wpa_config_get_ipv4(const char *name, struct wpa_config *config,
  3462. long offset, char *buf, size_t buflen,
  3463. int pretty_print)
  3464. {
  3465. void *val = ((u8 *) config) + (long) offset;
  3466. int res;
  3467. char addr[INET_ADDRSTRLEN];
  3468. if (!val || !inet_ntop(AF_INET, val, addr, sizeof(addr)))
  3469. return -1;
  3470. if (pretty_print)
  3471. res = os_snprintf(buf, buflen, "%s=%s\n", name, addr);
  3472. else
  3473. res = os_snprintf(buf, buflen, "%s", addr);
  3474. if (os_snprintf_error(buflen, res))
  3475. res = -1;
  3476. return res;
  3477. }
  3478. #endif /* CONFIG_P2P */
  3479. #ifdef OFFSET
  3480. #undef OFFSET
  3481. #endif /* OFFSET */
  3482. /* OFFSET: Get offset of a variable within the wpa_config structure */
  3483. #define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
  3484. #define FUNC(f) #f, wpa_config_process_ ## f, NULL, OFFSET(f), NULL, NULL
  3485. #define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL, NULL
  3486. #define _INT(f) #f, wpa_global_config_parse_int, wpa_config_get_int, OFFSET(f)
  3487. #define INT(f) _INT(f), NULL, NULL
  3488. #define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
  3489. #define _STR(f) #f, wpa_global_config_parse_str, wpa_config_get_str, OFFSET(f)
  3490. #define STR(f) _STR(f), NULL, NULL
  3491. #define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
  3492. #define BIN(f) #f, wpa_global_config_parse_bin, NULL, OFFSET(f), NULL, NULL
  3493. #define IPV4(f) #f, wpa_global_config_parse_ipv4, wpa_config_get_ipv4, \
  3494. OFFSET(f), NULL, NULL
  3495. static const struct global_parse_data global_fields[] = {
  3496. #ifdef CONFIG_CTRL_IFACE
  3497. { STR(ctrl_interface), 0 },
  3498. { FUNC_NO_VAR(no_ctrl_interface), 0 },
  3499. { STR(ctrl_interface_group), 0 } /* deprecated */,
  3500. #endif /* CONFIG_CTRL_IFACE */
  3501. #ifdef CONFIG_MACSEC
  3502. { INT_RANGE(eapol_version, 1, 3), 0 },
  3503. #else /* CONFIG_MACSEC */
  3504. { INT_RANGE(eapol_version, 1, 2), 0 },
  3505. #endif /* CONFIG_MACSEC */
  3506. { INT(ap_scan), 0 },
  3507. { FUNC(bgscan), 0 },
  3508. #ifdef CONFIG_MESH
  3509. { INT(user_mpm), 0 },
  3510. { INT_RANGE(max_peer_links, 0, 255), 0 },
  3511. { INT(mesh_max_inactivity), 0 },
  3512. { INT(dot11RSNASAERetransPeriod), 0 },
  3513. #endif /* CONFIG_MESH */
  3514. { INT(disable_scan_offload), 0 },
  3515. { INT(fast_reauth), 0 },
  3516. { STR(opensc_engine_path), 0 },
  3517. { STR(pkcs11_engine_path), 0 },
  3518. { STR(pkcs11_module_path), 0 },
  3519. { STR(openssl_ciphers), 0 },
  3520. { STR(pcsc_reader), 0 },
  3521. { STR(pcsc_pin), 0 },
  3522. { INT(external_sim), 0 },
  3523. { STR(driver_param), 0 },
  3524. { INT(dot11RSNAConfigPMKLifetime), 0 },
  3525. { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
  3526. { INT(dot11RSNAConfigSATimeout), 0 },
  3527. #ifndef CONFIG_NO_CONFIG_WRITE
  3528. { INT(update_config), 0 },
  3529. #endif /* CONFIG_NO_CONFIG_WRITE */
  3530. { FUNC_NO_VAR(load_dynamic_eap), 0 },
  3531. #ifdef CONFIG_WPS
  3532. { FUNC(uuid), CFG_CHANGED_UUID },
  3533. { STR_RANGE(device_name, 0, WPS_DEV_NAME_MAX_LEN),
  3534. CFG_CHANGED_DEVICE_NAME },
  3535. { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
  3536. { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
  3537. { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
  3538. { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
  3539. { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
  3540. { FUNC(os_version), CFG_CHANGED_OS_VERSION },
  3541. { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
  3542. { INT_RANGE(wps_cred_processing, 0, 2), 0 },
  3543. { FUNC(wps_vendor_ext_m1), CFG_CHANGED_VENDOR_EXTENSION },
  3544. #endif /* CONFIG_WPS */
  3545. #ifdef CONFIG_P2P
  3546. { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
  3547. { INT(p2p_listen_reg_class), CFG_CHANGED_P2P_LISTEN_CHANNEL },
  3548. { INT(p2p_listen_channel), CFG_CHANGED_P2P_LISTEN_CHANNEL },
  3549. { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
  3550. { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
  3551. { INT_RANGE(p2p_go_intent, 0, 15), 0 },
  3552. { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
  3553. { INT_RANGE(persistent_reconnect, 0, 1), 0 },
  3554. { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
  3555. { INT(p2p_group_idle), 0 },
  3556. { INT_RANGE(p2p_go_freq_change_policy, 0, P2P_GO_FREQ_MOVE_MAX), 0 },
  3557. { INT_RANGE(p2p_passphrase_len, 8, 63),
  3558. CFG_CHANGED_P2P_PASSPHRASE_LEN },
  3559. { FUNC(p2p_pref_chan), CFG_CHANGED_P2P_PREF_CHAN },
  3560. { FUNC(p2p_no_go_freq), CFG_CHANGED_P2P_PREF_CHAN },
  3561. { INT_RANGE(p2p_add_cli_chan, 0, 1), 0 },
  3562. { INT_RANGE(p2p_optimize_listen_chan, 0, 1), 0 },
  3563. { INT(p2p_go_ht40), 0 },
  3564. { INT(p2p_go_vht), 0 },
  3565. { INT(p2p_disabled), 0 },
  3566. { INT_RANGE(p2p_go_ctwindow, 0, 127), 0 },
  3567. { INT(p2p_no_group_iface), 0 },
  3568. { INT_RANGE(p2p_ignore_shared_freq, 0, 1), 0 },
  3569. { IPV4(ip_addr_go), 0 },
  3570. { IPV4(ip_addr_mask), 0 },
  3571. { IPV4(ip_addr_start), 0 },
  3572. { IPV4(ip_addr_end), 0 },
  3573. { INT_RANGE(p2p_cli_probe, 0, 1), 0 },
  3574. #endif /* CONFIG_P2P */
  3575. { FUNC(country), CFG_CHANGED_COUNTRY },
  3576. { INT(bss_max_count), 0 },
  3577. { INT(bss_expiration_age), 0 },
  3578. { INT(bss_expiration_scan_count), 0 },
  3579. { INT_RANGE(filter_ssids, 0, 1), 0 },
  3580. { INT_RANGE(filter_rssi, -100, 0), 0 },
  3581. { INT(max_num_sta), 0 },
  3582. { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
  3583. #ifdef CONFIG_HS20
  3584. { INT_RANGE(hs20, 0, 1), 0 },
  3585. #endif /* CONFIG_HS20 */
  3586. { INT_RANGE(interworking, 0, 1), 0 },
  3587. { FUNC(hessid), 0 },
  3588. { INT_RANGE(access_network_type, 0, 15), 0 },
  3589. { INT_RANGE(pbc_in_m1, 0, 1), 0 },
  3590. { STR(autoscan), 0 },
  3591. { INT_RANGE(wps_nfc_dev_pw_id, 0x10, 0xffff),
  3592. CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3593. { BIN(wps_nfc_dh_pubkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3594. { BIN(wps_nfc_dh_privkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3595. { BIN(wps_nfc_dev_pw), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3596. { STR(ext_password_backend), CFG_CHANGED_EXT_PW_BACKEND },
  3597. { INT(p2p_go_max_inactivity), 0 },
  3598. { INT_RANGE(auto_interworking, 0, 1), 0 },
  3599. { INT(okc), 0 },
  3600. { INT(pmf), 0 },
  3601. { FUNC(sae_groups), 0 },
  3602. { INT(dtim_period), 0 },
  3603. { INT(beacon_int), 0 },
  3604. { FUNC(ap_vendor_elements), 0 },
  3605. { INT_RANGE(ignore_old_scan_res, 0, 1), 0 },
  3606. { FUNC(freq_list), 0 },
  3607. { INT(scan_cur_freq), 0 },
  3608. { INT(sched_scan_interval), 0 },
  3609. { INT(tdls_external_control), 0},
  3610. { STR(osu_dir), 0 },
  3611. { STR(wowlan_triggers), 0 },
  3612. { INT(p2p_search_delay), 0},
  3613. { INT(mac_addr), 0 },
  3614. { INT(rand_addr_lifetime), 0 },
  3615. { INT(preassoc_mac_addr), 0 },
  3616. { INT(key_mgmt_offload), 0},
  3617. { INT(passive_scan), 0 },
  3618. { INT(reassoc_same_bss_optim), 0 },
  3619. { INT(wps_priority), 0},
  3620. #ifdef CONFIG_FST
  3621. { STR_RANGE(fst_group_id, 1, FST_MAX_GROUP_ID_LEN), 0 },
  3622. { INT_RANGE(fst_priority, 1, FST_MAX_PRIO_VALUE), 0 },
  3623. { INT_RANGE(fst_llt, 1, FST_MAX_LLT_MS), 0 },
  3624. #endif /* CONFIG_FST */
  3625. { INT_RANGE(wpa_rsc_relaxation, 0, 1), 0 },
  3626. };
  3627. #undef FUNC
  3628. #undef _INT
  3629. #undef INT
  3630. #undef INT_RANGE
  3631. #undef _STR
  3632. #undef STR
  3633. #undef STR_RANGE
  3634. #undef BIN
  3635. #undef IPV4
  3636. #define NUM_GLOBAL_FIELDS ARRAY_SIZE(global_fields)
  3637. int wpa_config_dump_values(struct wpa_config *config, char *buf, size_t buflen)
  3638. {
  3639. int result = 0;
  3640. size_t i;
  3641. for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
  3642. const struct global_parse_data *field = &global_fields[i];
  3643. int tmp;
  3644. if (!field->get)
  3645. continue;
  3646. tmp = field->get(field->name, config, (long) field->param1,
  3647. buf, buflen, 1);
  3648. if (tmp < 0)
  3649. return -1;
  3650. buf += tmp;
  3651. buflen -= tmp;
  3652. result += tmp;
  3653. }
  3654. return result;
  3655. }
  3656. int wpa_config_get_value(const char *name, struct wpa_config *config,
  3657. char *buf, size_t buflen)
  3658. {
  3659. size_t i;
  3660. for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
  3661. const struct global_parse_data *field = &global_fields[i];
  3662. if (os_strcmp(name, field->name) != 0)
  3663. continue;
  3664. if (!field->get)
  3665. break;
  3666. return field->get(name, config, (long) field->param1,
  3667. buf, buflen, 0);
  3668. }
  3669. return -1;
  3670. }
  3671. int wpa_config_get_num_global_field_names(void)
  3672. {
  3673. return NUM_GLOBAL_FIELDS;
  3674. }
  3675. const char * wpa_config_get_global_field_name(unsigned int i, int *no_var)
  3676. {
  3677. if (i >= NUM_GLOBAL_FIELDS)
  3678. return NULL;
  3679. if (no_var)
  3680. *no_var = !global_fields[i].param1;
  3681. return global_fields[i].name;
  3682. }
  3683. int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
  3684. {
  3685. size_t i;
  3686. int ret = 0;
  3687. for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
  3688. const struct global_parse_data *field = &global_fields[i];
  3689. size_t flen = os_strlen(field->name);
  3690. if (os_strncmp(pos, field->name, flen) != 0 ||
  3691. pos[flen] != '=')
  3692. continue;
  3693. if (field->parser(field, config, line, pos + flen + 1)) {
  3694. wpa_printf(MSG_ERROR, "Line %d: failed to "
  3695. "parse '%s'.", line, pos);
  3696. ret = -1;
  3697. }
  3698. if (field->changed_flag == CFG_CHANGED_NFC_PASSWORD_TOKEN)
  3699. config->wps_nfc_pw_from_config = 1;
  3700. config->changed_parameters |= field->changed_flag;
  3701. break;
  3702. }
  3703. if (i == NUM_GLOBAL_FIELDS) {
  3704. #ifdef CONFIG_AP
  3705. if (os_strncmp(pos, "wmm_ac_", 7) == 0) {
  3706. char *tmp = os_strchr(pos, '=');
  3707. if (tmp == NULL) {
  3708. if (line < 0)
  3709. return -1;
  3710. wpa_printf(MSG_ERROR, "Line %d: invalid line "
  3711. "'%s'", line, pos);
  3712. return -1;
  3713. }
  3714. *tmp++ = '\0';
  3715. if (hostapd_config_wmm_ac(config->wmm_ac_params, pos,
  3716. tmp)) {
  3717. wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
  3718. "AC item", line);
  3719. return -1;
  3720. }
  3721. }
  3722. #endif /* CONFIG_AP */
  3723. if (line < 0)
  3724. return -1;
  3725. wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
  3726. line, pos);
  3727. ret = -1;
  3728. }
  3729. return ret;
  3730. }