]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netat/aurp_rx.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the
10 * License may not be used to create, or enable the creation or
11 * redistribution of, unlawful or unlicensed copies of an Apple operating
12 * system, or to circumvent, violate, or enable the circumvention or
13 * violation of, any terms of an Apple operating system software license
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this
20 * The Original Code and all software distributed under the License are
21 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
22 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
23 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
25 * Please see the License for the specific language governing rights and
26 * limitations under the License.
28 * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
31 * Copyright (c) 1996 Apple Computer, Inc.
33 * Created April 8, 1996 by Tuyen Nguyen
34 * Modified for Kernel execution, May, 1996, Justin C. Walker
35 * Modified, March 17, 1997 by Tuyen Nguyen for MacOSX.
41 #include <sys/errno.h>
42 #include <sys/types.h>
43 #include <sys/param.h>
44 #include <machine/spl.h>
45 #include <sys/systm.h>
46 #include <sys/kernel.h>
48 #include <sys/filedesc.h>
49 #include <sys/fcntl.h>
51 #include <sys/socket.h>
52 #include <sys/socketvar.h>
55 #include <netat/sysglue.h>
56 #include <netat/appletalk.h>
57 #include <netat/at_var.h>
58 #include <netat/routing_tables.h>
59 #include <netat/at_pcb.h>
60 #include <netat/aurp.h>
61 #include <netat/debug.h>
64 * Not using the stream queue for data; keep this around to handle
65 * requests from the user proc (mostly setup).
72 register ioc_t
*iocbp
;
73 register gbuf_t
*mdata
;
74 register int temp
, error
;
76 switch (gbuf_type(m
)) {
79 iocbp
= (ioc_t
*)gbuf_rptr(m
);
80 switch (iocbp
->ioc_cmd
) {
81 case AUC_CFGTNL
: /* set up a tunnel, init the AURP daemon */
83 temp
= (int)(*gbuf_rptr(mdata
));
84 if (temp
!= dst_addr_cnt
) {
85 AURPiocnak(gref
, m
, ENOSPC
);
88 if ((error
= aurpd_start()) != 0) {
89 AURPiocnak(gref
, m
, error
);
93 AURPiocnak(gref
, m
, ENOMEM
);
96 ddp_AURPfuncx(AURPCODE_AURPPROTO
, 0, 0);
100 case AUC_SHTDOWN
: /* shutdown AURP operation */
104 case AUC_EXPNET
: /* configure networks to be exported */
105 case AUC_HIDENET
: /* configure networks to be hiden */
106 mdata
= gbuf_cont(m
);
107 net_access_cnt
= (gbuf_len(mdata
))/sizeof(short);
108 if ((net_access_cnt
==0) || (net_access_cnt
>AURP_MaxNetAccess
)) {
109 AURPiocnak(gref
, m
, EINVAL
);
112 bcopy(gbuf_rptr(mdata
), net_access
,
114 if (iocbp
->ioc_cmd
== AUC_EXPNET
)
119 mdata
= gbuf_cont(m
);
120 aurp_global
.udp_port
= *(char *)gbuf_rptr(mdata
);
124 mdata
= gbuf_cont(m
);
126 * Compute # addrs, Save for later check
127 * We cheat with a shift.
129 dst_addr_cnt
= ((gbuf_len(mdata
)) >> 2)-1;
130 bcopy(gbuf_rptr(mdata
), &aurp_global
.dst_addr
,
132 aurp_global
.src_addr
= aurp_global
.dst_addr
[0];
133 aurp_global
.dst_addr
[0] = 0;
137 AURPiocnak(gref
, m
, EINVAL
);
144 dPrintf(D_M_AURP
, D_L_WARNING
,
145 ("aurp_wput: bad msg type=%d\n", gbuf_type(m
)));
154 * Insert an appletalk packet into the appletalk stack.
155 * If it's an AURP data packet, just send it up; if it's AURP protocol,
160 at_insert(m
, type
, node
)
162 register unsigned int type
, node
;
164 register aurp_hdr_t
*hdrp
;
165 register aurp_state_t
*state
;
167 if (type
== AUD_Atalk
)
168 /* non-AURP proto packet */
169 ddp_AURPfuncx(AURPCODE_DATAPKT
, m
, node
);
171 { /* AURP proto packet */
172 state
= (aurp_state_t
*)&aurp_state
[node
];
173 state
->tickle_retry
= 0;
174 hdrp
= (aurp_hdr_t
*)gbuf_rptr(m
);
176 switch (hdrp
->command_code
) {
178 AURPrcvRIUpd(state
, m
); break;
181 AURPrcvRIReq(state
, m
); break;
184 AURPrcvRIRsp(state
, m
); break;
187 AURPrcvRIAck(state
, m
); break;
190 AURPrcvZReq(state
, m
); break;
193 AURPrcvZRsp(state
, m
); break;
195 case AURPCMD_OpenReq
:
196 AURPrcvOpenReq(state
, m
); break;
198 case AURPCMD_OpenRsp
:
199 AURPrcvOpenRsp(state
, m
); break;
202 AURPrcvTickle(state
, m
); break;
204 case AURPCMD_TickleAck
:
205 AURPrcvTickleAck(state
, m
); break;
208 AURPrcvRDReq(state
, m
); break;
211 dPrintf(D_M_AURP
, D_L_WARNING
,
212 ("at_insert: bad proto cmd=%d\n",
213 hdrp
->command_code
));
221 #endif /* AURP_SUPPORT */