]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netns/ns_output.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1984, 1985, 1986, 1987, 1993
24 * The Regents of the University of California. All rights reserved.
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
29 * 1. Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
33 * documentation and/or other materials provided with the distribution.
34 * 3. All advertising materials mentioning features or use of this software
35 * must display the following acknowledgement:
36 * This product includes software developed by the University of
37 * California, Berkeley and its contributors.
38 * 4. Neither the name of the University nor the names of its contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
42 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * @(#)ns_output.c 8.1 (Berkeley) 6/10/93
57 #include <sys/param.h>
58 #include <sys/malloc.h>
60 #include <sys/errno.h>
61 #include <sys/socket.h>
62 #include <sys/socketvar.h>
65 #include <net/route.h>
68 #include <netns/ns_if.h>
69 #include <netns/idp.h>
70 #include <netns/idp_var.h>
73 #include <machine/mtpr.h>
75 int ns_hold_output
= 0;
76 int ns_copy_output
= 0;
77 int ns_output_cnt
= 0;
78 struct mbuf
*ns_lastout
;
80 ns_output(m0
, ro
, flags
)
85 register struct idp
*idp
= mtod(m0
, struct idp
*);
86 register struct ifnet
*ifp
= 0;
88 struct route idproute
;
89 struct sockaddr_ns
*dst
;
94 (void)m_free(ns_lastout
);
96 ns_lastout
= m_copy(m0
, 0, (int)M_COPYALL
);
103 bzero((caddr_t
)ro
, sizeof (*ro
));
105 dst
= (struct sockaddr_ns
*)&ro
->ro_dst
;
106 if (ro
->ro_rt
== 0) {
107 dst
->sns_family
= AF_NS
;
108 dst
->sns_len
= sizeof (*dst
);
109 dst
->sns_addr
= idp
->idp_dna
;
110 dst
->sns_addr
.x_port
= 0;
112 * If routing to interface only,
113 * short circuit routing lookup.
115 if (flags
& NS_ROUTETOIF
) {
116 struct ns_ifaddr
*ia
= ns_iaonnetof(&idp
->idp_dna
);
126 } else if ((ro
->ro_rt
->rt_flags
& RTF_UP
) == 0) {
128 * The old route has gone away; try for a new one.
134 if (ro
->ro_rt
== 0 || (ifp
= ro
->ro_rt
->rt_ifp
) == 0) {
139 if (ro
->ro_rt
->rt_flags
& (RTF_GATEWAY
|RTF_HOST
))
140 dst
= (struct sockaddr_ns
*)ro
->ro_rt
->rt_gateway
;
144 * Look for multicast addresses and
145 * and verify user is allowed to send
148 if (dst
->sns_addr
.x_host
.c_host
[0]&1) {
149 if ((ifp
->if_flags
& IFF_BROADCAST
) == 0) {
150 error
= EADDRNOTAVAIL
;
153 if ((flags
& NS_ALLOWBROADCAST
) == 0) {
159 if (htons(idp
->idp_len
) <= ifp
->if_mtu
) {
161 if (ns_copy_output
) {
162 ns_watch_output(m0
, ifp
);
164 error
= (*ifp
->if_output
)(ifp
, m0
,
165 (struct sockaddr
*)dst
, ro
->ro_rt
);
167 } else error
= EMSGSIZE
;
171 if (ns_copy_output
) {
172 ns_watch_output(m0
, ifp
);
176 if (ro
== &idproute
&& (flags
& NS_ROUTETOIF
) == 0 && ro
->ro_rt
) {