123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639 |
- /*
- * Wi-Fi Protected Setup - External Registrar
- * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * Alternatively, this software may be distributed under the terms of BSD
- * license.
- *
- * See README and COPYING for more details.
- */
- #include "includes.h"
- #include "common.h"
- #include "uuid.h"
- #include "eloop.h"
- #include "httpread.h"
- #include "http_client.h"
- #include "http_server.h"
- #include "upnp_xml.h"
- #include "wps_i.h"
- #include "wps_upnp.h"
- #include "wps_upnp_i.h"
- /* TODO:
- * send notification of new AP device with wpa_msg
- * re-send notifications with wpa_msg if ER re-started (to update wpa_gui-qt4)
- * (also re-send SSDP M-SEARCH in this case to find new APs)
- * parse UPnP event messages
- */
- static void wps_er_ap_timeout(void *eloop_data, void *user_ctx);
- struct wps_er_ap {
- struct wps_er_ap *next;
- struct wps_er *er;
- struct in_addr addr;
- char *location;
- struct http_client *http;
- char *friendly_name;
- char *manufacturer;
- char *manufacturer_url;
- char *model_description;
- char *model_name;
- char *model_number;
- char *model_url;
- char *serial_number;
- char *udn;
- char *upc;
- char *scpd_url;
- char *control_url;
- char *event_sub_url;
- int subscribed;
- unsigned int id;
- };
- struct wps_er {
- struct wps_registrar *reg;
- char ifname[17];
- char *mac_addr_text; /* mac addr of network i.f. we use */
- u8 mac_addr[ETH_ALEN]; /* mac addr of network i.f. we use */
- char *ip_addr_text; /* IP address of network i.f. we use */
- unsigned ip_addr; /* IP address of network i.f. we use (host order) */
- int multicast_sd;
- int ssdp_sd;
- struct wps_er_ap *ap;
- struct http_server *http_srv;
- int http_port;
- unsigned int next_ap_id;
- };
- static void wps_er_pin_needed_cb(void *ctx, const u8 *uuid_e,
- const struct wps_device_data *dev)
- {
- wpa_printf(MSG_DEBUG, "WPS ER: PIN needed");
- }
- static struct wps_er_ap * wps_er_ap_get(struct wps_er *er,
- struct in_addr *addr)
- {
- struct wps_er_ap *ap;
- for (ap = er->ap; ap; ap = ap->next) {
- if (ap->addr.s_addr == addr->s_addr)
- break;
- }
- return ap;
- }
- static struct wps_er_ap * wps_er_ap_get_id(struct wps_er *er, unsigned int id)
- {
- struct wps_er_ap *ap;
- for (ap = er->ap; ap; ap = ap->next) {
- if (ap->id == id)
- break;
- }
- return ap;
- }
- static void wps_er_ap_free(struct wps_er *er, struct wps_er_ap *ap)
- {
- /* TODO: if ap->subscribed, unsubscribe from events if the AP is still
- * alive */
- wpa_printf(MSG_DEBUG, "WPS ER: Removing AP entry for %s (%s)",
- inet_ntoa(ap->addr), ap->location);
- eloop_cancel_timeout(wps_er_ap_timeout, er, ap);
- os_free(ap->location);
- http_client_free(ap->http);
- os_free(ap->friendly_name);
- os_free(ap->manufacturer);
- os_free(ap->manufacturer_url);
- os_free(ap->model_description);
- os_free(ap->model_name);
- os_free(ap->model_number);
- os_free(ap->model_url);
- os_free(ap->serial_number);
- os_free(ap->udn);
- os_free(ap->upc);
- os_free(ap->scpd_url);
- os_free(ap->control_url);
- os_free(ap->event_sub_url);
- os_free(ap);
- }
- static void wps_er_ap_timeout(void *eloop_data, void *user_ctx)
- {
- struct wps_er *er = eloop_data;
- struct wps_er_ap *ap = user_ctx;
- wpa_printf(MSG_DEBUG, "WPS ER: AP advertisement timed out");
- wps_er_ap_free(er, ap);
- }
- static void wps_er_http_subscribe_cb(void *ctx, struct http_client *c,
- enum http_client_event event)
- {
- struct wps_er_ap *ap = ctx;
- switch (event) {
- case HTTP_CLIENT_OK:
- wpa_printf(MSG_DEBUG, "WPS ER: Subscribed to events");
- break;
- case HTTP_CLIENT_FAILED:
- case HTTP_CLIENT_INVALID_REPLY:
- case HTTP_CLIENT_TIMEOUT:
- wpa_printf(MSG_DEBUG, "WPS ER: Failed to subscribe to events");
- break;
- }
- http_client_free(ap->http);
- ap->http = NULL;
- }
- static void wps_er_subscribe(struct wps_er_ap *ap)
- {
- struct wpabuf *req;
- struct sockaddr_in dst;
- char *url, *path;
- if (ap->event_sub_url == NULL) {
- wpa_printf(MSG_DEBUG, "WPS ER: No eventSubURL - cannot "
- "subscribe");
- return;
- }
- if (ap->http) {
- wpa_printf(MSG_DEBUG, "WPS ER: Pending HTTP request - cannot "
- "send subscribe request");
- return;
- }
- url = http_client_url_parse(ap->event_sub_url, &dst, &path);
- if (url == NULL) {
- wpa_printf(MSG_DEBUG, "WPS ER: Failed to parse eventSubURL");
- return;
- }
- req = wpabuf_alloc(os_strlen(ap->event_sub_url) + 1000);
- if (req == NULL) {
- os_free(url);
- return;
- }
- wpabuf_printf(req,
- "SUBSCRIBE %s HTTP/1.1\r\n"
- "HOST: %s:%d\r\n"
- "CALLBACK: <http://%s:%d/event/%d>\r\n"
- "NT: upnp:event\r\n"
- "TIMEOUT: Second-%d\r\n"
- "\r\n",
- path, inet_ntoa(dst.sin_addr), ntohs(dst.sin_port),
- ap->er->ip_addr_text, ap->er->http_port, ap->id, 1800);
- os_free(url);
- wpa_hexdump_ascii(MSG_MSGDUMP, "WPS ER: Subscription request",
- wpabuf_head(req), wpabuf_len(req));
- ap->http = http_client_addr(&dst, req, 1000, wps_er_http_subscribe_cb,
- ap);
- if (ap->http == NULL)
- wpabuf_free(req);
- }
- static void wps_er_parse_device_description(struct wps_er_ap *ap,
- struct wpabuf *reply)
- {
- /* Note: reply includes null termination after the buffer data */
- const char *data = wpabuf_head(reply);
- wpa_hexdump_ascii(MSG_MSGDUMP, "WPS ER: Device info",
- wpabuf_head(reply), wpabuf_len(reply));
- ap->friendly_name = xml_get_first_item(data, "friendlyName");
- wpa_printf(MSG_DEBUG, "WPS ER: friendlyName='%s'", ap->friendly_name);
- ap->manufacturer = xml_get_first_item(data, "manufacturer");
- wpa_printf(MSG_DEBUG, "WPS ER: manufacturer='%s'", ap->manufacturer);
- ap->manufacturer_url = xml_get_first_item(data, "manufacturerURL");
- wpa_printf(MSG_DEBUG, "WPS ER: manufacturerURL='%s'",
- ap->manufacturer_url);
- ap->model_description = xml_get_first_item(data, "modelDescription");
- wpa_printf(MSG_DEBUG, "WPS ER: modelDescription='%s'",
- ap->model_description);
- ap->model_name = xml_get_first_item(data, "modelName");
- wpa_printf(MSG_DEBUG, "WPS ER: modelName='%s'", ap->model_name);
- ap->model_number = xml_get_first_item(data, "modelNumber");
- wpa_printf(MSG_DEBUG, "WPS ER: modelNumber='%s'", ap->model_number);
- ap->model_url = xml_get_first_item(data, "modelURL");
- wpa_printf(MSG_DEBUG, "WPS ER: modelURL='%s'", ap->model_url);
- ap->serial_number = xml_get_first_item(data, "serialNumber");
- wpa_printf(MSG_DEBUG, "WPS ER: serialNumber='%s'", ap->serial_number);
- ap->udn = xml_get_first_item(data, "UDN");
- wpa_printf(MSG_DEBUG, "WPS ER: UDN='%s'", ap->udn);
- ap->upc = xml_get_first_item(data, "UPC");
- wpa_printf(MSG_DEBUG, "WPS ER: UPC='%s'", ap->upc);
- ap->scpd_url = http_link_update(
- xml_get_first_item(data, "SCPDURL"), ap->location);
- wpa_printf(MSG_DEBUG, "WPS ER: SCPDURL='%s'", ap->scpd_url);
- ap->control_url = http_link_update(
- xml_get_first_item(data, "controlURL"), ap->location);
- wpa_printf(MSG_DEBUG, "WPS ER: controlURL='%s'", ap->control_url);
- ap->event_sub_url = http_link_update(
- xml_get_first_item(data, "eventSubURL"), ap->location);
- wpa_printf(MSG_DEBUG, "WPS ER: eventSubURL='%s'", ap->event_sub_url);
- }
- static void wps_er_http_dev_desc_cb(void *ctx, struct http_client *c,
- enum http_client_event event)
- {
- struct wps_er_ap *ap = ctx;
- struct wpabuf *reply;
- int subscribe = 0;
- switch (event) {
- case HTTP_CLIENT_OK:
- reply = http_client_get_body(c);
- if (reply == NULL)
- break;
- wps_er_parse_device_description(ap, reply);
- subscribe = 1;
- break;
- case HTTP_CLIENT_FAILED:
- case HTTP_CLIENT_INVALID_REPLY:
- case HTTP_CLIENT_TIMEOUT:
- wpa_printf(MSG_DEBUG, "WPS ER: Failed to fetch device info");
- break;
- }
- http_client_free(ap->http);
- ap->http = NULL;
- if (subscribe)
- wps_er_subscribe(ap);
- }
- static void wps_er_ap_add(struct wps_er *er, struct in_addr *addr,
- const char *location, int max_age)
- {
- struct wps_er_ap *ap;
- ap = wps_er_ap_get(er, addr);
- if (ap) {
- /* Update advertisement timeout */
- eloop_cancel_timeout(wps_er_ap_timeout, er, ap);
- eloop_register_timeout(max_age, 0, wps_er_ap_timeout, er, ap);
- return;
- }
- ap = os_zalloc(sizeof(*ap));
- if (ap == NULL)
- return;
- ap->er = er;
- ap->id = ++er->next_ap_id;
- ap->location = os_strdup(location);
- if (ap->location == NULL) {
- os_free(ap);
- return;
- }
- ap->next = er->ap;
- er->ap = ap;
- ap->addr.s_addr = addr->s_addr;
- eloop_register_timeout(max_age, 0, wps_er_ap_timeout, er, ap);
- wpa_printf(MSG_DEBUG, "WPS ER: Added AP entry for %s (%s)",
- inet_ntoa(ap->addr), ap->location);
- /* Fetch device description */
- ap->http = http_client_url(ap->location, NULL, 10000,
- wps_er_http_dev_desc_cb, ap);
- }
- static void wps_er_ap_remove(struct wps_er *er, struct in_addr *addr)
- {
- struct wps_er_ap *prev = NULL, *ap = er->ap;
- while (ap) {
- if (ap->addr.s_addr == addr->s_addr) {
- if (prev)
- prev->next = ap->next;
- else
- er->ap = ap->next;
- wps_er_ap_free(er, ap);
- return;
- }
- prev = ap;
- ap = ap->next;
- }
- }
- static void wps_er_ap_remove_all(struct wps_er *er)
- {
- struct wps_er_ap *prev, *ap;
- ap = er->ap;
- er->ap = NULL;
- while (ap) {
- prev = ap;
- ap = ap->next;
- wps_er_ap_free(er, prev);
- }
- }
- static void wps_er_ssdp_rx(int sd, void *eloop_ctx, void *sock_ctx)
- {
- struct wps_er *er = eloop_ctx;
- struct sockaddr_in addr; /* client address */
- socklen_t addr_len;
- int nread;
- char buf[MULTICAST_MAX_READ], *pos, *pos2, *start;
- int wfa = 0, byebye = 0;
- int max_age = -1;
- char *location = NULL;
- addr_len = sizeof(addr);
- nread = recvfrom(sd, buf, sizeof(buf) - 1, 0,
- (struct sockaddr *) &addr, &addr_len);
- if (nread <= 0)
- return;
- buf[nread] = '\0';
- wpa_printf(MSG_DEBUG, "WPS ER: Received SSDP from %s",
- inet_ntoa(addr.sin_addr));
- wpa_hexdump_ascii(MSG_MSGDUMP, "WPS ER: Received SSDP contents",
- (u8 *) buf, nread);
- if (sd == er->multicast_sd) {
- /* Reply to M-SEARCH */
- if (os_strncmp(buf, "HTTP/1.1 200 OK", 15) != 0)
- return; /* unexpected response header */
- } else {
- /* Unsolicited message (likely NOTIFY or M-SEARCH) */
- if (os_strncmp(buf, "NOTIFY ", 7) != 0)
- return; /* only process notifications */
- }
- for (start = buf; start && *start; start = pos) {
- pos = os_strchr(start, '\n');
- if (pos) {
- if (pos[-1] == '\r')
- pos[-1] = '\0';
- *pos++ = '\0';
- }
- if (os_strstr(start, "schemas-wifialliance-org:device:"
- "WFADevice:1"))
- wfa = 1;
- if (os_strstr(start, "schemas-wifialliance-org:service:"
- "WFAWLANConfig:1"))
- wfa = 1;
- if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
- start += 9;
- while (*start == ' ')
- start++;
- location = start;
- } else if (os_strncasecmp(start, "NTS:", 4) == 0) {
- if (os_strstr(start, "ssdp:byebye"))
- byebye = 1;
- } else if (os_strncasecmp(start, "CACHE-CONTROL:", 14) == 0) {
- start += 9;
- while (*start == ' ')
- start++;
- pos2 = os_strstr(start, "max-age=");
- if (pos2 == NULL)
- continue;
- pos2 += 8;
- max_age = atoi(pos2);
- }
- }
- if (!wfa)
- return; /* Not WPS advertisement/reply */
- if (byebye) {
- wps_er_ap_remove(er, &addr.sin_addr);
- return;
- }
- if (!location)
- return; /* Unknown location */
- if (max_age < 1)
- return; /* No max-age reported */
- wpa_printf(MSG_DEBUG, "WPS ER: AP discovered: %s "
- "(packet source: %s max-age: %d)",
- location, inet_ntoa(addr.sin_addr), max_age);
- wps_er_ap_add(er, &addr.sin_addr, location, max_age);
- }
- static void wps_er_send_ssdp_msearch(struct wps_er *er)
- {
- struct wpabuf *msg;
- struct sockaddr_in dest;
- msg = wpabuf_alloc(500);
- if (msg == NULL)
- return;
- wpabuf_put_str(msg,
- "M-SEARCH * HTTP/1.1\r\n"
- "HOST: 239.255.255.250:1900\r\n"
- "MAN: \"ssdp:discover\"\r\n"
- "MX: 3\r\n"
- "ST: urn:schemas-wifialliance-org:device:WFADevice:1"
- "\r\n"
- "\r\n");
- os_memset(&dest, 0, sizeof(dest));
- dest.sin_family = AF_INET;
- dest.sin_addr.s_addr = inet_addr(UPNP_MULTICAST_ADDRESS);
- dest.sin_port = htons(UPNP_MULTICAST_PORT);
- if (sendto(er->multicast_sd, wpabuf_head(msg), wpabuf_len(msg), 0,
- (struct sockaddr *) &dest, sizeof(dest)) < 0)
- wpa_printf(MSG_DEBUG, "WPS ER: M-SEARCH sendto failed: "
- "%d (%s)", errno, strerror(errno));
- wpabuf_free(msg);
- }
- static void wps_er_http_event(struct wps_er *er, struct http_request *req,
- unsigned int ap_id)
- {
- struct wps_er_ap *ap = wps_er_ap_get_id(er, ap_id);
- if (ap == NULL) {
- wpa_printf(MSG_DEBUG, "WPS ER: HTTP event from unknown AP id "
- "%u", ap_id);
- return;
- }
- wpa_printf(MSG_MSGDUMP, "WPS ER: HTTP event from AP id %u: %s",
- ap_id, http_request_get_data(req));
- /* TODO */
- http_request_deinit(req);
- }
- static void wps_er_http_notify(struct wps_er *er, struct http_request *req)
- {
- char *uri = http_request_get_uri(req);
- if (os_strncmp(uri, "/event/", 7) == 0) {
- wps_er_http_event(er, req, atoi(uri + 7));
- } else {
- wpa_printf(MSG_DEBUG, "WPS ER: Unknown HTTP NOTIFY for '%s'",
- uri);
- http_request_deinit(req);
- }
- }
- static void wps_er_http_req(void *ctx, struct http_request *req)
- {
- struct wps_er *er = ctx;
- struct sockaddr_in *cli = http_request_get_cli_addr(req);
- enum httpread_hdr_type type = http_request_get_type(req);
- wpa_printf(MSG_DEBUG, "WPS ER: HTTP request: '%s' (type %d) from "
- "%s:%d",
- http_request_get_uri(req), type,
- inet_ntoa(cli->sin_addr), ntohs(cli->sin_port));
- switch (type) {
- case HTTPREAD_HDR_TYPE_NOTIFY:
- wps_er_http_notify(er, req);
- break;
- default:
- wpa_printf(MSG_DEBUG, "WPS ER: Unsupported HTTP request type "
- "%d", type);
- http_request_deinit(req);
- break;
- }
- }
- struct wps_er *
- wps_er_init(struct wps_context *wps, const char *ifname)
- {
- struct wps_er *er;
- struct wps_registrar_config rcfg;
- struct in_addr addr;
- er = os_zalloc(sizeof(*er));
- if (er == NULL)
- return NULL;
- er->multicast_sd = -1;
- er->ssdp_sd = -1;
- os_strlcpy(er->ifname, ifname, sizeof(er->ifname));
- os_memset(&rcfg, 0, sizeof(rcfg));
- rcfg.pin_needed_cb = wps_er_pin_needed_cb;
- rcfg.cb_ctx = er;
- er->reg = wps_registrar_init(wps, &rcfg);
- if (er->reg == NULL) {
- wps_er_deinit(er);
- return NULL;
- }
- if (get_netif_info(ifname,
- &er->ip_addr, &er->ip_addr_text,
- er->mac_addr, &er->mac_addr_text)) {
- wpa_printf(MSG_INFO, "WPS UPnP: Could not get IP/MAC address "
- "for %s. Does it have IP address?", ifname);
- wps_er_deinit(er);
- return NULL;
- }
- if (add_ssdp_network(ifname)) {
- wps_er_deinit(er);
- return NULL;
- }
- er->multicast_sd = ssdp_open_multicast_sock(er->ip_addr);
- if (er->multicast_sd < 0) {
- wps_er_deinit(er);
- return NULL;
- }
- er->ssdp_sd = ssdp_listener_open();
- if (er->ssdp_sd < 0) {
- wps_er_deinit(er);
- return NULL;
- }
- if (eloop_register_sock(er->multicast_sd, EVENT_TYPE_READ,
- wps_er_ssdp_rx, er, NULL) ||
- eloop_register_sock(er->ssdp_sd, EVENT_TYPE_READ,
- wps_er_ssdp_rx, er, NULL)) {
- wps_er_deinit(er);
- return NULL;
- }
- addr.s_addr = er->ip_addr;
- er->http_srv = http_server_init(&addr, -1, wps_er_http_req, er);
- if (er->http_srv == NULL) {
- wps_er_deinit(er);
- return NULL;
- }
- er->http_port = http_server_get_port(er->http_srv);
- wpa_printf(MSG_DEBUG, "WPS ER: Start (ifname=%s ip_addr=%s "
- "mac_addr=%s)",
- er->ifname, er->ip_addr_text, er->mac_addr_text);
- wps_er_send_ssdp_msearch(er);
- return er;
- }
- void wps_er_deinit(struct wps_er *er)
- {
- if (er == NULL)
- return;
- http_server_deinit(er->http_srv);
- wps_er_ap_remove_all(er);
- if (er->multicast_sd >= 0) {
- eloop_unregister_sock(er->multicast_sd, EVENT_TYPE_READ);
- close(er->multicast_sd);
- }
- if (er->ssdp_sd >= 0) {
- eloop_unregister_sock(er->ssdp_sd, EVENT_TYPE_READ);
- close(er->ssdp_sd);
- }
- wps_registrar_deinit(er->reg);
- os_free(er->ip_addr_text);
- os_free(er->mac_addr_text);
- os_free(er);
- }
|