aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/udhcp/ChangeLog5
-rw-r--r--networking/udhcp/README151
-rw-r--r--networking/udhcp/README.dumpleases17
-rw-r--r--networking/udhcp/README.udhcpc139
-rw-r--r--networking/udhcp/README.udhcpd59
-rw-r--r--networking/udhcp/TODO7
-rw-r--r--networking/udhcp/clientpacket.c16
-rw-r--r--networking/udhcp/dhcpc.c9
8 files changed, 243 insertions, 160 deletions
diff --git a/networking/udhcp/ChangeLog b/networking/udhcp/ChangeLog
index 9c269d85d..34cfe16f9 100644
--- a/networking/udhcp/ChangeLog
+++ b/networking/udhcp/ChangeLog
@@ -1,4 +1,7 @@
10.9.8 (pending) 10.9.8 (021031)
2+ split up README files (me)
3+ use /dev/urandom to seed xid's (instead of time(0)) (me)
4+ fixed renew behavior (me)
2+ udhcp now fits nicely into busybox 5+ udhcp now fits nicely into busybox
3 (Glenn McGrath <bug1@optushome.com.au> as well as myself) 6 (Glenn McGrath <bug1@optushome.com.au> as well as myself)
4+ updated client manpage (me) 7+ updated client manpage (me)
diff --git a/networking/udhcp/README b/networking/udhcp/README
index d3e5e3fbc..5f4bb78a8 100644
--- a/networking/udhcp/README
+++ b/networking/udhcp/README
@@ -5,155 +5,6 @@ The udhcp server/client package is primarily geared towards embedded
5systems. It does however, strive to be fully functional, and RFC 5systems. It does however, strive to be fully functional, and RFC
6compliant. 6compliant.
7 7
8udhcp server (udhcpd)
9--------------------
10
11The only command line argument to udhcpd is an optional specifed
12config file. If no config file is specified, udhcpd uses the default
13config file, /etc/udhcpd.conf. Ex:
14
15udhcpd /etc/udhcpd.eth1.conf
16
17The udhcp server employs a number of simple config files:
18
19udhcpd.leases
20------------
21
22The udhcpd.leases behavior is designed for an embedded system. The
23file is written either every auto_time seconds, or when a SIGUSR1
24is received (the auto_time timer restarts if a SIGUSR1 is received).
25If you send a SIGTERM to udhcpd directly after a SIGUSR1, udhcpd will
26finish writing the leases file and wait for the aftermentioned script
27to be executed and finish before quiting, so you do not need to sleep
28between sending signals. When the file is written, a script can be
29optionally called to commit the file to flash. Lease times are stored
30in the file by time remaining in lease (for systems without clock
31that works when there is no power), or by the absolute time that it
32expires in seconds from epoch. In the remainig format, expired leases
33are stored as zero. The file is of the format:
34
3516 byte MAC
364 byte ip address
37u32 expire time
3816 byte MAC
394 byte ip address
40u32 expire time
41.
42etc.
43
44example: hexdump udhcpd.leases
45
460000000 1000 c95a 27d9 0000 0000 0000 0000 0000
470000010 a8c0 150a 0d00 2d29 5000 23fc 8566 0000
480000020 0000 0000 0000 0000 a8c0 140a 0d00 4e29
490000030
50
51
52udhcpd.conf
53----------
54
55The format is fairly simple, there is a sample file with all the
56available options and comments describing them in samples/udhcpd.conf
57
58
59udhcp client (udhcpc)
60--------------------
61
62The udhcp client negotiates a lease with the DHCP server and notifies
63a set of scripts when a leases is obtained or lost. The command line
64options for the udhcp client are:
65
66-c, --clientid=CLIENTID Client identifier
67-H, --hostname=HOSTNAME Client hostname
68-h, Alias for -H
69-f, --foreground Do not fork after getting lease
70-b, --background Fork to background if lease cannot be
71 immediately negotiated.
72-i, --interface=INTERFACE Interface to use (default: eth0)
73-n, --now Exit with failure if lease cannot be
74 immediately negotiated.
75-p, --pidfile=file Store process ID of daemon in file
76-q, --quit Quit after obtaining lease
77-r, --request=IP IP address to request (default: none)
78-s, --script=file Run file at dhcp events (default:
79 /usr/share/udhcpc/default.script)
80-v, --version Display version
81
82If the requested IP address cannot be obtained, the client accepts the
83address that the server offers.
84
85When an event occurs, udhcpc calls the action script. The script by
86default is /usr/share/udhcpc/default.script but this can be changed via
87the command line arguments. The three possible arguments to the script
88are:
89
90 deconfig: This argument is used when udhcpc starts, and
91 when a leases is lost. The script should put the interface in an
92 up, but deconfigured state, ie: ifconfig $interface 0.0.0.0.
93
94 bound: This argument is used when udhcpc moves from an
95 unbound, to a bound state. All of the paramaters are set in
96 enviromental variables, The script should configure the interface,
97 and set any other relavent parameters (default gateway, dns server,
98 etc).
99
100 renew: This argument is used when a DHCP lease is renewed. All of
101 the paramaters are set in enviromental variables. This argument is
102 used when the interface is already configured, so the IP address,
103 will not change, however, the other DHCP paramaters, such as the
104 default gateway, subnet mask, and dns server may change.
105
106 nak: This argument is used with udhcpc receives a NAK message.
107 The script with the deconfig argument will be called directly
108 afterwards, so no changes to the network interface are neccessary.
109 This hook is provided for purely informational purposes (the
110 message option may contain a reason for the NAK).
111
112The paramaters for enviromental variables are as follows:
113
114 $HOME - The set $HOME env or "/"
115 $PATH - the set $PATH env or "/bin:/usr/bin:/sbin:/usr/sbin"
116 $1 - What action the script should perform
117 interface - The interface this was obtained on
118 ip - The obtained IP
119 siaddr - The bootp next server option
120 sname - The bootp server name option
121 boot_file - The bootp boot file option
122 subnet - The assigend subnet mask
123 timezone - Offset in seconds from UTC
124 router - A list of routers
125 timesvr - A list of time servers
126 namesvr - A list of IEN 116 name servers
127 dns - A list of DNS server
128 logsvr - A list of MIT-LCS UDP log servers
129 cookiesvr - A list of RFC 865 cookie servers
130 lprsvr - A list of LPR servers
131 hostname - The assigned hostname
132 bootsize - The length in 512 octect blocks of the bootfile
133 domain - The domain name of the network
134 swapsvr - The IP address of the client's swap server
135 rootpath - The path name of the client's root disk
136 ipttl - The TTL to use for this network
137 mtu - The MTU to use for this network
138 broadcast - The broadcast address for this network
139 ntpsrv - A list of NTP servers
140 wins - A list of WINS servers
141 lease - The lease time, in seconds
142 dhcptype - DHCP message type (safely ignored)
143 serverid - The IP of the server
144 message - Reason for a DHCPNAK
145 tftp - The TFTP server name
146 bootfile - The bootfile name
147
148additional options are easily added in options.c.
149
150udhcpc also responds to SIGUSR1 and SIGUSR2. SIGUSR1 will force a renew state,
151and SIGUSR2 will force a release of the current lease, and cause udhcpc to
152go into an inactive state (until it is killed, or receives a SIGUSR1). You do
153not need to sleep between sending signals, as signals received are processed
154sequencially in the order they are received.
155
156
157 8
158compile time options 9compile time options
159------------------- 10-------------------
@@ -185,6 +36,7 @@ options.c contains a set of dhcp options for the client:
185 36
186 code: The DHCP code for this option 37 code: The DHCP code for this option
187 38
39
188busybox drop-in 40busybox drop-in
189-------------- 41--------------
190udhcp is now a drop-in component for busybox (http://busybox.net). 42udhcp is now a drop-in component for busybox (http://busybox.net).
@@ -195,3 +47,4 @@ cp *.[ch] README AUTHORS COPYING ChangeLog TODO \
195 47
196The only two files udhcp does not provide are config.in and 48The only two files udhcp does not provide are config.in and
197Makefile.in, so these may need to be updated from time to time. 49Makefile.in, so these may need to be updated from time to time.
50
diff --git a/networking/udhcp/README.dumpleases b/networking/udhcp/README.dumpleases
new file mode 100644
index 000000000..6367710c4
--- /dev/null
+++ b/networking/udhcp/README.dumpleases
@@ -0,0 +1,17 @@
1udhcp lease dump (dumpleases)
2----------------------------
3
4dumpleases displays the leases written out by the udhcpd server. Lease
5times are stored in the file by time remaining in lease (for systems
6without clock that works when there is no power), or by the absolute
7time that it expires in seconds from epoch. dumpleases accepts the
8following command line options:
9
10-a, --absolute Interpret lease times as expiration time.
11-r, --remaining Interpret lease times as remaining time.
12-f, --file=FILE Read lease information from FILE.
13-h, --help Display help.
14
15Note that if udhcpd has not written a leases file recently, the output
16of may not be up to date.
17
diff --git a/networking/udhcp/README.udhcpc b/networking/udhcp/README.udhcpc
new file mode 100644
index 000000000..3591605e3
--- /dev/null
+++ b/networking/udhcp/README.udhcpc
@@ -0,0 +1,139 @@
1udhcp client (udhcpc)
2--------------------
3
4The udhcp client negotiates a lease with the DHCP server and notifies
5a set of scripts when a leases is obtained or lost.
6
7
8command line options
9-------------------
10
11The command line options for the udhcp client are:
12
13-c, --clientid=CLIENTID Client identifier
14-H, --hostname=HOSTNAME Client hostname
15-h, Alias for -H
16-f, --foreground Do not fork after getting lease
17-b, --background Fork to background if lease cannot be
18 immediately negotiated.
19-i, --interface=INTERFACE Interface to use (default: eth0)
20-n, --now Exit with failure if lease cannot be
21 immediately negotiated.
22-p, --pidfile=file Store process ID of daemon in file
23-q, --quit Quit after obtaining lease
24-r, --request=IP IP address to request (default: none)
25-s, --script=file Run file at dhcp events (default:
26 /usr/share/udhcpc/default.script)
27-v, --version Display version
28
29
30If the requested IP address cannot be obtained, the client accepts the
31address that the server offers.
32
33
34udhcp client scripts
35-------------------
36
37When an event occurs, udhcpc calls the action script. The script by
38default is /usr/share/udhcpc/default.script but this can be changed via
39the command line arguments. The three possible arguments to the script
40are:
41
42 deconfig: This argument is used when udhcpc starts, and
43 when a leases is lost. The script should put the interface in an
44 up, but deconfigured state, ie: ifconfig $interface 0.0.0.0.
45
46 bound: This argument is used when udhcpc moves from an
47 unbound, to a bound state. All of the paramaters are set in
48 enviromental variables, The script should configure the interface,
49 and set any other relavent parameters (default gateway, dns server,
50 etc).
51
52 renew: This argument is used when a DHCP lease is renewed. All of
53 the paramaters are set in enviromental variables. This argument is
54 used when the interface is already configured, so the IP address,
55 will not change, however, the other DHCP paramaters, such as the
56 default gateway, subnet mask, and dns server may change.
57
58 nak: This argument is used with udhcpc receives a NAK message.
59 The script with the deconfig argument will be called directly
60 afterwards, so no changes to the network interface are neccessary.
61 This hook is provided for purely informational purposes (the
62 message option may contain a reason for the NAK).
63
64The paramaters for enviromental variables are as follows:
65
66 $HOME - The set $HOME env or "/"
67 $PATH - the set $PATH env or "/bin:/usr/bin:/sbin:/usr/sbin"
68 $1 - What action the script should perform
69 interface - The interface this was obtained on
70 ip - The obtained IP
71 siaddr - The bootp next server option
72 sname - The bootp server name option
73 boot_file - The bootp boot file option
74 subnet - The assigend subnet mask
75 timezone - Offset in seconds from UTC
76 router - A list of routers
77 timesvr - A list of time servers
78 namesvr - A list of IEN 116 name servers
79 dns - A list of DNS server
80 logsvr - A list of MIT-LCS UDP log servers
81 cookiesvr - A list of RFC 865 cookie servers
82 lprsvr - A list of LPR servers
83 hostname - The assigned hostname
84 bootsize - The length in 512 octect blocks of the bootfile
85 domain - The domain name of the network
86 swapsvr - The IP address of the client's swap server
87 rootpath - The path name of the client's root disk
88 ipttl - The TTL to use for this network
89 mtu - The MTU to use for this network
90 broadcast - The broadcast address for this network
91 ntpsrv - A list of NTP servers
92 wins - A list of WINS servers
93 lease - The lease time, in seconds
94 dhcptype - DHCP message type (safely ignored)
95 serverid - The IP of the server
96 message - Reason for a DHCPNAK
97 tftp - The TFTP server name
98 bootfile - The bootfile name
99
100additional options are easily added in options.c.
101
102
103note on udhcpc's random seed
104---------------------------
105
106udhcpc will seed its random number generator (used for generating xid's)
107by reading /dev/urandom. If you have a lot of embedded systems on the same
108network, with no entropy, you can either seed /dev/urandom by a method of
109your own, or doing the following on startup:
110
111ifconfig eth0 > /dev/urandom
112
113in order to seed /dev/urandom with some data (mac address) unique to your
114system. If reading /dev/urandom fails, udhcpc will fall back to its old
115behavior of seeding with time(0).
116
117
118signals accepted by udhcpc
119-------------------------
120
121udhcpc also responds to SIGUSR1 and SIGUSR2. SIGUSR1 will force a renew state,
122and SIGUSR2 will force a release of the current lease, and cause udhcpc to
123go into an inactive state (until it is killed, or receives a SIGUSR1). You do
124not need to sleep between sending signals, as signals received are processed
125sequencially in the order they are received.
126
127
128compile time options
129-------------------
130
131options.c contains a set of dhcp options for the client:
132
133 name[10]: The name of the option as it will appear in scripts
134
135 flags: The type of option, as well as if it will be requested
136 by the client (OPTION_REQ)
137
138 code: The DHCP code for this option
139
diff --git a/networking/udhcp/README.udhcpd b/networking/udhcp/README.udhcpd
new file mode 100644
index 000000000..bc6137de3
--- /dev/null
+++ b/networking/udhcp/README.udhcpd
@@ -0,0 +1,59 @@
1udhcp server (udhcpd)
2--------------------
3
4The only command line argument to udhcpd is an optional specifed
5config file. If no config file is specified, udhcpd uses the default
6config file, /etc/udhcpd.conf. Ex:
7
8udhcpd /etc/udhcpd.eth1.conf
9
10The udhcp server employs a number of simple config files:
11
12udhcpd.leases
13------------
14
15The udhcpd.leases behavior is designed for an embedded system. The
16file is written either every auto_time seconds, or when a SIGUSR1
17is received (the auto_time timer restarts if a SIGUSR1 is received).
18If you send a SIGTERM to udhcpd directly after a SIGUSR1, udhcpd will
19finish writing the leases file and wait for the aftermentioned script
20to be executed and finish before quiting, so you do not need to sleep
21between sending signals. When the file is written, a script can be
22optionally called to commit the file to flash. Lease times are stored
23in the file by time remaining in lease (for systems without clock
24that works when there is no power), or by the absolute time that it
25expires in seconds from epoch. In the remaining format, expired leases
26are stored as zero. The file is of the format:
27
2816 byte MAC
294 byte ip address
30u32 expire time
3116 byte MAC
324 byte ip address
33u32 expire time
34.
35etc.
36
37example: hexdump udhcpd.leases
38
390000000 1000 c95a 27d9 0000 0000 0000 0000 0000
400000010 a8c0 150a 0d00 2d29 5000 23fc 8566 0000
410000020 0000 0000 0000 0000 a8c0 140a 0d00 4e29
420000030
43
44
45udhcpd.conf
46----------
47
48The format is fairly simple, there is a sample file with all the
49available options and comments describing them in samples/udhcpd.conf
50
51compile time options
52-------------------
53
54dhcpd.h contains the other two compile time options:
55
56 LEASE_TIME: The default lease time if not specified in the config
57 file.
58
59 DHCPD_CONFIG_FILE: The defualt config file to use.
diff --git a/networking/udhcp/TODO b/networking/udhcp/TODO
index 47e451213..f88694a86 100644
--- a/networking/udhcp/TODO
+++ b/networking/udhcp/TODO
@@ -1,17 +1,14 @@
1TODO 1TODO
2---- 2----
3+ Integrade README.*'s with manpages
4+ using time(0) breaks if the system clock changes, find a portable solution
3+ make failure of reading functions revert to previous value, not the default 5+ make failure of reading functions revert to previous value, not the default
4+ sanity code for option[OPT_LEN] 6+ sanity code for option[OPT_LEN]
5+ fix aliasing (ie: eth0:0) 7+ fix aliasing (ie: eth0:0)
6+ DONE: Make sure get_raw_packet only accepts packets on the specified interface
7+ better standard linux distro support 8+ better standard linux distro support
8+ DONE: make config file a command line option for server
9+ IMPLEMENTED: make forking a command line option
10+ make sure packet generation works on a wide varitey of arches 9+ make sure packet generation works on a wide varitey of arches
11+ Interoperability testing 10+ Interoperability testing
12+ Hooks within the DHCP server 11+ Hooks within the DHCP server
13+ Additional bootp support in client/server 12+ Additional bootp support in client/server
14+ Make serverid option in server configurable 13+ Make serverid option in server configurable
15+ DONE: cause client to generate DHCP_VENDOR option
16+ Possibly add failure message to DHCP NAK 14+ Possibly add failure message to DHCP NAK
17+ Possibly log DHCP NAK failure message in client \ No newline at end of file
diff --git a/networking/udhcp/clientpacket.c b/networking/udhcp/clientpacket.c
index ecbd7953f..86faec925 100644
--- a/networking/udhcp/clientpacket.c
+++ b/networking/udhcp/clientpacket.c
@@ -35,6 +35,10 @@
35#include <unistd.h> 35#include <unistd.h>
36#include <netinet/in.h> 36#include <netinet/in.h>
37#include <arpa/inet.h> 37#include <arpa/inet.h>
38#include <errno.h>
39#include <sys/types.h>
40#include <sys/stat.h>
41#include <fcntl.h>
38 42
39 43
40#include "dhcpd.h" 44#include "dhcpd.h"
@@ -49,7 +53,17 @@ unsigned long random_xid(void)
49{ 53{
50 static int initialized; 54 static int initialized;
51 if (!initialized) { 55 if (!initialized) {
52 srand(time(0)); 56 int fd;
57 unsigned long seed;
58
59 fd = open("/dev/urandom", 0);
60 if (fd < 0 || read(fd, &seed, sizeof(seed)) < 0) {
61 LOG(LOG_WARNING, "Could not load seed from /dev/urandom: %s",
62 strerror(errno));
63 seed = time(0);
64 }
65 if (fd >= 0) close(fd);
66 srand(seed);
53 initialized++; 67 initialized++;
54 } 68 }
55 return rand(); 69 return rand();
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index ae40ec9c2..295486c98 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -118,14 +118,14 @@ static void perform_renew(void)
118{ 118{
119 LOG(LOG_INFO, "Performing a DHCP renew"); 119 LOG(LOG_INFO, "Performing a DHCP renew");
120 switch (state) { 120 switch (state) {
121 case RENEWING:
122 run_script(NULL, "deconfig");
123 case BOUND: 121 case BOUND:
124 case REBINDING:
125 change_mode(LISTEN_KERNEL); 122 change_mode(LISTEN_KERNEL);
123 case RENEWING:
124 case REBINDING:
126 state = RENEW_REQUESTED; 125 state = RENEW_REQUESTED;
127 break; 126 break;
128 case RENEW_REQUESTED: 127 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
128 run_script(NULL, "deconfig");
129 case REQUESTING: 129 case REQUESTING:
130 case RELEASED: 130 case RELEASED:
131 change_mode(LISTEN_RAW); 131 change_mode(LISTEN_RAW);
@@ -387,6 +387,7 @@ int main(int argc, char *argv[])
387 packet_num++; 387 packet_num++;
388 } else { 388 } else {
389 /* timed out, go back to init state */ 389 /* timed out, go back to init state */
390 if (state == RENEW_REQUESTED) run_script(NULL, "deconfig");
390 state = INIT_SELECTING; 391 state = INIT_SELECTING;
391 timeout = now; 392 timeout = now;
392 packet_num = 0; 393 packet_num = 0;