summaryrefslogtreecommitdiffstats
path: root/sys/netatalk/ddp_pcb.c
blob: 295b4587411d0ad8533e55edba965c64ee5bad0d (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
/*
 * Copyright (c) 1990,1994 Regents of The University of Michigan.
 * All Rights Reserved.  See COPYRIGHT.
 *
 * $FreeBSD$
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/protosw.h>
#include <net/if.h>
#include <net/route.h>
#include <net/netisr.h>

#include <netatalk/at.h>
#include <netatalk/at_var.h>
#include <netatalk/ddp_var.h>
#include <netatalk/ddp_pcb.h>
#include <netatalk/at_extern.h>

static struct ddpcb	*ddp_ports[ ATPORT_LAST ];
struct ddpcb	*ddpcb_list = NULL;

void
at_sockaddr(struct ddpcb *ddp, struct sockaddr **addr)
{
    *addr = sodupsockaddr((struct sockaddr *)&ddp->ddp_lsat, M_NOWAIT);
}

int 
at_pcbsetaddr(struct ddpcb *ddp, struct sockaddr *addr, struct thread *td)
{
    struct sockaddr_at	lsat, *sat;
    struct at_ifaddr	*aa;
    struct ddpcb	*ddpp;

    if (ddp->ddp_lsat.sat_port != ATADDR_ANYPORT) { /* shouldn't be bound */
	return (EINVAL);
    }

    if (addr != NULL) {			/* validate passed address */
	sat = (struct sockaddr_at *)addr;
	if (sat->sat_family != AF_APPLETALK) {
	    return (EAFNOSUPPORT);
	}

	if (sat->sat_addr.s_node != ATADDR_ANYNODE ||
		sat->sat_addr.s_net != ATADDR_ANYNET) {
	    for (aa = at_ifaddr_list; aa != NULL; aa = aa->aa_next) {
		if ((sat->sat_addr.s_net == AA_SAT(aa)->sat_addr.s_net) &&
		 (sat->sat_addr.s_node == AA_SAT(aa)->sat_addr.s_node)) {
		    break;
		}
	    }
	    if (!aa) {
		return (EADDRNOTAVAIL);
	    }
	}

	if (sat->sat_port != ATADDR_ANYPORT) {
	    if (sat->sat_port < ATPORT_FIRST ||
		    sat->sat_port >= ATPORT_LAST) {
		return (EINVAL);
	    }
	    if (sat->sat_port < ATPORT_RESERVED &&
		 suser(td)) {
		return (EACCES);
	    }
	}
    } else {
	bzero((caddr_t)&lsat, sizeof(struct sockaddr_at));
	lsat.sat_len = sizeof(struct sockaddr_at);
	lsat.sat_addr.s_node = ATADDR_ANYNODE;
	lsat.sat_addr.s_net = ATADDR_ANYNET;
	lsat.sat_family = AF_APPLETALK;
	sat = &lsat;
    }

    if (sat->sat_addr.s_node == ATADDR_ANYNODE &&
	    sat->sat_addr.s_net == ATADDR_ANYNET) {
	if (at_ifaddr_list == NULL) {
	    return (EADDRNOTAVAIL);
	}
	sat->sat_addr = AA_SAT(at_ifaddr_list)->sat_addr;
    }
    ddp->ddp_lsat = *sat;

    /*
     * Choose port.
     */
    if (sat->sat_port == ATADDR_ANYPORT) {
	for (sat->sat_port = ATPORT_RESERVED;
		sat->sat_port < ATPORT_LAST; sat->sat_port++) {
	    if (ddp_ports[ sat->sat_port - 1 ] == NULL) {
		break;
	    }
	}
	if (sat->sat_port == ATPORT_LAST) {
	    return (EADDRNOTAVAIL);
	}
	ddp->ddp_lsat.sat_port = sat->sat_port;
	ddp_ports[ sat->sat_port - 1 ] = ddp;
    } else {
	for (ddpp = ddp_ports[ sat->sat_port - 1 ]; ddpp;
		ddpp = ddpp->ddp_pnext) {
	    if (ddpp->ddp_lsat.sat_addr.s_net == sat->sat_addr.s_net &&
		    ddpp->ddp_lsat.sat_addr.s_node == sat->sat_addr.s_node) {
		break;
	    }
	}
	if (ddpp != NULL) {
	    return (EADDRINUSE);
	}
	ddp->ddp_pnext = ddp_ports[ sat->sat_port - 1 ];
	ddp_ports[ sat->sat_port - 1 ] = ddp;
	if (ddp->ddp_pnext) {
	    ddp->ddp_pnext->ddp_pprev = ddp;
	}
    }

    return (0);
}

