/* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This 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 OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* ----------------------------------------------------------------------------- * * Theory of operation : * * This file implements the ip protocol module for the ppp interface * ----------------------------------------------------------------------------- */ /* ----------------------------------------------------------------------------- Includes ----------------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "ppp_defs.h" // public ppp values #include "ppp_fam.h" #include "ppp_ip.h" #include "if_ppplink.h" #include "ppp_domain.h" /* ----------------------------------------------------------------------------- Definitions ----------------------------------------------------------------------------- */ /* ----------------------------------------------------------------------------- Forward declarations ----------------------------------------------------------------------------- */ static int ppp_ip_input(struct mbuf *m, char *frame_header, struct ifnet *ifp, u_long dl_tag, int sync_ok); static int ppp_ip_preoutput(struct ifnet *ifp, struct mbuf **m0, struct sockaddr *dst_netaddr, caddr_t route, char *type, char *edst, u_long dl_tag ); /* ----------------------------------------------------------------------------- Globals ----------------------------------------------------------------------------- */ /* ----------------------------------------------------------------------------- init function ----------------------------------------------------------------------------- */ int ppp_ip_init(int init_arg) { return 0; } /* ----------------------------------------------------------------------------- terminate function ----------------------------------------------------------------------------- */ int ppp_ip_dispose(int term_arg) { return 0; } /* ----------------------------------------------------------------------------- attach the PPPx interface ifp to the network protocol IP, called when the ppp interface is ready for ppp traffic ----------------------------------------------------------------------------- */ int ppp_ip_attach(struct ifnet *ifp, u_long *tag) { int ret; struct dlil_proto_reg_str reg; struct dlil_demux_desc desc; u_short ipproto = PPP_IP; struct ppp_fam *fam = (struct ppp_fam *)ifp->family_cookie; LOGDBG(ifp, (LOGVAL, "ppp_ip_attach: name = %s, unit = %d\n", ifp->if_name, ifp->if_unit)); if (fam->ip_tag) { *tag = fam->ip_tag; return 0; // already attached } bzero(®, sizeof(struct dlil_proto_reg_str)); // register demux structure for ppp protocols TAILQ_INIT(®.demux_desc_head); bzero(&desc, sizeof(struct dlil_demux_desc)); desc.type = DLIL_DESC_RAW; desc.native_type = (char *) &ipproto; TAILQ_INSERT_TAIL(®.demux_desc_head, &desc, next); reg.protocol_family = PF_INET; reg.interface_family = ifp->if_family; reg.unit_number = ifp->if_unit; reg.input = ppp_ip_input; reg.pre_output = ppp_ip_preoutput; ret = dlil_attach_protocol(®, &fam->ip_tag); LOGRETURN(ret, ret, "ppp_attach_ip: dlil_attach_protocol error = 0x%x\n"); LOGDBG(ifp, (LOGVAL, "ppp_attach_ip: dlil_attach_protocol tag = 0x%x\n", fam->ip_tag)); *tag = fam->ip_tag; return 0; } /* ----------------------------------------------------------------------------- detach the PPPx interface ifp from the network protocol IP, called when the ppp interface stops ip traffic ----------------------------------------------------------------------------- */ int ppp_ip_detach(struct ifnet *ifp) { int ret; struct ppp_fam *fam = (struct ppp_fam *)ifp->family_cookie; LOGDBG(ifp, (LOGVAL, "ppp_ip_detach\n")); if (!fam->ip_tag) return 0; // already detached ret = dlil_detach_protocol(fam->ip_tag); LOGRETURN(ret, ret, "ppp_ip_detach: dlil_detach_protocol error = 0x%x\n"); fam->ip_tag = 0; return 0; } /* ----------------------------------------------------------------------------- called from dlil when a packet from the interface is to be dispatched to the specific network protocol attached by dl_tag. the network protocol has been determined earlier by the demux function. the packet is in the mbuf chain m without the frame header, which is provided separately. (not used) ----------------------------------------------------------------------------- */ int ppp_ip_input(struct mbuf *m, char *frame_header, struct ifnet *ifp, u_long dl_tag, int sync_ok) { int s; LOGMBUF("ppp_ip_input", m); if (ipflow_fastforward(m)) { return 0; } schednetisr(NETISR_IP); /* Put the packet on the ip input queue */ s = splimp(); if (IF_QFULL(&ipintrq)) { IF_DROP(&ipintrq); splx(s); LOGDBG(ifp, (LOGVAL, "ppp%d: input queue full\n", ifp->if_unit)); ifp->if_iqdrops++; return 1; } IF_ENQUEUE(&ipintrq, m); splx(s); return 0; } /* ----------------------------------------------------------------------------- pre_output function ----------------------------------------------------------------------------- */ int ppp_ip_preoutput(struct ifnet *ifp, struct mbuf **m0, struct sockaddr *dst_netaddr, caddr_t route, char *type, char *edst, u_long dl_tag) { // struct ip *ip; LOGMBUF("ppp_ip_preoutput", *m0); #if 0 (*m0)->m_flags &= ~M_HIGHPRI; /* If this packet has the "low delay" bit set in the IP header, set priority bit for the packet. */ ip = mtod(*m0, struct ip *); if (ip->ip_tos & IPTOS_LOWDELAY) (*m0)->m_flags |= M_HIGHPRI; #endif *(u_int16_t *)type = PPP_IP; return 0; }