a2df55a0b133a7b60594e58b9b8847af028f939e
[platform/upstream/connman.git] / src / wispr.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2013  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <stdlib.h>
28
29 #include <gweb/gweb.h>
30
31 #include "connman.h"
32
33 #define STATUS_URL_IPV4  "http://ipv4.connman.net/online/status.html"
34 #define STATUS_URL_IPV6  "http://ipv6.connman.net/online/status.html"
35
36 struct connman_wispr_message {
37         bool has_error;
38         const char *current_element;
39         int message_type;
40         int response_code;
41         char *login_url;
42         char *abort_login_url;
43         char *logoff_url;
44         char *access_procedure;
45         char *access_location;
46         char *location_name;
47 };
48
49 enum connman_wispr_result {
50         CONNMAN_WISPR_RESULT_UNKNOWN = 0,
51         CONNMAN_WISPR_RESULT_LOGIN   = 1,
52         CONNMAN_WISPR_RESULT_ONLINE  = 2,
53         CONNMAN_WISPR_RESULT_FAILED  = 3,
54 };
55
56 struct wispr_route {
57         char *address;
58         int if_index;
59 };
60
61 struct connman_wispr_portal_context {
62         struct connman_service *service;
63         enum connman_ipconfig_type type;
64         struct connman_wispr_portal *wispr_portal;
65
66         /* Portal/WISPr common */
67         GWeb *web;
68         unsigned int token;
69         guint request_id;
70
71         const char *status_url;
72
73         char *redirect_url;
74
75         /* WISPr specific */
76         GWebParser *wispr_parser;
77         struct connman_wispr_message wispr_msg;
78
79         char *wispr_username;
80         char *wispr_password;
81         char *wispr_formdata;
82
83         enum connman_wispr_result wispr_result;
84
85         GSList *route_list;
86
87         guint timeout;
88 };
89
90 struct connman_wispr_portal {
91         struct connman_wispr_portal_context *ipv4_context;
92         struct connman_wispr_portal_context *ipv6_context;
93 };
94
95 static bool wispr_portal_web_result(GWebResult *result, gpointer user_data);
96
97 static GHashTable *wispr_portal_list = NULL;
98
99 static void connman_wispr_message_init(struct connman_wispr_message *msg)
100 {
101         DBG("");
102
103         msg->has_error = false;
104         msg->current_element = NULL;
105
106         msg->message_type = -1;
107         msg->response_code = -1;
108
109         g_free(msg->login_url);
110         msg->login_url = NULL;
111
112         g_free(msg->abort_login_url);
113         msg->abort_login_url = NULL;
114
115         g_free(msg->logoff_url);
116         msg->logoff_url = NULL;
117
118         g_free(msg->access_procedure);
119         msg->access_procedure = NULL;
120
121         g_free(msg->access_location);
122         msg->access_location = NULL;
123
124         g_free(msg->location_name);
125         msg->location_name = NULL;
126 }
127
128 static void free_wispr_routes(struct connman_wispr_portal_context *wp_context)
129 {
130         while (wp_context->route_list) {
131                 struct wispr_route *route = wp_context->route_list->data;
132
133                 DBG("free route to %s if %d type %d", route->address,
134                                 route->if_index, wp_context->type);
135
136                 switch (wp_context->type) {
137                 case CONNMAN_IPCONFIG_TYPE_IPV4:
138                         connman_inet_del_host_route(route->if_index,
139                                         route->address);
140                         break;
141                 case CONNMAN_IPCONFIG_TYPE_IPV6:
142                         connman_inet_del_ipv6_host_route(route->if_index,
143                                         route->address);
144                         break;
145                 case CONNMAN_IPCONFIG_TYPE_UNKNOWN:
146                 case CONNMAN_IPCONFIG_TYPE_ALL:
147                         break;
148                 }
149
150                 g_free(route->address);
151                 g_free(route);
152
153                 wp_context->route_list =
154                         g_slist_delete_link(wp_context->route_list,
155                                         wp_context->route_list);
156         }
157 }
158
159 static void free_connman_wispr_portal_context(
160                 struct connman_wispr_portal_context *wp_context)
161 {
162         DBG("context %p", wp_context);
163
164         if (!wp_context)
165                 return;
166
167         if (wp_context->wispr_portal) {
168                 if (wp_context->wispr_portal->ipv4_context == wp_context)
169                         wp_context->wispr_portal->ipv4_context = NULL;
170
171                 if (wp_context->wispr_portal->ipv6_context == wp_context)
172                         wp_context->wispr_portal->ipv6_context = NULL;
173         }
174
175         if (wp_context->token > 0)
176                 connman_proxy_lookup_cancel(wp_context->token);
177
178         if (wp_context->request_id > 0)
179                 g_web_cancel_request(wp_context->web, wp_context->request_id);
180
181         if (wp_context->timeout > 0)
182                 g_source_remove(wp_context->timeout);
183
184         if (wp_context->web)
185                 g_web_unref(wp_context->web);
186
187         g_free(wp_context->redirect_url);
188
189         if (wp_context->wispr_parser)
190                 g_web_parser_unref(wp_context->wispr_parser);
191
192         connman_wispr_message_init(&wp_context->wispr_msg);
193
194         g_free(wp_context->wispr_username);
195         g_free(wp_context->wispr_password);
196         g_free(wp_context->wispr_formdata);
197
198         free_wispr_routes(wp_context);
199
200         g_free(wp_context);
201 }
202
203 static struct connman_wispr_portal_context *create_wispr_portal_context(void)
204 {
205         return g_try_new0(struct connman_wispr_portal_context, 1);
206 }
207
208 static void free_connman_wispr_portal(gpointer data)
209 {
210         struct connman_wispr_portal *wispr_portal = data;
211
212         DBG("");
213
214         if (!wispr_portal)
215                 return;
216
217         free_connman_wispr_portal_context(wispr_portal->ipv4_context);
218         free_connman_wispr_portal_context(wispr_portal->ipv6_context);
219
220         g_free(wispr_portal);
221 }
222
223 static const char *message_type_to_string(int message_type)
224 {
225         switch (message_type) {
226         case 100:
227                 return "Initial redirect message";
228         case 110:
229                 return "Proxy notification";
230         case 120:
231                 return "Authentication notification";
232         case 130:
233                 return "Logoff notification";
234         case 140:
235                 return "Response to Authentication Poll";
236         case 150:
237                 return "Response to Abort Login";
238         }
239
240         return NULL;
241 }
242
243 static const char *response_code_to_string(int response_code)
244 {
245         switch (response_code) {
246         case 0:
247                 return "No error";
248         case 50:
249                 return "Login succeeded";
250         case 100:
251                 return "Login failed";
252         case 102:
253                 return "RADIUS server error/timeout";
254         case 105:
255                 return "RADIUS server not enabled";
256         case 150:
257                 return "Logoff succeeded";
258         case 151:
259                 return "Login aborted";
260         case 200:
261                 return "Proxy detection/repeat operation";
262         case 201:
263                 return "Authentication pending";
264         case 255:
265                 return "Access gateway internal error";
266         }
267
268         return NULL;
269 }
270
271 static struct {
272         const char *str;
273         enum {
274                 WISPR_ELEMENT_NONE              = 0,
275                 WISPR_ELEMENT_ACCESS_PROCEDURE  = 1,
276                 WISPR_ELEMENT_ACCESS_LOCATION   = 2,
277                 WISPR_ELEMENT_LOCATION_NAME     = 3,
278                 WISPR_ELEMENT_LOGIN_URL         = 4,
279                 WISPR_ELEMENT_ABORT_LOGIN_URL   = 5,
280                 WISPR_ELEMENT_MESSAGE_TYPE      = 6,
281                 WISPR_ELEMENT_RESPONSE_CODE     = 7,
282                 WISPR_ELEMENT_NEXT_URL          = 8,
283                 WISPR_ELEMENT_DELAY             = 9,
284                 WISPR_ELEMENT_REPLY_MESSAGE     = 10,
285                 WISPR_ELEMENT_LOGIN_RESULTS_URL = 11,
286                 WISPR_ELEMENT_LOGOFF_URL        = 12,
287         } element;
288 } wispr_element_map[] = {
289         { "AccessProcedure",    WISPR_ELEMENT_ACCESS_PROCEDURE  },
290         { "AccessLocation",     WISPR_ELEMENT_ACCESS_LOCATION   },
291         { "LocationName",       WISPR_ELEMENT_LOCATION_NAME     },
292         { "LoginURL",           WISPR_ELEMENT_LOGIN_URL         },
293         { "AbortLoginURL",      WISPR_ELEMENT_ABORT_LOGIN_URL   },
294         { "MessageType",        WISPR_ELEMENT_MESSAGE_TYPE      },
295         { "ResponseCode",       WISPR_ELEMENT_RESPONSE_CODE     },
296         { "NextURL",            WISPR_ELEMENT_NEXT_URL          },
297         { "Delay",              WISPR_ELEMENT_DELAY             },
298         { "ReplyMessage",       WISPR_ELEMENT_REPLY_MESSAGE     },
299         { "LoginResultsURL",    WISPR_ELEMENT_LOGIN_RESULTS_URL },
300         { "LogoffURL",          WISPR_ELEMENT_LOGOFF_URL        },
301         { NULL,                 WISPR_ELEMENT_NONE              },
302 };
303
304 static void xml_wispr_start_element_handler(GMarkupParseContext *context,
305                                         const gchar *element_name,
306                                         const gchar **attribute_names,
307                                         const gchar **attribute_values,
308                                         gpointer user_data, GError **error)
309 {
310         struct connman_wispr_message *msg = user_data;
311
312         msg->current_element = element_name;
313 }
314
315 static void xml_wispr_end_element_handler(GMarkupParseContext *context,
316                                         const gchar *element_name,
317                                         gpointer user_data, GError **error)
318 {
319         struct connman_wispr_message *msg = user_data;
320
321         msg->current_element = NULL;
322 }
323
324 static void xml_wispr_text_handler(GMarkupParseContext *context,
325                                         const gchar *text, gsize text_len,
326                                         gpointer user_data, GError **error)
327 {
328         struct connman_wispr_message *msg = user_data;
329         int i;
330
331         if (!msg->current_element)
332                 return;
333
334         for (i = 0; wispr_element_map[i].str; i++) {
335                 if (!g_str_equal(wispr_element_map[i].str, msg->current_element))
336                         continue;
337
338                 switch (wispr_element_map[i].element) {
339                 case WISPR_ELEMENT_NONE:
340                 case WISPR_ELEMENT_ACCESS_PROCEDURE:
341                         g_free(msg->access_procedure);
342                         msg->access_procedure = g_strdup(text);
343                         break;
344                 case WISPR_ELEMENT_ACCESS_LOCATION:
345                         g_free(msg->access_location);
346                         msg->access_location = g_strdup(text);
347                         break;
348                 case WISPR_ELEMENT_LOCATION_NAME:
349                         g_free(msg->location_name);
350                         msg->location_name = g_strdup(text);
351                         break;
352                 case WISPR_ELEMENT_LOGIN_URL:
353                         g_free(msg->login_url);
354                         msg->login_url = g_strdup(text);
355                         break;
356                 case WISPR_ELEMENT_ABORT_LOGIN_URL:
357                         g_free(msg->abort_login_url);
358                         msg->abort_login_url = g_strdup(text);
359                         break;
360                 case WISPR_ELEMENT_MESSAGE_TYPE:
361                         msg->message_type = atoi(text);
362                         break;
363                 case WISPR_ELEMENT_RESPONSE_CODE:
364                         msg->response_code = atoi(text);
365                         break;
366                 case WISPR_ELEMENT_NEXT_URL:
367                 case WISPR_ELEMENT_DELAY:
368                 case WISPR_ELEMENT_REPLY_MESSAGE:
369                 case WISPR_ELEMENT_LOGIN_RESULTS_URL:
370                         break;
371                 case WISPR_ELEMENT_LOGOFF_URL:
372                         g_free(msg->logoff_url);
373                         msg->logoff_url = g_strdup(text);
374                         break;
375                 }
376         }
377 }
378
379 static void xml_wispr_error_handler(GMarkupParseContext *context,
380                                         GError *error, gpointer user_data)
381 {
382         struct connman_wispr_message *msg = user_data;
383
384         msg->has_error = true;
385 }
386
387 static const GMarkupParser xml_wispr_parser_handlers = {
388         xml_wispr_start_element_handler,
389         xml_wispr_end_element_handler,
390         xml_wispr_text_handler,
391         NULL,
392         xml_wispr_error_handler,
393 };
394
395 static void xml_wispr_parser_callback(const char *str, gpointer user_data)
396 {
397         struct connman_wispr_portal_context *wp_context = user_data;
398         GMarkupParseContext *parser_context = NULL;
399         bool result;
400
401         DBG("");
402
403         parser_context = g_markup_parse_context_new(&xml_wispr_parser_handlers,
404                                         G_MARKUP_TREAT_CDATA_AS_TEXT,
405                                         &(wp_context->wispr_msg), NULL);
406
407         result = g_markup_parse_context_parse(parser_context,
408                                         str, strlen(str), NULL);
409         if (result)
410                 g_markup_parse_context_end_parse(parser_context, NULL);
411
412         g_markup_parse_context_free(parser_context);
413 }
414
415 static void web_debug(const char *str, void *data)
416 {
417         connman_info("%s: %s\n", (const char *) data, str);
418 }
419
420 static void wispr_portal_error(struct connman_wispr_portal_context *wp_context)
421 {
422         DBG("Failed to proceed wispr/portal web request");
423
424         wp_context->wispr_result = CONNMAN_WISPR_RESULT_FAILED;
425 }
426
427 static void portal_manage_status(GWebResult *result,
428                         struct connman_wispr_portal_context *wp_context)
429 {
430         struct connman_service *service = wp_context->service;
431         enum connman_ipconfig_type type = wp_context->type;
432         const char *str = NULL;
433
434         DBG("");
435
436         /* We currently don't do anything with this info */
437         if (g_web_result_get_header(result, "X-ConnMan-Client-IP",
438                                 &str))
439                 connman_info("Client-IP: %s", str);
440
441         if (g_web_result_get_header(result, "X-ConnMan-Client-Country",
442                                 &str))
443                 connman_info("Client-Country: %s", str);
444
445         if (g_web_result_get_header(result, "X-ConnMan-Client-Region",
446                                 &str))
447                 connman_info("Client-Region: %s", str);
448
449         if (g_web_result_get_header(result, "X-ConnMan-Client-Timezone",
450                                 &str))
451                 connman_info("Client-Timezone: %s", str);
452
453         free_connman_wispr_portal_context(wp_context);
454
455         __connman_service_ipconfig_indicate_state(service,
456                                         CONNMAN_SERVICE_STATE_ONLINE, type);
457 }
458
459 static bool wispr_route_request(const char *address, int ai_family,
460                 int if_index, gpointer user_data)
461 {
462         int result = -1;
463         struct connman_wispr_portal_context *wp_context = user_data;
464         const char *gateway;
465         struct wispr_route *route;
466
467         gateway = __connman_ipconfig_get_gateway_from_index(if_index,
468                 wp_context->type);
469
470         DBG("address %s if %d gw %s", address, if_index, gateway);
471
472         if (!gateway)
473                 return false;
474
475         route = g_try_new0(struct wispr_route, 1);
476         if (route == 0) {
477                 DBG("could not create struct");
478                 return false;
479         }
480
481         switch (wp_context->type) {
482         case CONNMAN_IPCONFIG_TYPE_IPV4:
483                 result = connman_inet_add_host_route(if_index, address,
484                                 gateway);
485                 break;
486         case CONNMAN_IPCONFIG_TYPE_IPV6:
487                 result = connman_inet_add_ipv6_host_route(if_index, address,
488                                 gateway);
489                 break;
490         case CONNMAN_IPCONFIG_TYPE_UNKNOWN:
491         case CONNMAN_IPCONFIG_TYPE_ALL:
492                 break;
493         }
494
495         if (result < 0) {
496                 g_free(route);
497                 return false;
498         }
499
500         route->address = g_strdup(address);
501         route->if_index = if_index;
502         wp_context->route_list = g_slist_prepend(wp_context->route_list, route);
503
504         return true;
505 }
506
507 static void wispr_portal_request_portal(
508                 struct connman_wispr_portal_context *wp_context)
509 {
510         DBG("");
511
512         wp_context->request_id = g_web_request_get(wp_context->web,
513                                         wp_context->status_url,
514                                         wispr_portal_web_result,
515                                         wispr_route_request,
516                                         wp_context);
517
518         if (wp_context->request_id == 0)
519                 wispr_portal_error(wp_context);
520 }
521
522 static bool wispr_input(const guint8 **data, gsize *length,
523                                                 gpointer user_data)
524 {
525         struct connman_wispr_portal_context *wp_context = user_data;
526         GString *buf;
527         gsize count;
528
529         DBG("");
530
531         buf = g_string_sized_new(100);
532
533         g_string_append(buf, "button=Login&UserName=");
534         g_string_append_uri_escaped(buf, wp_context->wispr_username,
535                                                                 NULL, FALSE);
536         g_string_append(buf, "&Password=");
537         g_string_append_uri_escaped(buf, wp_context->wispr_password,
538                                                                 NULL, FALSE);
539         g_string_append(buf, "&FNAME=0&OriginatingServer=");
540         g_string_append_uri_escaped(buf, wp_context->status_url, NULL, FALSE);
541
542         count = buf->len;
543
544         g_free(wp_context->wispr_formdata);
545         wp_context->wispr_formdata = g_string_free(buf, FALSE);
546
547         *data = (guint8 *) wp_context->wispr_formdata;
548         *length = count;
549
550         return false;
551 }
552
553 static void wispr_portal_browser_reply_cb(struct connman_service *service,
554                                         bool authentication_done,
555                                         const char *error, void *user_data)
556 {
557         struct connman_wispr_portal_context *wp_context = user_data;
558
559         DBG("");
560
561         if (!service || !wp_context)
562                 return;
563
564         if (!authentication_done) {
565                 wispr_portal_error(wp_context);
566                 free_wispr_routes(wp_context);
567                 return;
568         }
569
570         /* Restarting the test */
571         __connman_wispr_start(service, wp_context->type);
572 }
573
574 static void wispr_portal_request_wispr_login(struct connman_service *service,
575                                 bool success,
576                                 const char *ssid, int ssid_len,
577                                 const char *username, const char *password,
578                                 bool wps, const char *wpspin,
579                                 const char *error, void *user_data)
580 {
581         struct connman_wispr_portal_context *wp_context = user_data;
582
583         DBG("");
584
585         if (error) {
586                 if (g_strcmp0(error,
587                         "net.connman.Agent.Error.LaunchBrowser") == 0) {
588                         if (__connman_agent_request_browser(service,
589                                         wispr_portal_browser_reply_cb,
590                                         wp_context->redirect_url,
591                                         wp_context) == -EINPROGRESS)
592                                 return;
593                 }
594
595                 free_connman_wispr_portal_context(wp_context);
596                 return;
597         }
598
599         g_free(wp_context->wispr_username);
600         wp_context->wispr_username = g_strdup(username);
601
602         g_free(wp_context->wispr_password);
603         wp_context->wispr_password = g_strdup(password);
604
605         wp_context->request_id = g_web_request_post(wp_context->web,
606                                         wp_context->wispr_msg.login_url,
607                                         "application/x-www-form-urlencoded",
608                                         wispr_input, wispr_portal_web_result,
609                                         wp_context);
610
611         connman_wispr_message_init(&wp_context->wispr_msg);
612 }
613
614 static bool wispr_manage_message(GWebResult *result,
615                         struct connman_wispr_portal_context *wp_context)
616 {
617         DBG("Message type: %s (%d)",
618                 message_type_to_string(wp_context->wispr_msg.message_type),
619                                         wp_context->wispr_msg.message_type);
620         DBG("Response code: %s (%d)",
621                 response_code_to_string(wp_context->wispr_msg.response_code),
622                                         wp_context->wispr_msg.response_code);
623
624         if (wp_context->wispr_msg.access_procedure)
625                 DBG("Access procedure: %s",
626                         wp_context->wispr_msg.access_procedure);
627         if (wp_context->wispr_msg.access_location)
628                 DBG("Access location: %s",
629                         wp_context->wispr_msg.access_location);
630         if (wp_context->wispr_msg.location_name)
631                 DBG("Location name: %s",
632                         wp_context->wispr_msg.location_name);
633         if (wp_context->wispr_msg.login_url)
634                 DBG("Login URL: %s", wp_context->wispr_msg.login_url);
635         if (wp_context->wispr_msg.abort_login_url)
636                 DBG("Abort login URL: %s",
637                         wp_context->wispr_msg.abort_login_url);
638         if (wp_context->wispr_msg.logoff_url)
639                 DBG("Logoff URL: %s", wp_context->wispr_msg.logoff_url);
640
641         switch (wp_context->wispr_msg.message_type) {
642         case 100:
643                 DBG("Login required");
644
645                 wp_context->wispr_result = CONNMAN_WISPR_RESULT_LOGIN;
646
647                 if (__connman_agent_request_login_input(wp_context->service,
648                                         wispr_portal_request_wispr_login,
649                                         wp_context) != -EINPROGRESS)
650                         wispr_portal_error(wp_context);
651                 else
652                         return true;
653
654                 break;
655         case 120: /* Falling down */
656         case 140:
657                 if (wp_context->wispr_msg.response_code == 50) {
658                         wp_context->wispr_result = CONNMAN_WISPR_RESULT_ONLINE;
659
660                         g_free(wp_context->wispr_username);
661                         wp_context->wispr_username = NULL;
662
663                         g_free(wp_context->wispr_password);
664                         wp_context->wispr_password = NULL;
665
666                         g_free(wp_context->wispr_formdata);
667                         wp_context->wispr_formdata = NULL;
668
669                         wispr_portal_request_portal(wp_context);
670
671                         return true;
672                 } else
673                         wispr_portal_error(wp_context);
674
675                 break;
676         default:
677                 break;
678         }
679
680         return false;
681 }
682
683 static bool wispr_portal_web_result(GWebResult *result, gpointer user_data)
684 {
685         struct connman_wispr_portal_context *wp_context = user_data;
686         const char *redirect = NULL;
687         const guint8 *chunk = NULL;
688         const char *str = NULL;
689         guint16 status;
690         gsize length;
691
692         DBG("");
693
694         if (wp_context->wispr_result != CONNMAN_WISPR_RESULT_ONLINE) {
695                 g_web_result_get_chunk(result, &chunk, &length);
696
697                 if (length > 0) {
698                         g_web_parser_feed_data(wp_context->wispr_parser,
699                                                                 chunk, length);
700                         return true;
701                 }
702
703                 g_web_parser_end_data(wp_context->wispr_parser);
704
705                 if (wp_context->wispr_msg.message_type >= 0) {
706                         if (wispr_manage_message(result, wp_context))
707                                 goto done;
708                 }
709         }
710
711         status = g_web_result_get_status(result);
712
713         DBG("status: %03u", status);
714
715         switch (status) {
716         case 000:
717                 __connman_agent_request_browser(wp_context->service,
718                                 wispr_portal_browser_reply_cb,
719                                 wp_context->status_url, wp_context);
720                 break;
721         case 200:
722                 if (wp_context->wispr_msg.message_type >= 0)
723                         break;
724
725                 if (g_web_result_get_header(result, "X-ConnMan-Status",
726                                                 &str)) {
727                         portal_manage_status(result, wp_context);
728                         return false;
729                 } else
730                         __connman_agent_request_browser(wp_context->service,
731                                         wispr_portal_browser_reply_cb,
732                                         wp_context->redirect_url, wp_context);
733
734                 break;
735         case 302:
736                 if (!g_web_supports_tls() ||
737                         !g_web_result_get_header(result, "Location",
738                                                         &redirect)) {
739
740                         __connman_agent_request_browser(wp_context->service,
741                                         wispr_portal_browser_reply_cb,
742                                         wp_context->status_url, wp_context);
743                         break;
744                 }
745
746                 DBG("Redirect URL: %s", redirect);
747
748                 wp_context->redirect_url = g_strdup(redirect);
749
750                 wp_context->request_id = g_web_request_get(wp_context->web,
751                                 redirect, wispr_portal_web_result,
752                                 wispr_route_request, wp_context);
753
754                 goto done;
755         case 400:
756         case 404:
757                 if (__connman_service_online_check_failed(wp_context->service,
758                                                 wp_context->type) == 0) {
759                         wispr_portal_error(wp_context);
760                         free_connman_wispr_portal_context(wp_context);
761                         return false;
762                 }
763
764                 break;
765         case 505:
766                 __connman_agent_request_browser(wp_context->service,
767                                 wispr_portal_browser_reply_cb,
768                                 wp_context->status_url, wp_context);
769                 break;
770         default:
771                 break;
772         }
773
774         free_wispr_routes(wp_context);
775         wp_context->request_id = 0;
776 done:
777         wp_context->wispr_msg.message_type = -1;
778         return false;
779 }
780
781 static void proxy_callback(const char *proxy, void *user_data)
782 {
783         struct connman_wispr_portal_context *wp_context = user_data;
784
785         DBG("proxy %s", proxy);
786
787         if (!wp_context)
788                 return;
789
790         wp_context->token = 0;
791
792         if (proxy && g_strcmp0(proxy, "DIRECT") != 0) {
793                 if (g_str_has_prefix(proxy, "PROXY")) {
794                         proxy += 5;
795                         for (; *proxy == ' ' && *proxy != '\0'; proxy++);
796                 }
797                 g_web_set_proxy(wp_context->web, proxy);
798         }
799
800         g_web_set_accept(wp_context->web, NULL);
801         g_web_set_user_agent(wp_context->web, "ConnMan/%s wispr", VERSION);
802         g_web_set_close_connection(wp_context->web, TRUE);
803
804         connman_wispr_message_init(&wp_context->wispr_msg);
805
806         wp_context->wispr_parser = g_web_parser_new(
807                                         "<WISPAccessGatewayParam",
808                                         "WISPAccessGatewayParam>",
809                                         xml_wispr_parser_callback, wp_context);
810
811         wispr_portal_request_portal(wp_context);
812 }
813
814 static gboolean no_proxy_callback(gpointer user_data)
815 {
816         struct connman_wispr_portal_context *wp_context = user_data;
817
818         wp_context->timeout = 0;
819
820         proxy_callback("DIRECT", wp_context);
821
822         return FALSE;
823 }
824
825 static int wispr_portal_detect(struct connman_wispr_portal_context *wp_context)
826 {
827         enum connman_service_proxy_method proxy_method;
828         enum connman_service_type service_type;
829         char *interface = NULL;
830         char **nameservers = NULL;
831         int if_index;
832         int err = 0;
833         int i;
834
835         DBG("wispr/portal context %p service %p", wp_context,
836                 wp_context->service);
837
838         service_type = connman_service_get_type(wp_context->service);
839
840         switch (service_type) {
841         case CONNMAN_SERVICE_TYPE_ETHERNET:
842         case CONNMAN_SERVICE_TYPE_WIFI:
843         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
844         case CONNMAN_SERVICE_TYPE_CELLULAR:
845         case CONNMAN_SERVICE_TYPE_GADGET:
846                 break;
847         case CONNMAN_SERVICE_TYPE_UNKNOWN:
848         case CONNMAN_SERVICE_TYPE_SYSTEM:
849         case CONNMAN_SERVICE_TYPE_GPS:
850         case CONNMAN_SERVICE_TYPE_VPN:
851         case CONNMAN_SERVICE_TYPE_P2P:
852 #if defined TIZEN_EXT_WIFI_MESH
853         case CONNMAN_SERVICE_TYPE_MESH:
854 #endif
855                 return -EOPNOTSUPP;
856         }
857
858         interface = connman_service_get_interface(wp_context->service);
859         if (!interface)
860                 return -EINVAL;
861
862         DBG("interface %s", interface);
863
864         if_index = connman_inet_ifindex(interface);
865         if (if_index < 0) {
866                 DBG("Could not get ifindex");
867                 err = -EINVAL;
868                 goto done;
869         }
870
871         nameservers = connman_service_get_nameservers(wp_context->service);
872         if (!nameservers) {
873                 DBG("Could not get nameservers");
874                 err = -EINVAL;
875                 goto done;
876         }
877
878         wp_context->web = g_web_new(if_index);
879         if (!wp_context->web) {
880                 DBG("Could not set up GWeb");
881                 err = -ENOMEM;
882                 goto done;
883         }
884
885 #if !defined TIZEN_EXT
886         if (getenv("CONNMAN_WEB_DEBUG"))
887 #endif
888                 g_web_set_debug(wp_context->web, web_debug, "WEB");
889
890         if (wp_context->type == CONNMAN_IPCONFIG_TYPE_IPV4) {
891                 g_web_set_address_family(wp_context->web, AF_INET);
892                 wp_context->status_url = STATUS_URL_IPV4;
893         } else {
894                 g_web_set_address_family(wp_context->web, AF_INET6);
895                 wp_context->status_url = STATUS_URL_IPV6;
896         }
897
898         for (i = 0; nameservers[i]; i++)
899                 g_web_add_nameserver(wp_context->web, nameservers[i]);
900
901         proxy_method = connman_service_get_proxy_method(wp_context->service);
902
903         if (proxy_method != CONNMAN_SERVICE_PROXY_METHOD_DIRECT) {
904                 wp_context->token = connman_proxy_lookup(interface,
905                                                 wp_context->status_url,
906                                                 wp_context->service,
907                                                 proxy_callback, wp_context);
908
909                 if (wp_context->token == 0) {
910                         err = -EINVAL;
911                         free_connman_wispr_portal_context(wp_context);
912                 }
913         } else if (wp_context->timeout == 0) {
914                 wp_context->timeout = g_idle_add(no_proxy_callback, wp_context);
915         }
916
917 done:
918         g_strfreev(nameservers);
919
920         g_free(interface);
921         return err;
922 }
923
924 int __connman_wispr_start(struct connman_service *service,
925                                         enum connman_ipconfig_type type)
926 {
927         struct connman_wispr_portal_context *wp_context = NULL;
928         struct connman_wispr_portal *wispr_portal = NULL;
929         int index;
930
931         DBG("service %p", service);
932
933 #if defined TIZEN_EXT
934         if (connman_service_get_type(service) == CONNMAN_SERVICE_TYPE_CELLULAR)
935                 return -EPERM;
936 #endif
937
938         if (!wispr_portal_list)
939                 return -EINVAL;
940
941         index = __connman_service_get_index(service);
942         if (index < 0)
943                 return -EINVAL;
944
945         wispr_portal = g_hash_table_lookup(wispr_portal_list,
946                                         GINT_TO_POINTER(index));
947         if (!wispr_portal) {
948                 wispr_portal = g_try_new0(struct connman_wispr_portal, 1);
949                 if (!wispr_portal)
950                         return -ENOMEM;
951
952                 g_hash_table_replace(wispr_portal_list,
953                                         GINT_TO_POINTER(index), wispr_portal);
954         }
955
956         if (type == CONNMAN_IPCONFIG_TYPE_IPV4)
957                 wp_context = wispr_portal->ipv4_context;
958         else if (type == CONNMAN_IPCONFIG_TYPE_IPV6)
959                 wp_context = wispr_portal->ipv6_context;
960         else
961                 return -EINVAL;
962
963         /* If there is already an existing context, we wipe it */
964         if (wp_context)
965                 free_connman_wispr_portal_context(wp_context);
966
967         wp_context = create_wispr_portal_context();
968         if (!wp_context)
969                 return -ENOMEM;
970
971         wp_context->service = service;
972         wp_context->type = type;
973         wp_context->wispr_portal = wispr_portal;
974
975         if (type == CONNMAN_IPCONFIG_TYPE_IPV4)
976                 wispr_portal->ipv4_context = wp_context;
977         else
978                 wispr_portal->ipv6_context = wp_context;
979
980         return wispr_portal_detect(wp_context);
981 }
982
983 void __connman_wispr_stop(struct connman_service *service)
984 {
985         int index;
986
987         DBG("service %p", service);
988
989         if (!wispr_portal_list)
990                 return;
991
992         index = __connman_service_get_index(service);
993         if (index < 0)
994                 return;
995
996         g_hash_table_remove(wispr_portal_list, GINT_TO_POINTER(index));
997 }
998
999 int __connman_wispr_init(void)
1000 {
1001         DBG("");
1002
1003         wispr_portal_list = g_hash_table_new_full(g_direct_hash,
1004                                                 g_direct_equal, NULL,
1005                                                 free_connman_wispr_portal);
1006
1007         return 0;
1008 }
1009
1010 void __connman_wispr_cleanup(void)
1011 {
1012         DBG("");
1013
1014         g_hash_table_destroy(wispr_portal_list);
1015         wispr_portal_list = NULL;
1016 }