ip.h revision 33851
11541Srgrimes/*
21541Srgrimes * Copyright (c) 1982, 1986, 1993
31541Srgrimes *	The Regents of the University of California.  All rights reserved.
41541Srgrimes *
51541Srgrimes * Redistribution and use in source and binary forms, with or without
61541Srgrimes * modification, are permitted provided that the following conditions
71541Srgrimes * are met:
81541Srgrimes * 1. Redistributions of source code must retain the above copyright
91541Srgrimes *    notice, this list of conditions and the following disclaimer.
101541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111541Srgrimes *    notice, this list of conditions and the following disclaimer in the
121541Srgrimes *    documentation and/or other materials provided with the distribution.
131541Srgrimes * 3. All advertising materials mentioning features or use of this software
141541Srgrimes *    must display the following acknowledgement:
151541Srgrimes *	This product includes software developed by the University of
161541Srgrimes *	California, Berkeley and its contributors.
171541Srgrimes * 4. Neither the name of the University nor the names of its contributors
181541Srgrimes *    may be used to endorse or promote products derived from this software
191541Srgrimes *    without specific prior written permission.
201541Srgrimes *
211541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311541Srgrimes * SUCH DAMAGE.
321541Srgrimes *
3310942Swollman *	@(#)ip.h	8.2 (Berkeley) 6/1/94
3433851Sdima *	$Id: ip.h,v 1.13 1997/12/19 23:33:08 bde Exp $
351541Srgrimes */
361541Srgrimes
372169Spaul#ifndef _NETINET_IP_H_
382169Spaul#define _NETINET_IP_H_
392169Spaul
401541Srgrimes/*
411541Srgrimes * Definitions for internet protocol version 4.
421541Srgrimes * Per RFC 791, September 1981.
431541Srgrimes */
441541Srgrimes#define	IPVERSION	4
451541Srgrimes
461541Srgrimes/*
471541Srgrimes * Structure of an internet header, naked of options.
481541Srgrimes */
491541Srgrimesstruct ip {
5012956Swollman#ifdef _IP_VHL
5112956Swollman	u_char	ip_vhl;			/* version << 4 | header length >> 2 */
5212956Swollman#else
538876Srgrimes#if BYTE_ORDER == LITTLE_ENDIAN
541541Srgrimes	u_char	ip_hl:4,		/* header length */
551541Srgrimes		ip_v:4;			/* version */
561541Srgrimes#endif
578876Srgrimes#if BYTE_ORDER == BIG_ENDIAN
581541Srgrimes	u_char	ip_v:4,			/* version */
591541Srgrimes		ip_hl:4;		/* header length */
601541Srgrimes#endif
6112956Swollman#endif /* not _IP_VHL */
621541Srgrimes	u_char	ip_tos;			/* type of service */
6319136Swollman	u_short	ip_len;			/* total length */
641541Srgrimes	u_short	ip_id;			/* identification */
6519136Swollman	u_short	ip_off;			/* fragment offset field */
6633851Sdima#define	IP_RF 0x8000			/* reserved fragment flag */
671541Srgrimes#define	IP_DF 0x4000			/* dont fragment flag */
681541Srgrimes#define	IP_MF 0x2000			/* more fragments flag */
691541Srgrimes#define	IP_OFFMASK 0x1fff		/* mask for fragmenting bits */
701541Srgrimes	u_char	ip_ttl;			/* time to live */
711541Srgrimes	u_char	ip_p;			/* protocol */
721541Srgrimes	u_short	ip_sum;			/* checksum */
731541Srgrimes	struct	in_addr ip_src,ip_dst;	/* source and dest address */
741541Srgrimes};
751541Srgrimes
7615294Swollman#ifdef _IP_VHL
7715294Swollman#define	IP_MAKE_VHL(v, hl)	((v) << 4 | (hl))
7815294Swollman#define	IP_VHL_HL(vhl)		((vhl) & 0x0f)
7915294Swollman#define	IP_VHL_V(vhl)		((vhl) >> 4)
8015294Swollman#define	IP_VHL_BORING		0x45
8115294Swollman#endif
8215294Swollman
831541Srgrimes#define	IP_MAXPACKET	65535		/* maximum packet size */
841541Srgrimes
851541Srgrimes/*
861541Srgrimes * Definitions for IP type of service (ip_tos)
871541Srgrimes */
881541Srgrimes#define	IPTOS_LOWDELAY		0x10
891541Srgrimes#define	IPTOS_THROUGHPUT	0x08
901541Srgrimes#define	IPTOS_RELIABILITY	0x04
918293Sache#define	IPTOS_MINCOST		0x02
921541Srgrimes
931541Srgrimes/*
941541Srgrimes * Definitions for IP precedence (also in ip_tos) (hopefully unused)
951541Srgrimes */
961541Srgrimes#define	IPTOS_PREC_NETCONTROL		0xe0
971541Srgrimes#define	IPTOS_PREC_INTERNETCONTROL	0xc0
981541Srgrimes#define	IPTOS_PREC_CRITIC_ECP		0xa0
991541Srgrimes#define	IPTOS_PREC_FLASHOVERRIDE	0x80
1001541Srgrimes#define	IPTOS_PREC_FLASH		0x60
1011541Srgrimes#define	IPTOS_PREC_IMMEDIATE		0x40
1021541Srgrimes#define	IPTOS_PREC_PRIORITY		0x20
1038293Sache#define	IPTOS_PREC_ROUTINE		0x00
1041541Srgrimes
1051541Srgrimes/*
1061541Srgrimes * Definitions for options.
1071541Srgrimes */
1081541Srgrimes#define	IPOPT_COPIED(o)		((o)&0x80)
1091541Srgrimes#define	IPOPT_CLASS(o)		((o)&0x60)
1101541Srgrimes#define	IPOPT_NUMBER(o)		((o)&0x1f)
1111541Srgrimes
1121541Srgrimes#define	IPOPT_CONTROL		0x00
1131541Srgrimes#define	IPOPT_RESERVED1		0x20
1141541Srgrimes#define	IPOPT_DEBMEAS		0x40
1151541Srgrimes#define	IPOPT_RESERVED2		0x60
1161541Srgrimes
1171541Srgrimes#define	IPOPT_EOL		0		/* end of option list */
1181541Srgrimes#define	IPOPT_NOP		1		/* no operation */
1191541Srgrimes
1201541Srgrimes#define	IPOPT_RR		7		/* record packet route */
1211541Srgrimes#define	IPOPT_TS		68		/* timestamp */
1221541Srgrimes#define	IPOPT_SECURITY		130		/* provide s,c,h,tcc */
1231541Srgrimes#define	IPOPT_LSRR		131		/* loose source route */
1241541Srgrimes#define	IPOPT_SATID		136		/* satnet id */
1251541Srgrimes#define	IPOPT_SSRR		137		/* strict source route */
12614622Sfenner#define	IPOPT_RA		148		/* router alert */
1271541Srgrimes
1281541Srgrimes/*
1291541Srgrimes * Offsets to fields in options other than EOL and NOP.
1301541Srgrimes */
1311541Srgrimes#define	IPOPT_OPTVAL		0		/* option ID */
1321541Srgrimes#define	IPOPT_OLEN		1		/* option length */
1331541Srgrimes#define IPOPT_OFFSET		2		/* offset within option */
1341541Srgrimes#define	IPOPT_MINOFF		4		/* min value of above */
1351541Srgrimes
1361541Srgrimes/*
1371541Srgrimes * Time stamp option structure.
1381541Srgrimes */
1391541Srgrimesstruct	ip_timestamp {
1401541Srgrimes	u_char	ipt_code;		/* IPOPT_TS */
1411541Srgrimes	u_char	ipt_len;		/* size of structure (variable) */
1421541Srgrimes	u_char	ipt_ptr;		/* index of current entry */
1438876Srgrimes#if BYTE_ORDER == LITTLE_ENDIAN
1441541Srgrimes	u_char	ipt_flg:4,		/* flags, see below */
1451541Srgrimes		ipt_oflw:4;		/* overflow counter */
1461541Srgrimes#endif
1478876Srgrimes#if BYTE_ORDER == BIG_ENDIAN
1481541Srgrimes	u_char	ipt_oflw:4,		/* overflow counter */
1491541Srgrimes		ipt_flg:4;		/* flags, see below */
1501541Srgrimes#endif
1511541Srgrimes	union ipt_timestamp {
1521541Srgrimes		n_long	ipt_time[1];
1531541Srgrimes		struct	ipt_ta {
1541541Srgrimes			struct in_addr ipt_addr;
1551541Srgrimes			n_long ipt_time;
1561541Srgrimes		} ipt_ta[1];
1571541Srgrimes	} ipt_timestamp;
1581541Srgrimes};
1591541Srgrimes
1601541Srgrimes/* flag bits for ipt_flg */
1611541Srgrimes#define	IPOPT_TS_TSONLY		0		/* timestamps only */
1621541Srgrimes#define	IPOPT_TS_TSANDADDR	1		/* timestamps and addresses */
1631541Srgrimes#define	IPOPT_TS_PRESPEC	3		/* specified modules only */
1641541Srgrimes
1651541Srgrimes/* bits for security (not byte swapped) */
1661541Srgrimes#define	IPOPT_SECUR_UNCLASS	0x0000
1671541Srgrimes#define	IPOPT_SECUR_CONFID	0xf135
1681541Srgrimes#define	IPOPT_SECUR_EFTO	0x789a
1691541Srgrimes#define	IPOPT_SECUR_MMMM	0xbc4d
1701541Srgrimes#define	IPOPT_SECUR_RESTR	0xaf13
1711541Srgrimes#define	IPOPT_SECUR_SECRET	0xd788
1721541Srgrimes#define	IPOPT_SECUR_TOPSECRET	0x6bc5
1731541Srgrimes
1741541Srgrimes/*
1751541Srgrimes * Internet implementation parameters.
1761541Srgrimes */
1771541Srgrimes#define	MAXTTL		255		/* maximum time to live (seconds) */
1781541Srgrimes#define	IPDEFTTL	64		/* default ttl, from RFC 1340 */
1791541Srgrimes#define	IPFRAGTTL	60		/* time to live for frags, slowhz */
1801541Srgrimes#define	IPTTLDEC	1		/* subtracted when forwarding */
1811541Srgrimes
1821541Srgrimes#define	IP_MSS		576		/* default maximum segment size */
1832169Spaul
1842169Spaul#endif
185