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