2017-05-02 20:31:29 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
2020-02-27 00:32:24 +01:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation. All rights reserved.
|
2017-05-02 20:31:29 +02:00
|
|
|
*
|
|
|
|
* 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>
|
2018-05-03 22:57:55 +02:00
|
|
|
#include <unistd.h>
|
2017-05-02 20:31:29 +02:00
|
|
|
|
2019-12-13 09:02:42 +01:00
|
|
|
#include "client/agent.h"
|
|
|
|
#include "client/dbus-proxy.h"
|
|
|
|
#include "client/agent-manager.h"
|
2020-02-27 00:32:24 +01:00
|
|
|
#include "client/command.h"
|
2018-05-03 22:57:50 +02:00
|
|
|
|
2019-10-28 18:45:11 +01:00
|
|
|
#define IWD_AGENT_MANAGER_PATH "/net/connman/iwd"
|
2018-05-03 22:57:50 +02:00
|
|
|
|
|
|
|
static void check_errors_method_callback(struct l_dbus_message *message,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
dbus_message_has_error(message);
|
|
|
|
}
|
|
|
|
|
2020-02-27 00:32:24 +01:00
|
|
|
static bool agent_manager_register_agent(const char *path)
|
2018-05-03 22:57:50 +02:00
|
|
|
{
|
2020-02-27 00:32:24 +01:00
|
|
|
const struct proxy_interface *proxy;
|
2018-05-03 22:57:50 +02:00
|
|
|
|
2020-02-27 00:32:24 +01:00
|
|
|
if (!path)
|
2018-05-03 22:57:50 +02:00
|
|
|
return false;
|
|
|
|
|
2020-02-27 00:32:24 +01:00
|
|
|
proxy = proxy_interface_find(IWD_AGENT_MANAGER_INTERFACE,
|
|
|
|
IWD_AGENT_MANAGER_PATH);
|
|
|
|
if (!proxy)
|
2018-05-03 22:57:50 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
proxy_interface_method_call(proxy, "RegisterAgent", "o",
|
|
|
|
check_errors_method_callback, path);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool agent_manager_unregister_agent(void)
|
|
|
|
{
|
|
|
|
const char *path;
|
|
|
|
const struct proxy_interface *proxy =
|
|
|
|
proxy_interface_find(IWD_AGENT_MANAGER_INTERFACE,
|
|
|
|
IWD_AGENT_MANAGER_PATH);
|
|
|
|
|
|
|
|
if (!proxy)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
path = proxy_interface_get_data(proxy);
|
|
|
|
if (!path)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
proxy_interface_method_call(proxy, "UnregisterAgent", "o",
|
|
|
|
check_errors_method_callback, path);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-05-02 20:31:29 +02:00
|
|
|
|
2018-05-03 22:57:55 +02:00
|
|
|
static void *agent_manager_create(void)
|
|
|
|
{
|
2020-02-27 00:32:24 +01:00
|
|
|
char *path;
|
|
|
|
|
|
|
|
if (command_needs_no_agent())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
path = l_strdup_printf("/agent/%i", getpid());
|
2018-05-03 22:57:55 +02:00
|
|
|
|
|
|
|
agent_init(path);
|
|
|
|
|
2020-02-27 00:32:24 +01:00
|
|
|
agent_manager_register_agent(path);
|
|
|
|
|
2018-05-03 22:57:55 +02:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void agent_manager_destroy(void *data)
|
|
|
|
{
|
|
|
|
char *path = data;
|
|
|
|
|
2020-02-27 00:32:24 +01:00
|
|
|
if (!path)
|
|
|
|
return;
|
|
|
|
|
2018-05-03 22:57:55 +02:00
|
|
|
agent_exit(path);
|
|
|
|
|
|
|
|
l_free(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct proxy_interface_type_ops agent_manager_ops = {
|
|
|
|
.create = agent_manager_create,
|
|
|
|
.destroy = agent_manager_destroy,
|
|
|
|
};
|
|
|
|
|
2017-05-02 20:31:29 +02:00
|
|
|
static struct proxy_interface_type agent_manager_interface_type = {
|
2018-05-03 22:57:50 +02:00
|
|
|
.interface = IWD_AGENT_MANAGER_INTERFACE,
|
2018-05-03 22:57:55 +02:00
|
|
|
.ops = &agent_manager_ops,
|
2017-05-02 20:31:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static int agent_manager_interface_init(void)
|
|
|
|
{
|
|
|
|
proxy_interface_type_register(&agent_manager_interface_type);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void agent_manager_interface_exit(void)
|
|
|
|
{
|
2017-05-02 22:20:46 +02:00
|
|
|
proxy_interface_type_unregister(&agent_manager_interface_type);
|
2017-05-02 20:31:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
INTERFACE_TYPE(agent_manager_interface_type, agent_manager_interface_init,
|
|
|
|
agent_manager_interface_exit)
|