-
Notifications
You must be signed in to change notification settings - Fork 2
/
ipaddrparse.c
215 lines (205 loc) · 5.66 KB
/
ipaddrparse.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
* Part of Very Secure FTPd
* Licence: GPL v2
* Author: Chris Evans
* ipaddrparse.c
*
* A routine to parse ip addresses. I'm paranoid and don't want to use
* inet_pton.
*/
#include "ipaddrparse.h"
#include "sysutil.h"
#include "str.h"
#pragma CHECKED_SCOPE on
static int ipv6_parse_main(struct mystr *p_out_str : itype(_Ptr<struct mystr>), const struct mystr *p_in_str : itype(_Ptr<const struct mystr>));
static int ipv6_parse_hex(struct mystr *p_out_str : itype(_Ptr<struct mystr>), const struct mystr *p_in_str : itype(_Ptr<const struct mystr>));
static int ipv4_parse_dotquad(struct mystr *p_out_str : itype(_Ptr<struct mystr>), const struct mystr *p_in_str : itype(_Ptr<const struct mystr>));
const unsigned char *
vsf_sysutil_parse_ipv6(const struct mystr *p_str : itype(_Ptr<const struct mystr>)) : itype(_Array_ptr<const unsigned char>) count(sizeof(struct in6_addr))
{
static struct mystr s_ret = {};
static struct mystr s_rhs_ret = {};
static struct mystr s_lhs_str = {};
static struct mystr s_rhs_str = {};
unsigned int lhs_len;
unsigned int rhs_len;
str_empty(&s_ret);
str_empty(&s_rhs_ret);
str_copy(&s_lhs_str, p_str);
str_split_text(&s_lhs_str, &s_rhs_str, "::");
if (!ipv6_parse_main(&s_ret, &s_lhs_str))
{
return 0;
}
if (!ipv6_parse_main(&s_rhs_ret, &s_rhs_str))
{
return 0;
}
lhs_len = str_getlen(&s_ret);
rhs_len = str_getlen(&s_rhs_ret);
if (lhs_len + rhs_len > 16)
{
return 0;
}
if (rhs_len > 0)
{
unsigned int add_nulls = 16 - (lhs_len + rhs_len);
while (add_nulls--)
{
str_append_char(&s_ret, '\0');
}
str_append_str(&s_ret, &s_rhs_ret);
}
return _Dynamic_bounds_cast<_Nt_array_ptr<const unsigned char>>(str_getbuf(&s_ret), count(sizeof(struct in6_addr)));
}
const unsigned char *vsf_sysutil_parse_ipv4(const struct mystr *p_str : itype(_Ptr<const struct mystr>)) : itype(_Array_ptr<const unsigned char>) count(sizeof(struct in_addr))
{
static unsigned char items _Checked[4];
return vsf_sysutil_parse_uchar_string_sep(p_str, '.', items, sizeof(items));
}
const unsigned char *vsf_sysutil_parse_uchar_string_sep(const struct mystr *p_str : itype(_Ptr<const struct mystr>), char sep, unsigned char *p_items : itype(_Array_ptr<unsigned char>) count(items), unsigned int items) : itype(_Array_ptr<const unsigned char>) count(items)
{
static struct mystr s_tmp_str = {};
unsigned int i;
str_copy(&s_tmp_str, p_str);
for (i=0; i<items; i++)
{
static struct mystr s_rhs_sep_str = {};
int this_number;
/* This puts a single separator delimited field in tmp_str */
str_split_char(&s_tmp_str, &s_rhs_sep_str, sep);
/* Sanity - check for too many or two few dots! */
if ( (i < (items-1) && str_isempty(&s_rhs_sep_str)) ||
(i == (items-1) && !str_isempty(&s_rhs_sep_str)))
{
return 0;
}
this_number = str_atoi(&s_tmp_str);
if (this_number < 0 || this_number > 255)
{
return 0;
}
/* If this truncates from int to uchar, we don't care */
p_items[i] = (unsigned char) this_number;
/* The right hand side of the comma now becomes the new string to
* breakdown
*/
str_copy(&s_tmp_str, &s_rhs_sep_str);
}
return p_items;
}
static int
ipv6_parse_main(struct mystr *p_out_str : itype(_Ptr<struct mystr>), const struct mystr *p_in_str : itype(_Ptr<const struct mystr>))
{
static struct mystr s_lhs_str = {};
static struct mystr s_rhs_str = {};
struct str_locate_result loc_ret;
str_copy(&s_lhs_str, p_in_str);
while (!str_isempty(&s_lhs_str))
{
str_split_char(&s_lhs_str, &s_rhs_str, ':');
if (str_isempty(&s_lhs_str))
{
return 0;
}
loc_ret = str_locate_char(&s_lhs_str, '.');
if (loc_ret.found)
{
if (!ipv4_parse_dotquad(p_out_str, &s_lhs_str))
{
return 0;
}
}
else if (!ipv6_parse_hex(p_out_str, &s_lhs_str))
{
return 0;
}
str_copy(&s_lhs_str, &s_rhs_str);
}
return 1;
}
static int
ipv6_parse_hex(struct mystr *p_out_str : itype(_Ptr<struct mystr>), const struct mystr *p_in_str : itype(_Ptr<const struct mystr>))
{
unsigned int len = str_getlen(p_in_str);
unsigned int i;
unsigned int val = 0;
for (i=0; i<len; ++i)
{
int ch = vsf_sysutil_toupper(str_get_char_at(p_in_str, i));
if (ch >= '0' && ch <= '9')
{
ch -= '0';
}
else if (ch >= 'A' && ch <= 'F')
{
ch -= 'A';
ch += 10;
}
else
{
return 0;
}
val <<= 4;
val |= ch;
if (val > 0xFFFF)
{
return 0;
}
}
str_append_char(p_out_str, (val >> 8));
str_append_char(p_out_str, (val & 0xFF));
return 1;
}
static int
ipv4_parse_dotquad(struct mystr *p_out_str : itype(_Ptr<struct mystr>), const struct mystr *p_in_str : itype(_Ptr<const struct mystr>))
{
unsigned int len = str_getlen(p_in_str);
unsigned int i;
unsigned int val = 0;
unsigned int final_val = 0;
int seen_char = 0;
int dots = 0;
for (i=0; i<len; ++i)
{
int ch = str_get_char_at(p_in_str, i);
if (ch == '.')
{
if (!seen_char || dots == 3)
{
return 0;
}
seen_char = 0;
dots++;
final_val <<= 8;
final_val |= val;
val = 0;
}
else if (ch >= '0' && ch <= '9')
{
ch -= '0';
val *= 10;
val += ch;
if (val > 255)
{
return 0;
}
seen_char = 1;
}
else
{
return 0;
}
}
if (dots != 3 || !seen_char)
{
return 0;
}
final_val <<= 8;
final_val |= val;
str_append_char(p_out_str, (final_val >> 24));
str_append_char(p_out_str, ((final_val >> 16) & 0xFF));
str_append_char(p_out_str, ((final_val >> 8) & 0xFF));
str_append_char(p_out_str, (final_val & 0xFF));
return 1;
}