This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
461 lines (395 loc) · 11.8 KB
/
mod.ts
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
// @deno-types="npm:@types/node"
import { Buffer } from "node:buffer";
import { networkInterfaces } from "node:os";
export function toBuffer(ip: string, buff?: Buffer, offset?: number): Buffer {
offset = ~~offset!;
let result!: Buffer;
if (isV4Format(ip)) {
result = buff ?? Buffer.alloc(offset + 4);
ip.split(/\./g).map((byte) => {
result[offset!++] = parseInt(byte, 10) & 0xff;
});
} else if (isV6Format(ip)) {
const sections = ip.split(":", 8);
let i;
for (i = 0; i < sections.length; i++) {
const isv4 = isV4Format(sections[i]);
let v4Buffer;
if (isv4) {
v4Buffer = toBuffer(sections[i]);
sections[i] = v4Buffer.slice(0, 2).toString("hex");
}
if (v4Buffer && ++i < 8) {
sections.splice(i, 0, v4Buffer.slice(2, 4).toString("hex"));
}
}
if (sections[0] === "") {
while (sections.length < 8) sections.unshift("0");
} else if (sections[sections.length - 1] === "") {
while (sections.length < 8) sections.push("0");
} else if (sections.length < 8) {
for (i = 0; i < sections.length && sections[i] !== ""; i++);
const argv: Array<string | number> = [i, 1];
for (i = 9 - sections.length; i > 0; i--) {
argv.push("0");
}
sections.splice(...(argv as [number, number]));
}
result = buff || Buffer.alloc(offset + 16);
for (i = 0; i < sections.length; i++) {
const word = parseInt(sections[i], 16);
result[offset++] = (word >> 8) & 0xff;
result[offset++] = word & 0xff;
}
}
if (!result) {
throw Error(`Invalid ip address: ${ip}`);
}
return result;
}
export function toString(buff: Buffer, offset?: number, length?: number) {
offset = ~~offset!;
length = length || (buff.length - offset);
const resultArr = new Array<string>();
let result = "";
if (length === 4) {
for (let i = 0; i < length; i++) {
resultArr.push(`${buff[offset + i]}`);
}
result = resultArr.join(".");
} else if (length === 16) {
// IPv6
for (let i = 0; i < length; i += 2) {
resultArr.push(buff.readUInt16BE(offset + i).toString(16));
}
result = resultArr.join(":");
result = result.replace(/(^|:)0(:0)*:0(:|$)/, "$1::$3");
result = result.replace(/:{3,4}/, "::");
}
return result;
}
const ipv4Regex = /^(\d{1,3}\.){3,3}\d{1,3}$/;
const ipv6Regex =
/^(::)?(((\d{1,3}\.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/i;
export function isV4Format(ip: string) {
return ipv4Regex.test(ip);
}
export function isV6Format(ip: string) {
return ipv6Regex.test(ip);
}
function _normalizeFamily(family: 4 | 6 | string = "ipv4") {
if (family === 4) {
return "ipv4";
}
if (family === 6) {
return "ipv6";
}
return family ? family.toLowerCase() : "ipv4";
}
export function fromPrefixLen(prefixLen: number, family?: string | 4 | 6) {
if (prefixLen > 32) {
family = "ipv6";
} else {
family = _normalizeFamily(family!);
}
let len = 4;
if (family === "ipv6") {
len = 16;
}
const buff = Buffer.alloc(len);
for (let i = 0, n = buff.length; i < n; ++i) {
let bits = 8;
if (prefixLen < 8) {
bits = prefixLen;
}
prefixLen -= bits;
buff[i] = ~(0xff >> bits) & 0xff;
}
return toString(buff);
}
export function mask(addrStr: string, maskStr: string) {
const addr = toBuffer(addrStr);
const mask = toBuffer(maskStr);
const result = Buffer.alloc(Math.max(addr.length, mask.length));
// Same protocol - do bitwise and
let i;
if (addr.length === mask.length) {
for (i = 0; i < addr.length; i++) {
result[i] = addr[i] & mask[i];
}
} else if (mask.length === 4) {
// IPv6 address and IPv4 mask
// (Mask low bits)
for (i = 0; i < mask.length; i++) {
result[i] = addr[addr.length - 4 + i] & mask[i];
}
} else {
// IPv6 mask and IPv4 addr
for (i = 0; i < result.length - 6; i++) {
result[i] = 0;
}
// ::ffff:ipv4
result[10] = 0xff;
result[11] = 0xff;
for (i = 0; i < addr.length; i++) {
result[i + 12] = addr[i] & mask[i + 12];
}
i += 12;
}
for (; i < result.length; i++) {
result[i] = 0;
}
return toString(result);
}
export function cidr(cidrString: string) {
const cidrParts = cidrString.split("/");
const addr = cidrParts[0];
if (cidrParts.length !== 2) {
throw new Error(`invalid CIDR subnet: ${addr}`);
}
const maskStr = fromPrefixLen(parseInt(cidrParts[1], 10));
return mask(addr, maskStr);
}
export interface SubnetInfo {
networkAddress: string;
firstAddress: string;
lastAddress: string;
broadcastAddress: string;
subnetMask: string;
subnetMaskLength: number;
numHosts: number;
length: number;
contains(ip: string): boolean;
}
export function subnet(addr: string, maskStr: string): SubnetInfo {
const networkAddress = toLong(mask(addr, maskStr));
// Calculate the mask's length.
const maskBuffer = toBuffer(maskStr);
let maskLength = 0;
for (let i = 0; i < maskBuffer.length; i++) {
if (maskBuffer[i] === 0xff) {
maskLength += 8;
} else {
let octet = maskBuffer[i] & 0xff;
while (octet) {
octet = (octet << 1) & 0xff;
maskLength++;
}
}
}
const numberOfAddresses = 2 ** (32 - maskLength);
return {
networkAddress: fromLong(networkAddress),
firstAddress: numberOfAddresses <= 2
? fromLong(networkAddress)
: fromLong(networkAddress + 1),
lastAddress: numberOfAddresses <= 2
? fromLong(networkAddress + numberOfAddresses - 1)
: fromLong(networkAddress + numberOfAddresses - 2),
broadcastAddress: fromLong(networkAddress + numberOfAddresses - 1),
subnetMask: maskStr,
subnetMaskLength: maskLength,
numHosts: numberOfAddresses <= 2
? numberOfAddresses
: numberOfAddresses - 2,
length: numberOfAddresses,
contains(other: string) {
return networkAddress === toLong(mask(other, maskStr));
},
};
}
export function cidrSubnet(cidrString: string) {
const cidrParts = cidrString.split("/");
const addr = cidrParts[0];
if (cidrParts.length !== 2) {
throw new Error(`invalid CIDR subnet: ${addr}`);
}
const mask = fromPrefixLen(parseInt(cidrParts[1], 10));
return subnet(addr, mask);
}
export function not(addr: string) {
const buff = toBuffer(addr);
for (let i = 0; i < buff.length; i++) {
buff[i] = 0xff ^ buff[i];
}
return toString(buff);
}
export function or(aStr: string, bStr: string) {
const a = toBuffer(aStr);
const b = toBuffer(bStr);
// same protocol
if (a.length === b.length) {
for (let i = 0; i < a.length; ++i) {
a[i] |= b[i];
}
return toString(a);
// mixed protocols
}
let buff = a;
let other = b;
if (b.length > a.length) {
buff = b;
other = a;
}
const offset = buff.length - other.length;
for (let i = offset; i < buff.length; ++i) {
buff[i] |= other[i - offset];
}
return toString(buff);
}
export function isEqual(aStr: string, bStr: string) {
let a = toBuffer(aStr);
let b = toBuffer(bStr);
// Same protocol
if (a.length === b.length) {
for (let i = 0; i < a.length; i++) {
if (a[i] !== b[i]) return false;
}
return true;
}
// Swap
if (b.length === 4) {
const t = b;
b = a;
a = t;
}
// a - IPv4, b - IPv6
for (let i = 0; i < 10; i++) {
if (b[i] !== 0) return false;
}
const word = b.readUInt16BE(10);
if (word !== 0 && word !== 0xffff) return false;
for (let i = 0; i < 4; i++) {
if (a[i] !== b[i + 12]) return false;
}
return true;
}
export function isPrivate(addr: string) {
// check loopback addresses first
if (isLoopback(addr)) return true;
// ensure the ipv4 address is valid
if (!isV6Format(addr)) {
const ipl = normalizeToLong(addr);
if (ipl < 0) {
throw new Error("invalid ipv4 address");
}
// normalize the address for the private range checks that follow
addr = fromLong(ipl);
} // check private ranges
return /^(::f{4}:)?10\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/i
.test(addr) ||
/^(::f{4}:)?192\.168\.([0-9]{1,3})\.([0-9]{1,3})$/i.test(addr) ||
/^(::f{4}:)?172\.(1[6-9]|2\d|30|31)\.([0-9]{1,3})\.([0-9]{1,3})$/i
.test(addr) ||
/^(::f{4}:)?169\.254\.([0-9]{1,3})\.([0-9]{1,3})$/i.test(addr) ||
/^f[cd][0-9a-f]{2}:/i.test(addr) ||
/^fe80:/i.test(addr) ||
/^::1$/.test(addr) ||
/^::$/.test(addr);
}
export function isPublic(addr: string) {
return !isPrivate(addr);
}
export function isLoopback(addr: string) {
// If addr is an IPv4 address in long integer form (no dots and no colons), convert it
if (!/\./.test(addr) && !/:/.test(addr)) {
addr = fromLong(Number(addr));
}
return /^(::f{4}:)?127\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})/
.test(addr) ||
/^0177\./.test(addr) ||
/^0x7f\./i.test(addr) ||
/^fe80::1$/i.test(addr) ||
/^::1$/.test(addr) ||
/^::$/.test(addr);
}
export function loopback(family = "ipv4") {
family = _normalizeFamily(family);
if (family !== "ipv4" && family !== "ipv6") {
throw new Error("family must be ipv4 or ipv6");
}
return family === "ipv4" ? "127.0.0.1" : "fe80::1";
}
export function address(name?: string, family?: string) {
const interfaces = networkInterfaces();
family = _normalizeFamily(family);
if (
name && name !== "private" && name !== "public" && interfaces[name] != null
) {
const res = interfaces[name]!.filter((details) => {
const itemFamily = _normalizeFamily(details.family);
return itemFamily === family;
});
if (res.length === 0) {
return undefined;
}
return res[0].address;
}
const all = Object.keys(interfaces)
.filter((nic) => interfaces[nic] != null)
.map((nic) => {
const addresses = interfaces[nic]!.filter((details) => {
details.family = _normalizeFamily(details.family) as "IPv4" | "IPv6";
if (details.family !== family || isLoopback(details.address)) {
return false;
}
if (!name) return true;
return name === "public"
? isPublic(details.address)
: isPrivate(details.address);
});
return addresses.length ? addresses[0].address : undefined;
}).filter(Boolean);
return !all.length ? loopback(family) : all[0];
}
export function toLong(ip: string) {
let ipl = 0;
ip.split(".").forEach((octet) => {
ipl <<= 8;
ipl += parseInt(octet);
});
return (ipl >>> 0);
}
export function fromLong(ipl: number) {
return (`${ipl >>> 24}.${ipl >> 16 & 255}.${ipl >> 8 & 255}.${ipl & 255}`);
}
export function normalizeToLong(addr: string) {
const parts = addr.split(".").map((part) => {
// Handle hexadecimal format
if (part.startsWith("0x") || part.startsWith("0X")) {
return parseInt(part, 16);
} // Handle octal format (strictly digits 0-7 after a leading zero)
else if (part.startsWith("0") && part !== "0" && /^[0-7]+$/.test(part)) {
return parseInt(part, 8);
} // Handle decimal format, reject invalid leading zeros
else if (/^[1-9]\d*$/.test(part) || part === "0") {
return parseInt(part, 10);
} // Return NaN for invalid formats to indicate parsing failure
else {
return NaN;
}
});
if (parts.some(isNaN)) return -1; // Indicate error with -1
let val = 0;
const n = parts.length;
switch (n) {
case 1:
val = parts[0];
break;
case 2:
if (parts[0] > 0xff || parts[1] > 0xffffff) return -1;
val = (parts[0] << 24) | (parts[1] & 0xffffff);
break;
case 3:
if (parts[0] > 0xff || parts[1] > 0xff || parts[2] > 0xffff) return -1;
val = (parts[0] << 24) | (parts[1] << 16) | (parts[2] & 0xffff);
break;
case 4:
if (parts.some((part) => part > 0xff)) return -1;
val = (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3];
break;
default:
return -1; // Error case
}
return val >>> 0;
}