mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-16 23:40:43 +01:00
wired: Move D-Bus setup into separate source file
This commit is contained in:
parent
804ce5944b
commit
247b2ccc5c
@ -197,7 +197,8 @@ if WIRED
|
|||||||
libexec_PROGRAMS += wired/ead
|
libexec_PROGRAMS += wired/ead
|
||||||
|
|
||||||
wired_ead_SOURCES = wired/main.c wired/ethdev.h wired/ethdev.c \
|
wired_ead_SOURCES = wired/main.c wired/ethdev.h wired/ethdev.c \
|
||||||
wired/network.h wired/network.c $(eap_sources)
|
wired/network.h wired/network.c \
|
||||||
|
wired/dbus.h wired/dbus.c $(eap_sources)
|
||||||
wired_ead_LDADD = ell/libell-internal.la
|
wired_ead_LDADD = ell/libell-internal.la
|
||||||
wired_ead_DEPENDENCIES = ell/libell-internal.la
|
wired_ead_DEPENDENCIES = ell/libell-internal.la
|
||||||
|
|
||||||
|
76
wired/dbus.c
Normal file
76
wired/dbus.c
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
/*
|
||||||
|
*
|
||||||
|
* Ethernet daemon for Linux
|
||||||
|
*
|
||||||
|
* Copyright (C) 2017-2018 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 "wired/dbus.h"
|
||||||
|
|
||||||
|
static struct l_dbus *dbus;
|
||||||
|
|
||||||
|
static void request_name_callback(struct l_dbus *dbus, bool success,
|
||||||
|
bool queued, void *user_data)
|
||||||
|
{
|
||||||
|
if (!success) {
|
||||||
|
l_error("Failed to request D-Bus service Name");
|
||||||
|
l_main_quit();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!l_dbus_object_manager_enable(dbus))
|
||||||
|
l_warn("Unable to register ObjectManager interface");
|
||||||
|
}
|
||||||
|
|
||||||
|
static void dbus_ready(void *user_data)
|
||||||
|
{
|
||||||
|
l_dbus_name_acquire(dbus, "net.connman.ead", false, false, true,
|
||||||
|
request_name_callback, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void dbus_disconnected(void *user_data)
|
||||||
|
{
|
||||||
|
l_info("D-Bus disconnected, quitting...");
|
||||||
|
l_main_quit();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool dbus_init(void)
|
||||||
|
{
|
||||||
|
dbus = l_dbus_new_default(L_DBUS_SYSTEM_BUS);
|
||||||
|
if (!dbus) {
|
||||||
|
l_error("Failed to initialize D-Bus");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
l_dbus_set_ready_handler(dbus, dbus_ready, dbus, NULL);
|
||||||
|
l_dbus_set_disconnect_handler(dbus, dbus_disconnected, NULL, NULL);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void dbus_exit(void)
|
||||||
|
{
|
||||||
|
l_dbus_destroy(dbus);
|
||||||
|
dbus = NULL;
|
||||||
|
}
|
24
wired/dbus.h
Normal file
24
wired/dbus.h
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
*
|
||||||
|
* Ethernet daemon for Linux
|
||||||
|
*
|
||||||
|
* Copyright (C) 2017-2018 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
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
bool dbus_init(void);
|
||||||
|
void dbus_exit(void);
|
39
wired/main.c
39
wired/main.c
@ -31,6 +31,7 @@
|
|||||||
#include <ell/ell.h>
|
#include <ell/ell.h>
|
||||||
|
|
||||||
#include "src/eap.h"
|
#include "src/eap.h"
|
||||||
|
#include "wired/dbus.h"
|
||||||
#include "wired/ethdev.h"
|
#include "wired/ethdev.h"
|
||||||
#include "wired/network.h"
|
#include "wired/network.h"
|
||||||
|
|
||||||
@ -46,33 +47,6 @@ static void signal_handler(struct l_signal *signal, uint32_t signo,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void request_name_callback(struct l_dbus *dbus, bool success,
|
|
||||||
bool queued, void *user_data)
|
|
||||||
{
|
|
||||||
if (!success) {
|
|
||||||
l_error("Failed to request D-Bus service Name");
|
|
||||||
l_main_quit();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!l_dbus_object_manager_enable(dbus))
|
|
||||||
l_warn("Unable to register ObjectManager interface");
|
|
||||||
}
|
|
||||||
|
|
||||||
static void dbus_ready(void *user_data)
|
|
||||||
{
|
|
||||||
struct l_dbus *dbus = user_data;
|
|
||||||
|
|
||||||
l_dbus_name_acquire(dbus, "net.connman.ead", false, false, true,
|
|
||||||
request_name_callback, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void dbus_disconnected(void *user_data)
|
|
||||||
{
|
|
||||||
l_info("D-Bus disconnected, quitting...");
|
|
||||||
l_main_quit();
|
|
||||||
}
|
|
||||||
|
|
||||||
static void usage(void)
|
static void usage(void)
|
||||||
{
|
{
|
||||||
printf("ead - Authentication daemon\n"
|
printf("ead - Authentication daemon\n"
|
||||||
@ -99,7 +73,6 @@ int main(int argc, char *argv[])
|
|||||||
struct l_signal *signal;
|
struct l_signal *signal;
|
||||||
sigset_t mask;
|
sigset_t mask;
|
||||||
int exit_status;
|
int exit_status;
|
||||||
struct l_dbus *dbus;
|
|
||||||
const char *interfaces = NULL;
|
const char *interfaces = NULL;
|
||||||
const char *nointerfaces = NULL;
|
const char *nointerfaces = NULL;
|
||||||
const char *debugopt = NULL;
|
const char *debugopt = NULL;
|
||||||
@ -160,14 +133,8 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
exit_status = EXIT_FAILURE;
|
exit_status = EXIT_FAILURE;
|
||||||
|
|
||||||
dbus = l_dbus_new_default(L_DBUS_SYSTEM_BUS);
|
if (!dbus_init())
|
||||||
if (!dbus) {
|
|
||||||
l_error("Failed to initialize D-Bus");
|
|
||||||
goto done;
|
goto done;
|
||||||
}
|
|
||||||
|
|
||||||
l_dbus_set_ready_handler(dbus, dbus_ready, dbus, NULL);
|
|
||||||
l_dbus_set_disconnect_handler(dbus, dbus_disconnected, NULL, NULL);
|
|
||||||
|
|
||||||
eap_init(0);
|
eap_init(0);
|
||||||
network_init();
|
network_init();
|
||||||
@ -181,7 +148,7 @@ int main(int argc, char *argv[])
|
|||||||
network_exit();
|
network_exit();
|
||||||
eap_exit();
|
eap_exit();
|
||||||
|
|
||||||
l_dbus_destroy(dbus);
|
dbus_exit();
|
||||||
|
|
||||||
done:
|
done:
|
||||||
l_signal_remove(signal);
|
l_signal_remove(signal);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user