public class CidrUtil extends Object
Modifier and Type | Field and Description |
---|---|
static int |
CIDRUTIL_CLOUDPROVIDERS
Load exclusion list with allowed cloud providers
|
static int |
CIDRUTIL_FILE
Load exclusion list from path resource
|
static int |
CIDRUTIL_INTERNAL
Load exclusion list for internal/RFC1918 subnets
|
Constructor and Description |
---|
CidrUtil()
Constructor for
CidrUtil , initialize empty |
CidrUtil(String path)
Constructor for
CidrUtil to load subnet list from resource |
Modifier and Type | Method and Description |
---|---|
void |
add(String cidr)
Add subnet to subnet list
|
static boolean |
addressInCidr(String addr,
String cidr)
Return true if address is within the cidr
|
Boolean |
contains(String addr)
Return true if any loaded subnet contains the specified address
|
static org.apache.beam.sdk.transforms.DoFn<Event,Event> |
excludeNormalizedSourceAddresses(int flags,
String path)
Returns a DoFn that filters any events that have a normalized source address field that matches
the specified criteria.
|
static boolean |
isInet4(String addr)
Determine if an address is an IPv4 address
|
void |
loadAwsSubnets()
Load known AWS subnets into instance of
CidrUtil |
void |
loadGcpSubnets()
Load known GCP subnets into instance of
CidrUtil |
void |
loadInternalSubnets()
Populate CidrUtil instance with internal/RFC1918 subnets
|
static Boolean |
resolvedCanonicalHostMatches(String ip,
String pattern)
Reverse DNS query of provided IP and comparison of result against pattern
|
static String |
stripMaskFromCidr(String cidr)
Strip the mask component from a CIDR subnet.
|
public static final int CIDRUTIL_FILE
public static final int CIDRUTIL_CLOUDPROVIDERS
public static final int CIDRUTIL_INTERNAL
public CidrUtil()
CidrUtil
, initialize emptypublic CidrUtil(String path) throws IOException
CidrUtil
to load subnet list from resourcepath
- Resource path or GCS URL to load CIDR subnet list fromIOException
- IOExceptionpublic static Boolean resolvedCanonicalHostMatches(String ip, String pattern)
A reverse DNS query for the supplied IP address is performed and the resulting hostname is compared against the regular expression in pattern. If it matches, the function returns true otherwise false.
This function attempts to also perform a forward DNS query on the hostname returned by the reverse DNS query and ensures the IP address matches what was supplied as a function argument.
ip
- IP addresspattern
- Regular expression to match againstpublic static org.apache.beam.sdk.transforms.DoFn<Event,Event> excludeNormalizedSourceAddresses(int flags, String path)
The flags parameter is a bitmask used to control the input criteria used in the filtering operation.
1 can be specified in the flags mask to indicate subnets should be loaded from the specified path and any matching addresses should be filtered. If this bit is included path must be non-null.
2 can be specified to load known cloud provider public address ranges into the filter for exclusion.
4 can be specified to load internal (e.g., RFC1918) subnets into the filter.
flags
- Option bitmaskpath
- Resource path or GCS URL to load subnets from for 1DoFn
public static boolean addressInCidr(String addr, String cidr)
addr
- IP address to check against cidrcidr
- cidr to check if it contains the IP addresspublic static boolean isInet4(String addr)
addr
- Addresspublic static String stripMaskFromCidr(String cidr)
For example, given 192.168.0.0/24 return 192.168.0.0.
cidr
- CIDR subnetpublic Boolean contains(String addr)
addr
- IP address to check against subnetspublic void loadGcpSubnets() throws IOException
CidrUtil
This is done using https://www.gstatic.com/ipranges/cloud.json as recommended by https://cloud.google.com/compute/docs/faq#find_ip_range
IOException
- IOExceptionpublic void loadInternalSubnets()
public void loadAwsSubnets() throws IOException
CidrUtil
Utilizes information at https://ip-ranges.amazonaws.com/ip-ranges.json
IOException
- IOExceptionpublic void add(String cidr)
cidr
- Subnet to addCopyright © 2022. All rights reserved.