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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
|
import java.awt.*;
import java.io.*;
import java.net.*;
import java.util.*;
import java.util.zip.*;
public class FileTool
{
public static final boolean fileExists(MachineCtrl mctrl,
String filename
)
{
if (mctrl.isNetscapeJvm)
{
try
{
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFileAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalConnect");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFdRead");
}
catch (Exception e)
{
System.out.println
("Netscape denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
else if (mctrl.isMicrosoftJvm)
{
try
{
com.ms.security.PolicyEngine.assertPermission (com.ms.security.PermissionID.FILEIO);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.PROPERTY);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.SYSTEM);
}
catch (Exception e)
{
System.out.println
("Microsoft VM denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
File f = new File(filename);
return f.exists();
}
public static final String libraryExists(MachineCtrl mctrl,
String libname, Vector libdirlist
)
{
if (mctrl.isNetscapeJvm)
{
try
{
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFileAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalExecAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalConnect");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFdRead");
}
catch (Exception e)
{
System.out.println
("Netscape denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return null;
}
}
else if (mctrl.isMicrosoftJvm)
{
try
{
com.ms.security.PolicyEngine.assertPermission (com.ms.security.PermissionID.FILEIO);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.PROPERTY);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.SYSTEM);
}
catch (Exception e)
{
System.out.println
("Microsoft VM denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return null;
}
}
if (mctrl.isUnix)
{
File f = new File("/etc/ld.so.conf");
if (f.exists())
{
try
{
BufferedReader br =
new BufferedReader(new FileReader(f));
try
{
while (true)
{
String s = br.readLine();
if (s == null) break;
if (s.length() > 0)
libdirlist.addElement(new String(s));
}
}
catch (Exception e)
{
br.close();
}
}
catch (Exception e)
{ }
}
}
if (libdirlist != null)
{
for (int i = 0; i < libdirlist.size(); i++)
{
String s = (String)libdirlist.elementAt(i);
if ( (s != null) && (s.length() > 0) )
{
if (new File(s + "/" + libname).exists())
{
System.out.println
("File found: "+s + "/" + libname+"\n");
return s;
}
}
}
}
return null;
}
/**
* Create all directory entries,
* which the given path contains !
*
* The given path can contain a file at the end,
* only elements finishing with a "/" are interpreted as an
* directory, therefor only for these, directories are created !
*
* E.g. "../binpkg/test.zip"
* The following directories will be created:
* .. -> error is catched and ignored
* ../binpkg/
*
*
* This is the same, like "mkdir -P /hello/dirs/" !
*/
public static final boolean MkdirWithParents(MachineCtrl mctrl, String path)
{
if(path==null) return true;
if (mctrl.isNetscapeJvm)
{
try
{
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFileAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalExecAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalConnect");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFdRead");
}
catch (Exception e)
{
System.out.println
("Netscape denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
else if (mctrl.isMicrosoftJvm)
{
try
{
com.ms.security.PolicyEngine.assertPermission (com.ms.security.PermissionID.FILEIO);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.PROPERTY);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.SYSTEM);
}
catch (Exception e)
{
System.out.println
("Microsoft VM denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
int dl = path.length();
int pos = 0;
File tmpdir = null;
String thisPath = null;
while(0<=pos && pos<dl)
{
pos = path.indexOf('/', pos+1);
if(pos>0)
{
thisPath = path.substring(0,pos);
tmpdir = new File (thisPath);
try
{
tmpdir.mkdir();
System.out.println("mkdir "+thisPath);
}
catch (Exception e0)
{ }
tmpdir = null;
}
}
return true;
}
/**
* Copy all files from the zip
* or jar archive pointed to by zipURL to their
* corresponding destination given in targetDirs !
*
* The status window is updated with the name of the
* source file being copied.
*
* Each listed source file is simultaneously copied to
* all of its destination files. This means that the
* zip archive is only read once to minimize the amount
* of data that is transferred over the network.
*/
public static final boolean copyFilesFromZip
(MachineCtrl mctrl,
URL zipURL, Vector targetDirs,
TextArea statustextarea,
ProgressBar bar
)
{
int i, j;
boolean ok = true;
int nFiles = targetDirs.size();
String srcFile = null;
String destFiles[] = new String[nFiles];
File dstfils[] = new File[nFiles];
FileOutputStream fos[] = new FileOutputStream[nFiles];
if(targetDirs==null||nFiles==0) return true;
if (mctrl.isNetscapeJvm)
{
try
{
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFileAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalExecAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalConnect");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFdRead");
}
catch (Exception e)
{
System.out.println
("Netscape denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
else if (mctrl.isMicrosoftJvm)
{
try
{
com.ms.security.PolicyEngine.assertPermission (com.ms.security.PermissionID.FILEIO);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.PROPERTY);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.SYSTEM);
}
catch (Exception e)
{
System.out.println
("Microsoft VM denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
for (i = 0; i < nFiles; i++)
{
//
// adding a trailing path-seperator, if needed !
//
if(targetDirs.elementAt(i)!=null)
{
String targetDir = (String) targetDirs.elementAt(i);
targetDir = targetDir.trim();
if(targetDir.indexOf('/', targetDir.length()-1)<0)
targetDir += "/";
System.out.println("targetDir: "+targetDir);
targetDirs.setElementAt(targetDir, i);
}
}
ZipInputStream zis = null;
CountedBufferedInputStream cis = null;
int totalLength = 0;
// Open the archive.
try
{
URLConnection conn = zipURL.openConnection();
conn.connect();
totalLength = conn.getContentLength();
bar.setMin(0);
bar.setMax(totalLength);
cis = new CountedBufferedInputStream(zipURL.openStream());
zis = new ZipInputStream(cis);
}
catch (Exception e0)
{
if(statustextarea!=null)
{
statustextarea.setText
(statustextarea.getText() +
"Cannot open file: " + zipURL + "\n");
statustextarea.setCaretPosition(Integer.MAX_VALUE);
}
return false; // Should never happen!
}
try
{
while (ok)
{
ZipEntry entry = zis.getNextEntry();
if(entry==null)
break;
if (!entry.isDirectory())
{
srcFile = entry.getName();
for(i=0; ok && i<nFiles; i++)
{
String targetDir = (String) targetDirs.elementAt(i);
destFiles[i] = targetDir + srcFile;
dstfils[i] = new File(destFiles[i]);
if (dstfils[i].exists())
{
try
{
dstfils[i].delete();
}
catch (Exception e0)
{ }
} else {
FileTool.MkdirWithParents(mctrl, destFiles[i]);
}
try
{
fos[i] = new FileOutputStream(dstfils[i]);
}
catch (Exception e0)
{
fos[i] = null;
if(statustextarea!=null)
{
statustextarea.setText
(statustextarea.getText() +
"Cannot create file: " + destFiles[i] + "\n");
statustextarea.setCaretPosition(Integer.MAX_VALUE);
}
ok= false;
break; // breaks the beast ...
}
}
if(ok)
if(statustextarea!=null)
{
statustextarea.setText
(statustextarea.getText() +
"Installing source file: " + srcFile );
statustextarea.setCaretPosition(Integer.MAX_VALUE);
}
try
{
byte[] buf = new byte[4096];
int bytesread;
while (ok &&
(bytesread = zis.read(buf,0,buf.length)) >= 0
)
{
if (bytesread < 1) continue;
try
{
// Write the data to the destination files.
for (i = 0; ok && i < nFiles; i++)
{
if (fos[i] != null)
fos[i].write(buf,0,bytesread);
}
if(bar!=null)
bar.setValue(cis.getReadTotalLen());
}
catch (Exception e0)
{
// We got a write error.
if(statustextarea!=null)
{
statustextarea.setText
(statustextarea.getText() +
"\nCannot write file: " + destFiles[i] +
"\n");
statustextarea.setCaretPosition(Integer.MAX_VALUE);
}
ok = false;
continue; // breaks the beast ...
}
}
}
catch (Exception e0)
{ } // Should never happen!
if(statustextarea!=null)
{
statustextarea.setText
(statustextarea.getText() + "\n");
statustextarea.setCaretPosition(Integer.MAX_VALUE);
}
for (j = 0; j < i; j++)
{
if (fos[j] != null)
{
try
{
fos[j].close();
}
catch(Exception e1)
{ }
}
if (!ok && dstfils[j] != null)
{
try
{
dstfils[j].delete();
}
catch (Exception e1)
{ }
fos[j] = null;
}
}
}
}
}
catch (Exception e0)
{ } // End of archive.
try
{
zis.close();
}
catch(Exception e1)
{ }
if(!ok)
{
if(statustextarea!=null)
{
statustextarea.setText
(statustextarea.getText() +
"INSTALLATION INCOMPLETE !!\n"+
"Please check this log files for reasons !\n");
statustextarea.setCaretPosition(Integer.MAX_VALUE);
}
return false;
}
return true;
}
/**
* Copy srcFile from the remote directory pointed to by
* baseURL to the local path pointed to by destFile.
*
* If baseURL is null,
* an ordinary filecopy is used (Local Harddisk)
*/
public static final boolean copyFileFromDir(MachineCtrl mctrl,
URL baseURL,
String srcFile, String destFile,
TextArea statustextarea)
{
URL srcURL = null;
InputStream is = null;
FileOutputStream fos = null;
File srcfil = null;
File dstfil = null;
boolean ok = true;
if (mctrl.isNetscapeJvm)
{
try
{
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFileAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalExecAccess");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalConnect");
netscape.security.PrivilegeManager.enablePrivilege
("UniversalFdRead");
}
catch (Exception e)
{
System.out.println
("Netscape denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
else if (mctrl.isMicrosoftJvm)
{
try
{
com.ms.security.PolicyEngine.assertPermission (com.ms.security.PermissionID.FILEIO);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.PROPERTY);
com.ms.security.PolicyEngine.assertPermission
(com.ms.security.PermissionID.SYSTEM);
}
catch (Exception e)
{
System.out.println
("Microsoft VM denied privileges, or a failure occurred.\n"+
"Here is the exception that was caught:\n"+e+"\n");
return false;
}
}
try
{
if(baseURL!=null)
srcURL = new URL(baseURL.toString() + "/" + srcFile);
}
catch (Exception e)
{
if(statustextarea!=null)
statustextarea.setText
(statustextarea.getText() +
"Cannot get URL: " + baseURL.toString()+"/"+srcFile+"\n");
return false;
}
dstfil = new File(destFile);
// Open the source file.
try
{
if(srcURL!=null)
is = srcURL.openStream();
else {
srcfil = new File(srcFile);
is = new FileInputStream(srcfil);
}
}
catch (Exception e0)
{
if(statustextarea!=null)
statustextarea.setText
(statustextarea.getText() +
"Cannot open file: " + srcURL + "\n");
return false;
}
FileTool.MkdirWithParents(mctrl, destFile);
// If the destination file exists, attempt to
// delete it.
if (dstfil.exists())
{
try
{
dstfil.delete();
}
catch (Exception e0)
{ }
}
// Create the destination file.
try
{
fos = new FileOutputStream(dstfil);
}
catch (Exception e0)
{
if(statustextarea!=null)
statustextarea.setText
(statustextarea.getText() +
"Cannot create file: " + destFile + "\n");
ok=false;
}
// Copy the data from the source to the destination.
try
{
byte[] buf = new byte[4096];
int bytesread;
while (ok && (bytesread = is.read(buf,0,buf.length)) >= 0)
{
if (bytesread < 1) continue;
try
{
// Write the data to the destination file.
fos.write(buf,0,bytesread);
}
catch (Exception e0)
{
// Write error.
if(statustextarea!=null)
statustextarea.setText
(statustextarea.getText() +
"Cannot write file: " + destFile + "\n");
ok = false;
}
}
}
catch (Exception e0)
{ } // Should never happen!
try
{
if(is!=null)
is.close();
}
catch(Exception e1)
{ }
try
{
if(fos!=null)
fos.close();
}
catch(Exception e1)
{ }
try
{
if(!ok && dstfil!=null)
dstfil.delete();
}
catch(Exception e1)
{ }
return ok;
}
}
|