4 This file is part of avahi.
6 avahi is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 avahi is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with avahi; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
37 #include <avahi-common/llist.h>
38 #include <avahi-core/log.h>
41 #include "static-services.h"
43 typedef struct StaticService StaticService;
44 typedef struct StaticServiceGroup StaticServiceGroup;
46 struct StaticService {
47 StaticServiceGroup *group;
54 AvahiStringList *txt_records;
56 AVAHI_LLIST_FIELDS(StaticService, services);
59 struct StaticServiceGroup {
63 gchar *name, *chosen_name;
64 gboolean replace_wildcards;
66 AvahiSEntryGroup *entry_group;
67 AVAHI_LLIST_HEAD(StaticService, services);
68 AVAHI_LLIST_FIELDS(StaticServiceGroup, groups);
71 static AVAHI_LLIST_HEAD(StaticServiceGroup, groups) = NULL;
73 static gchar *replacestr(const gchar *pattern, const gchar *a, const gchar *b) {
74 gchar *r = NULL, *e, *n;
76 while ((e = strstr(pattern, a))) {
79 k = g_strndup(pattern, e - pattern);
81 n = g_strconcat(r, k, b, NULL);
83 n = g_strconcat(k, b, NULL);
89 pattern = e + strlen(a);
93 return g_strdup(pattern);
95 n = g_strconcat(r, pattern, NULL);
101 static void add_static_service_group_to_server(StaticServiceGroup *g);
102 static void remove_static_service_group_from_server(StaticServiceGroup *g);
104 static StaticService *static_service_new(StaticServiceGroup *group) {
108 s = g_new(StaticService, 1);
111 s->type = s->host_name = s->domain_name = NULL;
114 s->txt_records = NULL;
116 AVAHI_LLIST_PREPEND(StaticService, services, group->services, s);
121 static StaticServiceGroup *static_service_group_new(gchar *filename) {
122 StaticServiceGroup *g;
125 g = g_new(StaticServiceGroup, 1);
126 g->filename = g_strdup(filename);
128 g->name = g->chosen_name = NULL;
129 g->replace_wildcards = FALSE;
130 g->entry_group = NULL;
132 AVAHI_LLIST_HEAD_INIT(StaticService, g->services);
133 AVAHI_LLIST_PREPEND(StaticServiceGroup, groups, groups, g);
138 static void static_service_free(StaticService *s) {
141 AVAHI_LLIST_REMOVE(StaticService, services, s->group->services, s);
144 g_free(s->host_name);
145 g_free(s->domain_name);
147 avahi_string_list_free(s->txt_records);
152 static void static_service_group_free(StaticServiceGroup *g) {
156 avahi_s_entry_group_free(g->entry_group);
159 static_service_free(g->services);
161 AVAHI_LLIST_REMOVE(StaticServiceGroup, groups, groups, g);
165 g_free(g->chosen_name);
169 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *eg, AvahiEntryGroupState state, gpointer userdata) {
170 StaticServiceGroup *g = userdata;
175 if (state == AVAHI_ENTRY_GROUP_COLLISION) {
178 remove_static_service_group_from_server(g);
180 n = avahi_alternative_service_name(g->chosen_name);
181 g_free(g->chosen_name);
184 avahi_log_notice("Service name conflict for \"%s\" (%s), retrying with \"%s\".", g->name, g->filename, g->chosen_name);
186 add_static_service_group_to_server(g);
187 } else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED)
188 avahi_log_info("Service \"%s\" (%s) successfully established.", g->chosen_name, g->filename);
191 static void add_static_service_group_to_server(StaticServiceGroup *g) {
197 g_free(g->chosen_name);
199 if (g->replace_wildcards)
200 g->chosen_name = replacestr(g->name, "%h", avahi_server_get_host_name(avahi_server));
202 g->chosen_name = g_strdup(g->name);
205 g->entry_group = avahi_s_entry_group_new(avahi_server, entry_group_callback, g);
207 g_assert(avahi_s_entry_group_is_empty(g->entry_group));
209 for (s = g->services; s; s = s->services_next) {
211 if (avahi_server_add_service_strlst(
215 g->chosen_name, s->type,
216 s->domain_name, s->host_name, s->port,
217 s->txt_records) < 0) {
218 avahi_log_error("Failed to add service '%s' of type '%s', ignoring service group (%s): %s",
219 g->chosen_name, s->type, g->filename,
220 avahi_strerror(avahi_server_errno(avahi_server)));
221 remove_static_service_group_from_server(g);
226 avahi_s_entry_group_commit(g->entry_group);
229 static void remove_static_service_group_from_server(StaticServiceGroup *g) {
233 avahi_s_entry_group_reset(g->entry_group);
238 XML_TAG_SERVICE_GROUP,
248 struct xml_userdata {
249 StaticServiceGroup *group;
250 StaticService *service;
251 xml_tag_name current_tag;
256 static void XMLCALL xml_start(void *data, const char *el, const char *attr[]) {
257 struct xml_userdata *u = data;
264 if (u->current_tag == XML_TAG_INVALID && strcmp(el, "service-group") == 0) {
269 u->current_tag = XML_TAG_SERVICE_GROUP;
270 } else if (u->current_tag == XML_TAG_SERVICE_GROUP && strcmp(el, "name") == 0) {
271 u->current_tag = XML_TAG_NAME;
274 if (strcmp(attr[0], "replace-wildcards") == 0)
275 u->group->replace_wildcards = strcmp(attr[1], "yes") == 0;
285 } else if (u->current_tag == XML_TAG_SERVICE_GROUP && strcmp(el, "service") == 0) {
289 g_assert(!u->service);
290 u->service = static_service_new(u->group);
292 u->current_tag = XML_TAG_SERVICE;
293 } else if (u->current_tag == XML_TAG_SERVICE && strcmp(el, "type") == 0) {
297 u->current_tag = XML_TAG_TYPE;
298 } else if (u->current_tag == XML_TAG_SERVICE && strcmp(el, "domain-name") == 0) {
302 u->current_tag = XML_TAG_DOMAIN_NAME;
303 } else if (u->current_tag == XML_TAG_SERVICE && strcmp(el, "host-name") == 0) {
307 u->current_tag = XML_TAG_HOST_NAME;
308 } else if (u->current_tag == XML_TAG_SERVICE && strcmp(el, "port") == 0) {
312 u->current_tag = XML_TAG_PORT;
313 } else if (u->current_tag == XML_TAG_SERVICE && strcmp(el, "txt-record") == 0) {
317 u->current_tag = XML_TAG_TXT_RECORD;
319 avahi_log_error("%s: parse failure: didn't expect element <%s>.", u->group->filename, el);
326 avahi_log_error("%s: parse failure: invalid attribute for element <%s>.", u->group->filename, el);
331 static void XMLCALL xml_end(void *data, const char *el) {
332 struct xml_userdata *u = data;
338 switch (u->current_tag) {
339 case XML_TAG_SERVICE_GROUP:
341 if (!u->group->name || !u->group->services) {
342 avahi_log_error("%s: parse failure: service group incomplete.", u->group->filename);
347 u->current_tag = XML_TAG_INVALID;
350 case XML_TAG_SERVICE:
352 if (!u->service->type) {
353 avahi_log_error("%s: parse failure: service incomplete.", u->group->filename);
359 u->current_tag = XML_TAG_SERVICE_GROUP;
363 u->current_tag = XML_TAG_SERVICE_GROUP;
368 g_assert(u->service);
370 p = u->buf ? atoi(u->buf) : 0;
372 if (p < 0 || p > 0xFFFF) {
373 avahi_log_error("%s: parse failure: invalid port specification \"%s\".", u->group->filename, u->buf);
378 u->service->port = (guint16) p;
380 u->current_tag = XML_TAG_SERVICE;
384 case XML_TAG_TXT_RECORD: {
385 g_assert(u->service);
387 u->service->txt_records = avahi_string_list_add(u->service->txt_records, u->buf ? u->buf : "");
388 u->current_tag = XML_TAG_SERVICE;
393 case XML_TAG_DOMAIN_NAME:
394 case XML_TAG_HOST_NAME:
395 u->current_tag = XML_TAG_SERVICE;
398 case XML_TAG_INVALID:
406 static gchar *append_cdata(gchar *t, const gchar *n, int length) {
412 k = g_strndup(n, length);
415 r = g_strconcat(t, k, NULL);
424 static void XMLCALL xml_cdata(void *data, const XML_Char *s, int len) {
425 struct xml_userdata *u = data;
431 switch (u->current_tag) {
433 u->group->name = append_cdata(u->group->name, s, len);
437 g_assert(u->service);
438 u->service->type = append_cdata(u->service->type, s, len);
441 case XML_TAG_DOMAIN_NAME:
442 g_assert(u->service);
443 u->service->domain_name = append_cdata(u->service->domain_name, s, len);
446 case XML_TAG_HOST_NAME:
447 g_assert(u->service);
448 u->service->host_name = append_cdata(u->service->host_name, s, len);
452 case XML_TAG_TXT_RECORD:
453 u->buf = append_cdata(u->buf, s, len);
456 case XML_TAG_SERVICE_GROUP:
457 case XML_TAG_SERVICE:
458 case XML_TAG_INVALID:
463 static gint static_service_group_load(StaticServiceGroup *g) {
464 XML_Parser parser = NULL;
466 struct xml_userdata u;
476 u.current_tag = XML_TAG_INVALID;
479 /* Cleanup old data in this service group, if available */
480 remove_static_service_group_from_server(g);
482 static_service_free(g->services);
485 g_free(g->chosen_name);
486 g->name = g->chosen_name = NULL;
487 g->replace_wildcards = FALSE;
489 if (!(parser = XML_ParserCreate(NULL))) {
490 avahi_log_error("XML_ParserCreate() failed.");
494 if ((fd = open(g->filename, O_RDONLY)) < 0) {
495 avahi_log_error("open(\"%s\", O_RDONLY): %s", g->filename, strerror(errno));
499 if (fstat(fd, &st) < 0) {
500 avahi_log_error("fstat(): %s", strerror(errno));
504 g->mtime = st.st_mtime;
506 XML_SetUserData(parser, &u);
508 XML_SetElementHandler(parser, xml_start, xml_end);
509 XML_SetCharacterDataHandler(parser, xml_cdata);
514 #define BUFSIZE (10*1024)
516 if (!(buffer = XML_GetBuffer(parser, BUFSIZE))) {
517 avahi_log_error("XML_GetBuffer() failed.");
521 if ((n = read(fd, buffer, BUFSIZE)) < 0) {
522 avahi_log_error("read(): %s\n", strerror(errno));
526 if (!XML_ParseBuffer(parser, n, n == 0)) {
527 avahi_log_error("XML_ParseBuffer() failed at line %d: %s.\n", XML_GetCurrentLineNumber(parser), XML_ErrorString(XML_GetErrorCode(parser)));
542 XML_ParserFree(parser);
549 static void load_file(gchar *n) {
550 StaticServiceGroup *g;
553 for (g = groups; g; g = g->groups_next)
554 if (strcmp(g->filename, n) == 0)
557 avahi_log_info("Loading service file %s", n);
559 g = static_service_group_new(n);
560 if (static_service_group_load(g) < 0) {
561 avahi_log_error("Failed to load service group file %s, ignoring.", g->filename);
562 static_service_group_free(g);
566 void static_service_load(void) {
567 StaticServiceGroup *g, *n;
571 for (g = groups; g; g = n) {
576 if (stat(g->filename, &st) < 0) {
579 avahi_log_info("Service group file %s vanished, removing services.", g->filename);
581 avahi_log_warn("Failed to stat() file %s, ignoring: %s", g->filename, strerror(errno));
583 static_service_group_free(g);
584 } else if (st.st_mtime != g->mtime) {
585 avahi_log_info("Service group file %s changed, reloading.", g->filename);
587 if (static_service_group_load(g) < 0) {
588 avahi_log_warn("Failed to load service group file %s, removing service.", g->filename);
589 static_service_group_free(g);
594 memset(&globbuf, 0, sizeof(globbuf));
595 if (glob(AVAHI_SERVICE_DIR "/*.service", GLOB_ERR, NULL, &globbuf) != 0)
596 avahi_log_error("Failed to read service directory.");
598 for (p = globbuf.gl_pathv; *p; p++)
605 void static_service_free_all(void) {
608 static_service_group_free(groups);
611 void static_service_add_to_server(void) {
612 StaticServiceGroup *g;
614 for (g = groups; g; g = g->groups_next)
615 add_static_service_group_to_server(g);
618 void static_service_remove_from_server(void) {
619 StaticServiceGroup *g;
621 for (g = groups; g; g = g->groups_next)
622 remove_static_service_group_from_server(g);