config.c 99 KB

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