5 * Copyright (C) 2007-2008 Intel Corporation. All rights reserved.
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.
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.
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
30 #include <sys/ioctl.h>
31 #include <sys/socket.h>
34 #include <connman/plugin.h>
35 #include <connman/resolver.h>
36 #include <connman/log.h>
38 static int resolvconf_append(struct connman_iface *iface, const char *nameserver)
44 sk = socket(PF_INET, SOCK_DGRAM, 0);
48 memset(&ifr, 0, sizeof(ifr));
49 ifr.ifr_ifindex = iface->index;
51 err = ioctl(sk, SIOCGIFNAME, &ifr);
58 DBG("ifname %s", ifr.ifr_name);
60 snprintf(cmd, sizeof(cmd), "echo \"nameserver %s\" | resolvconf -a %s",
61 nameserver, ifr.ifr_name);
70 static int resolvconf_remove(struct connman_iface *iface)
76 sk = socket(PF_INET, SOCK_DGRAM, 0);
80 memset(&ifr, 0, sizeof(ifr));
81 ifr.ifr_ifindex = iface->index;
83 err = ioctl(sk, SIOCGIFNAME, &ifr);
90 DBG("ifname %s", ifr.ifr_name);
92 snprintf(cmd, sizeof(cmd), "resolvconf -d %s", ifr.ifr_name);
101 static struct connman_resolver_driver resolvconf_driver = {
102 .name = "resolvconf",
103 .append = resolvconf_append,
104 .remove = resolvconf_remove,
107 static int resolvconf_init(void)
109 return connman_resolver_register(&resolvconf_driver);
112 static void resolvconf_exit(void)
114 connman_resolver_unregister(&resolvconf_driver);
117 CONNMAN_PLUGIN_DEFINE("resolvconf", "Name resolver plugin", VERSION,
118 resolvconf_init, resolvconf_exit)