split the service_load() function into 2. this allows us to reuse the parsing
[project/mdnsd.git] / service.c
index 6b885de..ab6227a 100644 (file)
--- a/service.c
+++ b/service.c
 #include "service.h"
 #include "util.h"
 #include "interface.h"
+#include "announce.h"
 
 enum {
+       SERVICE_SERVICE,
        SERVICE_PORT,
        SERVICE_TXT,
        __SERVICE_MAX,
@@ -45,8 +47,8 @@ struct service {
 
        time_t t;
 
+       const char *id;
        const char *service;
-       const char *daemon;
        const uint8_t *txt;
        int txt_len;
        int port;
@@ -54,6 +56,7 @@ struct service {
 };
 
 static const struct blobmsg_policy service_policy[__SERVICE_MAX] = {
+       [SERVICE_SERVICE] = { .name = "service", .type = BLOBMSG_TYPE_STRING },
        [SERVICE_PORT] = { .name = "port", .type = BLOBMSG_TYPE_INT32 },
        [SERVICE_TXT] = { .name = "txt", .type = BLOBMSG_TYPE_ARRAY },
 };
@@ -66,6 +69,7 @@ static struct blob_buf b;
 static VLIST_TREE(services, avl_strcmp, service_update, false, false);
 static char *sdudp =  "_services._dns-sd._udp.local";
 static char *sdtcp =  "_services._dns-sd._tcp.local";
+static int service_init_announce;
 
 static const char *
 service_name(const char *domain)
@@ -78,18 +82,18 @@ service_name(const char *domain)
 }
 
 static void
-service_add_ptr(const char *host)
+service_add_ptr(const char *host, int ttl)
 {
        int len = dn_comp(host, mdns_buf, sizeof(mdns_buf), NULL, NULL);
 
        if (len < 1)
                return;
 
-       dns_add_answer(TYPE_PTR, mdns_buf, len);
+       dns_add_answer(TYPE_PTR, mdns_buf, len, ttl);
 }
 
 static void
-service_add_srv(struct service *s)
+service_add_srv(struct service *s, int ttl)
 {
        struct dns_srv_data *sd = (struct dns_srv_data *) mdns_buf;
        int len = sizeof(*sd);
@@ -99,7 +103,7 @@ service_add_srv(struct service *s)
                return;
 
        sd->port = cpu_to_be16(s->port);
-       dns_add_answer(TYPE_SRV, mdns_buf, len);
+       dns_add_answer(TYPE_SRV, mdns_buf, len, ttl);
 }
 
 #define TOUT_LOOKUP    60
@@ -118,12 +122,11 @@ service_timeout(struct service *s)
 }
 
 void
-service_reply_a(struct interface *iface, int type)
+service_reply_a(struct interface *iface, int type, int ttl)
 {
        struct ifaddrs *ifap, *ifa;
        struct sockaddr_in *sa;
        struct sockaddr_in6 *sa6;
-       char *addr;
 
        getifaddrs(&ifap);
 
@@ -133,19 +136,13 @@ service_reply_a(struct interface *iface, int type)
                        continue;
                if (ifa->ifa_addr->sa_family==AF_INET) {
                        sa = (struct sockaddr_in *) ifa->ifa_addr;
-                       addr = inet_ntoa(sa->sin_addr);
-                       printf("Interface: %s\tAddress4: %s\n", ifa->ifa_name, addr);
-                       dns_add_answer(TYPE_A, (uint8_t *) &sa->sin_addr, 4);
+                       dns_add_answer(TYPE_A, (uint8_t *) &sa->sin_addr, 4, ttl);
                }
                if (ifa->ifa_addr->sa_family==AF_INET6) {
                        uint8_t ll_prefix[] = {0xfe, 0x80 };
-                       char buf[64] = { 0 };
                        sa6 = (struct sockaddr_in6 *) ifa->ifa_addr;
-                       if (!memcmp(&sa6->sin6_addr, &ll_prefix, 2)) {
-                               if (inet_ntop(AF_INET6, &sa6->sin6_addr, buf, 64))
-                                       printf("Interface: %s\tAddress6: %s\n", ifa->ifa_name, buf);
-                               dns_add_answer(TYPE_AAAA, (uint8_t *) &sa6->sin6_addr, 16);
-                       }
+                       if (!memcmp(&sa6->sin6_addr, &ll_prefix, 2))
+                               dns_add_answer(TYPE_AAAA, (uint8_t *) &sa6->sin6_addr, 16, ttl);
                }
        }
        dns_send_answer(iface, mdns_hostname_local);
