forked from royhills/arp-scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrappers.c
137 lines (112 loc) · 3.58 KB
/
wrappers.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
/*
* The ARP Scanner (arp-scan) is Copyright (C) 2005-2019 Roy Hills
*
* This file is part of arp-scan.
*
* arp-scan 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.
*
* arp-scan 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 arp-scan. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Roy Hills
* Date: 8 November 2003
*
* This file contains wrapper functions for system and library calls that
* are not expected to fail. If they do fail, then it calls err_sys to
* print a diagnostic and terminate the program. This removed the tedious
* "if ((function()) == NULL) err_sys("function");" logic thus making the
* code easier to read.
*
* The wrapper functions have the same name as the system or library function
* but with an initial capital letter. E.g. Gethostbyname(). This convention
* if from Richard Steven's UNIX Network Programming book.
*
*/
#include "arp-scan.h"
/*
* We omit the timezone arg from this wrapper since it's obsolete and we never
* use it.
*/
int Gettimeofday(struct timeval *tv) {
int result;
result = gettimeofday(tv, NULL);
if (result != 0)
err_sys("gettimeofday");
return result;
}
void *Malloc(size_t size) {
void *result;
result = malloc(size);
if (result == NULL)
err_sys("malloc");
return result;
}
void *Realloc(void *ptr, size_t size) {
void *result;
result=realloc(ptr, size);
if (result == NULL)
err_sys("realloc");
return result;
}
unsigned long int Strtoul(const char *nptr, int base) {
char *endptr;
unsigned long int result;
result=strtoul(nptr, &endptr, base);
if (endptr == nptr) /* No digits converted */
err_msg("ERROR: \"%s\" is not a valid numeric value", nptr);
if (*endptr != '\0' && !isspace((unsigned char)*endptr))
err_msg("ERROR: \"%s\" is not a valid numeric value", nptr);
return result;
}
long int Strtol(const char *nptr, int base) {
char *endptr;
long int result;
result=strtol(nptr, &endptr, base);
if (endptr == nptr) /* No digits converted */
err_msg("ERROR: \"%s\" is not a valid numeric value", nptr);
if (*endptr != '\0' && !isspace((unsigned char)*endptr))
err_msg("ERROR: \"%s\" is not a valid numeric value", nptr);
return result;
}
/*
* my_lookupdev() is adapted from pcap_lookupdev() which is depreciated
* in libpcap 1.9.0 and later.
*/
char *
my_lookupdev(char *errbuf)
{
pcap_if_t *alldevs;
#ifndef IF_NAMESIZE
#define IF_NAMESIZE 8192
#endif
static char device[IF_NAMESIZE + 1];
char *ret;
if (pcap_findalldevs(&alldevs, errbuf) == -1)
return (NULL);
if (alldevs == NULL || (alldevs->flags & PCAP_IF_LOOPBACK)) {
/*
* There are no devices on the list, or the first device
* on the list is a loopback device, which means there
* are no non-loopback devices on the list. This means
* we can't return any device.
*/
(void)strlcpy(errbuf, "no suitable device found", PCAP_ERRBUF_SIZE);
ret = NULL;
} else {
/*
* Return the name of the first device on the list.
*/
(void)strlcpy(device, alldevs->name, sizeof(device));
ret = device;
}
pcap_freealldevs(alldevs);
return (ret);
}