3 * Background reverse name resolution
5 * (c) 1999 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
35 /*----- Header files ------------------------------------------------------*/
37 #include <sys/types.h>
39 #include <sys/socket.h>
40 #include <netinet/in.h>
41 #include <arpa/inet.h>
51 /*----- Data structures ---------------------------------------------------*/
53 /* --- Client allocated request block --- */
55 typedef struct bres_client {
57 adns_query aq; /* ADNS query handle */
58 adns_answer *a; /* Answer for reverse resolution */
59 struct _unused *_pad1; /* And a spare slot */
61 struct bres_client *next, *prev; /* Queue of waiting resolve jobs */
62 struct bres_server *rs; /* Pointer to attached server */
64 int q; /* Query type (name or address) */
66 struct in_addr addr; /* Address to resolve */
67 char *name; /* Name to resolve */
69 void (*func)(struct hostent */*h*/, void */*p*/); /* Handler function */
70 void *p; /* Argument for handler function */
73 /* --- Server maintained resolver blocks --- */
75 typedef struct bres_server {
76 struct bres_server *next, *prev; /* Doubly-linked list of servers */
77 pid_t kid; /* Process id of server process */
78 int fd; /* File descriptors */
79 struct bres_client *rc; /* Pointer to attached client */
80 sel_timer t; /* Timeout for idle servers */
81 sel_file f; /* Read selector for server */
84 /*----- Functions provided ------------------------------------------------*/
86 /* --- @bres_abort@ --- *
88 * Arguments: @bres_client *rc@ = pointer to client block
92 * Use: Removes a queued job.
95 extern void bres_abort(bres_client */*rc*/);
97 /* --- @bres_byaddr@ --- *
99 * Arguments: @bres_client *rc@ = pointer to client block
100 * @struct in_addr addr@ = address to resolve
101 * @void (*func)(struct hostent *h, void *p)@ = handler function
102 * @void *p@ = argument for handler function
106 * Use: Adds an address lookup job to the queue. The job will be
107 * processed when there's a spare resolver process to deal with
111 extern void bres_byaddr(bres_client */*rc*/, struct in_addr /*addr*/,
112 void (*/*func*/)(struct hostent */*h*/, void */*p*/),
115 /* --- @bres_byname@ --- *
117 * Arguments: @bres_client *rc@ = pointer to client block
118 * @const char *name@ = name to resolve
119 * @void (*func)(struct hostent *h, void *p)@ = handler function
120 * @void *p@ = argument for handler function
124 * Use: Adds a name lookup job to the queue. The job will be
125 * processed when there's a spare resolver process to deal with
129 extern void bres_byname(bres_client */*rc*/, const char */*name*/,
130 void (*/*func*/)(struct hostent */*h*/, void */*p*/),
133 /* --- @bres_exec@ --- *
135 * Arguments: @const char *file@ = file containing server code or null
139 * Use: Makes `bres' use a standalone server rather than copies of
140 * the current process. This can reduce memory consumption for
141 * large processes, at the expense of startup time (which
142 * shouldn't be too bad anyway, because of the resolver design).
143 * If the filename is null, a default set up at install time is
144 * used. It's probably a good idea to leave it alone.
147 extern void bres_exec(const char */*file*/);
149 /* --- @bres_init@ --- *
151 * Arguments: @sel_state *s@ = pointer to select multiplexor
155 * Use: Initializes the background resolver for use.
158 extern void bres_init(sel_state */*s*/);
160 /*----- That's all, folks -------------------------------------------------*/