config.c 97 KB

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