int
at_pcbconnect(struct ddpcb *ddp, struct sockaddr *addr, struct thread *td)
{
    struct sockaddr_at	*sat = (struct sockaddr_at *)addr;
    struct route	*ro;
    struct at_ifaddr	*aa = NULL;
    struct ifnet	*ifp;
    u_short		hintnet = 0, net;

    if (sat->sat_family != AF_APPLETALK) {
	return (EAFNOSUPPORT);
    }

    /*
     * Under phase 2, network 0 means "the network".  We take "the
     * network" to mean the network the control block is bound to.
     * If the control block is not bound, there is an error.
     */
    if (sat->sat_addr.s_net == ATADDR_ANYNET
		&& sat->sat_addr.s_node != ATADDR_ANYNODE) {
	if (ddp->ddp_lsat.sat_port == ATADDR_ANYPORT) {
	    return (EADDRNOTAVAIL);
	}
	hintnet = ddp->ddp_lsat.sat_addr.s_net;
    }

    ro = &ddp->ddp_route;
    /*
     * If we've got an old route for this pcb, check that it is valid.
     * If we've changed our address, we may have an old "good looking"
     * route here.  Attempt to detect it.
     */
    if (ro->ro_rt) {
	if (hintnet) {
	    net = hintnet;
	} else {
	    net = sat->sat_addr.s_net;
	}
	aa = NULL;
	if ((ifp = ro->ro_rt->rt_ifp) != NULL) {
	    for (aa = at_ifaddr_list; aa != NULL; aa = aa->aa_next) {
		if (aa->aa_ifp == ifp &&
			ntohs(net) >= ntohs(aa->aa_firstnet) &&
			ntohs(net) <= ntohs(aa->aa_lastnet)) {
		    break;
		}
	    }
	}
	if (aa == NULL || (satosat(&ro->ro_dst)->sat_addr.s_net !=
		(hintnet ? hintnet : sat->sat_addr.s_net) ||
		satosat(&ro->ro_dst)->sat_addr.s_node !=
		sat->sat_addr.s_node)) {
	    RTFREE(ro->ro_rt);
	    ro->ro_rt = NULL;
	}
    }

    /*
     * If we've got no route for this interface, try to find one.
     */
    if (ro->ro_rt == NULL || ro->ro_rt->rt_ifp == NULL) {
	ro->ro_dst.sa_len = sizeof(struct sockaddr_at);
	ro->ro_dst.sa_family = AF_APPLETALK;
	if (hintnet) {
	    satosat(&ro->ro_dst)->sat_addr.s_net = hintnet;
	} else {
	    satosat(&ro->ro_dst)->sat_addr.s_net = sat->sat_addr.s_net;
	}
	satosat(&ro->ro_dst)->sat_addr.s_node = sat->sat_addr.s_node;
	rtalloc(ro);
    }

    /*
     * Make sure any route that we have has a valid interface.
     */
    aa = NULL;
    if (ro->ro_rt && (ifp = ro->ro_rt->rt_ifp)) {
	for (aa = at_ifaddr_list; aa != NULL; aa = aa->aa_next) {
	    if (aa->aa_ifp == ifp) {
		break;
	    }
	}
    }
    if (aa == NULL) {
	return (ENETUNREACH);
    }

    ddp->ddp_fsat = *sat;
    if (ddp->ddp_lsat.sat_port == ATADDR_ANYPORT) {
	return (at_pcbsetaddr(ddp, NULL, td));
    }
    return (0);
}

void 
at_pcbdisconnect(struct ddpcb	*ddp)
{
    ddp->ddp_fsat.sat_addr.s_net = ATADDR_ANYNET;
    ddp->ddp_fsat.sat_addr.s_node = ATADDR_ANYNODE;
    ddp->ddp_fsat.sat_port = ATADDR_ANYPORT;
}

int
at_pcballoc(struct socket *so)
{
	struct ddpcb	*ddp;

	MALLOC(ddp, struct ddpcb *, sizeof *ddp, M_PCB, M_WAITOK | M_ZERO);
	ddp->ddp_lsat.sat_port = ATADDR_ANYPORT;

	ddp->ddp_next = ddpcb_list;
	ddp->ddp_prev = NULL;
	ddp->ddp_pprev = NULL;
	ddp->ddp_pnext = NULL;
	if (ddpcb_list != NULL) {
		ddpcb_list->ddp_prev = ddp;
	}
	ddpcb_list = ddp;

	ddp->ddp_socket = so;
	so->so_pcb = (caddr_t)ddp;
	return (0);
}

void
at_pcbdetach(struct socket *so, struct ddpcb *ddp)
{
    soisdisconnected(so);
    so->so_pcb = NULL;
    sotryfree(so);

    /* remove ddp from ddp_ports list */
    if (ddp->ddp_lsat.sat_port != ATADDR_ANYPORT &&
	    ddp_ports[ ddp->ddp_lsat.sat_port - 1 ] != NULL) {
	if (ddp->ddp_pprev != NULL) {
	    ddp->ddp_pprev->ddp_pnext = ddp->ddp_pnext;
	} else {
	    ddp_ports[ ddp->ddp_lsat.sat_port - 1 ] = ddp->ddp_pnext;
	}
	if (ddp->ddp_pnext != NULL) {
	    ddp->ddp_pnext->ddp_pprev = ddp->ddp_pprev;
	}
    }

    if (ddp->ddp_route.ro_rt) {
	RTFREE(ddp->ddp_route.ro_rt);
    }

    if (ddp->ddp_prev) {
	ddp->ddp_prev->ddp_next = ddp->ddp_next;
    } else {
	ddpcb_list = ddp->ddp_next;
    }
    if (ddp->ddp_next) {
	ddp->ddp_next->ddp_prev = ddp->ddp_prev;
    }
    FREE(ddp, M_PCB);
}

/*
 * For the moment, this just find the pcb with the correct local address.
 * In the future, this will actually do some real searching, so we can use
 * the sender's address to do de-multiplexing on a single port to many
 * sockets (pcbs).
 */
struct ddpcb *
ddp_search(struct sockaddr_at *from, struct sockaddr_at *to,
			struct at_ifaddr *aa)
{
    struct ddpcb	*ddp;

    /*
     * Check for bad ports.
     */
    if (to->sat_port < ATPORT_FIRST || to->sat_port >= ATPORT_LAST) {
	return (NULL);
    }

    /*
     * Make sure the local address matches the sent address.  What about
     * the interface?
     */
    for (ddp = ddp_ports[ to->sat_port - 1 ]; ddp; ddp = ddp->ddp_pnext) {
	/* XXX should we handle 0.YY? */

	/* XXXX.YY to socket on destination interface */
	if (to->sat_addr.s_net == ddp->ddp_lsat.sat_addr.s_net &&
		to->sat_addr.s_node == ddp->ddp_lsat.sat_addr.s_node) {
	    break;
	}

	/* 0.255 to socket on receiving interface */
	if (to->sat_addr.s_node == ATADDR_BCAST && (to->sat_addr.s_net == 0 ||
		to->sat_addr.s_net == ddp->ddp_lsat.sat_addr.s_net) &&
		ddp->ddp_lsat.sat_addr.s_net == AA_SAT(aa)->sat_addr.s_net) {
	    break;
	}

	/* XXXX.0 to socket on destination interface */
	if (to->sat_addr.s_net == aa->aa_firstnet &&
		to->sat_addr.s_node == 0 &&
		ntohs(ddp->ddp_lsat.sat_addr.s_net) >=
		ntohs(aa->aa_firstnet) &&
		ntohs(ddp->ddp_lsat.sat_addr.s_net) <=
		ntohs(aa->aa_lastnet)) {
	    break;
	}
    }
    return (ddp);
}
OpenPOWER on IntegriCloud