2015-02-27 15:01:06 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 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 <errno.h>
|
|
|
|
|
|
|
|
#include <ell/ell.h>
|
|
|
|
#include "src/dbus.h"
|
|
|
|
#include "src/agent.h"
|
|
|
|
|
2015-03-02 15:19:05 +01:00
|
|
|
static unsigned int next_request_id = 0;
|
|
|
|
|
2015-03-02 15:19:04 +01:00
|
|
|
/* Agent dbus request is done from iwd towards the agent */
|
|
|
|
struct agent_request {
|
|
|
|
struct l_dbus_message *message;
|
2015-03-02 15:19:05 +01:00
|
|
|
unsigned int id;
|
2015-03-02 15:19:04 +01:00
|
|
|
void *user_data;
|
2015-03-02 15:19:05 +01:00
|
|
|
void *user_callback;
|
2016-05-16 19:05:28 +02:00
|
|
|
struct l_dbus_message *trigger;
|
2015-03-02 15:19:04 +01:00
|
|
|
};
|
|
|
|
|
2015-02-27 15:01:07 +01:00
|
|
|
struct agent {
|
|
|
|
char *owner;
|
|
|
|
char *path;
|
|
|
|
unsigned int disconnect_watch;
|
|
|
|
uint32_t pending_id;
|
|
|
|
struct l_timeout *timeout;
|
|
|
|
int timeout_secs;
|
|
|
|
struct l_queue *requests;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct agent *default_agent = NULL;
|
|
|
|
|
2015-03-02 15:19:05 +01:00
|
|
|
/*
|
|
|
|
* How long we wait for user to input things.
|
|
|
|
* Return value is in seconds.
|
|
|
|
*
|
|
|
|
* This should probably be configurable by user via
|
|
|
|
* config file/command line option/env variable.
|
|
|
|
*/
|
|
|
|
static unsigned int agent_timeout_input_request(void)
|
|
|
|
{
|
|
|
|
return 120;
|
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:04 +01:00
|
|
|
static void send_request(struct agent *agent, const char *request)
|
|
|
|
{
|
|
|
|
struct l_dbus_message *message;
|
|
|
|
|
|
|
|
l_debug("send %s request to %s %s", request, agent->owner,
|
|
|
|
agent->path);
|
|
|
|
|
|
|
|
message = l_dbus_message_new_method_call(dbus_get_bus(),
|
|
|
|
agent->owner,
|
|
|
|
agent->path,
|
|
|
|
IWD_AGENT_INTERFACE,
|
|
|
|
request);
|
|
|
|
|
|
|
|
l_dbus_message_set_arguments(message, "");
|
|
|
|
|
|
|
|
l_dbus_send(dbus_get_bus(), message);
|
|
|
|
}
|
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
static void send_cancel_request(void *user_data, int reason)
|
2015-03-02 15:19:04 +01:00
|
|
|
{
|
|
|
|
struct agent *agent = user_data;
|
2016-06-10 11:49:34 +02:00
|
|
|
struct l_dbus_message *message;
|
|
|
|
const char *reasonstr;
|
|
|
|
|
|
|
|
switch (reason) {
|
|
|
|
case -ECANCELED:
|
|
|
|
reasonstr = "user-canceled";
|
|
|
|
break;
|
|
|
|
case -ETIMEDOUT:
|
|
|
|
reasonstr = "timed-out";
|
|
|
|
break;
|
|
|
|
case -ERANGE:
|
|
|
|
reasonstr = "out-of-range";
|
|
|
|
break;
|
|
|
|
case -ESHUTDOWN:
|
|
|
|
reasonstr = "shutdown";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
reasonstr = "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
l_debug("send a Cancel(%s) to %s %s", reasonstr,
|
|
|
|
agent->owner, agent->path);
|
|
|
|
|
|
|
|
message = l_dbus_message_new_method_call(dbus_get_bus(),
|
|
|
|
agent->owner,
|
|
|
|
agent->path,
|
|
|
|
IWD_AGENT_INTERFACE,
|
|
|
|
"Cancel");
|
2015-03-02 15:19:04 +01:00
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
l_dbus_message_set_arguments(message, "s", reasonstr);
|
|
|
|
|
|
|
|
l_dbus_send(dbus_get_bus(), message);
|
2015-03-02 15:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void agent_request_free(void *user_data)
|
|
|
|
{
|
|
|
|
struct agent_request *request = user_data;
|
|
|
|
|
|
|
|
l_dbus_message_unref(request->message);
|
|
|
|
|
2016-05-16 19:05:28 +02:00
|
|
|
if (request->trigger)
|
|
|
|
dbus_pending_reply(&request->trigger,
|
|
|
|
dbus_error_aborted(request->trigger));
|
|
|
|
|
2015-03-02 15:19:04 +01:00
|
|
|
l_free(request);
|
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:05 +01:00
|
|
|
static void passphrase_reply(struct l_dbus_message *reply,
|
|
|
|
struct agent_request *request)
|
|
|
|
{
|
|
|
|
const char *error, *text;
|
|
|
|
char *passphrase = NULL;
|
|
|
|
enum agent_result result = AGENT_RESULT_FAILED;
|
|
|
|
agent_request_passphrase_func_t user_callback = request->user_callback;
|
|
|
|
|
|
|
|
if (l_dbus_message_get_error(reply, &error, &text))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (!l_dbus_message_get_arguments(reply, "s", &passphrase))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
result = AGENT_RESULT_OK;
|
|
|
|
|
|
|
|
done:
|
2016-05-16 19:05:28 +02:00
|
|
|
user_callback(result, passphrase, request->trigger, request->user_data);
|
2015-03-02 15:19:05 +01:00
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:04 +01:00
|
|
|
static void agent_finalize_pending(struct agent *agent,
|
|
|
|
struct l_dbus_message *reply)
|
|
|
|
{
|
|
|
|
struct agent_request *pending;
|
|
|
|
|
|
|
|
if (agent->timeout) {
|
|
|
|
l_timeout_remove(agent->timeout);
|
|
|
|
agent->timeout = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pending = l_queue_pop_head(agent->requests);
|
|
|
|
|
2015-03-02 15:19:05 +01:00
|
|
|
passphrase_reply(reply, pending);
|
|
|
|
|
2016-05-16 19:05:28 +02:00
|
|
|
if (pending->trigger) {
|
|
|
|
l_dbus_message_unref(pending->trigger);
|
|
|
|
pending->trigger = NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:04 +01:00
|
|
|
agent_request_free(pending);
|
|
|
|
}
|
|
|
|
|
2015-02-27 15:01:07 +01:00
|
|
|
static void agent_free(void *data)
|
|
|
|
{
|
|
|
|
struct agent *agent = data;
|
|
|
|
|
|
|
|
l_debug("agent free %p", agent);
|
|
|
|
|
|
|
|
if (agent->timeout)
|
|
|
|
l_timeout_remove(agent->timeout);
|
|
|
|
|
2015-03-02 15:19:04 +01:00
|
|
|
if (agent->pending_id)
|
|
|
|
l_dbus_cancel(dbus_get_bus(), agent->pending_id);
|
|
|
|
|
|
|
|
l_queue_destroy(agent->requests, agent_request_free);
|
|
|
|
|
2015-02-27 15:01:07 +01:00
|
|
|
if (agent->disconnect_watch)
|
|
|
|
l_dbus_remove_watch(dbus_get_bus(), agent->disconnect_watch);
|
|
|
|
|
|
|
|
l_free(agent->owner);
|
|
|
|
l_free(agent->path);
|
|
|
|
l_free(agent);
|
|
|
|
|
|
|
|
default_agent = NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:04 +01:00
|
|
|
static void agent_send_next_request(struct agent *agent);
|
|
|
|
|
|
|
|
static void request_timeout(struct l_timeout *timeout, void *user_data)
|
|
|
|
{
|
|
|
|
struct agent *agent = user_data;
|
|
|
|
|
|
|
|
l_dbus_cancel(dbus_get_bus(), agent->pending_id);
|
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
send_cancel_request(agent, -ETIMEDOUT);
|
2015-03-02 15:19:04 +01:00
|
|
|
|
|
|
|
agent_finalize_pending(agent, NULL);
|
|
|
|
|
|
|
|
agent_send_next_request(agent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void agent_receive_reply(struct l_dbus_message *message,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct agent *agent = user_data;
|
|
|
|
|
|
|
|
l_debug("agent %p request id %u", agent, agent->pending_id);
|
|
|
|
|
|
|
|
agent->pending_id = 0;
|
|
|
|
|
|
|
|
agent_finalize_pending(agent, message);
|
|
|
|
|
|
|
|
agent_send_next_request(agent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void agent_send_next_request(struct agent *agent)
|
|
|
|
{
|
|
|
|
struct agent_request *pending;
|
|
|
|
|
|
|
|
pending = l_queue_peek_head(agent->requests);
|
|
|
|
if (!pending)
|
|
|
|
return;
|
|
|
|
|
|
|
|
agent->timeout = l_timeout_create(agent->timeout_secs,
|
|
|
|
request_timeout,
|
|
|
|
agent, NULL);
|
|
|
|
|
|
|
|
l_debug("send request to %s %s", agent->owner, agent->path);
|
|
|
|
|
|
|
|
agent->pending_id = l_dbus_send_with_reply(dbus_get_bus(),
|
|
|
|
pending->message,
|
|
|
|
agent_receive_reply,
|
|
|
|
agent, NULL);
|
|
|
|
|
|
|
|
pending->message = NULL;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:05 +01:00
|
|
|
static unsigned int agent_queue_request(struct agent *agent,
|
|
|
|
struct l_dbus_message *message, int timeout,
|
2016-05-16 19:05:28 +02:00
|
|
|
void *callback, struct l_dbus_message *trigger,
|
|
|
|
void *user_data)
|
2015-03-02 15:19:05 +01:00
|
|
|
{
|
|
|
|
struct agent_request *request;
|
|
|
|
|
|
|
|
request = l_new(struct agent_request, 1);
|
|
|
|
|
|
|
|
request->message = message;
|
|
|
|
request->id = ++next_request_id;
|
|
|
|
request->user_data = user_data;
|
|
|
|
request->user_callback = callback;
|
2016-05-16 19:05:28 +02:00
|
|
|
request->trigger = l_dbus_message_ref(trigger);
|
2015-03-02 15:19:05 +01:00
|
|
|
|
|
|
|
agent->timeout_secs = timeout;
|
|
|
|
|
|
|
|
l_queue_push_tail(agent->requests, request);
|
|
|
|
|
|
|
|
if (l_queue_length(agent->requests) == 1)
|
|
|
|
agent_send_next_request(agent);
|
|
|
|
|
|
|
|
return request->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* agent_request_passphrase:
|
|
|
|
* @path: object path related to this request (like network object path)
|
|
|
|
* @callback: user callback called when the request is ready
|
2016-05-16 19:05:28 +02:00
|
|
|
* @trigger: Message associated with (e.g. that triggered) this request
|
2015-03-02 15:19:05 +01:00
|
|
|
* @user_data: user defined data
|
|
|
|
*
|
|
|
|
* Called when a passphrase information is needed from the user. Returns an
|
|
|
|
* id that can be used to cancel the request.
|
2016-05-16 19:05:28 +02:00
|
|
|
*
|
|
|
|
* If @trigger is not NULL, then a reference is taken automatically. If
|
|
|
|
* agent_cancel_request is called subsequently, a dbus_aborted error is
|
|
|
|
* automatically generated for @trigger. Otherwise, after @callback is
|
|
|
|
* called, the reference to @trigger is dropped. It is assumed that the
|
|
|
|
* caller will take ownership of @trigger in the callback if needed.
|
2015-03-02 15:19:05 +01:00
|
|
|
*/
|
|
|
|
unsigned int agent_request_passphrase(const char *path,
|
|
|
|
agent_request_passphrase_func_t callback,
|
2016-05-16 19:05:28 +02:00
|
|
|
struct l_dbus_message *trigger,
|
2015-03-02 15:19:05 +01:00
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct l_dbus_message *message;
|
|
|
|
struct agent *agent;
|
|
|
|
|
|
|
|
agent = default_agent;
|
|
|
|
|
|
|
|
if (!agent || !callback)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
l_debug("agent %p owner %s path %s", agent, agent->owner, agent->path);
|
|
|
|
|
|
|
|
message = l_dbus_message_new_method_call(dbus_get_bus(),
|
|
|
|
agent->owner,
|
|
|
|
agent->path,
|
|
|
|
IWD_AGENT_INTERFACE,
|
|
|
|
"RequestPassphrase");
|
|
|
|
|
|
|
|
l_dbus_message_set_arguments(message, "o", path);
|
|
|
|
|
|
|
|
return agent_queue_request(agent, message,
|
|
|
|
agent_timeout_input_request(),
|
|
|
|
callback,
|
2016-05-16 19:05:28 +02:00
|
|
|
trigger,
|
2015-03-02 15:19:05 +01:00
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:06 +01:00
|
|
|
static bool find_request(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct agent_request *request = a;
|
|
|
|
unsigned int id = L_PTR_TO_UINT(b);
|
|
|
|
|
|
|
|
return request->id == id;
|
|
|
|
}
|
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
bool agent_request_cancel(unsigned int req_id, int reason)
|
2015-03-02 15:19:06 +01:00
|
|
|
{
|
|
|
|
struct agent_request *request;
|
|
|
|
|
2015-03-06 10:01:10 +01:00
|
|
|
if (!default_agent)
|
|
|
|
return false;
|
|
|
|
|
2015-03-02 15:19:06 +01:00
|
|
|
request = l_queue_remove_if(default_agent->requests, find_request,
|
|
|
|
L_UINT_TO_PTR(req_id));
|
|
|
|
if (!request)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!request->message)
|
2016-06-10 11:49:34 +02:00
|
|
|
send_cancel_request(default_agent, reason);
|
2015-03-02 15:19:06 +01:00
|
|
|
|
|
|
|
agent_request_free(request);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-02-27 15:01:07 +01:00
|
|
|
static void agent_disconnect(struct l_dbus *dbus, void *user_data)
|
|
|
|
{
|
|
|
|
struct agent *agent = user_data;
|
|
|
|
|
|
|
|
l_debug("agent %s disconnected", agent->owner);
|
|
|
|
|
|
|
|
l_idle_oneshot(agent_free, agent, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct agent *agent_create(struct l_dbus *dbus, const char *name,
|
|
|
|
const char *path)
|
|
|
|
{
|
|
|
|
struct agent *agent;
|
|
|
|
|
|
|
|
agent = l_new(struct agent, 1);
|
|
|
|
|
|
|
|
agent->owner = l_strdup(name);
|
|
|
|
agent->path = l_strdup(path);
|
|
|
|
agent->requests = l_queue_new();
|
|
|
|
agent->disconnect_watch = l_dbus_add_disconnect_watch(dbus, name,
|
|
|
|
agent_disconnect,
|
|
|
|
agent, NULL);
|
|
|
|
return agent;
|
|
|
|
}
|
|
|
|
|
2015-02-27 15:01:06 +01:00
|
|
|
static struct l_dbus_message *agent_register(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
void *user_data)
|
|
|
|
{
|
2015-02-27 15:01:07 +01:00
|
|
|
struct l_dbus_message *reply;
|
|
|
|
struct agent *agent;
|
|
|
|
const char *path;
|
|
|
|
|
|
|
|
if (default_agent)
|
|
|
|
return dbus_error_already_exists(message);
|
|
|
|
|
|
|
|
l_debug("agent register called");
|
|
|
|
|
|
|
|
if (!l_dbus_message_get_arguments(message, "o", &path))
|
|
|
|
return dbus_error_invalid_args(message);
|
|
|
|
|
|
|
|
agent = agent_create(dbus, l_dbus_message_get_sender(message), path);
|
|
|
|
if (!agent)
|
|
|
|
return dbus_error_failed(message);
|
|
|
|
|
|
|
|
default_agent = agent;
|
|
|
|
|
|
|
|
l_debug("agent %s path %s", agent->owner, agent->path);
|
|
|
|
|
|
|
|
reply = l_dbus_message_new_method_return(message);
|
|
|
|
|
|
|
|
l_dbus_message_set_arguments(reply, "");
|
|
|
|
|
|
|
|
return reply;
|
2015-02-27 15:01:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct l_dbus_message *agent_unregister(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
void *user_data)
|
|
|
|
{
|
2015-02-27 15:01:07 +01:00
|
|
|
struct l_dbus_message *reply;
|
|
|
|
const char *path, *sender;
|
|
|
|
|
|
|
|
if (!default_agent)
|
|
|
|
return dbus_error_failed(message);
|
|
|
|
|
|
|
|
l_debug("agent unregister");
|
|
|
|
|
|
|
|
if (!l_dbus_message_get_arguments(message, "o", &path))
|
|
|
|
return dbus_error_invalid_args(message);
|
|
|
|
|
|
|
|
sender = l_dbus_message_get_sender(message);
|
|
|
|
|
2016-05-06 19:39:35 +02:00
|
|
|
if (strcmp(default_agent->owner, sender))
|
2015-02-27 15:01:07 +01:00
|
|
|
return dbus_error_not_found(message);
|
|
|
|
|
|
|
|
agent_free(default_agent);
|
|
|
|
|
|
|
|
reply = l_dbus_message_new_method_return(message);
|
|
|
|
|
|
|
|
l_dbus_message_set_arguments(reply, "");
|
|
|
|
|
|
|
|
return reply;
|
2015-02-27 15:01:06 +01:00
|
|
|
}
|
|
|
|
|
2016-05-21 03:39:35 +02:00
|
|
|
static void setup_agent_interface(struct l_dbus_interface *interface)
|
2015-02-27 15:01:06 +01:00
|
|
|
{
|
|
|
|
l_dbus_interface_method(interface, "RegisterAgent", 0,
|
|
|
|
agent_register,
|
|
|
|
"", "o", "path");
|
|
|
|
l_dbus_interface_method(interface, "UnregisterAgent", 0,
|
|
|
|
agent_unregister,
|
|
|
|
"", "o", "path");
|
|
|
|
}
|
|
|
|
|
2015-03-02 15:19:07 +01:00
|
|
|
static void release_agent(struct agent *agent)
|
|
|
|
{
|
|
|
|
send_request(agent, "Release");
|
|
|
|
|
|
|
|
agent_free(agent);
|
|
|
|
}
|
|
|
|
|
2016-05-21 03:39:35 +02:00
|
|
|
bool agent_init(struct l_dbus *dbus)
|
2015-02-27 15:01:06 +01:00
|
|
|
{
|
2016-05-21 03:39:35 +02:00
|
|
|
if (!l_dbus_register_interface(dbus, IWD_AGENT_MANAGER_INTERFACE,
|
|
|
|
setup_agent_interface,
|
|
|
|
NULL, true)) {
|
|
|
|
l_info("Unable to register %s interface",
|
|
|
|
IWD_AGENT_MANAGER_INTERFACE);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!l_dbus_object_add_interface(dbus, IWD_AGENT_MANAGER_PATH,
|
|
|
|
IWD_AGENT_MANAGER_INTERFACE,
|
|
|
|
NULL)) {
|
|
|
|
l_info("Unable to register the agent manager object on '%s'",
|
|
|
|
IWD_AGENT_MANAGER_PATH);
|
|
|
|
l_dbus_unregister_interface(dbus, IWD_AGENT_MANAGER_INTERFACE);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-27 15:01:06 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-21 03:39:35 +02:00
|
|
|
bool agent_exit(struct l_dbus *dbus)
|
2015-02-27 15:01:06 +01:00
|
|
|
{
|
2016-05-21 03:39:35 +02:00
|
|
|
l_dbus_unregister_object(dbus, IWD_AGENT_MANAGER_PATH);
|
|
|
|
l_dbus_unregister_interface(dbus, IWD_AGENT_MANAGER_INTERFACE);
|
2015-03-02 15:19:07 +01:00
|
|
|
|
2016-05-21 03:39:35 +02:00
|
|
|
return true;
|
2015-02-27 15:01:06 +01:00
|
|
|
}
|
2016-05-25 01:37:19 +02:00
|
|
|
|
|
|
|
void agent_shutdown(void)
|
|
|
|
{
|
|
|
|
if (default_agent)
|
|
|
|
release_agent(default_agent);
|
|
|
|
}
|