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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327 | #!/home/richmit/bin/verGo.sh ruby
# -*- Mode:Ruby; Coding:us-ascii-unix; fill-column:160 -*-
################################################################################################################################################################
##
# @file mpmfs.rb
# @author Mitch Richling <https://www.mitchr.me/>
# @Copyright Copyright 2007 by Mitch Richling. All rights reserved.
# @brief mpmfs -- Mitch's Poor Man's File Server@EOL
# @Keywords ruby file-server webrick mpmfs
# @Std Ruby 1.8
#
# TODO (not prioritized)
#
# * FileBrowserService: Support links for dir=
# * MultiFileActionService: Like FileActionService, but works on may files at one time.
# * FileBrowserService: Add select boxes to the dir listings to feed MultiFileActionService
# * FileBrowserService: Add option to compress downloaded files
# * FileBrowserService: Make the directory components in the titles of /fs listings clickable
# * FileBrowserService: Add clickable directory path components in title
# * XXX: Ubersafe file-name packaging -- i.e. we need to come up with a canonical encoding that we can use to pass file names and path names around so that
# we know with 100% assurance that we can have any chars in a file name - including ones that can not be expressed in HTML at all. Note we need not do
# this sort of thing for the shell service, as everything we do in the shell service is 'type-able' -- i.e. needs escaped if it is a funny char.
# * XXX: Prefrences
# * Figure out a way to make prefs persist between invocations
# * FileBrowserService:
# * size of hex dump & color in hex dump.
# * option for ask=Y or ask=N for rm & rmdir
# * Size threshold for download-only
# * Display/not display: chmod, chown, touch, rm, hex, act, upload, mkdir
# * HexdumpFileService
# * size of default hex dump, color of default hex dump
# * SysInfoService
# * Refresh for top
# * SysInfoService: Add better support for Windows XP.
# * UnixFileActionService: Add display of known parameters when asking for cmd (i.e. file, cwd, ...)
# * UnixFileActionService: Add diff (side-by-side and regular)
#
# ANTI-TODO (i.e. Stuff people ask for that I'm just not going to implement)
#
# * Some options set the behavior for all future calls. For example 'scol' sets the sort column for the current, and all future, listings produced by
# FileBrowserService. I like it this way.
# * Make the directory listings not look so 'UNIX-ish'.
# * Reformat the code to fit into 80 columns. Sorry, I have a big screen. :)
# * Make it faster! Don't store two copies of stat for each directory entry! Bah!
# * Make it work with directories with 100K files. Bah!
# * Fix the funny help text formatting. No. XEmacs goofs up the syntax highlighting when I fix it. :)
#
# BUGS
#
# * Funny file names might still be able to cause some bad behaviour
# * Not tested very well when run as root user
# * Not tested very well on Windows XP (with or without cygwin)
# * UnixFileActionService uses popen3 to capture STDOUT and STDERR, but it doesn't preserve exit code!
#
################################################################################################################################################################
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
HELP_INTRODUCTION = "
# INTRODUCTION
#
# mpmfs.rb (Mitch's Poor Man's File Server) implements a file-server (with a few extra bits) as a web service
# (a specialized HTTP server) using Ruby. Some of the things it can do:
#
# * Read/Write access to the current host's file-system.
# * Pure Ruby file manipulation (touch, chmod, etc.)
# * UNIX command/shell access
# * File manipuation (touch, chmod, etc..)
# * System information (top, df, who, etc..)
# * RPC-like access via HTTP GET to access raw shell command output.
# * A usable interactive shell access with command history.
# * Supports SSL and HTTP based user/password authentication
# * Functions through HTTP proxies and over SSH tunnels
# * Works well with text browsers (Lynx & w3m)
# * Isn't terribly ugly on GUI browsers (firefox, safari, IE)
# * Everything is a ONE FILE ruby script
# * Decent support for Windows XP, and very good UNIX support
#
# Normally MPMFS is bound to the host's loop-back interface (localhost or 127.0.0.1) so that it may be accessed by
# any local processes. If the local host is shared with other users, then HTTP authentication should be used to
# prevent access. To access a MPMFS server from a remote host, an SSH tunnel is the usual solution. For example,
# we can provide my.host.com with easy file-system access to far.away.com a single terminal window (using the w3m
# browser) like this:
#
# my.host.com$ ssh -L 127.0.0.1:8080:127.0.0.1:8080 far.away.com mpmfs.rb &
# my.host.com$ w3m 'http://localhost:8080/'
#
# An alternate way of accessing an MPMFS remotely is to bind it to an externally visible interface. When used in
# this way, it is probably a good idea to turn on both SSL and HTTP authentication. For the ultimately paranoid,
# using SSL, HTTP authentication and an SSH tunnel in combination may be just the ticket.
"
HELP_USE_CASES = "
# PERSONAL USE CASES
#
# MPMFS was originally designed to solve some of the problems I face on a day-to-day basis. Probably the best way
# to determine if MPMFS is useful for you is to consider how I use the tool.
#
# * Browsing unfamiliar directory structures in a terminal window with w3m.
#
# The 'ls, look, cd', cycle used to explore a directory or directory structure on the command line can
# require a considerable amount of typing -- even with a modern shell like bash with great command line
# completion. MPMFS provides a very efficient, visual interface for this kind of thing. Midnight Commander
# or 'dired mode' in Emacs are also solutions to this same problem if you have them around.
#
# * Moving files around over SSH tunnels in highly restricted environments without the typing effort of scp
#
# I frequently move files around my home network, but the only service I run is ssh. I also find myself doing
# this at work on ssh-only, secure subnets. Running MPMFS via SSH tunnels is nice way to avoid the typing effort
# of scp -- I get very frustrated trying to type the 60 character names with spaces and special characters that
# my Windows using coworkers like to create. FUSE and ssh/scp provide a nice file-system interface to solve
# this problem if you have FUSE, and the appropriate privileges, on the local system.
#
# This use-case is particularly common when one of the systems is a Windows machine setting on your desk and
# the other box is a UNIX host in a datacenter. Using the SSH tunnel in this case avoids violating
# corporate policies against starting up network services or installing software on systems.
#
# * Getting a file from home through a corporate firewall (HTTP proxy)
#
# I ssh home via my smart phone, and start up MPMFS in a container (a sort of chroot-jail construct) with SSL
# and HTTP authentication turned on. Then I connect to that 'web page' through the company firewall, and
# download my file. Then I stop the MPMFS via my ssh connection on the phone.
#
# * Usable command line access to a remote host from a stupid host.
#
# I really need to work on a remote system, but I'm at gradma's house. Grandma's computer doesn't have SSH,
# and the system is locked down by the assisted living IT guy. I can ssh with my smart phone, but it is very
# painful. Solution? I ssh to the remote system with my phone, scp MPMFS to the remote system if required,
# and start up MPMFS on an external interface (using SSL and HTTP authentication). Then I use the browser on
# gradma's computer to access the remote system.
"
HELP_USAGE = "
#
# USAGE
#
# USE: mpmfs.rb [OPTIONS] [[ADDRESS:]PORT]
# ADDRESS -- The IP address to listen on (default: localhost)
# PORT -- Numeric port number to listen on (default: 8080)
# OPTIONS -- various options:
# -url=URL -- Provide an 'advertised' URL that will be used to construct links. This is required when
# the server is running on an address/port that is different from the one that clients
# connect with (the server may listen on 127.0.0.1:8080 for example, but browsers may
# connect via an SSH tunnel to somehost:8181).
# -b -- browse only mode (only FileBrowserService available)
# -s -- Turn on SSL if ruby >= 1.8.6. (Note: use https in the URL)
# -a -- Turn on authentication if ruby >= 1.8.6. The script has a hard wired user name
# of 'mpmfs' with a valid passwd. This should be changed (account removed or at least
# the password changed).
# -p=file -- Specify a password file. Turns on -a as well. If you leave off the name
# and equals sign, then ~/.mpmpw.txt is used.
# Each line of the file looks like 'user_name:SHA1_hash_of_passwd' or
# 'user_name:clear_password'. Clear passwords are recognized as not being 40 hex digits. :)
# One can generate a simple file (user: mitch, passwd: mitch1) like this:
# echo 'mitch:' > pw.txt; echo -n 'mitch1' | openssl sha1 >> pw.txt
# -up=u:p -- Specify a user name and password on the command line. Turns on -a as well.
# This option may be present multiple times -- each time a new user & password will be added
# to the list, or will update the password for an existing user. The -p & -up options are
# processed in the order they appear on the command line. The value given to this option is
# processed just like a single line of a password file given to -p
"
HELP_URLS = "
#
# URL REFERENCE
#
# -----------------------------------------------------------------------------------------------
# CGI | URL | Service
# ---------|----------------------------------------------------------------|--------------------
# NA | / | RootService
# NA | /favicon.ico | FaviconService
# GET | /fs | FileBrowserService
# | dir -- the directory/file to download/display |
# | cols -- comma separated columns to display |
# | If empty, set list to default |
# | cdel -- delete the given columns |
# | deleting all cols, resets list to default |
# | cadd -- add the given columns |
# | scol -- Sort by the given column |
# | sdir -- Sort order (inc=increasing & dec=decreasing) |
# | fcol -- Filter Column |
# | fval -- Regexp filter (if fcol is valid and fval is nil, |
# | then the filter for given column is removed) |
# | sfld -- false turns off case insensitive file name sort |
# GET | /hexdump | HexdumpFileService
# | file -- file name to hexdump |
# | max -- maximum number of bytes to read (integer) |
# | color -- false to turn of color |
# GET | /ufa | UnixFileActionService
# | cmd -- Command to run |
# | rmRF, rmR, rm, rmdir, chmod, chown, mv, cp, |
# | zip, unzip, tar, untar, gzip, gunzip, bzip2, |
# | bunzip2, compress, uncompress, mkdir, file |
# | touchT, touchR, touch, ps2pdf, enscript, ls |
# | file -- The file name to act on |
# | arg1 -- Secondary argument |
# | return -- URL to which to jump |
# | bt -- Back Time -- time for redirect to 'return' |
# | ask -- Y to ask for input before action |
# GET | /rfa | RubyFileActionService
# | cmd -- Command to run |
# | rmRF, rmR, rm, rmdir, chmod, touchT, |
# | chown, mv, cp, mkdir, touch |
# | file -- The file name to act on |
# | arg1 -- Secondary argument |
# | arg1 -- Secondary argument |
# | return -- URL to which to jump |
# | bt -- Back Time -- time for redirect to 'return' |
# | ask -- Y to ask for input before action |
# GET | /sysInfo | SysInfoService
# | cmd -- The command |
# | refresh -- Refresh time (integer, seconds) |
# GET | /info | ServerInfoService
# GET | /ss | ShellService
# | cwd -- Current working directory |
# | cmd -- The command to run |
# | return -- URL to which to jump |
# | raw -- Y to produce raw output |
# | history -- Don't run the cmd, just update from history |
# GET | /log | LogReporterService
# GET/POST | /stest | ServiceTesterService
# POST | /upload | FileUploadService
# | uploadfile -- The file to upload |
# | uptarget -- The directory into which to put the file |
# | return -- URL to which to jump |
# GET | /srvctrl | ServiceControl
# | action -- 'stop' to shutdown MPMFS |
# | ask -- Y to ask for input before action |
# -----------------------------------------------------------------------------------------------
"
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
require 'webrick'
include WEBrick
require 'etc'
require 'cgi'
require 'timeout'
require 'digest/sha1'
require 'digest/md5'
require "open3"
include Open3
require 'fileutils'
if (RUBY_VERSION >= '1.8.6') then
require 'webrick/https'
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# We use this constantly, just make it global!
$hostName = if (FileTest.executable?('/usr/sbin/scutil')) then
`/usr/sbin/scutil --get ComputerName`.chomp.strip
else
Socket.gethostname.sub(/\..*$/, '')
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# We use this variable to log things
$cLog = String.new
$aLog = String.new
def logAction(theServlet, theRequest)
cTm = Time.now
$cLog += sprintf("(%04d-%02d-%02d_%02d:%02d:%02d_%3s ", cTm.year, cTm.month, cTm.day, cTm.hour, cTm.min, cTm.sec, cTm.zone)
$cLog += theServlet + ': '
$cLog += theRequest.inspect
$cLog += "\n"
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Parse arguments
$sysStartTime = Time.now
$version = '$Revision: 1.112 $ -- Distribution $Date: 2011/06/23 19:47:59 $'.gsub('$', '')
$bURL = nil
osUsrAndPass = Array.new
browseOnlyMode = false
doAuth = false
srvAndPort = nil
doSSL = false
while (ARGV[0]) do
curOpt = ARGV.shift
if (tmp = /^-+[hH](=(.+)){0,1}/.match(curOpt)) then
helpOpt = tmp[2]
if (helpOpt == 'INTRODUCTION') then
STDOUT.puts(HELP_INTRODUCTION)
elsif(helpOpt == 'USE_CASES') then
STDOUT.puts(HELP_USE_CASES)
elsif(helpOpt == 'USE') then
STDOUT.puts(HELP_USAGE)
elsif(helpOpt =~ /URLS{0,1}/i) then
STDOUT.puts(HELP_URLS)
else
STDOUT.puts("INFO(mpmfs): Use -h=OPT (where OPT is one of INTRODUCTION, USE, URLS, or USE_CASES for more)!")
end
STDOUT.puts("INFO(mpmfs): Read the comment at the top of the script for TODO, ANTI-TODO, and BUGS.")
exit(1)
elsif (/^-+a/i =~ curOpt) then
if (RUBY_VERSION >= '1.8.6') then
doAuth = true
else
STDOUT.puts("ERROR(mpmfs): HTTPAuth won't work with Ruby pre 1.8.6 -- ignoreing -a option")
exit
end
elsif (/^-+s/i =~ curOpt) then
if (RUBY_VERSION >= '1.8.6') then
doSSL = true
else
STDOUT.puts("ERROR(mpmfs): SSL (HTTPS) won't work with Ruby pre 1.8.6 -- ignoreing -s option")
exit
end
elsif (tmp = curOpt.match(/^-+up=(.+)$/i)) then
upv = tmp[1]
if (RUBY_VERSION >= '1.8.6') then
doAuth = true
if (tmp = upv.match(/^([^:]+):(.+)$/)) then
osUsrAndPass.push( [ tmp[1], tmp[2] ] )
else
STDERR.puts("WARNING(mpmws): Value of -up was badly formatted: '#{upv}")
end
else
STDOUT.puts("ERROR(mpmfs): HTTPAuth won't work with Ruby pre 1.8.6 -- ignoreing -p option")
exit
end
elsif (tmp = curOpt.match(/^-+p(=(.+)){0,1}$/i)) then
pwFile = tmp[2]
if (pwFile.nil?) then
if (ENV['HOME']) then
pwFile = ENV['HOME'] + '/.mpmpw.txt'
else
pwFile = Etc.getpwnam(Etc.getlogin).dir + '/.mpmpw.txt'
end
end
if (RUBY_VERSION >= '1.8.6') then
doAuth = true
open(pwFile) do |file|
file.each_line do |line|
if (tmp = line.strip.match(/^([^:]+):(.+)$/)) then
osUsrAndPass.push( [ tmp[1], tmp[2] ] )
else
STDERR.puts("WARNING(mpmws): Password file had a bad line: '#{line}")
end
end
end
else
STDOUT.puts("ERROR(mpmfs): HTTPAuth won't work with Ruby pre 1.8.6 -- ignoreing -p option")
exit
end
elsif (tmp = curOpt.match(/^-+url=(.+)$/i)) then
$bURL = tmp[1]
elsif (/^-+b/i =~ curOpt) then
browseOnlyMode = true
else # Must be the [[ADDRESS:]PORT] argument
srvAndPort = curOpt
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Figure out $bindAdd, $bindPort, & $bURL
$bindAdd = 'localhost'
$bindPort = 8080
if (srvAndPort) then
if (/^\d+$/.match(srvAndPort)) then
$bindPort = srvAndPort.to_i
elsif(/^.+:\d+$/.match(srvAndPort)) then
($bindAdd, $bindPort) = srvAndPort.split(/:/)
$bindPort = $bindPort.to_i
else
$bindAdd = srvAndPort
end
end
if ($bindAdd == 'external') then
$bindAdd = Socket.gethostbyname(Socket.gethostname)[0]
end
if (($bindAdd == 'localhost') || ($bindAdd == 'loopback')) then
$bindAdd = '127.0.0.1'
end
if ($bURL.nil?) then
$bURL = "http://#{$bindAdd}:#{$bindPort}"
if(doSSL) then
$bURL = "https://#{$bindAdd}:#{$bindPort}"
end
end
# Make sure port number is OK
if ( ($bindPort < 1024) && (Process.uid != 0) ) then
STDERR.puts("ERROR(mpmp2pg): Only root (uid=0) may open ports below 1024!")
exit(6);
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Helper function to make unprintable strings printable. wsKeep is a string of chars to NOT convert to oct codes
def octificateString(aString, wsKeep)
octifedString = ''
aString.each_byte do |theChar|
if ((theChar <= 32) || (theChar >= 127) || (/\s/.match(theChar.chr)) || (theChar.chr == '\\')) then
if (wsKeep.nil?) then
octifedString += sprintf("\\%03o", theChar)
else
keepChar = false
wsKeep.each_byte do |keepChar|
if (theChar == keepChar) then
keepChar = true
break
end
end
if (keepChar) then
if (theChar.chr == '\t') then
octifedString += (' ' * 8)
else
octifedString += theChar.chr
end
else
octifedString += sprintf("\\%03o", theChar)
end
end
else
octifedString += theChar.chr
end
end
return octifedString
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Link construction helper -- make nice links even in preformated sections
# spcMode: 'out', 'zap', 'keep'
# prtSpec: "%-Ns"
def mka(title, href, label, spcMode, prtSpec)
newLabel = sprintf(prtSpec, label)
newTitle = title.strip
if (spcMode == 'keep') then
return sprintf('<a title="%s" href="%s">%s</a>', newTitle, href, label)
else
labBits = newLabel.match(/^(\s*)(.*\S)(\s*)$/)
lftSpc = nonSpc = endSpc = ''
if(labBits) then
lftSpc, nonSpc, endSpc = labBits[1], labBits[2], labBits[3]
end
if(spcMode == 'out') then
return sprintf('%s<a title="%s" href="%s">%s</a>%s', lftSpc, newTitle, href, nonSpc, endSpc)
else
return sprintf('<a title="%s" href="%s">%s</a>', newTitle, href, nonSpc)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Helper function to produce simple HTML messages.
def genSimpleMsgHTML(bodyt, meta, title1, title2, bodyHead, bodyPre, bodyFoot)
return [
'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> ' + "\n" +
'<HTML> ' + "\n" +
' <HEAD><TITLE>MPMFS(' + $hostName + '): ' + (title1 || title2 || '') + '</TITLE> ' + "\n" +
'<style type="text/css">
.tinyFormBox {
margin:0px;
border-width: 0px;
padding: 0px;
}
</style>' +
(meta || '') + "\n" +
' </HEAD> ' + "\n" +
" <BODY #{bodyt || ''}> " + "\n" +
' <H1>' + (title2 || title1 || '') + '</H1> ' + "\n" +
(bodyHead || '') + "\n" +
' <PRE>' + "\n" + (bodyPre || '') + "\n" + '</PRE> ' + "\n" +
(bodyFoot || '') + "\n" +
"\n\n\n<br><br><br><hr>" + mka('Jump to the MPMFS root', $bURL, 'HOME', 'zap', '%s') + "\n" +
' -- Generated by MPMFS (Mitch Richling\'s Poor Man\'s File Server) -- ' + $version + '<br> ' + "\n" +
' </BODY> ' + "\n" +
'</HTML> ' + "\n",
'text/html'
]
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Simple authentication
class MySimpleAuth
# Password hashes are SHA1 hex dumps. Use Digest::SHA1.hexdigest in irb or something like 'printf "foo" | openssl sha1' at
# the command line (use printf because echo will add an \n at the end of the string).
@@passwdDB = {
'mpmfs' => '2492fc7ff2801a9948c342f087444703259f5267'
}
@@doAuth = false
def MySimpleAuth.setAuthOn(boolVal)
@@doAuth = boolVal && (RUBY_VERSION >= '1.8.6')
if (boolVal && !(@@doAuth)) then
STDOUT.puts("WARNING(mpmfs): HTTPAuth won't work with Ruby pre 1.8.6 -- HTTPAuth disabled")
end
end
# to lock an existing account, use '*LK*' as passwd and false for encPasswdForUse.
def MySimpleAuth.addOrUpdateAccount(userName, passwd, encPasswdForUse)
if (encPasswdForUse) then
@@passwdDB[userName] = Digest::SHA1.hexdigest(passwd)
else
@@passwdDB[userName] = passwd
end
end
def MySimpleAuth.doAuth(req, resp, realm)
if (@@doAuth) then
HTTPAuth.basic_auth(req, resp, realm) do |user, pass|
(@@passwdDB.member?(user) && (Digest::SHA1.hexdigest(pass || '') == @@passwdDB[user]))
end
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# This service provides access to the log files.
class LogReporterService < WEBrick::HTTPServlet::AbstractServlet
def do_GET(req, resp)
logAction('LogReporterService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if (req.query.member?('log')) then
if (req.query['log'] == 'a') then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'Access Log', nil, nil, CGI::escapeHTML(octificateString($aLog, ' \n')), nil)
elsif(req.query['log'] == 'c') then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'Custom Log', nil, nil, CGI::escapeHTML(octificateString($cLog, ' \n')), nil)
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: LogReporterService', nil, nil, nil, nil)
end
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: LogReporterService', nil, nil, nil, nil)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# This service is a service tester.
class ServiceTesterService < WEBrick::HTTPServlet::AbstractServlet
# POST
def do_POST(req, resp)
logAction('ServiceTesterService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
(resp.body, resp['Content-Type']) = do_X(req, resp, "POST")
end
# GET
def do_GET(req, resp)
logAction('ServiceTesterService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
(resp.body, resp['Content-Type']) = do_X(req, resp, "GET")
end
# This really performs all the work.
def do_X(req, resp, rtype)
if(req.query) then
thep = (req.query.map { |key, val| "KEY: #{CGI::escapeHTML(key.inspect)} == VAL: #{CGI::escapeHTML(val.inspect)}\n" }).join +
"\n\n\n" +
CGI::escapeHTML(req.inspect).gsub(',', ",\n")
return genSimpleMsgHTML(nil, nil, "CGI #{rtype} TEST", nil, nil, thep, nil)
else
return genSimpleMsgHTML(nil, nil, "CGI #{rtype} TEST: ERROR", nil, nil, nil, nil)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# This service provides a way for the server to shut itself down.
class ServiceControl < WEBrick::HTTPServlet::AbstractServlet
def do_GET(req, resp)
logAction('ServiceControl', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if (req.query.member?('ask')) then
if (req.query.member?('action') && (req.query['action'] == 'stop')) then
askHTML = mka('Shutdown the MPMFS server immediately', "#{$bURL}/srvctrl?action=stop", 'Shutdown Now!', 'zap', '%s')
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'MPMFS Shutdown Request Verification', nil, askHTML, nil, nil)
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'MPMFS Service Control', nil, '<h1>Unknown Request</h1>', nil, nil)
end
else
if (req.query.member?('action') && (req.query['action'] == 'stop')) then
exit!(1)
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'MPMFS Service Control', nil, '<h1>Unknown Request</h1>', nil, nil)
end
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# This service provides access to various bits of system information.
class ServerInfoService < WEBrick::HTTPServlet::AbstractServlet
def do_GET(req, resp)
logAction('ServerInfoService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
timeString = sprintf("%04d-%02d-%02d_%02d:%02d:%02d_%3s ", $sysStartTime.year, $sysStartTime.month, $sysStartTime.day,
$sysStartTime.hour, $sysStartTime.min, $sysStartTime.sec, $sysStartTime.zone)
theAnswer = ''
theAnswer += '<b>MPMFS Version:</b> ' + $version.sub(/\s*--.*$/, '') + "\n"
theAnswer += '<b>MPMFS Date:</b> ' + $version.sub(/^.*--\s*/, '') + "\n"
theAnswer += '<b>MPMFS Author:</b> ' + mka('Jump to my homepage', 'https://www.mitchr.me', 'Mitch Richling', 'zap', '%s') + "\n"
theAnswer += "\n"
theAnswer += '<b>Server Startup:</b> ' + CGI::escapeHTML(octificateString(timeString, ' ')) + "\n"
theAnswer += '<b>Bound Address:</b> ' + CGI::escapeHTML(octificateString($bindAdd, ' ')) + "\n"
theAnswer += '<b>Bound Port:</b> ' + CGI::escapeHTML(octificateString($bindPort.to_s, ' ')) + "\n"
theAnswer += '<b>Base URL:</b> ' + CGI::escapeHTML(octificateString($bURL, ' ')) + "\n"
theAnswer += "\n"
theAnswer += '<b>Ruby Version:</b> ' + CGI::escapeHTML(octificateString(RUBY_VERSION, ' ')) + "\n"
theAnswer += '<b>Ruby Platform:</b> ' + CGI::escapeHTML(octificateString(RUBY_PLATFORM, ' ')) + "\n"
theAnswer += '<b>Ruby Rel Date:</b> ' + CGI::escapeHTML(octificateString(RUBY_RELEASE_DATE, ' ')) + "\n"
theAnswer += "\n"
theAnswer += '<b>Host (logical):</b> ' + CGI::escapeHTML(octificateString($hostName, ' ')) + "\n"
if ( !(RUBY_PLATFORM =~ /mswin/)) then
theAnswer += '<b>Host (hostname):</b> ' + CGI::escapeHTML(octificateString(`hostname`.chomp, ' ')) + "\n"
theAnswer += '<b>Host (uname):</b> ' + CGI::escapeHTML(octificateString(`uname -a`.chomp, ' ')) + "\n"
theAnswer += '<b>Host (uptime):</b> ' + CGI::escapeHTML(octificateString(`uptime`.chomp, ' ')) + "\n"
end
theAnswer += "\n"
theAnswer += '<b>CWD:</b> ' + CGI::escapeHTML(octificateString(FileUtils.pwd, ' ')) + "\n"
theAnswer += "\n"
if ( !(RUBY_PLATFORM =~ /mswin/)) then
theAnswer += '<b>User Name:</b> ' + CGI::escapeHTML(octificateString(Etc.getlogin, ' ')) + "\n"
p=Etc.getpwnam(Etc.getlogin)
theAnswer += '<b>User UID:</b> ' + CGI::escapeHTML(octificateString(p.uid.to_s, ' ')) + "\n"
g=Etc.getgrgid(p.gid)
theAnswer += '<b>Group Name:</b> ' + CGI::escapeHTML(octificateString(g.name, ' ')) + "\n"
theAnswer += '<b>Group GID:</b> ' + CGI::escapeHTML(octificateString(p.gid.to_s, ' ')) + "\n"
end
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'MPMFS Instance Information', nil, nil, theAnswer, nil)
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# This service provides a favicon
class FaviconService < WEBrick::HTTPServlet::AbstractServlet
def do_GET(req, resp)
#MySimpleAuth.doAuth(req, resp, 'mpmfs')
resp['Content-Type'] = 'image/vnd.microsoft.icon' # or use: 'image/x-icon'
resp.body =
"\0\0\001\0\001\0\020\020\0\0\0\0\0\0h\005\0\0\026\0\0\0(\0\0\0\020\0\0\0 \0\0\0\001\0" +
"\b\0\0\0\0\0@\001\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\0\0\0\377" +
("\0"*1014) +
"\002\0\0\0\0\0\0\0\0\002\002\002\002\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\002\0\0\002" +
"\0\0\0\0\0\0\0\0\0\0\0\0\002\0\0\002\0\0\0\0\0\0\0\0\0\0\0\0\002\0\0\002\002\002\002" +
"\002\0\0\0\0\002\002\002\002\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\0" +
"\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\002\0\0\002\002\002\002\002\002" +
"\0\0\0\002\002\002\002\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\002\0\0\0\002\0\002\0\0\0" +
"\0\002\0\0\0\002\002\0\0\0\002\0\002\0\0\0\0\002\0\0\0\002\002\0\0\0\002\0\002\002" +
"\002\0\0\002\0\0\0\002\002\0\002\0\002\0\002\0\0\002\0\002\0\002\0\002\002\002\0\002" +
"\002\0\002\0\0\002\0\002\002\0\002\002\002\0\0\0\002\0\002\002\002\0\0\002\0\0\0\002" +
"\277\303\0\0\277\275\0\0\277\375\0\0\277\375\0\0\203\303\0\0\277\277\0\0\277\277\0\0" +
"\277\275\0\0\201\303\0\0\377\377\0\0u\356\0\0u\356\0\0tn\0\0U\252\0\0%\244\0\0tn\0\0"
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# My personal little touch replacement --- should be in FileUtils!!
def mjrTouchT(tim, file)
ttime = nil
begin
if (tmp = tim.match(/^(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\.(\d\d)){0,1}$/)) then
ttime = Time.mktime(tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[7], 0)
elsif(tmp = tim.match(/^(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\.(\d\d)){0,1}{0,1}$/)) then
ttime = Time.mktime(2000 + tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[7], 0)
elsif(tmp = tim.match(/^(\d\d)(\d\d)(\d\d)(\d\d)(\.(\d\d)){0,1}$/)) then
ttime = Time.mktime(Time.now.year, tmp[1], tmp[2], tmp[3], tmp[4], tmp[6], 0)
end
rescue
return "ERROR: mjrTouchT failure: Time spec out of range ([CC]YY]MMDDhhmm[.SS])"
end
if (ttime) then
begin
if (File.utime(ttime, ttime, file) > 0) then
return "SUCCESS: mjrTouchT"
else
return "ERROR: mjrTouchT failure: Bad time spec ([CC]YY]MMDDhhmm[.SS])"
end
rescue
return "ERROR: mjrTouchT failure: utime failed (missing file?)"
end
else
return "ERROR: mjrTouchT failure: Bad time spec ([CC]YY]MMDDhhmm[.SS])"
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# My personal little chmod replacement
def mjrChmod(daMode, file)
mmode = nil
if(daMode.match(/^[0-7]{3}$/)) then
mmode = daMode.oct
else
return "ERROR: mjrChmod failure: Mode spec invalid (must be 3 octal digits)"
end
begin
return FileUtils.chmod(mmode, file)
rescue
return "ERROR: mjrChmod: FileUtils.chmod failed"
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# My personal file digest replacement (think 'openssl md5' or 'openssl sha1'
def mjrDigest(file)
begin
open(file, "r") do |file|
fileData = file.read()
return "SUCCESS: mjrDigest: MD5: #{Digest::MD5.hexdigest(fileData)} SHA1: #{Digest::SHA1.hexdigest(fileData)}"
end
rescue
return "ERROR: mjrDigest failure: Duno why, but file was probably missing or not readable."
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Provide the hex dump service
class HexdumpFileService < WEBrick::HTTPServlet::AbstractServlet
@@doColor = true
@@maxConvSize = 1024*64
@@colCtr = [ '<font color="#FF0000">', '</font>' ]
@@colPrt = [ '', '' ]
@@colOvr = [ '<font color="#0000FF">', '</font>' ]
def do_GET(req, resp)
logAction('HexdumpFileService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if ( !(req.query)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: Hex Dump File (UNKNOWN REASON)', nil, nil, nil, nil)
return
end
goLink = ( req.query['return'] ? mka('click to jump back to file browser', CGI::escapeHTML(req.query['return']), 'Return', 'zap', '%s') : '' )
maxConvSizeNow = @@maxConvSize
if (req.query.member?('max')) then
maxConvSizeNow = req.query['max'].to_i
end
doColorNow = @@doColor
if (req.query.member?('color')) then
if (req.query['color'] == 'false') then
doColorNow = false
else
doColorNow = true
end
end
askHTML =
'<FORM METHOD="get" ACTION="' + $bURL + '/hexdump?' + '"><table BORDER="1"><tr><td><table BORDER="0" CELLSPACING="0" CELLPADDING="2"> '
if ( (req.query.member?('return')) && (req.query['return'])) then
askHTML +=
' <INPUT TYPE="hidden" NAME="return" VALUE="' + CGI::escapeHTML(req.query['return']) + '" /> '
end
if ( !(req.query.member?('file')) || req.query['file'].empty? ) then
askHTML +=
'<tr><td align="right">file:</td><td align="left"><INPUT TYPE="text" SIZE="30" NAME="file" VALUE="" /></td></tr> '
else
askHTML +=
'<tr><td align="right">file:</td><td align="left"><INPUT TYPE="text" SIZE="30" NAME="file" VALUE="' + CGI::escapeHTML(req.query['file']) + '" /></td></tr> '
end
askHTML +=
'<tr><td align="right">max:</td><td align="left"><INPUT TYPE="text" SIZE="6" NAME="max" VALUE="' + maxConvSizeNow.to_s + '" /></td></tr> ' +
'<tr><td align="right">color:</td><td align="left"><INPUT TYPE="text" SIZE="10" NAME="color" VALUE="' + doColorNow.inspect + '" /></td></tr> '
askHTML +=
'<tr><td colspan="2" align="right"><INPUT TYPE="submit" NAME="added" VALUE="submit"></td></tr> ' +
'</table></td></tr></table></FORM> '
if ( !(req.query.member?('file')) || req.query['file'].empty? ) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'Hex Dump File', nil, askHTML, nil, goLink)
return
end
theFile = req.query['file']
theFileHTMLable = CGI::escapeHTML(octificateString(theFile, ' '))
begin
theFileStat = File.stat(theFile)
if ( !(theFileStat)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: Hex Dump File (Could not stat the file!)', nil, nil, nil, goLink)
return
end
if ( !(theFileStat.file?)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: Hex Dump File (File was not a file!)', nil, nil, nil, goLink)
return
end
if ( !(theFileStat.readable?)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: Hex Dump File (File was not readable!)', nil, nil, nil, goLink)
return
end
rescue
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: Hex Dump File (Could not stat the file!)', nil, nil, nil, goLink)
return
end
theConv = ''
moreLeft = false
open(theFile) do |file|
byteCount = 0
blockCount = 0
cLineStr = ''
cLineAdd = -1
cLineHex = ''
file.each_byte do |b|
if(cLineAdd < 0) then
cLineAdd = byteCount
cLineHex=''
cLineStr=''
end
byteCount += 1
if (doColorNow) then
if (b<32) then
cLineStr += @@colCtr[0] + CGI::escapeHTML((b+64).chr) + @@colCtr[1]
elsif (b>126) then
cLineStr += @@colOvr[0] + '#' + @@colOvr[1]
else
cLineStr += @@colPrt[0] + CGI::escapeHTML(b.chr) + @@colPrt[1]
end
else
if ((b<32) || (b>126)) then
cLineStr += '.'
else
cLineStr += CGI::escapeHTML(b.chr)
end
end
cLineHex += sprintf("%02x ", b)
if ((byteCount % 8)==0) then
blockCount += 1
if ((blockCount % 4)==0) then
theConv += sprintf("%010x : %-100s : %s\n", cLineAdd, cLineHex, cLineStr)
cLineAdd = -1
else
cLineHex += sprintf(" ")
end
end
if(byteCount>maxConvSizeNow) then
moreLeft = true
break
end
end
if ( cLineAdd >= 0) then
theConv += sprintf("%010x : %-100s : %s\n", cLineAdd, cLineHex, cLineStr)
end
end
theConv += sprintf("\n")
if (moreLeft) then
theConv += sprintf("%s\n", 'Output Truncated')
end
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "HexDump: #{theFileHTMLable}", nil, nil, theConv, askHTML + '<br>' + goLink)
return
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Provide the filebrowser
class FileBrowserService < WEBrick::HTTPServlet::AbstractServlet
@@showUnreadable = true # Directory listings show unreadable files
@@showSimlinks = true # Directory listings show simlinks
@@cFactor = 1.5 # Factor for file size bucket (PB, TB, GB, MB) in listings
@@doFileContentCheckForMimeType = true # Read file content, and look for non-ASCII to determine Mime-Type
@@okPercentESCnBSPinTextFile = 10 # Percentage of text file that may be ESC/BSP and still be text/plain
@@fileSizeDownloadThreshold = 10 # Size (in MB) beyond which files will always be download only
@@dfltSCol = 'name' # Default column to sort
@@dfltSDir = 'inc' # Default sort order is acceding.
@@foldCaseInSort = true # Do case insensitive sort
@@showHelp = true # Display the column link help in listings
@@faSrv = 'ufa' # The file action service URL (ufa or rfa)
@@ignoreModeUploadLinks = false # Attempt file uploads into non-writable directories
@@provideFUNCchmod = true # Directory listings have: chmod
@@provideFUNCchown = true # Directory listings have: chown
@@provideFUNCtouch = true # Directory listings have: touch
@@provideFUNCshell = true # Directory listings have: shell (on . link)
@@provideFUNCactA = true # Directory listings have: 'Act'
@@provideFUNCactI = true # Directory listings have: 'act Inside"
@@provideFUNCactH = true # Directory listings have: 'Hex view'
@@provideFUNCactD = true # Directory listings have: 'Download only'
@@provideFUNCactU = true # Directory listings have: 'Upload into'
@@provideFUNCactF = true # Directory listings have: 'Form multi-select box'
def FileBrowserService.roMode()
@@provideFUNCchmod = false
@@provideFUNCchown = false
@@provideFUNCtouch = false
@@provideFUNCshell = false
@@provideFUNCactA = false
@@provideFUNCactI = false
@@provideFUNCactU = false
@@provideFUNCactF = false;
end
@@ext2mimeType =
begin
tmpHash = Hash.new
[
[ 'application/postscript', %w{ ps eps ai } ],
[ 'application/pdf', %w{ pdf } ],
[ 'application/x-dvi', %w{ dvi } ],
[ 'text/plain', %w{ tcl
c h cc cpp hpp hh hxx cxx
f f77 f90 f95 f2k
rb pl py
js ls mocha jsc jsu
java
cgi
tex latex texinfo texi
t tr roff roff t tr man
troff nroff
txt
tsv csv
css
sgm sgml
xml xsl
tcl
ruby perl
sh csh ksh bash tcsh
python } ], # Source code using #! lines
[ 'text/html', %w{ htm html shtml } ],
[ 'application/x-download', %w{ bin class exe
Z bz2 gz zip tgz cpio gtar
shartar uu uue jar bcpio } ],
[ 'image/bmp', %w{ bmp } ],
[ 'image/gif', %w{ gif } ],
[ 'image/jpeg', %w{ jpeg jpg jpe jfif pjpeg pjp } ],
[ 'image/png', %w{ png } ],
[ 'image/tiff', %w{ tiff tif } ],
[ 'image/x-cmu-raster', %w{ ras } ],
[ 'image/x-portable-anymap', %w{ pnm } ],
[ 'image/x-portable-bitmap', %w{ pbm } ],
[ 'image/x-portable-graymap', %w{ pgm } ],
[ 'image/x-portable-pixmap', %w{ ppm } ],
[ 'image/x-xbitmap', %w{ xbm } ],
[ 'image/x-xpixmap', %w{ xpm } ],
[ 'image/x-xwindowdump', %w{ xwd } ],
[ 'video/mpeg', %w{ mpeg mpg mpe mpv vbs mpegv } ],
[ 'video/msvideo', %w{ avi wmv avi asf asx } ],
[ 'video/quicktime', %w{ qt mov moov } ],
[ 'application/x-excel', %w{ xls xlw xla xlc xlm xlt xll } ],
[ 'application/mspowerpoint', %w{ pot pps ppt ppz } ],
[ 'application/msword', %w{ doc wiz rtf } ],
[ 'application/msproject', %w{ mpp } ]
].each do |type, extArr|
extArr.each do |ext|
tmpHash[ext.downcase] = type
end
end
tmpHash
end
@@colInfo = {
'mode' => { 'pFmt' => '%-10s', 'lab' => 'Mode', 'dOrd' => 0, 'win?' => true, 'cygwin?' => true, 'sortable' => true, 'filterable' => true },
'lnk' => { 'pFmt' => '%3s', 'lab' => 'Lnk', 'dOrd' => 1, 'win?' => false, 'cygwin?' => true, 'sortable' => true, 'filterable' => false },
'owner' => { 'pFmt' => '%-9s', 'lab' => 'Owner', 'dOrd' => 2, 'win?' => false, 'cygwin?' => false, 'sortable' => true, 'filterable' => true },
'group' => { 'pFmt' => '%-9s', 'lab' => 'Group', 'dOrd' => 3, 'win?' => false, 'cygwin?' => false, 'sortable' => true, 'filterable' => true },
'size' => { 'pFmt' => '%-10s', 'lab' => 'Size', 'dOrd' => 4, 'win?' => true, 'cygwin?' => true, 'sortable' => false, 'filterable' => true },
'ctime' => { 'pFmt' => '%-19s', 'lab' => 'CTime', 'dOrd' => 5, 'win?' => true, 'cygwin?' => true, 'sortable' => true, 'filterable' => true },
'mtime' => { 'pFmt' => '%-19s', 'lab' => 'MTime', 'dOrd' => 6, 'win?' => true, 'cygwin?' => true, 'sortable' => true, 'filterable' => true },
'1' => { 'pFmt' => '%-1s', 'lab' => '1', 'dOrd' => 7, 'win?' => true, 'cygwin?' => true, 'sortable' => false, 'filterable' => false },
'2' => { 'pFmt' => '%-1s', 'lab' => '2', 'dOrd' => 8, 'win?' => true, 'cygwin?' => true, 'sortable' => false, 'filterable' => false },
'3' => { 'pFmt' => '%-1s', 'lab' => '3', 'dOrd' => 8, 'win?' => true, 'cygwin?' => true, 'sortable' => false, 'filterable' => false },
'4' => { 'pFmt' => '%-1s', 'lab' => '4', 'dOrd' => 9, 'win?' => true, 'cygwin?' => true, 'sortable' => false, 'filterable' => false },
'name' => { 'pFmt' => '%s', 'lab' => '', 'dOrd' => 10, 'win?' => true, 'cygwin?' => true, 'sortable' => true, 'filterable' => true },
'slink' => { 'pFmt' => '%s', 'lab' => '', 'dOrd' => 11, 'win?' => true, 'cygwin?' => true, 'sortable' => false, 'filterable' => false }
}
@@theColsToPrint = [ 'mode', 'lnk', 'owner', 'group', 'size', 'ctime', 'mtime', '1', '2', '3', '4', 'name', 'slink' ]
@@theColsToFilter = Hash.new
def do_GET(req, resp)
logAction('FileBrowserService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
theFile = '/'
if ((req.query) && (req.query.member?('dir'))) then
theFile = CGI::unescape(req.query['dir'])
end
if (theFile.empty?) then
theFile = '/'
end
theFile = File.expand_path(theFile, theFile)
curURL = $bURL + '/fs?dir=' + theFile
curEscURL = CGI::escape(curURL)
theFileOct = octificateString(theFile, '')
theFileForURLs = CGI::escape(theFile)
theFileLStat = theFileStat = nil
begin
theFileLStat = File.lstat(theFile)
theFileStat = theFileLStat
if (theFileLStat.symlink?) then
theFileStat = File.stat(theFile)
end
rescue
STDOUT.puts("ERROR(mpmfs): Could not stat #{theFile.inspect}")
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File or directory not found', nil, nil, nil, nil)
return
end
if (theFileLStat.nil?) then
STDOUT.puts("ERROR(mpmfs): Could not stat #{theFile.inspect}")
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File or directory not found', nil, nil, nil, nil)
return
end
if (theFileLStat.directory?) then
if (RUBY_PLATFORM =~ /mswin/) then
@@provideFUNCchmod = false
@@provideFUNCchown = false
@@provideFUNCshell = false
@@faSrv = 'rfa'
@@ignoreModeUploadLinks = true
end
if (RUBY_PLATFORM =~ /cygwin/) then
@@provideFUNCchmod = false
@@provideFUNCchown = false
@@ignoreModeUploadLinks = true
end
if (req.query['cols']) then
@@theColsToPrint = req.query['cols'].to_s.split(',').uniq.delete_if { |x| !(@@colInfo.member?(x)) }
end
if (req.query['cdel']) then
req.query['cdel'].to_s.split(',').map { |x| @@theColsToPrint.delete(x) }
end
if (req.query['cadd']) then
@@theColsToPrint = (@@theColsToPrint + req.query['cadd'].to_s.split(',')).delete_if { |x| !(@@colInfo.member?(x)) }
end
if (@@theColsToPrint.empty?) then
@@theColsToPrint = @@colInfo.keys.sort { |x,y| @@colInfo[x]['dOrd'] <=> @@colInfo[y]['dOrd'] }
end
@@theColsToPrint.sort! { |x,y| @@colInfo[x]['dOrd'] <=> @@colInfo[y]['dOrd'] }
if (req.query['fcol']) then
if (req.query['fval']) then
tmp = req.query['fcol'].to_s.downcase
if (@@colInfo.member?(tmp) && @@colInfo[tmp]['filterable']) then
begin
@@theColsToFilter[tmp] = Regexp.new(req.query['fval'])
rescue
STDOUT.puts("ERROR(mpmfs): Regexp was invalid: #{req.query['fval'].inspect}")
end
end
else
@@theColsToFilter.delete(req.query['fcol'].to_s)
end
end
if (RUBY_PLATFORM =~ /mswin/) then
@@theColsToPrint.delete_if { |x| !(@@colInfo[x]['win?']) }
end
if (RUBY_PLATFORM =~ /cygwin/) then
@@theColsToPrint.delete_if { |x| !(@@colInfo[x]['cygwin?']) }
end
theColsToPrintNow = @@theColsToPrint
theColsToFilterNow = @@theColsToFilter
if ( !(theFileLStat.writable?) || !(@@provideFUNCactA)) then
theColsToPrintNow.delete('1')
end
if ( !(@@provideFUNCactF)) then
theColsToPrintNow.delete('4')
end
if ( !(@@provideFUNCactI || @@provideFUNCactH)) then
theColsToPrintNow.delete('2')
end
if ( !(@@provideFUNCactD || @@provideFUNCactU)) then
theColsToPrintNow.delete('3')
end
if (req.query['scol']) then
tmp = req.query['scol'].to_s.downcase
if (@@colInfo.member?(tmp) && @@colInfo[tmp]['sortable']) then
@@dfltSCol = tmp
end
end
if (req.query['sdir']) then
@@dfltSDir = req.query['sdir'].to_s.downcase
end
if (req.query['sfld']) then
if (req.query['sfld'] == 'false') then
@@foldCaseInSort = false
else
@@foldCaseInSort = true
end
end
sortCol = @@dfltSCol
sortDir = @@dfltSDir
numSortDir = ( sortDir == 'inc' ? 1 : -1 )
dirList = ''
if (@@provideFUNCactF && theColsToPrintNow.member?('4')) then
dirList += "<form action=\"#{$bURL}/#{@@faSrv}\">"
end
dirList += (theColsToPrintNow.map { |x|
if (@@colInfo[x]['sortable']) then
if ((x == sortCol) && (sortDir == 'inc')) then
mka('Sort on this Column', "#{curURL}&sdir=dec&scol=#{x}", @@colInfo[x]['lab'], 'out', @@colInfo[x]['pFmt'])
else
mka('Sort on this Column', "#{curURL}&sdir=inc&scol=#{x}", @@colInfo[x]['lab'], 'out', @@colInfo[x]['pFmt'])
end
else
sprintf(@@colInfo[x]['pFmt'], @@colInfo[x]['lab'])
end
}).join(' ') + "\n"
#excludeRE = ( req.query.member?('exclude') ? Regexp.new(req.query['exclude'].to_s) : nil )
#includeRE = ( req.query.member?('include') ? Regexp.new(req.query['include'].to_s) : nil )
excludeRE = nil
includeRE = nil
theDirData = Array.new
theDirDataU = Array.new # "Unsortable Entries"
Dir.entries(theFile).each do |d|
if (excludeRE && excludeRE.match(d)) then
next
end
if ( !(includeRE) || includeRE.match(d)) then
begin
dWithPath = (theFile + '/' + d).gsub(/\/+/, '/')
curFileLStat = File.lstat(dWithPath)
if (curFileLStat.nil?) then
STDOUT.puts("ERROR(mpmfs): Could not stat #{d.inspect}")
next
end
curFileStat = curFileLStat
if (curFileLStat.symlink?) then
curFileStat = File.stat(dWithPath)
if (curFileStat.nil?) then
STDOUT.puts("ERROR(mpmfs): Could not stat #{d.inspect}")
next
end
end
if ((d == '.') || (d == '..')) then
theDirDataU.push([ d, dWithPath, curFileLStat, curFileStat ])
else
theDirData.push([ d, dWithPath, curFileLStat, curFileStat ])
end
rescue
STDOUT.puts("ERROR(mpmfs): Could not stat #{d}")
end
end
end
if (sortCol == 'name') then
if(@@foldCaseInSort) then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[0].downcase <=> y[0].downcase ) }
else
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[0] <=> y[0] ) }
end
elsif (sortCol == 'mtime') then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[2].mtime <=> y[2].mtime ) }
elsif (sortCol == 'ctime') then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[2].ctime <=> y[2].ctime ) }
elsif (sortCol == 'size') then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[3].size <=> y[3].size ) }
elsif (sortCol == 'lnk') then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[3].nlink <=> y[3].nlink ) }
elsif (sortCol == 'group') then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[2].gid <=> y[2].gid ) }
elsif (sortCol == 'owner') then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[2].uid <=> y[2].uid ) }
elsif (sortCol == 'mode') then
theDirData = theDirDataU.sort { |x,y| x[0] <=> y[0] } + theDirData.sort { |x,y| numSortDir * ( x[2].mode <=> y[2].mode ) }
end
fileID = 0;
theDirData.each do |d, dWithPath, curFileLStat, curFileStat|
fileID += 1
dWithPathForURLs = CGI::escape(dWithPath)
if (d == '.') then
dWithPathForURLs = theFileForURLs;
end
# Immediate Reasons To Skip
if ( !(curFileLStat.symlink? || curFileLStat.directory? || curFileLStat.file?) )then
next
end
if( !(@@showSimlinks) && curFileLStat.symlink?) then
next
end
if( !(@@showUnreadable) && !(curFileLStat.readable?)) then
next
end
daLnkData = Hash.new
daRawData = Hash.new
# File Name
printableFileName = CGI::escapeHTML(octificateString(d, '') + ( curFileLStat.directory? ? '/' : '' ))
if (curFileLStat.readable? && (curFileLStat.file? || (curFileLStat.directory? && curFileLStat.executable?))) then
if ((d == '.') && @@provideFUNCshell) then
daLnkData['name'] = mka('click to run shell in this directory', "#{$bURL}/ss?&cwd=#{theFileForURLs}&return=#{curEscURL}", printableFileName, 'zap', '%s')
else
daLnkData['name'] = mka('click to view/download', "#{$bURL}/fs?dir=#{dWithPathForURLs}", printableFileName, 'zap', '%s')
end
else
daLnkData['name'] = printableFileName
end
daRawData['name'] = printableFileName
# Symlink Names & Links to same
if (curFileLStat.symlink?) then
symlinkTarget = File.readlink(dWithPath).gsub(/\/+/, '/')
symlinkTargetFQ = File.expand_path(symlinkTarget, theFile).gsub(/\/+/, '/')
symlinkTargetFQforURLs = CGI::escape((symlinkTargetFQ + ( curFileStat.directory? ? '/' : '' )).gsub(/\/+/, '/'))
printableSymlinkTarget = octificateString(symlinkTarget, '')
if (curFileStat.readable?) then
daLnkData['slink'] = '-> ' + mka('click to view/download', "#{$bURL}/fs?dir=#{symlinkTargetFQforURLs}", printableSymlinkTarget, 'zap', '%s')
else
daLnkData['slink'] = sprintf("-> %s", printableSymlinkTarget)
end
daRawData['slink'] = printableSymlinkTarget
end
# Mode string
fTypeChar = curFileLStat.ftype[0,1].sub('f', '-')
fModStr =
( (curFileLStat.mode & 0000400).zero? ? '-' : 'r' ) +
( (curFileLStat.mode & 0000200).zero? ? '-' : 'w' ) +
( (curFileLStat.mode & 0000100).zero? ? '-' : ( (curFileLStat.mode & 0004000).zero? ? 'x' : 's') ) +
( (curFileLStat.mode & 0000040).zero? ? '-' : 'r' ) +
( (curFileLStat.mode & 0000020).zero? ? '-' : 'w' ) +
( (curFileLStat.mode & 0000010).zero? ? '-' : ( (curFileLStat.mode & 0002000).zero? ? 'x' : 's') ) +
( (curFileLStat.mode & 0000004).zero? ? '-' : 'r' ) +
( (curFileLStat.mode & 0000002).zero? ? '-' : 'w' ) +
( (curFileLStat.mode & 0000001).zero? ? '-' : 'x' )
printableFileMode = CGI::escapeHTML(fTypeChar + fModStr)
if (theFileLStat.writable? && @@provideFUNCchmod) then
daLnkData['mode'] = mka('click to chmod', "#{$bURL}/#{@@faSrv}?cmd=chmod&ask=Y&cwd=#{theFileForURLs}&return=#{curEscURL}&file=#{dWithPathForURLs}", printableFileMode, 'out', '%-10s')
else
daLnkData['mode'] = printableFileMode
end
daRawData['mode'] = printableFileMode
# File Size (Carefull! We use curFileStat for this!)
if (curFileStat.directory? || curFileStat.file?) then
if (curFileStat.size > 1099511627776/@@cFactor) then
daLnkData['size'] = sprintf("%7.2fPB", curFileStat.size / 1099511627776.to_f)
elsif (curFileStat.size > 1073741824/@@cFactor) then
daLnkData['size'] = sprintf("%7.2fGB", curFileStat.size / 1073741824.to_f)
elsif (curFileStat.size > 1048576/@@cFactor) then
daLnkData['size'] = sprintf("%7.2fMB", curFileStat.size / 1048576.to_f)
elsif (curFileStat.size > 1024/@@cFactor) then
daLnkData['size'] = sprintf("%7.2fKB", curFileStat.size / 1024.to_f)
elsif (curFileStat.size >= 0) then
daLnkData['size'] = sprintf("%4dB ", curFileStat.size)
else
daLnkData['size'] = sprintf("%4d ", -1) # Sometimes file sizes are negative on Windows XP.... Duno why.
end
else
daLnkData['size'] = '-'
end
# File Ownership
owner = begin Etc.getpwuid(curFileLStat.uid).name rescue curFileLStat.uid.to_s end
group = begin Etc.getgrgid(curFileLStat.gid).name rescue curFileLStat.gid.to_s end
printableOwner = CGI::escapeHTML(owner)
printableGroup = CGI::escapeHTML(group)
if ((Process.uid == 0) && @@provideFUNCchown) then
daLnkData['owner'] = mka('click to chown', "#{$bURL}/#{@@faSrv}?cmd=chown&ask=Y&cwd=#{theFileForURLs}&return=#{curEscURL}&file=#{dWithPathForURLs}", printableOwner, 'out', '%-9s')
daLnkData['group'] = mka('click to chown', "#{$bURL}/#{@@faSrv}?cmd=chown&ask=Y&cwd=#{theFileForURLs}&return=#{curEscURL}&file=#{dWithPathForURLs}", printableGroup, 'out', '%-9s')
else
daLnkData['owner'] = sprintf("%-9s", printableOwner)
daLnkData['group'] = sprintf("%-9s", printableGroup)
end
daRawData['owner'] = printableOwner
daRawData['group'] = printableGroup
# Times
printableCTime = CGI::escapeHTML(sprintf("%04d-%02d-%02d_%02d:%02d:%02d",
curFileLStat.ctime.year, curFileLStat.ctime.month, curFileLStat.ctime.day,
curFileLStat.ctime.hour, curFileLStat.ctime.min, curFileLStat.ctime.sec))
daLnkData['ctime'] = printableCTime
daRawData['ctime'] = printableCTime
printableMTime = CGI::escapeHTML(sprintf("%04d-%02d-%02d_%02d:%02d:%02d",
curFileLStat.mtime.year, curFileLStat.mtime.month, curFileLStat.mtime.day,
curFileLStat.mtime.hour, curFileLStat.mtime.min, curFileLStat.mtime.sec))
daLnkData['mtime'] = printableMTime
if (theFileLStat.writable? && @@provideFUNCtouch) then
daLnkData['mtime'] = mka('click to touch',"#{$bURL}/#{@@faSrv}?cmd=touchT&ask=Y&cwd=#{theFileForURLs}&return=#{curEscURL}&file=#{dWithPathForURLs}", printableMTime, 'out', '%-19s')
end
daRawData['mtime'] = printableMTime
# The 2nd action -- Act (A) on file/directory
daLnkData['1'] = ''
if (theFileLStat.writable? && @@provideFUNCactA) then
daLnkData['1'] = mka('click to act on file', "#{$bURL}/#{@@faSrv}?cmd=ask&ask=Y&cwd=#{theFileForURLs}&return=#{curEscURL}&file=#{dWithPathForURLs}", 'A', 'zap', '%s')
end
# The 2nd action -- Hex dump (H) or act-in (I)
daLnkData['2'] = ''
if (curFileStat.file? && curFileStat.readable? && @@provideFUNCactH) then # Careful! We use curFileStat for a reason here..
daLnkData['2'] = mka('click to view hexdump', "#{$bURL}/hexdump?max=1024&color=true&cwd=#{theFileForURLs}&return=#{curEscURL}&file=#{dWithPathForURLs}", 'H', 'zap', '%s')
elsif(curFileStat.directory? && curFileStat.writable? && curFileStat.executable? && @@provideFUNCactI) then
daLnkData['2'] = mka('click to act in directory', "#{$bURL}/#{@@faSrv}?cmd=ask&ask=Y&cwd=#{dWithPathForURLs}&return=#{curEscURL}", 'I', 'zap', '%s')
end
# The 3rd action -- Download-Only (D) or Upload-into (U)
daLnkData['3'] = ''
if (curFileStat.file? && curFileStat.readable? && @@provideFUNCactD) then # Careful! We use curFileStat for a reason here..
daLnkData['3'] = mka('click to download file', "#{$bURL}/fs?dmt=d&dir=#{dWithPathForURLs}", 'D', 'zap', '%s')
elsif(curFileStat.directory? && ((curFileStat.executable? && curFileStat.writable?) || @@ignoreModeUploadLinks) && @@provideFUNCactU) then
daLnkData['3'] = mka('click to upload file to this directory', "#{$bURL}/upload?ask=Y&uptarget=#{dWithPathForURLs}&return=#{curEscURL}", 'U', 'zap', '%s')
end
# The 4rd action -- Download-Only (D) or Upload-into (U)
daLnkData['4'] = ''
if (@@provideFUNCactF && theColsToPrintNow.member?('4')) then # We put the box on files even when we may not be able to act because of file perms. TODO: FIX THIS!!!
daLnkData['4'] = "<input class=\"tinyFormBox\" title=\"click to mark file\" type=\"checkbox\" name=\"multifile#{fileID}\" value=\"#{dWithPathForURLs}\" />"
end
# Hard link count
if (curFileLStat.directory? || curFileLStat.file?) then
daLnkData['lnk'] = sprintf("%3d", curFileLStat.nlink)
daRawData['lnk'] = sprintf("%d", curFileLStat.nlink)
else
daLnkData['lnk'] = '-'
daRawData['lnk'] = '-'
end
# Finally, we update the directory list output
if ((theColsToFilterNow.map { |x,y| y.match(daRawData[x]) }).all?)
dirList += (theColsToPrintNow.map { |x| sprintf(@@colInfo[x]['pFmt'], daLnkData[x]) }).join(' ') + "\n"
end
end
dirList += (theColsToPrintNow.map { |x|
mka('Remove this Column', "#{curURL}&cdel=#{x}", @@colInfo[x]['lab'], 'out', @@colInfo[x]['pFmt'])
}).join(' ') + "\n"
dirList += "\n"
# Done with the list, close off the form.
if (@@provideFUNCactF && theColsToPrintNow.member?('4')) then
dirList +=
'<INPUT TYPE="hidden" NAME="cmd" VALUE="ask" />' +
'<INPUT TYPE="hidden" NAME="ask" VALUE="Y" />' +
'<INPUT TYPE="hidden" NAME="file" VALUE="/home/richmit/zogg" />' +
'<INPUT TYPE="hidden" NAME="return" VALUE="' + curEscURL + '" />' +
'<INPUT TYPE="hidden" NAME="dir" VALUE="' + theFile + '" />' +
'<INPUT TYPE="submit" NAME="submit" VALUE="Act on marked files">' +
'</FORM>'
end
dirList += sprintf("Change Sort Order (on %s) to: %s\n",
@@colInfo[sortCol]['lab'],
if (sortDir == 'inc') then
mka('Set sort order to decreasing', "#{curURL}&sdir=dec", 'decreasing', 'zap', '%s')
else
mka('Set sort order to increasing', "#{curURL}&sdir=inc", 'increasing', 'zap', '%s')
end
)
if (sortCol == 'name') then
dirList += sprintf("Sort case sensitivity: %s\n",
if (@@foldCaseInSort) then
mka('Set sort to case sensitive', "#{curURL}&sfld=false", 'case sensitive', 'zap', '%s')
else
mka('Set sort to case insensitive', "#{curURL}&sfld=true", 'case insensitive', 'zap', '%s')
end
)
end
if (@@colInfo.keys.length != theColsToPrintNow.length)
missingCols = @@colInfo.keys
missingCols.delete_if { |x| theColsToPrintNow.member?(x) }
dirList += "Display Column: "
dirList += ((missingCols.sort { |x,y| @@colInfo[x]['dOrd'] <=> @@colInfo[y]['dOrd'] }).map { |x|
mka("Add Column #{x}", "#{curURL}&cadd=#{x}", @@colInfo[x]['lab'], 'zap', @@colInfo[x]['pFmt'])
}).join(' ') + "\n"
dirList += sprintf("Columns: %s\n",mka('Reset displayed columns to defaults',
"#{curURL}&cols=" + (@@colInfo.keys.sort { |x,y| @@colInfo[x]['dOrd'] <=> @@colInfo[y]['dOrd'] }).join(','),
'show all', 'zap', '%s'))
end
if ( !(theColsToPrintNow.map { |x| x=='name' }).all? ) then
dirList += sprintf("Remove all columns except 'Name': %s\n", mka('Show just the Name Column', "#{curURL}&cols=name", 'NamesOnly', 'zap', '%s'))
end
if (!(theColsToFilterNow.empty?)) then
dirList += sprintf("Remove filter: %s\n",
theColsToFilterNow.keys.map { |x|
mka("Remove filter for column #{x}", "#{$bURL}/fs?dir=#{theFileForURLs}&fcol=#{x}", x, 'zap', '%s')
}.join(' '))
end
dirList +=
"\n" +
'<FORM METHOD="GET" ACTION="' + $bURL + '/fs"> ' +
' <INPUT TYPE="hidden" NAME="dir" VALUE="' + theFile + '" /> ' +
' <TABLE BORDER="1"><TR><TD> ' +
' <SELECT NAME="fcol"> ' +
' <OPTION VALUE="mode" >mode</OPTION> ' +
' <OPTION VALUE="owner" >owner</OPTION> ' +
' <OPTION VALUE="group" >group</OPTION> ' +
' <OPTION VALUE="ctime" >ctime</OPTION> ' +
' <OPTION VALUE="mtime" >mtime</OPTION> ' +
' <OPTION VALUE="name" SELECTED>name</OPTION> ' +
' </SELECT> ' +
' </TD><TD> ' +
' <INPUT TYPE="text" NAME="fval" VALUE="" /> ' +
' </TD><TD> ' +
' <INPUT TYPE="submit" NAME="submit" VALUE="Filter"> ' +
' </TD></TR></TABLE> ' +
'</FORM> '
if (@@showHelp) then
dirList += "\nMagic links:\n"
dirList += " Delete a column: Click a column title AT THE BOTTOM of the directory listing \n"
dirList += " Change sort dir: Click current sort column AT THE TOP of the directory listing \n"
dirList += " Change sort col: Click a column title AT THE TOP of the directory listing \n"
if (@@provideFUNCshell) then
dirList += " Run shell in CWD: Click on the link for the directory named with a single period (.) \n"
end
dirList += " Browse a directory: Click on the directory name \n"
dirList += " View file: Click on the file name \n"
end
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "Directory Listing: #{theFile}", nil, nil, dirList, nil)
elsif (theFileLStat.file?) then
begin
open(theFile, "r") do |file|
resp.body = file.read()
end
rescue
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "ERROR: FileBrowserService: Could not read file: #{theFile.inspect}", nil, nil, nil, nil)
end
# Now we figure out if it is a download-only or forced-text. Most browsers will do the "right thing" even when told the
# thing is "octet-stream" if the browser thinks it knows better. For example, jpeg images will get viewed by the
# browser if it thinks it can display the thing even if it has Content-Type of 'application/octet-stream'. This is
# probably desirable. OTOH, this will often keep us from downloading binaries and the like into the browser for it to
# attempt to display. :)
fileSize = resp.body.size
fileMimeType = ( req.query.member?('dmt') ? req.query['dmt'].to_s : nil )
if (fileMimeType.nil?) then
if(fileSize > 10*1048576) then # over 10MB, and it is a 'download only'
fileMimeType = 'application/x-download'
else
if (tmp = /\.([A-Za-z0-9]+)$/.match(theFile)) then
if (@@ext2mimeType.member?(tmp[1].downcase)) then
fileMimeType = @@ext2mimeType[tmp[1].downcase]
end
end
if( !(fileMimeType)) then
if (/^#!.{0,100}(sh|csh|ksh|bash|tcsh|perl|ruby|python)/.match(resp.body)) then
fileMimeType = 'text/plain'
end
end
# If we don't have a mime type or if it is text, then we make sure we have only text or set the mime type to
# octet-stream The logic here is tricky -- especially the state of fileMimeType -- careful.
if( (fileMimeType.nil?) || (fileMimeType.match(/^text\//)) ) then
numESCandBSP = 0
numChars = 0
if (@@doFileContentCheckForMimeType) then
resp.body.each_byte do |theChar|
numChars += 1
if ( !(((theChar >= 32) && (theChar <= 126)) || (theChar == 9) || (theChar == 10) || (theChar == 13))) then
if (fileMimeType && ((theChar == 8) || (theChar == 27))) then
numESCandBSP += 1
else
STDOUT.puts("INFO(mpmfs): Found non-ASCII in suspected ASCII file: #{theChar}.")
fileMimeType = 'application/x-download'
break
end
end
end
end
if ( fileMimeType.nil? ) then
fileMimeType = 'text/plain'
end
# If ESC and BSP make up more than 10% of a text file, it is a download-only
if( (numESCandBSP * 100) > (numChars * @@okPercentESCnBSPinTextFile) && (/^text\//.match(fileMimeType)) ) then
STDOUT.puts("INFO(mpmfs): Too many (#{numESCandBSP}:#{numChars})ESC||BSP in suspected ASCII file -- download only!")
fileMimeType = 'application/x-download'
end
end
end
else
if (fileMimeType.downcase == 'd') then
fileMimeType = 'application/x-download'
end
end
STDOUT.puts("INFO(mpmfs): Mime Type for '#{theFileOct}' is '#{fileMimeType}'")
resp['Content-Type'] = fileMimeType
# Now we set the file name for downloads.
#resp['Content-Disposition'] = "attachment; filename=#{File.basename(theFile)}" # attachment makes doc "download only" with firefox
resp['Content-Disposition'] = "filename=#{File.basename(theFile)}"
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: FileBrowserService: Unsupported file type', nil, nil, nil, nil)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# The System Info Service
class SysInfoService < WEBrick::HTTPServlet::AbstractServlet
@@commandsProvided =
begin
case
when RUBY_PLATFORM =~ /darwin/i
[[ 'hostname', 'hostname' ],
[ 'ComputerName', '/usr/sbin/scutil --get ComputerName' ],
[ 'uname', 'uname -a' ],
[ 'uptime', 'uptime' ],
[ 'df', 'df -k' ],
[ 'mount', 'mount' ],
[ 'domainname', 'domainname' ],
[ 'who', 'who' ],
[ 'last', 'last | head -40' ],
[ 'top', 'top -l 1 -o cpu | head -50' ]]
when RUBY_PLATFORM =~ /solaris/i
[[ 'hostname', 'hostname' ],
[ 'uname', 'uname -a' ],
[ 'uptime', 'uptime' ],
[ 'df', 'df -k' ],
[ 'mount', 'mount' ],
[ 'who', 'who' ],
[ 'last', 'last | head -40' ],
[ 'prstat (proc)', 'prstat -s cpu -n 50 1 1' ],
[ 'prstat (user)', 'prstat -s cpu -n 50 -t 1 1' ],
[ 'top', 'top | head -50' ]]
when RUBY_PLATFORM =~ /linux/i
[[ 'hostname', 'hostname' ],
[ 'uname', 'uname -a' ],
[ 'cpuinfo', 'cat /proc/cpuinfo' ],
[ 'redhat-release', 'cat /etc/redhat-release' ],
[ 'uptime', 'uptime' ],
[ 'df', 'df -k' ],
[ 'mount', 'mount' ],
[ 'who', 'who' ],
[ 'last', 'last | head -40' ],
[ 'top', 'top -b | head -50' ]]
else
[[ 'hostname', 'hostname' ],
[ 'uname', 'uname -a' ],
[ 'uptime', 'uptime' ],
[ 'df', 'df -k' ],
[ 'mount', 'mount' ],
[ 'who', 'who' ],
[ 'last', 'last | head -40' ],
[ 'top', 'top | head -50' ]]
end
end
def SysInfoService.commandsProvided
return @@commandsProvided
end
def do_GET(req, resp)
logAction('SysInfoService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if ( !(req.query)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: SYSTEM INFO (UNKNOWN REASON)', nil, nil, nil, nil)
return
end
goLink = ( req.query['return'] ? mka('click to jump back to file browser', CGI::escapeHTML(req.query['return']), 'Return', 'zap', '%s') : '' )
refreshValue = 0
if ( req.query.member?('refresh') && !(req.query['refresh'].empty?) && (/^[0-9]+$/.match(req.query['refresh'])) ) then
refreshValue = req.query['refresh'].to_i
end
askHTML =
'<FORM METHOD="get" ACTION="' + $bURL + '/sysInfo?' + '"><table BORDER="1"><tr><td><table BORDER="0" CELLSPACING="0" CELLPADDING="2"> '
if ( (req.query.member?('return')) && (req.query['return'])) then
askHTML +=
' <INPUT TYPE="hidden" NAME="return" VALUE="' + CGI::escapeHTML(req.query['return']) + '" /> '
end
askHTML +=
'<tr><td align="right">command:</td><td align="left"><SELECT NAME="cmd" VALUE="" /> '
if ( !(req.query.member?('cmd')) || req.query['cmd'].empty? ) then
askHTML +=
' <OPTION SELECTED>all</OPTION> '
else
' <OPTION>all</OPTION> '
end
@@commandsProvided.each do |commandURL, command|
if (req.query['cmd'].to_s == commandURL) then
askHTML +=
' <OPTION SELECTED>' + commandURL + '</OPTION> '
else
askHTML +=
' <OPTION>' + commandURL + '</OPTION> '
end
end
askHTML +=
' </SELECT> ' +
' </td></tr> ' +
'<tr><td align="right">refresh:</td><td align="left"><INPUT TYPE="text" SIZE="5" NAME="refresh" VALUE="' + refreshValue.to_s + '" /></td></tr> ' +
'<tr><td colspan="2" align="right"><INPUT TYPE="submit"></td></tr> ' +
'</table></td></tr></table></FORM> '
metaInfo = ''
if (refreshValue>0) then
metaInfo = '<meta http-equiv="refresh" content="' + refreshValue.to_s + '">'
end
if ( !(req.query.member?('cmd')) || (req.query['cmd']=='all') ) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, metaInfo, "SYSTEM INFO", nil, askHTML, nil, goLink)
elsif (@@commandsProvided.assoc(req.query['cmd'])) then
commandURL = req.query['cmd']
command = (@@commandsProvided.assoc(commandURL))[1]
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, metaInfo, "SYSTEM INFO: #{commandURL}", "SYSTEM INFO: #{command}",
nil, CGI::escapeHTML(octificateString(`#{command}`, ' \t\n')),
askHTML + '<br>' + goLink)
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "ERROR: SYSTEM INFO: UNKNOWN COMMAND", nil, nil, nil, goLink)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Provide the file upload service
class FileUploadService < WEBrick::HTTPServlet::AbstractServlet
def do_POST(req, resp)
logAction('FileUploadService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if ( !(req.query)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (UNKNOWN REASON)', nil, nil, nil, nil)
return
end
goLink = ( req.query['return'] ? mka('click to jump back to file browser', CGI::escapeHTML(req.query['return']), 'Return', 'zap', '%s') : '' )
['uploadfile', 'uptarget'].each do |parmName|
if ( !(req.query.member?(parmName))) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "ERROR: File Upload Failure (Missing Parameter: #{parmName})", nil, nil, nil, goLink)
return
end
end
if (req.query['uploadfile'].empty?) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (Empty or Missing File)', nil, nil, nil, goLink)
return
end
if ( !(File.directory?(req.query['uptarget']))) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (Invalid Target Directory)', nil, nil, nil, goLink)
return
end
if ( !(File.writable?(req.query['uptarget']))) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (Target Directory Not Writable)', nil, nil, nil, goLink)
return
end
# Figure out the file name for the file we are getting uploaded to us.
uploadFileName = nil
uploadFileNameWonky = nil
if ((req.query['uploadfile'].filename.class != String) || req.query['uploadfile'].filename.empty?) then
nowTime = Time.now
uploadFileName = sprintf("mpmfsUpload_%04d%02d%02d%02d%02d%02d", nowTime.year, nowTime.month, nowTime.day,
nowTime.hour, nowTime.min, nowTime.sec, nowTime.zone)
else
uploadFileName = req.query['uploadfile'].filename
end
uploadTarget = (req.query['uptarget'] + '/').gsub(/\/+/, '/')
uploadFullPathAndFileName = uploadTarget + uploadFileName
if (File.exists?(uploadFullPathAndFileName)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (Would clobber existing file!)', nil, nil, nil, goLink)
return
end
begin
open(uploadFullPathAndFileName, "w") do |file|
file.write(req.query['uploadfile'])
end
if (File.exists?(uploadFullPathAndFileName)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil,
"SUCCESS: File Upload Worked(#{uploadFileName})!" +
'<BR>' +
'MD5: ' + Digest::MD5.hexdigest(req.query['uploadfile']) +
'<BR>' +
'SHA1: ' + Digest::SHA1.hexdigest(req.query['uploadfile']),
nil,
mka('Browse the directory we just uploaded into',
"#{$bURL}/fs?dir=#{CGI::escapeHTML(uploadTarget)}",
"Browse: #{CGI::escapeHTML(uploadTarget)}", 'zap', '%s'),
nil, goLink)
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (Post File Write)', nil, nil, nil, goLink)
end
rescue
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (File Write)', nil, nil, nil, goLink)
end
end
def do_GET(req, resp)
logAction('FileUploadService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if(req.query) then
goLink = ( req.query['return'] ? mka('click to jump back to file browser', CGI::escapeHTML(req.query['return']), 'Return', 'zap', '%s') : '' )
uploadHTML =
'<FORM METHOD="post" ENCTYPE="multipart/form-data" ACTION="' + $bURL + '/upload"> ' +
' <TABLE BORDER="1"><TR><TD> ' +
' Upload <INPUT TYPE="file" NAME="uploadfile" VALUE="File To Upload" /> ' +
' to the directory <INPUT TYPE="text" NAME="uptarget" VALUE="' + (req.query['uptarget'] || 'directory_name') + '" /> ' +
' <INPUT TYPE="submit" NAME="submit" VALUE="Upload File"> ' +
' </TD></TR></TABLE> ' +
'</FORM> '
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "File Upload", nil, uploadHTML, nil, goLink)
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: File Upload Failure (UNKNOWN REASON)', nil, nil, nil, nil)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Ruby File Action Service
class RubyFileActionService < WEBrick::HTTPServlet::AbstractServlet
@@cmdInfo = {
'rmRF' => { 'sCmd' => 'FileUtils.rm_rf', 'rParm' => [ 'file' ], 'win?' => true, 'sO' => 1, 'des' => 'Remove File' },
'rmR' => { 'sCmd' => 'FileUtils.rm_r', 'rParm' => [ 'file' ], 'win?' => true, 'sO' => 2, 'des' => 'Remove File' },
'rm' => { 'sCmd' => 'FileUtils.rm', 'rParm' => [ 'file' ], 'win?' => true, 'sO' => 3, 'des' => 'Remove File' },
'rmdir' => { 'sCmd' => 'FileUtils.rmdir', 'rParm' => [ 'file' ], 'win?' => true, 'sO' => 4, 'des' => 'Remove Directory' },
'chmod' => { 'sCmd' => 'mjrChmod', 'rParm' => [ 'arg1', 'file' ], 'win?' => false, 'sO' => 5, 'des' => 'Change Modes' },
'chown' => { 'sCmd' => 'FileUtils.chown', 'rParm' => [ 'arg1', 'arg2', 'file' ], 'win?' => false, 'sO' => 6, 'des' => 'Change Owner and Group' },
'mv' => { 'sCmd' => 'FileUtils.mv', 'rParm' => [ 'file', 'arg1' ], 'win?' => true, 'sO' => 7, 'des' => 'Copy File' },
'cp' => { 'sCmd' => 'FileUtils.cp', 'rParm' => [ 'file', 'arg1' ], 'win?' => true, 'sO' => 8, 'des' => 'Move File' },
'mkdir' => { 'sCmd' => 'FileUtils.mkdir', 'rParm' => [ 'file' ], 'win?' => true, 'sO' => 9, 'des' => 'Make Directory' },
'touch' => { 'sCmd' => 'FileUtils.touch', 'rParm' => [ 'file' ], 'win?' => true, 'sO' => 10, 'des' => 'Touch File' },
'touchT' => { 'sCmd' => 'mjrTouchT', 'rParm' => [ 'arg1', 'file' ], 'win?' => true, 'sO' => 11, 'des' => 'Touch With Explicit Time' },
'mjrDigest' => { 'sCmd' => 'mjrDigest', 'rParm' => [ 'file' ], 'win?' => true, 'sO' => 12, 'des' => 'File Digest (MD5/SHA1)' }
}
def RubyFileActionService.cmdInfo
return @@cmdInfo
end
def do_GET(req, resp)
logAction('RubyFileActionService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if ( !(req.query)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: RubyFileActionService Failure (UNKNOWN REASON)', nil, nil, nil, nil)
return
end
goLink = ( req.query['return'] ? mka('click to jump back to file browser', CGI::escapeHTML(req.query['return']), 'Return', 'zap', '%s') : '' )
metaInfo = ''
if ( !(goLink.empty?)) then
if (req.query['bt']) then
metaInfo = '<meta http-equiv="refresh" content="' + req.query['bt'] +';url=' + CGI::escapeHTML(req.query['return']) + '">'
end
end
askCommand = false
if ( !(req.query.member?('cmd'))) then
if (req.query['ask'] == 'Y') then
askCommand = true
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: RubyFileActionService Failure (Missing Parameter: cmd)', nil, nil, nil, goLink)
return
end
end
if ( !(@@cmdInfo.keys.member?(req.query['cmd']))) then
if (req.query['ask'] == 'Y') then
askCommand = true
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: RubyFileActionService Failure (UNKNOWN COMMAND)', nil, nil, nil, goLink)
return
end
end
if(askCommand) then
askHTML = '<H2>Select A Ruby File Action</H2>' + "\n\n"
(@@cmdInfo.keys.sort {|a,b| @@cmdInfo[a]['sO'] <=> @@cmdInfo[b]['sO'] }).each do |cmd|
if ( (RUBY_PLATFORM =~ /mswin/) && !(@@cmdInfo[cmd]['win?']) ) then
next
end
askHTML += " "
daLink = "#{$bURL}/rfa?cmd=#{cmd}"
req.query.each do |pkey, pval|
if (pkey != 'cmd') then
daLink += "&#{pkey}=" + CGI::escape(pval)
end
end
daLinkLab = @@cmdInfo[cmd]['des'] + sprintf(" (<kbd>%s", @@cmdInfo[cmd]['sCmd']).strip + '</kbd>)'
askHTML += mka(daLinkLab, daLink, daLinkLab, 'zap', '%s') + "<br>\n"
end
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "RubyFileActionService", nil, askHTML, nil, goLink)
return
end
if ( (req.query['ask'] == 'Y') || (@@cmdInfo[req.query['cmd']]['rParm'].map { |parm| !(req.query.member?(parm)) }).any? ) then
askHTML =
'<FORM METHOD="get" ACTION="' + $bURL + '/rfa' + '"> ' + "\n" +
' <TABLE BORDER="1" CELLSPACING="0" CELLPADDING="1"><TR><TD> ' + "\n" +
' <INPUT TYPE="hidden" NAME="cmd" VALUE="' + req.query['cmd'] + '" /> ' + "\n"
if (req.query.member?('return')) then
askHTML +=
' <INPUT TYPE="hidden" NAME="return" VALUE="' + CGI::escapeHTML(req.query['return']) + '" /> ' + "\n"
end
askHTML +=
' <INPUT TYPE="hidden" NAME="ask" VALUE="N" /> ' + "\n" +
@@cmdInfo[req.query['cmd']]['sCmd'] + ' '
@@cmdInfo[req.query['cmd']]['rParm'].each do |parm|
askHTML +=
' <INPUT TYPE="text" SIZE="30" NAME="' + parm + '" VALUE="' + CGI::escapeHTML(req.query[parm] || '') + '" /> ' + "\n"
end
askHTML +=
' <INPUT TYPE="submit" NAME="added" VALUE="submit"> ' + "\n"
if (req.query.member?('cwd')) then
askHTML +=
' </TD></TR> ' + "\n" +
' <TR><TD align="right"> ' + "\n" +
'cwd: <INPUT TYPE="text" NAME="cwd" SIZE="30" MAXLENGTH="200" VALUE="' + CGI::escapeHTML(req.query['cwd']) + '" /> ' + "\n"
end
askHTML +=
' </TD></TR></TABLE> ' + "\n" +
'</FORM> ' + "\n"
askTITLE = 'Ruby File Action: ' + @@cmdInfo[req.query['cmd']]['des'] +
sprintf(" (<kbd>%s", @@cmdInfo[req.query['cmd']]['sCmd']).strip + ')'
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, askTITLE, nil, askHTML, nil, goLink)
else
# Build command
commandArgs = @@cmdInfo[req.query['cmd']]['rParm'].map { |x| req.query[x].to_s}
retVal=nil
begin
eval("FileUtils.cd(req.query['cwd'] || '/') do retVal=#{@@cmdInfo[req.query['cmd']]['sCmd']}(*commandArgs); end")
rescue
retVal = 'FAILURE'
end
prdyCmd = "#{@@cmdInfo[req.query['cmd']]['sCmd']}(#{commandArgs.join(', ')})"
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, metaInfo,
"RubyFileActionService: Result", nil, nil,
"CWD: #{(req.query['cwd'] || '/').inspect}\nCMD: #{CGI::escapeHTML(prdyCmd.inspect)}\nResult: #{CGI::escapeHTML(retVal.inspect)}", goLink)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# File Action Service
class UnixFileActionService < WEBrick::HTTPServlet::AbstractServlet
@@cmdInfo = {
'rmRF' => { 'sCmd' => 'rm', 'rParm' => [ 'file' ], 'fArg' => '-rf', 'sO' => 1, 'des' => 'Remove File' },
'rmR' => { 'sCmd' => 'rm', 'rParm' => [ 'file' ], 'fArg' => '-r', 'sO' => 2, 'des' => 'Remove File' },
'rm' => { 'sCmd' => 'rm', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 3, 'des' => 'Remove File' },
'rmdir' => { 'sCmd' => 'rmdir', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 4, 'des' => 'Remove Directory' },
'chmod' => { 'sCmd' => 'chmod', 'rParm' => [ 'arg1', 'file' ], 'fArg' => '', 'sO' => 5, 'des' => 'Change Modes' },
'chown' => { 'sCmd' => 'chown', 'rParm' => [ 'arg1', 'file' ], 'fArg' => '', 'sO' => 6, 'des' => 'Change Owner' },
'mv' => { 'sCmd' => 'mv', 'rParm' => [ 'file', 'arg1' ], 'fArg' => '', 'sO' => 7, 'des' => 'Move File' },
'cp' => { 'sCmd' => 'cp', 'rParm' => [ 'file', 'arg1' ], 'fArg' => '', 'sO' => 7, 'des' => 'Copy File' },
'zip' => { 'sCmd' => 'zip', 'rParm' => [ 'arg1', 'file' ], 'fArg' => '-r', 'sO' => 8, 'des' => 'Zip File/Directory' },
'unzip' => { 'sCmd' => 'unzip', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 9, 'des' => 'UnZip File/Directory' },
'tar' => { 'sCmd' => 'tar', 'rParm' => [ 'arg1', 'file' ], 'fArg' => 'cvf', 'sO' => 11, 'des' => 'Tar Directory' },
'untar' => { 'sCmd' => 'tar', 'rParm' => [ 'file' ], 'fArg' => 'xvf', 'sO' => 12, 'des' => 'UnTar File' },
'gzip' => { 'sCmd' => 'gzip', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 13, 'des' => 'Gzip File' },
'gunzip' => { 'sCmd' => 'gunzip', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 14, 'des' => 'Gunzip File' },
'bzip2' => { 'sCmd' => 'bzip2', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 15, 'des' => 'Bzip2 File' },
'bunzip2' => { 'sCmd' => 'bunzip2', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 16, 'des' => 'Bunzip2 File' },
'compress' => { 'sCmd' => 'compress', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 17, 'des' => 'Compress File' },
'uncompress' => { 'sCmd' => 'uncompress', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 18, 'des' => 'Uncompress File' },
'mkdir' => { 'sCmd' => 'mkdir', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 19, 'des' => 'Make Directory' },
'touchT' => { 'sCmd' => 'touch', 'rParm' => [ 'arg1', 'file' ], 'fArg' => '-t', 'sO' => 21, 'des' => 'Touch with explicit time' },
'touchR' => { 'sCmd' => 'touch', 'rParm' => [ 'arg1', 'file' ], 'fArg' => '-r', 'sO' => 22, 'des' => 'Touch with refrence file' },
'touch' => { 'sCmd' => 'touch', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 23, 'des' => 'Touch File' },
'ps2pdf' => { 'sCmd' => 'ps2pdf', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 24, 'des' => 'Convert to PDF' },
'enscript' => { 'sCmd' => 'enscript', 'rParm' => [ 'arg1', 'file' ], 'fArg' => '-o', 'sO' => 25, 'des' => 'Convert to PS' },
'ls' => { 'sCmd' => 'ls', 'rParm' => [ 'file' ], 'fArg' => '-l', 'sO' => 26, 'des' => 'List a File/Directory' },
'file' => { 'sCmd' => 'file', 'rParm' => [ 'file' ], 'fArg' => '', 'sO' => 27, 'des' => 'Guess file type' },
'md5' => { 'sCmd' => 'openssl', 'rParm' => [ 'file' ], 'fArg' => 'md5', 'sO' => 28, 'des' => 'Compute file MD5' },
'sha1' => { 'sCmd' => 'openssl', 'rParm' => [ 'file' ], 'fArg' => 'sha1', 'sO' => 29, 'des' => 'Compute file SHA1' }
}
def UnixFileActionService.cmdInfo
return @@cmdInfo
end
def do_GET(req, resp)
logAction('UnixFileActionService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if ( !(req.query)) then
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: UnixFileActionService Failure (UNKNOWN REASON)', nil, nil, nil, nil)
return
end
goLink = ( req.query['return'] ? mka('click to jump back to file browser', CGI::escapeHTML(req.query['return']), 'Return', 'zap', '%s') : '' )
metaInfo = ''
if ( !(goLink.empty?)) then
if (req.query['bt']) then
metaInfo = '<meta http-equiv="refresh" content="' + req.query['bt'] +';url=' + CGI::escapeHTML(req.query['return']) + '">'
end
end
askCommand = false
if ( !(req.query.member?('cmd'))) then
if (req.query['ask'] == 'Y') then
askCommand = true
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: UnixFileActionService Failure (Missing Parameter: cmd)', nil, nil, nil, goLink)
return
end
end
if ( !(@@cmdInfo.keys.member?(req.query['cmd']))) then
if (req.query['ask'] == 'Y') then
askCommand = true
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: UnixFileActionService Failure (UNKNOWN COMMAND)', nil, nil, nil, goLink)
return
end
end
if(askCommand) then
askHTML = '<H2>Select A File Action</H2>' + "\n\n"
(@@cmdInfo.keys.sort {|a,b| @@cmdInfo[a]['sO'] <=> @@cmdInfo[b]['sO'] }).each do |cmd|
askHTML += " "
daLink = "#{$bURL}/ufa?cmd=#{cmd}"
req.query.each do |pkey, pval|
if (pkey != 'cmd') then
daLink += "&#{pkey}=" + CGI::escape(pval)
end
end
daLinkLab = @@cmdInfo[cmd]['des'] + sprintf(" (<kbd>%s", "#{@@cmdInfo[cmd]['sCmd']} #{@@cmdInfo[cmd]['fArg']}").strip + '</kbd>)'
askHTML += mka(daLinkLab, daLink, daLinkLab, 'zap', '%s') + "<br>\n"
end
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, "File Action Service", nil, askHTML, nil, goLink)
return
end
if ( (req.query['ask'] == 'Y') || (@@cmdInfo[req.query['cmd']]['rParm'].map { |parm| !(req.query.member?(parm)) }).any? ) then
askHTML =
'<FORM METHOD="get" ACTION="' + $bURL + '/ufa' + '"> ' + "\n" +
' <TABLE BORDER="1" CELLSPACING="0" CELLPADDING="1"><TR><TD> ' + "\n" +
' <INPUT TYPE="hidden" NAME="cmd" VALUE="' + req.query['cmd'] + '" /> ' + "\n"
if (req.query.member?('return')) then
askHTML +=
' <INPUT TYPE="hidden" NAME="return" VALUE="' + CGI::escapeHTML(req.query['return']) + '" /> ' + "\n"
end
askHTML +=
' <INPUT TYPE="hidden" NAME="ask" VALUE="N" /> ' + "\n" +
@@cmdInfo[req.query['cmd']]['sCmd'] + ' ' + @@cmdInfo[req.query['cmd']]['fArg']
@@cmdInfo[req.query['cmd']]['rParm'].each do |parm|
askHTML +=
' <INPUT TYPE="text" SIZE="30" NAME="' + parm + '" VALUE="' + CGI::escapeHTML(req.query[parm] || '') + '" /> ' + "\n"
end
askHTML +=
' <INPUT TYPE="submit" NAME="added" VALUE="submit"> ' + "\n"
if (req.query.member?('cwd')) then
askHTML +=
' </TD></TR> ' + "\n" +
' <TR><TD align="right"> ' + "\n" +
'cwd: <INPUT TYPE="text" NAME="cwd" SIZE="30" MAXLENGTH="200" VALUE="' + CGI::escapeHTML(req.query['cwd']) + '" /> ' + "\n"
end
askHTML +=
' </TD></TR></TABLE> ' + "\n" +
'</FORM> ' + "\n"
askTITLE = 'File Action: ' + @@cmdInfo[req.query['cmd']]['des'] +
sprintf(" (<kbd>%s", "#{@@cmdInfo[req.query['cmd']]['sCmd']} #{@@cmdInfo[req.query['cmd']]['fArg']}").strip + ')'
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, askTITLE, nil, askHTML, nil, goLink)
else
# Build command
commandArgs = [ @@cmdInfo[req.query['cmd']]['sCmd'] ]
if ( !(@@cmdInfo[req.query['cmd']]['fArg'].empty?)) then
commandArgs.push(@@cmdInfo[req.query['cmd']]['fArg'])
end
addArgs = @@cmdInfo[req.query['cmd']]['rParm'].map { |x| req.query[x]}
if (addArgs.length > 0) then
commandArgs += addArgs
end
# Fork and fire it off
sysRet = 0
sysOut = ''
spReadme, spWriteme = IO.pipe
aPID = Kernel.fork do
$stdout = spWriteme
$stderr = spWriteme
spReadme.close
puts("<b>META DATA</b>")
puts("Command Array: " + CGI::escapeHTML(octificateString(commandArgs.inspect, ' \t')))
if (req.query['cwd']) then
puts("CWD Input: " + CGI::escapeHTML(octificateString(req.query['cwd'], ' \t')) + "\n\n")
else
puts("CWD Input: nil\n\n")
end
puts("<b>RUBY MSG</b>")
if (req.query['cwd']) then
if (Dir.chdir(req.query['cwd']) != 0) then
exit(1)
end
end
commandArgs = commandArgs.map { |x| x.to_s }
si,so,se = popen3(*commandArgs)
puts("\n\n")
puts("<b>STDOUT:</b>\n" + CGI::escapeHTML(octificateString(so.read, ' \t\n\r')) + "\n\n")
puts("<b>STDERR:</b>\n" + CGI::escapeHTML(octificateString(se.read, ' \t\n\r')) + "\n\n")
exit($?.exitstatus)
end
# Wait for it to finish
if aPID
Process.wait(aPID)
sysRet = $?.exitstatus
spWriteme.close
sysOut = spReadme.read
else
sysRet = -1
end
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, metaInfo,
"UnixFileActionService: #{CGI::escapeHTML(octificateString(commandArgs[0], ' \t'))}",
nil, nil, sysOut, goLink)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
class ShellService < WEBrick::HTTPServlet::AbstractServlet
@@cmdHistory = Array.new
@@cmdHash = Hash.new
def do_GET(req, resp)
logAction('ShellService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
if (req.query) then
goLink = ( req.query['return'] ? mka('click to jump back to file browser', CGI::escapeHTML(req.query['return']), 'Return', 'zap', '%s') : '' )
theCmd = (req.query['cmd'] || '')
historyMode = (req.query.member?('history') && (req.query['history'] != '-- SHELL HISTORY --'))
if (historyMode) then
theCmd = req.query['history']
end
askHTML =
'<FORM NAME="daform" METHOD="get" ACTION="' + $bURL + '/ss' + '"> ' + "\n" +
' <TABLE BORDER="0"><TR><TD><b>CWD</b></td><td><b>CMD</b></td></tr> ' + "\n" +
' <tr> ' + "\n" +
' <td><INPUT TYPE="text" NAME="cwd" VALUE="' + CGI::escapeHTML(req.query['cwd'] || '/') + '" /><br></td> ' + "\n" +
' <td><INPUT TYPE="text" NAME="cmd" VALUE="' + CGI::escapeHTML(theCmd) + '" /><br></td> ' + "\n" +
' <td><INPUT TYPE="submit" NAME="submit" VALUE="submit"></td> ' + "\n" +
' </tr> ' + "\n" +
' <tr><td colspan="2" align="right"> ' + "\n" +
' Raw Output: <INPUT TYPE="checkbox" NAME="raw" VALUE="Y"> ' + "\n" +
' </td></tr> ' + "\n"
if ((theCmd.length>0) && (theCmd != '-- SHELL HISTORY --') && !(@@cmdHash.member?(theCmd))) then
@@cmdHistory.push(theCmd)
@@cmdHash[theCmd] = 1
end
if (@@cmdHistory.length > 0) then
theOnchangeScript =
"if(document.daform.history.selectedIndex != 0) {" +
" cmd.value=history.options[history.selectedIndex].text;" +
" document.getElementById('historywarning').innerHTML = 'Note: Some special characters may not be preserved when recalled from CMD history';" +
" document.daform.history.selectedIndex = 0;" +
"}"
askHTML +=
' <tr><td align="right">CMD History:</td> ' + "\n" +
' <td colspan="2" align="left"> ' + "\n" +
' <SELECT NAME="history" ONCHANGE="' + CGI::escapeHTML(theOnchangeScript) + '"> ' + "\n" +
' <OPTION SELECTED>-- SHELL HISTORY --</OPTION> ' + "\n"
@@cmdHistory.reverse_each do |hcmd|
askHTML +=
' <OPTION>' + CGI::escapeHTML(hcmd) + '</OPTION> ' + "\n"
end
askHTML +=
' </SELECT> ' + "\n" +
' </td> ' + "\n" +
' </tr> ' + "\n"
end
askHTML +=
'</table></FORM> '
if (@@cmdHistory.length > 0) then
askHTML +=
'<br><div id="historywarning"> ' + "\n" +
' ' + CGI::escapeHTML('Without javascript, select from the CMD history and submit to populate CMD') + ' ' + "\n" +
'</div><br> ' + "\n"
end
if ( !(historyMode) && req.query.member?('cmd') && req.query.member?('cwd')) then
theCommand = "cd \"#{( req.query['cwd'] ? req.query['cwd'] : '/' )}\" ; #{theCmd}"
theOut = `#{theCommand} 2>&1`
askHTML += "<BR><H1>Result: #{CGI::escapeHTML(octificateString(theCommand, ' \t'))}</H1>\n"
if (req.query && (req.query['raw'] == 'Y')) then
resp.body = theOut # We do NOT CGI::escapeHTML here as we are sending raw text!!!
resp['Content-Type'] = 'text/plain'
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML("onload=\"document.getElementById('historywarning').innerHTML = ' ';\"",
nil, "Shell Service", nil, askHTML, CGI::escapeHTML(theOut), goLink)
end
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML("onload=\"document.getElementById('historywarning').innerHTML = ' ';\"",
nil, "Shell Service", nil, askHTML, nil, goLink)
end
else
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'ERROR: Shell Service (UNKNOWN REASON)', nil, nil, nil, nil)
end
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# The root service (/) -- home page
class RootService < WEBrick::HTTPServlet::AbstractServlet
def do_GET(req, resp)
logAction('RootService', req.methods.member?('query') && req.query)
MySimpleAuth.doAuth(req, resp, 'mpmfs')
curUnameRE = Regexp.new(":#{Etc.getlogin}:")
bodyHead =
' <HR> ' + "\n" +
' <H2>File Server Bookmarks</H2> ' + "\n"
quickFileSysLinks = [[ 'ROOT', '/', 'all' ],
[ '/home/richmit', '/home/richmit', ':richmit:' ],
[ '/home/jrichli', '/home/jrichli', ':richmit:jrichli:' ],
[ '/Users/Shared', '/Users/Shared', 'all' ],
[ '/data/richmit', '/data/richmit', ':richmit:' ],
[ '/data/lsf', '/data/lsf', ':richmit:' ],
[ '/data/devlsf', '/data/devlsf', ':richmit:' ],
[ '/data/cmetrics', '/data/cmetrics', ':richmit:' ],
[ '/data/cmetrics2', '/data/cmetrics2', ':richmit:' ],
[ '/data/smetrics', '/data/smetrics', ':richmit:' ],
[ '/Volumes', '/Volumes', 'all' ],
[ '/Volumes/remote2', '/Volumes/remote2', ':richmit:' ],
[ '/Volumes/remote7', '/Volumes/remote7', ':richmit:' ],
[ '/Volumes/LAMB01', '/Volumes/LAMB01', ':richmit:' ],
[ '/Volumes/richmit', '/Volumes/richmit', ':richmit:' ],
[ '/etc', '/etc', 'all' ],
[ '/tmp', '/tmp', 'all' ],
[ '/var/logs', '/var/logs', 'all' ],
[ '/var/log/messages', '/var/log/messages', 'all' ],
[ '/var/logs', '/var/logs', 'all' ]]
if (RUBY_PLATFORM =~ /mswin/) then
quickFileSysLinks = Array.new
'A'.upto('Z') do |dLet|
quickFileSysLinks.push([ "Drive #{dLet}:", "#{dLet}:\\", 'all' ])
end
elsif (RUBY_PLATFORM =~ /cygwin/) then
'A'.upto('Z') do |dLet|
quickFileSysLinks.push([ "Drive #{dLet}:", "/cygdrive/#{dLet.downcase}/", 'all' ])
end
end
if (ENV.member?('HOME') && File.exists?(ENV['HOME']) && File.directory?(ENV['HOME'])) then
quickFileSysLinks.push([ "Home Directory(env)", ENV['HOME'], 'all' ])
end
begin
homeDir = Etc.getpwnam(Etc.getlogin).dir.to_s
quickFileSysLinks.push([ "Home Directory(pwdb)", homeDir, 'all' ])
rescue
# Do nothing
end
unkQuickDirs = Hash.new
quickFileSysLinks.each do |name, dir, meta|
if ( !(unkQuickDirs.member?(dir))) then
unkQuickDirs[dir] = true
if (FileTest.directory?(dir)) then
if ((meta == 'all') || curUnameRE.match(meta)) then
bodyHead +=
' ' + mka('Browse directory', "#{$bURL}/fs?dir=#{CGI::escape(dir)}", name, 'zap', '%s') + '</a><BR>' + "\n"
end
end
end
end
if ( !(RUBY_PLATFORM =~ /mswin/)) then
bodyHead += # ------------------------------------------------------------------------------------------------------------------------------
' <HR> ' + "\n" +
' <H2>UNIX File Actions</H2> ' + "\n"
(UnixFileActionService.cmdInfo.keys.sort {|a,b| UnixFileActionService.cmdInfo[a]['sO'] <=> UnixFileActionService.cmdInfo[b]['sO'] }).each do |cmd|
bodyHead += " "
daLink = "#{$bURL}/ufa?cmd=#{cmd}"
daLinkLab = UnixFileActionService.cmdInfo[cmd]['des']
daLinkLab += sprintf(" (<kbd>%s", "#{UnixFileActionService.cmdInfo[cmd]['sCmd']} #{UnixFileActionService.cmdInfo[cmd]['fArg']}").strip + '</kbd>)'
bodyHead += mka(daLinkLab, daLink, daLinkLab, 'zap', '%s') + "<br>\n"
end
end
bodyHead += # ------------------------------------------------------------------------------------------------------------------------------
' <HR> ' + "\n" +
' <H2>Ruby File Actions</H2> ' + "\n"
(RubyFileActionService.cmdInfo.keys.sort {|a,b| RubyFileActionService.cmdInfo[a]['sO'] <=> RubyFileActionService.cmdInfo[b]['sO'] }).each do |cmd|
bodyHead += " "
daLink = "#{$bURL}/rfa?cmd=#{cmd}"
daLinkLab = RubyFileActionService.cmdInfo[cmd]['des']
daLinkLab += sprintf(" (<kbd>%s", "#{RubyFileActionService.cmdInfo[cmd]['sCmd']} #{RubyFileActionService.cmdInfo[cmd]['fArg']}").strip + '</kbd>)'
bodyHead += mka(daLinkLab, daLink, daLinkLab, 'zap', '%s') + "<br>\n"
end
bodyHead += # ------------------------------------------------------------------------------------------------------------------------------
' <HR> ' + "\n" +
' <H2>File Uploader</H2> ' + "\n"
[[ 'Upload File', 'upload' ]
].each do |name, url|
bodyHead +=
' ' + mka(name, "#{$bURL}/#{url}", name, 'zap', '%s') + '</a><BR>' + "\n"
end
if ( !(RUBY_PLATFORM =~ /mswin/)) then
bodyHead += # ------------------------------------------------------------------------------------------------------------------------------
' <HR> ' + "\n" +
' <H2>Shell Services</H2> ' + "\n" +
' ' + mka('Shell Access', "#{$bURL}/ss", 'Interactive Shell', 'zap', '%s') + '<BR>' + "\n"
end
if ( !(RUBY_PLATFORM =~ /mswin/)) then
bodyHead += # ------------------------------------------------------------------------------------------------------------------------------
' <HR> ' + "\n" +
' <H2>System Info Commands Available</H2> ' + "\n" +
' ' + mka('Everything', "#{$bURL}/sysInfo?cmd=all", 'EVERYTHING', 'zap', '%s') + '<BR>' + "\n"
SysInfoService.commandsProvided.each do |cmdURL, cmd|
bodyHead +=
' ' + mka(cmdURL, "#{$bURL}/sysInfo?cmd=#{cmdURL}", cmdURL, 'zap', '%s') + "\n"
if (cmdURL =~ /(top|prstat)/) then
bodyHead +=
' ' + mka('Auto refresh top', "#{$bURL}/sysInfo?refresh=5&cmd=#{cmdURL}", '(auto refresh)', 'zap', '%s') + '<BR>' + "\n"
else
bodyHead +=
'<BR> ' + "\n"
end
end
end
bodyHead += # ------------------------------------------------------------------------------------------------------------------------------
' <HR> ' + "\n" +
' <H2>MPMFS Instance Information </H2> ' + "\n" +
' ' + mka('MPMFS Access Logs', "#{$bURL}/log?log=a", 'Access Logs', 'zap', '%s') + '<BR> ' + "\n" +
' ' + mka('MPMFS Custom Logs', "#{$bURL}/log?log=c", 'Custom Logs', 'zap', '%s') + '<BR> ' + "\n" +
' ' + mka('MPMFS Info', "#{$bURL}/info", 'Info', 'zap', '%s') + '<BR> ' + "\n" +
' ' + mka('Shutdown MPMFS Server', "#{$bURL}/srvctrl?action=stop&ask=Y", 'Shutdown', 'zap', '%s') + '<BR> ' + "\n"
(resp.body, resp['Content-Type']) = genSimpleMsgHTML(nil, nil, 'Mitch Richling\'s Poor Man\'s File Server', nil, bodyHead, nil, nil)
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# This service provides a favicon
class FaviconService < WEBrick::HTTPServlet::AbstractServlet
def do_GET(req, resp)
#MySimpleAuth.doAuth(req, resp, 'mpmfs')
resp['Content-Type'] = 'image/vnd.microsoft.icon' # or use: 'image/x-icon'
resp.body =
"\0\0\001\0\001\0\020\020\0\0\0\0\0\0h\005\0\0\026\0\0\0(\0\0\0\020\0\0\0 \0\0\0\001\0" +
"\b\0\0\0\0\0@\001\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\0\0\0\377" +
("\0"*1014) +
"\002\0\0\0\0\0\0\0\0\002\002\002\002\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\002\0\0\002" +
"\0\0\0\0\0\0\0\0\0\0\0\0\002\0\0\002\0\0\0\0\0\0\0\0\0\0\0\0\002\0\0\002\002\002\002" +
"\002\0\0\0\0\002\002\002\002\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\0" +
"\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\0\0\0\002\0\0\0\0\002\0\0\002\002\002\002\002\002" +
"\0\0\0\002\002\002\002\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\002\0\0\0\002\0\002\0\0\0" +
"\0\002\0\0\0\002\002\0\0\0\002\0\002\0\0\0\0\002\0\0\0\002\002\0\0\0\002\0\002\002" +
"\002\0\0\002\0\0\0\002\002\0\002\0\002\0\002\0\0\002\0\002\0\002\0\002\002\002\0\002" +
"\002\0\002\0\0\002\0\002\002\0\002\002\002\0\0\0\002\0\002\002\002\0\0\002\0\0\0\002" +
"\277\303\0\0\277\275\0\0\277\375\0\0\277\375\0\0\203\303\0\0\277\277\0\0\277\277\0\0" +
"\277\275\0\0\201\303\0\0\377\377\0\0u\356\0\0u\356\0\0tn\0\0U\252\0\0%\244\0\0tn\0\0"
end
end
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Create the server object, configure it, and fire it up.
STDOUT.puts("INFO(mpmfs): Requested File Server Information:\n")
STDOUT.puts("INFO(mpmfs): Bind Address: #{$bindAdd}\n")
STDOUT.puts("INFO(mpmfs): Bind Port: #{$bindPort}\n")
STDOUT.puts("INFO(mpmfs): Auth: #{( doAuth ? 'Requested' : 'Not Requested' )}\n")
STDOUT.puts("INFO(mpmfs): Mode: #{( browseOnlyMode ? 'Browse Only' : 'Full Read/Write' )}\n")
STDOUT.puts("INFO(mpmfs)): Starting up web server now...")
aServer = nil
if (doSSL) then
aServer = HTTPServer.new(:Port => $bindPort,
:BindAddress => $bindAdd,
:SSLEnable => true,
:SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE,
:SSLCertName => [ ["C","US"], ["O","127.0.0.1"], ["CN", "127.0.0.1"] ]
)
else
aServer = HTTPServer.new(:Port => $bindPort, :BindAddress => $bindAdd,
:Logger => Log.new($stdout, Log::DEBUG),
:AccessLog => [ [ $aLog, AccessLog::COMBINED_LOG_FORMAT ] ]
)
end
if (!(osUsrAndPass.empty?)) then
osUsrAndPass.each do |u, p|
if (p =~ /^([a-z0-9]{40}|[A-Z0-9]{40})$/) then
MySimpleAuth.addOrUpdateAccount(u, p, false)
else
MySimpleAuth.addOrUpdateAccount(u, p, true)
STDERR.puts("WARNING(mpmws): Password didn't look like a SHA1 hash. Hashed it: '#{u}:HIDDEN'")
end
end
end
MySimpleAuth.setAuthOn(doAuth)
if (browseOnlyMode) then
FileBrowserService.roMode()
aServer.mount("/", FileBrowserService)
else
aServer.mount("/", RootService)
aServer.mount("/upload", FileUploadService)
aServer.mount("/stest", ServiceTesterService)
aServer.mount("/rfa", RubyFileActionService)
if ( !(RUBY_PLATFORM =~ /mswin/)) then
aServer.mount("/sysInfo", SysInfoService)
aServer.mount("/ufa", UnixFileActionService)
aServer.mount("/ss", ShellService)
end
end
aServer.mount("/fs", FileBrowserService)
aServer.mount("/hexdump", HexdumpFileService)
aServer.mount("/log", LogReporterService)
aServer.mount("/info", ServerInfoService)
aServer.mount("/favicon.ico", FaviconService)
aServer.mount("/srvctrl", ServiceControl)
# Trap server shutdown signals
if (RUBY_PLATFORM =~ /mswin/) then # cygwin is
['INT' , 'TERM'].each do |sig|
trap(sig) { aServer.shutdown }
end
else
['HUP', 'QUIT', 'INT', 'TERM', 'USR1', 'USR2'].each do |sig|
trap(sig) { aServer.shutdown }
end
end
# Start the server up
aServer.start
|