Update resolver plugin infrastructure
[framework/connectivity/connman.git] / plugins / resolvconf.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2008  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 <stdlib.h>
27
28 #include <connman/plugin.h>
29 #include <connman/driver.h>
30 #include <connman/log.h>
31
32 static int resolvconf_probe(struct connman_element *element)
33 {
34         gchar *cmd;
35         //int err;
36
37         DBG("element %p name %s", element, element->name);
38
39         cmd = g_strdup_printf("echo \"nameserver %s\" | resolvconf -a %s",
40                                         "127.0.0.1", element->netdev.name);
41
42         DBG("%s", cmd);
43
44         //err = system(cmd);
45
46         g_free(cmd);
47
48         return 0;
49 }
50
51 static void resolvconf_remove(struct connman_element *element)
52 {
53         gchar *cmd;
54         //int err;
55
56         DBG("element %p name %s", element, element->name);
57
58         cmd = g_strdup_printf("resolvconf -d %s", element->netdev.name);
59
60         DBG("%s", cmd);
61
62         //err = system(cmd);
63
64         g_free(cmd);
65 }
66
67 static struct connman_driver resolvconf_driver = {
68         .name           = "resolvconf",
69         .type           = CONNMAN_ELEMENT_TYPE_RESOLVER,
70         .probe          = resolvconf_probe,
71         .remove         = resolvconf_remove,
72 };
73
74 static int resolvconf_init(void)
75 {
76         return connman_driver_register(&resolvconf_driver);
77 }
78
79 static void resolvconf_exit(void)
80 {
81         connman_driver_unregister(&resolvconf_driver);
82 }
83
84 CONNMAN_PLUGIN_DEFINE("resolvconf", "Name resolver plugin", VERSION,
85                                         resolvconf_init, resolvconf_exit)