browser-android.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Hotspot 2.0 client - Web browser using Android browser
  3. * Copyright (c) 2013, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "utils/eloop.h"
  11. #include "wps/http_server.h"
  12. #include "browser.h"
  13. struct browser_data {
  14. int success;
  15. };
  16. static void browser_timeout(void *eloop_data, void *user_ctx)
  17. {
  18. wpa_printf(MSG_INFO, "Timeout on waiting browser interaction to "
  19. "complete");
  20. eloop_terminate();
  21. }
  22. static void http_req(void *ctx, struct http_request *req)
  23. {
  24. struct browser_data *data = ctx;
  25. struct wpabuf *resp;
  26. const char *url;
  27. int done = 0;
  28. url = http_request_get_uri(req);
  29. wpa_printf(MSG_INFO, "Browser response received: %s", url);
  30. if (os_strcmp(url, "/") == 0) {
  31. data->success = 1;
  32. done = 1;
  33. } else if (os_strncmp(url, "/osu/", 5) == 0) {
  34. data->success = atoi(url + 5);
  35. done = 1;
  36. }
  37. resp = wpabuf_alloc(1);
  38. if (resp == NULL) {
  39. http_request_deinit(req);
  40. if (done)
  41. eloop_terminate();
  42. return;
  43. }
  44. if (done) {
  45. eloop_cancel_timeout(browser_timeout, NULL, NULL);
  46. eloop_register_timeout(0, 500000, browser_timeout, &data, NULL);
  47. }
  48. http_request_send_and_deinit(req, resp);
  49. }
  50. int hs20_web_browser(const char *url)
  51. {
  52. struct http_server *http;
  53. struct in_addr addr;
  54. struct browser_data data;
  55. pid_t pid;
  56. wpa_printf(MSG_INFO, "Launching Android browser to %s", url);
  57. os_memset(&data, 0, sizeof(data));
  58. if (eloop_init() < 0) {
  59. wpa_printf(MSG_ERROR, "eloop_init failed");
  60. return -1;
  61. }
  62. addr.s_addr = htonl((127 << 24) | 1);
  63. http = http_server_init(&addr, 12345, http_req, &data);
  64. if (http == NULL) {
  65. wpa_printf(MSG_ERROR, "http_server_init failed");
  66. eloop_destroy();
  67. return -1;
  68. }
  69. pid = fork();
  70. if (pid < 0) {
  71. wpa_printf(MSG_ERROR, "fork: %s", strerror(errno));
  72. http_server_deinit(http);
  73. eloop_destroy();
  74. return -1;
  75. }
  76. if (pid == 0) {
  77. /* run the external command in the child process */
  78. char *argv[7];
  79. argv[0] = "browser-android";
  80. argv[1] = "start";
  81. argv[2] = "-a";
  82. argv[3] = "android.intent.action.VIEW";
  83. argv[4] = "-d";
  84. argv[5] = (void *) url;
  85. argv[6] = NULL;
  86. execv("/system/bin/am", argv);
  87. wpa_printf(MSG_ERROR, "execv: %s", strerror(errno));
  88. exit(0);
  89. return -1;
  90. }
  91. eloop_register_timeout(30, 0, browser_timeout, &data, NULL);
  92. eloop_run();
  93. eloop_cancel_timeout(browser_timeout, &data, NULL);
  94. http_server_deinit(http);
  95. eloop_destroy();
  96. wpa_printf(MSG_INFO, "Closing Android browser");
  97. if (system("/system/bin/input keyevent KEYCODE_HOME") != 0) {
  98. wpa_printf(MSG_INFO, "Failed to inject keyevent");
  99. }
  100. return data.success;
  101. }