[DMAAP-DR] Remove cadi/aaf from dr-node
[dmaap/datarouter.git] / datarouter-node / src / main / java / org / onap / dmaap / datarouter / node / config / SubnetMatcher.java
1 /*******************************************************************************
2  * ============LICENSE_START==================================================
3  * * org.onap.dmaap
4  * * ===========================================================================
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * * ===========================================================================
7  * * Licensed under the Apache License, Version 2.0 (the "License");
8  * * you may not use this file except in compliance with the License.
9  * * You may obtain a copy of the License at
10  * *
11  *  *      http://www.apache.org/licenses/LICENSE-2.0
12  * *
13  *  * Unless required by applicable law or agreed to in writing, software
14  * * distributed under the License is distributed on an "AS IS" BASIS,
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * * See the License for the specific language governing permissions and
17  * * limitations under the License.
18  * * ============LICENSE_END====================================================
19  * *
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  * *
22  ******************************************************************************/
23
24
25 package org.onap.dmaap.datarouter.node.config;
26
27 import org.onap.dmaap.datarouter.node.utils.NodeUtils;
28
29 /**
30  * Compare IP addresses as byte arrays to a subnet specified as a CIDR.
31  */
32 public class SubnetMatcher {
33
34     private byte[] sn;
35     private int len;
36     private int mask;
37
38     /**
39      * Construct a subnet matcher given a CIDR.
40      *
41      * @param subnet The CIDR to match
42      */
43     public SubnetMatcher(String subnet) {
44         int index = subnet.lastIndexOf('/');
45         if (index == -1) {
46             sn = NodeUtils.getInetAddress(subnet);
47             len = sn.length;
48         } else {
49             len = Integer.parseInt(subnet.substring(index + 1));
50             sn = NodeUtils.getInetAddress(subnet.substring(0, index));
51             mask = ((0xff00) >> (len % 8)) & 0xff;
52             len /= 8;
53         }
54     }
55
56     /**
57      * Is the IP address in the CIDR.
58      *
59      * @param addr the IP address as bytes in network byte order
60      * @return true if the IP address matches.
61      */
62     public boolean matches(byte[] addr) {
63         if (addr.length != sn.length) {
64             return (false);
65         }
66         for (int i = 0; i < len; i++) {
67             if (addr[i] != sn[i]) {
68                 return (false);
69             }
70         }
71         if (mask != 0 && ((addr[len] ^ sn[len]) & mask) != 0) {
72             return (false);
73         }
74         return (true);
75     }
76 }