/* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "pptp_rfc.h" #include "pptp_ip.h" /* ----------------------------------------------------------------------------- Definitions ----------------------------------------------------------------------------- */ /* ----------------------------------------------------------------------------- Declarations ----------------------------------------------------------------------------- */ void pptp_ip_input(mbuf_t , int len); /* ----------------------------------------------------------------------------- Globals ----------------------------------------------------------------------------- */ struct protosw gre_pr, *old_pr; extern lck_mtx_t *ip_mutex; extern lck_mtx_t *ppp_domain_mutex; extern lck_mtx_t *inet_domain_mutex; /* ----------------------------------------------------------------------------- intialize pptp datalink attachment strutures ----------------------------------------------------------------------------- */ int pptp_ip_init() { bzero(&gre_pr, sizeof(gre_pr)); gre_pr.pr_input = (void (*)(struct mbuf *, int))pptp_ip_input; gre_pr.pr_flags = PR_PROTOLOCK; lck_mtx_unlock(ppp_domain_mutex); lck_mtx_lock(ip_mutex); old_pr = ip_protox[IPPROTO_GRE]; ip_protox[IPPROTO_GRE] = &gre_pr; lck_mtx_unlock(ip_mutex); lck_mtx_lock(ppp_domain_mutex); return 0; } /* ----------------------------------------------------------------------------- dispose pptp datalink structures can't dispose if clients are still attached ----------------------------------------------------------------------------- */ int pptp_ip_dispose() { lck_mtx_unlock(ppp_domain_mutex); lck_mtx_lock(ip_mutex); ip_protox[IPPROTO_GRE] = old_pr; lck_mtx_unlock(ip_mutex); lck_mtx_lock(ppp_domain_mutex); return 0; } /* ----------------------------------------------------------------------------- callback from ip ----------------------------------------------------------------------------- */ void pptp_ip_input(mbuf_t m, int len) { struct ip *ip; u_int32_t from; mbuf_t m1; #if 0 u_int8_t *d, i; d = mtod(m, u_int8_t *); for (i = 0; i < 64; i+=16) { log(LOGVAL, "pptp_ip_input: data 0x %x %x %x %x %x %x %x %x - %x %x %x %x %x %x %x %x\n", d[i+0],d[i+1],d[i+2],d[i+3],d[i+4],d[i+5], d[i+6], d[i+7], d[i+8], d[i+9], d[i+10], d[i+11], d[i+12], d[i+13], d[i+14], d[i+15]); } #endif /* let's make life simpler for upper layers, and make everything contiguous could be more efficient dealing with the original mbuf, but ppp doesn't like much to mbuf chain, neither data compression nor IP layer IP layer seems to expext IP header in a contiguous block */ if (mbuf_getpacket(MBUF_WAITOK, &m1) != 0) goto fail; mbuf_copydata(m, 0, mbuf_pkthdr_len(m), mbuf_data(m1)); mbuf_setlen(m1, mbuf_pkthdr_len(m)); mbuf_pkthdr_setlen(m1, mbuf_pkthdr_len(m)); ip = mbuf_data(m1); from = ip->ip_src.s_addr; /* remove the IP header */ mbuf_adj(m1, ip->ip_hl * 4); lck_mtx_lock(ppp_domain_mutex); if (pptp_rfc_lower_input(m1, from)) { lck_mtx_unlock(ppp_domain_mutex); // success, free the original mbuf mbuf_freem(m); return; } lck_mtx_unlock(ppp_domain_mutex); fail: // the packet was not for us, just call the old hook if (m1) mbuf_freem(m1); if (!((*old_pr).pr_flags & PR_PROTOLOCK)) { lck_mtx_lock(inet_domain_mutex); (*old_pr).pr_input((struct mbuf *)m, len); lck_mtx_unlock(inet_domain_mutex); } else (*old_pr).pr_input((struct mbuf *)m, len); } /* ----------------------------------------------------------------------------- called from pppenet_proto when data need to be sent ----------------------------------------------------------------------------- */ int pptp_ip_output(mbuf_t m, u_int32_t from, u_int32_t to) { struct route ro; struct ip *ip; #if 0 u_int8_t *d, i; d = mtod(m, u_int8_t *); for (i = 0; i < 64; i+=16) { log(LOGVAL, "pptp_ip_output: data 0x %x %x %x %x %x %x %x %x - %x %x %x %x %x %x %x %x\n", d[i+0],d[i+1],d[i+2],d[i+3],d[i+4],d[i+5], d[i+6], d[i+7], d[i+8], d[i+9], d[i+10], d[i+11], d[i+12], d[i+13], d[i+14], d[i+15]); } #endif if (mbuf_prepend(&m, sizeof(struct ip), MBUF_WAITOK) != 0) return 1; ip = mbuf_data(m); ip->ip_tos = 0; ip->ip_off = 0; ip->ip_p = IPPROTO_GRE; ip->ip_len = mbuf_pkthdr_len(m); ip->ip_src.s_addr = from; ip->ip_dst.s_addr = to; ip->ip_ttl = MAXTTL; bzero(&ro, sizeof(ro)); lck_mtx_unlock(ppp_domain_mutex); ip_output((struct mbuf *)m, 0, &ro, 0, 0); lck_mtx_lock(ppp_domain_mutex); return 0; }