forked from xuwujing/java-study
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIPWhiteCheck.java
More file actions
243 lines (220 loc) · 7.29 KB
/
Copy pathIPWhiteCheck.java
File metadata and controls
243 lines (220 loc) · 7.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
package com.pancm.utils;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.regex.Pattern;
/**
* @Title: IPWhiteCheck
* @Description:
* IP白名单工具类
* @Version:1.0.0
* @author pancm
* @date 2018年6月25日
*/
public class IPWhiteCheck {
private static String VERTICAL="\\|";
// IP的正则
private static Pattern pattern = Pattern
.compile("(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\."
+ "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\."
+ "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\."
+ "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})");
private static Set<String> getAvaliIpList(String allowIp) {
Set<String> ipList = new HashSet<String>();
for (String allow : allowIp.replaceAll("\\s", "").split(";")) {
if (allow.indexOf("*") > -1) {
String[] ips = allow.split("\\.");
String[] from = new String[] { "0", "0", "0", "0" };
String[] end = new String[] { "255", "255", "255", "255" };
List<String> tem = new ArrayList<String>();
for (int i = 0; i < ips.length; i++)
if (ips[i].indexOf("*") > -1) {
tem = complete(ips[i]);
from[i] = null;
end[i] = null;
} else {
from[i] = ips[i];
end[i] = ips[i];
}
StringBuffer fromIP = new StringBuffer();
StringBuffer endIP = new StringBuffer();
for (int i = 0; i < 4; i++)
if (from[i] != null) {
fromIP.append(from[i]).append(".");
endIP.append(end[i]).append(".");
} else {
fromIP.append("[*].");
endIP.append("[*].");
}
fromIP.deleteCharAt(fromIP.length() - 1);
endIP.deleteCharAt(endIP.length() - 1);
for (String s : tem) {
String ip = fromIP.toString().replace("[*]",
s.split(";")[0])
+ "-"
+ endIP.toString().replace("[*]", s.split(";")[1]);
if (validate(ip)) {
ipList.add(ip);
}
}
} else {
if (validate(allow)) {
ipList.add(allow);
}
}
}
return ipList;
}
/**
* 对单个IP节点进行范围限定
*
* @param arg
* @return 返回限定后的IP范围,格式为List[10;19, 100;199]
*/
private static List<String> complete(String arg) {
List<String> com = new ArrayList<String>();
if (arg.length() == 1) {
com.add("0;255");
} else if (arg.length() == 2) {
String s1 = complete(arg, 1);
if (s1 != null)
com.add(s1);
String s2 = complete(arg, 2);
if (s2 != null)
com.add(s2);
} else {
String s1 = complete(arg, 1);
if (s1 != null)
com.add(s1);
}
return com;
}
private static String complete(String arg, int length) {
String from = "";
String end = "";
if (length == 1) {
from = arg.replace("*", "0");
end = arg.replace("*", "9");
} else {
from = arg.replace("*", "00");
end = arg.replace("*", "99");
}
if (Integer.valueOf(from) > 255)
return null;
if (Integer.valueOf(end) > 255)
end = "255";
return from + ";" + end;
}
/**
* 在添加至白名单时进行格式校验
* @param ip
* @return
*/
private static boolean validate(String ip) {
for (String s : ip.split("-"))
if (!pattern.matcher(s).matches()) {
return false;
}
return true;
}
/**
*
* checkLoginIP:(根据IP,及可用Ip列表来判断ip是否包含在白名单之中).
* @param ip
* @param ipList
* @return
*/
private static boolean checkLoginIP(String ip, Set<String> ipList) {
if (ipList.isEmpty() || ipList.contains(ip))
return true;
else {
for (String allow : ipList) {
if (allow.indexOf("-") > -1) {
String[] from = allow.split("-")[0].split("\\.");
String[] end = allow.split("-")[1].split("\\.");
String[] tag = ip.split("\\.");
// 对IP从左到右进行逐段匹配
boolean check = true;
for (int i = 0; i < 4; i++) {
int s = Integer.valueOf(from[i]);
int t = Integer.valueOf(tag[i]);
int e = Integer.valueOf(end[i]);
if (!(s <= t && t <= e)) {
check = false;
break;
}
}
if (check) {
return true;
}
}
}
}
return false;
}
/**
* 根据IP地址,及IP白名单设置规则判断IP是否包含在白名单
* 例如:ip =192.169.0.10
* ipWhiteConfig=192.169.0.1-192.169.0.11;
* 则可以通过
* ip =192.169.1.10
* ipWhiteConfig=192.169.1.*
* 也可以通过
* @param ip
* @param ipWhiteConfig
* @return
*/
public static boolean checkLoginIP(String ip,String ipWhiteConfig){
if(ip==null||ipWhiteConfig==null){
return false;
}
Set<String> ipList = getAvaliIpList(ipWhiteConfig);
return checkLoginIP(ip, ipList);
}
/**
* 支持多个
* 根据IP地址,及IP白名单设置规则判断IP是否包含在白名单
* 例如:ip =192.169.0.10
* ipWhiteConfig=192.169.1.*|192.169.0.1-192.169.0.11;
* 则可以通过
* ip =192.169.0.12
* ipWhiteConfig=192.169.1.*|192.169.0.1-192.169.0.11
* 不可以通过
* @param ip
* @param ipWhiteConfig
* @return
*/
public static boolean checkLoginIPS(String ip,String ipWhiteConfig){
if(ip==null||ipWhiteConfig==null){
return false;
}
String []ips=ipWhiteConfig.split(VERTICAL);
boolean falg=false;
for(String i:ips){
falg=checkLoginIP(ip, i);
if(falg){
break;
}
}
return falg;
}
public static void main(String[] args) {
String ip="192.169.0.10";
String ipWhiteConfig="192.169.0.1-192.169.0.11";
String ip2="192.169.0.10";
String ipWhiteConfig2="192.169.1.*";
String ipWhiteConfig3="192.169.1.*|192.169.0.1-192.169.0.11";
String []ips=ipWhiteConfig3.split("\\|");
boolean falg=false;
for(String i:ips){
falg=IPWhiteCheck.checkLoginIP(ip2, i);
if(falg){
break;
}
}
System.out.println("是否通过1:"+falg);
System.out.println("是否通过2:"+IPWhiteCheck.checkLoginIP(ip, ipWhiteConfig));
System.out.println("是否通过3:"+IPWhiteCheck.checkLoginIP(ip2, ipWhiteConfig2));
}
}