]> git.meshlink.io Git - catta/blob - avahi-daemon/static-hosts.c
Make d-bus version detection work for >= 1.0 (Closes: #71)
[catta] / avahi-daemon / static-hosts.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
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.
10  
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.
15  
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
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27 #include <errno.h>
28 #include <stdio.h>
29
30 #include <avahi-common/llist.h>
31 #include <avahi-common/malloc.h>
32 #include <avahi-common/error.h>
33 #include <avahi-core/log.h>
34 #include <avahi-core/publish.h>
35
36 #include "main.h"
37 #include "static-hosts.h"
38
39 typedef struct StaticHost StaticHost;
40
41 struct StaticHost {
42     AvahiSEntryGroup *group;
43
44     char *host, *ip;
45
46     AVAHI_LLIST_FIELDS(StaticHost, hosts);
47 };
48
49 static AVAHI_LLIST_HEAD(StaticHost, hosts) = NULL;
50
51 static void add_static_host_to_server(StaticHost *h);
52 static void remove_static_host_from_server(StaticHost *h);
53
54 static void entry_group_callback(AvahiServer *s, AVAHI_GCC_UNUSED AvahiSEntryGroup *eg, AvahiEntryGroupState state, void* userdata) {
55     StaticHost *h;
56
57     assert(s);
58     assert(eg);
59
60     h = userdata;
61
62     switch (state) {
63
64         case AVAHI_ENTRY_GROUP_COLLISION:
65             avahi_log_error("Host name conflict for \"%s\", not established.", h->host);
66             break;
67
68         case AVAHI_ENTRY_GROUP_ESTABLISHED:
69             avahi_log_notice ("Static host name \"%s\" successfully established.", h->host);
70             break;
71
72         case AVAHI_ENTRY_GROUP_FAILURE:
73             avahi_log_notice ("Failed to establish static host name \"%s\": %s.", h->host, avahi_strerror (avahi_server_errno (s)));
74             break;
75         
76         case AVAHI_ENTRY_GROUP_UNCOMMITED:
77         case AVAHI_ENTRY_GROUP_REGISTERING:
78             ;
79     }
80 }
81
82 static StaticHost *static_host_new(void) {
83     StaticHost *s;
84     
85     s = avahi_new(StaticHost, 1);
86
87     s->group = NULL;
88     s->host = NULL;
89     s->ip = NULL;
90
91     AVAHI_LLIST_PREPEND(StaticHost, hosts, hosts, s);
92
93     return s;
94 }
95
96 static void static_host_free(StaticHost *s) {
97     assert(s);
98
99     AVAHI_LLIST_REMOVE(StaticHost, hosts, hosts, s);
100
101     if (s->group)
102         avahi_s_entry_group_free (s->group);
103
104     avahi_free(s->host);
105     avahi_free(s->ip);
106     
107     avahi_free(s);
108 }
109
110 static void add_static_host_to_server(StaticHost *h)
111 {
112     AvahiAddress a;
113     int err;
114
115     if (!h->group)
116         if (!(h->group = avahi_s_entry_group_new (avahi_server, entry_group_callback, h))) {
117             avahi_log_error("avahi_s_entry_group_new() failed: %s", avahi_strerror(err));
118             return;
119         }
120
121     if (!avahi_address_parse (h->ip, AVAHI_PROTO_UNSPEC, &a)) {
122         avahi_log_error("Static host name %s: avahi_address_parse failed", h->host);
123         return;
124     }
125
126     if ((err = avahi_server_add_address(avahi_server, h->group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, h->host, &a))) {
127         avahi_log_error ("Static host name %s: avahi_server_add_address failure: %s", h->host, avahi_strerror(err));
128         return;
129     }
130
131     avahi_s_entry_group_commit (h->group);
132 }
133
134 static void remove_static_host_from_server(StaticHost *h)
135 {
136     if (h->group)
137         avahi_s_entry_group_reset (h->group);
138 }
139  
140 void static_hosts_add_to_server(void) {
141     StaticHost *h;
142
143     for (h = hosts; h; h = h->hosts_next) {
144         add_static_host_to_server(h);
145     }
146 }
147
148 void static_hosts_remove_from_server(void) {
149     StaticHost *h;
150
151     for (h = hosts; h; h = h->hosts_next) {
152         remove_static_host_from_server(h);
153     }
154 }
155
156 void static_hosts_load(int in_chroot) {
157     FILE *f;
158     unsigned int line = 0;
159     const char *filename = (in_chroot ? "/hosts" : AVAHI_CONFIG_DIR "/hosts");
160
161     if (!(f = fopen(filename, "r")))
162     {
163         if (errno != ENOENT)
164             avahi_log_error ("Failed to open static hosts file: %s", strerror (errno));
165         return;
166     }
167
168     while (!feof(f)) {
169         unsigned int len;
170         char ln[256], *s;
171         char *host, *ip;
172         StaticHost *h;
173
174         if (!fgets(ln, sizeof (ln), f))
175             break;
176
177         line++;
178
179         /* Find the start of the line, ignore whitespace */
180         s = ln + strspn(ln, " \t");
181         /* Set the end of the string to NULL */
182         s[strcspn(s, "#\r\n")] = 0;
183
184         /* Ignore blank lines */
185         if (*s == 0)
186             continue;
187
188         /* Read the first string (ip) up to the next whitespace */
189         len = strcspn(s, " \t");
190         ip = avahi_strndup(s, len);
191
192         /* Skip past it */
193         s += len;
194
195         /* Find the next token */
196         s += strspn(s, " \t");
197         len = strcspn(s, " \t");
198         host = avahi_strndup(s, len);
199
200         if (*host == 0)
201         {
202             avahi_log_error("%s:%d: Error, unexpected end of line!", filename, line);
203             avahi_free(host);
204             avahi_free(ip);
205             break;
206         }
207
208         /* Skip over the host */
209         s += len;
210
211         /* Skip past any more spaces */
212         s += strspn(s, " \t");
213         
214         /* Anything left? */
215         if (*s != 0) {
216             avahi_log_error ("%s:%d: Junk on the end of the line!", filename, line);
217             avahi_free(host);
218             avahi_free(ip);
219             break;
220         }
221
222         h = static_host_new();
223         h->host = host;
224         h->ip = ip;
225     }
226
227     fclose(f);
228 }
229
230 void static_hosts_free_all (void)
231 {
232     while(hosts)
233         static_host_free(hosts);
234 }