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
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
|
Title Share_1 - IBM CONFIDENTIAL
; $SALUT (0,36,41,44)
include SHAREHDR.INC
;
; Label: "The DOS SHARE Utility"
; "Version 4.00 (C) Copyright 1988 Microsoft"
; "Licenced Material - Program Property of Microsoft"
;
;******************* END OF SPECIFICATIONS *************************************
extrn fnm:near, rsc:near, rmn:near, cps:near, ofl:near, sle:near, interr:near
NAME Sharer
.xlist
.xcref
INCLUDE DOSSYM.INC
include dpl.asm
.cref
.list
AsmVars <IBM, Installed>
Installed = TRUE ; for installed version
OFF Macro reg,val
IF installed
mov reg,OFFSET val
ELSE
mov si,OFFSET DOSGROUP:val
ENDIF
ENDM
ERRNZ Macro x
IF x NE 0
%out ERRNZ failed
ENDIF
ENDM
; if we are installed, then define the base code segment of the sharer first
IF Installed
Share SEGMENT PARA PUBLIC 'SHARE'
Share ENDS
; include the rest of the segment definitions for normal msdos
; We CANNOT include dosseg because start is not declared para in that file
; $SALUT (4,9,17,36)
START SEGMENT PARA PUBLIC 'START'
START ENDS
CONSTANTS SEGMENT WORD PUBLIC 'CONST'
CONSTANTS ENDS
DATA SEGMENT WORD PUBLIC 'DATA'
DATA ENDS
TABLE SEGMENT BYTE PUBLIC 'TABLE'
TABLE ENDS
CODE SEGMENT BYTE PUBLIC 'CODE'
CODE ENDS
LAST SEGMENT PARA PUBLIC 'LAST'
LAST ENDS
DOSGROUP GROUP START,CONSTANTS,DATA,TABLE,CODE,LAST
ELSE
include dosseg.asm
ENDIF
DATA SEGMENT WORD PUBLIC 'DATA'
Extrn ThisSFT:DWORD ; pointer to SFT entry
Extrn User_ID:WORD
Extrn Proc_ID:WORD
Extrn WFP_START:WORD
Extrn BytPos:DWORD
extrn OpenBuf:BYTE
extrn user_in_ax:WORD
IF debug
Extrn BugLev:WORD
Extrn BugTyp:WORD
include bugtyp.asm
ENDIF
DATA ENDS
; if we are not installed, then the code here is just part of the normal
; MSDOS code segment otherwise, define our own code segment
.sall
IF NOT INSTALLED
CODE SEGMENT BYTE PUBLIC 'CODE'
ASSUME SS:DOSGROUP,CS:DOSGROUP
ELSE
Share SEGMENT PARA PUBLIC 'SHARE'
ASSUME SS:DOSGROUP,CS:SHARE
ENDIF
extrn MFT:BYTE
extrn skip_check:BYTE
include mft.inc
PUBLIC FreLock,Serial
IF installed
Frelock DW ? ; FWA of lock free list
ELSE
Frelock DW OFFSET DOSGROUP:lck8 ; FWA of lock free list
ENDIF
Serial DW 0 ; serial number
DS_Org dw 0 ;an000;DS on entry to routine
ZERO EQU 0
ONE EQU 1
FRAME struc
SavedBP dw ?
RetOFF dw ?
Parm_1 dw ?
Parm_2 dw ?
FRAME ends
; $SALUT (4,4,9,41)
BREAK <Sharer - MultiProcess File Sharer>
;******************* START OF SPECIFICATIONS ***********************************
;
; MSDOS MFT Functions
;
; The Master File Table (MFT) associates the cannonicalized pathnames,
; lock records and SFTs for all files open on this machine.
;
; These functions are supplied to maintain the MFT and extract
; information from it. All MFT access should be via these routines so
; that the MFT structure can remain flexible.
;
;******************* END OF SPECIFICATIONS *************************************
BREAK <Mft_enter - Make an MFT entry and check access>
;******************* START OF SPECIFICATIONS ***********************************
;
; mft_enter - make an entry in the MFT
;
; mft_enter is called to make an entry in the MFT.
; mft_enter checks for a file sharing conflict:
; No conflict:
; A new MFT entry is created, or the existing one updated,
; as appropriate.
; Conflicts:
; The existing MFT is left alone. Note that if we had to
; create a new MFT there cannot be, by definition, sharing
; conflicts.
; If no conflict has been discovered, the SFT list for the file is
; checked for one that matches the following conditions:
;
; If mode == 70 then
; don't link in SFT
; increment refcount
; If mode&sfIsFCB and userids match and process ids match then
; don't link in SFT
;
; ENTRY ThisSFT points to an SFT structure. The sf_mode field
; contains the desired sharing mode.
; WFP_Start is an offset from DOSGroup of the full pathname for
; the file
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; (DS) = (SS) = DOSGroup
; EXIT 'C' clear if no error'
; 'C' set if error
; (ax) = error code
; USES ALL but DS
;
;******************* END OF SPECIFICATIONS *************************************
Procedure mft_enter,NEAR
; int 3
nop
nop
EnterCrit critShare
DOSAssume SS <DS>,"MFT_Enter entry"
ASSUME ES:NOTHING,SS:DOSGROUP
push ds
; find or make a name record
mov si,WFP_Start ; (DS:SI) = FBA of file name
mov al,1 ; allow creation of MFT entry
push es
ASSUME DS:NOTHING
call FNM ; find or create name in MFT
pop es
mov ax,error_sharing_buffer_exceeded
jc ent9 ; not enough space
;
; (bx) = fwa name record
;
lds si,ThisSFT
call ASC ; try to add to chain
; As noted above, we don't have to worry about an "empty" name record
; being left if ASC refuses to add the SFT - ASC cannot refuse if we had
; just created the MFT...
; return.
;
; 'C' and (Ax) setup appropriately
ent9: pop ds
LeaveCrit critShare
ret
EndProc mft_enter
BREAK <MftClose - Close out an MFT for given SFT>
;******************* START OF SPECIFICATIONS ***********************************
;
; MFTclose
;
; MFTclose(SFT)
;
; MFTclose removes the SFT entry from the MFT structure. If this was
; the last SFT for the particular file the file's entry is also removed
; from the MFT structure. If the sharer is installed after some
; processing has been done, the MFT field of the SFTs will be 0; we must
; ignore these guys.
;
; If the sft indicates FCB, we do nothing special. The SFT behaves
; EXACTLY like a normal handle.
;
; If the sft indicates mode 70 then we do nothing special. These are
; normal HANDLES.
;
; Note that we always care about the SFT refcount. A refcount of 1
; means that the SFT is going idle and that we need to remove the sft
; from the chain.
;
; ENTRY (ES:DI) points to an SFT structure
; (DS) = (SS) = DOSGroup
; EXIT NONE
; USES ALL but DS, ES:DI
;
;******************* END OF SPECIFICATIONS *************************************
Procedure MFTclose,NEAR
; int 3
nop
nop
EnterCrit critShare
DOSAssume SS,<DS>,"MFTClose entry"
ASSUME ES:NOTHING
mov ax,es:[di].sf_MFT
fmt TypShare,LevShEntry,<"MFTClose by $x:$x of $x:$x ($x)\n">,<User_ID,Proc_id,ES,DI,AX>
or ax,ax
jz mcl10 ; No entry for it, ignore (carry clear)
push ds
push es
push di
;;;call CSL ; clear SFT locks ;AC008;
ASSUME DS:NOTHING
mov ax,es:[di].sf_ref_count ; (ax) = ref count
;
; We need to release information in one of two spots. First, when the SFT has
; a ref count of 0. Here, there are no more referents and, thus, no sharing
; record need be kept. Second, the ref count may be -1 indicating that the
; sft is being kept but that the sharing information is no longer needed.
; This occurs in creates of existing files, where we verify the allowed
; access, truncate the file and regain the access. If the truncation
; generates an error, we do NOT want to have the access locked down.
;
OR AX,AX
jz mcl85 ; ref count is 0 - don't dechain
inc ax ; -1 + 1 = 0. Busy sft.
jnz mcl9
mcl85:
call CSL ; clear SFT locks ;AC008;
call RSC ; remove sft from chain
jnz mcl9 ; not the last sft for this name
call RMN ; remove name record
mcl9:
pop di ; restore regs for exit
pop es
pop ds
mcl10:
LeaveCrit critShare
ret
EndProc MFTclose
BREAK <MftClU - Close out all MFTs for given UID>
;******************* START OF SPECIFICATIONS ***********************************
;
; MFTcloseU
;
; MFTcloseM(UID)
;
; MFTcloseM removes all entrys for user UID from the MFT structure. We
; walk the MFT structure closing all relevant SFT's for the user.
; We do it the dumb way, iterating closes until the SF ref count is
; 0.
;
; ENTRY User_ID = 16-bit user id of issuer
; (SS) + DOSGroup
; EXIT 'C' clear
; USES ALL
;
;******************* END OF SPECIFICATIONS *************************************
Procedure MFTclU,NEAR
; int 3
nop
nop
ASSUME DS:NOTHING,ES:NOTHING,SS:DOSGROUP
EnterCrit critShare
mov ax,User_ID
fmt TypShare,LevShEntry,<"\nCloseUser $x\n">,<AX>
sub bx,bx ; insensitive to PID
sub dx,dx
invoke BCS ; bulk close the SFTs
LeaveCrit critShare
return
EndProc MFTclU
BREAK <MftCloseP - Close out all MFTs for given UID/PID>
;******************* START OF SPECIFICATIONS ***********************************
;
; MFTcloseP
;
; MFTcloseP(PID, UID)
;
; MFTcloseP removes all entrys for process PID on machine MID from the
; MFT structure. We walk the MFT structure closing all relevant
; SFT's. Do it the dumb way by iterating closes until the SFTs
; disappear.
;
; ENTRY (SS) = DOSGROUP
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; EXIT 'C' clear
; USES ALL
;
;******************* END OF SPECIFICATIONS *************************************
Procedure MFTcloseP,NEAR
; int 3
nop
nop
ASSUME DS:NOTHING,ES:NOTHING,SS:DOSGROUP
EnterCrit critShare
mov ax,User_ID
mov bx,-1
mov dx,Proc_ID
fmt TypShare,LevShEntry,<"\nClose UID/PID $x:$x\n">,<AX,DX>
call BCS ; Bulk close the SFTs
LeaveCrit critShare
ret
EndProc MFTcloseP
BREAK <MftCloN - Close file by name>
;******************* START OF SPECIFICATIONS ***********************************
;
; MFTcloseN
;
; MFTcloseN(name)
;
; MFTcloseN removes all entrys for the given file from the MFT
; structure.
;
; NOTE: this function is used infrequently and need not be fast.
; (although for typical use it's not all that slow...)
;
; ENTRY DS:SI point to dpl.
; (SS) = DOSGroup
; EXIT 'C' clear if no error
; 'C' set if error
; AX = error_path_not_found if not currently open
; USES ALL
;
;******************* END OF SPECIFICATIONS *************************************
Procedure MFTcloN,NEAR
; int 3
nop
nop
ASSUME SS:DOSGROUP,ES:NOTHING,DS:NOTHING
EnterCrit critShare
MOV DX,[SI.DPL_DX]
MOV DS,[SI.DPL_DS]
mov si,dx ; (DS:SI) = fwa name
sub al,al ; don't create if not found
push ds
push si
call FNM ; find name in MFT
mov ax,error_path_not_found ; assume error
jc mclo9 ; not found exit
; Name was found. Lets yank the SFT entrys one at a time.
mclo1: les di,[bx].mft_sptr ; (ES:DI) = SFT address
mov WORD PTR ThisSFT,di
mov WORD PTR ThisSFT+2,es ; point to SFT
cmp es:[di].sf_ref_count,1
jnz mclo15
call CPS
mclo15:
Context DS
IF installed
MOV AX,(multDOS SHL 8) + 1
INT 2FH
ELSE
call DOS_Close
ENDIF
mclo2:
ASSUME DS:NOTHING
pop si
pop ds
push ds
push si
sub al,al ; don't create an entry
call FNM ; find the name gain
jnc mclo1 ; got still more
clc
; exit. 'C' and (ax) setup
;
; (TOS+2:TOS) = address of ASCIZ string
mclo9: pop si ; clean stack
pop ds
LeaveCrit critShare
ret
EndProc MFTcloN
BREAK <Set_Mult_Block - Try to set multiple locks>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: Set_Mult_Block - Set Multiple Block Locks
;
; FUNCTION: Set_Mult_Block sets a lock on 1 or more specified ranges
; of a file. An error is returned if any lock range conflicts
; with another. Ranges of Locks are cleared via Clr_Mult_Block.
;
; In DOS 3.3 only one lock range could be set at a time using
; Set_Block. For DOS 4.00 this routine will replace Set_Block
; in the jump table and will make repeated calls to Set_Block
; in order to process 1 or more lock ranges.
;
; NOTE: - This is an all new interface to IBMDOS
;
; INPUT: (AL) = 0 - lock all
; = 80 - lock write
; (CX) = the number of lock ranges
; (DS:DX) = pointer to the range list
; (ES:DI) = SFT address
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; (SS) = DOSGroup
;
; OUTPUT: Lock records filled in for all blocks specified
;
; REGISTERS USED: ALL but DS
; (NOT RESTORED)
;
; LINKAGE: IBMDOS Jump Table
;
; EXTERNAL Invoke: Load_Regs, Set_Block, Clr_Block
; REFERENCES:
;
; NORMAL 'C' clear if no error
; EXIT:
;
; ERROR 'C' set if error
; EXIT: (ax) = error code
; ('error_lock_violation' if conflicting locks)
;
; CHANGE 04/15/87 - First release
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START Set_Mult_Block
;
; count = start_count
; search till count = 0
; invoke Load_Regs
; invoke Set_Block
; exit if error
; clear_count = start_count - current_count
; loop till clear_count = 0
; invoke Load_Regs
; invoke Clr_Block
; leave if error
; end loop
; set error status
; orelse
; endloop
; set successful status
; endsrch
; if error status
; load return code
; endif
; return
;
; END Set_Mult_Block
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure Set_Mult_Block,NEAR
; PUSH DS ;ICE
; push bx ;ICE
; push ax ;ICE
; mov bx,0140H ;ICE
; xor ax,ax ;ICE
; mov ds,ax ;ICE
; mov ax,word ptr ds:[bx] ;ICE
; mov word ptr ds:[bx],ax ;ICE
; pop ax ;ICE
; pop bx ;ICE
; POP DS ;ICE
EnterCrit critShare ; ;AN000;
ASSUME ES:NOTHING,DS:NOTHING ; ;AN000;
; set up for loop
; WE HAVE: (from IBMDOS) | WE NEED: (for Set_Block)
; (AL) = 0 - lock all | (BX) = 0 lock all operations
; = 80- lock write | = 1 lock write operations
; (CX) = the number of lock ranges | (CX:DX) = offset of area
; (DS:DX) = pointer to the range list | (SI:AX) = length of area
; (ES:DI) = SFT address | (ES:DI) = SFT address
; int 3
nop
nop
mov DS_Org,ds ;an000;save entry DS
Context DS ; ;AN000;
CMP CX,01h ;DO WE HAVE A COUNT? ;AN000;
;; $if ae ; if the count was valid ;AN000;
; $if e ; if the count was valid ;AC006;
JNE $$IF1
;; PUSH CX ; count = start_count ;AN000;
;; PUSH DX ; save pointer to range list ;AN000;
MOV BP,DX ; save current index into list ;AN000;
;; AND AX,0080H ; clear high byte and be sure low is ;AN000;
; set if applicable
;; ROL AL,1 ; move high bit to bit 0
;; MOV BX,AX ; SET UP TYPE OF LOCK ;AN000;
;; $do ; loop till count = 0 ;AN000;
;; cmp cx,00 ;an000;see if at end
;; $leave e ;an000;exit if at end
;; push cx ;an000;save cx - our counter
;; push di ;an000;save di - our SFT pointer
call load_regs ;an000;load the registers for call
; to set_block
call set_block ;an000;set the lock block
;; pop di ;an000;restore our SFT pointer
;; pop cx ;an000;restore cx - our counter
;; $leave c ;an000;on error exit loop
;; dec cx ;an000;decrease counter
;; $enddo ;an000;end loop
;; $if c ;an000;if an error occurred
;; pop dx ;an000;restore range list pointer
;; pop ax ;an000;obtain original count
;; sub ax,cx ;an000;determine how many locks set
;; mov cx,ax ;an000;set the loop counter with count
;; mov bp,dx ;an000;set bp to point to range list
;; $do ;an000;while cx not = 0
;; cmp cx,00 ;an000;at end?
;; $leave e ;an000;yes, exit
;; push cx ;an000;save cx - our counter
;; push di ;an000;save di - our SFT pointer
;; call load_regs ;an000;load the registers for call
; to clr_block
;; call clr_block ;an000;clear the locks
;; pop di ;an000;restore our SFT pointer
;; pop cx ;an000;restore cx - our counter
;; $leave c ;an000;on error exit
;; dec cx ;an000;decrease counter
;; $enddo ;an000;
;; stc ;an000;signal an error occurred
;; $else ;an000;no error occurred in locking
;; pop ax ;an000;clear off the stack
;; pop ax ;an000; to balance it
;; clc ;an000;signal no error occurred
;; $endif ;an000;
; $else ;an000;cx was 0 - this is an error
JMP SHORT $$EN1
$$IF1:
stc ;an000;signal an error occurred
; $endif ; ;an000;
$$EN1:
; $if c ; if there was an error ;AN000;
JNC $$IF4
MOV AX,error_lock_violation ; load the return code ;AN000;
; $endif ; endif there was an error ;AN000;
$$IF4:
LeaveCrit critShare ; ;AN000;
ret ; return - all set ;AN000;
EndProc Set_Mult_Block
BREAK <Load_Regs - Load Registers for ?_Block call>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: Load_Regs - Load Registers for ?_Block calls
;
; FUNCTION: This subroutine loads the High and Low Offsets and the
; High and Low lengths for Lock ranges from the Range List.
;
; INPUT: (DS_Org:PB) - Range list entry to be loaded
;
; OUTPUT: (DX) - Low Offset
; (CX) - High Offset
; (AX) - Low Length
; (SI) - High Length
;
; REGISTERS USED: AX CX DX BP SI
; (NOT RESTORED)
;
; LINKAGE: Called by: Set_Mult_Block, Clr_Mult_Block
;
; EXTERNAL none
; REFERENCES:
;
; NORMAL none
; EXIT:
;
; ERROR none
; EXIT:
;
; CHANGE 04/15/87 - first release
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START Load_Regs
;
; recover index into range list
; advance pointer to next entry
; load DX - Low Offset
; load CX - High Offset
; load AX - Low Length
; load SI - High Length
; return
;
; END Load_Regs
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure Load_Regs,NEAR
push ds ; save our DS ;an000;
mov ds,DS_Org ; get range list segment ;an000;
mov si,bp ; recover pointer ;AN000;
ADD BP,08h ; move to next entry in list ;AN000;
MOV DX,[SI] ; low position ;AN000;
MOV CX,[SI+2] ; high position ;AN000;
MOV AX,[SI+4] ; low length ;AN000;
MOV SI,[SI+6] ; high length ;AN000;
pop ds ; restore DS ;an000;
ret ; ;AN000;
EndProc Load_Regs
BREAK <Clr_Mult_Block - Try to clear multiple locks>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: Clr_Mult_Block - Clear Multiple Block Locks
;
; FUNCTION: Clr_Mult_Block removes the locks on 1 or more specified
; ranges of a file. An error is returned if any lock range
; does not exactly match. Ranges of Locks are set via
; Set_Mult_Block.
;
; In DOS 3.3 only one lock range could be cleared at a time
; using Clr_Block. For DOS 4.00 this routine will replace
; Clr_Block in the jump table and will make repeated calls
; to Set_Block in order to process 1 or more lock ranges.
;
; NOTE: - This is an all new interface to IBMDOS
; - an unlock all 'lock all' request will unlock both
; 'lock all' and 'lock write'.
; - an unlock all 'lock write' request will not unlock
; 'lock all's. It will only unlock 'lock write's.
; (if you can understand the above statement,
; understanding the code will be easy!)
;
; INPUT: (AL) = 0 - lock all
; = 80- lock write
; (CX) = the number of lock ranges - NB: all if -1 ***
; (DS:DX) = pointer to the range list
; (ES:DI) = SFT address
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; (SS) = DOSGroup
;
; OUTPUT: Lock records filled in for all blocks specified
;
; REGISTERS USED: ALL but DS
; (NOT RESTORED)
;
; LINKAGE: IBMDOS Jump Table
;
; EXTERNAL Invoke: Load_Regs, Set_Block, Clr_Block, Clr_List
; REFERENCES:
;
; NORMAL 'C' clear if no error
; EXIT:
;
; ERROR 'C' set if error
; EXIT: (ax) = error code
; ('error_lock_violation' if conflicting locks)
;
; CHANGE 04/15/87 - First release
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START Clr_Mult_Block
;
; if count is valid and
; if file (SFT) is 'shared' then
; if count = all
; find first RLR
; loop till all RLR cleared
; if PROC_ID matches and
; if UID matches and
; if SFT matches then
; if ulocking lock_all or
; if this RLR is lock_write
; clear the lock
; endif
; endif
; find next RLR
; end loop
; else
; invoke Clr_List
; endif
; set successful status
; else
; set error status
; endif
; if error
; load return code
; endif
;
; ret
;
; END Clr_Mult_Block
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure clr_mult_block,NEAR
lock_all equ 0h
; PUSH DS ;ICE
; push bx ;ICE
; push ax ;ICE
; mov bx,0140H ;ICE
; xor ax,ax ;ICE
; mov ds,ax ;ICE
; mov ax,word ptr ds:[bx] ;ICE
; mov word ptr ds:[bx],ax ;ICE
; pop ax ;ICE
; pop bx ;ICE
; POP DS ;ICE
EnterCrit critShare ; ;AN000;
ASSUME ES:NOTHING,DS:NOTHING ; ;AN000;
; int 3
nop
nop
mov DS_Org,DS ;an000;save entry DS
Context DS ; ;AN000;
CMP CX,01h ; do we have a count? ;AN000;
;; $IF AE,AND ; IF A VALID COUNT
; $IF E,AND ; IF A VALID COUNT ;AC006;
JNE $$IF6
cmp es:[di].sf_mft,0 ; is this SFT shared? ;AN000;
; $IF NE ; AND IF FILE IS 'SHARED' THEN
JE $$IF6
; WE HAVE: (from IBMDOS) | WE NEED:
; (AL) = 0 - lock all | (AX) = 0 lock all operations
; = 80- lock write | = 1 lock write operations
; (CX) = - 1 (unlock all locks) | (DS) = CS
; | (DS:DI) = previous RLR
; | (DS:SI) = current RLR
; (ES:DI) = current SFT |
;; and ax,0080h ;be sure it is set right (mask 80 bit) ;AC002;
; existing interface
;; rol al,1 ;put high bit in bit 0 ;AC002;
;; CMP CX,-1h ; ;AN000;
;; $IF E ; IF unlock all locks then ;AN000;
;; push cs ; ;AN000;
;; pop ds ; ;AN000;
;; mov cx,di ; ES:CX is the SFT ;AN004;
; ASSUME ds:nothing
;; mov si,es:[di].sf_mft ; DS:SI points to MFT ;AN000;
;; lea di,[si].mft_lptr ; DS:DI = addr of ptr to lock record ;AN000;
;; mov si,[di] ; DS:SI = address of 1st lock record ;AN000;
;; $DO ; loop through the RLR's ;AN000;
; DS:DI = points to previous RLR or MFT if no RLR.
; DS:SI = points to current RLR
; ES:CX = SFT address
; AX = lock type
;; and si,si ; are we at the end of the chain? ;AN000;
;; $LEAVE Z ; we'er done with CF = 0 ;AN000;
;; mov bp,[si].rlr_pid ; get PROC_ID ;AN000;
;; cmp bp,PROC_ID ; is it ours? ;AN000;
;; $IF E,AND ; ;AN000;
;; mov bp,es ; ;AN000;
;; cmp bp,WORD PTR [si].rlr_sptr+2 ; ;AC004;
;; $IF E,AND ; ;AN000;
;; cmp cx,WORD PTR [si].rlr_sptr ; ;AC004;
;; mov si,[di] ; restore pointer to current (using ;AN000;
; previous)
;; $IF E ; if it is ours ;AN000;
; this is it. its OURS !
;; cmp ax,lock_all ; ;AN000;
;; $IF E,OR ; if unlocking all or ;AN000;
;; mov bp,[si].rlr_type ; get lock type ;AN000;
;; cmp bp,rlr_lall ; is it lock all? ;AN000;
;; $IF NE ; if not a LOCK ALL lock ;AN000;
; remove the RLR from the chain
;; mov bx,[si].rlr_next ; get the pointer to the next RLR ;AN000;
;; mov [di],bx ; install it in the last ;AN000;
; put defunct lock record on the free chain
;; mov bx,Frelock ; ;AN000;
;; mov [si].rlr_next,bx ; ;AN000;
;; mov Frelock,si ; ;AN000;
;; mov si,di ; back up to last ;AN000;
;; $ENDIF ; should we unlock it ;AN000;
;; $ENDIF ; it was ours! ;AN000;
; advance to next RLR
;; mov di,si ; load address of next RLR ;AN000;
;; mov si,[di] ; update pointer to next RLR ;AN000;
;; $ENDDO ; loop back to the start ;AN000;
;; $ELSE ; else, its a LIST ! ;AN000;
; set up for loop
; WE HAVE: (from IBMDOS) | WE NEED: (for Clr_Block)
; (AX) = 0 - lock all | (BX) = 0 lock all operations
; = 1 - lock write | = 1 lock write operations
; (CX) = the number of lock ranges | (CX:DX) = offset of area
; (DS:DX) = pointer to the range list | (SI:AX) = length of area
; (ES:DI) = SFT address | (ES:DI) = SFT address
;; PUSH CX ; count = start_count ;AN000;
;; PUSH DX ; save pointer to range list ;AN000;
MOV BP,DX ; save current index into list ;AN000;
;; MOV BX,AX ; SET UP TYPE OF LOCK ;AN000;
call Clr_List ; call Clr_List to process the list ;AN000;
;; $ENDIF ; ;AN000;
; $ELSE ; NOT VALID
JMP SHORT $$EN6
$$IF6:
STC ; ;AN000;
; $ENDIF ; VALID/INVALID ;AN000;
$$EN6:
; $IF C ; if carry is set ;AN000;
JNC $$IF9
MOV AX,error_lock_violation ; load error condition ;AN000;
; $ENDIF ; carry not set ;AN000;
$$IF9:
LeaveCrit critShare ; ;AN000;
ret ; return - all set ;AN000;
EndProc clr_mult_block
BREAK <Clr_List - Clear a list of user specified locks>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: Clr_List - Clear a list of user specified locks
;
; FUNCTION: Clr_List makes multiple calls to Clr_Block to clear
; multiple lock ranges of a file. An error is returned
; if any lock range does not exactly match. Ranges of
; Locks are then set via Set_Mult_Block.
;
;
; INPUT: (BX) = 0 lock all operations
; = 1 lock write operations
; (CX:DX) = offset of area
; (SI:AX) = length of area
; (ES:DI) = SFT address
; (SS:SP+2)= original index \ see FRAME struc
; (SS:SP+4)= original count /
;
; OUTPUT: Lock records removed for all blocks specified
; Stack cleard on return
;
; REGISTERS USED: ALL but DS
; (NOT RESTORED)
;
; LINKAGE: IBMDOS Jump Table
;
; EXTERNAL Invoke: Load_Regs, Set_Block, Clr_Block
; REFERENCES:
;
; NORMAL 'C' clear if no error
; EXIT:
;
; ERROR 'C' set if error
; EXIT: (ax) = error code
; ('error_lock_violation' if conflicting locks)
;
; CHANGE 04/15/87 - First release
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START Clr_List
;
; search till count = 0
; set up for call
; call clr_Block
; exit if c
; clear_count = start_count - current_count
; loop till clear_count = 0
; set up for call
; call Set_Block
; end loop
; set error status
; orelse
; endloop
; set successful status
; endsrch
; return
;
; END Clr_List
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure Clr_List,NEAR
;; $do ;an000;while cx not = 0
;; cmp cx,00 ;an000;at end?
;; $leave e ;an000;yes
;; push cx ;an000;save cx - our counter
;; push di ;an000;save di - our SFT pointer
call load_regs ;an000;set up for clr_block call
;; push bp ; save pointer to range entry ;AN000;
call clr_block ;an000;remove the lock
;; pop bp ; recover pointer to range entry ;AN000;
;; pop di ;an000;restore our SFT pointer
;; pop cx ;an000;restore cx - our counter
;; $leave c ;an000;leave on error
;; dec cx ;an000;decrease counter
;; $enddo ;an000;
;; $if c ;an000;an error occurred
;; push bp ;an000;save bp
;; mov bp,sp ;an000;get sp
;; mov dx,[bp].parm_1 ;an000;recover original index
;; mov ax,[bp].Parm_2 ; original count ;AN000;
;; pop bp
;; SUB AX,CX ; how many did we do? ;AN000;
;; MOV CX,AX ; set up the loop ;AN000;
;; MOV BP,DX ; save the index ;AN000;
;; $DO ; ;AN000;
;; cmp cx,00 ;an000;at end?
;; $leave e ;an000;yes
;; push cx ;an000;save cx - our counter
;; push di ;an000;save di - our SFT pointer
;; call load_regs ;an000;set up for set_block call
;; call set_block ;an000;reset the locks
;; pop di ;an000;restore our SFT pointer
;; pop cx ;an000;restore cx - our counter
;; $leave c ;an000;leave on error
;; dec cx ;an000;decrease counter
;; $enddo ;an000;
;; stc ;an000;signal an error
;; $else ;an000;
;; clc ;an000;signal no error
;; $endif ;an000;
;; ret 4 ; return (clear Parm_1 & Parm_2) ;AN000;
ret ; return (clear Parm_1 & Parm_2) ;AC006;
EndProc Clr_List
BREAK <Set_Block - Try to set a lock>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: Set_Block - set byte range lock on a file
;
; FUNCTION: Set_Block sets a lock on a specified range of a file. An
; error is returned if the lock conflicts with another.
; Locks are cleared via clr_block.
;
; INPUT: (ES:DI) = SFT address
; (CX:DX) = offset of area
; (SI:AX) = length of area
; (BX) = 0 lock all operations
; = 1 lock write operations
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; (SS) = DOSGroup
;
; OUTPUT: Lock records removed for all blocks specified
;
; REGISTERS USED: ALL but DS, BP
; (NOT RESTORED)
;
; LINKAGE: Invoked by: Set_Mult_Block
;
; EXTERNAL Invoke: CLP (SLE), OFL
; REFERENCES:
;
; NORMAL 'C' clear if no error
; EXIT:
;
; ERROR 'C' set if error
; EXIT:
;
; CHANGE 04/15/87 - lock only write support
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START Set_Block
;
; if a valid SFT and
; invoke CLP
; if no lock conflicts and
; invoke OFL
; if empty lock record available
; store SFT pointer
; store lock range
; add RLR to the chain
; store PROC_ID
; store rlr_type
; set successful return status
; else
; set error return status
; endif
; return
;
; END Set_Block
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure Set_Block,NEAR
ASSUME ES:NOTHING,DS:NOTHING
Context DS
push bp ; preserve (bp) ;AN000;
push ds ; preserve (ds)
;; push bx ; preserve (bx) ;AN000;
cmp es:[di].sf_mft,ZERO
; $if nz,and ; if file is SHARED and ;AC000;
JZ $$IF11
push di
call clp ; do common setup code
ASSUME DS:NOTHING
pop bp
; $if nc,and ; if no (lock conflict) error and ;AC000;
JC $$IF11
; Its ok to set this lock. Get a free block and fill it in
; (es:bp) = sft
; (ds:si) = pointer to name record
; (ax:bx) = fba lock area
; (cx:dx) = lba lock area
; (ds:di) = pointer to pointer to previous lock
; (TOS) = saved (bx)
; (TOS+1) = saved (ds)
; (TOS+2) = saved (bp)
call OFL ; (ds:di) = pointer to new, orphan lock record
; $if nc ; if space available ;AC000;
JC $$IF11
mov WORD PTR [di].rlr_sptr,bp ; store SFT offset
mov WORD PTR [di].rlr_sptr+2,es ; store SFT offset
mov [di].rlr_fba+2,ax
mov [di].rlr_fba,bx ; store lock range
mov [di].rlr_lba+2,cx
mov [di].rlr_lba,dx
; add to front of chain
;
; (ds:si) = fwa MFT name record
mov ax,[si].mft_lptr
mov [di].rlr_next,ax
mov [si].mft_lptr,di
;
; Set process ID of lock
;
mov ax,proc_id
mov [di].rlr_pid,ax
;
;; pop bx ; recover lock type ;AN000;
;; push bx ; restore the stack ;AN000;
;; mov [di].rlr_type,bx ; set the rlr_type field ;AN000;
clc ; we finished OK
; $else ; ;AC000;
JMP SHORT $$EN11
$$IF11:
mov ax,error_lock_violation
stc
; $endif ; ;AC000;
$$EN11:
;; pop bx ; ;AN000;
pop ds
pop bp ; ;AC000;
ret ; return - all set
EndProc Set_Block
BREAK <Clr_Block - Try to clear a lock>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: Clr_Block - clear byte range lock on a file
;
; FUNCTION: Clr_Block clears a lock on a specified range of a file.
; Locks are set via set_block.
;
; INPUT: (ES:DI) = SFT address
; (CX:DX) = offset of area
; (SI:AX) = length of area
; (BX) = 0 lock all operations
; = 1 lock write operations
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; (SS) = DOSGroup
;
; OUTPUT: Lock record removed for block specified.
;
; REGISTERS USED: ALL but DS
; (NOT RESTORED)
;
; LINKAGE: Invoked by: Clr_Mult_Block
;
; EXTERNAL Invoke: CLP (SLE), OFL
; REFERENCES:
;
; NORMAL 'C' clear if no error
; EXIT:
;
; ERROR 'C' set if error
; EXIT: (ax) = error code
; ('error_lock_violation' if conflicting locks or
; range does not exactly match previous lock)
;
; CHANGE 04/15/87 - lock only write support
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START Clr_Block
;
; if file is SHARED and
; if lock is valid and
; if SFT matches and
; if PROC_ID matches
; if lock_reqest = lock_type
; unchain the lock
; put defunct lock on free chain
; clear error status
; else
; set error status
; endif
; else
; flush the stack
; set error status
; endif
; if error
; load return code
; endif
; return
;
; END Clr_Block
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure Clr_Block,NEAR
ASSUME ES:NOTHING,DS:NOTHING
Context DS
push ds
;; push bx ; save type of operation ;AN000;
cmp es:[di].sf_mft,ZERO
; $if nz,and ; if file is SHARED and ;AC000;
JZ $$IF14
push di
call clp ; do common setup code
ASSUME DS:NOTHING
pop bp ; ES:BP points to sft.
;; pop bx ; recover the type of operation ;AN000;
; $if c,and ; if lock exists and ;AC000;
JNC $$IF14
; $if z,and ; if range given correctly and ;AC000;
JNZ $$IF14
;
; We've got the lock
;
; (ds:di) = address of pointer (offset) to previous lock record
; (es:BP) = sft address
;
; Now comes the tricky part. Is the lock for us? Does the lock match the SFT
; that was given us? If not, then error.
;
mov si,[di] ; (DS:SI) = address of lock record
cmp word ptr [si].rlr_sptr,bp
; $if z,and ; if SFT matches and ;AC000;
JNZ $$IF14
mov bp,es
cmp word ptr [si].rlr_sptr+2,bp
; $if z,and ; (check both words of SFT pointer) ;AC000;
JNZ $$IF14
mov bp,proc_id
cmp [si].rlr_pid,bp
;; $if z,and ; if PROC_ID matches ;AC000;
; $if z ; if PROC_ID matches ;AC006;
JNZ $$IF14
;
; Make sure that the type of request and the lock type match
;
;; cmp bx,lock_all ; ;AN000;
;; $IF E,OR ; if unlocking all or ;AN000;
;; mov bp,[si].rlr_type ; get lock type ;AN000;
;; cmp bp,rlr_lall ; is it lock all? ;AN000;
;; $IF NE ; if not a LOCK ALL lock ;AN000;
;
; The locks match the proper open invocation. Unchain the lock
;
mov ax,[si].rlr_next
mov [di],ax ; chain it out
; put defunct lock record on the free chain
;
; (ds:si) = address of freed lock rec
mov ax,Frelock
mov [si].rlr_next,ax
mov Frelock,si
clc
; $else ; we have an error ;AC000;
JMP SHORT $$EN14
$$IF14:
stc
; $endif ; Endif - an error ;AC000;
$$EN14:
; $if c ; If an error was found ;AC000;
JNC $$IF17
mov ax,error_lock_violation
; $endif ; Endif - an error was found ;AC000;
$$IF17:
pop ds ; restore DS
ret
EndProc Clr_Block
BREAK <CLP - Common Lock Preamble>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: CLP - Common Lock Preamble
;
; FUNCTION: This routine contains a common code fragment for set_block
; and clr_block.
;
; INPUT: (ES:DI) = SFT address
; (CX:DX) = offset of area
; (SI:AX) = length of area
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; (SS) = (DS) = DOSGroup
;
; OUTPUT: (ds:si) = MFT address
;
; REGISTERS USED: ALL but ES
; (NOT RESTORED)
;
; LINKAGE: Invoked by: Set_Block, Clr_Block
;
; EXTERNAL Invoke: SLE
; REFERENCES:
;
; NORMAL 'C' clear if no overlap
; EXIT: (ax:bx) = offset of first byte in range
; (cx:dx) = offset of last byte in range
;
; ERROR 'C' set if overlap
; EXIT: 'Z' set if 1-to-1 match
; (di) points to previous lock
;
; CHANGE 04/15/87 - lock only write support
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START CLP
;
; shuffle arguments
; if valid length
; invoke SLE
; set successful return status
; else
; set error return status
; endif
; return
;
; END CLP
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure CLP,NEAR
mov bx,dx ; shuffle arguments
xchg dx,ax
xchg ax,cx ; (ax:bx) = offset
mov cx,si ; (cx:dx) = length
or si,dx ; see if length is 0
; $if nz,and ; if length is > 0 and ;AC000;
JZ $$IF19
add dx,bx
adc cx,ax ; (cx:dx) = lba+1
; $if nc,or ; no carry is ok ;AC000;
JNC $$LL19
mov si,dx
or si,cx
; $if z ; if !> 0 then ;AC000;
JNZ $$IF19
$$LL19:
sub dx,1 ; (cx:dx) = lba of locked region
sbb cx,0
push cs
pop ds
; (es:di) is sft
push si
mov si,es:[di].sf_mft
push si
mov di,1 ; Find own locks
call SLE
; di points to previous lock record
pop si
pop bp
; $else ; we have an error ;AC000;
JMP SHORT $$EN19
$$IF19:
xor si,si
inc si ; carry unchanged, zero reset
mov ax,error_lock_violation ; assume error
stc
; $endif ; endif - we have an error ;AC000;
$$EN19:
ret
EndProc CLP
BREAK <Chk_Block - See if the specified I/O violates locks>
;******************* START OF SPECIFICATIONS ***********************************
;
; NAME: Chk_Block - check range lock on a file
;
; FUNCTION: Chk_Block is called to interogate the lock status of a
; region of a file.
;
; NOTE: This routine is called for every disk I/O operation
; and MUST BE FAST
;
; INPUT: (ES:DI) points to an SFT structure
; (AL) = 80h - Write operation = 0 - any non write operation
; (CX) is the number of bytes being read or written
; BytPos is a long (low first) offset into the file
; of the I/O
; User_ID = 16-bit user id of issuer
; Proc_ID = 16-bit process id of issuer
; (SS) = DOSGroup
;
; OUTPUT: CF set according to status and presence of locks (see below)
;
; REGISTERS USED: ALL but ES,DI,CX,DS
; (NOT RESTORED)
;
; LINKAGE: IBMDOS Jump Table
;
; NORMAL 'C' clear if no error
; EXIT:
;
; ERROR 'C' set if error
; EXIT: (ax) = error code
; ('error_lock_violation' if conflicting locks)
;
; CHANGE 04/15/87 - lock only write support
; LOG:
;
;******************* END OF SPECIFICATIONS *************************************
;******************+ START OF PSEUDOCODE +**************************************
;
; START Chk_Block
;
; if shared SFT and
; if locks exist
; invoke SLE
; if lock conflicts occur (error)
; if this is !write operation and
; if a write lock found
; set successfull status
; else
; set error status
; endif
; else no error
; flush stack
; endif
; endif
;
; ret
;
; END Chk_Block
;
;******************+ END OF PSEUDOCODE +**************************************
Procedure Chk_Block,NEAR
ASSUME DS:NOTHING,ES:NOTHING,SS:DOSGROUP
write_op equ 080h ; write operation requested ;AN000;
lock_all equ 0h ; lock all specified ;AN000;
; PUSH DS ;ICE
; push bx ;ICE
; push ax ;ICE
; mov bx,0140H ;ICE
; xor ax,ax ;ICE
; mov ds,ax ;ICE
; mov ax,word ptr ds:[bx] ;ICE
; mov word ptr ds:[bx],ax ;ICE
; pop ax ;ICE
; pop bx ;ICE
; POP DS ;ICE
EnterCrit critShare
; int 3
nop
nop
PUSH ES
PUSH DI
PUSH CX
PUSH DS
cmp es:[di].sf_mft,0
; $if nz,and ; if the file is SHARED and ;AC000;
JZ $$IF22
push cs
pop ds
mov si,es:[di].sf_MFT ; (DS:SI) = address of MFT record
test [si].mft_lptr,-1
; $if nz,and ; if there are locks on this file and ;AC000;
JZ $$IF22
sub cx,1 ; (cx) = count-1
cmc
; $if c ; there are bytes to lock ;AC000;
JNC $$IF22
;; push ax ; preserve type of operation ;AN000;
; DOS passes AL = 80 for writes
; = 00 for reads
mov ax,WORD PTR BytPos+2
mov bx,WORD PTR BytPos ; (ax:bx) = offset
mov dx,cx
sub cx,cx
add dx,bx
adc cx,ax ; (cx:dx) = lba of lock area
sub di,di ; ignore own locks
call SLE
;; pop ax ; recover type of opperation ;AN000;
; upon return DS:SI points to the RLR with the conflict
;; $if c ; if lock conflicts occur - error ;AC000;
; now we must check what type of lock exists
; and the type of operation in progress.
;; cmp al,write_op ; ;AN000;
;; $if ne,and ; if NOT a write operation and ;AN000;
;; cmp [si].rlr_type,rlr_lwr ; ;AN000;
;; $if e ; if write locked (NOT all locked) ;AN000;
;; clc ; then not true conflict - clear error ;AN000;
;; $else ; else it IS a valid conflict ;AC000;
;; stc ; true error - set error status
;; $endif ; endif - a valid conflict ;AC000;
;; $endif ; endif - conflicts ;AC000;
mov ax,error_lock_violation ; assume error
; $endif ; endif - no need to check ;AC000;
$$IF22:
; exit
;
; 'C' and (ax) setup
POP DS
POP CX
POP DI
POP ES
LeaveCrit critShare
ret ; exit
EndProc Chk_Block
BREAK <MFT_get - get an entry from the MFT>
;******************* START OF SPECIFICATIONS ***********************************
;
; MFT_get - get an entry from the MFT
;
; MFT_get is used to return information from the MFT. System utilities
; use this capability to produce status displays.
;
; MFT_get first locates the (BX)'th file in the list (no particular
; ordering is promised). It returns that name and the UID of
; the (CX)'th SFT on that file and the number of locks on that
; file via that SFT.
;
; ENTRY DS:SI point to DPL which contains:
; (dBX) = zero-based file index
; (dCX) = zero-based SFT index
; (SS) = DOSGroup
; EXIT 'C' clear if no error
; ES:DI buffer is filled in with BX'th file name
; (BX) = user id of SFT
; (CX) = # of locks via SFT
; 'C' set if error
; (ax) = error code
; ('error_no_more_files' if either index is out
; of range)
;
;******************* END OF SPECIFICATIONS *************************************
Procedure MFT_get,NEAR
; int 3
nop
nop
ASSUME DS:NOTHING,ES:NOTHING
EnterCrit critShare
MOV BX,[SI.DPL_BX]
MOV CX,[SI.DPL_CX]
Context ES
MOV DI,OFFSET DOSGROUP:OpenBuf
xchg bx,cx ; (cx) = file index
push cs
pop ds
Off SI,mft ; (ds:si) = fwa of OFFSET MFT
; scan forward until next name
mget1: cmp [si].mft_flag,MFLG_FRE
jz mget3 ; is free space
jl mget7 ; is END
; have another name. see if this satisfies caller
jcxz mget4 ; caller is happy
dec cx
mget3: add si,[si].mft_len ; skip name record
JMP SHORT mget1
; we've located the file name.
;
; (bx) = SFT index
; (DS:SI) = MFT entry
; (ES:DI) = address of caller's buffer
mget4: push di
push si ; save table offset
add si,mft_name
mget5: lodsb
stosb ; copy name into caller's buffer
or al,al
jnz mget5
pop si ; (DS:SI) = name record address
xchg bx,cx ; (cx) = SFT chain count
lds di,[si].mft_sptr
mget6: jcxz mget8 ; have reached the SFT we wanted
dec cx
lds di,[di].sf_chain ; get next link
or di,di
jnz mget6 ; follow chain some more
pop di ; (es:di) = buffer address
;** The file or SFT index was too large - return w/ error
mget7: mov ax,error_no_more_files
stc
LeaveCrit critShare
ret
;** We've got the SFT he wants. Lets count the locks
;
; (es:TOS) = buffer address
; (DS:DI) = address of SFT
; (si) = address of mft
mget8: mov ax,[DI].sf_flags
mov dx,ds ; save segment
push cs
pop ds
mov si,[si].mft_lptr ; (DS:SI) = Lock record address
sub cx,cx ; clear counter
mget9: or si,si
jz mget11 ; no more
cmp di,WORD PTR [si].rlr_sptr
jnz mget10
cmp dx,word PTR [si].rlr_sptr+2
jnz mget10
inc cx
mget10: mov si,[si].rlr_next
JMP SHORT mget9
; Done counting locks. return the info
;
; (cx) = count of locks
; (es:TOS) = buffer address
mget11: mov ds,dx
mov bx,[di].SF_UID ; (bx) = UID
pop di
clc
LeaveCrit critShare
ret
EndProc MFT_get
BREAK <ASC - Add SFT to Chain>
;******************* START OF SPECIFICATIONS ***********************************
;
; ASC - Add SFT to Chain
;
; ASC is called to add an SFT to the front of the chain.
;
; ASC checks the file share mode bits on the other SFTs in the chain and
; reports a conflict. The new SFT is NOT ADDED in the case of
; conflicts.
;
; ENTRY (BX) = FBA MFT name record
; (DS:SI) = SFT address
; EXIT 'C' clear if added
; (ds:si) point to sft
; (bx) offset of mft
; 'C' set if conflict
; (ax) = error code
; USES ALL
;
;******************* END OF SPECIFICATIONS *************************************
Procedure ASC,NEAR
cmp [si].sf_MFT,0
jnz asc9 ; already on chain - internal error
; The SFT looks good... lets see if there are any use conflicts
; Message 1,<"Adding sft ">
mov ax,User_ID ; place user information in SFT
mov [si].sf_UID,ax ; do it before CUC (he checks UID)
mov ax,Proc_ID
mov [si].sf_PID,ax
cmp skip_check,1
; $if ne ;
JE $$IF24
call CUC ; check use conflicts
; $endif
$$IF24:
jc asc8 ; use conflicts - forget it
; MessageNum AX
; MessageNum AX
; Message 1,<" to ">
; MEssageNum DS
; Message 1,<":">
; MessageNum SI
; Message 1,<" ">
mov [si].sf_MFT,bx ; make SFT point to MFT
; MessageNum [si].sf_mft
; Message 1,<13,10>
mov cx,[si].sf_mode ; (cx) = open mode
mov dx,ds ; (dx:si) = SFT address
push cs
pop ds ; (ds:bx) = MFT address
;
; Not special file and no previous sft found OR normal SFT. We link it in
; at the head of the list.
;
; (dx:si) point to sft
; (ds:bx) point to mft
;
les di,[bx].mft_sptr ; get first link
mov word ptr [bx].mft_sptr,si ; link in this sft
mov word ptr [bx].mft_sptr+2,dx ; link in this sft
mov ds,dx
mov word ptr [si].sf_chain,di
mov word ptr [si].sf_chain+2,es
asc75: mov ds,dx ; point back to sft
clc
asc8: ret
; the SFT is already in use... internal error
asc9: push ax
off ax,ascerr
call INTERR ; NEVER RETURNS
ascerr db "ASC: sft already in use", 13, 10, 0
EndProc ASC
BREAK <BCS - Bulk Close of SFTs>
;******************* START OF SPECIFICATIONS ***********************************
;
; BCS - Bulk Close of SFTs
;
; BCS scans the MFT structures looking for SFTs that match a UID (and
; perhaps a PID). The SFTs are closed. The MFT name record is removed
; if all its SFTs are closed.
;
; BCS is called with a PID and a PID MASK. The SFT is closed if its UID
; matches the supplied UID AND (PID_ & PIDMASK) == PID_supplied
;
; We walk the MFT structure closing all relevant SFT's. There is no
; need for special handling of 70 handles or FCBs.
;
; Note that we call DOS_close to close the SFT; DOS_close in turn calls
; mftclose which may remove the SFT and even the MFT. This means that
; the MFT may vanish as we are working on it. Whenever we call
; DOS_close we'll know the next SFT and, if there is no next SFT we'll
; know the next MFT. (If the MFT were released a pointer to the carcass
; is not of any help. An MFT carcass cannot help find the next MFT
; record)
;
; ENTRY (AX) = UID to match
; (BX) = PID mask
; (DX) = PID value
; EXIT 'C' clear
; USES ALL
;
;******************* END OF SPECIFICATIONS *************************************
ASSUME SS:DOSGROUP
Procedure BCS,NEAR
push cs
pop ds
Off SI,mft ; start at beginning of buffer
; scan forward to the nearest name record (we may be at it now)
;
; (DS:SI) = record pointer
bcs1: cmp [si].mft_flag,MFLG_FRE
jl bcs16 ; at end of names, all done
jg bcs2 ; have a name record
bcs1$5: add si,[si].mft_len ; skip record and loop
jmp bcs1
bcs16: jmp bcs9
bcs2: les di,[si].mft_sptr ; got name record - get first SFT
; run down SFT chain
;
; (es:di) = FBA next SFT
; (ds:si) = FBA name record
; (ax) = UID to match
; (bx) = PID mask
; (dx) = PID value
bcs3: or di,di
jz bcs1$5 ; at end of SFT chain
cmp ax,es:[di].sf_UID
jnz bcs4 ; not a match
mov cx,es:[di].sf_PID
and cx,bx ; apply mask
cmp cx,dx
jz bcs51 ; got a match
bcs4:
les di,es:[di].sf_chain
JMP bcs3 ; chain to next SFT
; We have an SFT to close
;
; (es:di) = FBA SFT to be closed
;
; (ds:si) = FBA name record
; (ax) = UID to match
; (bx) = PID mask
; (dx) = PID value
bcs51: mov es:[di].sf_ref_count,1
push ax
push bx
push dx ; save ID values (ax,bx,dx) and mask
push ds
push si ; save name record address (ds:si)
mov si,word ptr es:[di].sf_chain
or si,si
jnz bcs7 ; isnt last sft, MFT will remain
; yup, this is the last sft for this MFT, the MFT may evaporate. we have
; to find the next one NOW, and remember it
pop si ; undo saved name record address
pop ds
bcs6: add si,[si].mft_len ; go to next guy
cmp [si].mft_flag,MFLG_FRE
jz bcs6 ; must be a non-free guy
push ds
push si ; resave our new next MFT
sub si,si ; no next sft
; Allright, we're ready to call the DOS.
;
; (es:di) = FBA sft to be closed
; ((sp)) = long address of current or next MFT
; ((sp)+4) = PID value
; ((sp)+6) = PID mask
; ((sp)+8) = UID value
bcs7: mov WORD PTR ThisSFT,di
mov WORD PTR ThisSFT+2,es
mov es,word ptr es:[di].sf_chain+2
SaveReg <es,si>
call CPS ; clear JFN
Context DS
CallInstall DOS_Close,multDos,1
ASSUME DS:NOTHING
RestoreReg <di,es> ; (es:DI) = offset of next sft
pop si
pop ds ; (DS:SI) = fwa of current or next MFT
pop dx
pop bx
pop ax
or di,di
jnz bcs85 ; have more sft's
JMP bcs1 ; look at this new MFT
bcs85: jmp bcs3
; All Done
bcs9: clc
ret
EndProc BCS
BREAK <CSL - Clear SFT Locks>
;******************* START OF SPECIFICATIONS ***********************************
;
; CSL - Clear SFT Locks
;
; CSL clears any locks associated with this SFT.
;
; ENTRY (ES:DI) = SFT address
; EXIT (ES:DI) unchanged
; USES All but ES,DI
;
;******************* END OF SPECIFICATIONS *************************************
Procedure CSL,NEAR
mov si,es:[di].sf_MFT
push cs
pop ds
lea bx,[si].mft_lptr ; (DS:BX) = addr of lock ptr
mov si,[bx] ; (DS:SI) = fba first lock record
; scan the locks looking for belongers.
;
; (es:di) = SFT address
; (ds:si) = this lock address
; (ds:bx) = address of link (offset value) to this lock (prev lock)
csl1: or si,si
jz csl3 ; done with lock list
cmp di,word ptr [si].rlr_sptr
jnz csl2 ; not my lock
mov ax,es
cmp ax,word ptr [si].rlr_sptr+2
jnz csl2 ; not my lock
;
; Make sure that the lock REALLY belongs to the correct process
;
cmp user_in_ax, (ServerCall shl 8) + 4 ; only check if ; @@01
jnz csl15 ; process specific; @@01
mov ax,Proc_ID
cmp ax,[si].rlr_pid ; is process ID of lock = this PID?
jnz csl2 ; nope, skip this lock
; got a lock to remove
csl15:
mov dx,[si].rlr_next
mov [bx],dx ; link him out
mov ax,Frelock
mov [si].rlr_next,ax
mov Frelock,si
mov si,dx ; (DS:SI) = next lock address
JMP SHORT csl1
ERRNZ rlr_next ; lock is not ours... follow chain
csl2: mov bx,si
mov si,[si].rlr_next
JMP SHORT csl1
; All done
csl3: ret
EndProc CSL
ASSUME DS:NOTHING
BREAK <CUC - check usage conflicts>
;******************* START OF SPECIFICATIONS ***********************************
;
; Use conflict table
;
; Algorithm:
;
; if ((newmode == COMPAT) or (oldmode == COMPAT))
; and (user ID's match)
; then accept
; else
; for new and old mode, compute index of (SH*3)+ACC
; shift right table[new_index] by old_index+2;
; 'C' set if FAIL
;
; The bit in the old_index position indicates the success or failure. 0
; => allow access, 1 => fail access
;
;******************* END OF SPECIFICATIONS *************************************
PUBLIC CUCA
CUCA: DW 0ffffh ; Compat Read
DW 0ffffh ; Compat Write
DW 0ffffh ; Compat Read/Write
DW 0ffffh ; Deny R/W Read
DW 0ffffh ; Deny R/W Write
DW 0ffffh ; Deny R/W Read/Write
DW 0df7fh ; Deny W Read
DW 0dbffh ; Deny W Write
DW 0dfffh ; Deny W Read/Write
DW 0beffh ; Deny R Read
DW 0b7ffh ; Deny R Write
DW 0bfffh ; Deny R Read/Write
DW 01c7fh ; Deny None Read
DW 003ffh ; Deny None Write
DW 01fffh ; Deny None Read/Write
; 4443 3322 2111 000
; Deny/Compat / DDDD DDDD DDDD CCCx
; DenyRead / R RR RRR
; DenyWrite 1st Access =< WW WWWW
; AccessRead \ R RR RR RR R R R
; AccessWrite \ WW W W WW WW WW
; x 1111 1111 1111 1111
; C R 00 1111 1111 1111 1111 ffff
; C W 01 1111 1111 1111 1111 ffff
; C RW 02 1111 1111 1111 1111 ffff
; DRWR 10 1111 1111 1111 1111 ffff
; DRW W 11 1111 1111 1111 1111 ffff
; DRWRW 12 1111 1111 1111 1111 ffff
; D WR 20 1101 1111 0111 1111 df7f
; D W W 21 1101 1011 1111 1111 dbff
; D WRW 22 1101 1111 1111 1111 dfff
; DR R 30 1011 1110 1111 1111 beff
; DR W 31 1011 0111 1111 1111 b7ff
; DR RW 32 1011 1111 1111 1111 bfff
; D R 40 0001 1100 0111 1111 1c7f
; D W 41 0000 0011 1111 1111 03ff
; D RW 42 0001 1111 1111 1111 1fff
; In order to allow the greatest number of accesses, compatability read mode
; is treated as deny-write read. The other compatability modes are treated
; as deny-both.
;******************* START OF SPECIFICATIONS ***********************************
;
; CUC - check usage conflicts
;
; CUC is called to see if a would-be open would generate a share
; conflict with an existing open. See CUCA for the algorithm and table
; format.
;
; ENTRY (BX) = FBA MFT name record
; (DS:SI) = SFT address
; EXIT 'C' clear if OK
; 'C' set if conflict
; (ax) = error code
; USES ALL but arguments (BX, DS:SI)
;
;******************* END OF SPECIFICATIONS *************************************
Procedure CUC,NEAR
push ds
pop es
mov di,si ; (es:di) = FBA SFT record
call gom ; get open mode
mov ch,al
and ch,sharing_mask ; (ch) = new guy share
jz cuc0 ; new guy is compatability mode
mov ch,sharing_mask
cuc0: call csi ; compute share index
add ax,ax ; *2 for word index
xchg ax,si ; (si) = share table index
push cs
pop ds ; (ds:bx) = FBA MFT record
mov dx,WORD PTR CUCA[si] ; (dx) = share mask
lds si,[bx].mft_sptr ; (ds:si) = first sft guy
; ready to do access compares.
;
; (ds:si) = address of next sft
; (es:di) = address of new sft
; (dx) = share word from CUCA
; (cs:bx) = MFT offset
; (ch) = 0 if new SFT is compatibilty mode, else sharing_mask
cuc1: or si,si
jz cuc9 ; at end of chain, no problems
call gom ; if not FCB, then mode in al is good
mov ah,al
and ah,sharing_mask ; (ah) = sharing mode
or ah,ch ; (ah) = 0 iff new and old is SH_COMP
jnz cuc2 ; neither is SH_COMP
; Both the old and the new guy are SH_COMP mode. If the UIDs match,
; step onward. If they don't match do normal share check.
mov bp,es:[di].sf_UID
cmp bp,[si].sf_UID
jz cuc20 ; equal => next sft to check
cuc2: call csi ; compute the share index
inc ax
inc ax
xchg al,cl ; (cl) = shift count
mov ax,dx
sar ax,cl ; select the bit
jc cuc8 ; a conflict!
cuc20:
lds si,[si].sf_chain
JMP cuc1 ; chain to next SFT and try again
; Have a share conflict
cuc8: mov ax,error_sharing_violation ; assume share conflict
stc
; done with compare. Restore regs and return
;
; 'C' set as appropriate
; (es:di) = new SFT address
; (ax) set as appropriate
; (bx) = MFT offset
cuc9: push es
pop ds
mov si,di
ret
EndProc CUC
BREAK <csi - compute share index>
;******************* START OF SPECIFICATIONS ***********************************
;
; csi - compute share index
;
;
; If the mode byte has a leading 7 then it is interpreted as a 0
; csi turns a mode byte into an index from 0 to 14:
;
; (share index)*3 + (access index)
;
; ENTRY (al) = mode byte
; EXIT (ax) = index
; USES AX, CL
;
;******************* END OF SPECIFICATIONS *************************************
Procedure CSI,NEAR
mov ah,al
and ah,access_mask ; (ah) = access bits
and al,sharing_mask ; (al) = share bites
ERRNZ sharing_mask-0F0h
cmp al,sharing_net_FCB
jnz csi1
xor al,al
csi1:
shr al,1
shr al,1
shr al,1
mov cl,al ; (cl) = SHVAL*2
shr al,1
add al,cl ; (al) = SHVAL*3
add al,ah ; (al) = SH*3 + ACC
sub ah,ah
ret
EndProc CSI
Break <GOM - get open mode>
;******************* START OF SPECIFICATIONS ***********************************
;
; GOM - get open mode
;
; Find the correct open mode given the encoded sf_mode. Note that files
; marked READ-ONLY and are opened in compatability read-only are treated as
; deny-write read-only. FCB opens are sharing_compat open_for_both and
; net FCB opens are sharing_compat
;
; Entry: (DS:SI) points to SFT
; Exit: (AL) has correct mode
; Uses: (AX)
;******************* END OF SPECIFICATIONS *************************************
Procedure GOM,NEAR
mov ax,[si].sf_mode
TEST AX,sf_IsFCB
jz gom1 ; if not FCB, then mode in al is good
mov al,sharing_compat+open_for_both
gom1:
mov ah,al
and ah,sharing_mask
cmp ah,sharing_net_FCB ; is sharing from net FCB?
jnz gom2 ; no, got good mode
and al,access_mask ; yes, convert to compat mode sharing
or al,sharing_compat
;
; The sharing mode and access mode in AL is now correct for the file. See if
; mode is compatability. If so and file is read-only, convert access mode to
; deny-write read.
;
gom2:
mov ah,al
and ah,sharing_mask
retnz ; not compatability, return.
test [si].sf_attr,attr_read_only
retz ; not read-only
mov al,sharing_deny_write + open_for_read
ret
EndProc GOM
SHARE ENDS
END
ELSE
CODE ENDS
ENDIF
END ; This can't be inside the if
; mode is compatability. If so and file is read-only, convert access mode to
; deny-write read.
;
gom2:
mov ah,al
and ah,sharing_mask
retnz ; not compatability, return.
test [si].sf_attr,attr_read_only
retz ; not read-only
mov al,sharing_deny_write + open_for_read
ret
EndProc GOM
SHARE ENDS
END
ELSE
CODE ENDS
ENDIF
END ; This can't be inside the if
|