-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`net.BlockList` provides an object intended to be used by net APIs to specify rules for disallowing network activity with specific IP addresses. This commit adds the basic mechanism but does not add the specific uses. PR-URL: #34625 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
- Loading branch information
1 parent
1008c80
commit 87c7106
Showing
10 changed files
with
1,189 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
'use strict'; | ||
|
||
const { | ||
Boolean, | ||
Symbol | ||
} = primordials; | ||
|
||
const { | ||
BlockList: BlockListHandle, | ||
AF_INET, | ||
AF_INET6, | ||
} = internalBinding('block_list'); | ||
|
||
const { | ||
customInspectSymbol: kInspect, | ||
} = require('internal/util'); | ||
const { inspect } = require('internal/util/inspect'); | ||
|
||
const kHandle = Symbol('kHandle'); | ||
const { owner_symbol } = internalBinding('symbols'); | ||
|
||
const { | ||
ERR_INVALID_ARG_TYPE, | ||
ERR_INVALID_ARG_VALUE, | ||
ERR_OUT_OF_RANGE, | ||
} = require('internal/errors').codes; | ||
|
||
class BlockList { | ||
constructor() { | ||
this[kHandle] = new BlockListHandle(); | ||
this[kHandle][owner_symbol] = this; | ||
} | ||
|
||
[kInspect](depth, options) { | ||
if (depth < 0) | ||
return this; | ||
|
||
const opts = { | ||
...options, | ||
depth: options.depth == null ? null : options.depth - 1 | ||
}; | ||
|
||
return `BlockList ${inspect({ | ||
rules: this.rules | ||
}, opts)}`; | ||
} | ||
|
||
addAddress(address, family = 'ipv4') { | ||
if (typeof address !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('address', 'string', address); | ||
if (typeof family !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('family', 'string', family); | ||
if (family !== 'ipv4' && family !== 'ipv6') | ||
throw new ERR_INVALID_ARG_VALUE('family', family); | ||
const type = family === 'ipv4' ? AF_INET : AF_INET6; | ||
this[kHandle].addAddress(address, type); | ||
} | ||
|
||
addRange(start, end, family = 'ipv4') { | ||
if (typeof start !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('start', 'string', start); | ||
if (typeof end !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('end', 'string', end); | ||
if (typeof family !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('family', 'string', family); | ||
if (family !== 'ipv4' && family !== 'ipv6') | ||
throw new ERR_INVALID_ARG_VALUE('family', family); | ||
const type = family === 'ipv4' ? AF_INET : AF_INET6; | ||
const ret = this[kHandle].addRange(start, end, type); | ||
if (ret === false) | ||
throw new ERR_INVALID_ARG_VALUE('start', start, 'must come before end'); | ||
} | ||
|
||
addSubnet(network, prefix, family = 'ipv4') { | ||
if (typeof network !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('network', 'string', network); | ||
if (typeof prefix !== 'number') | ||
throw new ERR_INVALID_ARG_TYPE('prefix', 'number', prefix); | ||
if (typeof family !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('family', 'string', family); | ||
let type; | ||
switch (family) { | ||
case 'ipv4': | ||
type = AF_INET; | ||
if (prefix < 0 || prefix > 32) | ||
throw new ERR_OUT_OF_RANGE(prefix, '>= 0 and <= 32', prefix); | ||
break; | ||
case 'ipv6': | ||
type = AF_INET6; | ||
if (prefix < 0 || prefix > 128) | ||
throw new ERR_OUT_OF_RANGE(prefix, '>= 0 and <= 128', prefix); | ||
break; | ||
default: | ||
throw new ERR_INVALID_ARG_VALUE('family', family); | ||
} | ||
this[kHandle].addSubnet(network, type, prefix); | ||
} | ||
|
||
check(address, family = 'ipv4') { | ||
if (typeof address !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('address', 'string', address); | ||
if (typeof family !== 'string') | ||
throw new ERR_INVALID_ARG_TYPE('family', 'string', family); | ||
if (family !== 'ipv4' && family !== 'ipv6') | ||
throw new ERR_INVALID_ARG_VALUE('family', family); | ||
const type = family === 'ipv4' ? AF_INET : AF_INET6; | ||
return Boolean(this[kHandle].check(address, type)); | ||
} | ||
|
||
get rules() { | ||
return this[kHandle].getRules(); | ||
} | ||
} | ||
|
||
module.exports = BlockList; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.