ReactOS 0.4.16-dev-1946-g52006dd
dhcpd.h File Reference
#include <winsock2.h>
#include <iphlpapi.h>
#include "stdint.h"
#include <pshpack1.h>
#include <poppack.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#include <fcntl.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "dhcp.h"
#include "tree.h"
Include dependency graph for dhcpd.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  ether_header
 
struct  ip
 
struct  udphdr
 
struct  option_data
 
struct  string_list
 
struct  iaddr
 
struct  iaddrlist
 
struct  packet
 
struct  hardware
 
struct  client_lease
 
struct  client_config
 
struct  client_state
 
struct  interface_info
 
struct  timeout
 
struct  protocol
 
struct  hash_bucket
 
struct  hash_table
 

Macros

#define IFNAMSIZ   MAX_INTERFACE_NAME_LEN
 
#define ETH_ALEN   6
 
#define ETHER_ADDR_LEN   ETH_ALEN
 
#define IP_RF   0x8000 /* reserved fragment flag */
 
#define IP_DF   0x4000 /* dont fragment flag */
 
#define IP_MF   0x2000 /* more fragments flag */
 
#define IP_OFFMASK   0x1fff /* mask for fragmenting bits */
 
#define ETHERTYPE_IP   0x0800
 
#define IPTOS_LOWDELAY   0x10
 
#define ARPHRD_ETHER   1
 
#define SIZE_T_MAX   1600
 
#define USE_SOCKET_RECEIVE
 
#define USE_SOCKET_SEND
 
#define LOCAL_PORT   68
 
#define REMOTE_PORT   67
 
#define DEFAULT_HASH_SIZE   97
 
#define _PATH_DHCLIENT_CONF   "/etc/dhclient.conf"
 
#define _PATH_DHCLIENT_DB   "/var/db/dhclient.leases"
 
#define DHCPD_LOG_FACILITY   LOG_DAEMON
 
#define MAX_TIME   0x7fffffff
 
#define MIN_TIME   0
 

Enumerations

enum  dhcp_state {
  S_REBOOTING , S_INIT , S_SELECTING , S_REQUESTING ,
  S_BOUND , S_RENEWING , S_REBINDING , S_STATIC ,
  S_RELEASED
}
 

Functions

int cons_options (struct packet *, struct dhcp_packet *, int, struct tree_cache **)
 
charpretty_print_option (unsigned int, unsigned char *, int, int, int)
 
void do_packet (struct interface_info *, struct dhcp_packet *, int, unsigned int, struct iaddr, struct hardware *)
 
