1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/*
*
* Wireless daemon for Linux
*
* Copyright (C) 2018-2019 Intel Corporation. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <ell/ell.h>
#include "client/command.h"
#include "client/dbus-proxy.h"
#include "client/device.h"
#include "client/display.h"
struct ad_hoc {
bool started;
};
static void *ad_hoc_create(void)
{
return l_new(struct ad_hoc, 1);
}
static void ad_hoc_destroy(void *data)
{
struct ad_hoc *ad_hoc = data;
l_free(ad_hoc);
}
static const struct proxy_interface_type_ops ad_hoc_ops = {
.create = ad_hoc_create,
.destroy = ad_hoc_destroy,
};
static const char *get_started_tostr(const void *data)
{
const struct ad_hoc *ad_hoc = data;
return ad_hoc->started ? "yes" : "no";
}
static void update_started(void *data, struct l_dbus_message_iter *variant)
{
struct ad_hoc *ad_hoc = data;
bool value;
if (!l_dbus_message_iter_get_variant(variant, "b", &value)) {
ad_hoc->started = false;
return;
}
ad_hoc->started = value;
}
static const struct proxy_interface_property ad_hoc_properties[] = {
{ "Started", "b", update_started, get_started_tostr },
{ }
};
static struct proxy_interface_type ad_hoc_interface_type = {
.interface = IWD_AD_HOC_INTERFACE,
.properties = ad_hoc_properties,
.ops = &ad_hoc_ops,
};
static void check_errors_method_callback(struct l_dbus_message *message,
void *user_data)
{
dbus_message_has_error(message);
}
static void display_ad_hoc_inline(const char *margin, const void *data)
{
const struct proxy_interface *ad_hoc_i = data;
const struct ad_hoc *ad_hoc = proxy_interface_get_data(ad_hoc_i);
struct proxy_interface *device_i =
proxy_interface_find(IWD_DEVICE_INTERFACE,
proxy_interface_get_path(ad_hoc_i));
const char *identity;
if (!device_i)
return;
identity = proxy_interface_get_identity_str(device_i);
if (!identity)
return;
display("%s%-*s%-*s\n", margin,
20, identity,
8, get_started_tostr(ad_hoc));
}
static enum cmd_status cmd_list(const char *device_name, char **argv, int argc)
{
const struct l_queue_entry *entry;
struct l_queue *match =
proxy_interface_find_all(IWD_AD_HOC_INTERFACE, NULL, NULL);
display_table_header("Devices in Ad-Hoc Mode", MARGIN "%-*s %-*s",
20, "Name", 8, "Started");
if (!match) {
display("No devices in Ad-Hoc mode available.\n");
display_table_footer();
return CMD_STATUS_DONE;
}
for (entry = l_queue_get_entries(match); entry; entry = entry->next) {
const struct proxy_interface *ad_hoc = entry->data;
display_ad_hoc_inline(MARGIN, ad_hoc);
}
display_table_footer();
l_queue_destroy(match, NULL);
return CMD_STATUS_DONE;
}
static enum cmd_status cmd_start(const char *device_name, char **argv, int argc)
{
const struct proxy_interface *adhoc_i;
if (argc < 2)
return CMD_STATUS_INVALID_ARGS;
if (strlen(argv[0]) > 32) {
display("Network name cannot exceed 32 characters.\n");
return CMD_STATUS_INVALID_VALUE;
}
if (strlen(argv[1]) < 8) {
display("Passphrase cannot be shorted than 8 characters.\n");
return CMD_STATUS_INVALID_VALUE;
}
adhoc_i = device_proxy_find(device_name, IWD_AD_HOC_INTERFACE);
if (!adhoc_i) {
display("No ad-hoc on device: '%s'\n", device_name);
return CMD_STATUS_INVALID_VALUE;
}
proxy_interface_method_call(adhoc_i, "Start", "ss",
check_errors_method_callback,
argv[0], argv[1]);
return CMD_STATUS_TRIGGERED;
}
static enum cmd_status cmd_start_open(const char *device_name,
char **argv, int argc)
{
const struct proxy_interface *adhoc_i;
if (argc < 1)
return CMD_STATUS_INVALID_ARGS;
if (strlen(argv[0]) > 32) {
display("Network name cannot exceed 32 characters.\n");
return CMD_STATUS_INVALID_VALUE;
}
adhoc_i = device_proxy_find(device_name, IWD_AD_HOC_INTERFACE);
if (!adhoc_i) {
display("No ad-hoc on device: '%s'\n", device_name);
return CMD_STATUS_INVALID_VALUE;
}
proxy_interface_method_call(adhoc_i, "StartOpen", "s",
check_errors_method_callback,
argv[0]);
return CMD_STATUS_TRIGGERED;
}
static enum cmd_status cmd_stop(const char *device_name, char **argv, int argc)
{
const struct proxy_interface *adhoc_i =
device_proxy_find(device_name, IWD_AD_HOC_INTERFACE);
if (!adhoc_i) {
display("No ad-hoc on device: '%s'\n", device_name);
return CMD_STATUS_INVALID_VALUE;
}
proxy_interface_method_call(adhoc_i, "Stop", "",
check_errors_method_callback);
return CMD_STATUS_TRIGGERED;
}
static const struct command ad_hoc_commands[] = {
{ NULL, "list", NULL, cmd_list, "List devices in Ad-hoc mode", true },
{ "<wlan>", "start", "<\"network name\"> <passphrase>", cmd_start,
"Start or join an existing Ad-Hoc network called "
"\"network name\" with a passphrase" },
{ "<wlan>", "start_open", "<\"network name\">", cmd_start_open,
"Start or join an existing open Ad-Hoc network called"
" \"network name\"" },
{ "<wlan>", "stop", NULL, cmd_stop, "Leave an Ad-Hoc network" },
{ }
};
static char *family_arg_completion(const char *text, int state)
{
return device_arg_completion(text, state, ad_hoc_commands,
IWD_AD_HOC_INTERFACE);
}
static char *entity_arg_completion(const char *text, int state)
{
return command_entity_arg_completion(text, state, ad_hoc_commands);
}
static struct command_family ad_hoc_command_family = {
.caption = "Ad-Hoc",
.name = "ad-hoc",
.command_list = ad_hoc_commands,
.family_arg_completion = family_arg_completion,
.entity_arg_completion = entity_arg_completion,
};
static int ad_hoc_command_family_init(void)
{
command_family_register(&ad_hoc_command_family);
return 0;
}
static void ad_hoc_command_family_exit(void)
{
command_family_unregister(&ad_hoc_command_family);
}
COMMAND_FAMILY(ap_command_family, ad_hoc_command_family_init,
ad_hoc_command_family_exit)
static int ad_hoc_interface_init(void)
{
proxy_interface_type_register(&ad_hoc_interface_type);
return 0;
}
static void ad_hoc_interface_exit(void)
{
proxy_interface_type_unregister(&ad_hoc_interface_type);
}
INTERFACE_TYPE(ap_interface_type, ad_hoc_interface_init, ad_hoc_interface_exit)
|