xref: /xnu-11215.1.10/bsd/netinet/bootp.h (revision 8d741a5de7ff4191bf97d57b9f54c2f6d4a15585)
1*8d741a5dSApple OSS Distributions /*
2*8d741a5dSApple OSS Distributions  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3*8d741a5dSApple OSS Distributions  *
4*8d741a5dSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*8d741a5dSApple OSS Distributions  *
6*8d741a5dSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*8d741a5dSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*8d741a5dSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*8d741a5dSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*8d741a5dSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*8d741a5dSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*8d741a5dSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*8d741a5dSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*8d741a5dSApple OSS Distributions  *
15*8d741a5dSApple OSS Distributions  * Please obtain a copy of the License at
16*8d741a5dSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*8d741a5dSApple OSS Distributions  *
18*8d741a5dSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*8d741a5dSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*8d741a5dSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*8d741a5dSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*8d741a5dSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*8d741a5dSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*8d741a5dSApple OSS Distributions  * limitations under the License.
25*8d741a5dSApple OSS Distributions  *
26*8d741a5dSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*8d741a5dSApple OSS Distributions  */
28*8d741a5dSApple OSS Distributions /*
29*8d741a5dSApple OSS Distributions  * Bootstrap Protocol (BOOTP).  RFC 951.
30*8d741a5dSApple OSS Distributions  */
31*8d741a5dSApple OSS Distributions /*
32*8d741a5dSApple OSS Distributions  * HISTORY
33*8d741a5dSApple OSS Distributions  *
34*8d741a5dSApple OSS Distributions  * 14 May 1992 ? at NeXT
35*8d741a5dSApple OSS Distributions  *	Added correct padding to struct nextvend.  This is
36*8d741a5dSApple OSS Distributions  *	needed for the i386 due to alignment differences wrt
37*8d741a5dSApple OSS Distributions  *	the m68k.  Also adjusted the size of the array fields
38*8d741a5dSApple OSS Distributions  *	because the NeXT vendor area was overflowing the bootp
39*8d741a5dSApple OSS Distributions  *	packet.
40*8d741a5dSApple OSS Distributions  */
41*8d741a5dSApple OSS Distributions 
42*8d741a5dSApple OSS Distributions #ifndef _NETINET_BOOTP_H_
43*8d741a5dSApple OSS Distributions #define _NETINET_BOOTP_H_
44*8d741a5dSApple OSS Distributions 
45*8d741a5dSApple OSS Distributions #include <netinet/in.h>
46*8d741a5dSApple OSS Distributions #include <netinet/ip.h>
47*8d741a5dSApple OSS Distributions #include <netinet/udp.h>
48*8d741a5dSApple OSS Distributions 
49*8d741a5dSApple OSS Distributions #define iaddr_t struct in_addr
50*8d741a5dSApple OSS Distributions 
51*8d741a5dSApple OSS Distributions struct bootp {
52*8d741a5dSApple OSS Distributions 	u_char  bp_op;          /* packet opcode type */
53*8d741a5dSApple OSS Distributions #define BOOTREQUEST     1
54*8d741a5dSApple OSS Distributions #define BOOTREPLY       2
55*8d741a5dSApple OSS Distributions 	u_char  bp_htype;       /* hardware addr type */
56*8d741a5dSApple OSS Distributions 	u_char  bp_hlen;        /* hardware addr length */
57*8d741a5dSApple OSS Distributions 	u_char  bp_hops;        /* gateway hops */
58*8d741a5dSApple OSS Distributions 	u_int32_t bp_xid;       /* transaction ID */
59*8d741a5dSApple OSS Distributions 	u_short bp_secs;        /* seconds since boot began */
60*8d741a5dSApple OSS Distributions 	u_short bp_unused;
61*8d741a5dSApple OSS Distributions 	iaddr_t bp_ciaddr;      /* client IP address */
62*8d741a5dSApple OSS Distributions 	iaddr_t bp_yiaddr;      /* 'your' IP address */
63*8d741a5dSApple OSS Distributions 	iaddr_t bp_siaddr;      /* server IP address */
64*8d741a5dSApple OSS Distributions 	iaddr_t bp_giaddr;      /* gateway IP address */
65*8d741a5dSApple OSS Distributions 	u_char  bp_chaddr[16];  /* client hardware address */
66*8d741a5dSApple OSS Distributions 	u_char  bp_sname[64];   /* server host name */
67*8d741a5dSApple OSS Distributions 	u_char  bp_file[128];   /* boot file name */
68*8d741a5dSApple OSS Distributions 	u_char  bp_vend[64];    /* vendor-specific area */
69*8d741a5dSApple OSS Distributions };
70*8d741a5dSApple OSS Distributions 
71*8d741a5dSApple OSS Distributions /*
72*8d741a5dSApple OSS Distributions  * UDP port numbers, server and client.
73*8d741a5dSApple OSS Distributions  */
74*8d741a5dSApple OSS Distributions #define IPPORT_BOOTPS           67
75*8d741a5dSApple OSS Distributions #define IPPORT_BOOTPC           68
76*8d741a5dSApple OSS Distributions 
77*8d741a5dSApple OSS Distributions /*
78*8d741a5dSApple OSS Distributions  * "vendor" data permitted for Stanford boot clients.
79*8d741a5dSApple OSS Distributions  */
80*8d741a5dSApple OSS Distributions struct vend {
81*8d741a5dSApple OSS Distributions 	u_char  v_magic[4];     /* magic number */
82*8d741a5dSApple OSS Distributions 	u_int32_t v_flags;      /* flags/opcodes, etc. */
83*8d741a5dSApple OSS Distributions 	u_char  v_unused[56];   /* currently unused */
84*8d741a5dSApple OSS Distributions };
85*8d741a5dSApple OSS Distributions #define VM_STANFORD     "STAN"  /* v_magic for Stanford */
86*8d741a5dSApple OSS Distributions 
87*8d741a5dSApple OSS Distributions /* v_flags values */
88*8d741a5dSApple OSS Distributions #define VF_PCBOOT       1       /* an IBMPC or Mac wants environment info */
89*8d741a5dSApple OSS Distributions #define VF_HELP         2       /* help me, I'm not registered */
90*8d741a5dSApple OSS Distributions 
91*8d741a5dSApple OSS Distributions #define NVMAXTEXT       55      /* don't change this, it just fits RFC951 */
92*8d741a5dSApple OSS Distributions struct nextvend {
93*8d741a5dSApple OSS Distributions 	u_char nv_magic[4];     /* Magic number for vendor specificity */
94*8d741a5dSApple OSS Distributions 	u_char nv_version;      /* NeXT protocol version */
95*8d741a5dSApple OSS Distributions 	/*
96*8d741a5dSApple OSS Distributions 	 * Round the beginning
97*8d741a5dSApple OSS Distributions 	 * of the union to a 16
98*8d741a5dSApple OSS Distributions 	 * bit boundary due to
99*8d741a5dSApple OSS Distributions 	 * struct/union alignment
100*8d741a5dSApple OSS Distributions 	 * on the m68k.
101*8d741a5dSApple OSS Distributions 	 */
102*8d741a5dSApple OSS Distributions 	unsigned short  :0;
103*8d741a5dSApple OSS Distributions 	union {
104*8d741a5dSApple OSS Distributions 		u_char NV0[58];
105*8d741a5dSApple OSS Distributions 		struct {
106*8d741a5dSApple OSS Distributions 			u_char NV1_opcode;      /* opcode - Version 1 */
107*8d741a5dSApple OSS Distributions 			u_char NV1_xid; /* transcation id */
108*8d741a5dSApple OSS Distributions 			u_char NV1_text[NVMAXTEXT];     /* text */
109*8d741a5dSApple OSS Distributions 			u_char NV1_null;        /* null terminator */
110*8d741a5dSApple OSS Distributions 		} NV1;
111*8d741a5dSApple OSS Distributions 	} nv_U;
112*8d741a5dSApple OSS Distributions };
113*8d741a5dSApple OSS Distributions #define nv_unused       nv_U.NV0
114*8d741a5dSApple OSS Distributions #define nv_opcode       nv_U.NV1.NV1_opcode
115*8d741a5dSApple OSS Distributions #define nv_xid          nv_U.NV1.NV1_xid
116*8d741a5dSApple OSS Distributions #define nv_text         nv_U.NV1.NV1_text
117*8d741a5dSApple OSS Distributions #define nv_null         nv_U.NV1.NV1_null
118*8d741a5dSApple OSS Distributions 
119*8d741a5dSApple OSS Distributions /* Magic number */
120*8d741a5dSApple OSS Distributions #define VM_NEXT         "NeXT"  /* v_magic for NeXT, Inc. */
121*8d741a5dSApple OSS Distributions 
122*8d741a5dSApple OSS Distributions /* Opcodes */
123*8d741a5dSApple OSS Distributions #define BPOP_OK         0
124*8d741a5dSApple OSS Distributions #define BPOP_QUERY      1
125*8d741a5dSApple OSS Distributions #define BPOP_QUERY_NE   2
126*8d741a5dSApple OSS Distributions #define BPOP_ERROR      3
127*8d741a5dSApple OSS Distributions 
128*8d741a5dSApple OSS Distributions struct bootp_packet {
129*8d741a5dSApple OSS Distributions 	struct ip bp_ip;
130*8d741a5dSApple OSS Distributions 	struct udphdr bp_udp;
131*8d741a5dSApple OSS Distributions 	struct bootp bp_bootp;
132*8d741a5dSApple OSS Distributions };
133*8d741a5dSApple OSS Distributions 
134*8d741a5dSApple OSS Distributions #define BOOTP_PKTSIZE (sizeof (struct bootp_packet))
135*8d741a5dSApple OSS Distributions 
136*8d741a5dSApple OSS Distributions /* backoffs must be masks */
137*8d741a5dSApple OSS Distributions #define BOOTP_MIN_BACKOFF       0x7ff           /* 2.048 sec */
138*8d741a5dSApple OSS Distributions #define BOOTP_MAX_BACKOFF       0xffff          /* 65.535 sec */
139*8d741a5dSApple OSS Distributions #define BOOTP_RETRY             6               /* # retries */
140*8d741a5dSApple OSS Distributions 
141*8d741a5dSApple OSS Distributions #endif /* _NETINET_BOOTP_H_ */
142