⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sys-solaris.c

📁 自己精简过的PPPD代码。在嵌入中应用可以更好的发挥。比原先的小了很多
💻 C
📖 第 1 页 / 共 5 页
字号:
/* * System-dependent procedures for pppd under Solaris 2. * * Parts re-written by Adi Masputra <adi.masputra@sun.com>, based on  * the original sys-svr4.c * * Copyright (c) 2000 by Sun Microsystems, Inc. * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation is hereby granted, provided that the above copyright * notice appears in all copies.   * * SUN MAKES NO REPRESENTATION OR WARRANTIES ABOUT THE SUITABILITY OF * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE, OR NON-INFRINGEMENT.  SUN SHALL NOT BE LIABLE FOR * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES * * Copyright (c) 1995-2002 Paul Mackerras. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * * 2. The name(s) of the authors of this software must not be used to *    endorse or promote products derived from this software without *    prior written permission. * * 3. Redistributions of any form whatsoever must retain the following *    acknowledgment: *    "This product includes software developed by Paul Mackerras *     <paulus@samba.org>". * * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Derived from main.c and pppd.h, which are: * * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. * * 3. The name "Carnegie Mellon University" must not be used to *    endorse or promote products derived from this software without *    prior written permission. For permission or any legal *    details, please contact *      Office of Technology Transfer *      Carnegie Mellon University *      5000 Forbes Avenue *      Pittsburgh, PA  15213-3890 *      (412) 268-4387, fax: (412) 268-7395 *      tech-transfer@andrew.cmu.edu * * 4. Redistributions of any form whatsoever must retain the following *    acknowledgment: *    "This product includes software developed by Computing Services *     at Carnegie Mellon University (http://www.cmu.edu/computing/)." * * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */#define RCSID	"$Id: sys-solaris.c,v 1.14 2005/05/04 21:31:20 carlsonj Exp $"#include <limits.h>#include <stdio.h>#include <stddef.h>#include <stdlib.h>#include <string.h>#include <ctype.h>#include <errno.h>#include <fcntl.h>#include <unistd.h>#include <termios.h>#ifndef CRTSCTS#include <sys/termiox.h>#endif#include <signal.h>#include <utmpx.h>#include <stropts.h>#include <sys/types.h>#include <sys/ioccom.h>#include <sys/stream.h>#include <sys/stropts.h>#include <sys/socket.h>#include <sys/sockio.h>#include <sys/sysmacros.h>#include <sys/systeminfo.h>#include <sys/dlpi.h>#include <sys/stat.h>#include <sys/mkdev.h>#include <net/if.h>#include <net/if_arp.h>#include <net/route.h>#include <net/ppp_defs.h>#include <net/pppio.h>#include <netinet/in.h>#ifdef SOL2#include <sys/tihdr.h>#include <sys/tiuser.h>#include <inet/common.h>#include <inet/mib2.h>#include <sys/ethernet.h>#endif#include "pppd.h"#include "fsm.h"#include "lcp.h"#include "ipcp.h"#include "ccp.h"#if !defined(PPP_DRV_NAME)#define PPP_DRV_NAME	"ppp"#endif /* !defined(PPP_DRV_NAME) */#if !defined(PPP_DEV_NAME)#define PPP_DEV_NAME	"/dev/" PPP_DRV_NAME#endif /* !defined(PPP_DEV_NAME) */#if !defined(AHDLC_MOD_NAME)#define AHDLC_MOD_NAME	"ppp_ahdl"#endif /* !defined(AHDLC_MOD_NAME) */#if !defined(COMP_MOD_NAME)#define COMP_MOD_NAME	"ppp_comp"#endif /* !defined(COMP_MOD_NAME) */#if !defined(IP_DEV_NAME)#define	IP_DEV_NAME	"/dev/ip"#endif /* !defined(IP_DEV_NAME) */#if !defined(IP_MOD_NAME)#define	IP_MOD_NAME	"ip"#endif /* !defined(IP_MOD_NAME) */#if !defined(UDP_DEV_NAME) && defined(SOL2)#define	UDP_DEV_NAME	"/dev/udp"#endif /* !defined(UDP_DEV_NAME) && defined(SOL2) */#if !defined(UDP6_DEV_NAME) && defined(SOL2)#define	UDP6_DEV_NAME	"/dev/udp6"#endif /* !defined(UDP6_DEV_NAME) && defined(SOL2) */static const char rcsid[] = RCSID;#if defined(SOL2)/* * "/dev/udp" is used as a multiplexor to PLINK the interface stream * under. It is used in place of "/dev/ip" since STREAMS will not let * a driver be PLINK'ed under itself, and "/dev/ip" is typically the * driver at the bottom of the tunneling interfaces stream. */static char *mux_dev_name = UDP_DEV_NAME;#elsestatic char *mux_dev_name = IP_DEV_NAME;#endifstatic int	pppfd;static int	fdmuxid = -1;static int	ipfd;static int	ipmuxid = -1;#if defined(INET6) && defined(SOL2)static int	ip6fd;		/* IP file descriptor */static int	ip6muxid = -1;	/* Multiplexer file descriptor */static int	if6_is_up = 0;	/* IPv6 interface has been marked up */#define _IN6_LLX_FROM_EUI64(l, s, eui64, as) do {	\	s->sin6_addr.s6_addr32[0] = htonl(as); 	\	eui64_copy(eui64, s->sin6_addr.s6_addr32[2]);	\	s->sin6_family = AF_INET6;		\	l.lifr_addr.ss_family = AF_INET6;	\	l.lifr_addrlen = 64;			\	l.lifr_addr = laddr;			\	} while (0)#define IN6_LLADDR_FROM_EUI64(l, s, eui64)  \    _IN6_LLX_FROM_EUI64(l, s, eui64, 0xfe800000)#define IN6_LLTOKEN_FROM_EUI64(l, s, eui64) \    _IN6_LLX_FROM_EUI64(l, s, eui64, 0)#endif /* defined(INET6) && defined(SOL2) */#if defined(INET6) && defined(SOL2)static char	first_ether_name[LIFNAMSIZ];	/* Solaris 8 and above */#elsestatic char	first_ether_name[IFNAMSIZ];	/* Before Solaris 8 */#define MAXIFS		256			/* Max # of interfaces */#endif /* defined(INET6) && defined(SOL2) */static int	restore_term;static struct termios inittermios;#ifndef CRTSCTSstatic struct termiox inittermiox;static int	termiox_ok;#endifstatic struct winsize wsinfo;	/* Initial window size info */static pid_t	tty_sid;	/* original session ID for terminal */extern u_char	inpacket_buf[];	/* borrowed from main.c */#define MAX_POLLFDS	32static struct pollfd pollfds[MAX_POLLFDS];static int n_pollfds;static int	link_mtu, link_mru;#define NMODULES	32static int	tty_nmodules;static char	tty_modules[NMODULES][FMNAMESZ+1];static int	tty_npushed;static int	if_is_up;	/* Interface has been marked up */static u_int32_t remote_addr;		/* IP address of peer */static u_int32_t default_route_gateway;	/* Gateway for default route added */static u_int32_t proxy_arp_addr;	/* Addr for proxy arp entry added *//* Prototypes for procedures local to this file. */static int translate_speed __P((int));static int baud_rate_of __P((int));static int get_ether_addr __P((u_int32_t, struct sockaddr *));static int get_hw_addr __P((char *, u_int32_t, struct sockaddr *));static int get_hw_addr_dlpi __P((char *, struct sockaddr *));static int dlpi_attach __P((int, int));static int dlpi_info_req __P((int));static int dlpi_get_reply __P((int, union DL_primitives *, int, int));static int strioctl __P((int, int, void *, int, int));#ifdef SOL2/* * sifppa - Sets interface ppa * * without setting the ppa, ip module will return EINVAL upon setting the * interface UP (SIOCSxIFFLAGS). This is because ip module in 2.8 expects * two DLPI_INFO_REQ to be sent down to the driver (below ip) before * IFF_UP can be set. Plumbing the device causes one DLPI_INFO_REQ to * be sent down, and the second DLPI_INFO_REQ is sent upon receiving * IF_UNITSEL (old) or SIOCSLIFNAME (new) ioctls. Such setting of the ppa * is required because the ppp DLPI provider advertises itself as * a DLPI style 2 type, which requires a point of attachment to be * specified. The only way the user can specify a point of attachment * is via SIOCSLIFNAME or IF_UNITSEL. * * Such changes in the behavior of ip module was made to meet new or * evolving standards requirements. * */static intsifppa(fd, ppa)    int fd;    int ppa;{    return (int)ioctl(fd, IF_UNITSEL, (char *)&ppa);}#endif /* SOL2 */#if defined(SOL2) && defined(INET6)/* * get_first_ethernet - returns the first Ethernet interface name found in  * the system, or NULL if none is found * * NOTE: This is the lifreq version (Solaris 8 and above) */char *get_first_ethernet(){    struct lifnum lifn;    struct lifconf lifc;    struct lifreq *plifreq;    struct lifreq lifr;    int	fd, num_ifs, i, found;    uint_t fl, req_size;    char *req;    fd = socket(AF_INET, SOCK_DGRAM, 0);    if (fd < 0) {	return 0;    }    /*     * Find out how many interfaces are running     */    lifn.lifn_family = AF_UNSPEC;    lifn.lifn_flags = LIFC_NOXMIT;    if (ioctl(fd, SIOCGLIFNUM, &lifn) < 0) {	close(fd);	error("could not determine number of interfaces: %m");	return 0;    }    num_ifs = lifn.lifn_count;    req_size = num_ifs * sizeof(struct lifreq);    req = malloc(req_size);    if (req == NULL) {	close(fd);	error("out of memory");	return 0;    }    /*     * Get interface configuration info for all interfaces     */    lifc.lifc_family = AF_UNSPEC;    lifc.lifc_flags = LIFC_NOXMIT;    lifc.lifc_len = req_size;    lifc.lifc_buf = req;    if (ioctl(fd, SIOCGLIFCONF, &lifc) < 0) {	close(fd);	free(req);	error("SIOCGLIFCONF: %m");	return 0;    }    /*     * And traverse each interface to look specifically for the first     * occurence of an Ethernet interface which has been marked up     */    plifreq = lifc.lifc_req;    found = 0;    for (i = lifc.lifc_len / sizeof(struct lifreq); i > 0; i--, plifreq++) {	if (strchr(plifreq->lifr_name, ':') != NULL)	    continue;	memset(&lifr, 0, sizeof(lifr));	strncpy(lifr.lifr_name, plifreq->lifr_name, sizeof(lifr.lifr_name));	if (ioctl(fd, SIOCGLIFFLAGS, &lifr) < 0) {	    close(fd);	    free(req);	    error("SIOCGLIFFLAGS: %m");	    return 0;	}	fl = lifr.lifr_flags;	if ((fl & (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))		!= (IFF_UP | IFF_BROADCAST))	    continue;	found = 1;	break;    }    free(req);    close(fd);    if (found) {	strncpy(first_ether_name, lifr.lifr_name, sizeof(first_ether_name));	return (char *)first_ether_name;    } else	return NULL;}#else/* * get_first_ethernet - returns the first Ethernet interface name found in  * the system, or NULL if none is found * * NOTE: This is the ifreq version (before Solaris 8).  */char *get_first_ethernet(){    struct ifconf ifc;    struct ifreq *pifreq;    struct ifreq ifr;    int	fd, num_ifs, i, found;    uint_t fl, req_size;    char *req;    fd = socket(AF_INET, SOCK_DGRAM, 0);    if (fd < 0) {	return 0;    }    /*     * Find out how many interfaces are running     */    if (ioctl(fd, SIOCGIFNUM, (char *)&num_ifs) < 0) {	num_ifs = MAXIFS;    }    req_size = num_ifs * sizeof(struct ifreq);    req = malloc(req_size);    if (req == NULL) {	close(fd);	error("out of memory");	return 0;    }    /*     * Get interface configuration info for all interfaces     */    ifc.ifc_len = req_size;    ifc.ifc_buf = req;    if (ioctl(fd, SIOCGIFCONF, &ifc) < 0) {	close(fd);	free(req);	error("SIOCGIFCONF: %m");	return 0;    }    /*     * And traverse each interface to look specifically for the first     * occurence of an Ethernet interface which has been marked up     */    pifreq = ifc.ifc_req;    found = 0;    for (i = ifc.ifc_len / sizeof(struct ifreq); i > 0; i--, pifreq++) {	if (strchr(pifreq->ifr_name, ':') != NULL)	    continue;	memset(&ifr, 0, sizeof(ifr));	strncpy(ifr.ifr_name, pifreq->ifr_name, sizeof(ifr.ifr_name));	if (ioctl(fd, SIOCGIFFLAGS, &ifr) < 0) {	    close(fd);	    free(req);	    error("SIOCGIFFLAGS: %m");	    return 0;	}	fl = ifr.ifr_flags;	if ((fl & (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))		!= (IFF_UP | IFF_BROADCAST))	    continue;	found = 1;	break;    }    free(req);    close(fd);    if (found) {	strncpy(first_ether_name, ifr.ifr_name, sizeof(first_ether_name));	return (char *)first_ether_name;    } else	return NULL;}#endif /* defined(SOL2) && defined(INET6) */#if defined(SOL2)/* * get_if_hwaddr - get the hardware address for the specified * network interface device. */intget_if_hwaddr(u_char *addr, char *if_name){    struct sockaddr s_eth_addr;    struct ether_addr *eth_addr = (struct ether_addr *)&s_eth_addr.sa_data;    if (if_name == NULL)	return -1;    /*     * Send DL_INFO_REQ to the driver to solicit its MAC address     */    if (!get_hw_addr_dlpi(if_name, &s_eth_addr)) {	error("could not obtain hardware address for %s", if_name);	return -1;    }    memcpy(addr, eth_addr->ether_addr_octet, 6);    return 1;}#endif /* SOL2 */#if defined(SOL2) && defined(INET6)/* * slifname - Sets interface ppa and flags * * in addition to the comments stated in sifppa(), IFF_IPV6 bit must * be set in order to declare this as an IPv6 interface */static intslifname(fd, ppa)    int fd;    int ppa;{    struct  lifreq lifr;    int	    ret;    memset(&lifr, 0, sizeof(lifr));    ret = ioctl(fd, SIOCGLIFFLAGS, &lifr);    if (ret < 0)	goto slifname_done;    lifr.lifr_flags |= IFF_IPV6;    lifr.lifr_flags &= ~(IFF_BROADCAST | IFF_IPV4);    lifr.lifr_ppa = ppa;    strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));    ret = ioctl(fd, SIOCSLIFNAME, &lifr);slifname_done:    return ret;}/* * ether_to_eui64 - Convert 48-bit Ethernet address into 64-bit EUI * * walks the list of valid ethernet interfaces, and convert the first * found 48-bit MAC address into EUI 64. caller also assumes that * the system has a properly configured Ethernet interface for this * function to return non-zero. */intether_to_eui64(eui64_t *p_eui64){    struct sockaddr s_eth_addr;    struct ether_addr *eth_addr = (struct ether_addr *)&s_eth_addr.sa_data;    char *if_name;    if ((if_name = get_first_ethernet()) == NULL) {	error("no persistent id can be found");	return 0;    }     /*     * Send DL_INFO_REQ to the driver to solicit its MAC address     */    if (!get_hw_addr_dlpi(if_name, &s_eth_addr)) {	error("could not obtain hardware address for %s", if_name);	return 0;    }    /*

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -