| /* dnsmasq is Copyright (c) 2000-2024 Simon Kelley |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; version 2 dated June, 1991, or |
| (at your option) version 3 dated 29 June, 2007. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #include "dnsmasq.h" |
| |
| #ifdef HAVE_DBUS |
| |
| #include <dbus/dbus.h> |
| |
| const char* introspection_xml_template = |
| "<!DOCTYPE node PUBLIC \"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN\"\n" |
| "\"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd\">\n" |
| "<node name=\"" DNSMASQ_PATH "\">\n" |
| " <interface name=\"org.freedesktop.DBus.Introspectable\">\n" |
| " <method name=\"Introspect\">\n" |
| " <arg name=\"data\" direction=\"out\" type=\"s\"/>\n" |
| " </method>\n" |
| " </interface>\n" |
| " <interface name=\"%s\">\n" |
| " <method name=\"ClearCache\">\n" |
| " </method>\n" |
| " <method name=\"GetVersion\">\n" |
| " <arg name=\"version\" direction=\"out\" type=\"s\"/>\n" |
| " </method>\n" |
| #ifdef HAVE_LOOP |
| " <method name=\"GetLoopServers\">\n" |
| " <arg name=\"server\" direction=\"out\" type=\"as\"/>\n" |
| " </method>\n" |
| #endif |
| " <method name=\"SetServers\">\n" |
| " <arg name=\"servers\" direction=\"in\" type=\"av\"/>\n" |
| " </method>\n" |
| " <method name=\"SetDomainServers\">\n" |
| " <arg name=\"servers\" direction=\"in\" type=\"as\"/>\n" |
| " </method>\n" |
| " <method name=\"SetServersEx\">\n" |
| " <arg name=\"servers\" direction=\"in\" type=\"aas\"/>\n" |
| " </method>\n" |
| " <method name=\"SetFilterWin2KOption\">\n" |
| " <arg name=\"filterwin2k\" direction=\"in\" type=\"b\"/>\n" |
| " </method>\n" |
| " <method name=\"SetFilterA\">\n" |
| " <arg name=\"filter-a\" direction=\"in\" type=\"b\"/>\n" |
| " </method>\n" |
| " <method name=\"SetFilterAAAA\">\n" |
| " <arg name=\"filter-aaaa\" direction=\"in\" type=\"b\"/>\n" |
| " </method>\n" |
| " <method name=\"SetLocaliseQueriesOption\">\n" |
| " <arg name=\"localise-queries\" direction=\"in\" type=\"b\"/>\n" |
| " </method>\n" |
| " <method name=\"SetBogusPrivOption\">\n" |
| " <arg name=\"boguspriv\" direction=\"in\" type=\"b\"/>\n" |
| " </method>\n" |
| " <signal name=\"DhcpLeaseAdded\">\n" |
| " <arg name=\"ipaddr\" type=\"s\"/>\n" |
| " <arg name=\"hwaddr\" type=\"s\"/>\n" |
| " <arg name=\"hostname\" type=\"s\"/>\n" |
| " </signal>\n" |
| " <signal name=\"DhcpLeaseDeleted\">\n" |
| " <arg name=\"ipaddr\" type=\"s\"/>\n" |
| " <arg name=\"hwaddr\" type=\"s\"/>\n" |
| " <arg name=\"hostname\" type=\"s\"/>\n" |
| " </signal>\n" |
| " <signal name=\"DhcpLeaseUpdated\">\n" |
| " <arg name=\"ipaddr\" type=\"s\"/>\n" |
| " <arg name=\"hwaddr\" type=\"s\"/>\n" |
| " <arg name=\"hostname\" type=\"s\"/>\n" |
| " </signal>\n" |
| #ifdef HAVE_DHCP |
| " <method name=\"AddDhcpLease\">\n" |
| " <arg name=\"ipaddr\" type=\"s\"/>\n" |
| " <arg name=\"hwaddr\" type=\"s\"/>\n" |
| " <arg name=\"hostname\" type=\"ay\"/>\n" |
| " <arg name=\"clid\" type=\"ay\"/>\n" |
| " <arg name=\"lease_duration\" type=\"u\"/>\n" |
| " <arg name=\"ia_id\" type=\"u\"/>\n" |
| " <arg name=\"is_temporary\" type=\"b\"/>\n" |
| " </method>\n" |
| " <method name=\"DeleteDhcpLease\">\n" |
| " <arg name=\"ipaddr\" type=\"s\"/>\n" |
| " <arg name=\"success\" type=\"b\" direction=\"out\"/>\n" |
| " </method>\n" |
| #endif |
| " <method name=\"GetMetrics\">\n" |
| " <arg name=\"metrics\" direction=\"out\" type=\"a{su}\"/>\n" |
| " </method>\n" |
| " <method name=\"GetServerMetrics\">\n" |
| " <arg name=\"metrics\" direction=\"out\" type=\"a{ss}\"/>\n" |
| " </method>\n" |
| " <method name=\"ClearMetrics\">\n" |
| " </method>\n" |
| " </interface>\n" |
| "</node>\n"; |
| |
| static char *introspection_xml = NULL; |
| static int watches_modified = 0; |
| |
| struct watch { |
| DBusWatch *watch; |
| struct watch *next; |
| }; |
| |
| |
| static dbus_bool_t add_watch(DBusWatch *watch, void *data) |
| { |
| struct watch *w; |
| |
| for (w = daemon->watches; w; w = w->next) |
| if (w->watch == watch) |
| return TRUE; |
| |
| if (!(w = whine_malloc(sizeof(struct watch)))) |
| return FALSE; |
| |
| w->watch = watch; |
| w->next = daemon->watches; |
| daemon->watches = w; |
| watches_modified++; |
| |
| (void)data; /* no warning */ |
| return TRUE; |
| } |
| |
| static void remove_watch(DBusWatch *watch, void *data) |
| { |
| struct watch **up, *w, *tmp; |
| |
| for (up = &(daemon->watches), w = daemon->watches; w; w = tmp) |
| { |
| tmp = w->next; |
| if (w->watch == watch) |
| { |
| *up = tmp; |
| free(w); |
| watches_modified++; |
| } |
| else |
| up = &(w->next); |
| } |
| |
| (void)data; /* no warning */ |
| } |
| |
| static DBusMessage* dbus_read_servers(DBusMessage *message) |
| { |
| DBusMessageIter iter; |
| union mysockaddr addr, source_addr; |
| char *domain; |
| |
| if (!dbus_message_iter_init(message, &iter)) |
| { |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Failed to initialize dbus message iter"); |
| } |
| |
| mark_servers(SERV_FROM_DBUS); |
| |
| while (1) |
| { |
| int skip = 0; |
| |
| if (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_UINT32) |
| { |
| u32 a; |
| |
| dbus_message_iter_get_basic(&iter, &a); |
| dbus_message_iter_next (&iter); |
| |
| #ifdef HAVE_SOCKADDR_SA_LEN |
| source_addr.in.sin_len = addr.in.sin_len = sizeof(struct sockaddr_in); |
| #endif |
| addr.in.sin_addr.s_addr = ntohl(a); |
| source_addr.in.sin_family = addr.in.sin_family = AF_INET; |
| addr.in.sin_port = htons(NAMESERVER_PORT); |
| source_addr.in.sin_addr.s_addr = INADDR_ANY; |
| source_addr.in.sin_port = htons(daemon->query_port); |
| } |
| else if (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_BYTE) |
| { |
| unsigned char p[sizeof(struct in6_addr)]; |
| unsigned int i; |
| |
| skip = 1; |
| |
| for(i = 0; i < sizeof(struct in6_addr); i++) |
| { |
| dbus_message_iter_get_basic(&iter, &p[i]); |
| dbus_message_iter_next (&iter); |
| if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_BYTE) |
| { |
| i++; |
| break; |
| } |
| } |
| |
| if (i == sizeof(struct in6_addr)) |
| { |
| memcpy(&addr.in6.sin6_addr, p, sizeof(struct in6_addr)); |
| #ifdef HAVE_SOCKADDR_SA_LEN |
| source_addr.in6.sin6_len = addr.in6.sin6_len = sizeof(struct sockaddr_in6); |
| #endif |
| source_addr.in6.sin6_family = addr.in6.sin6_family = AF_INET6; |
| addr.in6.sin6_port = htons(NAMESERVER_PORT); |
| source_addr.in6.sin6_flowinfo = addr.in6.sin6_flowinfo = 0; |
| source_addr.in6.sin6_scope_id = addr.in6.sin6_scope_id = 0; |
| source_addr.in6.sin6_addr = in6addr_any; |
| source_addr.in6.sin6_port = htons(daemon->query_port); |
| skip = 0; |
| } |
| } |
| else |
| /* At the end */ |
| break; |
| |
| /* process each domain */ |
| do { |
| if (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_STRING) |
| { |
| dbus_message_iter_get_basic(&iter, &domain); |
| dbus_message_iter_next (&iter); |
| } |
| else |
| domain = NULL; |
| |
| if (!skip) |
| add_update_server(SERV_FROM_DBUS, &addr, &source_addr, NULL, domain, NULL); |
| |
| } while (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_STRING); |
| } |
| |
| /* unlink and free anything still marked. */ |
| cleanup_servers(); |
| return NULL; |
| } |
| |
| #ifdef HAVE_LOOP |
| static DBusMessage *dbus_reply_server_loop(DBusMessage *message) |
| { |
| DBusMessageIter args, args_iter; |
| struct server *serv; |
| DBusMessage *reply = dbus_message_new_method_return(message); |
| |
| dbus_message_iter_init_append (reply, &args); |
| dbus_message_iter_open_container (&args, DBUS_TYPE_ARRAY,DBUS_TYPE_STRING_AS_STRING, &args_iter); |
| |
| for (serv = daemon->servers; serv; serv = serv->next) |
| if (serv->flags & SERV_LOOP) |
| { |
| (void)prettyprint_addr(&serv->addr, daemon->addrbuff); |
| dbus_message_iter_append_basic (&args_iter, DBUS_TYPE_STRING, &daemon->addrbuff); |
| } |
| |
| dbus_message_iter_close_container (&args, &args_iter); |
| |
| return reply; |
| } |
| #endif |
| |
| static DBusMessage* dbus_read_servers_ex(DBusMessage *message, int strings) |
| { |
| DBusMessageIter iter, array_iter, string_iter; |
| DBusMessage *error = NULL; |
| const char *addr_err; |
| char *dup = NULL; |
| |
| if (!dbus_message_iter_init(message, &iter)) |
| { |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Failed to initialize dbus message iter"); |
| } |
| |
| /* check that the message contains an array of arrays */ |
| if ((dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY) || |
| (dbus_message_iter_get_element_type(&iter) != (strings ? DBUS_TYPE_STRING : DBUS_TYPE_ARRAY))) |
| { |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| strings ? "Expected array of string" : "Expected array of string arrays"); |
| } |
| |
| mark_servers(SERV_FROM_DBUS); |
| |
| /* array_iter points to each "as" element in the outer array */ |
| dbus_message_iter_recurse(&iter, &array_iter); |
| while (dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_INVALID) |
| { |
| const char *str = NULL; |
| union mysockaddr addr, source_addr; |
| u16 flags = 0; |
| char interface[IF_NAMESIZE]; |
| char *str_addr, *str_domain = NULL; |
| struct server_details sdetails = { 0 }; |
| sdetails.addr = &addr; |
| sdetails.source_addr = &source_addr; |
| sdetails.interface = interface; |
| sdetails.flags = &flags; |
| |
| if (strings) |
| { |
| dbus_message_iter_get_basic(&array_iter, &str); |
| if (!str || !strlen (str)) |
| { |
| error = dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Empty string"); |
| break; |
| } |
| |
| /* dup the string because it gets modified during parsing */ |
| if (dup) |
| free(dup); |
| if (!(dup = str_domain = whine_malloc(strlen(str)+1))) |
| break; |
| |
| strcpy(str_domain, str); |
| |
| /* point to address part of old string for error message */ |
| if ((str_addr = strrchr(str, '/'))) |
| str = str_addr+1; |
| |
| if ((str_addr = strrchr(str_domain, '/'))) |
| { |
| if (*str_domain != '/' || str_addr == str_domain) |
| { |
| error = dbus_message_new_error_printf(message, |
| DBUS_ERROR_INVALID_ARGS, |
| "No domain terminator '%s'", |
| str); |
| break; |
| } |
| *str_addr++ = 0; |
| str_domain++; |
| } |
| else |
| { |
| str_addr = str_domain; |
| str_domain = NULL; |
| } |
| |
| |
| } |
| else |
| { |
| /* check the types of the struct and its elements */ |
| if ((dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_ARRAY) || |
| (dbus_message_iter_get_element_type(&array_iter) != DBUS_TYPE_STRING)) |
| { |
| error = dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected inner array of strings"); |
| break; |
| } |
| |
| /* string_iter points to each "s" element in the inner array */ |
| dbus_message_iter_recurse(&array_iter, &string_iter); |
| if (dbus_message_iter_get_arg_type(&string_iter) != DBUS_TYPE_STRING) |
| { |
| /* no IP address given */ |
| error = dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected IP address"); |
| break; |
| } |
| |
| dbus_message_iter_get_basic(&string_iter, &str); |
| if (!str || !strlen (str)) |
| { |
| error = dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Empty IP address"); |
| break; |
| } |
| |
| /* dup the string because it gets modified during parsing */ |
| if (dup) |
| free(dup); |
| if (!(dup = str_addr = whine_malloc(strlen(str)+1))) |
| break; |
| |
| strcpy(str_addr, str); |
| } |
| |
| if (strings) |
| { |
| char *p; |
| |
| do { |
| if (str_domain) |
| { |
| if ((p = strchr(str_domain, '/'))) |
| *p++ = 0; |
| } |
| else |
| p = NULL; |
| |
| if (strings && strlen(str_addr) == 0) |
| add_update_server(SERV_LITERAL_ADDRESS | SERV_FROM_DBUS, &addr, &source_addr, interface, str_domain, NULL); |
| else |
| { |
| if ((addr_err = parse_server(str_addr, &sdetails))) |
| { |
| error = dbus_message_new_error_printf(message, DBUS_ERROR_INVALID_ARGS, |
| "Invalid IP address '%s': %s", |
| str, addr_err); |
| break; |
| } |
| |
| while (parse_server_next(&sdetails)) |
| { |
| if ((addr_err = parse_server_addr(&sdetails))) |
| { |
| error = dbus_message_new_error_printf(message, DBUS_ERROR_INVALID_ARGS, |
| "Invalid IP address '%s': %s", |
| str, addr_err); |
| break; |
| } |
| |
| add_update_server(flags | SERV_FROM_DBUS, &addr, &source_addr, interface, str_domain, NULL); |
| } |
| } |
| } while ((str_domain = p)); |
| } |
| else |
| { |
| /* jump past the address to the domain list (if any) */ |
| dbus_message_iter_next (&string_iter); |
| |
| /* parse domains and add each server/domain pair to the list */ |
| do { |
| str = NULL; |
| if (dbus_message_iter_get_arg_type(&string_iter) == DBUS_TYPE_STRING) |
| dbus_message_iter_get_basic(&string_iter, &str); |
| dbus_message_iter_next (&string_iter); |
| |
| if ((addr_err = parse_server(str_addr, &sdetails))) |
| { |
| error = dbus_message_new_error_printf(message, DBUS_ERROR_INVALID_ARGS, |
| "Invalid IP address '%s': %s", |
| str, addr_err); |
| break; |
| } |
| |
| while (parse_server_next(&sdetails)) |
| { |
| if ((addr_err = parse_server_addr(&sdetails))) |
| { |
| error = dbus_message_new_error_printf(message, DBUS_ERROR_INVALID_ARGS, |
| "Invalid IP address '%s': %s", |
| str, addr_err); |
| break; |
| } |
| |
| /* 0.0.0.0 for server address == NULL, for Dbus */ |
| if (addr.in.sin_family == AF_INET && |
| addr.in.sin_addr.s_addr == 0) |
| flags |= SERV_LITERAL_ADDRESS; |
| else |
| flags &= ~SERV_LITERAL_ADDRESS; |
| |
| add_update_server(flags | SERV_FROM_DBUS, &addr, &source_addr, interface, str, NULL); |
| } |
| } while (dbus_message_iter_get_arg_type(&string_iter) == DBUS_TYPE_STRING); |
| } |
| |
| if (sdetails.orig_hostinfo) |
| freeaddrinfo(sdetails.orig_hostinfo); |
| |
| /* jump to next element in outer array */ |
| dbus_message_iter_next(&array_iter); |
| } |
| |
| cleanup_servers(); |
| |
| if (dup) |
| free(dup); |
| |
| return error; |
| } |
| |
| static DBusMessage *dbus_set_bool(DBusMessage *message, int flag, char *name) |
| { |
| DBusMessageIter iter; |
| dbus_bool_t enabled; |
| |
| if (!dbus_message_iter_init(message, &iter) || dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_BOOLEAN) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, "Expected boolean argument"); |
| |
| dbus_message_iter_get_basic(&iter, &enabled); |
| |
| if (enabled) |
| { |
| my_syslog(LOG_INFO, _("Enabling --%s option from D-Bus"), name); |
| set_option_bool(flag); |
| } |
| else |
| { |
| my_syslog(LOG_INFO, _("Disabling --%s option from D-Bus"), name); |
| reset_option_bool(flag); |
| } |
| |
| return NULL; |
| } |
| |
| #ifdef HAVE_DHCP |
| static DBusMessage *dbus_add_lease(DBusMessage* message) |
| { |
| struct dhcp_lease *lease; |
| const char *ipaddr, *hwaddr, *hostname, *tmp; |
| const unsigned char* clid; |
| int clid_len, hostname_len, hw_len, hw_type; |
| dbus_uint32_t expires, ia_id; |
| dbus_bool_t is_temporary; |
| union all_addr addr; |
| time_t now = dnsmasq_time(); |
| unsigned char dhcp_chaddr[DHCP_CHADDR_MAX]; |
| |
| DBusMessageIter iter, array_iter; |
| if (!dbus_message_iter_init(message, &iter)) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Failed to initialize dbus message iter"); |
| |
| if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected string as first argument"); |
| |
| dbus_message_iter_get_basic(&iter, &ipaddr); |
| dbus_message_iter_next(&iter); |
| |
| if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected string as second argument"); |
| |
| dbus_message_iter_get_basic(&iter, &hwaddr); |
| dbus_message_iter_next(&iter); |
| |
| if ((dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY) || |
| (dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_BYTE)) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected byte array as third argument"); |
| |
| dbus_message_iter_recurse(&iter, &array_iter); |
| dbus_message_iter_get_fixed_array(&array_iter, &hostname, &hostname_len); |
| tmp = memchr(hostname, '\0', hostname_len); |
| if (tmp) |
| { |
| if (tmp == &hostname[hostname_len - 1]) |
| hostname_len--; |
| else |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Hostname contains an embedded NUL character"); |
| } |
| dbus_message_iter_next(&iter); |
| |
| if ((dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY) || |
| (dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_BYTE)) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected byte array as fourth argument"); |
| |
| dbus_message_iter_recurse(&iter, &array_iter); |
| dbus_message_iter_get_fixed_array(&array_iter, &clid, &clid_len); |
| dbus_message_iter_next(&iter); |
| |
| if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_UINT32) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected uint32 as fifth argument"); |
| |
| dbus_message_iter_get_basic(&iter, &expires); |
| dbus_message_iter_next(&iter); |
| |
| if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_UINT32) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected uint32 as sixth argument"); |
| |
| dbus_message_iter_get_basic(&iter, &ia_id); |
| dbus_message_iter_next(&iter); |
| |
| if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_BOOLEAN) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected uint32 as sixth argument"); |
| |
| dbus_message_iter_get_basic(&iter, &is_temporary); |
| |
| if (inet_pton(AF_INET, ipaddr, &addr.addr4)) |
| { |
| if (ia_id != 0 || is_temporary) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "ia_id and is_temporary must be zero for IPv4 lease"); |
| |
| if (!(lease = lease_find_by_addr(addr.addr4))) |
| lease = lease4_allocate(addr.addr4); |
| } |
| #ifdef HAVE_DHCP6 |
| else if (inet_pton(AF_INET6, ipaddr, &addr.addr6)) |
| { |
| if (!(lease = lease6_find_by_addr(&addr.addr6, 128, 0))) |
| lease = lease6_allocate(&addr.addr6, |
| is_temporary ? LEASE_TA : LEASE_NA); |
| lease_set_iaid(lease, ia_id); |
| } |
| #endif |
| else |
| return dbus_message_new_error_printf(message, DBUS_ERROR_INVALID_ARGS, |
| "Invalid IP address '%s'", ipaddr); |
| |
| hw_len = parse_hex((char*)hwaddr, dhcp_chaddr, DHCP_CHADDR_MAX, NULL, &hw_type); |
| if (hw_len < 0) |
| return dbus_message_new_error_printf(message, DBUS_ERROR_INVALID_ARGS, |
| "Invalid HW address '%s'", hwaddr); |
| |
| if (hw_type == 0 && hw_len != 0) |
| hw_type = ARPHRD_ETHER; |
| |
| lease_set_hwaddr(lease, dhcp_chaddr, clid, hw_len, hw_type, |
| clid_len, now, 0); |
| lease_set_expires(lease, expires, now); |
| if (hostname_len != 0) |
| lease_set_hostname(lease, hostname, 0, get_domain(lease->addr), NULL); |
| |
| lease_update_file(now); |
| lease_update_dns(0); |
| |
| return NULL; |
| } |
| |
| static DBusMessage *dbus_del_lease(DBusMessage* message) |
| { |
| struct dhcp_lease *lease; |
| DBusMessageIter iter; |
| const char *ipaddr; |
| DBusMessage *reply; |
| union all_addr addr; |
| dbus_bool_t ret = 1; |
| time_t now = dnsmasq_time(); |
| |
| if (!dbus_message_iter_init(message, &iter)) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Failed to initialize dbus message iter"); |
| |
| if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING) |
| return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS, |
| "Expected string as first argument"); |
| |
| dbus_message_iter_get_basic(&iter, &ipaddr); |
| |
| if (inet_pton(AF_INET, ipaddr, &addr.addr4)) |
| lease = lease_find_by_addr(addr.addr4); |
| #ifdef HAVE_DHCP6 |
| else if (inet_pton(AF_INET6, ipaddr, &addr.addr6)) |
| lease = lease6_find_by_addr(&addr.addr6, 128, 0); |
| #endif |
| else |
| return dbus_message_new_error_printf(message, DBUS_ERROR_INVALID_ARGS, |
| "Invalid IP address '%s'", ipaddr); |
| |
| if (lease) |
| { |
| lease_prune(lease, now); |
| lease_update_file(now); |
| lease_update_dns(0); |
| } |
| else |
| ret = 0; |
| |
| if ((reply = dbus_message_new_method_return(message))) |
| dbus_message_append_args(reply, DBUS_TYPE_BOOLEAN, &ret, |
| DBUS_TYPE_INVALID); |
| |
| |
| return reply; |
| } |
| #endif |
| |
| static DBusMessage *dbus_get_metrics(DBusMessage* message) |
| { |
| DBusMessage *reply = dbus_message_new_method_return(message); |
| DBusMessageIter array, dict, iter; |
| int i; |
| |
| dbus_message_iter_init_append(reply, &iter); |
| dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "{su}", &array); |
| |
| for (i = 0; i < __METRIC_MAX; i++) { |
| const char *key = get_metric_name(i); |
| dbus_uint32_t value = daemon->metrics[i]; |
| |
| dbus_message_iter_open_container(&array, DBUS_TYPE_DICT_ENTRY, NULL, &dict); |
| dbus_message_iter_append_basic(&dict, DBUS_TYPE_STRING, &key); |
| dbus_message_iter_append_basic(&dict, DBUS_TYPE_UINT32, &value); |
| dbus_message_iter_close_container(&array, &dict); |
| } |
| |
| dbus_message_iter_close_container(&iter, &array); |
| |
| return reply; |
| } |
| |
| static void add_dict_entry(DBusMessageIter *container, const char *key, const char *val) |
| { |
| DBusMessageIter dict; |
| |
| dbus_message_iter_open_container(container, DBUS_TYPE_DICT_ENTRY, NULL, &dict); |
| dbus_message_iter_append_basic(&dict, DBUS_TYPE_STRING, &key); |
| dbus_message_iter_append_basic(&dict, DBUS_TYPE_STRING, &val); |
| dbus_message_iter_close_container(container, &dict); |
| } |
| |
| static void add_dict_int(DBusMessageIter *container, const char *key, const unsigned int val) |
| { |
| snprintf(daemon->namebuff, MAXDNAME, "%u", val); |
| |
| add_dict_entry(container, key, daemon->namebuff); |
| } |
| |
| static DBusMessage *dbus_get_server_metrics(DBusMessage* message) |
| { |
| DBusMessage *reply = dbus_message_new_method_return(message); |
| DBusMessageIter server_array, dict_array, server_iter; |
| struct server *serv; |
| |
| dbus_message_iter_init_append(reply, &server_iter); |
| dbus_message_iter_open_container(&server_iter, DBUS_TYPE_ARRAY, "a{ss}", &server_array); |
| |
| /* sum counts from different records for same server */ |
| for (serv = daemon->servers; serv; serv = serv->next) |
| serv->flags &= ~SERV_MARK; |
| |
| for (serv = daemon->servers; serv; serv = serv->next) |
| if (!(serv->flags & SERV_MARK)) |
| { |
| unsigned int port; |
| unsigned int queries = 0, failed_queries = 0, nxdomain_replies = 0, retrys = 0; |
| unsigned int sigma_latency = 0, count_latency = 0; |
| |
| struct server *serv1; |
| |
| for (serv1 = serv; serv1; serv1 = serv1->next) |
| if (!(serv1->flags & SERV_MARK) && sockaddr_isequal(&serv->addr, &serv1->addr)) |
| { |
| serv1->flags |= SERV_MARK; |
| queries += serv1->queries; |
| failed_queries += serv1->failed_queries; |
| nxdomain_replies += serv1->nxdomain_replies; |
| retrys += serv1->retrys; |
| sigma_latency += serv1->query_latency; |
| count_latency++; |
| } |
| |
| dbus_message_iter_open_container(&server_array, DBUS_TYPE_ARRAY, "{ss}", &dict_array); |
| |
| port = prettyprint_addr(&serv->addr, daemon->namebuff); |
| add_dict_entry(&dict_array, "address", daemon->namebuff); |
| |
| add_dict_int(&dict_array, "port", port); |
| add_dict_int(&dict_array, "queries", serv->queries); |
| add_dict_int(&dict_array, "failed_queries", serv->failed_queries); |
| add_dict_int(&dict_array, "nxdomain", serv->nxdomain_replies); |
| add_dict_int(&dict_array, "retries", serv->retrys); |
| add_dict_int(&dict_array, "latency", sigma_latency/count_latency); |
| |
| dbus_message_iter_close_container(&server_array, &dict_array); |
| } |
| |
| dbus_message_iter_close_container(&server_iter, &server_array); |
| |
| return reply; |
| } |
| |
| DBusHandlerResult message_handler(DBusConnection *connection, |
| DBusMessage *message, |
| void *user_data) |
| { |
| char *method = (char *)dbus_message_get_member(message); |
| DBusMessage *reply = NULL; |
| int clear_cache = 0, new_servers = 0; |
| |
| if (dbus_message_is_method_call(message, DBUS_INTERFACE_INTROSPECTABLE, "Introspect")) |
| { |
| /* string length: "%s" provides space for termination zero */ |
| if (!introspection_xml && |
| (introspection_xml = whine_malloc(strlen(introspection_xml_template) + strlen(daemon->dbus_name)))) |
| sprintf(introspection_xml, introspection_xml_template, daemon->dbus_name); |
| |
| if (introspection_xml) |
| { |
| reply = dbus_message_new_method_return(message); |
| dbus_message_append_args(reply, DBUS_TYPE_STRING, &introspection_xml, DBUS_TYPE_INVALID); |
| } |
| } |
| else if (strcmp(method, "GetVersion") == 0) |
| { |
| char *v = VERSION; |
| reply = dbus_message_new_method_return(message); |
| |
| dbus_message_append_args(reply, DBUS_TYPE_STRING, &v, DBUS_TYPE_INVALID); |
| } |
| #ifdef HAVE_LOOP |
| else if (strcmp(method, "GetLoopServers") == 0) |
| { |
| reply = dbus_reply_server_loop(message); |
| } |
| #endif |
| else if (strcmp(method, "SetServers") == 0) |
| { |
| reply = dbus_read_servers(message); |
| new_servers = 1; |
| } |
| else if (strcmp(method, "SetServersEx") == 0) |
| { |
| reply = dbus_read_servers_ex(message, 0); |
| new_servers = 1; |
| } |
| else if (strcmp(method, "SetDomainServers") == 0) |
| { |
| reply = dbus_read_servers_ex(message, 1); |
| new_servers = 1; |
| } |
| else if (strcmp(method, "SetFilterWin2KOption") == 0) |
| { |
| reply = dbus_set_bool(message, OPT_FILTER, "filterwin2k"); |
| } |
| else if (strcmp(method, "SetFilterA") == 0) |
| { |
| static int done = 0; |
| static struct rrlist list = { T_A, NULL }; |
| |
| if (!done) |
| { |
| list.next = daemon->filter_rr; |
| daemon->filter_rr = &list; |
| } |
| } |
| else if (strcmp(method, "SetFilterAAAA") == 0) |
| { |
| static int done = 0; |
| static struct rrlist list = { T_AAAA, NULL }; |
| |
| if (!done) |
| { |
| list.next = daemon->filter_rr; |
| daemon->filter_rr = &list; |
| } |
| } |
| else if (strcmp(method, "SetLocaliseQueriesOption") == 0) |
| { |
| reply = dbus_set_bool(message, OPT_LOCALISE, "localise-queries"); |
| } |
| else if (strcmp(method, "SetBogusPrivOption") == 0) |
| { |
| reply = dbus_set_bool(message, OPT_BOGUSPRIV, "bogus-priv"); |
| } |
| #ifdef HAVE_DHCP |
| else if (strcmp(method, "AddDhcpLease") == 0) |
| { |
| reply = dbus_add_lease(message); |
| } |
| else if (strcmp(method, "DeleteDhcpLease") == 0) |
| { |
| reply = dbus_del_lease(message); |
| } |
| #endif |
| else if (strcmp(method, "GetMetrics") == 0) |
| { |
| reply = dbus_get_metrics(message); |
| } |
| else if (strcmp(method, "GetServerMetrics") == 0) |
| { |
| reply = dbus_get_server_metrics(message); |
| } |
| else if (strcmp(method, "ClearMetrics") == 0) |
| { |
| clear_metrics(); |
| } |
| else if (strcmp(method, "ClearCache") == 0) |
| clear_cache = 1; |
| else |
| return (DBUS_HANDLER_RESULT_NOT_YET_HANDLED); |
| |
| if (new_servers) |
| { |
| my_syslog(LOG_INFO, _("setting upstream servers from DBus")); |
| check_servers(0); |
| if (option_bool(OPT_RELOAD)) |
| clear_cache = 1; |
| } |
| |
| if (clear_cache) |
| clear_cache_and_reload(dnsmasq_time()); |
| |
| (void)user_data; /* no warning */ |
| |
| /* If no reply or no error, return nothing */ |
| if (!reply) |
| reply = dbus_message_new_method_return(message); |
| |
| if (reply) |
| { |
| dbus_connection_send (connection, reply, NULL); |
| dbus_message_unref (reply); |
| } |
| |
| return (DBUS_HANDLER_RESULT_HANDLED); |
| } |
| |
| |
| /* returns NULL or error message, may fail silently if dbus daemon not yet up. */ |
| char *dbus_init(void) |
| { |
| DBusConnection *connection = NULL; |
| DBusObjectPathVTable dnsmasq_vtable = {NULL, &message_handler, NULL, NULL, NULL, NULL }; |
| DBusError dbus_error; |
| DBusMessage *message; |
| |
| dbus_error_init (&dbus_error); |
| if (!(connection = dbus_bus_get (DBUS_BUS_SYSTEM, &dbus_error))) |
| { |
| dbus_error_free(&dbus_error); |
| return NULL; |
| } |
| |
| dbus_connection_set_exit_on_disconnect(connection, FALSE); |
| dbus_connection_set_watch_functions(connection, add_watch, remove_watch, |
| NULL, NULL, NULL); |
| dbus_error_init (&dbus_error); |
| dbus_bus_request_name (connection, daemon->dbus_name, 0, &dbus_error); |
| if (dbus_error_is_set (&dbus_error)) |
| return (char *)dbus_error.message; |
| |
| if (!dbus_connection_register_object_path(connection, DNSMASQ_PATH, |
| &dnsmasq_vtable, NULL)) |
| return _("could not register a DBus message handler"); |
| |
| daemon->dbus = connection; |
| |
| if ((message = dbus_message_new_signal(DNSMASQ_PATH, daemon->dbus_name, "Up"))) |
| { |
| dbus_connection_send(connection, message, NULL); |
| dbus_message_unref(message); |
| } |
| |
| return NULL; |
| } |
| |
| |
| void set_dbus_listeners(void) |
| { |
| struct watch *w; |
| |
| for (w = daemon->watches; w; w = w->next) |
| if (dbus_watch_get_enabled(w->watch)) |
| { |
| unsigned int flags = dbus_watch_get_flags(w->watch); |
| int fd = dbus_watch_get_unix_fd(w->watch); |
| int poll_flags = POLLERR; |
| |
| if (flags & DBUS_WATCH_READABLE) |
| poll_flags |= POLLIN; |
| if (flags & DBUS_WATCH_WRITABLE) |
| poll_flags |= POLLOUT; |
| |
| poll_listen(fd, poll_flags); |
| } |
| } |
| |
| static int check_dbus_watches() |
| { |
| struct watch *w; |
| |
| watches_modified = 0; |
| for (w = daemon->watches; w; w = w->next) |
| if (dbus_watch_get_enabled(w->watch)) |
| { |
| unsigned int flags = 0; |
| int fd = dbus_watch_get_unix_fd(w->watch); |
| int poll_flags = poll_check(fd, POLLIN|POLLOUT|POLLERR); |
| |
| if ((poll_flags & POLLIN) != 0) |
| flags |= DBUS_WATCH_READABLE; |
| if ((poll_flags & POLLOUT) != 0) |
| flags |= DBUS_WATCH_WRITABLE; |
| if ((poll_flags & POLLERR) != 0) |
| flags |= DBUS_WATCH_ERROR; |
| |
| if (flags != 0) |
| { |
| dbus_watch_handle(w->watch, flags); |
| if (watches_modified) |
| return 0; |
| } |
| } |
| |
| return 1; |
| } |
| |
| void check_dbus_listeners() |
| { |
| DBusConnection *connection = (DBusConnection *)daemon->dbus; |
| |
| while (!check_dbus_watches()) ; |
| |
| if (connection) |
| { |
| dbus_connection_ref (connection); |
| while (dbus_connection_dispatch (connection) == DBUS_DISPATCH_DATA_REMAINS); |
| dbus_connection_unref (connection); |
| } |
| } |
| |
| #ifdef HAVE_DHCP |
| void emit_dbus_signal(int action, struct dhcp_lease *lease, char *hostname) |
| { |
| DBusConnection *connection = (DBusConnection *)daemon->dbus; |
| DBusMessage* message = NULL; |
| DBusMessageIter args; |
| char *action_str, *mac = daemon->namebuff; |
| unsigned char *p; |
| int i; |
| |
| if (!connection) |
| return; |
| |
| if (!hostname) |
| hostname = ""; |
| |
| #ifdef HAVE_DHCP6 |
| if (lease->flags & (LEASE_TA | LEASE_NA)) |
| { |
| print_mac(mac, lease->clid, lease->clid_len); |
| inet_ntop(AF_INET6, &lease->addr6, daemon->addrbuff, ADDRSTRLEN); |
| } |
| else |
| #endif |
| { |
| p = extended_hwaddr(lease->hwaddr_type, lease->hwaddr_len, |
| lease->hwaddr, lease->clid_len, lease->clid, &i); |
| print_mac(mac, p, i); |
| inet_ntop(AF_INET, &lease->addr, daemon->addrbuff, ADDRSTRLEN); |
| } |
| |
| if (action == ACTION_DEL) |
| action_str = "DhcpLeaseDeleted"; |
| else if (action == ACTION_ADD) |
| action_str = "DhcpLeaseAdded"; |
| else if (action == ACTION_OLD) |
| action_str = "DhcpLeaseUpdated"; |
| else |
| return; |
| |
| if (!(message = dbus_message_new_signal(DNSMASQ_PATH, daemon->dbus_name, action_str))) |
| return; |
| |
| dbus_message_iter_init_append(message, &args); |
| |
| if (dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &daemon->addrbuff) && |
| dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &mac) && |
| dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &hostname)) |
| dbus_connection_send(connection, message, NULL); |
| |
| dbus_message_unref(message); |
| } |
| #endif |
| |
| #endif |