summaryrefslogtreecommitdiff
path: root/usr/src/lib/libresolv2_joy/common/irs/irp_nw.c
blob: d032f6a60862220350292f7374853955559c3cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/*
 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
 * Portions Copyright (c) 1996,1998 by Internet Software Consortium.
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

/* Imports */

#include "port_before.h"

#include <syslog.h>
#include <sys/types.h>
#include <sys/socket.h>

#include <netinet/in.h>
#include <arpa/inet.h>
#include <arpa/nameser.h>

#include <errno.h>
#include <fcntl.h>
#include <resolv_joy.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>

#include <irs.h>
#include <irp.h>
#include <isc/irpmarshall.h>

#include <isc/memcluster.h>
#include <isc/misc.h>

#include "irs_p.h"
#include "lcl_p.h"
#include "irp_p.h"

#include "port_after.h"

#define MAXALIASES 35
#define MAXADDRSIZE 4

struct pvt {
	struct irp_p	       *girpdata;
	int			warned;
	struct nwent		net;
};

/* Forward */

static void		nw_close(struct irs_nw *);
static struct nwent *	nw_byname(struct irs_nw *, const char *, int);
static struct nwent *	nw_byaddr(struct irs_nw *, void *, int, int);
static struct nwent *	nw_next(struct irs_nw *);
static void		nw_rewind(struct irs_nw *);
static void		nw_minimize(struct irs_nw *);

static void		free_nw(struct nwent *nw);


/* Public */

/*%
 * struct irs_nw * irs_irp_nw(struct irs_acc *this) 
 *
 */

struct irs_nw *
irs_irp_nw(struct irs_acc *this) {
	struct irs_nw *nw;
	struct pvt *pvt;

	if (!(pvt = memget(sizeof *pvt))) {
		errno = ENOMEM;
		return (NULL);
	}
	memset(pvt, 0, sizeof *pvt);

	if (!(nw = memget(sizeof *nw))) {
		memput(pvt, sizeof *pvt);
		errno = ENOMEM;
		return (NULL);
	}
	memset(nw, 0x0, sizeof *nw);
	pvt->girpdata = this->private;

	nw->private = pvt;
	nw->close = nw_close;
	nw->byname = nw_byname;
	nw->byaddr = nw_byaddr;
	nw->next = nw_next;
	nw->rewind = nw_rewind;
	nw->minimize = nw_minimize;
	return (nw);
}

/* Methods */

/*%
 * void nw_close(struct irs_nw *this) 
 *
 */

static void
nw_close(struct irs_nw *this) {
	struct pvt *pvt = (struct pvt *)this->private;

	nw_minimize(this);

	free_nw(&pvt->net);

	memput(pvt, sizeof *pvt);
	memput(this, sizeof *this);
}

/*%
 * struct nwent * nw_byaddr(struct irs_nw *this, void *net, 
 * 				int length, int type) 
 *
 */

static struct nwent *
nw_byaddr(struct irs_nw *this, void *net, int length, int type) {
	struct pvt *pvt = (struct pvt *)this->private;
	struct nwent *nw = &pvt->net;
	char *body = NULL;
	size_t bodylen;
	int code;
	char paddr[24];			/*%< bigenough for ip4 w/ cidr spec. */
	char text[256];

	if (inet_net_ntop(type, net, length, paddr, sizeof paddr) == NULL) {
		return (NULL);
	}

	if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
		return (NULL);
	}

	if (irs_irp_send_command(pvt->girpdata, "getnetbyaddr %s %s",
				 paddr, ADDR_T_STR(type)) != 0)
		return (NULL);

	if (irs_irp_get_full_response(pvt->girpdata, &code,
				      text, sizeof text,
				      &body, &bodylen) != 0) {
		return (NULL);
	}

	if (code == IRPD_GETNET_OK) {
		free_nw(nw);
		if (irp_unmarshall_nw(nw, body) != 0) {
			nw = NULL;
		}
	} else {
		nw = NULL;
	}
		
	if (body != NULL) {
		memput(body, bodylen);
	}
	
	return (nw);
}

/*%
 * struct nwent * nw_byname(struct irs_nw *this, const char *name, int type) 
 *
 */

static struct nwent *
nw_byname(struct irs_nw *this, const char *name, int type) {
	struct pvt *pvt = (struct pvt *)this->private;
	struct nwent *nw = &pvt->net;
	char *body = NULL;
	size_t bodylen;
	int code;
	char text[256];

	if (nw->n_name != NULL &&
	    strcmp(name, nw->n_name) == 0 &&
	    nw->n_addrtype == type) {
		return (nw);
	}

	if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
		return (NULL);
	}

	if (irs_irp_send_command(pvt->girpdata, "getnetbyname %s", name) != 0)
		return (NULL);

	if (irs_irp_get_full_response(pvt->girpdata, &code,
				      text, sizeof text,
				      &body, &bodylen) != 0) {
		return (NULL);
	}

	if (code == IRPD_GETNET_OK) {
		free_nw(nw);
		if (irp_unmarshall_nw(nw, body) != 0) {
			nw = NULL;
		}
	} else {
		nw = NULL;
	}
	
	if (body != NULL) {
		memput(body, bodylen);
	}
	
	return (nw);
}

/*%
 * void nw_rewind(struct irs_nw *this) 
 *
 */

static void
nw_rewind(struct irs_nw *this) {
	struct pvt *pvt = (struct pvt *)this->private;
	char text[256];
	int code;

	if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
		return;
	}

	if (irs_irp_send_command(pvt->girpdata, "setnetent") != 0) {
		return;
	}

	code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
	if (code != IRPD_GETNET_SETOK) {
		if (irp_log_errors) {
			syslog(LOG_WARNING, "setnetent failed: %s", text);
		}
	}
	
	return;
}

/*%
 * 	Prepares the cache if necessary and returns the first, or 
 * 	next item from it.
 */

static struct nwent *
nw_next(struct irs_nw *this) {
	struct pvt *pvt = (struct pvt *)this->private;
	struct nwent *nw = &pvt->net;
	char *body;
	size_t bodylen;
	int code;
	char text[256];

	if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
		return (NULL);
	}

	if (irs_irp_send_command(pvt->girpdata, "getnetent") != 0) {
		return (NULL);
	}

	if (irs_irp_get_full_response(pvt->girpdata, &code,
				      text, sizeof text,
				      &body, &bodylen) != 0) {
		return (NULL);
	}

	if (code == IRPD_GETNET_OK) {
		free_nw(nw);
		if (irp_unmarshall_nw(nw, body) != 0) {
			nw = NULL;
		}
	} else {
		nw = NULL;
	}

	if (body != NULL)
		memput(body, bodylen);
	return (nw);
}

/*%
 * void nw_minimize(struct irs_nw *this) 
 *
 */

static void
nw_minimize(struct irs_nw *this) {
	struct pvt *pvt = (struct pvt *)this->private;

	irs_irp_disconnect(pvt->girpdata);
}




/* private. */

/*%
 *	deallocate all the memory irp_unmarshall_pw allocated.
 *
 */

static void
free_nw(struct nwent *nw) {
	char **p;

	if (nw == NULL)
		return;

	if (nw->n_name != NULL)
		free(nw->n_name);

	if (nw->n_aliases != NULL) {
		for (p = nw->n_aliases ; *p != NULL ; p++) {
			free(*p);
		}
		free(nw->n_aliases);
	}

	if (nw->n_addr != NULL)
		free(nw->n_addr);
}

/*! \file */