wps_registrar.c 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087
  1. /*
  2. * Wi-Fi Protected Setup - Registrar
  3. * Copyright (c) 2008-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "utils/base64.h"
  17. #include "utils/eloop.h"
  18. #include "utils/uuid.h"
  19. #include "utils/list.h"
  20. #include "crypto/crypto.h"
  21. #include "crypto/sha256.h"
  22. #include "common/ieee802_11_defs.h"
  23. #include "wps_i.h"
  24. #include "wps_dev_attr.h"
  25. #include "wps_upnp.h"
  26. #include "wps_upnp_i.h"
  27. #ifndef CONFIG_WPS_STRICT
  28. #define WPS_WORKAROUNDS
  29. #endif /* CONFIG_WPS_STRICT */
  30. struct wps_uuid_pin {
  31. struct dl_list list;
  32. u8 uuid[WPS_UUID_LEN];
  33. int wildcard_uuid;
  34. u8 *pin;
  35. size_t pin_len;
  36. #define PIN_LOCKED BIT(0)
  37. #define PIN_EXPIRES BIT(1)
  38. int flags;
  39. struct os_time expiration;
  40. u8 enrollee_addr[ETH_ALEN];
  41. };
  42. static void wps_free_pin(struct wps_uuid_pin *pin)
  43. {
  44. os_free(pin->pin);
  45. os_free(pin);
  46. }
  47. static void wps_remove_pin(struct wps_uuid_pin *pin)
  48. {
  49. dl_list_del(&pin->list);
  50. wps_free_pin(pin);
  51. }
  52. static void wps_free_pins(struct dl_list *pins)
  53. {
  54. struct wps_uuid_pin *pin, *prev;
  55. dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list)
  56. wps_remove_pin(pin);
  57. }
  58. struct wps_pbc_session {
  59. struct wps_pbc_session *next;
  60. u8 addr[ETH_ALEN];
  61. u8 uuid_e[WPS_UUID_LEN];
  62. struct os_time timestamp;
  63. };
  64. static void wps_free_pbc_sessions(struct wps_pbc_session *pbc)
  65. {
  66. struct wps_pbc_session *prev;
  67. while (pbc) {
  68. prev = pbc;
  69. pbc = pbc->next;
  70. os_free(prev);
  71. }
  72. }
  73. struct wps_registrar_device {
  74. struct wps_registrar_device *next;
  75. struct wps_device_data dev;
  76. u8 uuid[WPS_UUID_LEN];
  77. };
  78. struct wps_registrar {
  79. struct wps_context *wps;
  80. int pbc;
  81. int selected_registrar;
  82. int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
  83. size_t psk_len);
  84. int (*set_ie_cb)(void *ctx, struct wpabuf *beacon_ie,
  85. struct wpabuf *probe_resp_ie);
  86. void (*pin_needed_cb)(void *ctx, const u8 *uuid_e,
  87. const struct wps_device_data *dev);
  88. void (*reg_success_cb)(void *ctx, const u8 *mac_addr,
  89. const u8 *uuid_e);
  90. void (*set_sel_reg_cb)(void *ctx, int sel_reg, u16 dev_passwd_id,
  91. u16 sel_reg_config_methods);
  92. void (*enrollee_seen_cb)(void *ctx, const u8 *addr, const u8 *uuid_e,
  93. const u8 *pri_dev_type, u16 config_methods,
  94. u16 dev_password_id, u8 request_type,
  95. const char *dev_name);
  96. void *cb_ctx;
  97. struct dl_list pins;
  98. struct wps_pbc_session *pbc_sessions;
  99. int skip_cred_build;
  100. struct wpabuf *extra_cred;
  101. int disable_auto_conf;
  102. int sel_reg_union;
  103. int sel_reg_dev_password_id_override;
  104. int sel_reg_config_methods_override;
  105. int static_wep_only;
  106. struct wps_registrar_device *devices;
  107. int force_pbc_overlap;
  108. u8 authorized_macs[WPS_MAX_AUTHORIZED_MACS][ETH_ALEN];
  109. u8 authorized_macs_union[WPS_MAX_AUTHORIZED_MACS][ETH_ALEN];
  110. };
  111. static int wps_set_ie(struct wps_registrar *reg);
  112. static void wps_registrar_pbc_timeout(void *eloop_ctx, void *timeout_ctx);
  113. static void wps_registrar_set_selected_timeout(void *eloop_ctx,
  114. void *timeout_ctx);
  115. static void wps_registrar_add_authorized_mac(struct wps_registrar *reg,
  116. const u8 *addr)
  117. {
  118. int i;
  119. wpa_printf(MSG_DEBUG, "WPS: Add authorized MAC " MACSTR,
  120. MAC2STR(addr));
  121. for (i = 0; i < WPS_MAX_AUTHORIZED_MACS; i++)
  122. if (os_memcmp(reg->authorized_macs[i], addr, ETH_ALEN) == 0) {
  123. wpa_printf(MSG_DEBUG, "WPS: Authorized MAC was "
  124. "already in the list");
  125. return; /* already in list */
  126. }
  127. for (i = WPS_MAX_AUTHORIZED_MACS - 1; i > 0; i--)
  128. os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i - 1],
  129. ETH_ALEN);
  130. os_memcpy(reg->authorized_macs[0], addr, ETH_ALEN);
  131. wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs",
  132. (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs));
  133. }
  134. static void wps_registrar_remove_authorized_mac(struct wps_registrar *reg,
  135. const u8 *addr)
  136. {
  137. int i;
  138. wpa_printf(MSG_DEBUG, "WPS: Remove authorized MAC " MACSTR,
  139. MAC2STR(addr));
  140. for (i = 0; i < WPS_MAX_AUTHORIZED_MACS; i++) {
  141. if (os_memcmp(reg->authorized_macs, addr, ETH_ALEN) == 0)
  142. break;
  143. }
  144. if (i == WPS_MAX_AUTHORIZED_MACS) {
  145. wpa_printf(MSG_DEBUG, "WPS: Authorized MAC was not in the "
  146. "list");
  147. return; /* not in the list */
  148. }
  149. for (; i + 1 < WPS_MAX_AUTHORIZED_MACS; i++)
  150. os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i + 1],
  151. ETH_ALEN);
  152. os_memset(reg->authorized_macs[WPS_MAX_AUTHORIZED_MACS - 1], 0,
  153. ETH_ALEN);
  154. wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs",
  155. (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs));
  156. }
  157. static void wps_free_devices(struct wps_registrar_device *dev)
  158. {
  159. struct wps_registrar_device *prev;
  160. while (dev) {
  161. prev = dev;
  162. dev = dev->next;
  163. wps_device_data_free(&prev->dev);
  164. os_free(prev);
  165. }
  166. }
  167. static struct wps_registrar_device * wps_device_get(struct wps_registrar *reg,
  168. const u8 *addr)
  169. {
  170. struct wps_registrar_device *dev;
  171. for (dev = reg->devices; dev; dev = dev->next) {
  172. if (os_memcmp(dev->dev.mac_addr, addr, ETH_ALEN) == 0)
  173. return dev;
  174. }
  175. return NULL;
  176. }
  177. static void wps_device_clone_data(struct wps_device_data *dst,
  178. struct wps_device_data *src)
  179. {
  180. os_memcpy(dst->mac_addr, src->mac_addr, ETH_ALEN);
  181. os_memcpy(dst->pri_dev_type, src->pri_dev_type, WPS_DEV_TYPE_LEN);
  182. #define WPS_STRDUP(n) \
  183. os_free(dst->n); \
  184. dst->n = src->n ? os_strdup(src->n) : NULL
  185. WPS_STRDUP(device_name);
  186. WPS_STRDUP(manufacturer);
  187. WPS_STRDUP(model_name);
  188. WPS_STRDUP(model_number);
  189. WPS_STRDUP(serial_number);
  190. #undef WPS_STRDUP
  191. }
  192. int wps_device_store(struct wps_registrar *reg,
  193. struct wps_device_data *dev, const u8 *uuid)
  194. {
  195. struct wps_registrar_device *d;
  196. d = wps_device_get(reg, dev->mac_addr);
  197. if (d == NULL) {
  198. d = os_zalloc(sizeof(*d));
  199. if (d == NULL)
  200. return -1;
  201. d->next = reg->devices;
  202. reg->devices = d;
  203. }
  204. wps_device_clone_data(&d->dev, dev);
  205. os_memcpy(d->uuid, uuid, WPS_UUID_LEN);
  206. return 0;
  207. }
  208. static void wps_registrar_add_pbc_session(struct wps_registrar *reg,
  209. const u8 *addr, const u8 *uuid_e)
  210. {
  211. struct wps_pbc_session *pbc, *prev = NULL;
  212. struct os_time now;
  213. os_get_time(&now);
  214. pbc = reg->pbc_sessions;
  215. while (pbc) {
  216. if (os_memcmp(pbc->addr, addr, ETH_ALEN) == 0 &&
  217. os_memcmp(pbc->uuid_e, uuid_e, WPS_UUID_LEN) == 0) {
  218. if (prev)
  219. prev->next = pbc->next;
  220. else
  221. reg->pbc_sessions = pbc->next;
  222. break;
  223. }
  224. prev = pbc;
  225. pbc = pbc->next;
  226. }
  227. if (!pbc) {
  228. pbc = os_zalloc(sizeof(*pbc));
  229. if (pbc == NULL)
  230. return;
  231. os_memcpy(pbc->addr, addr, ETH_ALEN);
  232. if (uuid_e)
  233. os_memcpy(pbc->uuid_e, uuid_e, WPS_UUID_LEN);
  234. }
  235. pbc->next = reg->pbc_sessions;
  236. reg->pbc_sessions = pbc;
  237. pbc->timestamp = now;
  238. /* remove entries that have timed out */
  239. prev = pbc;
  240. pbc = pbc->next;
  241. while (pbc) {
  242. if (now.sec > pbc->timestamp.sec + WPS_PBC_WALK_TIME) {
  243. prev->next = NULL;
  244. wps_free_pbc_sessions(pbc);
  245. break;
  246. }
  247. prev = pbc;
  248. pbc = pbc->next;
  249. }
  250. }
  251. static void wps_registrar_remove_pbc_session(struct wps_registrar *reg,
  252. const u8 *addr, const u8 *uuid_e)
  253. {
  254. struct wps_pbc_session *pbc, *prev = NULL;
  255. pbc = reg->pbc_sessions;
  256. while (pbc) {
  257. if (os_memcmp(pbc->addr, addr, ETH_ALEN) == 0 &&
  258. os_memcmp(pbc->uuid_e, uuid_e, WPS_UUID_LEN) == 0) {
  259. if (prev)
  260. prev->next = pbc->next;
  261. else
  262. reg->pbc_sessions = pbc->next;
  263. os_free(pbc);
  264. break;
  265. }
  266. prev = pbc;
  267. pbc = pbc->next;
  268. }
  269. }
  270. int wps_registrar_pbc_overlap(struct wps_registrar *reg,
  271. const u8 *addr, const u8 *uuid_e)
  272. {
  273. int count = 0;
  274. struct wps_pbc_session *pbc;
  275. struct os_time now;
  276. os_get_time(&now);
  277. for (pbc = reg->pbc_sessions; pbc; pbc = pbc->next) {
  278. if (now.sec > pbc->timestamp.sec + WPS_PBC_WALK_TIME)
  279. break;
  280. if (addr == NULL || os_memcmp(addr, pbc->addr, ETH_ALEN) ||
  281. uuid_e == NULL ||
  282. os_memcmp(uuid_e, pbc->uuid_e, WPS_UUID_LEN))
  283. count++;
  284. }
  285. if (addr || uuid_e)
  286. count++;
  287. return count > 1 ? 1 : 0;
  288. }
  289. static int wps_build_wps_state(struct wps_context *wps, struct wpabuf *msg)
  290. {
  291. wpa_printf(MSG_DEBUG, "WPS: * Wi-Fi Protected Setup State (%d)",
  292. wps->wps_state);
  293. wpabuf_put_be16(msg, ATTR_WPS_STATE);
  294. wpabuf_put_be16(msg, 1);
  295. wpabuf_put_u8(msg, wps->wps_state);
  296. return 0;
  297. }
  298. #ifdef CONFIG_WPS_UPNP
  299. static void wps_registrar_free_pending_m2(struct wps_context *wps)
  300. {
  301. struct upnp_pending_message *p, *p2, *prev = NULL;
  302. p = wps->upnp_msgs;
  303. while (p) {
  304. if (p->type == WPS_M2 || p->type == WPS_M2D) {
  305. if (prev == NULL)
  306. wps->upnp_msgs = p->next;
  307. else
  308. prev->next = p->next;
  309. wpa_printf(MSG_DEBUG, "WPS UPnP: Drop pending M2/M2D");
  310. p2 = p;
  311. p = p->next;
  312. wpabuf_free(p2->msg);
  313. os_free(p2);
  314. continue;
  315. }
  316. prev = p;
  317. p = p->next;
  318. }
  319. }
  320. #endif /* CONFIG_WPS_UPNP */
  321. static int wps_build_ap_setup_locked(struct wps_context *wps,
  322. struct wpabuf *msg)
  323. {
  324. if (wps->ap_setup_locked) {
  325. wpa_printf(MSG_DEBUG, "WPS: * AP Setup Locked");
  326. wpabuf_put_be16(msg, ATTR_AP_SETUP_LOCKED);
  327. wpabuf_put_be16(msg, 1);
  328. wpabuf_put_u8(msg, 1);
  329. }
  330. return 0;
  331. }
  332. static int wps_build_selected_registrar(struct wps_registrar *reg,
  333. struct wpabuf *msg)
  334. {
  335. if (!reg->sel_reg_union)
  336. return 0;
  337. wpa_printf(MSG_DEBUG, "WPS: * Selected Registrar");
  338. wpabuf_put_be16(msg, ATTR_SELECTED_REGISTRAR);
  339. wpabuf_put_be16(msg, 1);
  340. wpabuf_put_u8(msg, 1);
  341. return 0;
  342. }
  343. static int wps_build_sel_reg_dev_password_id(struct wps_registrar *reg,
  344. struct wpabuf *msg)
  345. {
  346. u16 id = reg->pbc ? DEV_PW_PUSHBUTTON : DEV_PW_DEFAULT;
  347. if (!reg->sel_reg_union)
  348. return 0;
  349. if (reg->sel_reg_dev_password_id_override >= 0)
  350. id = reg->sel_reg_dev_password_id_override;
  351. wpa_printf(MSG_DEBUG, "WPS: * Device Password ID (%d)", id);
  352. wpabuf_put_be16(msg, ATTR_DEV_PASSWORD_ID);
  353. wpabuf_put_be16(msg, 2);
  354. wpabuf_put_be16(msg, id);
  355. return 0;
  356. }
  357. static void wps_set_pushbutton(u16 *methods, u16 conf_methods)
  358. {
  359. *methods |= WPS_CONFIG_PUSHBUTTON;
  360. #ifdef CONFIG_WPS2
  361. if (conf_methods & WPS_CONFIG_VIRT_PUSHBUTTON)
  362. *methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
  363. if (conf_methods & WPS_CONFIG_PHY_PUSHBUTTON)
  364. *methods |= WPS_CONFIG_PHY_PUSHBUTTON;
  365. if ((*methods & WPS_CONFIG_VIRT_PUSHBUTTON) !=
  366. WPS_CONFIG_VIRT_PUSHBUTTON ||
  367. (*methods & WPS_CONFIG_PHY_PUSHBUTTON) !=
  368. WPS_CONFIG_PHY_PUSHBUTTON) {
  369. /*
  370. * Required to include virtual/physical flag, but we were not
  371. * configured with push button type, so have to default to one
  372. * of them.
  373. */
  374. *methods |= WPS_CONFIG_PHY_PUSHBUTTON;
  375. }
  376. #endif /* CONFIG_WPS2 */
  377. }
  378. static int wps_build_sel_reg_config_methods(struct wps_registrar *reg,
  379. struct wpabuf *msg)
  380. {
  381. u16 methods;
  382. if (!reg->sel_reg_union)
  383. return 0;
  384. methods = reg->wps->config_methods;
  385. methods &= ~WPS_CONFIG_PUSHBUTTON;
  386. #ifdef CONFIG_WPS2
  387. methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
  388. WPS_CONFIG_PHY_PUSHBUTTON);
  389. #endif /* CONFIG_WPS2 */
  390. if (reg->pbc)
  391. wps_set_pushbutton(&methods, reg->wps->config_methods);
  392. if (reg->sel_reg_config_methods_override >= 0)
  393. methods = reg->sel_reg_config_methods_override;
  394. wpa_printf(MSG_DEBUG, "WPS: * Selected Registrar Config Methods (%x)",
  395. methods);
  396. wpabuf_put_be16(msg, ATTR_SELECTED_REGISTRAR_CONFIG_METHODS);
  397. wpabuf_put_be16(msg, 2);
  398. wpabuf_put_be16(msg, methods);
  399. return 0;
  400. }
  401. static int wps_build_probe_config_methods(struct wps_registrar *reg,
  402. struct wpabuf *msg)
  403. {
  404. u16 methods;
  405. /*
  406. * These are the methods that the AP supports as an Enrollee for adding
  407. * external Registrars.
  408. */
  409. methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
  410. #ifdef CONFIG_WPS2
  411. methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
  412. WPS_CONFIG_PHY_PUSHBUTTON);
  413. #endif /* CONFIG_WPS2 */
  414. wpa_printf(MSG_DEBUG, "WPS: * Config Methods (%x)", methods);
  415. wpabuf_put_be16(msg, ATTR_CONFIG_METHODS);
  416. wpabuf_put_be16(msg, 2);
  417. wpabuf_put_be16(msg, methods);
  418. return 0;
  419. }
  420. static int wps_build_config_methods_r(struct wps_registrar *reg,
  421. struct wpabuf *msg)
  422. {
  423. u16 methods;
  424. methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
  425. #ifdef CONFIG_WPS2
  426. methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
  427. WPS_CONFIG_PHY_PUSHBUTTON);
  428. #endif /* CONFIG_WPS2 */
  429. if (reg->pbc)
  430. wps_set_pushbutton(&methods, reg->wps->config_methods);
  431. return wps_build_config_methods(msg, methods);
  432. }
  433. const u8 * wps_authorized_macs(struct wps_registrar *reg, size_t *count)
  434. {
  435. *count = 0;
  436. #ifdef CONFIG_WPS2
  437. while (*count < WPS_MAX_AUTHORIZED_MACS) {
  438. if (is_zero_ether_addr(reg->authorized_macs_union[*count]))
  439. break;
  440. (*count)++;
  441. }
  442. #endif /* CONFIG_WPS2 */
  443. return (const u8 *) reg->authorized_macs_union;
  444. }
  445. /**
  446. * wps_registrar_init - Initialize WPS Registrar data
  447. * @wps: Pointer to longterm WPS context
  448. * @cfg: Registrar configuration
  449. * Returns: Pointer to allocated Registrar data or %NULL on failure
  450. *
  451. * This function is used to initialize WPS Registrar functionality. It can be
  452. * used for a single Registrar run (e.g., when run in a supplicant) or multiple
  453. * runs (e.g., when run as an internal Registrar in an AP). Caller is
  454. * responsible for freeing the returned data with wps_registrar_deinit() when
  455. * Registrar functionality is not needed anymore.
  456. */
  457. struct wps_registrar *
  458. wps_registrar_init(struct wps_context *wps,
  459. const struct wps_registrar_config *cfg)
  460. {
  461. struct wps_registrar *reg = os_zalloc(sizeof(*reg));
  462. if (reg == NULL)
  463. return NULL;
  464. dl_list_init(&reg->pins);
  465. reg->wps = wps;
  466. reg->new_psk_cb = cfg->new_psk_cb;
  467. reg->set_ie_cb = cfg->set_ie_cb;
  468. reg->pin_needed_cb = cfg->pin_needed_cb;
  469. reg->reg_success_cb = cfg->reg_success_cb;
  470. reg->set_sel_reg_cb = cfg->set_sel_reg_cb;
  471. reg->enrollee_seen_cb = cfg->enrollee_seen_cb;
  472. reg->cb_ctx = cfg->cb_ctx;
  473. reg->skip_cred_build = cfg->skip_cred_build;
  474. if (cfg->extra_cred) {
  475. reg->extra_cred = wpabuf_alloc_copy(cfg->extra_cred,
  476. cfg->extra_cred_len);
  477. if (reg->extra_cred == NULL) {
  478. os_free(reg);
  479. return NULL;
  480. }
  481. }
  482. reg->disable_auto_conf = cfg->disable_auto_conf;
  483. reg->sel_reg_dev_password_id_override = -1;
  484. reg->sel_reg_config_methods_override = -1;
  485. reg->static_wep_only = cfg->static_wep_only;
  486. if (wps_set_ie(reg)) {
  487. wps_registrar_deinit(reg);
  488. return NULL;
  489. }
  490. return reg;
  491. }
  492. /**
  493. * wps_registrar_deinit - Deinitialize WPS Registrar data
  494. * @reg: Registrar data from wps_registrar_init()
  495. */
  496. void wps_registrar_deinit(struct wps_registrar *reg)
  497. {
  498. if (reg == NULL)
  499. return;
  500. eloop_cancel_timeout(wps_registrar_pbc_timeout, reg, NULL);
  501. eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);
  502. wps_free_pins(&reg->pins);
  503. wps_free_pbc_sessions(reg->pbc_sessions);
  504. wpabuf_free(reg->extra_cred);
  505. wps_free_devices(reg->devices);
  506. os_free(reg);
  507. }
  508. /**
  509. * wps_registrar_add_pin - Configure a new PIN for Registrar
  510. * @reg: Registrar data from wps_registrar_init()
  511. * @addr: Enrollee MAC address or %NULL if not known
  512. * @uuid: UUID-E or %NULL for wildcard (any UUID)
  513. * @pin: PIN (Device Password)
  514. * @pin_len: Length of pin in octets
  515. * @timeout: Time (in seconds) when the PIN will be invalidated; 0 = no timeout
  516. * Returns: 0 on success, -1 on failure
  517. */
  518. int wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr,
  519. const u8 *uuid, const u8 *pin, size_t pin_len,
  520. int timeout)
  521. {
  522. struct wps_uuid_pin *p;
  523. p = os_zalloc(sizeof(*p));
  524. if (p == NULL)
  525. return -1;
  526. if (addr)
  527. os_memcpy(p->enrollee_addr, addr, ETH_ALEN);
  528. if (uuid == NULL)
  529. p->wildcard_uuid = 1;
  530. else
  531. os_memcpy(p->uuid, uuid, WPS_UUID_LEN);
  532. p->pin = os_malloc(pin_len);
  533. if (p->pin == NULL) {
  534. os_free(p);
  535. return -1;
  536. }
  537. os_memcpy(p->pin, pin, pin_len);
  538. p->pin_len = pin_len;
  539. if (timeout) {
  540. p->flags |= PIN_EXPIRES;
  541. os_get_time(&p->expiration);
  542. p->expiration.sec += timeout;
  543. }
  544. dl_list_add(&reg->pins, &p->list);
  545. wpa_printf(MSG_DEBUG, "WPS: A new PIN configured (timeout=%d)",
  546. timeout);
  547. wpa_hexdump(MSG_DEBUG, "WPS: UUID", uuid, WPS_UUID_LEN);
  548. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS: PIN", pin, pin_len);
  549. reg->selected_registrar = 1;
  550. reg->pbc = 0;
  551. if (addr)
  552. wps_registrar_add_authorized_mac(reg, addr);
  553. else
  554. wps_registrar_add_authorized_mac(
  555. reg, (u8 *) "\xff\xff\xff\xff\xff\xff");
  556. wps_registrar_selected_registrar_changed(reg);
  557. eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);
  558. eloop_register_timeout(WPS_PBC_WALK_TIME, 0,
  559. wps_registrar_set_selected_timeout,
  560. reg, NULL);
  561. return 0;
  562. }
  563. static void wps_registrar_expire_pins(struct wps_registrar *reg)
  564. {
  565. struct wps_uuid_pin *pin, *prev;
  566. struct os_time now;
  567. os_get_time(&now);
  568. dl_list_for_each_safe(pin, prev, &reg->pins, struct wps_uuid_pin, list)
  569. {
  570. if ((pin->flags & PIN_EXPIRES) &&
  571. os_time_before(&pin->expiration, &now)) {
  572. u8 *addr;
  573. u8 bcast[ETH_ALEN] =
  574. { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  575. wpa_hexdump(MSG_DEBUG, "WPS: Expired PIN for UUID",
  576. pin->uuid, WPS_UUID_LEN);
  577. if (is_zero_ether_addr(pin->enrollee_addr))
  578. addr = bcast;
  579. else
  580. addr = pin->enrollee_addr;
  581. wps_registrar_remove_authorized_mac(reg, addr);
  582. wps_remove_pin(pin);
  583. wps_registrar_selected_registrar_changed(reg);
  584. }
  585. }
  586. }
  587. /**
  588. * wps_registrar_invalidate_pin - Invalidate a PIN for a specific UUID-E
  589. * @reg: Registrar data from wps_registrar_init()
  590. * @uuid: UUID-E
  591. * Returns: 0 on success, -1 on failure (e.g., PIN not found)
  592. */
  593. int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid)
  594. {
  595. struct wps_uuid_pin *pin, *prev;
  596. dl_list_for_each_safe(pin, prev, &reg->pins, struct wps_uuid_pin, list)
  597. {
  598. if (os_memcmp(pin->uuid, uuid, WPS_UUID_LEN) == 0) {
  599. u8 *addr;
  600. u8 bcast[ETH_ALEN] =
  601. { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  602. wpa_hexdump(MSG_DEBUG, "WPS: Invalidated PIN for UUID",
  603. pin->uuid, WPS_UUID_LEN);
  604. if (is_zero_ether_addr(pin->enrollee_addr))
  605. addr = bcast;
  606. else
  607. addr = pin->enrollee_addr;
  608. wps_registrar_remove_authorized_mac(reg, addr);
  609. wps_remove_pin(pin);
  610. wps_registrar_selected_registrar_changed(reg);
  611. return 0;
  612. }
  613. }
  614. return -1;
  615. }
  616. static const u8 * wps_registrar_get_pin(struct wps_registrar *reg,
  617. const u8 *uuid, size_t *pin_len)
  618. {
  619. struct wps_uuid_pin *pin, *found = NULL;
  620. wps_registrar_expire_pins(reg);
  621. dl_list_for_each(pin, &reg->pins, struct wps_uuid_pin, list) {
  622. if (!pin->wildcard_uuid &&
  623. os_memcmp(pin->uuid, uuid, WPS_UUID_LEN) == 0) {
  624. found = pin;
  625. break;
  626. }
  627. }
  628. if (!found) {
  629. /* Check for wildcard UUIDs since none of the UUID-specific
  630. * PINs matched */
  631. dl_list_for_each(pin, &reg->pins, struct wps_uuid_pin, list) {
  632. if (pin->wildcard_uuid == 1) {
  633. wpa_printf(MSG_DEBUG, "WPS: Found a wildcard "
  634. "PIN. Assigned it for this UUID-E");
  635. pin->wildcard_uuid = 2;
  636. os_memcpy(pin->uuid, uuid, WPS_UUID_LEN);
  637. found = pin;
  638. break;
  639. }
  640. }
  641. }
  642. if (!found)
  643. return NULL;
  644. /*
  645. * Lock the PIN to avoid attacks based on concurrent re-use of the PIN
  646. * that could otherwise avoid PIN invalidations.
  647. */
  648. if (found->flags & PIN_LOCKED) {
  649. wpa_printf(MSG_DEBUG, "WPS: Selected PIN locked - do not "
  650. "allow concurrent re-use");
  651. return NULL;
  652. }
  653. *pin_len = found->pin_len;
  654. found->flags |= PIN_LOCKED;
  655. return found->pin;
  656. }
  657. /**
  658. * wps_registrar_unlock_pin - Unlock a PIN for a specific UUID-E
  659. * @reg: Registrar data from wps_registrar_init()
  660. * @uuid: UUID-E
  661. * Returns: 0 on success, -1 on failure
  662. *
  663. * PINs are locked to enforce only one concurrent use. This function unlocks a
  664. * PIN to allow it to be used again. If the specified PIN was configured using
  665. * a wildcard UUID, it will be removed instead of allowing multiple uses.
  666. */
  667. int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid)
  668. {
  669. struct wps_uuid_pin *pin;
  670. dl_list_for_each(pin, &reg->pins, struct wps_uuid_pin, list) {
  671. if (os_memcmp(pin->uuid, uuid, WPS_UUID_LEN) == 0) {
  672. if (pin->wildcard_uuid == 2) {
  673. wpa_printf(MSG_DEBUG, "WPS: Invalidating used "
  674. "wildcard PIN");
  675. return wps_registrar_invalidate_pin(reg, uuid);
  676. }
  677. pin->flags &= ~PIN_LOCKED;
  678. return 0;
  679. }
  680. }
  681. return -1;
  682. }
  683. static void wps_registrar_stop_pbc(struct wps_registrar *reg)
  684. {
  685. reg->selected_registrar = 0;
  686. reg->pbc = 0;
  687. wps_registrar_selected_registrar_changed(reg);
  688. }
  689. static void wps_registrar_pbc_timeout(void *eloop_ctx, void *timeout_ctx)
  690. {
  691. struct wps_registrar *reg = eloop_ctx;
  692. wpa_printf(MSG_DEBUG, "WPS: PBC timed out - disable PBC mode");
  693. wps_pbc_timeout_event(reg->wps);
  694. wps_registrar_stop_pbc(reg);
  695. }
  696. /**
  697. * wps_registrar_button_pushed - Notify Registrar that AP button was pushed
  698. * @reg: Registrar data from wps_registrar_init()
  699. * Returns: 0 on success, -1 on failure
  700. *
  701. * This function is called on an AP when a push button is pushed to activate
  702. * PBC mode. The PBC mode will be stopped after walk time (2 minutes) timeout
  703. * or when a PBC registration is completed.
  704. */
  705. int wps_registrar_button_pushed(struct wps_registrar *reg)
  706. {
  707. if (wps_registrar_pbc_overlap(reg, NULL, NULL)) {
  708. wpa_printf(MSG_DEBUG, "WPS: PBC overlap - do not start PBC "
  709. "mode");
  710. wps_pbc_overlap_event(reg->wps);
  711. return -1;
  712. }
  713. wpa_printf(MSG_DEBUG, "WPS: Button pushed - PBC mode started");
  714. reg->force_pbc_overlap = 0;
  715. reg->selected_registrar = 1;
  716. reg->pbc = 1;
  717. wps_registrar_selected_registrar_changed(reg);
  718. eloop_cancel_timeout(wps_registrar_pbc_timeout, reg, NULL);
  719. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wps_registrar_pbc_timeout,
  720. reg, NULL);
  721. return 0;
  722. }
  723. static void wps_registrar_pbc_completed(struct wps_registrar *reg)
  724. {
  725. wpa_printf(MSG_DEBUG, "WPS: PBC completed - stopping PBC mode");
  726. eloop_cancel_timeout(wps_registrar_pbc_timeout, reg, NULL);
  727. wps_registrar_stop_pbc(reg);
  728. }
  729. static void wps_registrar_pin_completed(struct wps_registrar *reg)
  730. {
  731. wpa_printf(MSG_DEBUG, "WPS: PIN completed using internal Registrar");
  732. eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);
  733. reg->selected_registrar = 0;
  734. wps_registrar_selected_registrar_changed(reg);
  735. }
  736. /**
  737. * wps_registrar_probe_req_rx - Notify Registrar of Probe Request
  738. * @reg: Registrar data from wps_registrar_init()
  739. * @addr: MAC address of the Probe Request sender
  740. * @wps_data: WPS IE contents
  741. *
  742. * This function is called on an AP when a Probe Request with WPS IE is
  743. * received. This is used to track PBC mode use and to detect possible overlap
  744. * situation with other WPS APs.
  745. */
  746. void wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr,
  747. const struct wpabuf *wps_data)
  748. {
  749. struct wps_parse_attr attr;
  750. wpa_hexdump_buf(MSG_MSGDUMP,
  751. "WPS: Probe Request with WPS data received",
  752. wps_data);
  753. if (wps_parse_msg(wps_data, &attr) < 0)
  754. return;
  755. if (attr.config_methods == NULL) {
  756. wpa_printf(MSG_DEBUG, "WPS: No Config Methods attribute in "
  757. "Probe Request");
  758. return;
  759. }
  760. if (attr.dev_password_id == NULL) {
  761. wpa_printf(MSG_DEBUG, "WPS: No Device Password Id attribute "
  762. "in Probe Request");
  763. return;
  764. }
  765. if (reg->enrollee_seen_cb && attr.uuid_e &&
  766. attr.primary_dev_type && attr.request_type) {
  767. char *dev_name = NULL;
  768. if (attr.dev_name) {
  769. dev_name = os_zalloc(attr.dev_name_len + 1);
  770. if (dev_name) {
  771. os_memcpy(dev_name, attr.dev_name,
  772. attr.dev_name_len);
  773. }
  774. }
  775. reg->enrollee_seen_cb(reg->cb_ctx, addr, attr.uuid_e,
  776. attr.primary_dev_type,
  777. WPA_GET_BE16(attr.config_methods),
  778. WPA_GET_BE16(attr.dev_password_id),
  779. *attr.request_type, dev_name);
  780. os_free(dev_name);
  781. }
  782. if (WPA_GET_BE16(attr.dev_password_id) != DEV_PW_PUSHBUTTON)
  783. return; /* Not PBC */
  784. wpa_printf(MSG_DEBUG, "WPS: Probe Request for PBC received from "
  785. MACSTR, MAC2STR(addr));
  786. if (attr.uuid_e == NULL) {
  787. wpa_printf(MSG_DEBUG, "WPS: Invalid Probe Request WPS IE: No "
  788. "UUID-E included");
  789. return;
  790. }
  791. wps_registrar_add_pbc_session(reg, addr, attr.uuid_e);
  792. if (wps_registrar_pbc_overlap(reg, addr, attr.uuid_e)) {
  793. wpa_printf(MSG_DEBUG, "WPS: PBC session overlap detected");
  794. reg->force_pbc_overlap = 1;
  795. wps_pbc_overlap_event(reg->wps);
  796. }
  797. }
  798. static int wps_cb_new_psk(struct wps_registrar *reg, const u8 *mac_addr,
  799. const u8 *psk, size_t psk_len)
  800. {
  801. if (reg->new_psk_cb == NULL)
  802. return 0;
  803. return reg->new_psk_cb(reg->cb_ctx, mac_addr, psk, psk_len);
  804. }
  805. static void wps_cb_pin_needed(struct wps_registrar *reg, const u8 *uuid_e,
  806. const struct wps_device_data *dev)
  807. {
  808. if (reg->pin_needed_cb == NULL)
  809. return;
  810. reg->pin_needed_cb(reg->cb_ctx, uuid_e, dev);
  811. }
  812. static void wps_cb_reg_success(struct wps_registrar *reg, const u8 *mac_addr,
  813. const u8 *uuid_e)
  814. {
  815. if (reg->reg_success_cb == NULL)
  816. return;
  817. reg->reg_success_cb(reg->cb_ctx, mac_addr, uuid_e);
  818. }
  819. static int wps_cb_set_ie(struct wps_registrar *reg, struct wpabuf *beacon_ie,
  820. struct wpabuf *probe_resp_ie)
  821. {
  822. return reg->set_ie_cb(reg->cb_ctx, beacon_ie, probe_resp_ie);
  823. }
  824. static void wps_cb_set_sel_reg(struct wps_registrar *reg)
  825. {
  826. u16 methods = 0;
  827. if (reg->set_sel_reg_cb == NULL)
  828. return;
  829. if (reg->selected_registrar) {
  830. methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
  831. #ifdef CONFIG_WPS2
  832. methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
  833. WPS_CONFIG_PHY_PUSHBUTTON);
  834. #endif /* CONFIG_WPS2 */
  835. if (reg->pbc)
  836. wps_set_pushbutton(&methods, reg->wps->config_methods);
  837. }
  838. wpa_printf(MSG_DEBUG, "WPS: wps_cb_set_sel_reg: sel_reg=%d "
  839. "config_methods=0x%x pbc=%d methods=0x%x",
  840. reg->selected_registrar, reg->wps->config_methods,
  841. reg->pbc, methods);
  842. reg->set_sel_reg_cb(reg->cb_ctx, reg->selected_registrar,
  843. reg->pbc ? DEV_PW_PUSHBUTTON : DEV_PW_DEFAULT,
  844. methods);
  845. }
  846. static int wps_set_ie(struct wps_registrar *reg)
  847. {
  848. struct wpabuf *beacon;
  849. struct wpabuf *probe;
  850. const u8 *auth_macs;
  851. size_t count;
  852. if (reg->set_ie_cb == NULL)
  853. return 0;
  854. beacon = wpabuf_alloc(400);
  855. if (beacon == NULL)
  856. return -1;
  857. probe = wpabuf_alloc(500);
  858. if (probe == NULL) {
  859. wpabuf_free(beacon);
  860. return -1;
  861. }
  862. auth_macs = wps_authorized_macs(reg, &count);
  863. wpa_printf(MSG_DEBUG, "WPS: Build Beacon IEs");
  864. if (wps_build_version(beacon) ||
  865. wps_build_wps_state(reg->wps, beacon) ||
  866. wps_build_ap_setup_locked(reg->wps, beacon) ||
  867. wps_build_selected_registrar(reg, beacon) ||
  868. wps_build_sel_reg_dev_password_id(reg, beacon) ||
  869. wps_build_sel_reg_config_methods(reg, beacon) ||
  870. wps_build_wfa_ext(beacon, 0, auth_macs, count)) {
  871. wpabuf_free(beacon);
  872. wpabuf_free(probe);
  873. return -1;
  874. }
  875. wpa_printf(MSG_DEBUG, "WPS: Build Probe Response IEs");
  876. if (wps_build_version(probe) ||
  877. wps_build_wps_state(reg->wps, probe) ||
  878. wps_build_ap_setup_locked(reg->wps, probe) ||
  879. wps_build_selected_registrar(reg, probe) ||
  880. wps_build_sel_reg_dev_password_id(reg, probe) ||
  881. wps_build_sel_reg_config_methods(reg, probe) ||
  882. wps_build_resp_type(probe, reg->wps->ap ? WPS_RESP_AP :
  883. WPS_RESP_REGISTRAR) ||
  884. wps_build_uuid_e(probe, reg->wps->uuid) ||
  885. wps_build_device_attrs(&reg->wps->dev, probe) ||
  886. wps_build_probe_config_methods(reg, probe) ||
  887. wps_build_rf_bands(&reg->wps->dev, probe) ||
  888. wps_build_wfa_ext(probe, 0, auth_macs, count)) {
  889. wpabuf_free(beacon);
  890. wpabuf_free(probe);
  891. return -1;
  892. }
  893. #ifdef CONFIG_P2P
  894. if (wps_build_dev_name(&reg->wps->dev, beacon) ||
  895. wps_build_primary_dev_type(&reg->wps->dev, beacon)) {
  896. wpabuf_free(beacon);
  897. wpabuf_free(probe);
  898. return -1;
  899. }
  900. #endif /* CONFIG_P2P */
  901. beacon = wps_ie_encapsulate(beacon);
  902. probe = wps_ie_encapsulate(probe);
  903. if (!beacon || !probe) {
  904. wpabuf_free(beacon);
  905. wpabuf_free(probe);
  906. return -1;
  907. }
  908. if (reg->static_wep_only) {
  909. /*
  910. * Windows XP and Vista clients can get confused about
  911. * EAP-Identity/Request when they probe the network with
  912. * EAPOL-Start. In such a case, they may assume the network is
  913. * using IEEE 802.1X and prompt user for a certificate while
  914. * the correct (non-WPS) behavior would be to ask for the
  915. * static WEP key. As a workaround, use Microsoft Provisioning
  916. * IE to advertise that legacy 802.1X is not supported.
  917. */
  918. const u8 ms_wps[7] = {
  919. WLAN_EID_VENDOR_SPECIFIC, 5,
  920. /* Microsoft Provisioning IE (00:50:f2:5) */
  921. 0x00, 0x50, 0xf2, 5,
  922. 0x00 /* no legacy 802.1X or MS WPS */
  923. };
  924. wpa_printf(MSG_DEBUG, "WPS: Add Microsoft Provisioning IE "
  925. "into Beacon/Probe Response frames");
  926. wpabuf_put_data(beacon, ms_wps, sizeof(ms_wps));
  927. wpabuf_put_data(probe, ms_wps, sizeof(ms_wps));
  928. }
  929. return wps_cb_set_ie(reg, beacon, probe);
  930. }
  931. static int wps_get_dev_password(struct wps_data *wps)
  932. {
  933. const u8 *pin;
  934. size_t pin_len = 0;
  935. os_free(wps->dev_password);
  936. wps->dev_password = NULL;
  937. if (wps->pbc) {
  938. wpa_printf(MSG_DEBUG, "WPS: Use default PIN for PBC");
  939. pin = (const u8 *) "00000000";
  940. pin_len = 8;
  941. } else {
  942. pin = wps_registrar_get_pin(wps->wps->registrar, wps->uuid_e,
  943. &pin_len);
  944. }
  945. if (pin == NULL) {
  946. wpa_printf(MSG_DEBUG, "WPS: No Device Password available for "
  947. "the Enrollee");
  948. wps_cb_pin_needed(wps->wps->registrar, wps->uuid_e,
  949. &wps->peer_dev);
  950. return -1;
  951. }
  952. wps->dev_password = os_malloc(pin_len);
  953. if (wps->dev_password == NULL)
  954. return -1;
  955. os_memcpy(wps->dev_password, pin, pin_len);
  956. wps->dev_password_len = pin_len;
  957. return 0;
  958. }
  959. static int wps_build_uuid_r(struct wps_data *wps, struct wpabuf *msg)
  960. {
  961. wpa_printf(MSG_DEBUG, "WPS: * UUID-R");
  962. wpabuf_put_be16(msg, ATTR_UUID_R);
  963. wpabuf_put_be16(msg, WPS_UUID_LEN);
  964. wpabuf_put_data(msg, wps->uuid_r, WPS_UUID_LEN);
  965. return 0;
  966. }
  967. static int wps_build_r_hash(struct wps_data *wps, struct wpabuf *msg)
  968. {
  969. u8 *hash;
  970. const u8 *addr[4];
  971. size_t len[4];
  972. if (os_get_random(wps->snonce, 2 * WPS_SECRET_NONCE_LEN) < 0)
  973. return -1;
  974. wpa_hexdump(MSG_DEBUG, "WPS: R-S1", wps->snonce, WPS_SECRET_NONCE_LEN);
  975. wpa_hexdump(MSG_DEBUG, "WPS: R-S2",
  976. wps->snonce + WPS_SECRET_NONCE_LEN, WPS_SECRET_NONCE_LEN);
  977. if (wps->dh_pubkey_e == NULL || wps->dh_pubkey_r == NULL) {
  978. wpa_printf(MSG_DEBUG, "WPS: DH public keys not available for "
  979. "R-Hash derivation");
  980. return -1;
  981. }
  982. wpa_printf(MSG_DEBUG, "WPS: * R-Hash1");
  983. wpabuf_put_be16(msg, ATTR_R_HASH1);
  984. wpabuf_put_be16(msg, SHA256_MAC_LEN);
  985. hash = wpabuf_put(msg, SHA256_MAC_LEN);
  986. /* R-Hash1 = HMAC_AuthKey(R-S1 || PSK1 || PK_E || PK_R) */
  987. addr[0] = wps->snonce;
  988. len[0] = WPS_SECRET_NONCE_LEN;
  989. addr[1] = wps->psk1;
  990. len[1] = WPS_PSK_LEN;
  991. addr[2] = wpabuf_head(wps->dh_pubkey_e);
  992. len[2] = wpabuf_len(wps->dh_pubkey_e);
  993. addr[3] = wpabuf_head(wps->dh_pubkey_r);
  994. len[3] = wpabuf_len(wps->dh_pubkey_r);
  995. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  996. wpa_hexdump(MSG_DEBUG, "WPS: R-Hash1", hash, SHA256_MAC_LEN);
  997. wpa_printf(MSG_DEBUG, "WPS: * R-Hash2");
  998. wpabuf_put_be16(msg, ATTR_R_HASH2);
  999. wpabuf_put_be16(msg, SHA256_MAC_LEN);
  1000. hash = wpabuf_put(msg, SHA256_MAC_LEN);
  1001. /* R-Hash2 = HMAC_AuthKey(R-S2 || PSK2 || PK_E || PK_R) */
  1002. addr[0] = wps->snonce + WPS_SECRET_NONCE_LEN;
  1003. addr[1] = wps->psk2;
  1004. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  1005. wpa_hexdump(MSG_DEBUG, "WPS: R-Hash2", hash, SHA256_MAC_LEN);
  1006. return 0;
  1007. }
  1008. static int wps_build_r_snonce1(struct wps_data *wps, struct wpabuf *msg)
  1009. {
  1010. wpa_printf(MSG_DEBUG, "WPS: * R-SNonce1");
  1011. wpabuf_put_be16(msg, ATTR_R_SNONCE1);
  1012. wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
  1013. wpabuf_put_data(msg, wps->snonce, WPS_SECRET_NONCE_LEN);
  1014. return 0;
  1015. }
  1016. static int wps_build_r_snonce2(struct wps_data *wps, struct wpabuf *msg)
  1017. {
  1018. wpa_printf(MSG_DEBUG, "WPS: * R-SNonce2");
  1019. wpabuf_put_be16(msg, ATTR_R_SNONCE2);
  1020. wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
  1021. wpabuf_put_data(msg, wps->snonce + WPS_SECRET_NONCE_LEN,
  1022. WPS_SECRET_NONCE_LEN);
  1023. return 0;
  1024. }
  1025. static int wps_build_cred_network_idx(struct wpabuf *msg,
  1026. const struct wps_credential *cred)
  1027. {
  1028. wpa_printf(MSG_DEBUG, "WPS: * Network Index");
  1029. wpabuf_put_be16(msg, ATTR_NETWORK_INDEX);
  1030. wpabuf_put_be16(msg, 1);
  1031. wpabuf_put_u8(msg, 1);
  1032. return 0;
  1033. }
  1034. static int wps_build_cred_ssid(struct wpabuf *msg,
  1035. const struct wps_credential *cred)
  1036. {
  1037. wpa_printf(MSG_DEBUG, "WPS: * SSID");
  1038. wpabuf_put_be16(msg, ATTR_SSID);
  1039. wpabuf_put_be16(msg, cred->ssid_len);
  1040. wpabuf_put_data(msg, cred->ssid, cred->ssid_len);
  1041. return 0;
  1042. }
  1043. static int wps_build_cred_auth_type(struct wpabuf *msg,
  1044. const struct wps_credential *cred)
  1045. {
  1046. wpa_printf(MSG_DEBUG, "WPS: * Authentication Type (0x%x)",
  1047. cred->auth_type);
  1048. wpabuf_put_be16(msg, ATTR_AUTH_TYPE);
  1049. wpabuf_put_be16(msg, 2);
  1050. wpabuf_put_be16(msg, cred->auth_type);
  1051. return 0;
  1052. }
  1053. static int wps_build_cred_encr_type(struct wpabuf *msg,
  1054. const struct wps_credential *cred)
  1055. {
  1056. wpa_printf(MSG_DEBUG, "WPS: * Encryption Type (0x%x)",
  1057. cred->encr_type);
  1058. wpabuf_put_be16(msg, ATTR_ENCR_TYPE);
  1059. wpabuf_put_be16(msg, 2);
  1060. wpabuf_put_be16(msg, cred->encr_type);
  1061. return 0;
  1062. }
  1063. static int wps_build_cred_network_key(struct wpabuf *msg,
  1064. const struct wps_credential *cred)
  1065. {
  1066. wpa_printf(MSG_DEBUG, "WPS: * Network Key (len=%d)",
  1067. (int) cred->key_len);
  1068. wpabuf_put_be16(msg, ATTR_NETWORK_KEY);
  1069. wpabuf_put_be16(msg, cred->key_len);
  1070. wpabuf_put_data(msg, cred->key, cred->key_len);
  1071. return 0;
  1072. }
  1073. static int wps_build_cred_mac_addr(struct wpabuf *msg,
  1074. const struct wps_credential *cred)
  1075. {
  1076. wpa_printf(MSG_DEBUG, "WPS: * MAC Address (" MACSTR ")",
  1077. MAC2STR(cred->mac_addr));
  1078. wpabuf_put_be16(msg, ATTR_MAC_ADDR);
  1079. wpabuf_put_be16(msg, ETH_ALEN);
  1080. wpabuf_put_data(msg, cred->mac_addr, ETH_ALEN);
  1081. return 0;
  1082. }
  1083. static int wps_build_credential(struct wpabuf *msg,
  1084. const struct wps_credential *cred)
  1085. {
  1086. if (wps_build_cred_network_idx(msg, cred) ||
  1087. wps_build_cred_ssid(msg, cred) ||
  1088. wps_build_cred_auth_type(msg, cred) ||
  1089. wps_build_cred_encr_type(msg, cred) ||
  1090. wps_build_cred_network_key(msg, cred) ||
  1091. wps_build_cred_mac_addr(msg, cred))
  1092. return -1;
  1093. return 0;
  1094. }
  1095. int wps_build_cred(struct wps_data *wps, struct wpabuf *msg)
  1096. {
  1097. struct wpabuf *cred;
  1098. if (wps->wps->registrar->skip_cred_build)
  1099. goto skip_cred_build;
  1100. wpa_printf(MSG_DEBUG, "WPS: * Credential");
  1101. if (wps->use_cred) {
  1102. os_memcpy(&wps->cred, wps->use_cred, sizeof(wps->cred));
  1103. goto use_provided;
  1104. }
  1105. os_memset(&wps->cred, 0, sizeof(wps->cred));
  1106. os_memcpy(wps->cred.ssid, wps->wps->ssid, wps->wps->ssid_len);
  1107. wps->cred.ssid_len = wps->wps->ssid_len;
  1108. /* Select the best authentication and encryption type */
  1109. if (wps->auth_type & WPS_AUTH_WPA2PSK)
  1110. wps->auth_type = WPS_AUTH_WPA2PSK;
  1111. else if (wps->auth_type & WPS_AUTH_WPAPSK)
  1112. wps->auth_type = WPS_AUTH_WPAPSK;
  1113. else if (wps->auth_type & WPS_AUTH_OPEN)
  1114. wps->auth_type = WPS_AUTH_OPEN;
  1115. else if (wps->auth_type & WPS_AUTH_SHARED)
  1116. wps->auth_type = WPS_AUTH_SHARED;
  1117. else {
  1118. wpa_printf(MSG_DEBUG, "WPS: Unsupported auth_type 0x%x",
  1119. wps->auth_type);
  1120. return -1;
  1121. }
  1122. wps->cred.auth_type = wps->auth_type;
  1123. if (wps->auth_type == WPS_AUTH_WPA2PSK ||
  1124. wps->auth_type == WPS_AUTH_WPAPSK) {
  1125. if (wps->encr_type & WPS_ENCR_AES)
  1126. wps->encr_type = WPS_ENCR_AES;
  1127. else if (wps->encr_type & WPS_ENCR_TKIP)
  1128. wps->encr_type = WPS_ENCR_TKIP;
  1129. else {
  1130. wpa_printf(MSG_DEBUG, "WPS: No suitable encryption "
  1131. "type for WPA/WPA2");
  1132. return -1;
  1133. }
  1134. } else {
  1135. if (wps->encr_type & WPS_ENCR_WEP)
  1136. wps->encr_type = WPS_ENCR_WEP;
  1137. else if (wps->encr_type & WPS_ENCR_NONE)
  1138. wps->encr_type = WPS_ENCR_NONE;
  1139. else {
  1140. wpa_printf(MSG_DEBUG, "WPS: No suitable encryption "
  1141. "type for non-WPA/WPA2 mode");
  1142. return -1;
  1143. }
  1144. }
  1145. wps->cred.encr_type = wps->encr_type;
  1146. /*
  1147. * Set MAC address in the Credential to be the Enrollee's MAC address
  1148. */
  1149. os_memcpy(wps->cred.mac_addr, wps->mac_addr_e, ETH_ALEN);
  1150. if (wps->wps->wps_state == WPS_STATE_NOT_CONFIGURED && wps->wps->ap &&
  1151. !wps->wps->registrar->disable_auto_conf) {
  1152. u8 r[16];
  1153. /* Generate a random passphrase */
  1154. if (os_get_random(r, sizeof(r)) < 0)
  1155. return -1;
  1156. os_free(wps->new_psk);
  1157. wps->new_psk = base64_encode(r, sizeof(r), &wps->new_psk_len);
  1158. if (wps->new_psk == NULL)
  1159. return -1;
  1160. wps->new_psk_len--; /* remove newline */
  1161. while (wps->new_psk_len &&
  1162. wps->new_psk[wps->new_psk_len - 1] == '=')
  1163. wps->new_psk_len--;
  1164. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS: Generated passphrase",
  1165. wps->new_psk, wps->new_psk_len);
  1166. os_memcpy(wps->cred.key, wps->new_psk, wps->new_psk_len);
  1167. wps->cred.key_len = wps->new_psk_len;
  1168. } else if (wps->use_psk_key && wps->wps->psk_set) {
  1169. char hex[65];
  1170. wpa_printf(MSG_DEBUG, "WPS: Use PSK format for Network Key");
  1171. wpa_snprintf_hex(hex, sizeof(hex), wps->wps->psk, 32);
  1172. os_memcpy(wps->cred.key, hex, 32 * 2);
  1173. wps->cred.key_len = 32 * 2;
  1174. } else if (wps->wps->network_key) {
  1175. os_memcpy(wps->cred.key, wps->wps->network_key,
  1176. wps->wps->network_key_len);
  1177. wps->cred.key_len = wps->wps->network_key_len;
  1178. } else if (wps->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
  1179. char hex[65];
  1180. /* Generate a random per-device PSK */
  1181. os_free(wps->new_psk);
  1182. wps->new_psk_len = 32;
  1183. wps->new_psk = os_malloc(wps->new_psk_len);
  1184. if (wps->new_psk == NULL)
  1185. return -1;
  1186. if (os_get_random(wps->new_psk, wps->new_psk_len) < 0) {
  1187. os_free(wps->new_psk);
  1188. wps->new_psk = NULL;
  1189. return -1;
  1190. }
  1191. wpa_hexdump_key(MSG_DEBUG, "WPS: Generated per-device PSK",
  1192. wps->new_psk, wps->new_psk_len);
  1193. wpa_snprintf_hex(hex, sizeof(hex), wps->new_psk,
  1194. wps->new_psk_len);
  1195. os_memcpy(wps->cred.key, hex, wps->new_psk_len * 2);
  1196. wps->cred.key_len = wps->new_psk_len * 2;
  1197. }
  1198. use_provided:
  1199. #ifdef CONFIG_WPS_TESTING_EXTRA_CRED
  1200. cred = wpabuf_alloc(200);
  1201. if (cred) {
  1202. struct wps_credential dummy;
  1203. wpa_printf(MSG_DEBUG, "WPS: Add dummy credential");
  1204. os_memset(&dummy, 0, sizeof(dummy));
  1205. os_memcpy(dummy.ssid, "dummy", 5);
  1206. dummy.ssid_len = 5;
  1207. dummy.auth_type = WPS_AUTH_WPA2PSK;
  1208. dummy.encr_type = WPS_ENCR_AES;
  1209. os_memcpy(dummy.key, "dummy psk", 9);
  1210. dummy.key_len = 9;
  1211. os_memcpy(dummy.mac_addr, wps->mac_addr_e, ETH_ALEN);
  1212. wps_build_credential(cred, &dummy);
  1213. wpa_hexdump_buf(MSG_DEBUG, "WPS: Dummy Credential", cred);
  1214. wpabuf_put_be16(msg, ATTR_CRED);
  1215. wpabuf_put_be16(msg, wpabuf_len(cred));
  1216. wpabuf_put_buf(msg, cred);
  1217. wpabuf_free(cred);
  1218. }
  1219. #endif /* CONFIG_WPS_TESTING_EXTRA_CRED */
  1220. cred = wpabuf_alloc(200);
  1221. if (cred == NULL)
  1222. return -1;
  1223. if (wps_build_credential(cred, &wps->cred)) {
  1224. wpabuf_free(cred);
  1225. return -1;
  1226. }
  1227. wpabuf_put_be16(msg, ATTR_CRED);
  1228. wpabuf_put_be16(msg, wpabuf_len(cred));
  1229. wpabuf_put_buf(msg, cred);
  1230. wpabuf_free(cred);
  1231. skip_cred_build:
  1232. if (wps->wps->registrar->extra_cred) {
  1233. wpa_printf(MSG_DEBUG, "WPS: * Credential (pre-configured)");
  1234. wpabuf_put_buf(msg, wps->wps->registrar->extra_cred);
  1235. }
  1236. return 0;
  1237. }
  1238. static int wps_build_ap_settings(struct wps_data *wps, struct wpabuf *msg)
  1239. {
  1240. wpa_printf(MSG_DEBUG, "WPS: * AP Settings");
  1241. if (wps_build_credential(msg, &wps->cred))
  1242. return -1;
  1243. return 0;
  1244. }
  1245. static struct wpabuf * wps_build_m2(struct wps_data *wps)
  1246. {
  1247. struct wpabuf *msg;
  1248. if (os_get_random(wps->nonce_r, WPS_NONCE_LEN) < 0)
  1249. return NULL;
  1250. wpa_hexdump(MSG_DEBUG, "WPS: Registrar Nonce",
  1251. wps->nonce_r, WPS_NONCE_LEN);
  1252. wpa_hexdump(MSG_DEBUG, "WPS: UUID-R", wps->uuid_r, WPS_UUID_LEN);
  1253. wpa_printf(MSG_DEBUG, "WPS: Building Message M2");
  1254. msg = wpabuf_alloc(1000);
  1255. if (msg == NULL)
  1256. return NULL;
  1257. if (wps_build_version(msg) ||
  1258. wps_build_msg_type(msg, WPS_M2) ||
  1259. wps_build_enrollee_nonce(wps, msg) ||
  1260. wps_build_registrar_nonce(wps, msg) ||
  1261. wps_build_uuid_r(wps, msg) ||
  1262. wps_build_public_key(wps, msg) ||
  1263. wps_derive_keys(wps) ||
  1264. wps_build_auth_type_flags(wps, msg) ||
  1265. wps_build_encr_type_flags(wps, msg) ||
  1266. wps_build_conn_type_flags(wps, msg) ||
  1267. wps_build_config_methods_r(wps->wps->registrar, msg) ||
  1268. wps_build_device_attrs(&wps->wps->dev, msg) ||
  1269. wps_build_rf_bands(&wps->wps->dev, msg) ||
  1270. wps_build_assoc_state(wps, msg) ||
  1271. wps_build_config_error(msg, WPS_CFG_NO_ERROR) ||
  1272. wps_build_dev_password_id(msg, wps->dev_pw_id) ||
  1273. wps_build_os_version(&wps->wps->dev, msg) ||
  1274. wps_build_wfa_ext(msg, 0, NULL, 0) ||
  1275. wps_build_authenticator(wps, msg)) {
  1276. wpabuf_free(msg);
  1277. return NULL;
  1278. }
  1279. wps->int_reg = 1;
  1280. wps->state = RECV_M3;
  1281. return msg;
  1282. }
  1283. static struct wpabuf * wps_build_m2d(struct wps_data *wps)
  1284. {
  1285. struct wpabuf *msg;
  1286. u16 err = wps->config_error;
  1287. wpa_printf(MSG_DEBUG, "WPS: Building Message M2D");
  1288. msg = wpabuf_alloc(1000);
  1289. if (msg == NULL)
  1290. return NULL;
  1291. if (wps->wps->ap && wps->wps->ap_setup_locked &&
  1292. err == WPS_CFG_NO_ERROR)
  1293. err = WPS_CFG_SETUP_LOCKED;
  1294. if (wps_build_version(msg) ||
  1295. wps_build_msg_type(msg, WPS_M2D) ||
  1296. wps_build_enrollee_nonce(wps, msg) ||
  1297. wps_build_registrar_nonce(wps, msg) ||
  1298. wps_build_uuid_r(wps, msg) ||
  1299. wps_build_auth_type_flags(wps, msg) ||
  1300. wps_build_encr_type_flags(wps, msg) ||
  1301. wps_build_conn_type_flags(wps, msg) ||
  1302. wps_build_config_methods_r(wps->wps->registrar, msg) ||
  1303. wps_build_device_attrs(&wps->wps->dev, msg) ||
  1304. wps_build_rf_bands(&wps->wps->dev, msg) ||
  1305. wps_build_assoc_state(wps, msg) ||
  1306. wps_build_config_error(msg, err) ||
  1307. wps_build_os_version(&wps->wps->dev, msg) ||
  1308. wps_build_wfa_ext(msg, 0, NULL, 0)) {
  1309. wpabuf_free(msg);
  1310. return NULL;
  1311. }
  1312. wps->state = RECV_M2D_ACK;
  1313. return msg;
  1314. }
  1315. static struct wpabuf * wps_build_m4(struct wps_data *wps)
  1316. {
  1317. struct wpabuf *msg, *plain;
  1318. wpa_printf(MSG_DEBUG, "WPS: Building Message M4");
  1319. wps_derive_psk(wps, wps->dev_password, wps->dev_password_len);
  1320. plain = wpabuf_alloc(200);
  1321. if (plain == NULL)
  1322. return NULL;
  1323. msg = wpabuf_alloc(1000);
  1324. if (msg == NULL) {
  1325. wpabuf_free(plain);
  1326. return NULL;
  1327. }
  1328. if (wps_build_version(msg) ||
  1329. wps_build_msg_type(msg, WPS_M4) ||
  1330. wps_build_enrollee_nonce(wps, msg) ||
  1331. wps_build_r_hash(wps, msg) ||
  1332. wps_build_r_snonce1(wps, plain) ||
  1333. wps_build_key_wrap_auth(wps, plain) ||
  1334. wps_build_encr_settings(wps, msg, plain) ||
  1335. wps_build_wfa_ext(msg, 0, NULL, 0) ||
  1336. wps_build_authenticator(wps, msg)) {
  1337. wpabuf_free(plain);
  1338. wpabuf_free(msg);
  1339. return NULL;
  1340. }
  1341. wpabuf_free(plain);
  1342. wps->state = RECV_M5;
  1343. return msg;
  1344. }
  1345. static struct wpabuf * wps_build_m6(struct wps_data *wps)
  1346. {
  1347. struct wpabuf *msg, *plain;
  1348. wpa_printf(MSG_DEBUG, "WPS: Building Message M6");
  1349. plain = wpabuf_alloc(200);
  1350. if (plain == NULL)
  1351. return NULL;
  1352. msg = wpabuf_alloc(1000);
  1353. if (msg == NULL) {
  1354. wpabuf_free(plain);
  1355. return NULL;
  1356. }
  1357. if (wps_build_version(msg) ||
  1358. wps_build_msg_type(msg, WPS_M6) ||
  1359. wps_build_enrollee_nonce(wps, msg) ||
  1360. wps_build_r_snonce2(wps, plain) ||
  1361. wps_build_key_wrap_auth(wps, plain) ||
  1362. wps_build_encr_settings(wps, msg, plain) ||
  1363. wps_build_wfa_ext(msg, 0, NULL, 0) ||
  1364. wps_build_authenticator(wps, msg)) {
  1365. wpabuf_free(plain);
  1366. wpabuf_free(msg);
  1367. return NULL;
  1368. }
  1369. wpabuf_free(plain);
  1370. wps->wps_pin_revealed = 1;
  1371. wps->state = RECV_M7;
  1372. return msg;
  1373. }
  1374. static struct wpabuf * wps_build_m8(struct wps_data *wps)
  1375. {
  1376. struct wpabuf *msg, *plain;
  1377. wpa_printf(MSG_DEBUG, "WPS: Building Message M8");
  1378. plain = wpabuf_alloc(500);
  1379. if (plain == NULL)
  1380. return NULL;
  1381. msg = wpabuf_alloc(1000);
  1382. if (msg == NULL) {
  1383. wpabuf_free(plain);
  1384. return NULL;
  1385. }
  1386. if (wps_build_version(msg) ||
  1387. wps_build_msg_type(msg, WPS_M8) ||
  1388. wps_build_enrollee_nonce(wps, msg) ||
  1389. ((wps->wps->ap || wps->er) && wps_build_cred(wps, plain)) ||
  1390. (!wps->wps->ap && !wps->er && wps_build_ap_settings(wps, plain)) ||
  1391. wps_build_key_wrap_auth(wps, plain) ||
  1392. wps_build_encr_settings(wps, msg, plain) ||
  1393. wps_build_wfa_ext(msg, 0, NULL, 0) ||
  1394. wps_build_authenticator(wps, msg)) {
  1395. wpabuf_free(plain);
  1396. wpabuf_free(msg);
  1397. return NULL;
  1398. }
  1399. wpabuf_free(plain);
  1400. wps->state = RECV_DONE;
  1401. return msg;
  1402. }
  1403. static struct wpabuf * wps_build_wsc_ack(struct wps_data *wps)
  1404. {
  1405. struct wpabuf *msg;
  1406. wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_ACK");
  1407. msg = wpabuf_alloc(1000);
  1408. if (msg == NULL)
  1409. return NULL;
  1410. if (wps_build_version(msg) ||
  1411. wps_build_msg_type(msg, WPS_WSC_ACK) ||
  1412. wps_build_enrollee_nonce(wps, msg) ||
  1413. wps_build_registrar_nonce(wps, msg) ||
  1414. wps_build_wfa_ext(msg, 0, NULL, 0)) {
  1415. wpabuf_free(msg);
  1416. return NULL;
  1417. }
  1418. return msg;
  1419. }
  1420. static struct wpabuf * wps_build_wsc_nack(struct wps_data *wps)
  1421. {
  1422. struct wpabuf *msg;
  1423. wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_NACK");
  1424. msg = wpabuf_alloc(1000);
  1425. if (msg == NULL)
  1426. return NULL;
  1427. if (wps_build_version(msg) ||
  1428. wps_build_msg_type(msg, WPS_WSC_NACK) ||
  1429. wps_build_enrollee_nonce(wps, msg) ||
  1430. wps_build_registrar_nonce(wps, msg) ||
  1431. wps_build_config_error(msg, wps->config_error) ||
  1432. wps_build_wfa_ext(msg, 0, NULL, 0)) {
  1433. wpabuf_free(msg);
  1434. return NULL;
  1435. }
  1436. return msg;
  1437. }
  1438. struct wpabuf * wps_registrar_get_msg(struct wps_data *wps,
  1439. enum wsc_op_code *op_code)
  1440. {
  1441. struct wpabuf *msg;
  1442. #ifdef CONFIG_WPS_UPNP
  1443. if (!wps->int_reg && wps->wps->wps_upnp) {
  1444. struct upnp_pending_message *p, *prev = NULL;
  1445. if (wps->ext_reg > 1)
  1446. wps_registrar_free_pending_m2(wps->wps);
  1447. p = wps->wps->upnp_msgs;
  1448. /* TODO: check pending message MAC address */
  1449. while (p && p->next) {
  1450. prev = p;
  1451. p = p->next;
  1452. }
  1453. if (p) {
  1454. wpa_printf(MSG_DEBUG, "WPS: Use pending message from "
  1455. "UPnP");
  1456. if (prev)
  1457. prev->next = NULL;
  1458. else
  1459. wps->wps->upnp_msgs = NULL;
  1460. msg = p->msg;
  1461. switch (p->type) {
  1462. case WPS_WSC_ACK:
  1463. *op_code = WSC_ACK;
  1464. break;
  1465. case WPS_WSC_NACK:
  1466. *op_code = WSC_NACK;
  1467. break;
  1468. default:
  1469. *op_code = WSC_MSG;
  1470. break;
  1471. }
  1472. os_free(p);
  1473. if (wps->ext_reg == 0)
  1474. wps->ext_reg = 1;
  1475. return msg;
  1476. }
  1477. }
  1478. if (wps->ext_reg) {
  1479. wpa_printf(MSG_DEBUG, "WPS: Using external Registrar, but no "
  1480. "pending message available");
  1481. return NULL;
  1482. }
  1483. #endif /* CONFIG_WPS_UPNP */
  1484. switch (wps->state) {
  1485. case SEND_M2:
  1486. if (wps_get_dev_password(wps) < 0)
  1487. msg = wps_build_m2d(wps);
  1488. else
  1489. msg = wps_build_m2(wps);
  1490. *op_code = WSC_MSG;
  1491. break;
  1492. case SEND_M2D:
  1493. msg = wps_build_m2d(wps);
  1494. *op_code = WSC_MSG;
  1495. break;
  1496. case SEND_M4:
  1497. msg = wps_build_m4(wps);
  1498. *op_code = WSC_MSG;
  1499. break;
  1500. case SEND_M6:
  1501. msg = wps_build_m6(wps);
  1502. *op_code = WSC_MSG;
  1503. break;
  1504. case SEND_M8:
  1505. msg = wps_build_m8(wps);
  1506. *op_code = WSC_MSG;
  1507. break;
  1508. case RECV_DONE:
  1509. msg = wps_build_wsc_ack(wps);
  1510. *op_code = WSC_ACK;
  1511. break;
  1512. case SEND_WSC_NACK:
  1513. msg = wps_build_wsc_nack(wps);
  1514. *op_code = WSC_NACK;
  1515. break;
  1516. default:
  1517. wpa_printf(MSG_DEBUG, "WPS: Unsupported state %d for building "
  1518. "a message", wps->state);
  1519. msg = NULL;
  1520. break;
  1521. }
  1522. if (*op_code == WSC_MSG && msg) {
  1523. /* Save a copy of the last message for Authenticator derivation
  1524. */
  1525. wpabuf_free(wps->last_msg);
  1526. wps->last_msg = wpabuf_dup(msg);
  1527. }
  1528. return msg;
  1529. }
  1530. static int wps_process_enrollee_nonce(struct wps_data *wps, const u8 *e_nonce)
  1531. {
  1532. if (e_nonce == NULL) {
  1533. wpa_printf(MSG_DEBUG, "WPS: No Enrollee Nonce received");
  1534. return -1;
  1535. }
  1536. os_memcpy(wps->nonce_e, e_nonce, WPS_NONCE_LEN);
  1537. wpa_hexdump(MSG_DEBUG, "WPS: Enrollee Nonce",
  1538. wps->nonce_e, WPS_NONCE_LEN);
  1539. return 0;
  1540. }
  1541. static int wps_process_registrar_nonce(struct wps_data *wps, const u8 *r_nonce)
  1542. {
  1543. if (r_nonce == NULL) {
  1544. wpa_printf(MSG_DEBUG, "WPS: No Registrar Nonce received");
  1545. return -1;
  1546. }
  1547. if (os_memcmp(wps->nonce_r, r_nonce, WPS_NONCE_LEN) != 0) {
  1548. wpa_printf(MSG_DEBUG, "WPS: Invalid Registrar Nonce received");
  1549. return -1;
  1550. }
  1551. return 0;
  1552. }
  1553. static int wps_process_uuid_e(struct wps_data *wps, const u8 *uuid_e)
  1554. {
  1555. if (uuid_e == NULL) {
  1556. wpa_printf(MSG_DEBUG, "WPS: No UUID-E received");
  1557. return -1;
  1558. }
  1559. os_memcpy(wps->uuid_e, uuid_e, WPS_UUID_LEN);
  1560. wpa_hexdump(MSG_DEBUG, "WPS: UUID-E", wps->uuid_e, WPS_UUID_LEN);
  1561. return 0;
  1562. }
  1563. static int wps_process_dev_password_id(struct wps_data *wps, const u8 *pw_id)
  1564. {
  1565. if (pw_id == NULL) {
  1566. wpa_printf(MSG_DEBUG, "WPS: No Device Password ID received");
  1567. return -1;
  1568. }
  1569. wps->dev_pw_id = WPA_GET_BE16(pw_id);
  1570. wpa_printf(MSG_DEBUG, "WPS: Device Password ID %d", wps->dev_pw_id);
  1571. return 0;
  1572. }
  1573. static int wps_process_e_hash1(struct wps_data *wps, const u8 *e_hash1)
  1574. {
  1575. if (e_hash1 == NULL) {
  1576. wpa_printf(MSG_DEBUG, "WPS: No E-Hash1 received");
  1577. return -1;
  1578. }
  1579. os_memcpy(wps->peer_hash1, e_hash1, WPS_HASH_LEN);
  1580. wpa_hexdump(MSG_DEBUG, "WPS: E-Hash1", wps->peer_hash1, WPS_HASH_LEN);
  1581. return 0;
  1582. }
  1583. static int wps_process_e_hash2(struct wps_data *wps, const u8 *e_hash2)
  1584. {
  1585. if (e_hash2 == NULL) {
  1586. wpa_printf(MSG_DEBUG, "WPS: No E-Hash2 received");
  1587. return -1;
  1588. }
  1589. os_memcpy(wps->peer_hash2, e_hash2, WPS_HASH_LEN);
  1590. wpa_hexdump(MSG_DEBUG, "WPS: E-Hash2", wps->peer_hash2, WPS_HASH_LEN);
  1591. return 0;
  1592. }
  1593. static int wps_process_e_snonce1(struct wps_data *wps, const u8 *e_snonce1)
  1594. {
  1595. u8 hash[SHA256_MAC_LEN];
  1596. const u8 *addr[4];
  1597. size_t len[4];
  1598. if (e_snonce1 == NULL) {
  1599. wpa_printf(MSG_DEBUG, "WPS: No E-SNonce1 received");
  1600. return -1;
  1601. }
  1602. wpa_hexdump_key(MSG_DEBUG, "WPS: E-SNonce1", e_snonce1,
  1603. WPS_SECRET_NONCE_LEN);
  1604. /* E-Hash1 = HMAC_AuthKey(E-S1 || PSK1 || PK_E || PK_R) */
  1605. addr[0] = e_snonce1;
  1606. len[0] = WPS_SECRET_NONCE_LEN;
  1607. addr[1] = wps->psk1;
  1608. len[1] = WPS_PSK_LEN;
  1609. addr[2] = wpabuf_head(wps->dh_pubkey_e);
  1610. len[2] = wpabuf_len(wps->dh_pubkey_e);
  1611. addr[3] = wpabuf_head(wps->dh_pubkey_r);
  1612. len[3] = wpabuf_len(wps->dh_pubkey_r);
  1613. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  1614. if (os_memcmp(wps->peer_hash1, hash, WPS_HASH_LEN) != 0) {
  1615. wpa_printf(MSG_DEBUG, "WPS: E-Hash1 derived from E-S1 does "
  1616. "not match with the pre-committed value");
  1617. wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
  1618. wps_pwd_auth_fail_event(wps->wps, 0, 1);
  1619. return -1;
  1620. }
  1621. wpa_printf(MSG_DEBUG, "WPS: Enrollee proved knowledge of the first "
  1622. "half of the device password");
  1623. return 0;
  1624. }
  1625. static int wps_process_e_snonce2(struct wps_data *wps, const u8 *e_snonce2)
  1626. {
  1627. u8 hash[SHA256_MAC_LEN];
  1628. const u8 *addr[4];
  1629. size_t len[4];
  1630. if (e_snonce2 == NULL) {
  1631. wpa_printf(MSG_DEBUG, "WPS: No E-SNonce2 received");
  1632. return -1;
  1633. }
  1634. wpa_hexdump_key(MSG_DEBUG, "WPS: E-SNonce2", e_snonce2,
  1635. WPS_SECRET_NONCE_LEN);
  1636. /* E-Hash2 = HMAC_AuthKey(E-S2 || PSK2 || PK_E || PK_R) */
  1637. addr[0] = e_snonce2;
  1638. len[0] = WPS_SECRET_NONCE_LEN;
  1639. addr[1] = wps->psk2;
  1640. len[1] = WPS_PSK_LEN;
  1641. addr[2] = wpabuf_head(wps->dh_pubkey_e);
  1642. len[2] = wpabuf_len(wps->dh_pubkey_e);
  1643. addr[3] = wpabuf_head(wps->dh_pubkey_r);
  1644. len[3] = wpabuf_len(wps->dh_pubkey_r);
  1645. hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
  1646. if (os_memcmp(wps->peer_hash2, hash, WPS_HASH_LEN) != 0) {
  1647. wpa_printf(MSG_DEBUG, "WPS: E-Hash2 derived from E-S2 does "
  1648. "not match with the pre-committed value");
  1649. wps_registrar_invalidate_pin(wps->wps->registrar, wps->uuid_e);
  1650. wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
  1651. wps_pwd_auth_fail_event(wps->wps, 0, 2);
  1652. return -1;
  1653. }
  1654. wpa_printf(MSG_DEBUG, "WPS: Enrollee proved knowledge of the second "
  1655. "half of the device password");
  1656. wps->wps_pin_revealed = 0;
  1657. wps_registrar_unlock_pin(wps->wps->registrar, wps->uuid_e);
  1658. return 0;
  1659. }
  1660. static int wps_process_mac_addr(struct wps_data *wps, const u8 *mac_addr)
  1661. {
  1662. if (mac_addr == NULL) {
  1663. wpa_printf(MSG_DEBUG, "WPS: No MAC Address received");
  1664. return -1;
  1665. }
  1666. wpa_printf(MSG_DEBUG, "WPS: Enrollee MAC Address " MACSTR,
  1667. MAC2STR(mac_addr));
  1668. os_memcpy(wps->mac_addr_e, mac_addr, ETH_ALEN);
  1669. os_memcpy(wps->peer_dev.mac_addr, mac_addr, ETH_ALEN);
  1670. return 0;
  1671. }
  1672. static int wps_process_pubkey(struct wps_data *wps, const u8 *pk,
  1673. size_t pk_len)
  1674. {
  1675. if (pk == NULL || pk_len == 0) {
  1676. wpa_printf(MSG_DEBUG, "WPS: No Public Key received");
  1677. return -1;
  1678. }
  1679. #ifdef CONFIG_WPS_OOB
  1680. if (wps->wps->oob_conf.pubkey_hash != NULL) {
  1681. const u8 *addr[1];
  1682. u8 hash[WPS_HASH_LEN];
  1683. addr[0] = pk;
  1684. sha256_vector(1, addr, &pk_len, hash);
  1685. if (os_memcmp(hash,
  1686. wpabuf_head(wps->wps->oob_conf.pubkey_hash),
  1687. WPS_OOB_PUBKEY_HASH_LEN) != 0) {
  1688. wpa_printf(MSG_ERROR, "WPS: Public Key hash error");
  1689. return -1;
  1690. }
  1691. }
  1692. #endif /* CONFIG_WPS_OOB */
  1693. wpabuf_free(wps->dh_pubkey_e);
  1694. wps->dh_pubkey_e = wpabuf_alloc_copy(pk, pk_len);
  1695. if (wps->dh_pubkey_e == NULL)
  1696. return -1;
  1697. return 0;
  1698. }
  1699. static int wps_process_auth_type_flags(struct wps_data *wps, const u8 *auth)
  1700. {
  1701. u16 auth_types;
  1702. if (auth == NULL) {
  1703. wpa_printf(MSG_DEBUG, "WPS: No Authentication Type flags "
  1704. "received");
  1705. return -1;
  1706. }
  1707. auth_types = WPA_GET_BE16(auth);
  1708. wpa_printf(MSG_DEBUG, "WPS: Enrollee Authentication Type flags 0x%x",
  1709. auth_types);
  1710. wps->auth_type = wps->wps->auth_types & auth_types;
  1711. if (wps->auth_type == 0) {
  1712. wpa_printf(MSG_DEBUG, "WPS: No match in supported "
  1713. "authentication types (own 0x%x Enrollee 0x%x)",
  1714. wps->wps->auth_types, auth_types);
  1715. #ifdef WPS_WORKAROUNDS
  1716. /*
  1717. * Some deployed implementations seem to advertise incorrect
  1718. * information in this attribute. For example, Linksys WRT350N
  1719. * seems to have a byteorder bug that breaks this negotiation.
  1720. * In order to interoperate with existing implementations,
  1721. * assume that the Enrollee supports everything we do.
  1722. */
  1723. wpa_printf(MSG_DEBUG, "WPS: Workaround - assume Enrollee "
  1724. "does not advertise supported authentication types "
  1725. "correctly");
  1726. wps->auth_type = wps->wps->auth_types;
  1727. #else /* WPS_WORKAROUNDS */
  1728. return -1;
  1729. #endif /* WPS_WORKAROUNDS */
  1730. }
  1731. return 0;
  1732. }
  1733. static int wps_process_encr_type_flags(struct wps_data *wps, const u8 *encr)
  1734. {
  1735. u16 encr_types;
  1736. if (encr == NULL) {
  1737. wpa_printf(MSG_DEBUG, "WPS: No Encryption Type flags "
  1738. "received");
  1739. return -1;
  1740. }
  1741. encr_types = WPA_GET_BE16(encr);
  1742. wpa_printf(MSG_DEBUG, "WPS: Enrollee Encryption Type flags 0x%x",
  1743. encr_types);
  1744. wps->encr_type = wps->wps->encr_types & encr_types;
  1745. if (wps->encr_type == 0) {
  1746. wpa_printf(MSG_DEBUG, "WPS: No match in supported "
  1747. "encryption types (own 0x%x Enrollee 0x%x)",
  1748. wps->wps->encr_types, encr_types);
  1749. #ifdef WPS_WORKAROUNDS
  1750. /*
  1751. * Some deployed implementations seem to advertise incorrect
  1752. * information in this attribute. For example, Linksys WRT350N
  1753. * seems to have a byteorder bug that breaks this negotiation.
  1754. * In order to interoperate with existing implementations,
  1755. * assume that the Enrollee supports everything we do.
  1756. */
  1757. wpa_printf(MSG_DEBUG, "WPS: Workaround - assume Enrollee "
  1758. "does not advertise supported encryption types "
  1759. "correctly");
  1760. wps->encr_type = wps->wps->encr_types;
  1761. #else /* WPS_WORKAROUNDS */
  1762. return -1;
  1763. #endif /* WPS_WORKAROUNDS */
  1764. }
  1765. return 0;
  1766. }
  1767. static int wps_process_conn_type_flags(struct wps_data *wps, const u8 *conn)
  1768. {
  1769. if (conn == NULL) {
  1770. wpa_printf(MSG_DEBUG, "WPS: No Connection Type flags "
  1771. "received");
  1772. return -1;
  1773. }
  1774. wpa_printf(MSG_DEBUG, "WPS: Enrollee Connection Type flags 0x%x",
  1775. *conn);
  1776. return 0;
  1777. }
  1778. static int wps_process_config_methods(struct wps_data *wps, const u8 *methods)
  1779. {
  1780. u16 m;
  1781. if (methods == NULL) {
  1782. wpa_printf(MSG_DEBUG, "WPS: No Config Methods received");
  1783. return -1;
  1784. }
  1785. m = WPA_GET_BE16(methods);
  1786. wpa_printf(MSG_DEBUG, "WPS: Enrollee Config Methods 0x%x"
  1787. "%s%s%s%s%s%s%s%s%s", m,
  1788. m & WPS_CONFIG_USBA ? " [USBA]" : "",
  1789. m & WPS_CONFIG_ETHERNET ? " [Ethernet]" : "",
  1790. m & WPS_CONFIG_LABEL ? " [Label]" : "",
  1791. m & WPS_CONFIG_DISPLAY ? " [Display]" : "",
  1792. m & WPS_CONFIG_EXT_NFC_TOKEN ? " [Ext NFC Token]" : "",
  1793. m & WPS_CONFIG_INT_NFC_TOKEN ? " [Int NFC Token]" : "",
  1794. m & WPS_CONFIG_NFC_INTERFACE ? " [NFC]" : "",
  1795. m & WPS_CONFIG_PUSHBUTTON ? " [PBC]" : "",
  1796. m & WPS_CONFIG_KEYPAD ? " [Keypad]" : "");
  1797. if (!(m & WPS_CONFIG_DISPLAY) && !wps->use_psk_key) {
  1798. /*
  1799. * The Enrollee does not have a display so it is unlikely to be
  1800. * able to show the passphrase to a user and as such, could
  1801. * benefit from receiving PSK to reduce key derivation time.
  1802. */
  1803. wpa_printf(MSG_DEBUG, "WPS: Prefer PSK format key due to "
  1804. "Enrollee not supporting display");
  1805. wps->use_psk_key = 1;
  1806. }
  1807. return 0;
  1808. }
  1809. static int wps_process_wps_state(struct wps_data *wps, const u8 *state)
  1810. {
  1811. if (state == NULL) {
  1812. wpa_printf(MSG_DEBUG, "WPS: No Wi-Fi Protected Setup State "
  1813. "received");
  1814. return -1;
  1815. }
  1816. wpa_printf(MSG_DEBUG, "WPS: Enrollee Wi-Fi Protected Setup State %d",
  1817. *state);
  1818. return 0;
  1819. }
  1820. static int wps_process_assoc_state(struct wps_data *wps, const u8 *assoc)
  1821. {
  1822. u16 a;
  1823. if (assoc == NULL) {
  1824. wpa_printf(MSG_DEBUG, "WPS: No Association State received");
  1825. return -1;
  1826. }
  1827. a = WPA_GET_BE16(assoc);
  1828. wpa_printf(MSG_DEBUG, "WPS: Enrollee Association State %d", a);
  1829. return 0;
  1830. }
  1831. static int wps_process_config_error(struct wps_data *wps, const u8 *err)
  1832. {
  1833. u16 e;
  1834. if (err == NULL) {
  1835. wpa_printf(MSG_DEBUG, "WPS: No Configuration Error received");
  1836. return -1;
  1837. }
  1838. e = WPA_GET_BE16(err);
  1839. wpa_printf(MSG_DEBUG, "WPS: Enrollee Configuration Error %d", e);
  1840. return 0;
  1841. }
  1842. static enum wps_process_res wps_process_m1(struct wps_data *wps,
  1843. struct wps_parse_attr *attr)
  1844. {
  1845. wpa_printf(MSG_DEBUG, "WPS: Received M1");
  1846. if (wps->state != RECV_M1) {
  1847. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  1848. "receiving M1", wps->state);
  1849. return WPS_FAILURE;
  1850. }
  1851. if (wps_process_uuid_e(wps, attr->uuid_e) ||
  1852. wps_process_mac_addr(wps, attr->mac_addr) ||
  1853. wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
  1854. wps_process_pubkey(wps, attr->public_key, attr->public_key_len) ||
  1855. wps_process_auth_type_flags(wps, attr->auth_type_flags) ||
  1856. wps_process_encr_type_flags(wps, attr->encr_type_flags) ||
  1857. wps_process_conn_type_flags(wps, attr->conn_type_flags) ||
  1858. wps_process_config_methods(wps, attr->config_methods) ||
  1859. wps_process_wps_state(wps, attr->wps_state) ||
  1860. wps_process_device_attrs(&wps->peer_dev, attr) ||
  1861. wps_process_rf_bands(&wps->peer_dev, attr->rf_bands) ||
  1862. wps_process_assoc_state(wps, attr->assoc_state) ||
  1863. wps_process_dev_password_id(wps, attr->dev_password_id) ||
  1864. wps_process_config_error(wps, attr->config_error) ||
  1865. wps_process_os_version(&wps->peer_dev, attr->os_version))
  1866. return WPS_FAILURE;
  1867. if (wps->dev_pw_id < 0x10 &&
  1868. wps->dev_pw_id != DEV_PW_DEFAULT &&
  1869. wps->dev_pw_id != DEV_PW_USER_SPECIFIED &&
  1870. wps->dev_pw_id != DEV_PW_MACHINE_SPECIFIED &&
  1871. wps->dev_pw_id != DEV_PW_REGISTRAR_SPECIFIED &&
  1872. (wps->dev_pw_id != DEV_PW_PUSHBUTTON ||
  1873. !wps->wps->registrar->pbc)) {
  1874. wpa_printf(MSG_DEBUG, "WPS: Unsupported Device Password ID %d",
  1875. wps->dev_pw_id);
  1876. wps->state = SEND_M2D;
  1877. return WPS_CONTINUE;
  1878. }
  1879. #ifdef CONFIG_WPS_OOB
  1880. if (wps->dev_pw_id >= 0x10 &&
  1881. wps->dev_pw_id != wps->wps->oob_dev_pw_id) {
  1882. wpa_printf(MSG_DEBUG, "WPS: OOB Device Password ID "
  1883. "%d mismatch", wps->dev_pw_id);
  1884. wps->state = SEND_M2D;
  1885. return WPS_CONTINUE;
  1886. }
  1887. #endif /* CONFIG_WPS_OOB */
  1888. if (wps->dev_pw_id == DEV_PW_PUSHBUTTON) {
  1889. if (wps->wps->registrar->force_pbc_overlap ||
  1890. wps_registrar_pbc_overlap(wps->wps->registrar,
  1891. wps->mac_addr_e, wps->uuid_e)) {
  1892. wpa_printf(MSG_DEBUG, "WPS: PBC overlap - deny PBC "
  1893. "negotiation");
  1894. wps->state = SEND_M2D;
  1895. wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
  1896. wps_pbc_overlap_event(wps->wps);
  1897. wps->wps->registrar->force_pbc_overlap = 1;
  1898. return WPS_CONTINUE;
  1899. }
  1900. wps_registrar_add_pbc_session(wps->wps->registrar,
  1901. wps->mac_addr_e, wps->uuid_e);
  1902. wps->pbc = 1;
  1903. }
  1904. #ifdef WPS_WORKAROUNDS
  1905. /*
  1906. * It looks like Mac OS X 10.6.3 and 10.6.4 do not like Network Key in
  1907. * passphrase format. To avoid interop issues, force PSK format to be
  1908. * used.
  1909. */
  1910. if (!wps->use_psk_key &&
  1911. wps->peer_dev.manufacturer &&
  1912. os_strncmp(wps->peer_dev.manufacturer, "Apple ", 6) == 0 &&
  1913. wps->peer_dev.model_name &&
  1914. os_strcmp(wps->peer_dev.model_name, "AirPort") == 0) {
  1915. wpa_printf(MSG_DEBUG, "WPS: Workaround - Force Network Key in "
  1916. "PSK format");
  1917. wps->use_psk_key = 1;
  1918. }
  1919. #endif /* WPS_WORKAROUNDS */
  1920. wps->state = SEND_M2;
  1921. return WPS_CONTINUE;
  1922. }
  1923. static enum wps_process_res wps_process_m3(struct wps_data *wps,
  1924. const struct wpabuf *msg,
  1925. struct wps_parse_attr *attr)
  1926. {
  1927. wpa_printf(MSG_DEBUG, "WPS: Received M3");
  1928. if (wps->state != RECV_M3) {
  1929. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  1930. "receiving M3", wps->state);
  1931. wps->state = SEND_WSC_NACK;
  1932. return WPS_CONTINUE;
  1933. }
  1934. if (wps->pbc && wps->wps->registrar->force_pbc_overlap) {
  1935. wpa_printf(MSG_DEBUG, "WPS: Reject negotiation due to PBC "
  1936. "session overlap");
  1937. wps->state = SEND_WSC_NACK;
  1938. wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
  1939. return WPS_CONTINUE;
  1940. }
  1941. if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
  1942. wps_process_authenticator(wps, attr->authenticator, msg) ||
  1943. wps_process_e_hash1(wps, attr->e_hash1) ||
  1944. wps_process_e_hash2(wps, attr->e_hash2)) {
  1945. wps->state = SEND_WSC_NACK;
  1946. return WPS_CONTINUE;
  1947. }
  1948. wps->state = SEND_M4;
  1949. return WPS_CONTINUE;
  1950. }
  1951. static enum wps_process_res wps_process_m5(struct wps_data *wps,
  1952. const struct wpabuf *msg,
  1953. struct wps_parse_attr *attr)
  1954. {
  1955. struct wpabuf *decrypted;
  1956. struct wps_parse_attr eattr;
  1957. wpa_printf(MSG_DEBUG, "WPS: Received M5");
  1958. if (wps->state != RECV_M5) {
  1959. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  1960. "receiving M5", wps->state);
  1961. wps->state = SEND_WSC_NACK;
  1962. return WPS_CONTINUE;
  1963. }
  1964. if (wps->pbc && wps->wps->registrar->force_pbc_overlap) {
  1965. wpa_printf(MSG_DEBUG, "WPS: Reject negotiation due to PBC "
  1966. "session overlap");
  1967. wps->state = SEND_WSC_NACK;
  1968. wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
  1969. return WPS_CONTINUE;
  1970. }
  1971. if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
  1972. wps_process_authenticator(wps, attr->authenticator, msg)) {
  1973. wps->state = SEND_WSC_NACK;
  1974. return WPS_CONTINUE;
  1975. }
  1976. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  1977. attr->encr_settings_len);
  1978. if (decrypted == NULL) {
  1979. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
  1980. "Settings attribute");
  1981. wps->state = SEND_WSC_NACK;
  1982. return WPS_CONTINUE;
  1983. }
  1984. if (wps_validate_m5_encr(decrypted) < 0) {
  1985. wpabuf_free(decrypted);
  1986. wps->state = SEND_WSC_NACK;
  1987. return WPS_CONTINUE;
  1988. }
  1989. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  1990. "attribute");
  1991. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  1992. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  1993. wps_process_e_snonce1(wps, eattr.e_snonce1)) {
  1994. wpabuf_free(decrypted);
  1995. wps->state = SEND_WSC_NACK;
  1996. return WPS_CONTINUE;
  1997. }
  1998. wpabuf_free(decrypted);
  1999. wps->state = SEND_M6;
  2000. return WPS_CONTINUE;
  2001. }
  2002. static void wps_sta_cred_cb(struct wps_data *wps)
  2003. {
  2004. /*
  2005. * Update credential to only include a single authentication and
  2006. * encryption type in case the AP configuration includes more than one
  2007. * option.
  2008. */
  2009. if (wps->cred.auth_type & WPS_AUTH_WPA2PSK)
  2010. wps->cred.auth_type = WPS_AUTH_WPA2PSK;
  2011. else if (wps->cred.auth_type & WPS_AUTH_WPAPSK)
  2012. wps->cred.auth_type = WPS_AUTH_WPAPSK;
  2013. if (wps->cred.encr_type & WPS_ENCR_AES)
  2014. wps->cred.encr_type = WPS_ENCR_AES;
  2015. else if (wps->cred.encr_type & WPS_ENCR_TKIP)
  2016. wps->cred.encr_type = WPS_ENCR_TKIP;
  2017. wpa_printf(MSG_DEBUG, "WPS: Update local configuration based on the "
  2018. "AP configuration");
  2019. if (wps->wps->cred_cb)
  2020. wps->wps->cred_cb(wps->wps->cb_ctx, &wps->cred);
  2021. }
  2022. static void wps_cred_update(struct wps_credential *dst,
  2023. struct wps_credential *src)
  2024. {
  2025. os_memcpy(dst->ssid, src->ssid, sizeof(dst->ssid));
  2026. dst->ssid_len = src->ssid_len;
  2027. dst->auth_type = src->auth_type;
  2028. dst->encr_type = src->encr_type;
  2029. dst->key_idx = src->key_idx;
  2030. os_memcpy(dst->key, src->key, sizeof(dst->key));
  2031. dst->key_len = src->key_len;
  2032. }
  2033. static int wps_process_ap_settings_r(struct wps_data *wps,
  2034. struct wps_parse_attr *attr)
  2035. {
  2036. if (wps->wps->ap || wps->er)
  2037. return 0;
  2038. /* AP Settings Attributes in M7 when Enrollee is an AP */
  2039. if (wps_process_ap_settings(attr, &wps->cred) < 0)
  2040. return -1;
  2041. wpa_printf(MSG_INFO, "WPS: Received old AP configuration from AP");
  2042. if (wps->new_ap_settings) {
  2043. wpa_printf(MSG_INFO, "WPS: Update AP configuration based on "
  2044. "new settings");
  2045. wps_cred_update(&wps->cred, wps->new_ap_settings);
  2046. return 0;
  2047. } else {
  2048. /*
  2049. * Use the AP PIN only to receive the current AP settings, not
  2050. * to reconfigure the AP.
  2051. */
  2052. if (wps->ap_settings_cb) {
  2053. wps->ap_settings_cb(wps->ap_settings_cb_ctx,
  2054. &wps->cred);
  2055. return 1;
  2056. }
  2057. wps_sta_cred_cb(wps);
  2058. return 1;
  2059. }
  2060. }
  2061. static enum wps_process_res wps_process_m7(struct wps_data *wps,
  2062. const struct wpabuf *msg,
  2063. struct wps_parse_attr *attr)
  2064. {
  2065. struct wpabuf *decrypted;
  2066. struct wps_parse_attr eattr;
  2067. wpa_printf(MSG_DEBUG, "WPS: Received M7");
  2068. if (wps->state != RECV_M7) {
  2069. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  2070. "receiving M7", wps->state);
  2071. wps->state = SEND_WSC_NACK;
  2072. return WPS_CONTINUE;
  2073. }
  2074. if (wps->pbc && wps->wps->registrar->force_pbc_overlap) {
  2075. wpa_printf(MSG_DEBUG, "WPS: Reject negotiation due to PBC "
  2076. "session overlap");
  2077. wps->state = SEND_WSC_NACK;
  2078. wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
  2079. return WPS_CONTINUE;
  2080. }
  2081. if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
  2082. wps_process_authenticator(wps, attr->authenticator, msg)) {
  2083. wps->state = SEND_WSC_NACK;
  2084. return WPS_CONTINUE;
  2085. }
  2086. decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
  2087. attr->encr_settings_len);
  2088. if (decrypted == NULL) {
  2089. wpa_printf(MSG_DEBUG, "WPS: Failed to decrypt Encrypted "
  2090. "Settings attribute");
  2091. wps->state = SEND_WSC_NACK;
  2092. return WPS_CONTINUE;
  2093. }
  2094. if (wps_validate_m7_encr(decrypted, wps->wps->ap || wps->er) < 0) {
  2095. wpabuf_free(decrypted);
  2096. wps->state = SEND_WSC_NACK;
  2097. return WPS_CONTINUE;
  2098. }
  2099. wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
  2100. "attribute");
  2101. if (wps_parse_msg(decrypted, &eattr) < 0 ||
  2102. wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
  2103. wps_process_e_snonce2(wps, eattr.e_snonce2) ||
  2104. wps_process_ap_settings_r(wps, &eattr)) {
  2105. wpabuf_free(decrypted);
  2106. wps->state = SEND_WSC_NACK;
  2107. return WPS_CONTINUE;
  2108. }
  2109. wpabuf_free(decrypted);
  2110. wps->state = SEND_M8;
  2111. return WPS_CONTINUE;
  2112. }
  2113. static enum wps_process_res wps_process_wsc_msg(struct wps_data *wps,
  2114. const struct wpabuf *msg)
  2115. {
  2116. struct wps_parse_attr attr;
  2117. enum wps_process_res ret = WPS_CONTINUE;
  2118. wpa_printf(MSG_DEBUG, "WPS: Received WSC_MSG");
  2119. if (wps_parse_msg(msg, &attr) < 0)
  2120. return WPS_FAILURE;
  2121. if (attr.msg_type == NULL) {
  2122. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  2123. return WPS_FAILURE;
  2124. }
  2125. if (*attr.msg_type != WPS_M1 &&
  2126. (attr.registrar_nonce == NULL ||
  2127. os_memcmp(wps->nonce_r, attr.registrar_nonce,
  2128. WPS_NONCE_LEN != 0))) {
  2129. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  2130. return WPS_FAILURE;
  2131. }
  2132. switch (*attr.msg_type) {
  2133. case WPS_M1:
  2134. if (wps_validate_m1(msg) < 0)
  2135. return WPS_FAILURE;
  2136. #ifdef CONFIG_WPS_UPNP
  2137. if (wps->wps->wps_upnp && attr.mac_addr) {
  2138. /* Remove old pending messages when starting new run */
  2139. wps_free_pending_msgs(wps->wps->upnp_msgs);
  2140. wps->wps->upnp_msgs = NULL;
  2141. upnp_wps_device_send_wlan_event(
  2142. wps->wps->wps_upnp, attr.mac_addr,
  2143. UPNP_WPS_WLANEVENT_TYPE_EAP, msg);
  2144. }
  2145. #endif /* CONFIG_WPS_UPNP */
  2146. ret = wps_process_m1(wps, &attr);
  2147. break;
  2148. case WPS_M3:
  2149. if (wps_validate_m3(msg) < 0)
  2150. return WPS_FAILURE;
  2151. ret = wps_process_m3(wps, msg, &attr);
  2152. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  2153. wps_fail_event(wps->wps, WPS_M3);
  2154. break;
  2155. case WPS_M5:
  2156. if (wps_validate_m5(msg) < 0)
  2157. return WPS_FAILURE;
  2158. ret = wps_process_m5(wps, msg, &attr);
  2159. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  2160. wps_fail_event(wps->wps, WPS_M5);
  2161. break;
  2162. case WPS_M7:
  2163. if (wps_validate_m7(msg) < 0)
  2164. return WPS_FAILURE;
  2165. ret = wps_process_m7(wps, msg, &attr);
  2166. if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
  2167. wps_fail_event(wps->wps, WPS_M7);
  2168. break;
  2169. default:
  2170. wpa_printf(MSG_DEBUG, "WPS: Unsupported Message Type %d",
  2171. *attr.msg_type);
  2172. return WPS_FAILURE;
  2173. }
  2174. if (ret == WPS_CONTINUE) {
  2175. /* Save a copy of the last message for Authenticator derivation
  2176. */
  2177. wpabuf_free(wps->last_msg);
  2178. wps->last_msg = wpabuf_dup(msg);
  2179. }
  2180. return ret;
  2181. }
  2182. static enum wps_process_res wps_process_wsc_ack(struct wps_data *wps,
  2183. const struct wpabuf *msg)
  2184. {
  2185. struct wps_parse_attr attr;
  2186. wpa_printf(MSG_DEBUG, "WPS: Received WSC_ACK");
  2187. if (wps_parse_msg(msg, &attr) < 0)
  2188. return WPS_FAILURE;
  2189. if (attr.msg_type == NULL) {
  2190. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  2191. return WPS_FAILURE;
  2192. }
  2193. if (*attr.msg_type != WPS_WSC_ACK) {
  2194. wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
  2195. *attr.msg_type);
  2196. return WPS_FAILURE;
  2197. }
  2198. #ifdef CONFIG_WPS_UPNP
  2199. if (wps->wps->wps_upnp && wps->ext_reg && wps->state == RECV_M2D_ACK &&
  2200. upnp_wps_subscribers(wps->wps->wps_upnp)) {
  2201. if (wps->wps->upnp_msgs)
  2202. return WPS_CONTINUE;
  2203. wpa_printf(MSG_DEBUG, "WPS: Wait for response from an "
  2204. "external Registrar");
  2205. return WPS_PENDING;
  2206. }
  2207. #endif /* CONFIG_WPS_UPNP */
  2208. if (attr.registrar_nonce == NULL ||
  2209. os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
  2210. {
  2211. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  2212. return WPS_FAILURE;
  2213. }
  2214. if (attr.enrollee_nonce == NULL ||
  2215. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  2216. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  2217. return WPS_FAILURE;
  2218. }
  2219. if (wps->state == RECV_M2D_ACK) {
  2220. #ifdef CONFIG_WPS_UPNP
  2221. if (wps->wps->wps_upnp &&
  2222. upnp_wps_subscribers(wps->wps->wps_upnp)) {
  2223. if (wps->wps->upnp_msgs)
  2224. return WPS_CONTINUE;
  2225. if (wps->ext_reg == 0)
  2226. wps->ext_reg = 1;
  2227. wpa_printf(MSG_DEBUG, "WPS: Wait for response from an "
  2228. "external Registrar");
  2229. return WPS_PENDING;
  2230. }
  2231. #endif /* CONFIG_WPS_UPNP */
  2232. wpa_printf(MSG_DEBUG, "WPS: No more registrars available - "
  2233. "terminate negotiation");
  2234. }
  2235. return WPS_FAILURE;
  2236. }
  2237. static enum wps_process_res wps_process_wsc_nack(struct wps_data *wps,
  2238. const struct wpabuf *msg)
  2239. {
  2240. struct wps_parse_attr attr;
  2241. int old_state;
  2242. wpa_printf(MSG_DEBUG, "WPS: Received WSC_NACK");
  2243. old_state = wps->state;
  2244. wps->state = SEND_WSC_NACK;
  2245. if (wps_parse_msg(msg, &attr) < 0)
  2246. return WPS_FAILURE;
  2247. if (attr.msg_type == NULL) {
  2248. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  2249. return WPS_FAILURE;
  2250. }
  2251. if (*attr.msg_type != WPS_WSC_NACK) {
  2252. wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
  2253. *attr.msg_type);
  2254. return WPS_FAILURE;
  2255. }
  2256. #ifdef CONFIG_WPS_UPNP
  2257. if (wps->wps->wps_upnp && wps->ext_reg) {
  2258. wpa_printf(MSG_DEBUG, "WPS: Negotiation using external "
  2259. "Registrar terminated by the Enrollee");
  2260. return WPS_FAILURE;
  2261. }
  2262. #endif /* CONFIG_WPS_UPNP */
  2263. if (attr.registrar_nonce == NULL ||
  2264. os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
  2265. {
  2266. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  2267. return WPS_FAILURE;
  2268. }
  2269. if (attr.enrollee_nonce == NULL ||
  2270. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  2271. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  2272. return WPS_FAILURE;
  2273. }
  2274. if (attr.config_error == NULL) {
  2275. wpa_printf(MSG_DEBUG, "WPS: No Configuration Error attribute "
  2276. "in WSC_NACK");
  2277. return WPS_FAILURE;
  2278. }
  2279. wpa_printf(MSG_DEBUG, "WPS: Enrollee terminated negotiation with "
  2280. "Configuration Error %d", WPA_GET_BE16(attr.config_error));
  2281. switch (old_state) {
  2282. case RECV_M3:
  2283. wps_fail_event(wps->wps, WPS_M2);
  2284. break;
  2285. case RECV_M5:
  2286. wps_fail_event(wps->wps, WPS_M4);
  2287. break;
  2288. case RECV_M7:
  2289. wps_fail_event(wps->wps, WPS_M6);
  2290. break;
  2291. case RECV_DONE:
  2292. wps_fail_event(wps->wps, WPS_M8);
  2293. break;
  2294. default:
  2295. break;
  2296. }
  2297. return WPS_FAILURE;
  2298. }
  2299. static enum wps_process_res wps_process_wsc_done(struct wps_data *wps,
  2300. const struct wpabuf *msg)
  2301. {
  2302. struct wps_parse_attr attr;
  2303. wpa_printf(MSG_DEBUG, "WPS: Received WSC_Done");
  2304. if (wps->state != RECV_DONE &&
  2305. (!wps->wps->wps_upnp || !wps->ext_reg)) {
  2306. wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
  2307. "receiving WSC_Done", wps->state);
  2308. return WPS_FAILURE;
  2309. }
  2310. if (wps_parse_msg(msg, &attr) < 0)
  2311. return WPS_FAILURE;
  2312. if (attr.msg_type == NULL) {
  2313. wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
  2314. return WPS_FAILURE;
  2315. }
  2316. if (*attr.msg_type != WPS_WSC_DONE) {
  2317. wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
  2318. *attr.msg_type);
  2319. return WPS_FAILURE;
  2320. }
  2321. #ifdef CONFIG_WPS_UPNP
  2322. if (wps->wps->wps_upnp && wps->ext_reg) {
  2323. wpa_printf(MSG_DEBUG, "WPS: Negotiation using external "
  2324. "Registrar completed successfully");
  2325. wps_device_store(wps->wps->registrar, &wps->peer_dev,
  2326. wps->uuid_e);
  2327. return WPS_DONE;
  2328. }
  2329. #endif /* CONFIG_WPS_UPNP */
  2330. if (attr.registrar_nonce == NULL ||
  2331. os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
  2332. {
  2333. wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
  2334. return WPS_FAILURE;
  2335. }
  2336. if (attr.enrollee_nonce == NULL ||
  2337. os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
  2338. wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
  2339. return WPS_FAILURE;
  2340. }
  2341. wpa_printf(MSG_DEBUG, "WPS: Negotiation completed successfully");
  2342. wps_device_store(wps->wps->registrar, &wps->peer_dev,
  2343. wps->uuid_e);
  2344. if (wps->wps->wps_state == WPS_STATE_NOT_CONFIGURED && wps->new_psk &&
  2345. wps->wps->ap && !wps->wps->registrar->disable_auto_conf) {
  2346. struct wps_credential cred;
  2347. wpa_printf(MSG_DEBUG, "WPS: Moving to Configured state based "
  2348. "on first Enrollee connection");
  2349. os_memset(&cred, 0, sizeof(cred));
  2350. os_memcpy(cred.ssid, wps->wps->ssid, wps->wps->ssid_len);
  2351. cred.ssid_len = wps->wps->ssid_len;
  2352. cred.auth_type = WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK;
  2353. cred.encr_type = WPS_ENCR_TKIP | WPS_ENCR_AES;
  2354. os_memcpy(cred.key, wps->new_psk, wps->new_psk_len);
  2355. cred.key_len = wps->new_psk_len;
  2356. wps->wps->wps_state = WPS_STATE_CONFIGURED;
  2357. wpa_hexdump_ascii_key(MSG_DEBUG,
  2358. "WPS: Generated random passphrase",
  2359. wps->new_psk, wps->new_psk_len);
  2360. if (wps->wps->cred_cb)
  2361. wps->wps->cred_cb(wps->wps->cb_ctx, &cred);
  2362. os_free(wps->new_psk);
  2363. wps->new_psk = NULL;
  2364. }
  2365. if (!wps->wps->ap && !wps->er)
  2366. wps_sta_cred_cb(wps);
  2367. if (wps->new_psk) {
  2368. if (wps_cb_new_psk(wps->wps->registrar, wps->mac_addr_e,
  2369. wps->new_psk, wps->new_psk_len)) {
  2370. wpa_printf(MSG_DEBUG, "WPS: Failed to configure the "
  2371. "new PSK");
  2372. }
  2373. os_free(wps->new_psk);
  2374. wps->new_psk = NULL;
  2375. }
  2376. wps_cb_reg_success(wps->wps->registrar, wps->mac_addr_e, wps->uuid_e);
  2377. if (wps->pbc) {
  2378. wps_registrar_remove_pbc_session(wps->wps->registrar,
  2379. wps->mac_addr_e, wps->uuid_e);
  2380. wps_registrar_pbc_completed(wps->wps->registrar);
  2381. } else {
  2382. wps_registrar_pin_completed(wps->wps->registrar);
  2383. }
  2384. /* TODO: maintain AuthorizedMACs somewhere separately for each ER and
  2385. * merge them into APs own list.. */
  2386. wps_success_event(wps->wps);
  2387. return WPS_DONE;
  2388. }
  2389. enum wps_process_res wps_registrar_process_msg(struct wps_data *wps,
  2390. enum wsc_op_code op_code,
  2391. const struct wpabuf *msg)
  2392. {
  2393. enum wps_process_res ret;
  2394. wpa_printf(MSG_DEBUG, "WPS: Processing received message (len=%lu "
  2395. "op_code=%d)",
  2396. (unsigned long) wpabuf_len(msg), op_code);
  2397. #ifdef CONFIG_WPS_UPNP
  2398. if (wps->wps->wps_upnp && op_code == WSC_MSG && wps->ext_reg == 1) {
  2399. struct wps_parse_attr attr;
  2400. if (wps_parse_msg(msg, &attr) == 0 && attr.msg_type &&
  2401. *attr.msg_type == WPS_M3)
  2402. wps->ext_reg = 2; /* past M2/M2D phase */
  2403. }
  2404. if (wps->ext_reg > 1)
  2405. wps_registrar_free_pending_m2(wps->wps);
  2406. if (wps->wps->wps_upnp && wps->ext_reg &&
  2407. wps->wps->upnp_msgs == NULL &&
  2408. (op_code == WSC_MSG || op_code == WSC_Done || op_code == WSC_NACK))
  2409. {
  2410. struct wps_parse_attr attr;
  2411. int type;
  2412. if (wps_parse_msg(msg, &attr) < 0 || attr.msg_type == NULL)
  2413. type = -1;
  2414. else
  2415. type = *attr.msg_type;
  2416. wpa_printf(MSG_DEBUG, "WPS: Sending received message (type %d)"
  2417. " to external Registrar for processing", type);
  2418. upnp_wps_device_send_wlan_event(wps->wps->wps_upnp,
  2419. wps->mac_addr_e,
  2420. UPNP_WPS_WLANEVENT_TYPE_EAP,
  2421. msg);
  2422. if (op_code == WSC_MSG)
  2423. return WPS_PENDING;
  2424. } else if (wps->wps->wps_upnp && wps->ext_reg && op_code == WSC_MSG) {
  2425. wpa_printf(MSG_DEBUG, "WPS: Skip internal processing - using "
  2426. "external Registrar");
  2427. return WPS_CONTINUE;
  2428. }
  2429. #endif /* CONFIG_WPS_UPNP */
  2430. switch (op_code) {
  2431. case WSC_MSG:
  2432. return wps_process_wsc_msg(wps, msg);
  2433. case WSC_ACK:
  2434. if (wps_validate_wsc_ack(msg) < 0)
  2435. return WPS_FAILURE;
  2436. return wps_process_wsc_ack(wps, msg);
  2437. case WSC_NACK:
  2438. if (wps_validate_wsc_nack(msg) < 0)
  2439. return WPS_FAILURE;
  2440. return wps_process_wsc_nack(wps, msg);
  2441. case WSC_Done:
  2442. if (wps_validate_wsc_done(msg) < 0)
  2443. return WPS_FAILURE;
  2444. ret = wps_process_wsc_done(wps, msg);
  2445. if (ret == WPS_FAILURE) {
  2446. wps->state = SEND_WSC_NACK;
  2447. wps_fail_event(wps->wps, WPS_WSC_DONE);
  2448. }
  2449. return ret;
  2450. default:
  2451. wpa_printf(MSG_DEBUG, "WPS: Unsupported op_code %d", op_code);
  2452. return WPS_FAILURE;
  2453. }
  2454. }
  2455. int wps_registrar_update_ie(struct wps_registrar *reg)
  2456. {
  2457. return wps_set_ie(reg);
  2458. }
  2459. static void wps_registrar_set_selected_timeout(void *eloop_ctx,
  2460. void *timeout_ctx)
  2461. {
  2462. struct wps_registrar *reg = eloop_ctx;
  2463. wpa_printf(MSG_DEBUG, "WPS: Selected Registrar timeout - "
  2464. "unselect internal Registrar");
  2465. reg->selected_registrar = 0;
  2466. reg->pbc = 0;
  2467. wps_registrar_selected_registrar_changed(reg);
  2468. }
  2469. #ifdef CONFIG_WPS_UPNP
  2470. static void wps_registrar_sel_reg_add(struct wps_registrar *reg,
  2471. struct subscription *s)
  2472. {
  2473. int i, j;
  2474. wpa_printf(MSG_DEBUG, "WPS: External Registrar selected (dev_pw_id=%d "
  2475. "config_methods=0x%x)",
  2476. s->dev_password_id, s->config_methods);
  2477. reg->sel_reg_union = 1;
  2478. if (reg->sel_reg_dev_password_id_override != DEV_PW_PUSHBUTTON)
  2479. reg->sel_reg_dev_password_id_override = s->dev_password_id;
  2480. if (reg->sel_reg_config_methods_override == -1)
  2481. reg->sel_reg_config_methods_override = 0;
  2482. reg->sel_reg_config_methods_override |= s->config_methods;
  2483. for (i = 0; i < WPS_MAX_AUTHORIZED_MACS; i++)
  2484. if (is_zero_ether_addr(reg->authorized_macs_union[i]))
  2485. break;
  2486. for (j = 0; i < WPS_MAX_AUTHORIZED_MACS && j < WPS_MAX_AUTHORIZED_MACS;
  2487. j++) {
  2488. if (is_zero_ether_addr(s->authorized_macs[j]))
  2489. break;
  2490. wpa_printf(MSG_DEBUG, "WPS: Add authorized MAC into union: "
  2491. MACSTR, MAC2STR(s->authorized_macs[j]));
  2492. os_memcpy(reg->authorized_macs_union[i],
  2493. s->authorized_macs[j], ETH_ALEN);
  2494. i++;
  2495. }
  2496. wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs union",
  2497. (u8 *) reg->authorized_macs_union,
  2498. sizeof(reg->authorized_macs_union));
  2499. }
  2500. #endif /* CONFIG_WPS_UPNP */
  2501. static void wps_registrar_sel_reg_union(struct wps_registrar *reg)
  2502. {
  2503. #ifdef CONFIG_WPS_UPNP
  2504. struct subscription *s;
  2505. if (reg->wps->wps_upnp == NULL)
  2506. return;
  2507. dl_list_for_each(s, &reg->wps->wps_upnp->subscriptions,
  2508. struct subscription, list) {
  2509. struct subscr_addr *sa;
  2510. sa = dl_list_first(&s->addr_list, struct subscr_addr, list);
  2511. if (sa) {
  2512. wpa_printf(MSG_DEBUG, "WPS: External Registrar %s:%d",
  2513. inet_ntoa(sa->saddr.sin_addr),
  2514. ntohs(sa->saddr.sin_port));
  2515. }
  2516. if (s->selected_registrar)
  2517. wps_registrar_sel_reg_add(reg, s);
  2518. else
  2519. wpa_printf(MSG_DEBUG, "WPS: External Registrar not "
  2520. "selected");
  2521. }
  2522. #endif /* CONFIG_WPS_UPNP */
  2523. }
  2524. /**
  2525. * wps_registrar_selected_registrar_changed - SetSelectedRegistrar change
  2526. * @reg: Registrar data from wps_registrar_init()
  2527. *
  2528. * This function is called when selected registrar state changes, e.g., when an
  2529. * AP receives a SetSelectedRegistrar UPnP message.
  2530. */
  2531. void wps_registrar_selected_registrar_changed(struct wps_registrar *reg)
  2532. {
  2533. wpa_printf(MSG_DEBUG, "WPS: Selected registrar information changed");
  2534. reg->sel_reg_union = reg->selected_registrar;
  2535. reg->sel_reg_dev_password_id_override = -1;
  2536. reg->sel_reg_config_methods_override = -1;
  2537. os_memcpy(reg->authorized_macs_union, reg->authorized_macs,
  2538. WPS_MAX_AUTHORIZED_MACS * ETH_ALEN);
  2539. wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs union (start with own)",
  2540. (u8 *) reg->authorized_macs_union,
  2541. sizeof(reg->authorized_macs_union));
  2542. if (reg->selected_registrar) {
  2543. u16 methods;
  2544. methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
  2545. #ifdef CONFIG_WPS2
  2546. methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
  2547. WPS_CONFIG_PHY_PUSHBUTTON);
  2548. #endif /* CONFIG_WPS2 */
  2549. if (reg->pbc) {
  2550. reg->sel_reg_dev_password_id_override =
  2551. DEV_PW_PUSHBUTTON;
  2552. wps_set_pushbutton(&methods, reg->wps->config_methods);
  2553. }
  2554. wpa_printf(MSG_DEBUG, "WPS: Internal Registrar selected "
  2555. "(pbc=%d)", reg->pbc);
  2556. reg->sel_reg_config_methods_override = methods;
  2557. } else
  2558. wpa_printf(MSG_DEBUG, "WPS: Internal Registrar not selected");
  2559. wps_registrar_sel_reg_union(reg);
  2560. wps_set_ie(reg);
  2561. wps_cb_set_sel_reg(reg);
  2562. }
  2563. int wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr,
  2564. char *buf, size_t buflen)
  2565. {
  2566. struct wps_registrar_device *d;
  2567. int len = 0, ret;
  2568. char uuid[40];
  2569. char devtype[WPS_DEV_TYPE_BUFSIZE];
  2570. d = wps_device_get(reg, addr);
  2571. if (d == NULL)
  2572. return 0;
  2573. if (uuid_bin2str(d->uuid, uuid, sizeof(uuid)))
  2574. return 0;
  2575. ret = os_snprintf(buf + len, buflen - len,
  2576. "wpsUuid=%s\n"
  2577. "wpsPrimaryDeviceType=%s\n"
  2578. "wpsDeviceName=%s\n"
  2579. "wpsManufacturer=%s\n"
  2580. "wpsModelName=%s\n"
  2581. "wpsModelNumber=%s\n"
  2582. "wpsSerialNumber=%s\n",
  2583. uuid,
  2584. wps_dev_type_bin2str(d->dev.pri_dev_type, devtype,
  2585. sizeof(devtype)),
  2586. d->dev.device_name ? d->dev.device_name : "",
  2587. d->dev.manufacturer ? d->dev.manufacturer : "",
  2588. d->dev.model_name ? d->dev.model_name : "",
  2589. d->dev.model_number ? d->dev.model_number : "",
  2590. d->dev.serial_number ? d->dev.serial_number : "");
  2591. if (ret < 0 || (size_t) ret >= buflen - len)
  2592. return len;
  2593. len += ret;
  2594. return len;
  2595. }