Remove obsolete file.
[connman] / plugins / resolvconf.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 <errno.h>
27 #include <unistd.h>
28 #include <stdlib.h>
29
30 #define CONNMAN_API_SUBJECT_TO_CHANGE
31 #include <connman/plugin.h>
32 #include <connman/resolver.h>
33 #include <connman/log.h>
34
35 #include <glib.h>
36
37 static int resolvconf_append(const char *interface, const char *domain,
38                                                         const char *server)
39 {
40         char *cmd;
41         int err;
42
43         DBG("interface %s server %s", interface, server);
44
45         if (access(RESOLVCONF, X_OK) < 0)
46                 return -errno;
47
48         cmd = g_strdup_printf("echo \"nameserver %s\" | %s -a %s",
49                                                 server, RESOLVCONF, interface);
50
51         DBG("%s", cmd);
52
53         err = system(cmd);
54
55         g_free(cmd);
56
57         return err;
58 }
59
60 static int resolvconf_remove(const char *interface, const char *domain,
61                                                         const char *server)
62 {
63         char *cmd;
64         int err;
65
66         DBG("interface %s server %s", interface, server);
67
68         cmd = g_strdup_printf("%s -d %s", RESOLVCONF, interface);
69
70         DBG("%s", cmd);
71
72         err = system(cmd);
73
74         g_free(cmd);
75
76         return err;
77 }
78
79 static struct connman_resolver resolvconf_resolver = {
80         .name           = "resolvconf",
81         .priority       = CONNMAN_RESOLVER_PRIORITY_DEFAULT,
82         .append         = resolvconf_append,
83         .remove         = resolvconf_remove,
84 };
85
86 static int resolvconf_init(void)
87 {
88         return connman_resolver_register(&resolvconf_resolver);
89 }
90
91 static void resolvconf_exit(void)
92 {
93         connman_resolver_unregister(&resolvconf_resolver);
94 }
95
96 CONNMAN_PLUGIN_DEFINE(resolvconf, "Name resolver plugin", VERSION,
97                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, resolvconf_init, resolvconf_exit)