Add initial steps for builtin plugins
[connman] / src / plugin.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <dlfcn.h>
27
28 #include <glib.h>
29
30 #ifdef CONNMAN_PLUGIN_BUILTIN
31 #undef CONNMAN_PLUGIN_BUILTIN
32 #endif
33
34 #include "connman.h"
35
36 static GSList *plugins = NULL;
37
38 struct connman_plugin {
39         void *handle;
40         gboolean active;
41         struct connman_plugin_desc *desc;
42 };
43
44 static gint compare_priority(gconstpointer a, gconstpointer b)
45 {
46         const struct connman_plugin *plugin1 = a;
47         const struct connman_plugin *plugin2 = b;
48
49         return plugin2->desc->priority - plugin1->desc->priority;
50 }
51
52 static gboolean add_plugin(void *handle, struct connman_plugin_desc *desc)
53 {
54         struct connman_plugin *plugin;
55
56         if (desc->init == NULL)
57                 return FALSE;
58
59         if (g_str_equal(desc->version, CONNMAN_VERSION) == FALSE) {
60                 DBG("version mismatch for %s", desc->description);
61                 return FALSE;
62         }
63
64         plugin = g_try_new0(struct connman_plugin, 1);
65         if (plugin == NULL)
66                 return FALSE;
67
68         plugin->handle = handle;
69         plugin->active = FALSE;
70         plugin->desc = desc;
71
72         plugins = g_slist_insert_sorted(plugins, plugin, compare_priority);
73
74         return TRUE;
75 }
76
77 int __connman_plugin_init(const char *pattern, const char *exclude)
78 {
79         GSList *list;
80         GDir *dir;
81         const gchar *file;
82         gchar *filename;
83
84         DBG("");
85
86         dir = g_dir_open(PLUGINDIR, 0, NULL);
87         if (dir != NULL) {
88                 while ((file = g_dir_read_name(dir)) != NULL) {
89                         void *handle;
90                         struct connman_plugin_desc *desc;
91
92                         if (g_str_has_prefix(file, "lib") == TRUE ||
93                                         g_str_has_suffix(file, ".so") == FALSE)
94                                 continue;
95
96                         filename = g_build_filename(PLUGINDIR, file, NULL);
97
98                         handle = dlopen(filename, RTLD_NOW);
99                         if (handle == NULL) {
100                                 g_warning("Can't load %s: %s", filename,
101                                                                 dlerror());
102                                 g_free(filename);
103                                 continue;
104                         }
105
106                         g_free(filename);
107
108                         desc = dlsym(handle, "connman_plugin_desc");
109                         if (desc == NULL) {
110                                 g_warning("Can't load symbol: %s", dlerror());
111                                 dlclose(handle);
112                                 continue;
113                         }
114
115                         if (exclude != NULL && g_pattern_match_simple(exclude,
116                                                         desc->name) == TRUE) {
117                                 DBG("excluding %s", desc->description);
118                                 dlclose(handle);
119                                 continue;
120                         }
121
122                         if (pattern != NULL && g_pattern_match_simple(pattern,
123                                                         desc->name) == FALSE) {
124                                 DBG("ignoring %s", desc->description);
125                                 dlclose(handle);
126                                 continue;
127                         }
128
129                         if (add_plugin(handle, desc) == FALSE)
130                                 dlclose(handle);
131                 }
132
133                 g_dir_close(dir);
134         }
135
136         for (list = plugins; list; list = list->next) {
137                 struct connman_plugin *plugin = list->data;
138
139                 if (plugin->desc->init() < 0)
140                         continue;
141
142                 plugin->active = TRUE;
143         }
144
145         return 0;
146 }
147
148 void __connman_plugin_cleanup(void)
149 {
150         GSList *list;
151
152         DBG("");
153
154         for (list = plugins; list; list = list->next) {
155                 struct connman_plugin *plugin = list->data;
156
157                 if (plugin->active == TRUE && plugin->desc->exit)
158                         plugin->desc->exit();
159
160                 dlclose(plugin->handle);
161
162                 g_free(plugin);
163         }
164
165         g_slist_free(plugins);
166 }