-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhost.c
199 lines (152 loc) · 4.25 KB
/
host.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
188
189
190
191
192
193
194
195
196
197
198
199
/* cSploit - a simple penetration testing suite
* Copyright (C) 2014 Massimo Dragano aka tux_mind <[email protected]>
*
* cSploit is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* cSploit is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with cSploit. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <assert.h>
#include <csploit/sorted_arraylist.h>
#include <csploit/logger.h>
#include "ifinfo.h"
#include "host.h"
#include "netdefs.h"
#include "event.h"
#include "prober.h"
#include "resolver.h"
struct hosts_data hosts;
/**
* @brief initalize host data
* @returns 0 on success, -1 on error.
*/
int init_hosts() {
hosts.array = NULL;
hosts.size = 0;
return 0;
}
struct host *get_host(uint32_t ip) {
if(!(hosts.array)) return NULL;
return (struct host *) sortedarray_get((array *) &hosts, ip);
}
struct host *create_host(uint32_t ip, uint8_t *mac, char *name) {
struct host *h;
h = (struct host *) malloc(sizeof(struct host));
if(!h) {
print( ERROR, "malloc: %s", strerror(errno));
return NULL;
}
memset(h, 0, sizeof(struct host));
h->ip = ip;
memcpy(h->mac, mac, ETH_ALEN);
h->name = name;
return h;
}
/**
* @brief add an host to the host array
* @param h the host to add
* @returns 0 on success, -1 on error.
*
* do not add an already existing host!
*/
inline int add_host(struct host *h) {
return sortedarray_ins((array *) &hosts, (comparable_item *) h);
}
/**
* @brief delete an host from the host array
* @param h the host to delete
* @returns 0 on success, -1 on error.
*/
inline int del_host(struct host *h) {
return sortedarray_del((array *) &hosts, (comparable_item *) h);
}
/**
* @brief default callback to call whence an host has been found.
* @param mac host mac address
* @param ip host ip address
* @param name hostname
* @param lstatus lookup status
*/
void on_host_found(uint8_t *mac, uint32_t ip, char *name, char lstatus) {
struct host *h;
struct event *e;
int old_errno;
uint8_t e_type;
char prev_lstatus, host_has_name;
e_type = NONE;
pthread_mutex_lock(&(hosts.control.mutex));
h = get_host(ip);
if(h) {
if(name) {
if(h->name) {
e_type = NAME_CHANGED;
free(h->name);
} else {
e_type = NEW_NAME;
}
h->name = name;
}
if(memcmp(mac, h->mac, ETH_ALEN)) {
memcpy(h->mac, mac, ETH_ALEN);
e_type = MAC_CHANGED;
}
} else {
h = create_host(ip, mac, name);
if(!h) {
old_errno = errno;
pthread_mutex_unlock(&(hosts.control.mutex));
print(ERROR, "malloc: %s", strerror(old_errno));
return;
}
if(sortedarray_ins((array *) &hosts, (comparable_item *) h)) {
pthread_mutex_unlock(&(hosts.control.mutex));
free_host(h);
return;
}
e_type = (name ? NEW_NAME : NEW_MAC);
}
h->timeout = time(NULL) + HOST_TIMEOUT;
prev_lstatus = h->lookup_status | lstatus;
h->lookup_status |= (HOST_LOOKUP_DNS|HOST_LOOKUP_NBNS);
host_has_name = h->name != NULL;
pthread_mutex_unlock(&(hosts.control.mutex));
if(!(prev_lstatus & HOST_LOOKUP_DNS) && !host_has_name) {
begin_dns_lookup(ip);
}
if(!(prev_lstatus & HOST_LOOKUP_NBNS)) {
begin_nbns_lookup(ip);
}
if(e_type == NONE)
return;
e = (struct event *) malloc(sizeof(struct event));
if(!e) {
print( ERROR, "malloc: %s", strerror(errno));
return;
}
e->ip = ip;
e->type = e_type;
add_event(e);
}
void fini_hosts() {
register uint32_t i;
pthread_mutex_lock(&(hosts.control.mutex));
for(i=0;i<hosts.size;i++) {
free_host(hosts.array[i]);
}
free(hosts.array);
hosts.array = NULL;
hosts.size = 0;
pthread_mutex_unlock(&(hosts.control.mutex));
}