TelnetThread.java
11.7 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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
package com.sitech.ismp.check.util;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.util.StringTokenizer;
import java.util.Vector;
import org.apache.commons.net.telnet.EchoOptionHandler;
import org.apache.commons.net.telnet.InvalidTelnetOptionException;
import org.apache.commons.net.telnet.SuppressGAOptionHandler;
import org.apache.commons.net.telnet.TelnetClient;
import org.apache.commons.net.telnet.TelnetNotificationHandler;
import org.apache.commons.net.telnet.TerminalTypeOptionHandler;
import org.apache.log4j.Logger;
public class TelnetThread implements RemoteController {
private TelnetClient tc = null;
private OutputStream outstr = null;
private InputStream instr = null;
private boolean autorized = false;
private String host_ip = null;
private int host_port = 23;
private String login_id = null;
private String password = null;
private String keywords = "bomcagent";
String RPCCMD = "";
private StringBuffer result = new StringBuffer();
private boolean endExecute = false;
private Logger logger = Logger.getLogger("COLL");
/**
* 判断指定关键字的进程是否存在
* @return
*/
public boolean isRunning(String keywords) {
this.keywords = keywords;
this.doCommand("ps -ef | grep " + this.keywords);
String result = this.getResult();
result = result.replaceAll("grep " + this.keywords, " ");
if (result != null && result.indexOf(this.keywords) != -1) {
return true;
} else {
return false;
}
}
public void setRPCCMD(String rpccmd) {
RPCCMD = rpccmd;
}
/**
*
* @param host_ip
* @param port
* @param login_id
* @param password
*/
public TelnetThread(String host_ip, int port, String login_id,
String password) {
this.host_ip = host_ip;
this.host_port = port;
this.login_id = login_id;
// this.password = DES3.decrypt(password);
this.password = password;
}
/**
* ��¼����
*
*/
public void initial() {
try {
tc = new TelnetClient();
TerminalTypeOptionHandler ttopt = new TerminalTypeOptionHandler("VT100", false, false, true, false);
EchoOptionHandler echoopt = new EchoOptionHandler(true, false, true, false);
SuppressGAOptionHandler gaopt = new SuppressGAOptionHandler(true, true, true, true);
try {
tc.addOptionHandler(ttopt);
tc.addOptionHandler(echoopt);
tc.addOptionHandler(gaopt);
} catch (InvalidTelnetOptionException e) {
System.err.println("Error registering option handlers: " + e.getMessage());
}
tc.connect(this.host_ip, this.host_port);
// tc.registerNotifHandler(new
// TelnetThread(this.host_ip,this.host_port, this.login_id,
// this.password));
tc.setSoTimeout(120000);
outstr = tc.getOutputStream();
instr = tc.getInputStream();
} catch (Exception e) {
e.printStackTrace();
return;
}
int login_times = 0;
String s = this.getResult();
System.out.println("输入账号前:" + s);
while ((s.endsWith("login: ") || s.endsWith("Password: ")) && tc.isConnected()) {
if (s.endsWith("login: ")) {
this.doCommand(this.login_id);
s = this.getResult();
System.out.println("输入账号后:" + s);
login_times += 1;
if (login_times > 2) {
System.out.println("�û���������������");
this.autorized = false;
try {
tc.disconnect();
// System.exit(0);
// return;
} catch (Exception e) {
e.printStackTrace();
}
}
}
if (s.endsWith("Password: ") || s.endsWith("Password:")) {
this.doCommand(this.password);
s = this.getResult();
System.out.println("输入密码后:" + s);
}
}
this.autorized = true;
}
public void doCommand(String command) {
if (tc == null || !tc.isConnected()) {
return;
}
if (this.endExecute == false) {
return;
}
if (this.outstr == null) {
return;
}
String shell = "";
if (!command.endsWith("\n")) {
shell += command + "\n";
} else {
shell += command;
}
try {
this.result = new StringBuffer();
this.endExecute = false;
outstr.write(shell.getBytes());
outstr.flush();
} catch (Exception e) {
e.printStackTrace();
}
}
public String getResult() {
if (tc == null || !tc.isConnected()) {
return null;
}
if (instr == null) {
return null;
}
if (this.endExecute == true) {
return null;
}
try {
byte[] buff = new byte[1024];
char[] chabuff = new char[1024];
int ret_read = 0;
InputStreamReader inr = new InputStreamReader(instr);
do {
ret_read = inr.read(chabuff);
if (ret_read > 0) {
String ss = new String(chabuff, 0, ret_read);
this.result.append(ss);
String rs = result.toString().toString();
if (rs.endsWith(">") || rs.endsWith("$")
|| rs.endsWith("]") || rs.endsWith(">")
|| rs.endsWith("$ ")
|| result.toString().endsWith("login: ")
|| result.toString().endsWith("Password: ")
|| result.toString().endsWith("Password:")) {
break;
}
}
} while (ret_read >= 0);
} catch (Exception e) {
e.printStackTrace();
} finally {
}
this.endExecute = true;
return this.result.toString();
}
public void receivedNegotiation(int negotiation_code, int option_code) {
String command = null;
if (negotiation_code == TelnetNotificationHandler.RECEIVED_DO) {
command = "DO";
} else if (negotiation_code == TelnetNotificationHandler.RECEIVED_DONT) {
command = "DONT";
} else if (negotiation_code == TelnetNotificationHandler.RECEIVED_WILL) {
command = "WILL";
} else if (negotiation_code == TelnetNotificationHandler.RECEIVED_WONT) {
command = "WONT";
}
}
public void run() {
this.initial();
try {
byte[] buff = new byte[1024];
int ret_read = 0;
do {
ret_read = System.in.read(buff);
if (ret_read > 0) {
if (new String(buff, 0, ret_read).startsWith("quit")) {
tc.disconnect();
return;
} else {
System.out.println("#" + new String(buff, 0, ret_read)
+ "#");
}
this.doCommand(new String(buff, 0, ret_read));
this.getResult();
}
} while (ret_read > 0);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* �ر�l��
*
*/
public void close() {
try {
byte b = 0x03;
outstr.write(b);
outstr.flush();
this.doCommand("exit");
if (tc != null && tc.isConnected())
tc.disconnect();
tc = null;
System.out.println("Disonnection successed!");
} catch (Exception e) {
e.printStackTrace();
try {
tc.disconnect();
} catch (Exception e1) {
e1.printStackTrace();
}
}
}
public boolean isAuthorized() {
return this.autorized;
}
public boolean isExistDir(String dir) {
boolean success = true;
this.doCommand("cd " + dir);
if (this.getResult().indexOf(dir + ": not found") != -1) {
success = false;
}
return success;
}
public boolean getResultAsString(String targetString) {
if (tc == null || !tc.isConnected()) {
return false;
}
if (instr == null) {
return false;
}
if (this.endExecute == true) {
return false;
}
try {
byte[] buff = new byte[1024];
char[] chabuff = new char[1024];
int ret_read = 0;
InputStreamReader inr = new InputStreamReader(instr);
do {
ret_read = inr.read(chabuff);
if (ret_read > 0) {
String ss = new String(chabuff, 0, ret_read);
this.result.append(ss);
String rs = result.toString().toString();
if (rs.endsWith(">") || rs.endsWith("$")
|| rs.endsWith("]") || rs.endsWith(">")
|| rs.endsWith("$ ")
|| result.toString().endsWith("login: ")
|| result.toString().endsWith("Password: ")) {
break;
}
}
} while (ret_read >= 0);
} catch (Exception e) {
e.printStackTrace();
} finally {
}
this.endExecute = true;
if (this.result.toString().indexOf(targetString) != -1) {
return true;
} else {
return false;
}
}
public int childCountOfDir(String dir) {
int count = 0;
try {
if (this.isExistDir(dir)) {
doCommand("cd " + dir + ";ls -l | wc -l");
String s = null;
s = getResult();
String[] s1 = s.split("\n");
if (s1 != null) {
count = new Integer(s1[1].trim()).intValue() - 1;
}
} else {
return -1;
}
} catch (Exception e) {
e.printStackTrace();
return -1;
}
return count;
}
public boolean createDir(String dir) {
boolean isExist = false;
if (dir != null && !dir.trim().equals("") && this.isExistDir(dir)) {
isExist = true;
}
if (dir != null && !dir.trim().equals("") && !this.isExistDir(dir)) {
String[] split_dir = dir.split("/");
for (int i = 0; i < split_dir.length; i++) {
String path = "";
for (int j = 0; j <= i; j++) {
if (split_dir[j] != null && !split_dir[j].equals("")) {
path += "/" + split_dir[j];
}
}
if (path != null && !path.equals("")) {
if (!this.isExistDir(path)) {
this.doCommand("mkdir " + path);
this.getResult();
}
if (!this.isExistDir(path)) {
return false;
}
}
}
if (this.isExistDir(dir)) {
isExist = true;
}
}
return isExist;
}
public String getHostName() {
this.doCommand("hostname");
String s = null;
s = getResult();
String[] s1 = s.split("\n");
if (s1 != null && s1.length >= 2) {
// ��ȡ��2��
if (s1.length == 3)
return s1[1].trim();
if (s1.length == 2) {
return s1[0].trim();
}
}
return "";
}
private String getOSType() {
String os_type = "";
this.doCommand("uname -a");
String s = null;
s = getResult();
String[] s1 = s.split("\n");
if (s1 != null && s1.length > 0) {
String row_1 = s1[0];
if (row_1 != null && row_1.startsWith("uname -a")) {
os_type = s1[1];
} else {
os_type = s1[0];
}
os_type = split(os_type, 0);
}
return os_type;
}
public String split(String str, int pos) {
StringTokenizer st = new StringTokenizer(str);
Vector values = new Vector();
while (st.hasMoreTokens()) {
values.add(st.nextToken());
}
if (pos >= 0 && pos < values.size()) {
return (String) values.elementAt(pos);
}
return "";
}
public Vector getResultAsVector(String command) {
Vector vResult = new Vector();
this.doCommand(command);
String strResult = this.getResult();
if (strResult != null) {
String[] results = strResult.split("\n");
int length = results.length - 1;
if (results.length > 2) {
String mail = (String) results[results.length - 2];
if (mail.indexOf("have mail in") > -1) {
length = results.length - 2;
}
}
int begin = 0;
if (getOSType().equals("AIX")) {
begin = 0;
} else if (getOSType().equals("HP-UX")) {
begin = 1;
}
for (int i = begin; i < length; i++) {
vResult.addElement(results[i]);
System.out.println(i + " " + results[i]);
}
}
return vResult;
}
public String getResultAsStr(String command) throws Exception {
String result = "";
Vector vResult = new Vector();
logger.info("Command is " + command);
this.doCommand(command);
String strResult = this.getResult();
if (strResult != null) {
String[] results = strResult.split("\n");
int length = results.length - 1;
if (results.length > 2) {
String mail = (String) results[results.length - 2];
if (mail.indexOf("have mail in") > -1) {
length = results.length - 2;
}
}
int begin = 0;
if (getOSType().equals("AIX")) {
begin = 0;
} else if (getOSType().equals("HP-UX")) {
begin = 1;
}
for (int i = begin; i < length; i++) {
if (results[i].indexOf(command) > -1)
continue;
vResult.addElement(results[i]);
}
}
for (int i = 0; i < vResult.size(); i++) {
if (i < vResult.size() - 1)
result += (String) vResult.elementAt(i) + "\n";
else
result += (String) vResult.elementAt(i);
}
if (result != null && result.endsWith("\r")) {
result = result.substring(0, result.length() - 1);
}
return result.trim();
}
}