wps_dev_attr.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. /*
  2. * Wi-Fi Protected Setup - device attributes
  3. * Copyright (c) 2008, 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 "includes.h"
  15. #include "common.h"
  16. #include "wps_i.h"
  17. #include "wps_dev_attr.h"
  18. int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg)
  19. {
  20. size_t len;
  21. wpa_printf(MSG_DEBUG, "WPS: * Manufacturer");
  22. wpabuf_put_be16(msg, ATTR_MANUFACTURER);
  23. len = dev->manufacturer ? os_strlen(dev->manufacturer) : 0;
  24. #ifndef CONFIG_WPS_STRICT
  25. if (len == 0) {
  26. /*
  27. * Some deployed WPS implementations fail to parse zero-length
  28. * attributes. As a workaround, send a space character if the
  29. * device attribute string is empty.
  30. */
  31. wpabuf_put_be16(msg, 1);
  32. wpabuf_put_u8(msg, ' ');
  33. return 0;
  34. }
  35. #endif /* CONFIG_WPS_STRICT */
  36. wpabuf_put_be16(msg, len);
  37. wpabuf_put_data(msg, dev->manufacturer, len);
  38. return 0;
  39. }
  40. int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg)
  41. {
  42. size_t len;
  43. wpa_printf(MSG_DEBUG, "WPS: * Model Name");
  44. wpabuf_put_be16(msg, ATTR_MODEL_NAME);
  45. len = dev->model_name ? os_strlen(dev->model_name) : 0;
  46. #ifndef CONFIG_WPS_STRICT
  47. if (len == 0) {
  48. /*
  49. * Some deployed WPS implementations fail to parse zero-length
  50. * attributes. As a workaround, send a space character if the
  51. * device attribute string is empty.
  52. */
  53. wpabuf_put_be16(msg, 1);
  54. wpabuf_put_u8(msg, ' ');
  55. return 0;
  56. }
  57. #endif /* CONFIG_WPS_STRICT */
  58. wpabuf_put_be16(msg, len);
  59. wpabuf_put_data(msg, dev->model_name, len);
  60. return 0;
  61. }
  62. int wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg)
  63. {
  64. size_t len;
  65. wpa_printf(MSG_DEBUG, "WPS: * Model Number");
  66. wpabuf_put_be16(msg, ATTR_MODEL_NUMBER);
  67. len = dev->model_number ? os_strlen(dev->model_number) : 0;
  68. #ifndef CONFIG_WPS_STRICT
  69. if (len == 0) {
  70. /*
  71. * Some deployed WPS implementations fail to parse zero-length
  72. * attributes. As a workaround, send a space character if the
  73. * device attribute string is empty.
  74. */
  75. wpabuf_put_be16(msg, 1);
  76. wpabuf_put_u8(msg, ' ');
  77. return 0;
  78. }
  79. #endif /* CONFIG_WPS_STRICT */
  80. wpabuf_put_be16(msg, len);
  81. wpabuf_put_data(msg, dev->model_number, len);
  82. return 0;
  83. }
  84. static int wps_build_serial_number(struct wps_device_data *dev,
  85. struct wpabuf *msg)
  86. {
  87. size_t len;
  88. wpa_printf(MSG_DEBUG, "WPS: * Serial Number");
  89. wpabuf_put_be16(msg, ATTR_SERIAL_NUMBER);
  90. len = dev->serial_number ? os_strlen(dev->serial_number) : 0;
  91. #ifndef CONFIG_WPS_STRICT
  92. if (len == 0) {
  93. /*
  94. * Some deployed WPS implementations fail to parse zero-length
  95. * attributes. As a workaround, send a space character if the
  96. * device attribute string is empty.
  97. */
  98. wpabuf_put_be16(msg, 1);
  99. wpabuf_put_u8(msg, ' ');
  100. return 0;
  101. }
  102. #endif /* CONFIG_WPS_STRICT */
  103. wpabuf_put_be16(msg, len);
  104. wpabuf_put_data(msg, dev->serial_number, len);
  105. return 0;
  106. }
  107. int wps_build_primary_dev_type(struct wps_device_data *dev, struct wpabuf *msg)
  108. {
  109. wpa_printf(MSG_DEBUG, "WPS: * Primary Device Type");
  110. wpabuf_put_be16(msg, ATTR_PRIMARY_DEV_TYPE);
  111. wpabuf_put_be16(msg, WPS_DEV_TYPE_LEN);
  112. wpabuf_put_data(msg, dev->pri_dev_type, WPS_DEV_TYPE_LEN);
  113. return 0;
  114. }
  115. int wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg)
  116. {
  117. size_t len;
  118. wpa_printf(MSG_DEBUG, "WPS: * Device Name");
  119. wpabuf_put_be16(msg, ATTR_DEV_NAME);
  120. len = dev->device_name ? os_strlen(dev->device_name) : 0;
  121. #ifndef CONFIG_WPS_STRICT
  122. if (len == 0) {
  123. /*
  124. * Some deployed WPS implementations fail to parse zero-length
  125. * attributes. As a workaround, send a space character if the
  126. * device attribute string is empty.
  127. */
  128. wpabuf_put_be16(msg, 1);
  129. wpabuf_put_u8(msg, ' ');
  130. return 0;
  131. }
  132. #endif /* CONFIG_WPS_STRICT */
  133. wpabuf_put_be16(msg, len);
  134. wpabuf_put_data(msg, dev->device_name, len);
  135. return 0;
  136. }
  137. int wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg)
  138. {
  139. if (wps_build_manufacturer(dev, msg) ||
  140. wps_build_model_name(dev, msg) ||
  141. wps_build_model_number(dev, msg) ||
  142. wps_build_serial_number(dev, msg) ||
  143. wps_build_primary_dev_type(dev, msg) ||
  144. wps_build_dev_name(dev, msg))
  145. return -1;
  146. return 0;
  147. }
  148. int wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg)
  149. {
  150. wpa_printf(MSG_DEBUG, "WPS: * OS Version");
  151. wpabuf_put_be16(msg, ATTR_OS_VERSION);
  152. wpabuf_put_be16(msg, 4);
  153. wpabuf_put_be32(msg, 0x80000000 | dev->os_version);
  154. return 0;
  155. }
  156. int wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg)
  157. {
  158. wpa_printf(MSG_DEBUG, "WPS: * RF Bands (%x)", dev->rf_bands);
  159. wpabuf_put_be16(msg, ATTR_RF_BANDS);
  160. wpabuf_put_be16(msg, 1);
  161. wpabuf_put_u8(msg, dev->rf_bands);
  162. return 0;
  163. }
  164. static int wps_process_manufacturer(struct wps_device_data *dev, const u8 *str,
  165. size_t str_len)
  166. {
  167. if (str == NULL) {
  168. wpa_printf(MSG_DEBUG, "WPS: No Manufacturer received");
  169. return -1;
  170. }
  171. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer", str, str_len);
  172. os_free(dev->manufacturer);
  173. dev->manufacturer = os_malloc(str_len + 1);
  174. if (dev->manufacturer == NULL)
  175. return -1;
  176. os_memcpy(dev->manufacturer, str, str_len);
  177. dev->manufacturer[str_len] = '\0';
  178. return 0;
  179. }
  180. static int wps_process_model_name(struct wps_device_data *dev, const u8 *str,
  181. size_t str_len)
  182. {
  183. if (str == NULL) {
  184. wpa_printf(MSG_DEBUG, "WPS: No Model Name received");
  185. return -1;
  186. }
  187. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Name", str, str_len);
  188. os_free(dev->model_name);
  189. dev->model_name = os_malloc(str_len + 1);
  190. if (dev->model_name == NULL)
  191. return -1;
  192. os_memcpy(dev->model_name, str, str_len);
  193. dev->model_name[str_len] = '\0';
  194. return 0;
  195. }
  196. static int wps_process_model_number(struct wps_device_data *dev, const u8 *str,
  197. size_t str_len)
  198. {
  199. if (str == NULL) {
  200. wpa_printf(MSG_DEBUG, "WPS: No Model Number received");
  201. return -1;
  202. }
  203. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Model Number", str, str_len);
  204. os_free(dev->model_number);
  205. dev->model_number = os_malloc(str_len + 1);
  206. if (dev->model_number == NULL)
  207. return -1;
  208. os_memcpy(dev->model_number, str, str_len);
  209. dev->model_number[str_len] = '\0';
  210. return 0;
  211. }
  212. static int wps_process_serial_number(struct wps_device_data *dev,
  213. const u8 *str, size_t str_len)
  214. {
  215. if (str == NULL) {
  216. wpa_printf(MSG_DEBUG, "WPS: No Serial Number received");
  217. return -1;
  218. }
  219. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Serial Number", str, str_len);
  220. os_free(dev->serial_number);
  221. dev->serial_number = os_malloc(str_len + 1);
  222. if (dev->serial_number == NULL)
  223. return -1;
  224. os_memcpy(dev->serial_number, str, str_len);
  225. dev->serial_number[str_len] = '\0';
  226. return 0;
  227. }
  228. static int wps_process_dev_name(struct wps_device_data *dev, const u8 *str,
  229. size_t str_len)
  230. {
  231. if (str == NULL) {
  232. wpa_printf(MSG_DEBUG, "WPS: No Device Name received");
  233. return -1;
  234. }
  235. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Device Name", str, str_len);
  236. os_free(dev->device_name);
  237. dev->device_name = os_malloc(str_len + 1);
  238. if (dev->device_name == NULL)
  239. return -1;
  240. os_memcpy(dev->device_name, str, str_len);
  241. dev->device_name[str_len] = '\0';
  242. return 0;
  243. }
  244. static int wps_process_primary_dev_type(struct wps_device_data *dev,
  245. const u8 *dev_type)
  246. {
  247. #ifndef CONFIG_NO_STDOUT_DEBUG
  248. char devtype[WPS_DEV_TYPE_BUFSIZE];
  249. #endif /* CONFIG_NO_STDOUT_DEBUG */
  250. if (dev_type == NULL) {
  251. wpa_printf(MSG_DEBUG, "WPS: No Primary Device Type received");
  252. return -1;
  253. }
  254. os_memcpy(dev->pri_dev_type, dev_type, WPS_DEV_TYPE_LEN);
  255. wpa_printf(MSG_DEBUG, "WPS: Primary Device Type: %s",
  256. wps_dev_type_bin2str(dev->pri_dev_type, devtype,
  257. sizeof(devtype)));
  258. return 0;
  259. }
  260. int wps_process_device_attrs(struct wps_device_data *dev,
  261. struct wps_parse_attr *attr)
  262. {
  263. if (wps_process_manufacturer(dev, attr->manufacturer,
  264. attr->manufacturer_len) ||
  265. wps_process_model_name(dev, attr->model_name,
  266. attr->model_name_len) ||
  267. wps_process_model_number(dev, attr->model_number,
  268. attr->model_number_len) ||
  269. wps_process_serial_number(dev, attr->serial_number,
  270. attr->serial_number_len) ||
  271. wps_process_primary_dev_type(dev, attr->primary_dev_type) ||
  272. wps_process_dev_name(dev, attr->dev_name, attr->dev_name_len))
  273. return -1;
  274. return 0;
  275. }
  276. int wps_process_os_version(struct wps_device_data *dev, const u8 *ver)
  277. {
  278. if (ver == NULL) {
  279. wpa_printf(MSG_DEBUG, "WPS: No OS Version received");
  280. return -1;
  281. }
  282. dev->os_version = WPA_GET_BE32(ver);
  283. wpa_printf(MSG_DEBUG, "WPS: OS Version %08x", dev->os_version);
  284. return 0;
  285. }
  286. int wps_process_rf_bands(struct wps_device_data *dev, const u8 *bands)
  287. {
  288. if (bands == NULL) {
  289. wpa_printf(MSG_DEBUG, "WPS: No RF Bands received");
  290. return -1;
  291. }
  292. dev->rf_bands = *bands;
  293. wpa_printf(MSG_DEBUG, "WPS: Enrollee RF Bands 0x%x", dev->rf_bands);
  294. return 0;
  295. }
  296. void wps_device_data_dup(struct wps_device_data *dst,
  297. const struct wps_device_data *src)
  298. {
  299. if (src->device_name)
  300. dst->device_name = os_strdup(src->device_name);
  301. if (src->manufacturer)
  302. dst->manufacturer = os_strdup(src->manufacturer);
  303. if (src->model_name)
  304. dst->model_name = os_strdup(src->model_name);
  305. if (src->model_number)
  306. dst->model_number = os_strdup(src->model_number);
  307. if (src->serial_number)
  308. dst->serial_number = os_strdup(src->serial_number);
  309. os_memcpy(dst->pri_dev_type, src->pri_dev_type, WPS_DEV_TYPE_LEN);
  310. dst->os_version = src->os_version;
  311. dst->rf_bands = src->rf_bands;
  312. }
  313. void wps_device_data_free(struct wps_device_data *dev)
  314. {
  315. os_free(dev->device_name);
  316. dev->device_name = NULL;
  317. os_free(dev->manufacturer);
  318. dev->manufacturer = NULL;
  319. os_free(dev->model_name);
  320. dev->model_name = NULL;
  321. os_free(dev->model_number);
  322. dev->model_number = NULL;
  323. os_free(dev->serial_number);
  324. dev->serial_number = NULL;
  325. }