config.c 103 KB

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