This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
dhclient.c
187 lines (151 loc) · 5.65 KB
/
dhclient.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
Copyright (c) 2014, Pierre-Henri Symoneaux
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of LightDhcpClient nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "dhcp.h"
#include "net.h"
#include <sys/socket.h>
#include <netinet/udp.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <net/ethernet.h>
#include <linux/if_arp.h>
#define BUFF_SIZE 1024
//http://aschauf.landshut.org/fh/linux/udp_vs_raw/ch01s03.html
void main(int argc, char** argv)
{
if(geteuid() != 0)
{
fprintf(stderr, "You need root permissions\n");
exit(1);
}
//TODO : Add a debug mode
char* interface;
if(argc > 1)
interface = argv[1];
else
{
fprintf(stderr, "Please specify network interface to use\n");
exit(1);
}
// printf("Interface = %s\n", interface);
int sock = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
//Set receive timeout
struct timeval tv;
tv.tv_usec = 0;
tv.tv_sec = 10; //10 seconds in case of latency on the network
setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
//retrieve ethernet NIC index and HW address
struct hw_eth_iface iface = find_iface(sock, interface); // TODO : Check interface existency, and print a list of possible NIC
struct sockaddr_ll target;
memset(&target, 0, sizeof(target));
target.sll_family = PF_PACKET;
target.sll_protocol = htons(ETH_P_IP);
target.sll_ifindex = iface.index;
target.sll_hatype = ARPHRD_ETHER;
target.sll_pkttype = PACKET_HOST;
target.sll_halen = ETH_ALEN;
memset(target.sll_addr, 0xff, 6);
char buffer[BUFF_SIZE];
// struct dhcp_pkt *dhcp = (struct dhcp_pkt*)(buffer + sizeof(struct udpheader) + sizeof(struct ipheader));
struct dhcp_pkt dhcp;
int dhcp_len = build_dhcp_discover(&dhcp, iface.hw_addr, iface.addr_len);
int len = build_ip4_udp_pkt(buffer, BUFF_SIZE, (unsigned char*)&dhcp, dhcp_len, "0.0.0.0", "255.255.255.255", 68, 67, IPPROTO_UDP);
//Send the packet over the network
if(sendto(sock, buffer, len, 0, (struct sockaddr *)&target, sizeof(target)) < 0)
{
perror("Error while writing to socket");
exit(1);
}
//Now, wait for the server response, and read it
receive:
memset(buffer, 0, BUFF_SIZE);
//Read a packet
int read_len = recvfrom(sock, buffer, BUFF_SIZE, 0, NULL, NULL);
if(read_len <= 0)
{
perror("Cannot read");
exit(1);
}
struct ipheader *rip = (struct ipheader*) buffer;
struct udpheader *rudp = (struct udpheader*)(buffer + sizeof(struct ipheader));
struct dhcp_pkt *rdhcp = (struct dhcp_pkt*)(buffer + sizeof(struct udpheader) + sizeof(struct ipheader));
//Check packet validity
// if dest port isn't our or packet is not a dhcp one, drop the packet
if(rip->iph_protocol != IPPROTO_UDP || rudp->udph_destport != htons(68) || !is_dhcp(rdhcp) || rdhcp->op != OP_BOOT_REPLY)
goto receive;
// printf("Data Recieved, length = %d\n", read_len);
//Find the IP attributed to us by the server
struct in_addr raddr;
raddr.s_addr = rdhcp->yi_addr;
printf("IPADDR=%s\n", inet_ntoa(raddr));
//Now check DHCP options, and process them
struct dhcp_opt *opt = NULL;
int offs = 0;
opt = get_dhcp_option(rdhcp, &offs);
while(opt != NULL)
{
// printf("OPT FOUND offset = %d\n", offs);
switch(opt->id)
{
case OPTION_ROUTER: // If the option is the gateway address
if(opt->len == 4)
{
raddr.s_addr = char_to_ip(opt->values);
printf("GATEWAY=%s\n", inet_ntoa(raddr));
}
break;
case OPTION_SUBNET_MASK: // If the option is the netwmask
if(opt->len == 4)
{
raddr.s_addr = char_to_ip(opt->values);
printf("NETMASK=%s\n", inet_ntoa(raddr));
}
break;
case OPTION_DNS: // If option is the DNS addresses
if(opt->len % 4 == 0)
{
int i = 0;
printf("NAMESERVER=");
int max = opt->len / 4;
for(i = 0; i < max; i++)
{
raddr.s_addr = char_to_ip(opt->values + 4*i);
printf("%s", inet_ntoa(raddr));
if(i < max - 1)
printf(",");
}
printf("\n");
}
break;
default:
break;
}
opt = get_dhcp_option(rdhcp, &offs);
}
close(sock);
exit(0);
}