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
29 #include <avahi-common/timeval.h>
30 #include <avahi-common/malloc.h>
35 #define AVAHI_MAX_CACHE_ENTRIES 200
37 static void remove_entry(AvahiCache *c, AvahiCacheEntry *e) {
43 /* avahi_log_debug("removing from cache: %p %p", c, e); */
45 /* Remove from hash table */
46 t = avahi_hashmap_lookup(c->hashmap, e->record->key);
47 AVAHI_LLIST_REMOVE(AvahiCacheEntry, by_key, t, e);
49 avahi_hashmap_replace(c->hashmap, t->record->key, t);
51 avahi_hashmap_remove(c->hashmap, e->record->key);
53 /* Remove from linked list */
54 AVAHI_LLIST_REMOVE(AvahiCacheEntry, entry, c->entries, e);
57 avahi_time_event_free(e->time_event);
59 avahi_browser_notify(c->server, c->interface, e->record, AVAHI_BROWSER_REMOVE);
61 avahi_record_unref(e->record);
65 assert(c->n_entries-- >= 1);
68 AvahiCache *avahi_cache_new(AvahiServer *server, AvahiInterface *iface) {
72 if (!(c = avahi_new(AvahiCache, 1))) {
73 avahi_log_error(__FILE__": Out of memory.");
74 return NULL; /* OOM */
80 if (!(c->hashmap = avahi_hashmap_new((AvahiHashFunc) avahi_key_hash, (AvahiEqualFunc) avahi_key_equal, NULL, NULL))) {
81 avahi_log_error(__FILE__": Out of memory.");
83 return NULL; /* OOM */
86 AVAHI_LLIST_HEAD_INIT(AvahiCacheEntry, c->entries);
92 void avahi_cache_free(AvahiCache *c) {
96 remove_entry(c, c->entries);
97 assert(c->n_entries == 0);
99 avahi_hashmap_free(c->hashmap);
104 AvahiCacheEntry *avahi_cache_lookup_key(AvahiCache *c, AvahiKey *k) {
108 assert(!avahi_key_is_pattern(k));
110 return avahi_hashmap_lookup(c->hashmap, k);
113 void* avahi_cache_walk(AvahiCache *c, AvahiKey *pattern, AvahiCacheWalkCallback cb, void* userdata) {
120 if (avahi_key_is_pattern(pattern)) {
121 AvahiCacheEntry *e, *n;
123 for (e = c->entries; e; e = n) {
126 if (avahi_key_pattern_match(pattern, e->record->key))
127 if ((ret = cb(c, pattern, e, userdata)))
132 AvahiCacheEntry *e, *n;
134 for (e = avahi_cache_lookup_key(c, pattern); e; e = n) {
137 if ((ret = cb(c, pattern, e, userdata)))
145 static void* lookup_record_callback(AvahiCache *c, AvahiKey *pattern, AvahiCacheEntry *e, void *userdata) {
150 if (avahi_record_equal_no_ttl(e->record, userdata))
156 AvahiCacheEntry *avahi_cache_lookup_record(AvahiCache *c, AvahiRecord *r) {
160 return avahi_cache_walk(c, r->key, lookup_record_callback, r);
163 static void next_expiry(AvahiCache *c, AvahiCacheEntry *e, unsigned percent);
165 static void elapse_func(AvahiTimeEvent *t, void *userdata) {
166 AvahiCacheEntry *e = userdata;
172 /* txt = avahi_record_to_string(e->record); */
174 if (e->state == AVAHI_CACHE_FINAL) {
175 remove_entry(e->cache, e);
176 /* avahi_log_debug("Removing entry from cache due to expiration (%s)", txt); */
178 unsigned percent = 0;
181 case AVAHI_CACHE_VALID:
182 e->state = AVAHI_CACHE_EXPIRY1;
186 case AVAHI_CACHE_EXPIRY1:
187 e->state = AVAHI_CACHE_EXPIRY2;
190 case AVAHI_CACHE_EXPIRY2:
191 e->state = AVAHI_CACHE_EXPIRY3;
195 case AVAHI_CACHE_EXPIRY3:
196 e->state = AVAHI_CACHE_FINAL;
206 /* Request a cache update, if we are subscribed to this entry */
207 if (avahi_is_subscribed(e->cache->server, e->cache->interface, e->record->key)) {
208 /* avahi_log_debug("Requesting cache entry update at %i%% for %s.", percent, txt); */
209 avahi_interface_post_query(e->cache->interface, e->record->key, 1);
212 /* Check again later */
213 next_expiry(e->cache, e, percent);
216 /* avahi_free(txt); */
219 static void update_time_event(AvahiCache *c, AvahiCacheEntry *e) {
224 avahi_time_event_update(e->time_event, &e->expiry);
226 e->time_event = avahi_time_event_new(c->server->time_event_queue, &e->expiry, elapse_func, e);
229 static void next_expiry(AvahiCache *c, AvahiCacheEntry *e, unsigned percent) {
230 AvahiUsec usec, left, right;
234 assert(percent > 0 && percent <= 100);
236 usec = (AvahiUsec) e->record->ttl * 10000;
238 left = usec * percent;
239 right = usec * (percent+2); /* 2% jitter */
241 usec = left + (AvahiUsec) ((double) (right-left) * rand() / (RAND_MAX+1.0));
243 e->expiry = e->timestamp;
244 avahi_timeval_add(&e->expiry, usec);
246 /* g_message("wake up in +%lu seconds", e->expiry.tv_sec - e->timestamp.tv_sec); */
248 update_time_event(c, e);
251 static void expire_in_one_second(AvahiCache *c, AvahiCacheEntry *e) {
255 e->state = AVAHI_CACHE_FINAL;
256 gettimeofday(&e->expiry, NULL);
257 avahi_timeval_add(&e->expiry, 1000000); /* 1s */
258 update_time_event(c, e);
261 void avahi_cache_update(AvahiCache *c, AvahiRecord *r, int cache_flush, const AvahiAddress *a) {
265 assert(r && r->ref >= 1);
267 /* txt = avahi_record_to_string(r); */
270 /* This is a goodbye request */
274 if ((e = avahi_cache_lookup_record(c, r)))
275 expire_in_one_second(c, e);
278 AvahiCacheEntry *e = NULL, *first;
281 gettimeofday(&now, NULL);
283 /* This is an update request */
285 if ((first = avahi_cache_lookup_key(c, r->key))) {
289 /* For unique entries drop all entries older than one second */
290 for (e = first; e; e = e->by_key_next) {
293 t = avahi_timeval_diff(&now, &e->timestamp);
296 expire_in_one_second(c, e);
300 /* Look for exactly the same entry */
301 for (e = first; e; e = e->by_key_next)
302 if (avahi_record_equal_no_ttl(e->record, r))
308 /* avahi_log_debug("found matching cache entry"); */
310 /* We need to update the hash table key if we replace the
312 if (e->by_key_prev == NULL)
313 avahi_hashmap_replace(c->hashmap, r->key, e);
315 /* Update the record */
316 avahi_record_unref(e->record);
317 e->record = avahi_record_ref(r);
319 /* avahi_log_debug("cache: updating %s", txt); */
322 /* No entry found, therefore we create a new one */
324 /* avahi_log_debug("cache: couldn't find matching cache entry for %s", txt); */
326 if (c->n_entries >= AVAHI_MAX_CACHE_ENTRIES)
329 if (!(e = avahi_new(AvahiCacheEntry, 1))) {
330 avahi_log_error(__FILE__": Out of memory");
335 e->time_event = NULL;
336 e->record = avahi_record_ref(r);
338 /* Append to hash table */
339 AVAHI_LLIST_PREPEND(AvahiCacheEntry, by_key, first, e);
340 avahi_hashmap_replace(c->hashmap, e->record->key, first);
342 /* Append to linked list */
343 AVAHI_LLIST_PREPEND(AvahiCacheEntry, entry, c->entries, e);
347 /* Notify subscribers */
348 avahi_browser_notify(c->server, c->interface, e->record, AVAHI_BROWSER_NEW);
353 next_expiry(c, e, 80);
354 e->state = AVAHI_CACHE_VALID;
355 e->cache_flush = cache_flush;
358 /* avahi_free(txt); */
362 AvahiDumpCallback callback;
366 static void dump_callback(void* key, void* data, void* userdata) {
367 AvahiCacheEntry *e = data;
369 struct dump_data *dump_data = userdata;
375 for (; e; e = e->by_key_next) {
378 if (!(t = avahi_record_to_string(e->record)))
381 dump_data->callback(t, dump_data->userdata);
386 int avahi_cache_dump(AvahiCache *c, AvahiDumpCallback callback, void* userdata) {
387 struct dump_data data;
392 callback(";;; CACHE DUMP FOLLOWS ;;;", userdata);
394 data.callback = callback;
395 data.userdata = userdata;
397 avahi_hashmap_foreach(c->hashmap, dump_callback, &data);
402 int avahi_cache_entry_half_ttl(AvahiCache *c, AvahiCacheEntry *e) {
409 gettimeofday(&now, NULL);
411 age = (unsigned) (avahi_timeval_diff(&now, &e->timestamp)/1000000);
413 /* avahi_log_debug("age: %lli, ttl/2: %u", age, e->record->ttl); */
415 return age >= e->record->ttl/2;
418 void avahi_cache_flush(AvahiCache *c) {
422 remove_entry(c, c->entries);