package eu.faircode.netguard; /* This file is part of NetGuard. NetGuard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. NetGuard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with NetGuard. If not, see . Copyright 2015-2018 by Marcel Bokhorst (M66B) */ import android.util.Log; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.List; import androidx.annotation.NonNull; public class IPUtil { private static final String TAG = "NetGuard.IPUtil"; public static List toCIDR(String start, String end) throws UnknownHostException { return toCIDR(InetAddress.getByName(start), InetAddress.getByName(end)); } public static List toCIDR(InetAddress start, InetAddress end) throws UnknownHostException { List listResult = new ArrayList<>(); Log.i(TAG, "toCIDR(" + start.getHostAddress() + "," + end.getHostAddress() + ")"); long from = inet2long(start); long to = inet2long(end); while (to >= from) { byte prefix = 32; while (prefix > 0) { long mask = prefix2mask(prefix - 1); if ((from & mask) != from) break; prefix--; } byte max = (byte) (32 - Math.floor(Math.log(to - from + 1) / Math.log(2))); if (prefix < max) prefix = max; listResult.add(new CIDR(long2inet(from), prefix)); from += Math.pow(2, (32 - prefix)); } for (CIDR cidr : listResult) Log.i(TAG, cidr.toString()); return listResult; } private static long prefix2mask(int bits) { return (0xFFFFFFFF00000000L >> bits) & 0xFFFFFFFFL; } private static long inet2long(InetAddress addr) { long result = 0; if (addr != null) for (byte b : addr.getAddress()) result = result << 8 | (b & 0xFF); return result; } private static InetAddress long2inet(long addr) { try { byte[] b = new byte[4]; for (int i = b.length - 1; i >= 0; i--) { b[i] = (byte) (addr & 0xFF); addr = addr >> 8; } return InetAddress.getByAddress(b); } catch (UnknownHostException ignore) { return null; } } public static InetAddress minus1(InetAddress addr) { return long2inet(inet2long(addr) - 1); } public static InetAddress plus1(InetAddress addr) { return long2inet(inet2long(addr) + 1); } public static class CIDR implements Comparable { public InetAddress address; public int prefix; public CIDR(InetAddress address, int prefix) { this.address = address; this.prefix = prefix; } public CIDR(String ip, int prefix) { try { this.address = InetAddress.getByName(ip); this.prefix = prefix; } catch (UnknownHostException ex) { Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex)); } } public InetAddress getStart() { return long2inet(inet2long(this.address) & prefix2mask(this.prefix)); } public InetAddress getEnd() { return long2inet((inet2long(this.address) & prefix2mask(this.prefix)) + (1L << (32 - this.prefix)) - 1); } @Override public String toString() { return address.getHostAddress() + "/" + prefix + "=" + getStart().getHostAddress() + "..." + getEnd().getHostAddress(); } @Override public int compareTo(@NonNull CIDR other) { Long lcidr = IPUtil.inet2long(this.address); Long lother = IPUtil.inet2long(other.address); return lcidr.compareTo(lother); } } }