config.c 93 KB

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