5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
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.
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.
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
35 #include <gweb/gweb.h>
37 #define DEFAULT_URL "http://www.connman.net/online/status.html"
41 static GMainLoop *main_loop;
43 static void web_debug(const char *str, void *data)
45 g_print("%s: %s\n", (const char *) data, str);
48 static void sig_term(int sig)
50 g_main_loop_quit(main_loop);
53 static const char *message_type_to_string(int message_type)
55 switch (message_type) {
57 return "Initial redirect message";
59 return "Proxy notification";
61 return "Authentication notification";
63 return "Logoff notification";
65 return "Response to Authentication Poll";
67 return "Response to Abort Login";
73 static const char *response_code_to_string(int response_code)
75 switch (response_code) {
79 return "Login succeeded";
81 return "Login failed";
83 return "RADIUS server error/timeout";
85 return "RADIUS server not enabled";
87 return "Logoff succeeded";
89 return "Login aborted";
91 return "Proxy detection/repeat operation";
93 return "Authentication pending";
95 return "Access gateway internal error";
103 const char *current_element;
107 char *abort_login_url;
109 char *access_procedure;
110 char *access_location;
114 static inline void wispr_msg_init(struct wispr_msg *msg)
116 msg->has_error = FALSE;
117 msg->current_element = NULL;
119 msg->message_type = -1;
120 msg->response_code = -1;
122 g_free(msg->login_url);
123 msg->login_url = NULL;
125 g_free(msg->abort_login_url);
126 msg->abort_login_url = NULL;
128 g_free(msg->logoff_url);
129 msg->logoff_url = NULL;
131 g_free(msg->access_procedure);
132 msg->access_procedure = NULL;
134 g_free(msg->access_location);
135 msg->access_location = NULL;
137 g_free(msg->location_name);
138 msg->location_name = NULL;
141 struct wispr_session {
145 struct wispr_msg msg;
152 static gboolean execute_login(gpointer user_data);
158 WISPR_ELEMENT_ACCESS_PROCEDURE,
159 WISPR_ELEMENT_ACCESS_LOCATION,
160 WISPR_ELEMENT_LOCATION_NAME,
161 WISPR_ELEMENT_LOGIN_URL,
162 WISPR_ELEMENT_ABORT_LOGIN_URL,
163 WISPR_ELEMENT_MESSAGE_TYPE,
164 WISPR_ELEMENT_RESPONSE_CODE,
165 WISPR_ELEMENT_NEXT_URL,
167 WISPR_ELEMENT_REPLY_MESSAGE,
168 WISPR_ELEMENT_LOGIN_RESULTS_URL,
169 WISPR_ELEMENT_LOGOFF_URL,
171 } wispr_element_map[] = {
172 { "AccessProcedure", WISPR_ELEMENT_ACCESS_PROCEDURE },
173 { "AccessLocation", WISPR_ELEMENT_ACCESS_LOCATION },
174 { "LocationName", WISPR_ELEMENT_LOCATION_NAME },
175 { "LoginURL", WISPR_ELEMENT_LOGIN_URL },
176 { "AbortLoginURL", WISPR_ELEMENT_ABORT_LOGIN_URL },
177 { "MessageType", WISPR_ELEMENT_MESSAGE_TYPE },
178 { "ResponseCode", WISPR_ELEMENT_RESPONSE_CODE },
179 { "NextURL", WISPR_ELEMENT_NEXT_URL },
180 { "Delay", WISPR_ELEMENT_DELAY },
181 { "ReplyMessage", WISPR_ELEMENT_REPLY_MESSAGE },
182 { "LoginResultsURL", WISPR_ELEMENT_LOGIN_RESULTS_URL },
183 { "LogoffURL", WISPR_ELEMENT_LOGOFF_URL },
184 { NULL, WISPR_ELEMENT_NONE },
187 static void start_element_handler(GMarkupParseContext *context,
188 const gchar *element_name,
189 const gchar **attribute_names,
190 const gchar **attribute_values,
191 gpointer user_data, GError **error)
193 struct wispr_msg *msg = user_data;
195 msg->current_element = element_name;
198 static void end_element_handler(GMarkupParseContext *context,
199 const gchar *element_name,
200 gpointer user_data, GError **error)
202 struct wispr_msg *msg = user_data;
204 msg->current_element = NULL;
207 static void text_handler(GMarkupParseContext *context,
208 const gchar *text, gsize text_len,
209 gpointer user_data, GError **error)
211 struct wispr_msg *msg = user_data;
214 if (msg->current_element == NULL)
217 for (i = 0; wispr_element_map[i].str; i++) {
218 if (g_str_equal(wispr_element_map[i].str,
219 msg->current_element) == FALSE)
222 switch (wispr_element_map[i].element) {
223 case WISPR_ELEMENT_NONE:
224 case WISPR_ELEMENT_ACCESS_PROCEDURE:
225 g_free(msg->access_procedure);
226 msg->access_procedure = g_strdup(text);
228 case WISPR_ELEMENT_ACCESS_LOCATION:
229 g_free(msg->access_location);
230 msg->access_location = g_strdup(text);
232 case WISPR_ELEMENT_LOCATION_NAME:
233 g_free(msg->location_name);
234 msg->location_name = g_strdup(text);
236 case WISPR_ELEMENT_LOGIN_URL:
237 g_free(msg->login_url);
238 msg->login_url = g_strdup(text);
240 case WISPR_ELEMENT_ABORT_LOGIN_URL:
241 g_free(msg->abort_login_url);
242 msg->abort_login_url = g_strdup(text);
244 case WISPR_ELEMENT_MESSAGE_TYPE:
245 msg->message_type = atoi(text);
247 case WISPR_ELEMENT_RESPONSE_CODE:
248 msg->response_code = atoi(text);
250 case WISPR_ELEMENT_NEXT_URL:
251 case WISPR_ELEMENT_DELAY:
252 case WISPR_ELEMENT_REPLY_MESSAGE:
253 case WISPR_ELEMENT_LOGIN_RESULTS_URL:
255 case WISPR_ELEMENT_LOGOFF_URL:
256 g_free(msg->logoff_url);
257 msg->logoff_url = g_strdup(text);
263 static void error_handler(GMarkupParseContext *context,
264 GError *error, gpointer user_data)
266 struct wispr_msg *msg = user_data;
268 msg->has_error = TRUE;
271 static const GMarkupParser wispr_parser = {
272 start_element_handler,
279 static void parser_callback(const char *str, gpointer user_data)
281 struct wispr_session *wispr = user_data;
282 GMarkupParseContext *context;
285 //printf("%s\n", str);
287 context = g_markup_parse_context_new(&wispr_parser,
288 G_MARKUP_TREAT_CDATA_AS_TEXT, &wispr->msg, NULL);
290 result = g_markup_parse_context_parse(context, str, strlen(str), NULL);
292 result = g_markup_parse_context_end_parse(context, NULL);
294 g_markup_parse_context_free(context);
297 typedef void (*user_input_cb)(const char *value, gpointer user_data);
299 struct user_input_data {
305 struct termios saved_termios;
308 static void user_callback(struct user_input_data *data)
312 if (data->hidden == TRUE) {
315 len = write(data->fd, "\n", 1);
320 tcsetattr(data->fd, TCSADRAIN, &data->saved_termios);
324 value = g_string_free(data->str, FALSE);
327 data->cb(value, data->user_data);
334 static gboolean keyboard_input(GIOChannel *channel, GIOCondition condition,
337 struct user_input_data *data = user_data;
341 len = read(data->fd, buf, 1);
346 if (buf[0] == '\n') {
351 g_string_append_c(data->str, buf[0]);
353 if (data->hidden == TRUE)
354 len = write(data->fd, "*", 1);
359 static gboolean user_input(const char *label, gboolean hidden,
360 user_input_cb func, gpointer user_data)
362 struct user_input_data *data;
363 struct termios new_termios;
368 data = g_try_new0(struct user_input_data, 1);
372 data->str = g_string_sized_new(32);
374 data->user_data = user_data;
375 data->hidden = hidden;
377 data->fd = open("/dev/tty", O_RDWR | O_NOCTTY | O_CLOEXEC);
381 if (tcgetattr(data->fd, &data->saved_termios) < 0) {
386 new_termios = data->saved_termios;
387 if (data->hidden == TRUE)
388 new_termios.c_lflag &= ~(ICANON|ECHO);
390 new_termios.c_lflag &= ~ICANON;
391 new_termios.c_cc[VMIN] = 1;
392 new_termios.c_cc[VTIME] = 0;
394 tcsetattr(data->fd, TCSADRAIN, &new_termios);
396 channel = g_io_channel_unix_new(data->fd);
397 g_io_channel_set_encoding(channel, NULL, NULL);
398 g_io_channel_set_buffered(channel, FALSE);
399 watch = g_io_add_watch(channel, G_IO_IN, keyboard_input, data);
400 g_io_channel_unref(channel);
405 len = write(data->fd, label, strlen(label));
409 len = write(data->fd, ": ", 2);
416 g_string_free(data->str, TRUE);
422 static void password_callback(const char *value, gpointer user_data)
424 struct wispr_session *wispr = user_data;
426 g_free(wispr->password);
427 wispr->password = g_strdup(value);
431 execute_login(wispr);
434 static void username_callback(const char *value, gpointer user_data)
436 struct wispr_session *wispr = user_data;
438 g_free(wispr->username);
439 wispr->username = g_strdup(value);
441 if (wispr->password == NULL) {
442 user_input("Password", TRUE, password_callback, wispr);
448 execute_login(wispr);
451 static gboolean wispr_input(const guint8 **data, gsize *length,
454 struct wispr_session *wispr = user_data;
458 buf = g_string_sized_new(100);
460 g_string_append(buf, "button=Login&UserName=");
461 g_string_append_uri_escaped(buf, wispr->username, NULL, FALSE);
462 g_string_append(buf, "&Password=");
463 g_string_append_uri_escaped(buf, wispr->password, NULL, FALSE);
464 g_string_append(buf, "&FNAME=0&OriginatingServer=");
465 g_string_append_uri_escaped(buf, wispr->originurl, NULL, FALSE);
469 g_free(wispr->formdata);
470 wispr->formdata = g_string_free(buf, FALSE);
472 *data = (guint8 *) wispr->formdata;
478 static gboolean wispr_result(GWebResult *result, gpointer user_data)
480 struct wispr_session *wispr = user_data;
486 g_web_result_get_chunk(result, &chunk, &length);
489 //printf("%s\n", (char *) chunk);
490 g_web_parser_feed_data(wispr->parser, chunk, length);
494 g_web_parser_end_data(wispr->parser);
496 status = g_web_result_get_status(result);
498 g_print("status: %03u\n", status);
500 elapsed = g_timer_elapsed(timer, NULL);
502 g_print("elapse: %f seconds\n", elapsed);
504 if (wispr->msg.message_type < 0) {
505 const char *redirect;
510 if (g_web_result_get_header(result, "Location",
514 printf("Redirect URL: %s\n", redirect);
517 wispr->request = g_web_request_get(wispr->web, redirect,
518 wispr_result, wispr);
523 printf("Message type: %s (%d)\n",
524 message_type_to_string(wispr->msg.message_type),
525 wispr->msg.message_type);
526 printf("Response code: %s (%d)\n",
527 response_code_to_string(wispr->msg.response_code),
528 wispr->msg.response_code);
529 if (wispr->msg.access_procedure != NULL)
530 printf("Access procedure: %s\n", wispr->msg.access_procedure);
531 if (wispr->msg.access_location != NULL)
532 printf("Access location: %s\n", wispr->msg.access_location);
533 if (wispr->msg.location_name != NULL)
534 printf("Location name: %s\n", wispr->msg.location_name);
535 if (wispr->msg.login_url != NULL)
536 printf("Login URL: %s\n", wispr->msg.login_url);
537 if (wispr->msg.abort_login_url != NULL)
538 printf("Abort login URL: %s\n", wispr->msg.abort_login_url);
539 if (wispr->msg.logoff_url != NULL)
540 printf("Logoff URL: %s\n", wispr->msg.logoff_url);
543 if (status != 200 && status != 302 && status != 404)
546 if (wispr->msg.message_type == 100) {
547 if (wispr->username == NULL) {
548 user_input("Username", FALSE, username_callback, wispr);
552 if (wispr->password == NULL) {
553 user_input("Password", TRUE, password_callback, wispr);
557 g_idle_add(execute_login, wispr);
559 } else if (wispr->msg.message_type == 120 ||
560 wispr->msg.message_type == 140) {
561 int code = wispr->msg.response_code;
562 printf("Login process: %s\n",
563 code == 50 ? "SUCCESS" : "FAILURE");
567 const char *redirect;
569 if (g_web_result_get_header(result, "Location",
574 printf("Redirect URL: %s\n", redirect);
577 wispr->request = g_web_request_get(wispr->web, redirect,
578 wispr_result, wispr);
584 g_main_loop_quit(main_loop);
589 static gboolean execute_login(gpointer user_data)
591 struct wispr_session *wispr = user_data;
593 wispr->request = g_web_request_post(wispr->web, wispr->msg.login_url,
594 "application/x-www-form-urlencoded",
595 wispr_input, wispr_result, wispr);
597 wispr_msg_init(&wispr->msg);
602 static gboolean option_debug = FALSE;
603 static gchar *option_nameserver = NULL;
604 static gchar *option_username = NULL;
605 static gchar *option_password = NULL;
606 static gchar *option_url = NULL;
608 static GOptionEntry options[] = {
609 { "debug", 'd', 0, G_OPTION_ARG_NONE, &option_debug,
610 "Enable debug output" },
611 { "nameserver", 'n', 0, G_OPTION_ARG_STRING, &option_nameserver,
612 "Specify nameserver", "ADDRESS" },
613 { "username", 'u', 0, G_OPTION_ARG_STRING, &option_username,
614 "Specify username", "USERNAME" },
615 { "password", 'p', 0, G_OPTION_ARG_STRING, &option_password,
616 "Specify password", "PASSWORD" },
617 { "url", 'U', 0, G_OPTION_ARG_STRING, &option_url,
618 "Specify arbitrary request", "URL" },
622 int main(int argc, char *argv[])
624 GOptionContext *context;
625 GError *error = NULL;
627 struct wispr_session wispr;
630 context = g_option_context_new(NULL);
631 g_option_context_add_main_entries(context, options, NULL);
633 if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
635 g_printerr("%s\n", error->message);
638 g_printerr("An unknown error occurred\n");
642 g_option_context_free(context);
644 memset(&wispr, 0, sizeof(wispr));
645 wispr_msg_init(&wispr.msg);
647 wispr.web = g_web_new(index);
648 if (wispr.web == NULL) {
649 fprintf(stderr, "Failed to create web service\n");
653 if (option_debug == TRUE)
654 g_web_set_debug(wispr.web, web_debug, "WEB");
656 main_loop = g_main_loop_new(NULL, FALSE);
658 if (option_nameserver != NULL) {
659 g_web_add_nameserver(wispr.web, option_nameserver);
660 g_free(option_nameserver);
663 g_web_set_accept(wispr.web, NULL);
664 g_web_set_user_agent(wispr.web, "SmartClient/%s wispr", VERSION);
665 g_web_set_close_connection(wispr.web, TRUE);
667 if (option_url == NULL)
668 option_url = g_strdup(DEFAULT_URL);
670 wispr.username = option_username;
671 wispr.password = option_password;
672 wispr.originurl = option_url;
674 timer = g_timer_new();
676 wispr.parser = g_web_parser_new("<WISPAccessGatewayParam",
677 "WISPAccessGatewayParam>",
678 parser_callback, &wispr);
680 wispr.request = g_web_request_get(wispr.web, option_url,
681 wispr_result, &wispr);
683 if (wispr.request == 0) {
684 fprintf(stderr, "Failed to start request\n");
688 memset(&sa, 0, sizeof(sa));
689 sa.sa_handler = sig_term;
690 sigaction(SIGINT, &sa, NULL);
691 sigaction(SIGTERM, &sa, NULL);
693 g_main_loop_run(main_loop);
695 g_timer_destroy(timer);
697 if (wispr.request > 0)
698 g_web_cancel_request(wispr.web, wispr.request);
700 g_web_parser_unref(wispr.parser);
701 g_web_unref(wispr.web);
703 g_main_loop_unref(main_loop);
705 g_free(wispr.username);
706 g_free(wispr.password);
707 g_free(wispr.originurl);