@@ -153,38 +150,43 @@ service_reply_a(struct interface *iface, int type)
        freeifaddrs(ifap);
 }
 
-void
-service_reply(struct interface *iface, const char *match)
+static void
+service_reply_single(struct interface *iface, struct service *s, const char *match, int ttl, int force)
 {
-       struct service *s;
+       const char *host = service_name(s->service);
+       char *service = strstr(host, "._");
 
-       vlist_for_each_element(&services, s, node) {
-               const char *host = service_name(s->service);
-               char *service = strstr(host, "._");
+       if (!force && (!s->active || !service || !service_timeout(s)))
+               return;
 
-               if (!s->active || !service || !service_timeout(s))
-                       continue;
+       service++;
 
-               service++;
+       if (match && strcmp(match, s->service))
+               return;
 
-               if (match && strcmp(match, s->service))
-                       continue;
+       dns_init_answer();
+       service_add_ptr(service_name(s->service), ttl);
+       dns_send_answer(iface, service);
 
-               dns_init_answer();
-               service_add_ptr(service_name(s->service));
-               dns_send_answer(iface, service);
+       dns_init_answer();
+       service_add_srv(s, ttl);
+       if (s->txt && s->txt_len)
+               dns_add_answer(TYPE_TXT, (uint8_t *) s->txt, s->txt_len, ttl);
+       dns_send_answer(iface, host);
+}
 
-               dns_init_answer();
-               service_add_srv(s);
-               if (s->txt && s->txt_len)
-                       dns_add_answer(TYPE_TXT, (uint8_t *) s->txt, s->txt_len);
-               dns_send_answer(iface, host);
-       }
+void
+service_reply(struct interface *iface, const char *match, int ttl)
+{
+       struct service *s;
+
+       vlist_for_each_element(&services, s, node)
+               service_reply_single(iface, s, match, ttl, 0);
 
        if (match)
                return;
 
-       service_reply_a(iface, TYPE_A);
+       service_reply_a(iface, TYPE_A, ttl);
 }
 
 void
@@ -205,12 +207,12 @@ service_announce_services(struct interface *iface, const char *service)
                        continue;
                s->t = 0;
                dns_init_answer();
-               service_add_ptr(s->service);
+               service_add_ptr(s->service, announce_ttl);
                if (tcp)
                        dns_send_answer(iface, sdtcp);
                else
                        dns_send_answer(iface, sdudp);
-               service_reply(iface, s->service);
+               service_reply(iface, s->service, announce_ttl);
        }
 }
 
@@ -225,60 +227,64 @@ static void
 service_update(struct vlist_tree *tree, struct vlist_node *node_new,
               struct vlist_node *node_old)
 {
+       struct interface *iface;
        struct service *s;
 
-       if (!node_old)
+       if (!node_old) {
+               s = container_of(node_new, struct service, node);
+               if (service_init_announce)
+                       vlist_for_each_element(&interfaces, iface, node) {
+                               s->t = 0;
+                               service_reply_single(iface, s, NULL, announce_ttl, 1);
+                       }
                return;
+       }
 
        s = container_of(node_old, struct service, node);
+       if (!node_new && service_init_announce)
+               vlist_for_each_element(&interfaces, iface, node)
+                       service_reply_single(iface, s, NULL, 0, 1);
        free(s);
 }
 
 static void