void error (char *,...) __attribute__((__format__(__printf__
 
void int warning (char *,...) __attribute__((__format__(__printf__
 
void int int note (char *,...) __attribute__((__format__(__printf__
 
void int int int debug (char *,...) __attribute__((__format__(__printf__
 
void int int int int parse_warn (char *,...) __attribute__((__format__(__printf__
 
void new_parse (char *)
 
int next_token (char **, FILE *)
 
int peek_token (char **, FILE *)
 
void skip_to_semi (FILE *)
 
int parse_semi (FILE *)
 
charparse_string (FILE *)
 
int parse_ip_addr (FILE *, struct iaddr *)
 
void parse_hardware_param (FILE *, struct hardware *)
 
void parse_lease_time (FILE *, time_t *)
 
unsigned charparse_numeric_aggregate (FILE *, unsigned char *, int *, int, int, int)
 
void convert_num (unsigned char *, char *, int, int)
 
time_t parse_date (FILE *)
 
pair cons (caddr_t, pair)
 
struct string_listnew_string_list (size_t size)
 
struct hash_tablenew_hash_table (int)
 
struct hash_bucketnew_hash_bucket (void)
 
void dfree (void *, char *)
 
void free_hash_bucket (struct hash_bucket *, char *)
 
int if_register_bpf (struct interface_info *)
 
void if_register_send (struct interface_info *)
 
void if_register_receive (struct interface_info *)
 
ssize_t send_packet (struct interface_info *, struct dhcp_packet *, size_t, struct in_addr, struct sockaddr_in *, struct hardware *)
 
ssize_t receive_packet (struct interface_info *, unsigned char *, size_t, struct sockaddr_in *, struct hardware *)
 
void discover_interfaces (struct interface_info *)
 
void reinitialize_interfaces (void)
 
void dispatch (HANDLE hStopEvent)
 
void got_one (struct protocol *)
 
void add_timeout (time_t, void(*)(void *), void *)
 
void cancel_timeout (void(*)(void *), void *)
 
void add_protocol (char *, int, void(*)(struct protocol *), void *)
 
void remove_protocol (struct protocol *)
 
struct protocolfind_protocol_by_adapter (struct interface_info *)
 
int interface_link_status (char *)
 
struct hash_tablenew_hash (void)
 
void add_hash (struct hash_table *, unsigned char *, int, unsigned char *)
 
unsigned charhash_lookup (struct hash_table *, unsigned char *, int)
 
void initialize_universes (void)
 
u_int32_t getULong (unsigned char *)
 
int32_t getLong (unsigned char *)
 
u_int16_t getUShort (unsigned char *)
 
int16_t getShort (unsigned char *)
 
void putULong (unsigned char *, u_int32_t)
 
void putLong (unsigned char *, int32_t)
 
void putUShort (unsigned char *, unsigned int)
 
void putShort (unsigned char *, int)
 
struct iaddr subnet_number (struct iaddr, struct iaddr)
 
struct iaddr broadcast_addr (struct iaddr, struct iaddr)
 
int addr_eq (struct iaddr, struct iaddr)
 
charpiaddr (struct iaddr)
 
void dhcpoffer (struct packet *)
 
void dhcpack (struct packet *)
 
void dhcpnak (struct packet *)
 
void send_discover (void *)
 
void send_request (void *)
 
void send_decline (void *)
 
void send_release (void *)
 
void state_reboot (void *)
 
void state_init (void *)
 
void state_release (void *)
 
void state_selecting (void *)
 
void state_requesting (void *)
 
void state_bound (void *)
 
void state_panic (void *)
 
void bind_lease (struct interface_info *)
 
void unbind_lease (struct interface_info *)
 
void make_discover (struct interface_info *, struct client_lease *)
 
void make_request (struct interface_info *, struct client_lease *)
 
void make_decline (struct interface_info *, struct client_lease *)
 
void make_release (struct interface_info *, struct client_lease *)
 
void free_client_lease (struct client_lease *)
 
void rewrite_client_leases (struct interface_info *)
 
void write_client_lease (struct interface_info *, struct client_lease *, int)
 
void priv_script_init (struct interface_info *, char *, char *)
 
void priv_script_write_params (struct interface_info *, char *, struct client_lease *)
 
int priv_script_go (void)
 
void script_init (char *, struct string_list *)
 
void script_write_params (char *, struct client_lease *)
 
int script_go (void)
 
void client_envadd (struct client_state *, const char *, const char *, const char *,...)
 
void script_set_env (struct client_state *, const char *, const char *, const char *)
 
void script_flush_env (struct client_state *)
 
int dhcp_option_ev_name (char *, size_t, struct dhcp_option *)
 
struct client_leasepacket_to_lease (struct packet *)
 
void go_daemon (void)
 
void client_location_changed (void)
 
void bootp (struct packet *)
 
void dhcp (struct packet *)
 
void assemble_hw_header (struct interface_info *, unsigned char *, int *, struct hardware *)
 
void assemble_udp_ip_header (unsigned char *, int *, u_int32_t, u_int32_t, unsigned int, unsigned char *, int)
 
ssize_t decode_hw_header (unsigned char *, int, struct hardware *)
 
ssize_t decode_udp_ip_header (unsigned char *, int, struct sockaddr_in *, unsigned char *, int)
 
void assemble_ethernet_header (struct interface_info *, unsigned char *, int *, struct hardware *)
 
ssize_t decode_ethernet_header (struct interface_info *, unsigned char *, int, struct hardware *)
 
int read_client_conf (struct interface_info *)
 
void read_client_leases (void)
 
void parse_client_statement (FILE *, struct interface_info *, struct client_config *)
 
int parse_X (FILE *, u_int8_t *, int)
 
int parse_option_list (FILE *, u_int8_t *)
 
void parse_interface_declaration (FILE *, struct client_config *)
 
struct interface_infointerface_or_dummy (char *)
 
void make_client_state (struct interface_info *)
 
void make_client_config (struct interface_info *, struct client_config *)
 
void parse_client_lease_statement (FILE *, int)
 
void parse_client_lease_declaration (FILE *, struct client_lease *, struct interface_info **)
 
struct dhcp_optionparse_option_decl (FILE *, struct option_data *)
 
void parse_string_list (FILE *, struct string_list **, int)
 
void parse_reject_statement (FILE *, struct client_config *)
 
struct bufbuf_open (size_t)
 
int buf_add (struct buf *, void *, size_t)
 
int buf_close (int, struct buf *)
 
ssize_t buf_read (int, void *, size_t)
 
void dispatch_imsg (int)
 

Variables

int warnings_occurred
 
void int int int int int lexline
 
void int int int int int lexchar
 
chartoken_line
 
chartlname
 
char comments [4096]
 
int comment_index
 
int eol_token
 
void(* bootp_packet_handler )(struct interface_info *, struct dhcp_packet *, int, unsigned int, struct iaddr, struct hardware *)
 
struct dhcp_option dhcp_options [256]
 
unsigned char dhcp_option_default_priority_list []
 
int sizeof_dhcp_option_default_priority_list
 
struct hash_table universe_hash
 
struct universe dhcp_universe
 
charpath_dhclient_conf
 
charpath_dhclient_db
 
time_t cur_time
 
int log_priority
 
int log_perror
 
struct client_config top_level_config
 

Macro Definition Documentation

◆ _PATH_DHCLIENT_CONF

#define _PATH_DHCLIENT_CONF   "/etc/dhclient.conf"

Definition at line 277 of file dhcpd.h.

◆ _PATH_DHCLIENT_DB

#define _PATH_DHCLIENT_DB   "/var/db/dhclient.leases"

Definition at line 278 of file dhcpd.h.

◆ ARPHRD_ETHER

#define ARPHRD_ETHER   1

Definition at line 88 of file dhcpd.h.

◆ DEFAULT_HASH_SIZE

#define DEFAULT_HASH_SIZE   97

Definition at line 262 of file dhcpd.h.

◆ DHCPD_LOG_FACILITY

#define DHCPD_LOG_FACILITY   LOG_DAEMON

Definition at line 279 of file dhcpd.h.

◆ ETH_ALEN

#define ETH_ALEN   6

Definition at line 50 of file dhcpd.h.

◆ ETHER_ADDR_LEN

#define ETHER_ADDR_LEN   ETH_ALEN

Definition at line 51 of file dhcpd.h.

◆ ETHERTYPE_IP

#define ETHERTYPE_IP   0x0800

Definition at line 86 of file dhcpd.h.

◆ IFNAMSIZ

Definition at line 48 of file dhcpd.h.

◆ IP_DF

#define IP_DF   0x4000 /* dont fragment flag */

Definition at line 70 of file dhcpd.h.

◆ IP_MF

#define IP_MF   0x2000 /* more fragments flag */

Definition at line 71 of file dhcpd.h.

◆ IP_OFFMASK

#define IP_OFFMASK   0x1fff /* mask for fragmenting bits */

Definition at line 72 of file dhcpd.h.

◆ IP_RF

#define IP_RF   0x8000 /* reserved fragment flag */

Definition at line 69 of file dhcpd.h.

◆ IPTOS_LOWDELAY

#define IPTOS_LOWDELAY   0x10

Definition at line 87 of file dhcpd.h.

◆ LOCAL_PORT

#define LOCAL_PORT   68

Definition at line 112 of file dhcpd.h.

◆ MAX_TIME

#define MAX_TIME   0x7fffffff

Definition at line 281 of file dhcpd.h.

◆ MIN_TIME

#define MIN_TIME   0

Definition at line 282 of file dhcpd.h.

◆ REMOTE_PORT

#define REMOTE_PORT   67

Definition at line 113 of file dhcpd.h.

◆ SIZE_T_MAX

#define SIZE_T_MAX   1600

Definition at line 91 of file dhcpd.h.

◆ USE_SOCKET_RECEIVE

#define USE_SOCKET_RECEIVE

Definition at line 93 of file dhcpd.h.

◆ USE_SOCKET_SEND

#define USE_SOCKET_SEND

Definition at line 94 of file dhcpd.h.

Enumeration Type Documentation

◆ dhcp_state

Enumerator
S_REBOOTING 
S_INIT 
S_SELECTING 
S_REQUESTING 
S_BOUND 
S_RENEWING 
S_REBINDING 
S_STATIC 
S_RELEASED 

Definition at line 171 of file dhcpd.h.

171 {
173 S_INIT,
176 S_BOUND,
179 S_STATIC,
181};
@ S_RELEASED
Definition: dhcpd.h:180
@ S_REBOOTING
Definition: dhcpd.h:172
@ S_BOUND
Definition: dhcpd.h:176
@ S_RENEWING
Definition: dhcpd.h:177
@ S_REBINDING
Definition: dhcpd.h:178
@ S_SELECTING
Definition: dhcpd.h:174
@ S_REQUESTING
Definition: dhcpd.h:175
@ S_INIT
Definition: dhcpd.h:173
@ S_STATIC
Definition: dhcpd.h:179

Function Documentation

◆ add_hash()

void add_hash ( struct hash_table table,
unsigned char name,
int  len,
unsigned char pointer 
)

Definition at line 82 of file hash.c.

87{
88 int hashno;
89 struct hash_bucket *bp;
90
91 if (!table)
92 return;
93 if (!len)
94 len = strlen ((char *)name);
95
96 hashno = do_hash (name, len, table -> hash_count);
97 bp = new_hash_bucket ();
98
99 if (!bp) {
100 warn ("Can't add %s to hash table.", name);
101 return;
102 }
103 bp -> name = name;
104 bp -> value = pointer;
105 bp -> next = table -> buckets [hashno];
106 bp -> len = len;
107 table -> buckets [hashno] = bp;
108}
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
struct hash_bucket * new_hash_bucket(void)
Definition: alloc.c:71
static __inline int do_hash(unsigned char *name, int len, int size)
Definition: hash.c:63
GLsizei const GLvoid * pointer
Definition: glext.h:5848
GLenum GLsizei len
Definition: glext.h:6722
static unsigned __int64 next
Definition: rand_nt.c:6
#define warn(...)
struct list buckets
Definition: threadpool.c:324
unsigned char * name
Definition: dhcpd.h:266
Definition: name.c:39
Definition: pdh_main.c:96

Referenced by assign_file_addresses(), assign_inodes(), compute_linkcount(), and initialize_universes().

◆ add_protocol()

void add_protocol ( char name,
int  fd,
void(*)(struct protocol *)  handler,
void local 
)

Definition at line 342 of file dispatch.c.

344{
345 struct protocol *p;
346
347 p = malloc(sizeof(*p));
348 if (!p)
349 error("can't allocate protocol struct for %s", name);
350
351 p->fd = fd;
352 p->handler = handler;
353 p->local = local;
354 p->next = protocols;
355 protocols = p;
356}
struct protocol * protocols
Definition: dispatch.c:56
#define malloc
Definition: debug_ros.c:4
UINT(* handler)(MSIPACKAGE *)
Definition: action.c:7512
#define local
Definition: zutil.h:30
GLfloat GLfloat p
Definition: glext.h:8902
#define error(str)
Definition: mkdosfs.c:1605
static int fd
Definition: io.c:51
struct define * next
Definition: compiler.c:65

Referenced by AdapterDiscoveryThread(), and Server_AcquireParameters().

◆ add_timeout()

void add_timeout ( time_t  when,
void(*)(void *)  where,
void what 
)

Definition at line 253 of file dispatch.c.

254{
255 struct timeout *t, *q;
256
257 DH_DbgPrint(MID_TRACE,("Adding timeout %x %p %x\n", when, where, what));
258 /* See if this timeout supersedes an existing timeout. */
259 t = NULL;
260 for (q = timeouts; q; q = q->next) {
261 if (q->func == where && q->what == what) {
262 if (t)
263 t->next = q->next;
264 else
265 timeouts = q->next;
266 break;
267 }
268 t = q;
269 }
270
271 /* If we didn't supersede a timeout, allocate a timeout
272 structure now. */
273 if (!q) {
274 if (free_timeouts) {
276 free_timeouts = q->next;
277 q->func = where;
278 q->what = what;
279 } else {
280 q = malloc(sizeof(struct timeout));
281 if (!q) {
282 error("Can't allocate timeout structure!");
283 return;
284 }
285 q->func = where;
286 q->what = what;
287 }
288 }
289
290 q->when = when;
291
292 /* Now sort this timeout into the timeout list. */
293
294 /* Beginning of list? */
295 if (!timeouts || timeouts->when > q->when) {
296 q->next = timeouts;
297 timeouts = q;
298 return;
299 }
300
301 /* Middle of list? */
302 for (t = timeouts; t->next; t = t->next) {
303 if (t->next->when > q->when) {
304 q->next = t->next;
305 t->next = q;
306 return;
307 }
308 }
309
310 /* End of list. */
311 t->next = q;
312 q->next = NULL;
313}
static struct timeout * free_timeouts
Definition: dispatch.c:58
struct timeout * timeouts
Definition: dispatch.c:57
#define MID_TRACE
Definition: debug.h:15
#define DH_DbgPrint(_t_, _x_)
Definition: debug.h:49
#define NULL
Definition: types.h:112
GLdouble GLdouble t
Definition: gl.h:2047
GLdouble GLdouble GLdouble GLdouble q
Definition: gl.h:2063
Definition: dhcpd.h:248
void * what
Definition: dhcpd.h:252
time_t when
Definition: dhcpd.h:250

Referenced by bind_lease(), dhcpoffer(), send_discover(), and send_request().

◆ addr_eq()

int addr_eq ( struct iaddr  a,
struct iaddr  b 
)

Definition at line 100 of file util.c.

100 {
101 return a.len == b.len && !memcmp( a.iabuf, b.iabuf, a.len );
102}
int memcmp(void *Buffer1, void *Buffer2, ACPI_SIZE Count)
Definition: utclib.c:112
GLboolean GLboolean GLboolean b
Definition: glext.h:6204
GLboolean GLboolean GLboolean GLboolean a
Definition: glext.h:6204

Referenced by bootp(), and dhcp().

◆ assemble_ethernet_header()

void assemble_ethernet_header ( struct interface_info ,
unsigned char ,
int ,
struct hardware  
)

◆ assemble_hw_header()

void assemble_hw_header ( struct interface_info ,
unsigned char ,
int ,
struct hardware  
)

◆ assemble_udp_ip_header()

void assemble_udp_ip_header ( unsigned char ,
int ,
u_int32_t  ,
u_int32_t  ,
unsigned int  ,
unsigned char ,
int   
)

◆ bind_lease()

void bind_lease ( struct interface_info ip)

Definition at line 703 of file dhclient.c.

704{
705 PDHCP_ADAPTER Adapter;
706 struct client_lease *new_lease = ip->client->new;
708
709 time(&cur_time);
710
711 /* Remember the medium. */
712 ip->client->new->medium = ip->client->medium;
713
714 /* Replace the old active lease with the new one. */
715 if (ip->client->active)
716 free_client_lease(ip->client->active);
717 ip->client->active = ip->client->new;
718 ip->client->new = NULL;
719
720 /* Set up a timeout to start the renewal process. */
721 /* Timeout of zero means no timeout (some implementations seem to use
722 * one day).
723 */
724 if( ip->client->active->renewal - cur_time )
725 add_timeout(ip->client->active->renewal, state_bound, ip);
726
727 note("bound to %s -- renewal in %ld seconds.",
728 piaddr(ip->client->active->address),
729 (long int)(ip->client->active->renewal - cur_time));
730
731 ip->client->state = S_BOUND;
732
733 Adapter = AdapterFindInfo( ip );
734
735 if( Adapter ) setup_adapter( Adapter, new_lease );
736 else {
737 warning("Could not find adapter for info %p\n", ip);
738 return;
739 }
740 set_name_servers( Adapter, new_lease );
741 set_domain( Adapter, new_lease );
742}
PDHCP_ADAPTER AdapterFindInfo(struct interface_info *ip)
Definition: adapter.c:530
void add_timeout(time_t when, void(*where)(void *), void *what)
Definition: dispatch.c:253
int note(char *format,...)
Definition: util.c:12
char * piaddr(struct iaddr addr)
Definition: util.c:6
void free_client_lease(struct client_lease *lease)
Definition: dhclient.c:1757
void state_bound(void *ipp)
Definition: dhclient.c:773
void setup_adapter(PDHCP_ADAPTER Adapter, struct client_lease *new_lease)
Definition: dhclient.c:561
void set_domain(PDHCP_ADAPTER Adapter, struct client_lease *new_lease)
Definition: dhclient.c:483
void set_name_servers(PDHCP_ADAPTER Adapter, struct client_lease *new_lease)
Definition: dhclient.c:421
time_t cur_time
__kernel_time_t time_t
Definition: linux.h:252
__u16 time
Definition: mkdosfs.c:8
#define warning(s)
Definition: debug.h:83
Definition: dhcpd.h:62

Referenced by dhcpack(), and state_selecting().

◆ bootp()

void bootp ( struct packet packet)

Definition at line 799 of file dhclient.c.

800{
801 struct iaddrlist *ap;
802
803 if (packet->raw->op != BOOTREPLY)
804 return;
805
806 /* If there's a reject list, make sure this packet's sender isn't
807 on it. */
808 for (ap = packet->interface->client->config->reject_list;
809 ap; ap = ap->next) {
810 if (addr_eq(packet->client_addr, ap->addr)) {
811 note("BOOTREPLY from %s rejected.", piaddr(ap->addr));
812 return;
813 }
814 }
816}
int addr_eq(struct iaddr a, struct iaddr b)
Definition: util.c:100
#define BOOTREPLY
Definition: dhcp.h:79
void dhcpoffer(struct packet *packet)
Definition: dhclient.c:855
Definition: dhcpd.h:135
struct dhcp_packet * raw
Definition: dhcpd.h:136
struct interface_info * interface
Definition: dhcpd.h:142
struct iaddr client_addr
Definition: dhcpd.h:141
void int int ULONGLONG int va_list * ap
Definition: winesup.h:36

Referenced by do_packet().

◆ broadcast_addr()

struct iaddr broadcast_addr ( struct iaddr  addr,
struct iaddr  mask 
)

Definition at line 178 of file util.c.

178 {
179 struct iaddr bcast = { 0 };
180 return bcast;
181}
Definition: dhcpd.h:125

Referenced by priv_script_write_params().

◆ buf_add()

int buf_add ( struct buf ,
void ,
size_t   
)

◆ buf_close()

int buf_close ( int  ,
struct buf  
)

◆ buf_open()

struct buf * buf_open ( size_t  )

◆ buf_read()

ssize_t buf_read ( int  ,
void ,
size_t   
)

◆ cancel_timeout()

void cancel_timeout ( void(*)(void *)  where,
void what 
)

Definition at line 316 of file dispatch.c.

317{
318 struct timeout *t, *q;
319
320 /* Look for this timeout on the list, and unlink it if we find it. */
321 t = NULL;
322 for (q = timeouts; q; q = q->next) {
323 if (q->func == where && q->what == what) {
324 if (t)
325 t->next = q->next;
326 else
327 timeouts = q->next;
328 break;
329 }
330 t = q;
331 }
332
333 /* If we found the timeout, put it on the free list. */
334 if (q) {
335 q->next = free_timeouts;
337 }
338}

Referenced by dhcpack(), dhcpnak(), dhcpoffer(), send_request(), and state_selecting().

◆ client_envadd()

void client_envadd ( struct client_state ,
const char ,
const char ,
const char ,
  ... 
)

◆ client_location_changed()

void client_location_changed ( void  )

◆ cons()

pair cons ( caddr_t  car,
pair  cdr 
)

Definition at line 57 of file tree.c.

60{
61 pair foo = (pair)dmalloc (sizeof *foo, "cons");
62 if (!foo)
63 error ("no memory for cons.");
64 foo -> car = car;
65 foo -> cdr = cdr;
66 return foo;
67}
void * dmalloc(int size, char *name)
Definition: util.c:104
Definition: _pair.h:47

Referenced by xmlParseConditionalSections(), xmlParseContentInternal(), xmlParseExternalSubset(), xmlParseInternalSubset(), and xmlParseStartTag2().

◆ cons_options()

int cons_options ( struct packet inpacket,
struct dhcp_packet outpacket,
int  mms,
struct tree_cache **  options 
)

Definition at line 199 of file options.c.

201{
202 unsigned char priority_list[300], buffer[4096];
203 int priority_len, main_buffer_size, mainbufix;
204 int option_size, length;
205
206 /*
207 * If the client has provided a maximum DHCP message size, use
208 * that; otherwise, if it's BOOTP, only 64 bytes; otherwise use
209 * up to the minimum IP MTU size (576 bytes).
210 *
211 * XXX if a BOOTP client specifies a max message size, we will
212 * honor it.
213 */
214 if (!mms &&
215 inpacket &&
216 inpacket->options[DHO_DHCP_MAX_MESSAGE_SIZE].data &&
217 (inpacket->options[DHO_DHCP_MAX_MESSAGE_SIZE].len >=
218 sizeof(u_int16_t)))
219 mms = getUShort(
220 inpacket->options[DHO_DHCP_MAX_MESSAGE_SIZE].data);
221
222 if (mms)
223 main_buffer_size = mms - DHCP_FIXED_LEN;
224 else
225 main_buffer_size = 576 - DHCP_FIXED_LEN;
226
227 if (main_buffer_size > sizeof(buffer))
228 main_buffer_size = sizeof(buffer);
229
230 /* Preload the option priority list with mandatory options. */
231 priority_len = 0;
232 priority_list[priority_len++] = DHO_DHCP_MESSAGE_TYPE;
233 priority_list[priority_len++] = DHO_DHCP_SERVER_IDENTIFIER;
234 priority_list[priority_len++] = DHO_DHCP_LEASE_TIME;
235 priority_list[priority_len++] = DHO_DHCP_MESSAGE;
236
237 /*
238 * If the client has provided a list of options that it wishes
239 * returned, use it to prioritize. Otherwise, prioritize based
240 * on the default priority list.
241 */
242 if (inpacket &&
244 int prlen =
246 if (prlen + priority_len > sizeof(priority_list))
247 prlen = sizeof(priority_list) - priority_len;
248
249 memcpy(&priority_list[priority_len],
251 prlen);
252 priority_len += prlen;
253 } else {
254 memcpy(&priority_list[priority_len],
258 }
259
260 /* Copy the options into the big buffer... */
261 option_size = store_options(
262 buffer,
263 main_buffer_size - 7,
264 options, priority_list, priority_len, main_buffer_size,
265 main_buffer_size);
266
267 /* Put the cookie up front... */
268 memcpy(outpacket->options, DHCP_OPTIONS_COOKIE, 4);
269 mainbufix = 4;
270
271 /*
272 * If we're going to have to overload, store the overload option
273 * at the beginning. If we can, though, just store the whole
274 * thing in the packet's option buffer and leave it at that.
275 */
276 if (option_size <= main_buffer_size - mainbufix) {
277 memcpy(&outpacket->options[mainbufix],
278 buffer, option_size);
279 mainbufix += option_size;
280 if (mainbufix < main_buffer_size)
281 outpacket->options[mainbufix++] = DHO_END;
282 length = DHCP_FIXED_NON_UDP + mainbufix;
283 } else {
284 outpacket->options[mainbufix++] = DHO_DHCP_OPTION_OVERLOAD;
285 outpacket->options[mainbufix++] = 1;
286 if (option_size >
287 main_buffer_size - mainbufix + DHCP_FILE_LEN)
288 outpacket->options[mainbufix++] = 3;
289 else
290 outpacket->options[mainbufix++] = 1;
291
292 memcpy(&outpacket->options[mainbufix],
293 buffer, main_buffer_size - mainbufix);
294 length = DHCP_FIXED_NON_UDP + mainbufix;
295 }
296 return (length);
297}
int store_options(unsigned char *, int, struct tree_cache **, unsigned char *, int, int, int)
Definition: options.c:303
int sizeof_dhcp_option_default_priority_list
Definition: tables.c:408
unsigned char dhcp_option_default_priority_list[]
Definition: tables.c:329
u_int16_t getUShort(unsigned char *data)
Definition: util.c:88
#define DHO_DHCP_MESSAGE
Definition: dhcp.h:152
#define DHO_DHCP_MAX_MESSAGE_SIZE
Definition: dhcp.h:153
#define DHO_DHCP_PARAMETER_REQUEST_LIST
Definition: dhcp.h:151
#define DHCP_FILE_LEN
Definition: dhcp.h:47
#define DHCP_FIXED_NON_UDP
Definition: dhcp.h:48
#define DHO_DHCP_MESSAGE_TYPE
Definition: dhcp.h:149
#define DHCP_OPTIONS_COOKIE
Definition: dhcp.h:91
#define DHO_END
Definition: dhcp.h:159
#define DHO_DHCP_OPTION_OVERLOAD
Definition: dhcp.h:148
#define DHO_DHCP_SERVER_IDENTIFIER
Definition: dhcp.h:150
#define DHO_DHCP_LEASE_TIME
Definition: dhcp.h:147
#define DHCP_FIXED_LEN
Definition: dhcp.h:49
GLuint buffer
Definition: glext.h:5915
GLuint GLsizei GLsizei * length
Definition: glext.h:6040
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
unsigned short u_int16_t
Definition: rosdhcp.h:36
unsigned char options[DHCP_OPTION_LEN]
Definition: dhcp.h:72
struct option_data options[256]
Definition: dhcpd.h:144

Referenced by make_decline(), make_discover(), make_release(), and make_request().

◆ convert_num()

void convert_num ( unsigned char ,
char ,
int  ,
int   
)

◆ debug()

void int int int debug ( char ,
  ... 
)

◆ decode_ethernet_header()

ssize_t decode_ethernet_header ( struct interface_info ,
unsigned char ,
int  ,
struct hardware  
)

◆ decode_hw_header()

ssize_t decode_hw_header ( unsigned char ,
int  ,
struct hardware  
)

◆ decode_udp_ip_header()

ssize_t decode_udp_ip_header ( unsigned char ,
int  ,
struct sockaddr_in ,
unsigned char ,
int   
)

◆ dfree()

void dfree ( void ptr,
char name 
)

Definition at line 79 of file alloc.c.

80{
81 if (!ptr) {
82 warning("dfree %s: free on null pointer.", name);
83 return;
84 }
85 free(ptr);
86}
#define free
Definition: debug_ros.c:5
static PVOID ptr
Definition: dispmode.c:27

Referenced by do_host_lookup(), free_hash_bucket(), tree_concat(), and tree_evaluate().

◆ dhcp()

void dhcp ( struct packet packet)

Definition at line 819 of file dhclient.c.

820{
821 struct iaddrlist *ap;
822 void (*handler)(struct packet *);
823 char *type;
824
825 switch (packet->packet_type) {
826 case DHCPOFFER:
828 type = "DHCPOFFER";
829 break;
830 case DHCPNAK:
832 type = "DHCPNACK";
833 break;
834 case DHCPACK:
836 type = "DHCPACK";
837 break;
838 default:
839 return;
840 }
841
842 /* If there's a reject list, make sure this packet's sender isn't
843 on it. */
844 for (ap = packet->interface->client->config->reject_list;
845 ap; ap = ap->next) {
846 if (addr_eq(packet->client_addr, ap->addr)) {
847 note("%s from %s rejected.", type, piaddr(ap->addr));
848 return;
849 }
850 }
851 (*handler)(packet);
852}
#define DHCPNAK
Definition: dhcp.h:167
#define DHCPACK
Definition: dhcp.h:166
#define DHCPOFFER
Definition: dhcp.h:163
void dhcpnak(struct packet *packet)
Definition: dhclient.c:1068
void dhcpack(struct packet *packet)
Definition: dhclient.c:338
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
int packet_type
Definition: dhcpd.h:138

Referenced by do_packet(), and START_TEST().

◆ dhcp_option_ev_name()

int dhcp_option_ev_name ( char buf,
size_t  buflen,
struct dhcp_option option 
)

Definition at line 2009 of file dhclient.c.

2010{
2011 int i;
2012
2013 for (i = 0; option->name[i]; i++) {
2014 if (i + 1 == buflen)
2015 return 0;
2016 if (option->name[i] == '-')
2017 buf[i] = '_';
2018 else
2019 buf[i] = option->name[i];
2020 }
2021
2022 buf[i] = 0;
2023 return 1;
2024}
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
Definition: getopt.h:109
WCHAR * name
Definition: getopt.h:110

Referenced by priv_script_write_params().

◆ dhcpack()

void dhcpack ( struct packet packet)

Definition at line 338 of file dhclient.c.

339{
341 struct client_lease *lease;
343
344 time(&cur_time);
345
346 /* If we're not receptive to an offer right now, or if the offer
347 has an unrecognizable transaction id, then just drop it. */
348 if (packet->interface->client->xid != packet->raw->xid ||
349 (packet->interface->hw_address.hlen != packet->raw->hlen) ||
350 (memcmp(packet->interface->hw_address.haddr,
351 packet->raw->chaddr, packet->raw->hlen)))
352 return;
353
354 if (ip->client->state != S_REBOOTING &&
355 ip->client->state != S_REQUESTING &&
356 ip->client->state != S_RENEWING &&
357 ip->client->state != S_REBINDING)
358 return;
359
360 note("DHCPACK from %s", piaddr(packet->client_addr));
361
362 lease = packet_to_lease(packet);
363 if (!lease) {
364 note("packet_to_lease failed.");
365 return;
366 }
367
368 ip->client->new = lease;
369
370 /* Stop resending DHCPREQUEST. */
372
373 /* Figure out the lease time. */
374 if (ip->client->new->options[DHO_DHCP_LEASE_TIME].data)
375 ip->client->new->expiry = getULong(
376 ip->client->new->options[DHO_DHCP_LEASE_TIME].data);
377 else
378 ip->client->new->expiry = DHCP_DEFAULT_LEASE_TIME;
379 /* A number that looks negative here is really just very large,
380 because the lease expiry offset is unsigned. */
381 if (ip->client->new->expiry < 0)
382 ip->client->new->expiry = TIME_MAX;
383 /* XXX should be fixed by resetting the client state */
384 if (ip->client->new->expiry < 60)
385 ip->client->new->expiry = 60;
386
387 /* Take the server-provided renewal time if there is one;
388 otherwise figure it out according to the spec. */
389 if (ip->client->new->options[DHO_DHCP_RENEWAL_TIME].len)
390 ip->client->new->renewal = getULong(
391 ip->client->new->options[DHO_DHCP_RENEWAL_TIME].data);
392 else
393 ip->client->new->renewal = ip->client->new->expiry / 2;
394
395 /* Same deal with the rebind time. */
396 if (ip->client->new->options[DHO_DHCP_REBINDING_TIME].len)
397 ip->client->new->rebind = getULong(
398 ip->client->new->options[DHO_DHCP_REBINDING_TIME].data);
399 else
400 ip->client->new->rebind = ip->client->new->renewal +
401 ip->client->new->renewal / 2 + ip->client->new->renewal / 4;
402
403#ifdef __REACTOS__
404 ip->client->new->lease = ip->client->new->expiry;
405 ip->client->new->obtained = cur_time;
406#endif
407 ip->client->new->expiry += cur_time;
408 /* Lease lengths can never be negative. */
409 if (ip->client->new->expiry < cur_time)
410 ip->client->new->expiry = TIME_MAX;
411 ip->client->new->renewal += cur_time;
412 if (ip->client->new->renewal < cur_time)
413 ip->client->new->renewal = TIME_MAX;
414 ip->client->new->rebind += cur_time;
415 if (ip->client->new->rebind < cur_time)
416 ip->client->new->rebind = TIME_MAX;
417
418 bind_lease(ip);
419}
void cancel_timeout(void(*where)(void *), void *what)
Definition: dispatch.c:316
u_int32_t getULong(unsigned char *data)
Definition: util.c:96
#define DHO_DHCP_RENEWAL_TIME
Definition: dhcp.h:154
#define DHO_DHCP_REBINDING_TIME
Definition: dhcp.h:155
#define TIME_MAX
Definition: dhclient.c:90
struct client_lease * packet_to_lease(struct packet *packet)
Definition: dhclient.c:974
void bind_lease(struct interface_info *ip)
Definition: dhclient.c:703
#define DHCP_DEFAULT_LEASE_TIME
Definition: rosdhcp.h:32

Referenced by dhcp().

◆ dhcpnak()

void dhcpnak ( struct packet packet)

Definition at line 1068 of file dhclient.c.

1069{
1070 struct interface_info *ip = packet->interface;
1071
1072 /* If we're not receptive to an offer right now, or if the offer
1073 has an unrecognizable transaction id, then just drop it. */
1074 if (packet->interface->client->xid != packet->raw->xid ||
1075 (packet->interface->hw_address.hlen != packet->raw->hlen) ||
1076 (memcmp(packet->interface->hw_address.haddr,
1077 packet->raw->chaddr, packet->raw->hlen)))
1078 return;
1079
1080 if (ip->client->state != S_REBOOTING &&
1081 ip->client->state != S_REQUESTING &&
1082 ip->client->state != S_RENEWING &&
1083 ip->client->state != S_REBINDING)
1084 return;
1085
1086 note("DHCPNAK from %s", piaddr(packet->client_addr));
1087
1088 if (!ip->client->active) {
1089 note("DHCPNAK with no active lease.\n");
1090 return;
1091 }
1092
1093 free_client_lease(ip->client->active);
1094 ip->client->active = NULL;
1095
1096 /* Stop sending DHCPREQUEST packets... */
1098
1099 ip->client->state = S_INIT;
1100 state_init(ip);
1101}
void state_init(void *ipp)
Definition: dhclient.c:210

Referenced by dhcp().

◆ dhcpoffer()

void dhcpoffer ( struct packet packet)

Definition at line 855 of file dhclient.c.

856{
858 struct client_lease *lease, *lp;
859 int i;
860 int arp_timeout_needed = 0, stop_selecting;
862 "DHCPOFFER" : "BOOTREPLY";
864
865 time(&cur_time);
866
867 /* If we're not receptive to an offer right now, or if the offer
868 has an unrecognizable transaction id, then just drop it. */
869 if (ip->client->state != S_SELECTING ||
870 packet->interface->client->xid != packet->raw->xid ||
871 (packet->interface->hw_address.hlen != packet->raw->hlen) ||
872 (memcmp(packet->interface->hw_address.haddr,
873 packet->raw->chaddr, packet->raw->hlen)))
874 return;
875
876 note("%s from %s", name, piaddr(packet->client_addr));
877
878
879 /* If this lease doesn't supply the minimum required parameters,
880 blow it off. */
881 for (i = 0; ip->client->config->required_options[i]; i++) {
882 if (!packet->options[ip->client->config->
883 required_options[i]].len) {
884 note("%s isn't satisfactory.", name);
885 return;
886 }
887 }
888
889 /* If we've already seen this lease, don't record it again. */
890 for (lease = ip->client->offered_leases;
891 lease; lease = lease->next) {
892 if (lease->address.len == sizeof(packet->raw->yiaddr) &&
893 !memcmp(lease->address.iabuf,
894 &packet->raw->yiaddr, lease->address.len)) {
895 debug("%s already seen.", name);
896 return;
897 }
898 }
899
900 lease = packet_to_lease(packet);
901 if (!lease) {
902 note("packet_to_lease failed.");
903 return;
904 }
905
906 /* If this lease was acquired through a BOOTREPLY, record that
907 fact. */
909 lease->is_bootp = 1;
910
911 /* Record the medium under which this lease was offered. */
912 lease->medium = ip->client->medium;
913
914 /* Send out an ARP Request for the offered IP address. */
915 if( !check_arp( ip, lease ) ) {
916 note("Arp check failed\n");
917 return;
918 }
919
920 /* Figure out when we're supposed to stop selecting. */
921 stop_selecting =
922 ip->client->first_sending + ip->client->config->select_interval;
923
924 /* If this is the lease we asked for, put it at the head of the
925 list, and don't mess with the arp request timeout. */
926 if (lease->address.len == ip->client->requested_address.len &&
927 !memcmp(lease->address.iabuf,
928 ip->client->requested_address.iabuf,
929 ip->client->requested_address.len)) {
930 lease->next = ip->client->offered_leases;
931 ip->client->offered_leases = lease;
932 } else {
933 /* If we already have an offer, and arping for this
934 offer would take us past the selection timeout,
935 then don't extend the timeout - just hope for the
936 best. */
937 if (ip->client->offered_leases &&
938 (cur_time + arp_timeout_needed) > stop_selecting)
939 arp_timeout_needed = 0;
940
941 /* Put the lease at the end of the list. */
942 lease->next = NULL;
943 if (!ip->client->offered_leases)
944 ip->client->offered_leases = lease;
945 else {
946 for (lp = ip->client->offered_leases; lp->next;
947 lp = lp->next)
948 ; /* nothing */
949 lp->next = lease;
950 }
951 }
952
953 /* If we're supposed to stop selecting before we've had time
954 to wait for the ARPREPLY, add some delay to wait for
955 the ARPREPLY. */
956 if (stop_selecting - cur_time < arp_timeout_needed)
957 stop_selecting = cur_time + arp_timeout_needed;
958
959 /* If the selecting interval has expired, go immediately to
960 state_selecting(). Otherwise, time out into
961 state_selecting at the select interval. */
962 if (stop_selecting <= 0)
964 else {
965 add_timeout(stop_selecting, state_selecting, ip);
967 }
968}
void send_discover(void *ipp)
Definition: dhclient.c:1108
void state_selecting(void *ipp)
Definition: dhclient.c:257
int check_arp(struct interface_info *ip, struct client_lease *lp)
Definition: dhclient.c:137
#define debug(msg)
Definition: key_call.c:71
struct string_list * medium
Definition: dhcpd.h:164
struct iaddr address
Definition: dhcpd.h:156
unsigned int is_bootp
Definition: dhcpd.h:166
struct client_lease * next
Definition: dhcpd.h:154

Referenced by bootp(), and dhcp().

◆ discover_interfaces()

void discover_interfaces ( struct interface_info )

◆ dispatch()

void dispatch ( HANDLE  hStopEvent)

Definition at line 70 of file dispatch.c.

71{
72 int count, to_msec;
73 struct protocol *l;
74 time_t howlong, cur_time;
75 HANDLE Events[3];
76 int EventCount = 2;
77
79 Events[1] = hStopEvent;
81
82 ApiLock();
83
84 do {
85 /*
86 * Call any expired timeouts, and then if there's still
87 * a timeout registered, time out the select call then.
88 */
89 time(&cur_time);
90
91 if (timeouts)
92 {
93 struct timeout *t;
94
95 if (timeouts->when <= cur_time) {
96 t = timeouts;
97 timeouts = timeouts->next;
98 (*(t->func))(t->what);
99 t->next = free_timeouts;
101 continue;
102 }
103
104 /*
105 * Figure timeout in milliseconds, and check for
106 * potential overflow, so we can cram into an
107 * int for poll, while not polling with a
108 * negative timeout and blocking indefinitely.
109 */
110 howlong = timeouts->when - cur_time;
111 if (howlong > INT_MAX / 1000)
112 howlong = INT_MAX / 1000;
113 to_msec = howlong * 1000;
114 }
115 else
116 {
117 to_msec = INFINITE;
118 }
119
121 {
122 Events[2] = WSACreateEvent();
123 if (Events[2] != WSA_INVALID_EVENT)
124 {
126 if (count != NO_ERROR)
127 {
130 }
131 else
132 {
133 EventCount = 3;
134 }
135 }
136 }
138 {
141
142 EventCount = 2;
143 }
144
145 ApiUnlock();
146 count = WaitForMultipleObjects(EventCount,
147 Events,
148 FALSE,
149 to_msec);
150 ApiLock();
151 if (count == WAIT_OBJECT_0)
152 {
153 /* Adapter state change */
154 continue;
155 }
156 else if (count == WAIT_OBJECT_0 + 1)
157 {
158 /* Stop event signalled */
159 DPRINT("Dispatch thread stop event!\n");
160 break;
161 }
162 else if (count == WAIT_OBJECT_0 + 2)
163 {
164 /* Packet received */
165
166 /* WSA events are manual reset events */
168 }
169 else
170 {
171 /* Timeout */
172 continue;
173 }
174
175 for (l = protocols; l; l = l->next) {
176 struct interface_info *ip;
177 ip = l->local;
178 if (ip && (l->handler != got_one ||
179 !ip->dead)) {
180 DH_DbgPrint(MID_TRACE,("Handling %x\n", l));
181 (*(l->handler))(l);
182 }
183 }
184 } while (1);
185
187
188 ApiUnlock();
189
190 DPRINT("Dispatch thread stopped!\n");
191}
VOID ApiLock()
Definition: api.c:22
VOID ApiUnlock()
Definition: api.c:26
HANDLE hAdapterStateChangedEvent
Definition: dhcpcsvc.c:20
SOCKET DhcpSocket
Definition: adapter.c:8
void got_one(struct protocol *l)
Definition: dispatch.c:194
HANDLE Events[3]
Definition: schedsvc.c:40
r l[0]
Definition: byte_order.h:168
#define NO_ERROR
Definition: dderror.h:5
HANDLE hStopEvent
Definition: dhcpcsvc.c:19
#define FALSE
Definition: types.h:117
BOOL WSAAPI WSAResetEvent(IN WSAEVENT hEvent)
Definition: event.c:53
BOOL WSAAPI WSACloseEvent(IN WSAEVENT hEvent)
Definition: event.c:23
INT WSAAPI WSAEventSelect(IN SOCKET s, IN WSAEVENT hEventObject, IN LONG lNetworkEvents)
Definition: select.c:182
#define INFINITE
Definition: serial.h:102
GLuint GLuint GLsizei count
Definition: gl.h:1545
#define INT_MAX
Definition: intsafe.h:150
#define DPRINT
Definition: sndvol32.h:73
DWORD WINAPI WaitForMultipleObjects(IN DWORD nCount, IN CONST HANDLE *lpHandles, IN BOOL bWaitAll, IN DWORD dwMilliseconds)
Definition: synch.c:151
#define WAIT_OBJECT_0
Definition: winbase.h:383
WINSOCK_API_LINKAGE WSAEVENT WSAAPI WSACreateEvent(void)
Definition: event.c:42
#define WSA_INVALID_EVENT
Definition: winsock2.h:617
#define FD_READ
Definition: winsock.h:399
#define INVALID_SOCKET
Definition: winsock.h:326
#define FD_CLOSE
Definition: winsock.h:404

Referenced by create_database(), create_list(), create_view(), CxxHandleV8Frame(), database_invoke(), ICreateTypeInfo2_fnSetTypeFlags(), init_test_dispatch(), InstallerImpl_OpenDatabase(), InstallerImpl_OpenPackage(), InstallerImpl_Products(), InstallerImpl_RelatedProducts(), InstallerImpl_SummaryInformation(), main(), run_script(), ServiceMain(), session_invoke(), svc_create(), svc_reg(), svc_tp_create(), test_CreateTypeLib(), test_IConnectionPoint(), test_IWinHttpRequest_Invoke(), test_ParseDisplayName(), test_recinfo(), test_VarCat(), and test_VarUI1FromDisp().

◆ dispatch_imsg()

void dispatch_imsg ( int  )

◆ do_packet()

void do_packet ( struct interface_info interface,
struct dhcp_packet packet,
int  len,
unsigned int  from_port,
struct iaddr  from,
struct hardware hfrom 
)

Definition at line 635 of file options.c.

637{
638 struct packet tp;
639 int i;
640
641 if (packet->hlen > sizeof(packet->chaddr)) {
642 note("Discarding packet with invalid hlen.");
643 return;
644 }
645
646 memset(&tp, 0, sizeof(tp));
647 tp.raw = packet;
648 tp.packet_length = len;
649 tp.client_port = from_port;
650 tp.client_addr = from;
651 tp.interface = interface;
652 tp.haddr = hfrom;
653
655 if (tp.options_valid &&
656 tp.options[DHO_DHCP_MESSAGE_TYPE].data)
657 tp.packet_type = tp.options[DHO_DHCP_MESSAGE_TYPE].data[0];
658 if (tp.packet_type)
659 dhcp(&tp);
660 else
661 bootp(&tp);
662
663 /* Free the data associated with the options. */
664 for (i = 0; i < 256; i++)
665 if (tp.options[i].len && tp.options[i].data)
666 free(tp.options[i].data);
667}
void parse_options(struct packet *)
Definition: options.c:59
#define interface
Definition: basetyps.h:61
void bootp(struct packet *packet)
Definition: dhclient.c:799
void dhcp(struct packet *packet)
Definition: dhclient.c:819
_In_ uint64_t _In_ uint64_t _In_ uint64_t _In_opt_ traverse_ptr * tp
Definition: btrfs.c:2996
#define memset(x, y, z)
Definition: compat.h:39
CardRegion * from
Definition: spigame.cpp:19

Referenced by init_client().

◆ error()

void error ( char format,
  ... 
)

Definition at line 128 of file uimain.c.

818{
819 va_list ap;
820 char text[512];
821 char text1[512];
822
823 sprintf(text1, "ERROR: ");
826 va_end(ap);
827 strcat(text1, text);
828 mi_error(text1);
829}
char * va_list
Definition: acmsvcex.h:78
#define va_end(ap)
Definition: acmsvcex.h:90
#define va_start(ap, A)
Definition: acmsvcex.h:91
const WCHAR * text
Definition: package.c:1794
int __cdecl vsprintf(char *_Dest, const char *_Format, va_list _Args)
Definition: sprintf.c:733
#define sprintf
Definition: sprintf.c:45
strcat
Definition: string.h:92
Definition: format.c:58
void mi_error(char *msg)
Definition: win32.c:131

◆ find_protocol_by_adapter()

struct protocol * find_protocol_by_adapter ( struct interface_info info)

Definition at line 412 of file dispatch.c.

413{
414 struct protocol *p;
415
416 for( p = protocols; p; p = p->next ) {
417 if( p->local == (void *)info ) return p;
418 }
419
420 return NULL;
421}

Referenced by AdapterDiscoveryThread(), IsReconnectHackNeeded(), Server_AcquireParameters(), Server_ReleaseParameters(), and Server_StaticRefreshParams().

◆ free_client_lease()

void free_client_lease ( struct client_lease lease)

Definition at line 1757 of file dhclient.c.

1758{
1759 int i;
1760
1761 if (lease->server_name)
1762 free(lease->server_name);
1763 if (lease->filename)
1764 free(lease->filename);
1765 for (i = 0; i < 256; i++) {
1766 if (lease->options[i].len)
1767 free(lease->options[i].data);
1768 }
1769 free(lease);
1770}
struct option_data options[256]
Definition: dhcpd.h:167
char * filename
Definition: dhcpd.h:163
char * server_name
Definition: dhcpd.h:157

Referenced by bind_lease(), dhcpnak(), packet_to_lease(), state_selecting(), and unbind_lease().

◆ free_hash_bucket()

void free_hash_bucket ( struct hash_bucket ptr,
char name 
)

Definition at line 89 of file alloc.c.

90{
91 dfree(ptr, name);
92}
void dfree(void *ptr, char *name)
Definition: alloc.c:79

Referenced by delete_hash_entry().

◆ getLong()

int32_t getLong ( unsigned char data)

Definition at line 92 of file util.c.

92 {
93 return (int32_t) ntohl(*(u_int32_t*) data);
94}
INT32 int32_t
Definition: types.h:71
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: gl.h:1950
#define ntohl(x)
Definition: module.h:205
unsigned int u_int32_t
Definition: rosdhcp.h:37

Referenced by pretty_print_option().

◆ getShort()

int16_t getShort ( unsigned char data)

Definition at line 84 of file util.c.

84 {
85 return (int16_t) ntohs(*(int16_t*) data);
86}
INT16 int16_t
Definition: types.h:70
#define ntohs(x)
Definition: module.h:210

Referenced by pretty_print_option().

◆ getULong()

u_int32_t getULong ( unsigned char data)

Definition at line 96 of file util.c.

96 {
97 return ntohl(*(u_int32_t*)data);
98}

Referenced by dhcpack(), and pretty_print_option().

◆ getUShort()

u_int16_t getUShort ( unsigned char data)

Definition at line 88 of file util.c.

88 {
89 return (u_int16_t) ntohs(*(u_int16_t*) data);
90}

Referenced by cons_options(), and pretty_print_option().

◆ go_daemon()

void go_daemon ( void  )

◆ got_one()

void got_one ( struct protocol l)

Definition at line 194 of file dispatch.c.

195{
196 struct sockaddr_in from;
197 struct hardware hfrom;
198 struct iaddr ifrom;
200 union {
201 /*
202 * Packet input buffer. Must be as large as largest
203 * possible MTU.
204 */
205 unsigned char packbuf[4095];
206 struct dhcp_packet packet;
207 } u;
208 struct interface_info *ip = l->local;
210
211 if ((result = receive_packet(ip, u.packbuf, sizeof(u), &from,
212 &hfrom)) == -1) {
213 warning("receive_packet failed on %s: %d", ip->name,
215 ip->errors++;
216 if (ip->errors > 20) {
217 /* our interface has gone away. */
218 warning("Interface %s no longer appears valid.",
219 ip->name);
220 ip->dead = 1;
221 closesocket(l->fd);
224 if (adapter) {
225 RemoveEntryList(&adapter->ListEntry);
226 free(adapter);
227 }
228 }
229 return;
230 }
231 if (result == 0)
232 return;
233
235 ifrom.len = 4;
236 memcpy(ifrom.iabuf, &from.sin_addr, ifrom.len);
237
238
239 adapter = AdapterFindByHardwareAddress(u.packet.chaddr,
240 u.packet.hlen);
241
242 if (!adapter) {
243 warning("Discarding packet with a non-matching target physical address\n");
244 return;
245 }
246
247 (*bootp_packet_handler)(&adapter->DhclientInfo, &u.packet, result,
248 from.sin_port, ifrom, &hfrom);
249 }
250}
PDHCP_ADAPTER AdapterFindByHardwareAddress(u_int8_t haddr[16], u_int8_t hlen)
Definition: adapter.c:544
void remove_protocol(struct protocol *proto)
Definition: dispatch.c:359
void(* bootp_packet_handler)(struct interface_info *, struct dhcp_packet *, int, unsigned int, struct iaddr, struct hardware *)
Definition: dispatch.c:59
#define RemoveEntryList(Entry)
Definition: env_spec_w32.h:986
return adapter
GLuint64EXT * result
Definition: glext.h:11304
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble * u
Definition: glfuncs.h:240
#define closesocket
Definition: ncftp.h:477
int ssize_t
Definition: rosdhcp.h:50
ssize_t receive_packet(struct interface_info *ip, unsigned char *packet_data, size_t packet_len, struct sockaddr_in *dest, struct hardware *hardware)
Definition: socket.c:34
int PASCAL FAR WSAGetLastError(void)
Definition: dllmain.c:131

Referenced by AdapterDiscoveryThread(), dispatch(), Server_AcquireParameters(), and slurpstring().

◆ hash_lookup()

unsigned char * hash_lookup ( struct hash_table table,
unsigned char name,
int  len 
)

Definition at line 144 of file hash.c.

148{
149 int hashno;
150 struct hash_bucket *bp;
151
152 if (!table)
153 return (unsigned char *)0;
154
155 if (!len)
156 len = strlen ((char *)name);
157
158 hashno = do_hash (name, len, table -> hash_count);
159
160 for (bp = table -> buckets [hashno]; bp; bp = bp -> next) {
161 if (len == bp -> len && !memcmp (bp -> name, name, len))
162 return bp -> value;
163 }
164 return (unsigned char *)0;
165}
unsigned char * value
Definition: dhcpd.h:268

◆ if_register_bpf()

int if_register_bpf ( struct interface_info )

◆ if_register_receive()

void if_register_receive ( struct interface_info ip)

Definition at line 579 of file adapter.c.

579 {
580}

◆ if_register_send()

void if_register_send ( struct interface_info ip)

Definition at line 575 of file adapter.c.

575 {
576
577}

◆ initialize_universes()

void initialize_universes ( void  )

Definition at line 674 of file tables.c.

675{
676 int i;
677
678 dhcp_universe.name = "dhcp";
679 dhcp_universe.hash = new_hash ();
680 if (!dhcp_universe.hash)
681 error ("Can't allocate dhcp option hash table.");
682 for (i = 0; i < 256; i++) {
683 dhcp_universe.options [i] = &dhcp_options [i];
685 (unsigned char *)dhcp_options [i].name, 0,
686 (unsigned char *)&dhcp_options [i]);
687 }
688 universe_hash.hash_count = DEFAULT_HASH_SIZE;
690 (unsigned char *)dhcp_universe.name, 0,
691 (unsigned char *)&dhcp_universe);
692}
void add_hash(struct hash_table *table, unsigned char *name, int len, unsigned char *pointer)
Definition: hash.c:82
struct hash_table * new_hash()
Definition: hash.c:53
struct hash_table universe_hash
Definition: tables.c:672
struct universe dhcp_universe
Definition: tables.c:67
struct dhcp_option dhcp_options[256]
Definition: tables.c:68
#define DEFAULT_HASH_SIZE
Definition: dhcpd.h:262

◆ interface_link_status()

int interface_link_status ( char ifname)

Definition at line 424 of file dispatch.c.

425{
426 return (1);
427}

◆ interface_or_dummy()

struct interface_info * interface_or_dummy ( char )

◆ make_client_config()

void make_client_config ( struct interface_info ,
struct client_config  
)

◆ make_client_state()

void make_client_state ( struct interface_info )

◆ make_decline()

void make_decline ( struct interface_info ip,
struct client_lease lease 
)

Definition at line 1619 of file dhclient.c.

1620{
1621 struct tree_cache *options[256], message_type_tree;
1622 struct tree_cache requested_address_tree;
1623 struct tree_cache server_id_tree, client_id_tree;
1624 unsigned char decline = DHCPDECLINE;
1625 int i;
1626
1627 memset(options, 0, sizeof(options));
1628 memset(&ip->client->packet, 0, sizeof(ip->client->packet));
1629
1630 /* Set DHCP_MESSAGE_TYPE to DHCPDECLINE */
1632 options[i] = &message_type_tree;
1633 options[i]->value = &decline;
1634 options[i]->len = sizeof(decline);
1635 options[i]->buf_size = sizeof(decline);
1636 options[i]->timeout = 0xFFFFFFFF;
1637
1638 /* Send back the server identifier... */
1640 options[i] = &server_id_tree;
1641 options[i]->value = lease->options[i].data;
1642 options[i]->len = lease->options[i].len;
1643 options[i]->buf_size = lease->options[i].len;
1644 options[i]->timeout = 0xFFFFFFFF;
1645
1646 /* Send back the address we're declining. */
1648 options[i] = &requested_address_tree;
1649 options[i]->value = lease->address.iabuf;
1650 options[i]->len = lease->address.len;
1651 options[i]->buf_size = lease->address.len;
1652 options[i]->timeout = 0xFFFFFFFF;
1653
1654 /* Send the uid if the user supplied one. */
1656 if (ip->client->config->send_options[i].len) {
1657 options[i] = &client_id_tree;
1658 options[i]->value = ip->client->config->send_options[i].data;
1659 options[i]->len = ip->client->config->send_options[i].len;
1660 options[i]->buf_size = ip->client->config->send_options[i].len;
1661 options[i]->timeout = 0xFFFFFFFF;
1662 }
1663
1664
1665 /* Set up the option buffer... */
1666 ip->client->packet_length = cons_options(NULL, &ip->client->packet, 0,
1667 options);
1668 if (ip->client->packet_length < BOOTP_MIN_LEN)
1669 ip->client->packet_length = BOOTP_MIN_LEN;
1670
1671 ip->client->packet.op = BOOTREQUEST;
1672 ip->client->packet.htype = ip->hw_address.htype;
1673 ip->client->packet.hlen = ip->hw_address.hlen;
1674 ip->client->packet.hops = 0;
1675 ip->client->packet.xid = ip->client->xid;
1676 ip->client->packet.secs = 0; /* Filled in by send_request. */
1677 ip->client->packet.flags = 0;
1678
1679 /* ciaddr must always be zero. */
1680 memset(&ip->client->packet.ciaddr, 0,
1681 sizeof(ip->client->packet.ciaddr));
1682 memset(&ip->client->packet.yiaddr, 0,
1683 sizeof(ip->client->packet.yiaddr));
1684 memset(&ip->client->packet.siaddr, 0,
1685 sizeof(ip->client->packet.siaddr));
1686 memset(&ip->client->packet.giaddr, 0,
1687 sizeof(ip->client->packet.giaddr));
1688 memcpy(ip->client->packet.chaddr,
1689 ip->hw_address.haddr, ip->hw_address.hlen);
1690}
int cons_options(struct packet *inpacket, struct dhcp_packet *outpacket, int mms, struct tree_cache **options)
Definition: options.c:199
#define BOOTP_MIN_LEN
Definition: dhcp.h:54
#define DHO_DHCP_CLIENT_IDENTIFIER
Definition: dhcp.h:157
#define BOOTREQUEST
Definition: dhcp.h:78
#define DHO_DHCP_REQUESTED_ADDRESS
Definition: dhcp.h:146
#define DHCPDECLINE
Definition: dhcp.h:165

◆ make_discover()

void make_discover ( struct interface_info ip,
struct client_lease lease 
)

Definition at line 1434 of file dhclient.c.

1435{
1436 unsigned char discover = DHCPDISCOVER;
1437 struct tree_cache *options[256];
1438 struct tree_cache option_elements[256];
1439 int i;
1441
1442 memset(option_elements, 0, sizeof(option_elements));
1443 memset(options, 0, sizeof(options));
1444 memset(&ip->client->packet, 0, sizeof(ip->client->packet));
1445
1446 /* Set DHCP_MESSAGE_TYPE to DHCPDISCOVER */
1448 options[i] = &option_elements[i];
1449 options[i]->value = &discover;
1450 options[i]->len = sizeof(discover);
1451 options[i]->buf_size = sizeof(discover);
1452 options[i]->timeout = 0xFFFFFFFF;
1453
1454 /* Request the options we want */
1456 options[i] = &option_elements[i];
1457 options[i]->value = ip->client->config->requested_options;
1458 options[i]->len = ip->client->config->requested_option_count;
1459 options[i]->buf_size =
1460 ip->client->config->requested_option_count;
1461 options[i]->timeout = 0xFFFFFFFF;
1462
1463 /* If we had an address, try to get it again. */
1464 if (lease) {
1465 ip->client->requested_address = lease->address;
1467 options[i] = &option_elements[i];
1468 options[i]->value = lease->address.iabuf;
1469 options[i]->len = lease->address.len;
1470 options[i]->buf_size = lease->address.len;
1471 options[i]->timeout = 0xFFFFFFFF;
1472 } else
1473 ip->client->requested_address.len = 0;
1474
1475 /* Send any options requested in the config file. */
1476 for (i = 0; i < 256; i++)
1477 if (!options[i] &&
1478 ip->client->config->send_options[i].data) {
1479 options[i] = &option_elements[i];
1480 options[i]->value =
1481 ip->client->config->send_options[i].data;
1482 options[i]->len =
1483 ip->client->config->send_options[i].len;
1484 options[i]->buf_size =
1485 ip->client->config->send_options[i].len;
1486 options[i]->timeout = 0xFFFFFFFF;
1487 }
1488
1489 /* Set up the option buffer... */
1490 ip->client->packet_length = cons_options(NULL, &ip->client->packet, 0,
1491 options);
1492 if (ip->client->packet_length < BOOTP_MIN_LEN)
1493 ip->client->packet_length = BOOTP_MIN_LEN;
1494
1495 ip->client->packet.op = BOOTREQUEST;
1496 ip->client->packet.htype = ip->hw_address.htype;
1497 ip->client->packet.hlen = ip->hw_address.hlen;
1498 ip->client->packet.hops = 0;
1499 ip->client->packet.xid = RtlRandom(&foo);
1500 ip->client->packet.secs = 0; /* filled in by send_discover. */
1501 ip->client->packet.flags = 0;
1502
1503 memset(&(ip->client->packet.ciaddr),
1504 0, sizeof(ip->client->packet.ciaddr));
1505 memset(&(ip->client->packet.yiaddr),
1506 0, sizeof(ip->client->packet.yiaddr));
1507 memset(&(ip->client->packet.siaddr),
1508 0, sizeof(ip->client->packet.siaddr));
1509 memset(&(ip->client->packet.giaddr),
1510 0, sizeof(ip->client->packet.giaddr));
1511 memcpy(ip->client->packet.chaddr,
1512 ip->hw_address.haddr, ip->hw_address.hlen);
1513}
#define DHCPDISCOVER
Definition: dhcp.h:162
ULONG WINAPI DECLSPEC_HOTPATCH GetTickCount(void)
Definition: sync.c:182
NTSYSAPI ULONG NTAPI RtlRandom(_Inout_ PULONG Seed)
uint32_t ULONG
Definition: typedefs.h:59

Referenced by state_init().

◆ make_release()

void make_release ( struct interface_info ip,
struct client_lease lease 
)

Definition at line 1693 of file dhclient.c.

1694{
1695 struct tree_cache *options[256], message_type_tree;
1696 struct tree_cache server_id_tree, client_id_tree;
1697 unsigned char release = DHCPRELEASE;
1698 int i;
1699
1700 memset(options, 0, sizeof(options));
1701 memset(&ip->client->packet, 0, sizeof(ip->client->packet));
1702
1703 /* Set DHCP_MESSAGE_TYPE to DHCPRELEASE */
1705 options[i] = &message_type_tree;
1706 options[i]->value = &release;
1707 options[i]->len = sizeof(release);
1708 options[i]->buf_size = sizeof(release);
1709 options[i]->timeout = 0xFFFFFFFF;
1710
1711 /* Send back the server identifier... */
1713 options[i] = &server_id_tree;
1714 options[i]->value = lease->options[i].data;
1715 options[i]->len = lease->options[i].len;
1716 options[i]->buf_size = lease->options[i].len;
1717 options[i]->timeout = 0xFFFFFFFF;
1718
1719 /* Send the uid if the user supplied one. */
1721 if (ip->client->config->send_options[i].len)
1722 {
1723 options[i] = &client_id_tree;
1724 options[i]->value = ip->client->config->send_options[i].data;
1725 options[i]->len = ip->client->config->send_options[i].len;
1726 options[i]->buf_size = ip->client->config->send_options[i].len;
1727 options[i]->timeout = 0xFFFFFFFF;
1728 }
1729
1730 /* Set up the option buffer... */
1731 ip->client->packet_length = cons_options(NULL, &ip->client->packet, 0, options);
1732 if (ip->client->packet_length < BOOTP_MIN_LEN)
1733 ip->client->packet_length = BOOTP_MIN_LEN;
1734
1735 ip->client->packet.op = BOOTREQUEST;
1736 ip->client->packet.htype = ip->hw_address.htype;
1737 ip->client->packet.hlen = ip->hw_address.hlen;
1738 ip->client->packet.hops = 0;
1739 ip->client->packet.xid = 0;
1740 ip->client->packet.secs = 0;
1741 ip->client->packet.flags = 0;
1742
1743 /* ciaddr is the address to be released */
1744 memcpy(&ip->client->packet.ciaddr,
1745 lease->address.iabuf, lease->address.len);
1746 memset(&ip->client->packet.yiaddr, 0,
1747 sizeof(ip->client->packet.yiaddr));
1748 memset(&ip->client->packet.siaddr, 0,
1749 sizeof(ip->client->packet.siaddr));
1750 memset(&ip->client->packet.giaddr, 0,
1751 sizeof(ip->client->packet.giaddr));
1752 memcpy(ip->client->packet.chaddr,
1753 ip->hw_address.haddr, ip->hw_address.hlen);
1754}
#define DHCPRELEASE
Definition: dhcp.h:168

Referenced by state_release().

◆ make_request()

void make_request ( struct interface_info ip,
struct client_lease lease 
)

Definition at line 1517 of file dhclient.c.

1518{
1519 unsigned char request = DHCPREQUEST;
1520 struct tree_cache *options[256];
1521 struct tree_cache option_elements[256];
1522 int i;
1523
1524 memset(options, 0, sizeof(options));
1525 memset(&ip->client->packet, 0, sizeof(ip->client->packet));
1526
1527 /* Set DHCP_MESSAGE_TYPE to DHCPREQUEST */
1529 options[i] = &option_elements[i];
1530 options[i]->value = &request;
1531 options[i]->len = sizeof(request);
1532 options[i]->buf_size = sizeof(request);
1533 options[i]->timeout = 0xFFFFFFFF;
1534
1535 /* Request the options we want */
1537 options[i] = &option_elements[i];
1538 options[i]->value = ip->client->config->requested_options;
1539 options[i]->len = ip->client->config->requested_option_count;
1540 options[i]->buf_size =
1541 ip->client->config->requested_option_count;
1542 options[i]->timeout = 0xFFFFFFFF;
1543
1544 /* If we are requesting an address that hasn't yet been assigned
1545 to us, use the DHCP Requested Address option. */
1546 if (ip->client->state == S_REQUESTING) {
1547 /* Send back the server identifier... */
1549 options[i] = &option_elements[i];
1550 options[i]->value = lease->options[i].data;
1551 options[i]->len = lease->options[i].len;
1552 options[i]->buf_size = lease->options[i].len;
1553 options[i]->timeout = 0xFFFFFFFF;
1554 }
1555 if (ip->client->state == S_REQUESTING ||
1556 ip->client->state == S_REBOOTING) {
1557 ip->client->requested_address = lease->address;
1559 options[i] = &option_elements[i];
1560 options[i]->value = lease->address.iabuf;
1561 options[i]->len = lease->address.len;
1562 options[i]->buf_size = lease->address.len;
1563 options[i]->timeout = 0xFFFFFFFF;
1564 } else
1565 ip->client->requested_address.len = 0;
1566
1567 /* Send any options requested in the config file. */
1568 for (i = 0; i < 256; i++)
1569 if (!options[i] &&
1570 ip->client->config->send_options[i].data) {
1571 options[i] = &option_elements[i];
1572 options[i]->value =
1573 ip->client->config->send_options[i].data;
1574 options[i]->len =
1575 ip->client->config->send_options[i].len;
1576 options[i]->buf_size =
1577 ip->client->config->send_options[i].len;
1578 options[i]->timeout = 0xFFFFFFFF;
1579 }
1580
1581 /* Set up the option buffer... */
1582 ip->client->packet_length = cons_options(NULL, &ip->client->packet, 0,
1583 options);
1584 if (ip->client->packet_length < BOOTP_MIN_LEN)
1585 ip->client->packet_length = BOOTP_MIN_LEN;
1586
1587 ip->client->packet.op = BOOTREQUEST;
1588 ip->client->packet.htype = ip->hw_address.htype;
1589 ip->client->packet.hlen = ip->hw_address.hlen;
1590 ip->client->packet.hops = 0;
1591 ip->client->packet.xid = ip->client->xid;
1592 ip->client->packet.secs = 0; /* Filled in by send_request. */
1593
1594 /* If we own the address we're requesting, put it in ciaddr;
1595 otherwise set ciaddr to zero. */
1596 if (ip->client->state == S_BOUND ||
1597 ip->client->state == S_RENEWING ||
1598 ip->client->state == S_REBINDING) {
1599 memcpy(&ip->client->packet.ciaddr,
1600 lease->address.iabuf, lease->address.len);
1601 ip->client->packet.flags = 0;
1602 } else {
1603 memset(&ip->client->packet.ciaddr, 0,
1604 sizeof(ip->client->packet.ciaddr));
1605 ip->client->packet.flags = 0;
1606 }
1607
1608 memset(&ip->client->packet.yiaddr, 0,
1609 sizeof(ip->client->packet.yiaddr));
1610 memset(&ip->client->packet.siaddr, 0,
1611 sizeof(ip->client->packet.siaddr));
1612 memset(&ip->client->packet.giaddr, 0,
1613 sizeof(ip->client->packet.giaddr));
1614 memcpy(ip->client->packet.chaddr,
1615 ip->hw_address.haddr, ip->hw_address.hlen);
1616}
#define DHCPREQUEST
Definition: dhcp.h:164
Definition: tftpd.h:86

Referenced by state_bound(), state_reboot(), and state_selecting().

◆ new_hash()

struct hash_table * new_hash ( void  )

Definition at line 53 of file hash.c.

54{
56 if (!rv)
57 return rv;
58 memset (&rv -> buckets [0], 0,
59 DEFAULT_HASH_SIZE * sizeof (struct hash_bucket *));
60 return rv;
61}
struct hash_table * new_hash_table(int count)
Definition: alloc.c:57

Referenced by initialize_universes(), and test_put_hash().

◆ new_hash_bucket()

struct hash_bucket * new_hash_bucket ( void  )

Definition at line 71 of file alloc.c.

72{
73 struct hash_bucket *rval = calloc(1, sizeof(struct hash_bucket));
74
75 return (rval);
76}
float rval
Definition: cylfrac.c:48
#define calloc
Definition: rosglue.h:14

Referenced by add_hash().

◆ new_hash_table()

struct hash_table * new_hash_table ( int  count)

Definition at line 57 of file alloc.c.

58{
59 struct hash_table *rval;
60
61 rval = calloc(1, sizeof(struct hash_table) -
62 (DEFAULT_HASH_SIZE * sizeof(struct hash_bucket *)) +
63 (count * sizeof(struct hash_bucket *)));
64 if (rval == NULL)
65 return (NULL);
66 rval->hash_count = count;
67 return (rval);
68}

Referenced by new_hash().

◆ new_parse()

void new_parse ( char )

◆ new_string_list()

struct string_list * new_string_list ( size_t  size)

Definition at line 46 of file alloc.c.

47{
48 struct string_list *rval;
49
50 rval = calloc(1, sizeof(struct string_list) + size);
51 if (rval != NULL)
52 rval->string = ((char *)rval) + sizeof(struct string_list);
53 return (rval);
54}
GLsizeiptr size
Definition: glext.h:5919

◆ next_token()

int next_token ( char **  ,
FILE  
)

Referenced by get_token(), and wcstok_s().

◆ note()

void int int note ( char ,
  ... 
)

◆ packet_to_lease()

struct client_lease * packet_to_lease ( struct packet packet)

Definition at line 974 of file dhclient.c.

975{
976 struct client_lease *lease;
977 int i;
978
979 lease = malloc(sizeof(struct client_lease));
980
981 if (!lease) {
982 warning("dhcpoffer: no memory to record lease.");
983 return (NULL);
984 }
985
986 memset(lease, 0, sizeof(*lease));
987
988 /* Copy the lease options. */
989 for (i = 0; i < 256; i++) {
990 if (packet->options[i].len) {
991 lease->options[i].data =
992 malloc(packet->options[i].len + 1);
993 if (!lease->options[i].data) {
994 warning("dhcpoffer: no memory for option %d", i);
995 free_client_lease(lease);
996 return (NULL);
997 } else {
998 memcpy(lease->options[i].data,
999 packet->options[i].data,
1000 packet->options[i].len);
1001 lease->options[i].len =
1002 packet->options[i].len;
1003 lease->options[i].data[lease->options[i].len] =
1004 0;
1005 }
1006 if (!check_option(lease,i)) {
1007 /* ignore a bogus lease offer */
1008 warning("Invalid lease option - ignoring offer");
1009 free_client_lease(lease);
1010 return (NULL);
1011 }
1012 }
1013 }
1014
1015 lease->address.len = sizeof(packet->raw->yiaddr);
1016 memcpy(lease->address.iabuf, &packet->raw->yiaddr, lease->address.len);
1017#ifdef __REACTOS__
1018 if (packet->raw->siaddr.S_un.S_addr == 0)
1019 {
1020 lease->serveraddress.len = packet->client_addr.len;
1021 memcpy(lease->serveraddress.iabuf, &packet->client_addr.iabuf, packet->client_addr.len);
1022 }
1023 else
1024 {
1025 lease->serveraddress.len = sizeof(packet->raw->siaddr);
1026 memcpy(lease->serveraddress.iabuf, &packet->raw->siaddr, lease->serveraddress.len);
1027 }
1028#endif
1029
1030 /* If the server name was filled out, copy it. */
1032 !(packet->options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 2)) &&
1033 packet->raw->sname[0]) {
1034 lease->server_name = malloc(DHCP_SNAME_LEN + 1);
1035 if (!lease->server_name) {
1036 warning("dhcpoffer: no memory for server name.");
1037 free_client_lease(lease);
1038 return (NULL);
1039 }
1040 memcpy(lease->server_name, packet->raw->sname, DHCP_SNAME_LEN);
1041 lease->server_name[DHCP_SNAME_LEN]='\0';
1042 if (!res_hnok(lease->server_name) ) {
1043 warning("Bogus server name %s", lease->server_name );
1044 free_client_lease(lease);
1045 return (NULL);
1046 }
1047
1048 }
1049
1050 /* Ditto for the filename. */
1052 !(packet->options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 1)) &&
1053 packet->raw->file[0]) {
1054 /* Don't count on the NUL terminator. */
1055 lease->filename = malloc(DHCP_FILE_LEN + 1);
1056 if (!lease->filename) {
1057 warning("dhcpoffer: no memory for filename.");
1058 free_client_lease(lease);
1059 return (NULL);
1060 }
1061 memcpy(lease->filename, packet->raw->file, DHCP_FILE_LEN);
1062 lease->filename[DHCP_FILE_LEN]='\0';
1063 }
1064 return lease;
1065}
#define DHCP_SNAME_LEN
Definition: dhcp.h:46
int check_option(struct client_lease *l, int option)
Definition: dhclient.c:2055
int res_hnok(const char *dn)
Definition: dhclient.c:2150

Referenced by dhcpack(), and dhcpoffer().

◆ parse_client_lease_declaration()

void parse_client_lease_declaration ( FILE ,
struct client_lease ,
struct interface_info **   
)

◆ parse_client_lease_statement()

void parse_client_lease_statement ( FILE ,
int   
)

◆ parse_client_statement()

void parse_client_statement ( FILE ,
struct interface_info ,
struct client_config  
)

◆ parse_date()

time_t parse_date ( FILE )

◆ parse_hardware_param()

void parse_hardware_param ( FILE ,
struct hardware  
)

◆ parse_interface_declaration()

void parse_interface_declaration ( FILE ,
struct client_config  
)

◆ parse_ip_addr()

int parse_ip_addr ( FILE ,
struct iaddr  
)

◆ parse_lease_time()

void parse_lease_time ( FILE ,
time_t  
)

◆ parse_numeric_aggregate()

unsigned char * parse_numeric_aggregate ( FILE ,
unsigned char ,
int ,
int  ,
int  ,
int   
)

◆ parse_option_decl()

struct dhcp_option * parse_option_decl ( FILE ,
struct option_data  
)

◆ parse_option_list()

int parse_option_list ( FILE ,
u_int8_t  
)

◆ parse_reject_statement()

void parse_reject_statement ( FILE ,
struct client_config  
)

◆ parse_semi()

int parse_semi ( FILE )

◆ parse_string()

char * parse_string ( FILE )

◆ parse_string_list()

void parse_string_list ( FILE ,
struct string_list **  ,
int   
)

◆ parse_warn()

void int int int int parse_warn ( char ,
  ... 
)

◆ parse_X()

int parse_X ( FILE ,
u_int8_t ,
int   
)

◆ peek_token()

int peek_token ( char **  ,
FILE  
)

◆ piaddr()

char * piaddr ( struct iaddr  addr)

Definition at line 6 of file util.c.

6 {
7 struct sockaddr_in sa;
8 memcpy(&sa.sin_addr,addr.iabuf,sizeof(sa.sin_addr));
9 return inet_ntoa( sa.sin_addr );
10}
CHAR FAR *WSAAPI inet_ntoa(IN IN_ADDR in)
Definition: addrconv.c:160
static struct sockaddr_in sa
Definition: adnsresfilter.c:69
GLenum const GLvoid * addr
Definition: glext.h:9621

Referenced by bind_lease(), bootp(), dhcp(), dhcpack(), dhcpnak(), dhcpoffer(), priv_script_write_params(), set_name_servers(), setup_adapter(), and write_client_lease().

◆ pretty_print_option()

char * pretty_print_option ( unsigned int  code,
unsigned char data,
int  len,
int  emit_commas,
int  emit_quotes 
)

Definition at line 396 of file options.c.

398{
399 static char optbuf[32768]; /* XXX */
400 int hunksize = 0, numhunk = -1, numelem = 0;
401 char fmtbuf[32], *op = optbuf;
402 int i, j, k, opleft = sizeof(optbuf);
403 unsigned char *dp = data;
404 struct in_addr foo;
405 char comma;
406
407 /* Code should be between 0 and 255. */
408 if (code > 255)
409 error("pretty_print_option: bad code %d", code);
410
411 if (emit_commas)
412 comma = ',';
413 else
414 comma = ' ';
415
416 /* Figure out the size of the data. */
417 for (i = 0; dhcp_options[code].format[i]; i++) {
418 if (!numhunk) {
419 warning("%s: Excess information in format string: %s",
422 break;
423 }
424 numelem++;
425 fmtbuf[i] = dhcp_options[code].format[i];
426 switch (dhcp_options[code].format[i]) {
427 case 'A':
428 --numelem;
429 fmtbuf[i] = 0;
430 numhunk = 0;
431 break;
432 case 'X':
433 for (k = 0; k < len; k++)
434 if (!isascii(data[k]) ||
435 !isprint(data[k]))
436 break;
437 if (k == len) {
438 fmtbuf[i] = 't';
439 numhunk = -2;
440 } else {
441 fmtbuf[i] = 'x';
442 hunksize++;
443 comma = ':';
444 numhunk = 0;
445 }
446 fmtbuf[i + 1] = 0;
447 break;
448 case 't':
449 fmtbuf[i] = 't';
450 fmtbuf[i + 1] = 0;
451 numhunk = -2;
452 break;
453 case 'I':
454 case 'l':
455 case 'L':
456 hunksize += 4;
457 break;
458 case 's':
459 case 'S':
460 hunksize += 2;
461 break;
462 case 'b':
463 case 'B':
464 case 'f':
465 hunksize++;
466 break;
467 case 'e':
468 break;
469 default:
470 warning("%s: garbage in format string: %s",
473 break;
474 }
475 }
476
477 /* Check for too few bytes... */
478 if (hunksize > len) {
479 warning("%s: expecting at least %d bytes; got %d",
480 dhcp_options[code].name, hunksize, len);
481 return ("<error>");
482 }
483 /* Check for too many bytes... */
484 if (numhunk == -1 && hunksize < len)
485 warning("%s: %d extra bytes",
486 dhcp_options[code].name, len - hunksize);
487
488 /* If this is an array, compute its size. */
489 if (!numhunk)
490 numhunk = len / hunksize;
491 /* See if we got an exact number of hunks. */
492 if (numhunk > 0 && numhunk * hunksize < len)
493 warning("%s: %d extra bytes at end of array",
494 dhcp_options[code].name, len - numhunk * hunksize);
495
496 /* A one-hunk array prints the same as a single hunk. */
497 if (numhunk < 0)
498 numhunk = 1;
499
500 /* Cycle through the array (or hunk) printing the data. */
501 for (i = 0; i < numhunk; i++) {
502 for (j = 0; j < numelem; j++) {
503 int opcount;
504 switch (fmtbuf[j]) {
505 case 't':
506 if (emit_quotes) {
507 *op++ = '"';
508 opleft--;
509 }
510 for (; dp < data + len; dp++) {
511 if (!isascii(*dp) ||
512 !isprint(*dp)) {
513 if (dp + 1 != data + len ||
514 *dp != 0) {
515 _snprintf(op, opleft,
516 "\\%03o", *dp);
517 op += 4;
518 opleft -= 4;
519 }
520 } else if (*dp == '"' ||
521 *dp == '\'' ||
522 *dp == '$' ||
523 *dp == '`' ||
524 *dp == '\\') {
525 *op++ = '\\';
526 *op++ = *dp;
527 opleft -= 2;
528 } else {
529 *op++ = *dp;
530 opleft--;
531 }
532 }
533 if (emit_quotes) {
534 *op++ = '"';
535 opleft--;
536 }
537
538 *op = 0;
539 break;
540 case 'I':
541 foo.s_addr = htonl(getULong(dp));
542 strncpy(op, inet_ntoa(foo), opleft - 1);
543 op[opleft - 1] = ANSI_NULL;
544 opcount = strlen(op);
545 if (opcount >= opleft)
546 goto toobig;
547 opleft -= opcount;
548 dp += 4;
549 break;
550 case 'l':
551 opcount = _snprintf(op, opleft, "%ld",
552 (long)getLong(dp));
553 if (opcount >= opleft || opcount == -1)
554 goto toobig;
555 opleft -= opcount;
556 dp += 4;
557 break;
558 case 'L':
559 opcount = _snprintf(op, opleft, "%ld",
560 (unsigned long)getULong(dp));
561 if (opcount >= opleft || opcount == -1)
562 goto toobig;
563 opleft -= opcount;
564 dp += 4;
565 break;
566 case 's':
567 opcount = _snprintf(op, opleft, "%d",
568 getShort(dp));
569 if (opcount >= opleft || opcount == -1)
570 goto toobig;
571 opleft -= opcount;
572 dp += 2;
573 break;
574 case 'S':
575 opcount = _snprintf(op, opleft, "%d",
576 getUShort(dp));
577 if (opcount >= opleft || opcount == -1)
578 goto toobig;
579 opleft -= opcount;
580 dp += 2;
581 break;
582 case 'b':
583 opcount = _snprintf(op, opleft, "%d",
584 *(char *)dp++);
585 if (opcount >= opleft || opcount == -1)
586 goto toobig;
587 opleft -= opcount;
588 break;
589 case 'B':
590 opcount = _snprintf(op, opleft, "%d", *dp++);
591 if (opcount >= opleft || opcount == -1)
592 goto toobig;
593 opleft -= opcount;
594 break;
595 case 'x':
596 opcount = _snprintf(op, opleft, "%x", *dp++);
597 if (opcount >= opleft || opcount == -1)
598 goto toobig;
599 opleft -= opcount;
600 break;
601 case 'f':
602 opcount = (size_t) strncpy(op, *dp++ ? "true" : "false", opleft - 1);
603 op[opleft - 1] = ANSI_NULL;
604 if (opcount >= opleft)
605 goto toobig;
606 opleft -= opcount;
607 break;
608 default:
609 warning("Unexpected format code %c", fmtbuf[j]);
610 }
611 op += strlen(op);
612 opleft -= strlen(op);
613 if (opleft < 1)
614 goto toobig;
615 if (j + 1 < numelem && comma != ':') {
616 *op++ = ' ';
617 opleft--;
618 }
619 }
620 if (i + 1 < numhunk) {
621 *op++ = comma;
622 opleft--;
623 }
624 if (opleft < 1)
625 goto toobig;
626
627 }
628 return (optbuf);
629 toobig:
630 warning("dhcp option too large");
631 return ("<error>");
632}
#define isprint(c)
Definition: acclib.h:73
int32_t getLong(unsigned char *data)
Definition: util.c:92
int16_t getShort(unsigned char *data)
Definition: util.c:84
UINT op
Definition: effect.c:236
__kernel_size_t size_t
Definition: linux.h:237
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint GLint GLint j
Definition: glfuncs.h:250
#define isascii
Definition: ctype.h:742
#define htonl(x)
Definition: module.h:214
int k
Definition: mpi.c:3369
#define ANSI_NULL
strncpy
Definition: string.h:335
Definition: inflate.c:139
Definition: tcpip.h:126
#define _snprintf
Definition: xmlstorage.h:200

Referenced by check_option(), priv_script_write_params(), and write_client_lease().

◆ priv_script_go()

int priv_script_go ( void  )

◆ priv_script_init()

void priv_script_init ( struct interface_info ip,
char reason,
char medium 
)

Definition at line 1863 of file dhclient.c.

1864{
1865 if (ip) {
1866 // XXX Do we need to do anything?
1867 }
1868}

◆ priv_script_write_params()

void priv_script_write_params ( struct interface_info ip,
char prefix,
struct client_lease lease 
)

Definition at line 1871 of file dhclient.c.

1872{
1873 u_int8_t dbuf[1500];
1874 int i, len = 0;
1875
1876#if 0
1877 script_set_env(ip->client, prefix, "ip_address",
1878 piaddr(lease->address));
1879#endif
1880
1881 if (lease->options[DHO_SUBNET_MASK].len &&
1882 (lease->options[DHO_SUBNET_MASK].len <
1883 sizeof(lease->address.iabuf))) {
1884 struct iaddr netmask, subnet, broadcast;
1885
1886 memcpy(netmask.iabuf, lease->options[DHO_SUBNET_MASK].data,
1887 lease->options[DHO_SUBNET_MASK].len);
1888 netmask.len = lease->options[DHO_SUBNET_MASK].len;
1889
1890 subnet = subnet_number(lease->address, netmask);
1891 if (subnet.len) {
1892#if 0
1893 script_set_env(ip->client, prefix, "network_number",
1894 piaddr(subnet));
1895#endif
1896 if (!lease->options[DHO_BROADCAST_ADDRESS].len) {
1897 broadcast = broadcast_addr(subnet, netmask);
1898 if (broadcast.len)
1899#if 0
1900 script_set_env(ip->client, prefix,
1901 "broadcast_address",
1902 piaddr(broadcast));
1903#else
1904 ;
1905#endif
1906 }
1907 }
1908 }
1909
1910#if 0
1911 if (lease->filename)
1912 script_set_env(ip->client, prefix, "filename", lease->filename);
1913 if (lease->server_name)
1914 script_set_env(ip->client, prefix, "server_name",
1915 lease->server_name);
1916#endif
1917
1918 for (i = 0; i < 256; i++) {
1919 u_int8_t *dp = NULL;
1920
1921 if (ip->client->config->defaults[i].len) {
1922 if (lease->options[i].len) {
1923 switch (
1924 ip->client->config->default_actions[i]) {
1925 case ACTION_DEFAULT:
1926 dp = lease->options[i].data;
1927 len = lease->options[i].len;
1928 break;
1929 case ACTION_SUPERSEDE:
1930supersede:
1931 dp = ip->client->
1932 config->defaults[i].data;
1933 len = ip->client->
1934 config->defaults[i].len;
1935 break;
1936 case ACTION_PREPEND:
1937 len = ip->client->
1938 config->defaults[i].len +
1939 lease->options[i].len;
1940 if (len >= sizeof(dbuf)) {
1941 warning("no space to %s %s",
1942 "prepend option",
1944 goto supersede;
1945 }
1946 dp = dbuf;
1947 memcpy(dp,
1948 ip->client->
1949 config->defaults[i].data,
1950 ip->client->
1951 config->defaults[i].len);
1952 memcpy(dp + ip->client->
1953 config->defaults[i].len,
1954 lease->options[i].data,
1955 lease->options[i].len);
1956 dp[len] = '\0';
1957 break;
1958 case ACTION_APPEND:
1959 len = ip->client->
1960 config->defaults[i].len +
1961 lease->options[i].len + 1;
1962 if (len > sizeof(dbuf)) {
1963 warning("no space to %s %s",
1964 "append option",
1966 goto supersede;
1967 }
1968 dp = dbuf;
1969 memcpy(dp,
1970 lease->options[i].data,
1971 lease->options[i].len);
1972 memcpy(dp + lease->options[i].len,
1973 ip->client->
1974 config->defaults[i].data,
1975 ip->client->
1976 config->defaults[i].len);
1977 dp[len-1] = '\0';
1978 }
1979 } else {
1980 dp = ip->client->
1981 config->defaults[i].data;
1982 len = ip->client->
1983 config->defaults[i].len;
1984 }
1985 } else if (lease->options[i].len) {
1986 len = lease->options[i].len;
1987 dp = lease->options[i].data;
1988 } else {
1989 len = 0;
1990 }
1991#if 0
1992 if (len) {
1993 char name[256];
1994
1995 if (dhcp_option_ev_name(name, sizeof(name),
1996 &dhcp_options[i]))
1997 script_set_env(ip->client, prefix, name,
1998 pretty_print_option(i, dp, len, 0, 0));
1999 }
2000#endif
2001 }
2002#if 0
2003 snprintf(tbuf, sizeof(tbuf), "%d", (int)lease->expiry);
2004 script_set_env(ip->client, prefix, "expiry", tbuf);
2005#endif
2006}
char * pretty_print_option(unsigned int code, unsigned char *data, int len, int emit_commas, int emit_quotes)
Definition: options.c:396
struct iaddr broadcast_addr(struct iaddr addr, struct iaddr mask)
Definition: util.c:178
struct iaddr subnet_number(struct iaddr addr, struct iaddr mask)
Definition: util.c:183
#define DHO_BROADCAST_ADDRESS
Definition: dhcp.h:124
#define DHO_SUBNET_MASK
Definition: dhcp.h:97
int dhcp_option_ev_name(char *buf, size_t buflen, struct dhcp_option *option)
Definition: dhclient.c:2009
void script_set_env(struct client_state *, const char *, const char *, const char *)
unsigned char u_int8_t
Definition: rosdhcp.h:35
time_t expiry
Definition: dhcpd.h:155
Character const *const prefix
Definition: tempnam.cpp:195
static const u8_t broadcast[6]
Definition: test_dhcp.c:23
#define snprintf
Definition: wintirpc.h:48

◆ putLong()

void putLong ( unsigned char ,
int32_t   
)

◆ putShort()

void putShort ( unsigned char ,
int   
)

◆ putULong()

void putULong ( unsigned char ,
u_int32_t   
)

◆ putUShort()

void putUShort ( unsigned char ,
unsigned int   
)

◆ read_client_conf()

int read_client_conf ( struct interface_info ifi)

Definition at line 106 of file util.c.

106 {
107 /* What a strange dance */
108 struct client_config *config;
109 char ComputerName [MAX_COMPUTERNAME_LENGTH + 1];
110 LPSTR lpCompName;
111 DWORD ComputerNameSize = sizeof ComputerName / sizeof ComputerName[0];
112 LPSTR lpClassIdentifier = "MSFT 5.0";
113
114 if ((ifi!= NULL) && (ifi->client->config != NULL))
115 config = ifi->client->config;
116 else
117 {
118 warn("util.c read_client_conf poorly implemented!");
119 return 0;
120 }
121
122
123 GetComputerName(ComputerName, & ComputerNameSize);
124 debug("Hostname: %s, length: %lu",
125 ComputerName, ComputerNameSize);
126 /* This never gets freed since it's only called once */
127 lpCompName =
128 HeapAlloc(GetProcessHeap(), 0, ComputerNameSize + 1);
129 if (lpCompName !=NULL) {
130 memcpy(lpCompName, ComputerName, ComputerNameSize + 1);
131 /* Send our hostname, some dhcpds use this to update DNS */
132 config->send_options[DHO_HOST_NAME].data = (u_int8_t*)lpCompName;
133 config->send_options[DHO_HOST_NAME].len = ComputerNameSize;
134 debug("Hostname: %s, length: %d",
135 config->send_options[DHO_HOST_NAME].data,
136 config->send_options[DHO_HOST_NAME].len);
137 } else {
138 error("Failed to allocate heap for hostname");
139 }
140 /* Both Linux and Windows send this */
141 config->send_options[DHO_DHCP_CLIENT_IDENTIFIER].data =
142 ifi->hw_address.haddr;
143 config->send_options[DHO_DHCP_CLIENT_IDENTIFIER].len =
144 ifi->hw_address.hlen;
145
146 /* Set the Vendor Class ID */
147 config->send_options[DHO_DHCP_CLASS_IDENTIFIER].data = (u_int8_t*)lpClassIdentifier;
148 config->send_options[DHO_DHCP_CLASS_IDENTIFIER].len = strlen(lpClassIdentifier);
149
150 /* Setup the requested option list */
151 config->requested_options
152 [config->requested_option_count++] = DHO_SUBNET_MASK;
153 config->requested_options
154 [config->requested_option_count++] = DHO_DOMAIN_NAME;
155 config->requested_options
156 [config->requested_option_count++] = DHO_ROUTERS;
157 config->requested_options
158 [config->requested_option_count++] = DHO_DOMAIN_NAME_SERVERS;
159 config->requested_options
160 [config->requested_option_count++] = DHO_NETBIOS_NAME_SERVERS;
161 config->requested_options
162 [config->requested_option_count++] = DHO_NETBIOS_NODE_TYPE;
163 config->requested_options
164 [config->requested_option_count++] = DHO_NETBIOS_SCOPE;
165 config->requested_options
166 [config->requested_option_count++] = DHO_ROUTER_DISCOVERY;
167 config->requested_options
168 [config->requested_option_count++] = DHO_STATIC_ROUTES;
169 config->requested_options
170 [config->requested_option_count++] = 249;
171 config->requested_options
172 [config->requested_option_count++] = DHO_VENDOR_ENCAPSULATED_OPTIONS;
173
174 warn("util.c read_client_conf poorly implemented!");
175 return 0;
176}
#define DHO_ROUTER_DISCOVERY
Definition: dhcp.h:127
#define DHO_VENDOR_ENCAPSULATED_OPTIONS
Definition: dhcp.h:139
#define DHO_NETBIOS_NAME_SERVERS
Definition: dhcp.h:140
#define DHO_NETBIOS_SCOPE
Definition: dhcp.h:143
#define DHO_NETBIOS_NODE_TYPE
Definition: dhcp.h:142
#define DHO_HOST_NAME
Definition: dhcp.h:108
#define DHO_DOMAIN_NAME
Definition: dhcp.h:111
#define DHO_DOMAIN_NAME_SERVERS
Definition: dhcp.h:102
#define DHO_ROUTERS
Definition: dhcp.h:99
#define DHO_STATIC_ROUTES
Definition: dhcp.h:129
#define DHO_DHCP_CLASS_IDENTIFIER
Definition: dhcp.h:156
struct config_s config
#define GetProcessHeap()
Definition: compat.h:736
#define HeapAlloc
Definition: compat.h:733
unsigned long DWORD
Definition: ntddk_ex.h:95
struct client_state * client
Definition: dhcpd.h:241
struct hardware hw_address
Definition: dhcpd.h:232
#define MAX_COMPUTERNAME_LENGTH
Definition: winbase.h:267
#define GetComputerName
Definition: winbase.h:3549
char * LPSTR
Definition: xmlstorage.h:182

Referenced by AdapterDiscoveryThread().

◆ read_client_leases()

void read_client_leases ( void  )

◆ receive_packet()

ssize_t receive_packet ( struct interface_info ip,
unsigned char packet_data,
size_t  packet_len,
struct sockaddr_in dest,
struct hardware hardware 
)

Definition at line 34 of file socket.c.

38 {
39 int recv_addr_size = sizeof(*dest);
40 int result;
41
42 if (packet_len > INT_MAX)
43 return WSAEMSGSIZE;
44
45 result =
46 recvfrom (ip -> rfdesc, (char *)packet_data, (int)packet_len, 0,
47 (struct sockaddr *)dest, &recv_addr_size );
48 return result;
49}
INT WSAAPI recvfrom(IN SOCKET s, OUT CHAR FAR *buf, IN INT len, IN INT flags, OUT LPSOCKADDR from, IN OUT INT FAR *fromlen)
Definition: recv.c:87
static char * dest
Definition: rtl.c:135
#define WSAEMSGSIZE
Definition: winerror.h:2856

Referenced by got_one().

◆ reinitialize_interfaces()

void reinitialize_interfaces ( void  )

◆ remove_protocol()

void remove_protocol ( struct protocol proto)

Definition at line 359 of file dispatch.c.

360{
361 struct protocol *p, *next, *prev;
362 struct interface_info *ip = proto->local;
363 struct timeout *t, *q, *u;
364
365 t = NULL;
366 q = timeouts;
367 while (q != NULL)
368 {
369 /* Remove all timeouts for this protocol */
370 if (q->what == ip)
371 {
372 /* Unlink the timeout from previous */
373 if (t)
374 t->next = q->next;
375 else
376 timeouts = q->next;
377
378 /* Advance to the next timeout */
379 u = q->next;
380
381 /* Add it to the free list */
382 q->next = free_timeouts;
384 }
385 else
386 {
387 /* Advance to the next timeout */
388 u = q->next;
389
390 /* Update the previous pointer */
391 t = q;
392 }
393
394 /* Advance */
395 q = u;
396 }
397
398 prev = NULL;
399 for (p = protocols; p; p = next) {
400 next = p->next;
401 if (p == proto) {
402 if (prev)
403 prev->next = p->next;
404 else
405 protocols = p->next;
406 free(p);
407 }
408 }
409}
struct protocol * next
Definition: dhcpd.h:256

Referenced by AdapterDiscoveryThread(), got_one(), Server_AcquireParameters(), Server_ReleaseParameters(), and Server_StaticRefreshParams().

◆ rewrite_client_leases()

void rewrite_client_leases ( struct interface_info ifi)

Definition at line 1775 of file dhclient.c.

1776{
1777 struct client_lease *lp;
1778
1779 if (!leaseFile) {
1781 if (!leaseFile)
1782 error("can't create %s", path_dhclient_db);
1783 } else {
1786 }
1787
1788 for (lp = ifi->client->leases; lp; lp = lp->next)
1789 write_client_lease(ifi, lp, 1);
1790 if (ifi->client->active)
1791 write_client_lease(ifi, ifi->client->active, 1);
1792
1794}
char * path_dhclient_db
Definition: dhclient.c:74
void write_client_lease(struct interface_info *ip, struct client_lease *lease, int rewrite)
Definition: dhclient.c:1797
FILE * leaseFile
Definition: dhclient.c:1772
_CRTIMP void __cdecl rewind(_Inout_ FILE *_File)
_Check_return_opt_ _CRTIMP int __cdecl fflush(_Inout_opt_ FILE *_File)
_Check_return_ _CRTIMP FILE *__cdecl fopen(_In_z_ const char *_Filename, _In_z_ const char *_Mode)

Referenced by write_client_lease().

◆ script_flush_env()

void script_flush_env ( struct client_state )

◆ script_go()

int script_go ( void  )

◆ script_init()

void script_init ( char ,
struct string_list  
)

◆ script_set_env()

void script_set_env ( struct client_state ,
const char ,
const char ,
const char  
)

◆ script_write_params()

void script_write_params ( char ,
struct client_lease  
)

◆ send_decline()

void send_decline ( void ipp)

Definition at line 1395 of file dhclient.c.

1396{
1397 struct interface_info *ip = ipp;
1398
1399 note("DHCPDECLINE on %s to %s port %d", ip->name,
1400 inet_ntoa(sockaddr_broadcast.sin_addr),
1401 ntohs(sockaddr_broadcast.sin_port));
1402
1403 /* Send out a packet. */
1404 (void) send_packet(ip, &ip->client->packet, ip->client->packet_length,
1406}
struct in_addr inaddr_any
Definition: dhclient.c:81
struct sockaddr_in sockaddr_broadcast
Definition: dhclient.c:82
ssize_t send_packet(struct interface_info *ip, struct dhcp_packet *p, size_t size, struct in_addr addr, struct sockaddr_in *broadcast, struct hardware *hardware)
Definition: socket.c:9

◆ send_discover()

void send_discover ( void ipp)

Definition at line 1108 of file dhclient.c.

1109{
1110 struct interface_info *ip = ipp;
1111 int interval, increase = 1;
1113
1114 DH_DbgPrint(MID_TRACE,("Doing discover on interface %p\n",ip));
1115
1116 time(&cur_time);
1117
1118 /* Figure out how long it's been since we started transmitting. */
1119 interval = cur_time - ip->client->first_sending;
1120
1121 /* If we're past the panic timeout, call the script and tell it
1122 we haven't found anything for this interface yet. */
1123 if (interval > ip->client->config->timeout) {
1124 state_panic(ip);
1125 ip->client->first_sending = cur_time;
1126 }
1127
1128 /* If we're selecting media, try the whole list before doing
1129 the exponential backoff, but if we've already received an
1130 offer, stop looping, because we obviously have it right. */
1131 if (!ip->client->offered_leases &&
1132 ip->client->config->media) {
1133 int fail = 0;
1134
1135 if (ip->client->medium) {
1136 ip->client->medium = ip->client->medium->next;
1137 increase = 0;
1138 }
1139 if (!ip->client->medium) {
1140 if (fail)
1141 error("No valid media types for %s!", ip->name);
1142 ip->client->medium = ip->client->config->media;
1143 increase = 1;
1144 }
1145
1146 note("Trying medium \"%s\" %d", ip->client->medium->string,
1147 increase);
1148 /* XXX Support other media types eventually */
1149 }
1150
1151 /*
1152 * If we're supposed to increase the interval, do so. If it's
1153 * currently zero (i.e., we haven't sent any packets yet), set
1154 * it to one; otherwise, add to it a random number between zero
1155 * and two times itself. On average, this means that it will
1156 * double with every transmission.
1157 */
1158 if (increase) {
1159 if (!ip->client->interval)
1160 ip->client->interval =
1161 ip->client->config->initial_interval;
1162 else {
1163 ip->client->interval += (rand() >> 2) %
1164 (2 * ip->client->interval);
1165 }
1166
1167 /* Don't backoff past cutoff. */
1168 if (ip->client->interval >
1169 ip->client->config->backoff_cutoff)
1170 ip->client->interval =
1171 ((ip->client->config->backoff_cutoff / 2)
1172 + ((rand() >> 2) %
1173 ip->client->config->backoff_cutoff));
1174 } else if (!ip->client->interval)
1175 ip->client->interval =
1176 ip->client->config->initial_interval;
1177
1178 /* If the backoff would take us to the panic timeout, just use that
1179 as the interval. */
1180 if (cur_time + ip->client->interval >
1181 ip->client->first_sending + ip->client->config->timeout)
1182 ip->client->interval =
1183 (ip->client->first_sending +
1184 ip->client->config->timeout) - cur_time + 1;
1185
1186 /* Record the number of seconds since we started sending. */
1187 if (interval < 65536)
1188 ip->client->packet.secs = htons(interval);
1189 else
1190 ip->client->packet.secs = htons(65535);
1191 ip->client->secs = ip->client->packet.secs;
1192
1193 note("DHCPDISCOVER on %s to %s port %d interval %ld",
1194 ip->name, inet_ntoa(sockaddr_broadcast.sin_addr),
1195 ntohs(sockaddr_broadcast.sin_port), (long int)ip->client->interval);
1196
1197 /* Send out a packet. */
1198 (void)send_packet(ip, &ip->client->packet, ip->client->packet_length,
1200
1201 DH_DbgPrint(MID_TRACE,("discover timeout: now %x -> then %x\n",
1202 cur_time, cur_time + ip->client->interval));
1203
1204 add_timeout(cur_time + ip->client->interval, send_discover, ip);
1205}
void state_panic(void *ipp)
Definition: dhclient.c:1214
static void increase(int &a_)
#define htons(x)
Definition: module.h:215
_Check_return_ int __cdecl rand(void)
Definition: rand.c:10

Referenced by dhcpoffer(), send_discover(), state_init(), and state_selecting().

◆ send_packet()

ssize_t send_packet ( struct interface_info ip,
struct dhcp_packet p,
size_t  size,
struct in_addr  addr,
struct sockaddr_in broadcast,
struct hardware hardware 
)

Definition at line 9 of file socket.c.

14 {
15 int result;
16
17 if (size > INT_MAX)
18 return WSAEMSGSIZE;
19
20 result =
21 sendto( ip->wfdesc, (char *)p, (int)size, 0,
22 (struct sockaddr *)broadcast, sizeof(*broadcast) );
23
24 if (result < 0) {
25 note ("send_packet: %x", result);
27 note ("send_packet: please consult README file%s",
28 " regarding broadcast address.");
29 }
30
31 return result;
32}
INT WSAAPI sendto(IN SOCKET s, IN CONST CHAR FAR *buf, IN INT len, IN INT flags, IN CONST struct sockaddr *to, IN INT tolen)
Definition: send.c:82
#define WSAENETUNREACH
Definition: winerror.h:2867

Referenced by send_decline(), send_discover(), send_release(), and send_request().

◆ send_release()

void send_release ( void ipp)

Definition at line 1409 of file dhclient.c.

1410{
1411 struct interface_info *ip = ipp;
1412 struct sockaddr_in destination;
1413 struct in_addr from;
1414
1415 memset(&destination, 0, sizeof(destination));
1416 memcpy(&destination.sin_addr.s_addr,
1417 ip->client->destination.iabuf,
1418 sizeof(destination.sin_addr.s_addr));
1419 destination.sin_port = htons(REMOTE_PORT);
1420 destination.sin_family = AF_INET;
1421
1422 memcpy(&from, ip->client->active->address.iabuf,
1423 sizeof(from));
1424
1425 note("DHCPRELEASE on %s to %s port %d", ip->name,
1426 inet_ntoa(destination.sin_addr), ntohs(destination.sin_port));
1427
1428 /* Send out a packet. */
1429 (void) send_packet(ip, &ip->client->packet, ip->client->packet_length,
1430 from, &destination, NULL);
1431}
#define REMOTE_PORT
Definition: dhcpd.h:113
#define AF_INET
Definition: tcpip.h:117

Referenced by state_release().

◆ send_request()

void send_request ( void ipp)

Definition at line 1266 of file dhclient.c.

1267{
1268 struct interface_info *ip = ipp;
1269 struct sockaddr_in destination;
1270 struct in_addr from;
1271 int interval;
1273
1274 time(&cur_time);
1275
1276 /* Figure out how long it's been since we started transmitting. */
1277 interval = cur_time - ip->client->first_sending;
1278
1279 /* If we're in the INIT-REBOOT or REQUESTING state and we're
1280 past the reboot timeout, go to INIT and see if we can
1281 DISCOVER an address... */
1282 /* XXX In the INIT-REBOOT state, if we don't get an ACK, it
1283 means either that we're on a network with no DHCP server,
1284 or that our server is down. In the latter case, assuming
1285 that there is a backup DHCP server, DHCPDISCOVER will get
1286 us a new address, but we could also have successfully
1287 reused our old address. In the former case, we're hosed
1288 anyway. This is not a win-prone situation. */
1289 if ((ip->client->state == S_REBOOTING ||
1290 ip->client->state == S_REQUESTING) &&
1291 interval > ip->client->config->reboot_timeout) {
1292 ip->client->state = S_INIT;
1294 state_init(ip);
1295 return;
1296 }
1297
1298 /* If we're in the reboot state, make sure the media is set up
1299 correctly. */
1300 if (ip->client->state == S_REBOOTING &&
1301 !ip->client->medium &&
1302 ip->client->active->medium ) {
1303 /* If the medium we chose won't fly, go to INIT state. */
1304 /* XXX Nothing for now */
1305
1306 /* Record the medium. */
1307 ip->client->medium = ip->client->active->medium;
1308 }
1309
1310 /* If the lease has expired, relinquish the address and go back
1311 to the INIT state. */
1312 if (ip->client->state != S_REQUESTING &&
1313 cur_time > ip->client->active->expiry) {
1314 PDHCP_ADAPTER Adapter = AdapterFindInfo( ip );
1315 /* Run the client script with the new parameters. */
1316 /* No script actions necessary in the expiry case */
1317 /* Now do a preinit on the interface so that we can
1318 discover a new address. */
1319
1320 if( Adapter )
1321 {
1322 DeleteIPAddress( Adapter->NteContext );
1323 Adapter->NteContext = 0;
1324 }
1325
1326 ip->client->state = S_INIT;
1327 state_init(ip);
1328 return;
1329 }
1330
1331 /* Do the exponential backoff... */
1332 if (!ip->client->interval)
1333 ip->client->interval = ip->client->config->initial_interval;
1334 else
1335 ip->client->interval += ((rand() >> 2) %
1336 (2 * ip->client->interval));
1337
1338 /* Don't backoff past cutoff. */
1339 if (ip->client->interval >
1340 ip->client->config->backoff_cutoff)
1341 ip->client->interval =
1342 ((ip->client->config->backoff_cutoff / 2) +
1343 ((rand() >> 2) % ip->client->interval));
1344
1345 /* If the backoff would take us to the expiry time, just set the
1346 timeout to the expiry time. */
1347 if (ip->client->state != S_REQUESTING &&
1348 cur_time + ip->client->interval >
1349 ip->client->active->expiry)
1350 ip->client->interval =
1351 ip->client->active->expiry - cur_time + 1;
1352
1353 /* If the lease T2 time has elapsed, or if we're not yet bound,
1354 broadcast the DHCPREQUEST rather than unicasting. */
1355 memset(&destination, 0, sizeof(destination));
1356 if (ip->client->state == S_REQUESTING ||
1357 ip->client->state == S_REBOOTING ||
1358 cur_time > ip->client->active->rebind)
1359 destination.sin_addr.s_addr = INADDR_BROADCAST;
1360 else
1361 memcpy(&destination.sin_addr.s_addr,
1362 ip->client->destination.iabuf,
1363 sizeof(destination.sin_addr.s_addr));
1364 destination.sin_port = htons(REMOTE_PORT);
1365 destination.sin_family = AF_INET;
1366// destination.sin_len = sizeof(destination);
1367
1368 if (ip->client->state != S_REQUESTING)
1369 memcpy(&from, ip->client->active->address.iabuf,
1370 sizeof(from));
1371 else
1372 from.s_addr = INADDR_ANY;
1373
1374 /* Record the number of seconds since we started sending. */
1375 if (ip->client->state == S_REQUESTING)
1376 ip->client->packet.secs = ip->client->secs;
1377 else {
1378 if (interval < 65536)
1379 ip->client->packet.secs = htons(interval);
1380 else
1381 ip->client->packet.secs = htons(65535);
1382 }
1383
1384 note("DHCPREQUEST on %s to %s port %d", ip->name,
1385 inet_ntoa(destination.sin_addr), ntohs(destination.sin_port));
1386
1387 /* Send out a packet. */
1388 (void) send_packet(ip, &ip->client->packet, ip->client->packet_length,
1389 from, &destination, NULL);
1390
1391 add_timeout(cur_time + ip->client->interval, send_request, ip);
1392}
DWORD WINAPI DeleteIPAddress(ULONG NTEContext)
#define INADDR_BROADCAST
Definition: inet.h:82
#define INADDR_ANY
Definition: inet.h:80
ULONG NteContext
Definition: rosdhcp.h:72

◆ skip_to_semi()

void skip_to_semi ( FILE )

◆ state_bound()

void state_bound ( void ipp)

Definition at line 773 of file dhclient.c.

774{
775 struct interface_info *ip = ipp;
776
778
779 /* T1 has expired. */
780 make_request(ip, ip->client->active);
781 ip->client->xid = ip->client->packet.xid;
782
783 if (ip->client->active->options[DHO_DHCP_SERVER_IDENTIFIER].len == 4) {
784 memcpy(ip->client->destination.iabuf, ip->client->active->
786 ip->client->destination.len = 4;
787 } else
788 ip->client->destination = iaddr_broadcast;
789
790 time(&ip->client->first_sending);
791 ip->client->interval = ip->client->config->initial_interval;
792 ip->client->state = S_RENEWING;
793
794 /* Send the first packet immediately. */
796}
static int state
Definition: maze.c:121
void make_request(struct interface_info *ip, struct client_lease *lease)
Definition: dhclient.c:1517
struct iaddr iaddr_broadcast
Definition: dhclient.c:80
#define ASSERT_STATE(state_is, state_shouldbe)
Definition: dhclient.c:88

Referenced by bind_lease().

◆ state_init()

void state_init ( void ipp)

Definition at line 210 of file dhclient.c.

211{
212 struct interface_info *ip = ipp;
213
215
216 /* Make a DHCPDISCOVER packet, and set appropriate per-interface
217 flags. */
218 make_discover(ip, ip->client->active);
219 ip->client->xid = ip->client->packet.xid;
220 ip->client->destination = iaddr_broadcast;
221 ip->client->state = S_SELECTING;
222 time(&ip->client->first_sending);
223 ip->client->interval = ip->client->config->initial_interval;
224
225 /* Add an immediate timeout to cause the first DHCPDISCOVER packet
226 to go out. */
228}
void make_discover(struct interface_info *ip, struct client_lease *lease)
Definition: dhclient.c:1434

Referenced by AdapterDiscoveryThread(), device_init(), dhcpnak(), send_request(), state_reboot(), state_selecting(), wined3d_cs_create(), wined3d_cs_exec_reset_state(), and wined3d_device_reset().

◆ state_panic()

void state_panic ( void ipp)

Definition at line 1214 of file dhclient.c.

1215{
1216 struct interface_info *ip = ipp;
1217 uint16_t address_low;
1218 int i;
1219 IPAddr IpAddress;
1220 ULONG Buffer[20];
1222 DWORD ret;
1223 PDHCP_ADAPTER Adapter = AdapterFindInfo(ip);
1224
1225 note("No DHCPOFFERS received.");
1226
1227 if (Adapter && !Adapter->NteContext)
1228 {
1229 /* Generate an automatic private address */
1230 DbgPrint("DHCPCSVC: Failed to receive a response from a DHCP server. An automatic private address will be assigned.\n");
1231
1232 /* FIXME: The address generation code sucks */
1233 srand(0);
1234
1235 for (;;)
1236 {
1237 address_low = rand();
1238 for (i = 0; i < ip->hw_address.hlen; i++)
1239 address_low += ip->hw_address.haddr[i];
1240
1241 IpAddress = htonl(0xA9FE0000 | address_low); // 169.254.X.X
1242
1243 /* Send an ARP request to check if the IP address is already in use */
1244 BufferSize = sizeof(Buffer);
1245 ret = SendARP(IpAddress,
1246 IpAddress,
1247 Buffer,
1248 &BufferSize);
1249 DH_DbgPrint(MID_TRACE,("DHCPCSVC: SendARP returned %lu\n", ret));
1250 if (ret != 0)
1251 {
1252 /* The IP address is not in use */
1253 DH_DbgPrint(MID_TRACE,("DHCPCSVC: Using automatic private address\n"));
1254 AddIPAddress(IpAddress,
1255 htonl(0xFFFF0000), // 255.255.0.0
1256 Adapter->IfMib.dwIndex,
1257 &Adapter->NteContext,
1258 &Adapter->NteInstance);
1259 return;
1260 }
1261 }
1262 }
1263}
unsigned short int uint16_t
Definition: acefiex.h:54
Definition: bufpool.h:45
#define BufferSize
Definition: mmc.h:75
return ret
Definition: mutex.c:146
#define DbgPrint
Definition: hal.h:12
DWORD WINAPI AddIPAddress(IPAddr Address, IPMask Netmask, DWORD IfIndex, PULONG NteContext, PULONG NteInstance)
Definition: iphlpapi_main.c:67
DWORD WINAPI SendARP(IPAddr DestIP, IPAddr SrcIP, PULONG pMacAddr, PULONG PhyAddrLen)
ULONG IPAddr
Definition: pfhook.h:35
void __cdecl srand(_In_ unsigned int _Seed)
ULONG NteInstance
Definition: rosdhcp.h:72
MIB_IFROW IfMib
Definition: rosdhcp.h:68
DWORD dwIndex
Definition: ifmib.h:38
_In_ WDFMEMORY _Out_opt_ size_t * BufferSize
Definition: wdfmemory.h:254

Referenced by send_discover().

◆ state_reboot()

void state_reboot ( void ipp)

Definition at line 172 of file dhclient.c.

173{
174 struct interface_info *ip = ipp;
176
177 /* If we don't remember an active lease, go straight to INIT. */
178 if (!ip->client->active || ip->client->active->is_bootp) {
179 state_init(ip);
180 return;
181 }
182
183 /* We are in the rebooting state. */
184 ip->client->state = S_REBOOTING;
185
186 /* make_request doesn't initialize xid because it normally comes
187 from the DHCPDISCOVER, but we haven't sent a DHCPDISCOVER,
188 so pick an xid now. */
189 ip->client->xid = RtlRandom(&foo);
190
191 /* Make a DHCPREQUEST packet, and set appropriate per-interface
192 flags. */
193 make_request(ip, ip->client->active);
194 ip->client->destination = iaddr_broadcast;
195 time(&ip->client->first_sending);
196 ip->client->interval = ip->client->config->initial_interval;
197
198 /* Zap the medium list... */
199 ip->client->medium = NULL;
200
201 /* Send out the first DHCPREQUEST packet. */
203}

Referenced by Server_AcquireParameters().

◆ state_release()

void state_release ( void ipp)

Definition at line 231 of file dhclient.c.

232{
233 struct interface_info *ip = ipp;
235
237
238 /* Make a DHCPRELEASE packet, and set appropriate per-interface
239 flags. */
240 make_release(ip, ip->client->active);
241
242 /* make_request doesn't initialize xid because it normally comes
243 from the DHCPDISCOVER, but we haven't sent a DHCPDISCOVER,
244 so pick an xid now. */
245 ip->client->xid = RtlRandom(&foo);
247
248 ip->client->state = S_RELEASED;
250}
void make_release(struct interface_info *ip, struct client_lease *lease)
Definition: dhclient.c:1693
void send_release(void *ipp)
Definition: dhclient.c:1409
void unbind_lease(struct interface_info *ip)
Definition: dhclient.c:745

Referenced by Server_ReleaseParameters().

◆ state_requesting()

void state_requesting ( void )

◆ state_selecting()

void state_selecting ( void ipp)

Definition at line 257 of file dhclient.c.

258{
259 struct interface_info *ip = ipp;
260 struct client_lease *lp, *next, *picked;
262
264
265 time(&cur_time);
266
267 /* Cancel state_selecting and send_discover timeouts, since either
268 one could have got us here. */
271
272 /* We have received one or more DHCPOFFER packets. Currently,
273 the only criterion by which we judge leases is whether or
274 not we get a response when we arp for them. */
275 picked = NULL;
276 for (lp = ip->client->offered_leases; lp; lp = next) {
277 next = lp->next;
278
279 /* Check to see if we got an ARPREPLY for the address
280 in this particular lease. */
281 if (!picked) {
282 if( !check_arp(ip,lp) ) goto freeit;
283 picked = lp;
284 picked->next = NULL;
285 } else {
286freeit:
288 }
289 }
290 ip->client->offered_leases = NULL;
291
292 /* If we just tossed all the leases we were offered, go back
293 to square one. */
294 if (!picked) {
295 ip->client->state = S_INIT;
296 state_init(ip);
297 return;
298 }
299
300 /* If it was a BOOTREPLY, we can just take the address right now. */
301 if (!picked->options[DHO_DHCP_MESSAGE_TYPE].len) {
302 ip->client->new = picked;
303
304 /* Make up some lease expiry times
305 XXX these should be configurable. */
306 ip->client->new->expiry = cur_time + 12000;
307 ip->client->new->renewal += cur_time + 8000;
308 ip->client->new->rebind += cur_time + 10000;
309
310 ip->client->state = S_REQUESTING;
311
312 /* Bind to the address we received. */
313 bind_lease(ip);
314 return;
315 }
316
317 /* Go to the REQUESTING state. */
318 ip->client->destination = iaddr_broadcast;
319 ip->client->state = S_REQUESTING;
320 ip->client->first_sending = cur_time;
321 ip->client->interval = ip->client->config->initial_interval;
322
323 /* Make a DHCPREQUEST packet from the lease we picked. */
324 make_request(ip, picked);
325 ip->client->xid = ip->client->packet.xid;
326
327 /* Toss the lease we picked - we'll get it back in a DHCPACK. */
328 free_client_lease(picked);
329
330 /* Add an immediate timeout to send the first DHCPREQUEST packet. */
332}

Referenced by dhcpoffer(), and state_selecting().

◆ subnet_number()

struct iaddr subnet_number ( struct iaddr  addr,
struct iaddr  mask 
)

Definition at line 183 of file util.c.

183 {
184 struct iaddr bcast = { 0 };
185 return bcast;
186}

Referenced by priv_script_write_params().

◆ unbind_lease()

void unbind_lease ( struct interface_info ip)

Definition at line 745 of file dhclient.c.

746{
747 PDHCP_ADAPTER Adapter;
748
749 if (ip->client->active) {
750 free_client_lease(ip->client->active);
751 ip->client->active = NULL;
752 }
753
754 Adapter = AdapterFindInfo( ip );
755 if (Adapter) {
756 reset_adapter(Adapter);
757 unset_name_servers(Adapter);
758 unset_domain(Adapter);
759 }
760 else {
761 warning("Could not find adapter for info %p\n", ip);
762 return;
763 }
764}
void unset_domain(PDHCP_ADAPTER Adapter)
Definition: dhclient.c:533
void unset_name_servers(PDHCP_ADAPTER Adapter)
Definition: dhclient.c:466
void reset_adapter(PDHCP_ADAPTER Adapter)
Definition: dhclient.c:652

Referenced by state_release().

◆ warning()

void int warning ( char format,
  ... 
)

Definition at line 129 of file uimain.c.

786{
787 va_list ap;
788 char text[512];
789 char text1[512];
790
791 sprintf(text1, "WARNING: ");
794 va_end(ap);
795 strcat(text1, text);
796 mi_warning(text1);
797}
void mi_warning(char *msg)
Definition: win32.c:848

◆ write_client_lease()

void write_client_lease ( struct interface_info ip,
struct client_lease lease,
int  rewrite 
)

Definition at line 1797 of file dhclient.c.

1799{
1800 static int leases_written;
1801 struct tm *t;
1802 int i;
1803
1804 if (!rewrite) {
1805 if (leases_written++ > 20) {
1807 leases_written = 0;
1808 }
1809 }
1810
1811 /* If the lease came from the config file, we don't need to stash
1812 a copy in the lease database. */
1813 if (lease->is_static)
1814 return;
1815
1816 if (!leaseFile) { /* XXX */
1818 if (!leaseFile) {
1819 error("can't create %s", path_dhclient_db);
1820 return;
1821 }
1822 }
1823
1824 fprintf(leaseFile, "lease {\n");
1825 if (lease->is_bootp)
1826 fprintf(leaseFile, " bootp;\n");
1827 fprintf(leaseFile, " interface \"%s\";\n", ip->name);
1828 fprintf(leaseFile, " fixed-address %s;\n", piaddr(lease->address));
1829 if (lease->filename)
1830 fprintf(leaseFile, " filename \"%s\";\n", lease->filename);
1831 if (lease->server_name)
1832 fprintf(leaseFile, " server-name \"%s\";\n",
1833 lease->server_name);
1834 if (lease->medium)
1835 fprintf(leaseFile, " medium \"%s\";\n", lease->medium->string);
1836 for (i = 0; i < 256; i++)
1837 if (lease->options[i].len)
1838 fprintf(leaseFile, " option %s %s;\n",
1840 pretty_print_option(i, lease->options[i].data,
1841 lease->options[i].len, 1, 1));
1842
1843 t = gmtime(&lease->renewal);
1844 if (t)
1845 fprintf(leaseFile, " renew %d %d/%d/%d %02d:%02d:%02d;\n",
1846 t->tm_wday, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
1847 t->tm_hour, t->tm_min, t->tm_sec);
1848 t = gmtime(&lease->rebind);
1849 if (t)
1850 fprintf(leaseFile, " rebind %d %d/%d/%d %02d:%02d:%02d;\n",
1851 t->tm_wday, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
1852 t->tm_hour, t->tm_min, t->tm_sec);
1853 t = gmtime(&lease->expiry);
1854 if (t)
1855 fprintf(leaseFile, " expire %d %d/%d/%d %02d:%02d:%02d;\n",
1856 t->tm_wday, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
1857 t->tm_hour, t->tm_min, t->tm_sec);
1858 fprintf(leaseFile, "}\n");
1860}
void rewrite_client_leases(struct interface_info *ifi)
Definition: dhclient.c:1775
_Check_return_opt_ _CRTIMP int __cdecl fprintf(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format,...)
_CRTIMP struct tm *__cdecl gmtime(const time_t *_Time)
Definition: time.h:415
unsigned int is_static
Definition: dhcpd.h:165
time_t renewal
Definition: dhcpd.h:155
time_t rebind
Definition: dhcpd.h:155
Definition: time.h:68

Referenced by rewrite_client_leases().

Variable Documentation

◆ bootp_packet_handler

Definition at line 59 of file dispatch.c.

Referenced by got_one(), and init_client().

◆ comment_index

int comment_index
extern

◆ comments

char comments[4096]
extern

◆ cur_time

◆ dhcp_option_default_priority_list

unsigned char dhcp_option_default_priority_list[]
extern

Definition at line 329 of file tables.c.

Referenced by cons_options().

◆ dhcp_options

◆ dhcp_universe

struct universe dhcp_universe
extern

Definition at line 67 of file tables.c.

Referenced by initialize_universes().

◆ eol_token

int eol_token
extern

◆ lexchar

void int int int int int lexchar

Definition at line 311 of file dhcpd.h.

◆ lexline

void int int int int int lexline
extern

◆ log_perror

int log_perror
extern

Definition at line 76 of file dhclient.c.

◆ log_priority

int log_priority
extern

Definition at line 92 of file dhclient.c.

◆ path_dhclient_conf

char* path_dhclient_conf
extern

Definition at line 73 of file dhclient.c.

◆ path_dhclient_db

char* path_dhclient_db
extern

Definition at line 74 of file dhclient.c.

Referenced by rewrite_client_leases(), and write_client_lease().

◆ sizeof_dhcp_option_default_priority_list

int sizeof_dhcp_option_default_priority_list
extern

Definition at line 408 of file tables.c.

Referenced by cons_options().

◆ tlname

char * tlname

Definition at line 312 of file dhcpd.h.

◆ token_line

char* token_line
extern

◆ top_level_config

struct client_config top_level_config
extern

◆ universe_hash

struct hash_table universe_hash
extern

Definition at line 672 of file tables.c.

Referenced by initialize_universes().

◆ warnings_occurred

int warnings_occurred
extern