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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
/* $Id: netaddrstr2.cpp $ */
/** @file
* IPRT - Network Address String Handling.
*/
/*
* Copyright (C) 2013-2020 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
#include "internal/iprt.h"
#include <iprt/net.h>
#include <iprt/asm.h>
#include <iprt/errcore.h>
#include <iprt/mem.h>
#include <iprt/string.h>
#include <iprt/stream.h>
#include "internal/string.h"
DECLHIDDEN(int) rtNetStrToIPv4AddrEx(const char *pcszAddr, PRTNETADDRIPV4 pAddr,
char **ppszNext)
{
char *pszNext;
int rc;
AssertPtrReturn(pcszAddr, VERR_INVALID_PARAMETER);
AssertPtrReturn(pAddr, VERR_INVALID_PARAMETER);
rc = RTStrToUInt8Ex(pcszAddr, &pszNext, 10, &pAddr->au8[0]);
if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_CHARS)
return VERR_INVALID_PARAMETER;
if (*pszNext++ != '.')
return VERR_INVALID_PARAMETER;
rc = RTStrToUInt8Ex(pszNext, &pszNext, 10, &pAddr->au8[1]);
if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_CHARS)
return VERR_INVALID_PARAMETER;
if (*pszNext++ != '.')
return VERR_INVALID_PARAMETER;
rc = RTStrToUInt8Ex(pszNext, &pszNext, 10, &pAddr->au8[2]);
if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_CHARS)
return VERR_INVALID_PARAMETER;
if (*pszNext++ != '.')
return VERR_INVALID_PARAMETER;
rc = RTStrToUInt8Ex(pszNext, &pszNext, 10, &pAddr->au8[3]);
if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_SPACES && rc != VWRN_TRAILING_CHARS)
return VERR_INVALID_PARAMETER;
if (ppszNext != NULL)
*ppszNext = pszNext;
return rc;
}
RTDECL(int) RTNetStrToIPv4AddrEx(const char *pcszAddr, PRTNETADDRIPV4 pAddr,
char **ppszNext)
{
return rtNetStrToIPv4AddrEx(pcszAddr, pAddr, ppszNext);
}
RT_EXPORT_SYMBOL(RTNetStrToIPv4AddrEx);
RTDECL(int) RTNetStrToIPv4Addr(const char *pcszAddr, PRTNETADDRIPV4 pAddr)
{
char *pszNext;
int rc;
AssertPtrReturn(pcszAddr, VERR_INVALID_PARAMETER);
AssertPtrReturn(pAddr, VERR_INVALID_PARAMETER);
pcszAddr = RTStrStripL(pcszAddr);
rc = rtNetStrToIPv4AddrEx(pcszAddr, pAddr, &pszNext);
if (RT_FAILURE(rc) || rc == VWRN_TRAILING_CHARS)
return VERR_INVALID_PARAMETER;
return VINF_SUCCESS;
}
RT_EXPORT_SYMBOL(RTNetStrToIPv4Addr);
RTDECL(bool) RTNetIsIPv4AddrStr(const char *pcszAddr)
{
RTNETADDRIPV4 addrIPv4;
char *pszNext;
int rc;
if (pcszAddr == NULL)
return false;
rc = rtNetStrToIPv4AddrEx(pcszAddr, &addrIPv4, &pszNext);
if (rc != VINF_SUCCESS)
return false;
if (*pszNext != '\0')
return false;
return true;
}
RT_EXPORT_SYMBOL(RTNetIsIPv4AddrStr);
RTDECL(bool) RTNetStrIsIPv4AddrAny(const char *pcszAddr)
{
RTNETADDRIPV4 addrIPv4;
char *pszNext;
int rc;
if (pcszAddr == NULL)
return false;
pcszAddr = RTStrStripL(pcszAddr);
rc = rtNetStrToIPv4AddrEx(pcszAddr, &addrIPv4, &pszNext);
if (RT_FAILURE(rc) || rc == VWRN_TRAILING_CHARS)
return false;
if (addrIPv4.u != 0u) /* INADDR_ANY? */
return false;
return true;
}
RT_EXPORT_SYMBOL(RTNetStrIsIPv4AddrAny);
RTDECL(int) RTNetMaskToPrefixIPv4(PCRTNETADDRIPV4 pMask, int *piPrefix)
{
AssertReturn(pMask != NULL, VERR_INVALID_PARAMETER);
if (pMask->u == 0)
{
if (piPrefix != NULL)
*piPrefix = 0;
return VINF_SUCCESS;
}
const uint32_t uMask = RT_N2H_U32(pMask->u);
uint32_t uPrefixMask = UINT32_C(0xffffffff);
int iPrefixLen = 32;
while (iPrefixLen > 0)
{
if (uMask == uPrefixMask)
{
if (piPrefix != NULL)
*piPrefix = iPrefixLen;
return VINF_SUCCESS;
}
--iPrefixLen;
uPrefixMask <<= 1;
}
return VERR_INVALID_PARAMETER;
}
RT_EXPORT_SYMBOL(RTNetMaskToPrefixIPv4);
RTDECL(int) RTNetPrefixToMaskIPv4(int iPrefix, PRTNETADDRIPV4 pMask)
{
AssertReturn(pMask != NULL, VERR_INVALID_PARAMETER);
if (RT_UNLIKELY(iPrefix < 0 || 32 < iPrefix))
return VERR_INVALID_PARAMETER;
if (RT_LIKELY(iPrefix != 0))
pMask->u = RT_H2N_U32(UINT32_C(0xffffffff) << (32 - iPrefix));
else /* avoid UB in the shift */
pMask->u = 0;
return VINF_SUCCESS;
}
RT_EXPORT_SYMBOL(RTNetPrefixToMaskIPv4);
RTDECL(int) RTNetStrToIPv4Cidr(const char *pcszAddr, PRTNETADDRIPV4 pAddr, int *piPrefix)
{
RTNETADDRIPV4 Addr;
uint8_t u8Prefix;
char *pszNext;
int rc;
AssertPtrReturn(pcszAddr, VERR_INVALID_PARAMETER);
AssertPtrReturn(pAddr, VERR_INVALID_PARAMETER);
AssertPtrReturn(piPrefix, VERR_INVALID_PARAMETER);
pcszAddr = RTStrStripL(pcszAddr);
rc = rtNetStrToIPv4AddrEx(pcszAddr, &Addr, &pszNext);
if (RT_FAILURE(rc))
return rc;
/* if prefix is missing, treat is as exact (/32) address specification */
if (*pszNext == '\0' || rc == VWRN_TRAILING_SPACES)
{
*pAddr = Addr;
*piPrefix = 32;
return VINF_SUCCESS;
}
if (*pszNext != '/')
return VERR_INVALID_PARAMETER;
++pszNext;
rc = RTStrToUInt8Ex(pszNext, &pszNext, 10, &u8Prefix);
if (RT_FAILURE(rc) || rc == VWRN_TRAILING_CHARS)
return VERR_INVALID_PARAMETER;
if (u8Prefix == 0 || u8Prefix > 32)
return VERR_INVALID_PARAMETER;
*pAddr = Addr;
*piPrefix = u8Prefix;
return VINF_SUCCESS;
}
RT_EXPORT_SYMBOL(RTNetStrToIPv4Cidr);
static int rtNetStrToHexGroup(const char *pcszValue, char **ppszNext,
uint16_t *pu16)
{
char *pszNext;
int rc;
rc = RTStrToUInt16Ex(pcszValue, &pszNext, 16, pu16);
if (RT_FAILURE(rc))
return rc;
if ( rc != VINF_SUCCESS
&& rc != VWRN_TRAILING_CHARS
&& rc != VWRN_TRAILING_SPACES)
{
return -rc; /* convert warning to error */
}
/* parser always accepts 0x prefix */
if (pcszValue[0] == '0' && (pcszValue[1] == 'x' || pcszValue[1] == 'X'))
{
if (pu16)
*pu16 = 0;
if (ppszNext)
*ppszNext = (/* UNCONST */ char *)pcszValue + 1; /* to 'x' */
return VWRN_TRAILING_CHARS;
}
/* parser accepts leading zeroes "000000f" */
if (pszNext - pcszValue > 4)
return VERR_PARSE_ERROR;
if (ppszNext)
*ppszNext = pszNext;
return rc;
}
/*
* This function deals only with the hex-group IPv6 address syntax
* proper (with possible embedded IPv4).
*/
DECLHIDDEN(int) rtNetStrToIPv6AddrBase(const char *pcszAddr, PRTNETADDRIPV6 pAddrResult,
char **ppszNext)
{
RTNETADDRIPV6 ipv6;
RTNETADDRIPV4 ipv4;
const char *pcszPos;
char *pszNext;
int iGroup;
uint16_t u16;
int rc;
RT_ZERO(ipv6);
pcszPos = pcszAddr;
if (pcszPos[0] == ':') /* compressed zero run at the beginning? */
{
if (pcszPos[1] != ':')
return VERR_PARSE_ERROR;
pcszPos += 2; /* skip over "::" */
pszNext = (/* UNCONST */ char *)pcszPos;
iGroup = 1;
}
else
{
/*
* Scan forward until we either get complete address or find
* "::" compressed zero run.
*/
pszNext = NULL; /* (MSC incorrectly thinks it may be used unitialized) */
for (iGroup = 0; iGroup < 8; ++iGroup)
{
/* check for embedded IPv4 at the end */
if (iGroup == 6)
{
rc = rtNetStrToIPv4AddrEx(pcszPos, &ipv4, &pszNext);
if (rc == VINF_SUCCESS)
{
ipv6.au32[3] = ipv4.au32[0];
iGroup = 8; /* filled 6 and 7 */
break; /* we are done */
}
}
rc = rtNetStrToHexGroup(pcszPos, &pszNext, &u16);
if (RT_FAILURE(rc))
return VERR_PARSE_ERROR;
ipv6.au16[iGroup] = RT_H2N_U16(u16);
if (iGroup == 7)
pcszPos = pszNext;
else
{
/* skip the colon that delimits this group */
if (*pszNext != ':')
return VERR_PARSE_ERROR;
pcszPos = pszNext + 1;
/* compressed zero run? */
if (*pcszPos == ':')
{
++pcszPos; /* skip over :: */
pszNext += 2; /* skip over :: (in case we are done) */
iGroup += 2; /* current field and the zero in the next */
break;
}
}
}
}
if (iGroup != 8)
{
/*
* iGroup is the first group that can be filled by the part of
* the address after "::".
*/
RTNETADDRIPV6 ipv6Tail;
const int iMaybeStart = iGroup;
int j;
RT_ZERO(ipv6Tail);
/*
* We try to accept longest match; we'll shift if necessary.
* Unlike the first loop, a failure to parse a group doesn't
* mean invalid address.
*/
for (; iGroup < 8; ++iGroup)
{
/* check for embedded IPv4 at the end */
if (iGroup <= 6)
{
rc = rtNetStrToIPv4AddrEx(pcszPos, &ipv4, &pszNext);
if (rc == VINF_SUCCESS)
{
ipv6Tail.au16[iGroup] = ipv4.au16[0];
ipv6Tail.au16[iGroup + 1] = ipv4.au16[1];
iGroup = iGroup + 2; /* these two are done */
break; /* the rest is trailer */
}
}
rc = rtNetStrToHexGroup(pcszPos, &pszNext, &u16);
if (RT_FAILURE(rc))
break;
ipv6Tail.au16[iGroup] = RT_H2N_U16(u16);
if (iGroup == 7)
pcszPos = pszNext;
else
{
if (*pszNext != ':')
{
++iGroup; /* this one is done */
break; /* the rest is trailer */
}
pcszPos = pszNext + 1;
}
}
for (j = 7, --iGroup; iGroup >= iMaybeStart; --j, --iGroup)
ipv6.au16[j] = ipv6Tail.au16[iGroup];
}
if (pAddrResult != NULL)
memcpy(pAddrResult, &ipv6, sizeof(ipv6));
if (ppszNext != NULL)
*ppszNext = pszNext;
return VINF_SUCCESS;
}
DECLHIDDEN(int) rtNetStrToIPv6AddrEx(const char *pcszAddr, PRTNETADDRIPV6 pAddr,
char **ppszZone, char **ppszNext)
{
char *pszNext, *pszZone;
int rc;
rc = rtNetStrToIPv6AddrBase(pcszAddr, pAddr, &pszNext);
if (RT_FAILURE(rc))
return rc;
if (*pszNext != '%') /* is there a zone id? */
{
pszZone = NULL;
}
else
{
pszZone = pszNext + 1; /* skip '%' zone id delimiter */
if (*pszZone == '\0')
return VERR_PARSE_ERROR; /* empty zone id */
/*
* XXX: this is speculative as zone id syntax is
* implementation dependent, so we kinda guess here (accepting
* unreserved characters from URI syntax).
*/
for (pszNext = pszZone; *pszNext != '\0'; ++pszNext)
{
const char c = *pszNext;
if ( !('0' <= c && c <= '9')
&& !('a' <= c && c <= 'z')
&& !('A' <= c && c <= 'Z')
&& c != '_'
&& c != '.'
&& c != '-'
&& c != '~')
{
break;
}
}
}
if (ppszZone != NULL)
*ppszZone = pszZone;
if (ppszNext != NULL)
*ppszNext = pszNext;
if (*pszNext == '\0') /* all input string consumed */
return VINF_SUCCESS;
else
{
while (*pszNext == ' ' || *pszNext == '\t')
++pszNext;
if (*pszNext == '\0')
return VWRN_TRAILING_SPACES;
else
return VWRN_TRAILING_CHARS;
}
}
RTDECL(int) RTNetStrToIPv6AddrEx(const char *pcszAddr, PRTNETADDRIPV6 pAddr,
char **ppszNext)
{
AssertPtrReturn(pcszAddr, VERR_INVALID_PARAMETER);
AssertPtrReturn(pAddr, VERR_INVALID_PARAMETER);
return rtNetStrToIPv6AddrBase(pcszAddr, pAddr, ppszNext);
}
RT_EXPORT_SYMBOL(RTNetStrToIPv6AddrEx);
RTDECL(int) RTNetStrToIPv6Addr(const char *pcszAddr, PRTNETADDRIPV6 pAddr,
char **ppszZone)
{
int rc;
AssertPtrReturn(pcszAddr, VERR_INVALID_PARAMETER);
AssertPtrReturn(pAddr, VERR_INVALID_PARAMETER);
AssertPtrReturn(ppszZone, VERR_INVALID_PARAMETER);
pcszAddr = RTStrStripL(pcszAddr);
rc = rtNetStrToIPv6AddrEx(pcszAddr, pAddr, ppszZone, NULL);
if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_SPACES)
return VERR_INVALID_PARAMETER;
return VINF_SUCCESS;
}
RT_EXPORT_SYMBOL(RTNetStrToIPv6Addr);
RTDECL(bool) RTNetIsIPv6AddrStr(const char *pcszAddr)
{
RTNETADDRIPV6 addrIPv6;
int rc;
if (pcszAddr == NULL)
return false;
rc = rtNetStrToIPv6AddrEx(pcszAddr, &addrIPv6, NULL, NULL);
if (rc != VINF_SUCCESS)
return false;
return true;
}
RT_EXPORT_SYMBOL(RTNetIsIPv6AddrStr);
RTDECL(bool) RTNetStrIsIPv6AddrAny(const char *pcszAddr)
{
RTNETADDRIPV6 addrIPv6;
char *pszZone, *pszNext;
int rc;
if (pcszAddr == NULL)
return false;
pcszAddr = RTStrStripL(pcszAddr);
rc = rtNetStrToIPv6AddrEx(pcszAddr, &addrIPv6, &pszZone, &pszNext);
if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_SPACES)
return false;
if (pszZone != NULL)
return false;
if (addrIPv6.s.Lo != 0 || addrIPv6.s.Hi != 0) /* in6addr_any? */
return false;
return true;
}
RT_EXPORT_SYMBOL(RTNetStrIsIPv6AddrAny);
RTDECL(int) RTNetMaskToPrefixIPv6(PCRTNETADDRIPV6 pMask, int *piPrefix)
{
AssertReturn(pMask != NULL, VERR_INVALID_PARAMETER);
int iPrefix = 0;
unsigned int i;
for (i = 0; i < RT_ELEMENTS(pMask->au8); ++i)
{
int iBits;
switch (pMask->au8[i])
{
case 0x00: iBits = 0; break;
case 0x80: iBits = 1; break;
case 0xc0: iBits = 2; break;
case 0xe0: iBits = 3; break;
case 0xf0: iBits = 4; break;
case 0xf8: iBits = 5; break;
case 0xfc: iBits = 6; break;
case 0xfe: iBits = 7; break;
case 0xff: iBits = 8; break;
default: /* non-contiguous mask */
return VERR_INVALID_PARAMETER;
}
iPrefix += iBits;
if (iBits != 8)
break;
}
for (++i; i < RT_ELEMENTS(pMask->au8); ++i)
if (pMask->au8[i] != 0)
return VERR_INVALID_PARAMETER;
if (piPrefix != NULL)
*piPrefix = iPrefix;
return VINF_SUCCESS;
}
RT_EXPORT_SYMBOL(RTNetMaskToPrefixIPv6);
RTDECL(int) RTNetPrefixToMaskIPv6(int iPrefix, PRTNETADDRIPV6 pMask)
{
AssertReturn(pMask != NULL, VERR_INVALID_PARAMETER);
if (RT_UNLIKELY(iPrefix < 0 || 128 < iPrefix))
return VERR_INVALID_PARAMETER;
for (unsigned int i = 0; i < RT_ELEMENTS(pMask->au32); ++i)
{
if (iPrefix == 0)
{
pMask->au32[i] = 0;
}
else if (iPrefix >= 32)
{
pMask->au32[i] = UINT32_C(0xffffffff);
iPrefix -= 32;
}
else
{
pMask->au32[i] = RT_H2N_U32(UINT32_C(0xffffffff) << (32 - iPrefix));
iPrefix = 0;
}
}
return VINF_SUCCESS;
}
RT_EXPORT_SYMBOL(RTNetPrefixToMaskIPv6);
|