-service_load(char *path)
+service_load_blob(struct blob_attr *b)
 {
        struct blob_attr *txt, *cur, *_tb[__SERVICE_MAX];
-       int rem, i;
-       glob_t gl;
-
-       if (glob(path, GLOB_NOESCAPE | GLOB_MARK, NULL, &gl))
-               return;
-
-       for (i = 0; i < gl.gl_pathc; i++) {
-               blob_buf_init(&b, 0);
-
-               if (!blobmsg_add_json_from_file(&b, gl.gl_pathv[i]))
+       int rem;
+
+       blob_for_each_attr(cur, b, rem) {
+               struct service *s;
+               char *d_service, *d_id;
+               uint8_t *d_txt;
+               int rem2;
+               int txt_len = 0;
+
+               blobmsg_parse(service_policy, ARRAY_SIZE(service_policy),
+                       _tb, blobmsg_data(cur), blobmsg_data_len(cur));
+               if (!_tb[SERVICE_PORT] || !_tb[SERVICE_SERVICE])
                        continue;
-               blob_for_each_attr(cur, b.head, rem) {
-                       struct service *s;
-                       char *d_service, *d_daemon;
-                       uint8_t *d_txt;
-                       int rem2;
-                       int txt_len = 0;
-
-                       blobmsg_parse(service_policy, ARRAY_SIZE(service_policy),
-                               _tb, blobmsg_data(cur), blobmsg_data_len(cur));
-                       if (!_tb[SERVICE_PORT] || !_tb[SERVICE_TXT])
-                               continue;
 
+               if (_tb[SERVICE_SERVICE])
                        blobmsg_for_each_attr(txt, _tb[SERVICE_TXT], rem2)
                                txt_len += 1 + strlen(blobmsg_get_string(txt));
 
-                       s = calloc_a(sizeof(*s),
-                               &d_daemon, strlen(gl.gl_pathv[i]) + 1,
-                               &d_service, strlen(blobmsg_name(cur)) + 1,
-                               &d_txt, txt_len);
-                       if (!s)
-                               continue;
-
-                       s->port = blobmsg_get_u32(_tb[SERVICE_PORT]);
-                       s->service = strcpy(d_service, blobmsg_name(cur));
-                       s->daemon = strcpy(d_daemon, gl.gl_pathv[i]);
-                       s->active = 1;
-                       s->t = 0;
-                       s->txt_len = txt_len;
-                       s->txt = d_txt;
+               s = calloc_a(sizeof(*s),
+                       &d_id, strlen(blobmsg_name(cur)) + 1,
+                       &d_service, strlen(blobmsg_get_string(_tb[SERVICE_SERVICE])) + 1,
+                       &d_txt, txt_len);
+               if (!s)
+                       continue;
+
+               s->port = blobmsg_get_u32(_tb[SERVICE_PORT]);
+               s->id = strcpy(d_id, blobmsg_name(cur));
+               s->service = strcpy(d_service, blobmsg_get_string(_tb[SERVICE_SERVICE]));
+               s->active = 1;
+               s->t = 0;
+               s->txt_len = txt_len;
+               s->txt = d_txt;
 
+               if (_tb[SERVICE_SERVICE])
                        blobmsg_for_each_attr(txt, _tb[SERVICE_TXT], rem2) {
                                int len = strlen(blobmsg_get_string(txt));
                                if (!len)
@@ -291,14 +297,32 @@ service_load(char *path)
                                d_txt += len;
                        }
 
-                       vlist_add(&services, &s->node, s->service);
-               }
+               vlist_add(&services, &s->node, s->id);
+       }
+}
+
+static void
+service_load(char *path)
+{
+       glob_t gl;
+       int i;
+
+       if (glob(path, GLOB_NOESCAPE | GLOB_MARK, NULL, &gl))
+               return;
+
+       for (i = 0; i < gl.gl_pathc; i++) {
+               blob_buf_init(&b, 0);
+               if (blobmsg_add_json_from_file(&b, gl.gl_pathv[i]))
+                       service_load_blob(b.head);
        }
+       globfree(&gl);
 }
 
 void
-service_init(void)
+service_init(int announce)
 {
+       service_init_announce = announce;
+
        get_hostname();
 
        vlist_update(&services);