]> git.meshlink.io Git - catta/blob - server.c
add client part of probing
[catta] / server.c
1 #include <sys/socket.h>
2 #include <arpa/inet.h>
3 #include <string.h>
4 #include <sys/utsname.h>
5 #include <unistd.h>
6
7 #include "server.h"
8 #include "util.h"
9 #include "iface.h"
10 #include "socket.h"
11 #include "subscribe.h"
12
13 static void handle_query_key(flxServer *s, flxKey *k, flxInterface *i, const flxAddress *a) {
14     flxServerEntry *e;
15     gchar *txt;
16     
17     g_assert(s);
18     g_assert(k);
19     g_assert(i);
20     g_assert(a);
21
22     g_message("Handling query: %s", txt = flx_key_to_string(k));
23     g_free(txt);
24
25     flx_packet_scheduler_incoming_query(i->scheduler, k);
26
27     if (k->type == FLX_DNS_TYPE_ANY) {
28
29         /* Handle ANY query */
30         
31         for (e = s->entries; e; e = e->entry_next)
32             if (flx_key_pattern_match(k, e->record->key))
33                 if (flx_interface_match(i, e->interface, e->protocol) && flx_entry_established(s, e, i))
34                     flx_interface_post_response(i, a, e->record, e->flags & FLX_SERVER_ENTRY_UNIQUE, FALSE);
35     } else {
36
37         /* Handle all other queries */
38         
39         for (e = g_hash_table_lookup(s->rrset_by_key, k); e; e = e->by_key_next)
40             if (flx_interface_match(i, e->interface, e->protocol) && flx_entry_established(s, e, i))
41                 flx_interface_post_response(i, a, e->record, e->flags & FLX_SERVER_ENTRY_UNIQUE, FALSE);
42     }
43 }
44
45 static void handle_query(flxServer *s, flxDnsPacket *p, flxInterface *i, const flxAddress *a) {
46     guint n;
47     
48     g_assert(s);
49     g_assert(p);
50     g_assert(i);
51     g_assert(a);
52
53     for (n = flx_dns_packet_get_field(p, FLX_DNS_FIELD_QDCOUNT); n > 0; n --) {
54         flxKey *key;
55
56         if (!(key = flx_dns_packet_consume_key(p))) {
57             g_warning("Packet too short");
58             return;
59         }
60
61         handle_query_key(s, key, i, a);
62         flx_key_unref(key);
63     }
64
65     /* Known Answer Suppresion */
66     for (n = flx_dns_packet_get_field(p, FLX_DNS_FIELD_ANCOUNT); n > 0; n --) {
67         flxRecord *record;
68         gboolean unique = FALSE;
69
70         if (!(record = flx_dns_packet_consume_record(p, &unique))) {
71             g_warning("Packet too short (2)");
72             return;
73         }
74
75         flx_packet_scheduler_incoming_known_answer(i->scheduler, record, a);
76         flx_record_unref(record);
77     }
78 }
79
80 static void handle_response(flxServer *s, flxDnsPacket *p, flxInterface *i, const flxAddress *a) {
81     guint n;
82     
83     g_assert(s);
84     g_assert(p);
85     g_assert(i);
86     g_assert(a);
87     
88     for (n = flx_dns_packet_get_field(p, FLX_DNS_FIELD_ANCOUNT) +
89              flx_dns_packet_get_field(p, FLX_DNS_FIELD_ARCOUNT); n > 0; n--) {
90         flxRecord *record;
91         gboolean cache_flush = FALSE;
92         gchar *txt;
93         
94         if (!(record = flx_dns_packet_consume_record(p, &cache_flush))) {
95             g_warning("Packet too short (3)");
96             return;
97         }
98
99         if (record->key->type == FLX_DNS_TYPE_ANY)
100             continue;
101         
102         g_message("Handling response: %s", txt = flx_record_to_string(record));
103         g_free(txt);
104         
105         flx_cache_update(i->cache, record, cache_flush, a);
106         
107         flx_packet_scheduler_incoming_response(i->scheduler, record);
108         flx_record_unref(record);
109     }
110 }
111
112 static void dispatch_packet(flxServer *s, flxDnsPacket *p, struct sockaddr *sa, gint iface, gint ttl) {
113     flxInterface *i;
114     flxAddress a;
115     
116     g_assert(s);
117     g_assert(p);
118     g_assert(sa);
119     g_assert(iface > 0);
120
121     g_message("new packet recieved.");
122
123     if (!(i = flx_interface_monitor_get_interface(s->monitor, iface, sa->sa_family))) {
124         g_warning("Recieved packet from invalid interface.");
125         return;
126     }
127
128     if (ttl != 255) {
129         g_warning("Recieved packet with invalid TTL on interface '%s.%i'.", i->hardware->name, i->protocol);
130         return;
131     }
132
133     if (sa->sa_family == AF_INET6) {
134         static const unsigned char ipv4_in_ipv6[] = {
135             0x00, 0x00, 0x00, 0x00,
136             0x00, 0x00, 0x00, 0x00,
137             0xFF, 0xFF, 0xFF, 0xFF };
138
139         if (memcmp(((struct sockaddr_in6*) sa)->sin6_addr.s6_addr, ipv4_in_ipv6, sizeof(ipv4_in_ipv6)) == 0) {
140
141             /* This is an IPv4 address encapsulated in IPv6, so let's ignore it. */
142             return;
143         }
144     }
145
146     if (flx_dns_packet_check_valid(p) < 0) {
147         g_warning("Recieved invalid packet.");
148         return;
149     }
150
151     flx_address_from_sockaddr(sa, &a);
152
153     if (flx_dns_packet_is_query(p)) {
154
155         if (flx_dns_packet_get_field(p, FLX_DNS_FIELD_QDCOUNT) == 0 ||
156             flx_dns_packet_get_field(p, FLX_DNS_FIELD_ARCOUNT) != 0) {
157             g_warning("Invalid query packet.");
158             return;
159         }
160                 
161         handle_query(s, p, i, &a);    
162         g_message("Handled query");
163     } else {
164         if (flx_dns_packet_get_field(p, FLX_DNS_FIELD_QDCOUNT) != 0 ||
165             flx_dns_packet_get_field(p, FLX_DNS_FIELD_ANCOUNT) == 0 ||
166             flx_dns_packet_get_field(p, FLX_DNS_FIELD_NSCOUNT) != 0) {
167             g_warning("Invalid response packet.");
168             return;
169         }
170
171         handle_response(s, p, i, &a);
172         g_message("Handled response");
173     }
174 }
175
176 static gboolean work(flxServer *s) {
177     struct sockaddr_in6 sa6;
178     struct sockaddr_in sa;
179     flxDnsPacket *p;
180     gint iface = -1;
181     guint8 ttl;
182         
183     g_assert(s);
184
185     if (s->pollfd_ipv4.revents & G_IO_IN) {
186         if ((p = flx_recv_dns_packet_ipv4(s->fd_ipv4, &sa, &iface, &ttl))) {
187             dispatch_packet(s, p, (struct sockaddr*) &sa, iface, ttl);
188             flx_dns_packet_free(p);
189         }
190     }
191
192     if (s->pollfd_ipv6.revents & G_IO_IN) {
193         if ((p = flx_recv_dns_packet_ipv6(s->fd_ipv6, &sa6, &iface, &ttl))) {
194             dispatch_packet(s, p, (struct sockaddr*) &sa6, iface, ttl);
195             flx_dns_packet_free(p);
196         }
197     }
198
199     return TRUE;
200 }
201
202 static gboolean prepare_func(GSource *source, gint *timeout) {
203     g_assert(source);
204     g_assert(timeout);
205     
206     *timeout = -1;
207     return FALSE;
208 }
209
210 static gboolean check_func(GSource *source) {
211     flxServer* s;
212     g_assert(source);
213
214     s = *((flxServer**) (((guint8*) source) + sizeof(GSource)));
215     g_assert(s);
216     
217     return (s->pollfd_ipv4.revents | s->pollfd_ipv6.revents) & (G_IO_IN | G_IO_HUP | G_IO_ERR);
218 }
219
220 static gboolean dispatch_func(GSource *source, GSourceFunc callback, gpointer user_data) {
221     flxServer* s;
222     g_assert(source);
223
224     s = *((flxServer**) (((guint8*) source) + sizeof(GSource)));
225     g_assert(s);
226     
227     return work(s);
228 }
229
230 static void add_default_entries(flxServer *s) {
231     gint length = 0;
232     struct utsname utsname;
233     gchar *hinfo;
234     flxAddress a;
235     flxRecord *r;
236     
237     g_assert(s);
238     
239     /* Fill in HINFO rr */
240     r = flx_record_new_full(s->hostname, FLX_DNS_CLASS_IN, FLX_DNS_TYPE_HINFO);
241     uname(&utsname);
242     r->data.hinfo.cpu = g_strdup(g_strup(utsname.machine));
243     r->data.hinfo.os = g_strdup(g_strup(utsname.sysname));
244     flx_server_add(s, 0, 0, AF_UNSPEC, FLX_SERVER_ENTRY_UNIQUE, r);
245     flx_record_unref(r);
246
247     /* Add localhost entries */
248     flx_address_parse("127.0.0.1", AF_INET, &a);
249     flx_server_add_address(s, 0, 0, AF_UNSPEC, FLX_SERVER_ENTRY_UNIQUE|FLX_SERVER_ENTRY_NOPROBE|FLX_SERVER_ENTRY_NOANNOUNCE, "localhost", &a);
250
251     flx_address_parse("::1", AF_INET6, &a);
252     flx_server_add_address(s, 0, 0, AF_UNSPEC, FLX_SERVER_ENTRY_UNIQUE|FLX_SERVER_ENTRY_NOPROBE|FLX_SERVER_ENTRY_NOANNOUNCE, "ip6-localhost", &a);
253 }
254
255 flxServer *flx_server_new(GMainContext *c) {
256     gchar *hn, *e;
257     flxServer *s;
258     
259     static GSourceFuncs source_funcs = {
260         prepare_func,
261         check_func,
262         dispatch_func,
263         NULL,
264         NULL,
265         NULL
266     };
267
268     s = g_new(flxServer, 1);
269
270     s->fd_ipv4 = flx_open_socket_ipv4();
271     s->fd_ipv6 = flx_open_socket_ipv6();
272     
273     if (s->fd_ipv6 < 0 && s->fd_ipv4 < 0) {
274         g_critical("Failed to create sockets.\n");
275         g_free(s);
276         return NULL;
277     }
278
279     if (s->fd_ipv4 < 0)
280         g_message("Failed to create IPv4 socket, proceeding in IPv6 only mode");
281     else if (s->fd_ipv6 < 0)
282         g_message("Failed to create IPv6 socket, proceeding in IPv4 only mode");
283     
284     if (c)
285         g_main_context_ref(s->context = c);
286     else
287         s->context = g_main_context_default();
288     
289     s->current_id = 1;
290
291     FLX_LLIST_HEAD_INIT(flxServerEntry, s->entries);
292     s->rrset_by_id = g_hash_table_new(g_int_hash, g_int_equal);
293     s->rrset_by_key = g_hash_table_new((GHashFunc) flx_key_hash, (GEqualFunc) flx_key_equal);
294
295     FLX_LLIST_HEAD_INIT(flxSubscription, s->subscriptions);
296     s->subscription_hashtable = g_hash_table_new((GHashFunc) flx_key_hash, (GEqualFunc) flx_key_equal);
297
298     s->monitor = flx_interface_monitor_new(s);
299     s->time_event_queue = flx_time_event_queue_new(s->context);
300     
301     /* Get host name */
302     hn = flx_get_host_name();
303     if ((e = strchr(hn, '.')))
304         *e = 0;
305
306     s->hostname = g_strdup_printf("%s.local.", hn);
307     g_free(hn);
308
309     add_default_entries(s);
310
311     s->source = g_source_new(&source_funcs, sizeof(GSource) + sizeof(flxServer*));
312     *((flxServer**) (((guint8*) s->source) + sizeof(GSource))) = s;
313
314     memset(&s->pollfd_ipv4, 0, sizeof(s->pollfd_ipv4));
315     s->pollfd_ipv4.fd = s->fd_ipv4;
316     s->pollfd_ipv4.events = G_IO_IN|G_IO_ERR|G_IO_HUP;
317     g_source_add_poll(s->source, &s->pollfd_ipv4);
318     
319     memset(&s->pollfd_ipv6, 0, sizeof(s->pollfd_ipv6));
320     s->pollfd_ipv6.fd = s->fd_ipv6;
321     s->pollfd_ipv6.events = G_IO_IN|G_IO_ERR|G_IO_HUP;
322     g_source_add_poll(s->source, &s->pollfd_ipv6);
323
324     g_source_attach(s->source, s->context);
325     
326     return s;
327 }
328
329 void flx_server_free(flxServer* s) {
330     g_assert(s);
331
332     flx_interface_monitor_free(s->monitor);
333     
334     flx_server_remove(s, 0);
335
336     while (s->subscriptions)
337         flx_subscription_free(s->subscriptions);
338     g_hash_table_destroy(s->subscription_hashtable);
339     
340     g_hash_table_destroy(s->rrset_by_id);
341     g_hash_table_destroy(s->rrset_by_key);
342
343     flx_time_event_queue_free(s->time_event_queue);
344
345     if (s->fd_ipv4 >= 0)
346         close(s->fd_ipv4);
347     if (s->fd_ipv6 >= 0)
348         close(s->fd_ipv6);
349     
350     g_free(s->hostname);
351
352     g_source_destroy(s->source);
353     g_source_unref(s->source);
354     g_main_context_unref(s->context);
355
356     g_free(s);
357 }
358
359 gint flx_server_get_next_id(flxServer *s) {
360     g_assert(s);
361
362     return s->current_id++;
363 }
364
365 void flx_server_add(
366     flxServer *s,
367     gint id,
368     gint interface,
369     guchar protocol,
370     flxServerEntryFlags flags,
371     flxRecord *r) {
372     
373     flxServerEntry *e, *t;
374     g_assert(s);
375     g_assert(r);
376
377     g_assert(r->key->type != FLX_DNS_TYPE_ANY);
378
379     e = g_new(flxServerEntry, 1);
380     e->record = flx_record_ref(r);
381     e->id = id;
382     e->interface = interface;
383     e->protocol = protocol;
384     e->flags = flags;
385
386     FLX_LLIST_HEAD_INIT(flxAnnouncement, e->announcements);
387
388     FLX_LLIST_PREPEND(flxServerEntry, entry, s->entries, e);
389
390     /* Insert into hash table indexed by id */
391     t = g_hash_table_lookup(s->rrset_by_id, &e->id);
392     FLX_LLIST_PREPEND(flxServerEntry, by_id, t, e);
393     g_hash_table_replace(s->rrset_by_id, &e->id, t);
394     
395     /* Insert into hash table indexed by name */
396     t = g_hash_table_lookup(s->rrset_by_key, e->record->key);
397     FLX_LLIST_PREPEND(flxServerEntry, by_key, t, e);
398     g_hash_table_replace(s->rrset_by_key, e->record->key, t);
399
400     flx_announce_entry(s, e);
401 }
402 const flxRecord *flx_server_iterate(flxServer *s, gint id, void **state) {
403     flxServerEntry **e = (flxServerEntry**) state;
404     g_assert(s);
405     g_assert(e);
406
407     if (e)
408         *e = id > 0 ? (*e)->by_id_next : (*e)->entry_next;
409     else
410         *e = id > 0 ? g_hash_table_lookup(s->rrset_by_id, &id) : s->entries;
411         
412     if (!*e)
413         return NULL;
414
415     return flx_record_ref((*e)->record);
416 }
417
418 static void free_entry(flxServer*s, flxServerEntry *e) {
419     flxServerEntry *t;
420     
421     g_assert(e);
422
423     flx_goodbye_entry(s, e, TRUE);
424
425     /* Remove from linked list */
426     FLX_LLIST_REMOVE(flxServerEntry, entry, s->entries, e);
427
428     /* Remove from hash table indexed by id */
429     t = g_hash_table_lookup(s->rrset_by_id, &e->id);
430     FLX_LLIST_REMOVE(flxServerEntry, by_id, t, e);
431     if (t)
432         g_hash_table_replace(s->rrset_by_id, &t->id, t);
433     else
434         g_hash_table_remove(s->rrset_by_id, &e->id);
435     
436     /* Remove from hash table indexed by name */
437     t = g_hash_table_lookup(s->rrset_by_key, e->record->key);
438     FLX_LLIST_REMOVE(flxServerEntry, by_key, t, e);
439     if (t)
440         g_hash_table_replace(s->rrset_by_key, t->record->key, t);
441     else
442         g_hash_table_remove(s->rrset_by_key, e->record->key);
443
444     flx_record_unref(e->record);
445     g_free(e);
446 }
447
448 void flx_server_remove(flxServer *s, gint id) {
449     g_assert(s);
450
451     if (id <= 0) {
452         while (s->entries)
453             free_entry(s, s->entries);
454     } else {
455         flxServerEntry *e;
456
457         while ((e = g_hash_table_lookup(s->rrset_by_id, &id)))
458             free_entry(s, e);
459     }
460 }
461
462 void flx_server_dump(flxServer *s, FILE *f) {
463     flxServerEntry *e;
464     g_assert(s);
465     g_assert(f);
466
467     fprintf(f, "\n;;; ZONE DUMP FOLLOWS ;;;\n");
468
469     for (e = s->entries; e; e = e->entry_next) {
470         gchar *t;
471
472         t = flx_record_to_string(e->record);
473         fprintf(f, "%s\n", t);
474         g_free(t);
475     }
476
477     flx_dump_caches(s->monitor, f);
478 }
479
480 void flx_server_add_ptr(
481     flxServer *s,
482     gint id,
483     gint interface,
484     guchar protocol,
485     flxServerEntryFlags flags,
486     const gchar *name,
487     const gchar *dest) {
488
489     flxRecord *r;
490
491     g_assert(dest);
492
493     r = flx_record_new_full(name ? name : s->hostname, FLX_DNS_CLASS_IN, FLX_DNS_TYPE_PTR);
494     r->data.ptr.name = flx_normalize_name(dest);
495     flx_server_add(s, id, interface, protocol, flags, r);
496     flx_record_unref(r);
497
498 }
499
500 void flx_server_add_address(
501     flxServer *s,
502     gint id,
503     gint interface,
504     guchar protocol,
505     flxServerEntryFlags flags,
506     const gchar *name,
507     flxAddress *a) {
508
509     gchar *n = NULL;
510     g_assert(s);
511     g_assert(a);
512
513     name = name ? (n = flx_normalize_name(name)) : s->hostname;
514     
515     if (a->family == AF_INET) {
516         gchar *reverse;
517         flxRecord  *r;
518
519         r = flx_record_new_full(name, FLX_DNS_CLASS_IN, FLX_DNS_TYPE_A);
520         r->data.a.address = a->data.ipv4;
521         flx_server_add(s, id, interface, protocol, flags, r);
522         flx_record_unref(r);
523         
524         reverse = flx_reverse_lookup_name_ipv4(&a->data.ipv4);
525         g_assert(reverse);
526         flx_server_add_ptr(s, id, interface, protocol, flags, reverse, name);
527         g_free(reverse);
528         
529     } else {
530         gchar *reverse;
531         flxRecord *r;
532             
533         r = flx_record_new_full(name, FLX_DNS_CLASS_IN, FLX_DNS_TYPE_AAAA);
534         r->data.aaaa.address = a->data.ipv6;
535         flx_server_add(s, id, interface, protocol, flags, r);
536         flx_record_unref(r);
537
538         reverse = flx_reverse_lookup_name_ipv6_arpa(&a->data.ipv6);
539         g_assert(reverse);
540         flx_server_add_ptr(s, id, interface, protocol, flags, reverse, name);
541         g_free(reverse);
542     
543         reverse = flx_reverse_lookup_name_ipv6_int(&a->data.ipv6);
544         g_assert(reverse);
545         flx_server_add_ptr(s, id, interface, protocol, flags, reverse, name);
546         g_free(reverse);
547     }
548     
549     g_free(n);
550 }
551
552 void flx_server_add_text_va(
553     flxServer *s,
554     gint id,
555     gint interface,
556     guchar protocol,
557     flxServerEntryFlags flags,
558     const gchar *name,
559     va_list va) {
560
561     flxRecord *r;
562     
563     g_assert(s);
564     
565     r = flx_record_new_full(name ? name : s->hostname, FLX_DNS_CLASS_IN, FLX_DNS_TYPE_TXT);
566     r->data.txt.string_list = flx_string_list_new_va(va);
567     flx_server_add(s, id, interface, protocol, flags, r);
568     flx_record_unref(r);
569 }
570
571 void flx_server_add_text(
572     flxServer *s,
573     gint id,
574     gint interface,
575     guchar protocol,
576     flxServerEntryFlags flags,
577     const gchar *name,
578     ...) {
579
580     va_list va;
581     
582     g_assert(s);
583
584     va_start(va, name);
585     flx_server_add_text_va(s, id, interface, protocol, flags, name, va);
586     va_end(va);
587 }
588
589 static void escape_service_name(gchar *d, guint size, const gchar *s) {
590     g_assert(d);
591     g_assert(size);
592     g_assert(s);
593
594     while (*s && size >= 2) {
595         if (*s == '.' || *s == '\\') {
596             if (size < 3)
597                 break;
598
599             *(d++) = '\\';
600             size--;
601         }
602             
603         *(d++) = *(s++);
604         size--;
605     }
606
607     g_assert(size > 0);
608     *(d++) = 0;
609 }
610
611
612 void flx_server_add_service_va(
613     flxServer *s,
614     gint id,
615     gint interface,
616     guchar protocol,
617     const gchar *type,
618     const gchar *name,
619     const gchar *domain,
620     const gchar *host,
621     guint16 port,
622     va_list va) {
623
624     gchar ptr_name[256], svc_name[256], ename[64], enum_ptr[256];
625     flxRecord *r;
626     
627     g_assert(s);
628     g_assert(type);
629     g_assert(name);
630
631     escape_service_name(ename, sizeof(ename), name);
632
633     if (domain) {
634         while (domain[0] == '.')
635             domain++;
636     } else
637         domain = "local";
638
639     if (!host)
640         host = s->hostname;
641
642     snprintf(ptr_name, sizeof(ptr_name), "%s.%s", type, domain);
643     snprintf(svc_name, sizeof(svc_name), "%s.%s.%s", ename, type, domain);
644     
645     flx_server_add_ptr(s, id, interface, protocol, FALSE, ptr_name, svc_name);
646
647     r = flx_record_new_full(svc_name, FLX_DNS_CLASS_IN, FLX_DNS_TYPE_SRV);
648     r->data.srv.priority = 0;
649     r->data.srv.weight = 0;
650     r->data.srv.port = port;
651     r->data.srv.name = flx_normalize_name(host);
652     flx_server_add(s, id, interface, protocol, TRUE, r);
653     flx_record_unref(r);
654
655     flx_server_add_text_va(s, id, interface, protocol, FALSE, svc_name, va);
656
657     snprintf(enum_ptr, sizeof(enum_ptr), "_services._dns-sd._udp.%s", domain);
658     flx_server_add_ptr(s, id, interface, protocol, FALSE, enum_ptr, ptr_name);
659 }
660
661 void flx_server_add_service(
662     flxServer *s,
663     gint id,
664     gint interface,
665     guchar protocol,
666     const gchar *type,
667     const gchar *name,
668     const gchar *domain,
669     const gchar *host,
670     guint16 port,
671     ... ){
672
673     va_list va;
674     
675     g_assert(s);
676     g_assert(type);
677     g_assert(name);
678
679     va_start(va, port);
680     flx_server_add_service_va(s, id, interface, protocol, type, name, domain, host, port, va);
681     va_end(va);
682 }
683
684 static void post_query_callback(flxInterfaceMonitor *m, flxInterface *i, gpointer userdata) {
685     flxKey *k = userdata;
686
687     g_assert(m);
688     g_assert(i);
689     g_assert(k);
690
691     flx_interface_post_query(i, k, FALSE);
692 }
693
694 void flx_server_post_query(flxServer *s, gint interface, guchar protocol, flxKey *key) {
695     g_assert(s);
696     g_assert(key);
697
698     flx_interface_monitor_walk(s->monitor, interface, protocol, post_query_callback, key);
699 }
700
701 struct tmpdata {
702     flxRecord *record;
703     gboolean flush_cache;
704 };
705
706 static void post_response_callback(flxInterfaceMonitor *m, flxInterface *i, gpointer userdata) {
707     struct tmpdata *tmpdata = userdata;
708
709     g_assert(m);
710     g_assert(i);
711     g_assert(tmpdata);
712
713     flx_interface_post_response(i, NULL, tmpdata->record, tmpdata->flush_cache, FALSE);
714 }
715
716 void flx_server_post_response(flxServer *s, gint interface, guchar protocol, flxRecord *record, gboolean flush_cache) {
717     struct tmpdata tmpdata;
718     
719     g_assert(s);
720     g_assert(record);
721
722     tmpdata.record = record;
723     tmpdata.flush_cache = flush_cache;
724
725     flx_interface_monitor_walk(s->monitor, interface, protocol, post_response_callback, &tmpdata);
726 }