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