summaryrefslogtreecommitdiff
path: root/main.c
blob: 5b855c14068cb84620f3886c533eac11ce5b9393 (plain)
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
/*
 * Copyright (C) 2013-2014 Kay Sievers
 * Copyright (C) 2013-2014 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 * Copyright (C) 2013-2014 Daniel Mack <daniel@zonque.org>
 * Copyright (C) 2013-2014 David Herrmann <dh.herrmann@gmail.com>
 * Copyright (C) 2013-2014 Linux Foundation
 *
 * kdbus 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.
 */

#define pr_fmt(fmt)    KBUILD_MODNAME ": " fmt
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/module.h>

#include "util.h"
#include "domain.h"
#include "handle.h"

/* kdbus initial domain */
static struct kdbus_domain *kdbus_domain_init;

static int __init kdbus_init(void)
{
	int ret;

	ret = subsys_virtual_register(&kdbus_subsys, NULL);
	if (ret < 0)
		return ret;

	ret = kdbus_minor_init();
	if (ret < 0)
		goto exit_subsys;

	/*
	 * Create the initial domain; it is world-accessible and
	 * provides the /dev/kdbus/control device node.
	 */
	kdbus_domain_init = kdbus_domain_new(NULL, NULL, 0666);
	if (IS_ERR(kdbus_domain_init) < 0) {
		ret = PTR_ERR(kdbus_domain_init);
		pr_err("failed to initialize, error=%i\n", ret);
		goto exit_minor;
	}

	pr_info("initialized\n");
	return 0;

exit_minor:
	kdbus_minor_exit();
exit_subsys:
	bus_unregister(&kdbus_subsys);
	return ret;
}

static void __exit kdbus_exit(void)
{
	kdbus_domain_disconnect(kdbus_domain_init);
	kdbus_domain_unref(kdbus_domain_init);
	kdbus_minor_exit();
	bus_unregister(&kdbus_subsys);
}

module_init(kdbus_init);
module_exit(kdbus_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("D-Bus, powerful, easy to use interprocess communication");