Browse Source

WPS ER: Check uuid_str2bin() return value

Jouni Malinen 15 years ago
parent
commit
68fd595fa5
2 changed files with 8 additions and 2 deletions
  1. 2 1
      src/wps/wps_er.c
  2. 6 1
      src/wps/wps_er_ssdp.c

+ 2 - 1
src/wps/wps_er.c

@@ -479,7 +479,8 @@ static void wps_er_parse_device_description(struct wps_er_ap *ap,
 	pos = os_strstr(ap->udn, "uuid:");
 	if (pos) {
 		pos += 5;
-		uuid_str2bin(pos, ap->uuid);
+		if (uuid_str2bin(pos, ap->uuid) < 0)
+			wpa_printf(MSG_DEBUG, "WPS ER: Invalid UUID in UDN");
 	}
 
 	ap->upc = xml_get_first_item(data, "UPC");

+ 6 - 1
src/wps/wps_er_ssdp.c

@@ -96,7 +96,12 @@ static void wps_er_ssdp_rx(int sd, void *eloop_ctx, void *sock_ctx)
 				pos2 += 5;
 				while (*pos2 == ' ')
 					pos2++;
-				uuid_str2bin(pos2, uuid);
+				if (uuid_str2bin(pos2, uuid) < 0) {
+					wpa_printf(MSG_DEBUG, "WPS ER: "
+						   "Invalid UUID in USN: %s",
+						   pos2);
+					return;
+				}
 			}
 		}
 	}