6f74df48d77d3ea373ad6ebb95200a942ed8d454
[dmaap/datarouter.git] / datarouter-node / src / main / java / org / onap / dmaap / datarouter / node / 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;
26
27 /**
28  * Compare IP addresses as byte arrays to a subnet specified as a CIDR
29  */
30 public class SubnetMatcher {
31     private byte[] sn;
32     private int len;
33     private int mask;
34
35     /**
36      * Construct a subnet matcher given a CIDR
37      *
38      * @param subnet The CIDR to match
39      */
40     public SubnetMatcher(String subnet) {
41         int i = subnet.lastIndexOf('/');
42         if (i == -1) {
43             sn = NodeUtils.getInetAddress(subnet);
44             len = sn.length;
45         } else {
46             len = Integer.parseInt(subnet.substring(i + 1));
47             sn = NodeUtils.getInetAddress(subnet.substring(0, i));
48             mask = ((0xff00) >> (len % 8)) & 0xff;
49             len /= 8;
50         }
51     }
52
53     /**
54      * Is the IP address in the CIDR?
55      *
56      * @param addr the IP address as bytes in network byte order
57      * @return true if the IP address matches.
58      */
59     public boolean matches(byte[] addr) {
60         if (addr.length != sn.length) {
61             return (false);
62         }
63         for (int i = 0; i < len; i++) {
64             if (addr[i] != sn[i]) {
65                 return (false);
66             }
67         }
68         if (mask != 0 && ((addr[len] ^ sn[len]) & mask) != 0) {
69             return (false);
70         }
71         return (true);
72     }
73 }