wlantest_cli.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. * wlantest controller
  3. * Copyright (c) 2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include <sys/un.h>
  16. #include "utils/common.h"
  17. #include "wlantest_ctrl.h"
  18. static int cmd_simple(int s, enum wlantest_ctrl_cmd cmd)
  19. {
  20. char buf[4];
  21. int res;
  22. enum wlantest_ctrl_cmd resp;
  23. WPA_PUT_BE32(buf, cmd);
  24. if (send(s, buf, 4, 0) < 0)
  25. return -1;
  26. res = recv(s, buf, sizeof(buf), 0);
  27. if (res < 4)
  28. return -1;
  29. resp = WPA_GET_BE32(buf);
  30. if (resp == WLANTEST_CTRL_SUCCESS)
  31. printf("OK\n");
  32. else if (resp == WLANTEST_CTRL_FAILURE)
  33. printf("FAIL\n");
  34. else if (resp == WLANTEST_CTRL_UNKNOWN_CMD)
  35. printf("Unknown command\n");
  36. return resp == WLANTEST_CTRL_SUCCESS ? 0 : -1;
  37. }
  38. static int cmd_ping(int s, int argc, char *argv[])
  39. {
  40. return cmd_simple(s, WLANTEST_CTRL_PING) == 0;
  41. }
  42. static int cmd_terminate(int s, int argc, char *argv[])
  43. {
  44. return cmd_simple(s, WLANTEST_CTRL_TERMINATE);
  45. }
  46. struct wlantest_cli_cmd {
  47. const char *cmd;
  48. int (*handler)(int s, int argc, char *argv[]);
  49. const char *usage;
  50. };
  51. static const struct wlantest_cli_cmd wlantest_cli_commands[] = {
  52. { "ping", cmd_ping, "= test connection to wlantest" },
  53. { "terminate", cmd_terminate, "= terminate wlantest" },
  54. { NULL, NULL, NULL }
  55. };
  56. static int ctrl_command(int s, int argc, char *argv[])
  57. {
  58. const struct wlantest_cli_cmd *cmd, *match = NULL;
  59. int count = 0;
  60. int ret = 0;
  61. for (cmd = wlantest_cli_commands; cmd->cmd; cmd++) {
  62. if (os_strncasecmp(cmd->cmd, argv[0], os_strlen(argv[0])) == 0)
  63. {
  64. match = cmd;
  65. if (os_strcasecmp(cmd->cmd, argv[0]) == 0) {
  66. /* exact match */
  67. count = 1;
  68. break;
  69. }
  70. count++;
  71. }
  72. }
  73. if (count > 1) {
  74. printf("Ambiguous command '%s'; possible commands:", argv[0]);
  75. for (cmd = wlantest_cli_commands; cmd->cmd; cmd++) {
  76. if (os_strncasecmp(cmd->cmd, argv[0],
  77. os_strlen(argv[0])) == 0) {
  78. printf(" %s", cmd->cmd);
  79. }
  80. cmd++;
  81. }
  82. printf("\n");
  83. ret = 1;
  84. } else if (count == 0) {
  85. printf("Unknown command '%s'\n", argv[0]);
  86. ret = 1;
  87. } else {
  88. ret = match->handler(s, argc - 1, &argv[1]);
  89. }
  90. return ret;
  91. }
  92. int main(int argc, char *argv[])
  93. {
  94. int s;
  95. struct sockaddr_un addr;
  96. int ret = 0;
  97. s = socket(AF_UNIX, SOCK_SEQPACKET, 0);
  98. if (s < 0) {
  99. perror("socket");
  100. return -1;
  101. }
  102. os_memset(&addr, 0, sizeof(addr));
  103. addr.sun_family = AF_UNIX;
  104. os_strlcpy(addr.sun_path + 1, WLANTEST_SOCK_NAME,
  105. sizeof(addr.sun_path) - 1);
  106. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  107. perror("connect");
  108. close(s);
  109. return -1;
  110. }
  111. if (argc > 1) {
  112. ret = ctrl_command(s, argc - 1, &argv[1]);
  113. if (ret < 0)
  114. printf("FAIL\n");
  115. } else {
  116. /* TODO: interactive */
  117. }
  118. close(s);
  119. return ret;
  120. }