]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netat/aurp_tx.c
6b3d1d6e3719e60475373a1cb710a172701c1366
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, 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 * Any AURP protocol or appletalk data (ddp) packets flowing through
65 * are inserted into the kernel aurpd process's (atalk) input queue.
66 * Assume here that we deal with single packets, i.e., someone earlier
67 * in the food chain has broken up packet chains.
69 void AURPsend(mdata
, type
, node
)
73 struct aurp_domain
*domain
;
75 int msize
= AT_WR_OFFSET
+32+IP_DOMAINSIZE
;
77 /* Add the domain header */
78 if ((m
= gbuf_alloc(msize
, PRI_MED
)) == 0) {
80 dPrintf(D_M_AURP
, D_L_WARNING
, ("AURPsend: gbuf_alloc failed\n"));
84 gbuf_rinc(m
,AT_WR_OFFSET
+32);
86 domain
= (struct aurp_domain
*)gbuf_rptr(m
);
87 domain
->dst_length
= IP_LENGTH
;
88 domain
->dst_authority
= IP_AUTHORITY
;
89 domain
->dst_distinguisher
= IP_DISTINGUISHER
;
90 domain
->src_length
= IP_LENGTH
;
91 domain
->src_authority
= IP_AUTHORITY
;
92 domain
->src_distinguisher
= IP_DISTINGUISHER
;
93 domain
->src_address
= aurp_global
.src_addr
;
94 domain
->version
= AUD_Version
;
97 domain
->dst_address
= aurp_global
.dst_addr
[node
];
102 * Called from within ddp (via ddp_AURPsendx) to handle data (DDP) packets
103 * sent from the AppleTalk stack, routing updates, and routing info
106 void AURPcmdx(code
, mdata
, param
)
116 if (aurp_gref
== 0) {
117 if (code
!= AURPCODE_DEBUGINFO
)
123 case AURPCODE_DATAPKT
: /* data packet */
124 node
= (unsigned char)param
;
125 if (gbuf_next(mdata
)) {
126 mdata_next
= gbuf_next(mdata
);
127 gbuf_next(mdata
) = 0;
128 AURPsend(mdata
, AUD_Atalk
, node
);
131 mdata_next
= gbuf_next(mdata
);
132 gbuf_next(mdata
) = 0;
133 /* Indicate non-AURP packet, node id of peer */
134 AURPsend(mdata
, AUD_Atalk
, node
);
135 } while (mdata_next
);
137 AURPsend(mdata
, AUD_Atalk
, node
);
140 case AURPCODE_RTUPDATE
:
141 AURPrtupdate((RT_entry
*)mdata
, param
);
144 case AURPCODE_DEBUGINFO
: /* debug info */
145 dbgBits
= *(dbgBits_t
*)mdata
;
150 dPrintf(D_M_AURP
, D_L_ERROR
, ("AURPcmdx: bad code, %d\n", code
));
154 #endif /* AURP_SUPPORT */