-
Notifications
You must be signed in to change notification settings - Fork 154
/
wrappers.c
98 lines (79 loc) · 2.46 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
/*
* arp-scan is Copyright (C) 2005-2024 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 || (*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 || (*endptr != '\0' && !isspace((unsigned char)*endptr)))
err_msg("ERROR: \"%s\" is not a valid numeric value", nptr);
return result;
}