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
|
; SCCSID = @(#)misc2.asm 1.1 85/04/10
TITLE MISC2 - Miscellanious routines for MS-DOS
NAME MISC2
;
; Miscellaneous useful routines
;
; StrCpy
; StrCmp
; Ucase
; StrLen
; DStrLen
; Idle
; TableDispatch
; FastInit ; DOS 4.0
; FastRet ; DOS 4.0
; NLS_OPEN ; DOS 4.0
; NLS_LSEEK ; DOS 4.0
; Fake_User_Stack ; DOS 4.0
; GetDevList ; DOS 4.0
; NLS_IOCTL ; DOS 4.0
; NLS_GETEXT ; DOS 4.0
; MSG_RETRIEVAL ; DOS 4.0
; Fake_Version ; DOS 4.0
;
; Revision history:
;
; Created: ARR 30 March 1983
;
; A000 version 4.0 Jan. 1988
; A001 DCR 486 - Share installation for >32mb drives
; A006 DCR 503 - fake version number for IBMCACHE
.xlist
;
; get the appropriate segment definitions
;
include dosseg.asm
CODE SEGMENT BYTE PUBLIC 'CODE'
ASSUME SS:DOSGROUP,CS:DOSGROUP
.xcref
include dossym.inc
include fastseek.inc ;AN000;
include fastxxxx.inc ;AN000;
.cref
.list
i_need THISCDS,DWORD
I_Need RetryLoop,WORD
I_need fSharing,BYTE ; TRUE => server-issued call
I_need FastTable,BYTE ;AN000;
I_need FastFlg,BYTE ;AN000;
I_need User_SP_2F,WORD ;AN000;
I_need User_SP,WORD ;AN000;
I_need User_SS,WORD ;AN000;
I_need SysInitTable,BYTE ;AN000;
I_need EXTERR,WORD ;AN000;
I_need MSG_EXTERROR,DWORD ;AN000;
I_need fshare,byte ;AN001;
I_need Special_version,WORD ;AN006;
if debug
I_need BugLev,WORD
I_need BugTyp,WORD
include bugtyp.asm
endif
Break <STRCMP - compare two ASCIZ strings DS:SI to ES:DI>
;
; Strcmp - compare ASCIZ DS:SI to ES:DI. Case INSENSITIVE. '/' = '\'
; Strings of different lengths don't match.
; Inputs: DS:SI - pointer to source string ES:DI - pointer to dest string
; Outputs: Z if strings same, NZ if different
; Registers modified: NONE
Procedure StrCmp,NEAR
ASSUME CS:DOSGroup,SS:DOSGroup,DS:NOTHING,ES:NOTHING
SaveReg <SI,DI,AX>
Cmplp:
LODSB
IF DBCS ;AN000;
invoke testkanj ;AN000;; 2/13/KK
jz notkanj1 ;AN000;; 2/13/KK
dec si ;AN000;; Do source again 2/13/KK
cmpsb ;AN000;; First byte 2/13/KK
JNZ PopRet ;AN000;; Strings dif 2/13/KK
cmpsb ;AN000;; Second byte of kanji char 2/13/KK
JNZ PopRet ;AN000;; Strings dif 2/13/KK
mov al,byte ptr [SI-1] ;AN000;; Need last byte in AL 2/13/KK
jmp short Tend ;AN000;
notkanj1: ;AN000;; 2/13/KK
ENDIF ;AN000;
CALL uCase ; convert to upper case
Invoke PathChrCmp ; convert / to \
MOV AH,AL
MOV AL,ES:[DI]
INC DI
CALL uCase ; convert to upper case
Invoke PathChrCmp ; convert / to \
CMP AH,AL
JNZ PopRet ; Strings dif
Tend:
OR AL,AL
JNZ Cmplp ; More string
PopRet:
RestoreReg <AX,DI,SI>
return
EndProc StrCmp
Break <STRCPY - copy ASCIZ string from DS:SI to ES:DI>
;
; Strcpy - copy an ASCIZ string from DS:SI to ES:DI and make uppercase
; FStrcpy - copy an ASCIZ string from DS:SI to ES:DI. no modification of
; characters.
;
; Inputs: DS:SI - pointer to source string
; ES:DI - pointer to destination string
; Outputs: ES:DI point byte after nul byte at end of dest string
; DS:SI point byte after nul byte at end of source string
; Registers modified: SI,DI
Procedure StrCpy,NEAR
ASSUME CS:DOSGroup,SS:DOSGroup,DS:NOTHING,ES:NOTHING
SaveReg <AX>
CPYLoop:
LODSB
IF DBCS ;AN000;
invoke testkanj ;AN000;; 2/13/KK
jz notkanj2 ;AN000;; 2/13/KK
STOSB ;AN000;; 2/13/KK
LODSB ;AN000;; 2/13/KK
STOSB ;AN000;; 2/13/KK
jmp short CPYLoop ;AN000;; 3/31/KK
notkanj2: ;AN000;; 2/13/KK
ENDIF ;AN000;
CALL uCase ; convert to upper case
Invoke PathChrCmp ; convert / to \
STOSB
Tend2:
OR AL,AL
JNZ CPYLoop
RestoreReg <AX>
return
EndProc StrCpy
Procedure FStrCpy,NEAR
ASSUME CS:DOSGroup,SS:DOSGroup,DS:NOTHING,ES:NOTHING
SaveReg <AX>
FCPYLoop:
LODSB
STOSB
OR AL,AL
JNZ FCPYLoop
RestoreReg <AX>
return
EndProc FStrCpy
;
; Upper case the letter in AL. Most chars are non lowercase.
;
Procedure uCase,NEAR
; CMP AL,'a'
; JAE Maybe
; return
;Maybe:
; CMP AL,'z'
; JA CaseRet
; ADD AL,'A'-'a'
;CaseRet:
;;; 10/31/86 let's do file upper case for all DOS file names
invoke GetLet2
;;; 10/31/86 let's do file upper case for all DOS file names
return
EndProc uCase
Break <StrLen - compute length of string ES:DI>
;
; StrLen - Compute length of string ES:DI
; Inputs: ES:DI - pointer to string
; Outputs: CX is size of string INCLUDING the NUL
; Registers modified: CX
Procedure StrLen,NEAR
ASSUME CS:DOSGroup,SS:DOSGroup,DS:NOTHING,ES:NOTHING
PUSH DI
PUSH AX
MOV CX,-1
XOR AL,AL
REPNE SCASB
NOT CX
POP AX
POP DI
return
EndProc StrLen
;
; DStrLen - Compute length of string DS:SI
; Inputs: DS:SI - pointer to string
; Outputs: CX is size of string INCLUDING the NUL
; Registers modified: CX
Procedure DStrLen,NEAR
CALL XCHGP
CALL StrLen
CALL XCHGP
return
EndProc DStrLen
Break <XCHGP - exchange source and destination pointers>
Procedure XCHGP,NEAR
SaveReg <DS,ES>
RestoreReg <DS,ES>
XCHG SI,DI
return
EndProc XCHGP
Break <Idle - wait for a specified amount of time>
;
; Idle - when retrying an operation due to a lock/sharing violation, we spin
; until RetryLoop is exhausted.
;
; Inputs: RetryLoop is the number of times we spin
; Outputs: Wait
; Registers modified: none
Procedure Idle,NEAR
ASSUME CS:DOSGroup,SS:DOSGROUP,DS:NOTHING,ES:NOTHING
TEST fSharing,-1
retnz
SaveReg <CX>
MOV CX,RetryLoop
JCXZ Idle3
Idle1: PUSH CX
XOR CX,CX
Idle2: LOOP Idle2
POP CX
LOOP Idle1
Idle3: RestoreReg <CX>
return
EndProc Idle
Break <TableDispatch - dispatch to a table>
;
; TableDispatch - given a table and an index, jmp to the approptiate
; routine. Preserve all input registers to the routine.
;
; Inputs: Push return address
; Push Table address
; Push index (byte)
; Outputs: appropriate routine gets jumped to.
; return indicates invalid index
; Registers modified: none.
TableFrame STRUC
OldBP DW ?
OldRet DW ?
Index DB ?
Pad DB ?
Tab DW ?
NewRet DW ?
TableFrame ENDS
procedure TableDispatch,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,SS:NOTHING,SS:NOTHING
PUSH BP
MOV BP,SP
PUSH BX ; save BX
MOV BX,[BP.Tab] ; get pointer to table
MOV BL,CS:[BX] ; maximum index
CMP [BP.Index],BL ; table error?
JAE TableError ; yes
MOV BL,[BP.Index] ; get desired table index
XOR BH,BH ; convert to word
SHL BX,1 ; convert to word pointer
INC BX ; point past first length byte
ADD BX,[BP.Tab] ; get real offset
MOV BX,CS:[BX] ; get contents of table entry
MOV [BP.Tab],BX ; put table entry into return address
POP BX ; restore BX
POP BP ; restore BP
ADD SP,4 ; clean off Index and our return addr
return ; do operation
TableError:
POP BX ; restore BX
POP BP ; restore BP
RET 6 ; clean off Index, Table and RetAddr
EndProc TableDispatch
Break <TestNet - determine if a CDS is for the network>
;
; TestNet - examine CDS pointed to by ThisCDS and see if it indicates a
; network CDS. This will handle NULL cds also.
;
; Inputs: ThisCDS points to CDS or NULL
; Outputs: ES:DI = ThisCDS
; carry Set => network
; carry Clear => local
; Registers modified: none.
Procedure TestNet,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
LES DI,ThisCDS
CMP DI,-1
JZ CMCRet ; UNC? carry is clear
TEST ES:[DI].curdir_flags,curdir_isnet
JNZ CMCret ; jump has carry clear
return ; carry is clear
CMCRet: CMC
return
EndProc TestNet
Break <IsSFTNet - see if an sft is for the network>
;
; IsSFTNet - examine SF pointed to by ES:DI and see if it indicates a
; network file.
;
; Inputs: ES:DI point to SFT
; Outputs: Zero set if not network sft
; zero reset otherwise
; Carry CLEAR!!!
; Registers modified: none.
Procedure IsSFTNet,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
TEST ES:[DI].sf_flags,sf_isnet
return
EndProc IsSFTNet
Break <FastInit - Initialize FastTable entries >
; DOS 4.00 2/9/87
; FastInit - initialize the FASTXXX routine entry
; in the FastTable
;
; Inputs: BX = FASTXXX ID ( 1=fastopen, 2=fastseek,,,,)
; DS:SI = address of FASTXXX routine entry
; SI = -1 for query only
; Outputs: Carry flag clear, if success
; Carry flag set, if failure
;
;
Procedure FastInit,NEAR ;AN000;
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING ;AN000;
MOV DI,OFFSET DOSGROUP:FastTable + 2 ;AN000;FO. points to fastxxx entry
DEC BX ;AN000;FO.;; decrement index
MOV DX,BX ;AN000;FO.;; save bx
SHL BX,1 ;AN000;FO.;; times 4 , each entry is DWORD
SHL BX,1 ;AN000;FO.
ADD DI,BX ;AN000;FO. index to the entry
MOV AX,WORD PTR CS:[DI+2] ;AN000;FO. get entry segment
fcheck: ;AN000;
MOV CX,CS ;AN000;FO.;; get DOS segment
CMP AX,CX ;AN000;FO.;; first time installed ?
JZ ok_install ;AN000;FO.;; yes
OR AX,AX ;AN000;FO.;
JZ ok_install ;AN000;FO.;
STC ;AN000;FO.;; already installed !
JMP SHORT FSret ;AN000;FO. set carry
ok_install: ;AN000;
CMP SI,-1 ;AN000;FO.; Query only ?
JZ FSret ;AN000;FO.; yes
MOV CX,DS ;AN000;FO.; get FASTXXX entry segment
MOV CX,DS ;AN000;FO.;; get FASTXXX entry segment
MOV WORD PTR CS:[DI+2],CX ;AN000;FO.;; initialize routine entry
MOV WORD PTR CS:[DI],SI ;AN000;FO.;; initialize routine offset
MOV DI,OFFSET DOSGROUP:FastFlg ;AN000;FO.; get addr of FASTXXX flags
ADD DI,DX ;AN000;FO.; index to a FASTXXX flag
OR byte ptr CS:[DI],Fast_yes ;AN000;FO.; indicate installed
FSret: ;AN000;
return ;AN000;FO.
EndProc FastInit ;AN000;FO.
Break <FastRet - initial routine in FastOpenTable >
; DOS 3.3 6/10/86
; FastRet - indicate FASTXXXX not in memory
;
; Inputs: None
; Outputs: AX = -1 and carry flag set
;
; Registers modified: none.
Procedure FastRet,FAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
MOV AX,-1
STC
RET
EndProc FastRet
Break <NLS_OPEN - do $open for NLSFUNC >
; DOS 3.3 6/10/86
; NLS_OPEN - call $OPEN for NLSFUNC
;
; Inputs: Same input as $OPEN except CL = mode
; Outputs: same output as $OPEN
;
Procedure NLS_OPEN,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
; MOV BL,[CPSWFLAG] ; disable code page matching logic
; MOV [CPSWFLAG],0
; PUSH BX ; save current state
MOV AL,CL ; set up correct interface for $OPEN
invoke $OPEN
; POP BX ; restore current state
; MOV [CPSWFLAG],BL
RET
EndProc NLS_OPEN
Break <NLS_LSEEK - do $LSEEK for NLSFUNC >
; DOS 3.3 6/10/86
; NLS_LSEEK - call $LSEEK for NLSFUNC
;
; Inputs: BP = open mode
; Outputs: same output as $LSEEK
;
Procedure NLS_LSEEK,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
PUSH [user_SP] ; save user stack
PUSH [user_SS]
CALL Fake_User_Stack
MOV AX,BP ; set up correct interface for $LSEEK
invoke $LSEEK
POP [user_SS] ; restore user stack
POP [user_SP]
RET
EndProc NLS_LSEEK
Break <Fake_User_Stack - save uesr stack >
; DOS 3.3 6/10/86
; Fake_User_Stack - save user stack pointer
;
Procedure Fake_User_Stack,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
MOV AX,[User_SP_2F] ; replace with INT 2F stack
MOV [user_SP],AX
MOV AX,CS
MOV [user_SS],AX ; DOSGROUP
RET
EndProc Fake_User_Stack
;
Break <GetDevList - get device header list pointer>
; DOS 3.3 7/25/86
; GetDevList - get device header list pointer
;
; Output: AX:BX points to the device header list
Procedure GetDevList,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:DOSGROUP
MOV SI,OFFSET DOSGROUP:SysInitTable
LDS SI,CS:[SI.SYSI_InitVars]
MOV AX,WORD PTR DS:[SI.SYSI_DEV]
MOV BX,WORD PTR DS:[SI.SYSI_DEV+2]
RET
EndProc GetDevList
Break <NLS_IOCTL - do $IOCTL for NLSFUNC >
; DOS 3.3 7/25/86
; NLS_IOCTL - call $IOCTL for NLSFUNC
;
; Inputs: BP = function code 0CH
; Outputs: same output as generic $IOCTL
;
Procedure NLS_IOCTL,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
PUSH [user_SP] ; save user stack
PUSH [user_SS]
CALL Fake_User_Stack
MOV AX,BP ; set up correct interface for $LSEEK
invoke $IOCTL
POP [user_SS] ; restore user stack
POP [user_SP]
RET
EndProc NLS_IOCTL
Break <NLS_GETEXT- get extended error for NLSFUNC>
; DOS 3.3 7/25/86
; NLS_GETEXT -
;
; Inputs: none
; Outputs: AX = extended error
;
Procedure NLS_GETEXT,NEAR
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING
MOV AX,CS:[EXTERR] ; return extended error
RET
EndProc NLS_GETEXT
Break <MSG_RETRIEVAL- get beginning addr of system and parser messages>
; DOS 4.00
;
; Inputs: DL=0 get extended error message addr
; =1 set extended error message addr
; =2 get parser error message addr
; =3 set parser error message addr
; =4 get critical error message addr
; =5 set critical error message addr
; =6 get file system error message addr
; =7 set file system error message addr
; =8 get address for code reduction
; =9 set address for code reduction
; Function: get/set message address
; Outputs: ES:DI points to addr when get
;
Procedure MSG_RETRIEVAL,NEAR ;AN000;
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING ;AN000;
PUSH AX ;AN000;;MS. save regs
PUSH SI ;AN000;;MS. save regs
MOV AX,DX ;AN000;;MS.
MOV SI,OFFSET DOSGROUP:MSG_EXTERROR ;AN000;;MS.
TEST AL,1 ;AN000;;MS. get ?
JZ toget ;AN000;;MS. yes
DEC AL ;AN000;;MS.
toget: ;AN000;
SHL AL,1 ;AN000;;MS. times 2
XOR AH,AH ;AN000;;MS.
ADD SI,AX ;AN000;;MS. position to the entry
TEST DL,1 ;AN000;;MS. get ?
JZ getget ;AN000;;MS. yes
MOV WORD PTR CS:[SI],DI ;AN000;;MS. set MSG
MOV WORD PTR CS:[SI+2],ES ;AN000;;MS. address to ES:DI
JMP SHORT MSGret ;AN000;;MS. exit
getget: ;AN000;
LES DI,DWORD PTR CS:[SI] ;AN000;;MS. get msg addr
MSGret: ;AN000;
POP SI ;AN000;;MS.
POP AX ;AN000;;MS.
return ;AN000;;MS. exit
EndProc MSG_RETRIEVAL ;AN000;
Break <Fake_version - set/reset version flag>
;
; Inputs: DL=0 current version number
; <>0 special version number
; Function: set special version number
; Outputs: version number is changed
;
Procedure Fake_version,NEAR ;AN000;
ASSUME CS:DOSGroup,DS:NOTHING,ES:NOTHING,SS:NOTHING ;AN000;
MOV [Special_version],DX ;AN006;MS.
return ;AN006;;MS. exit
EndProc Fake_version ;AN006;;MS.
CODE ENDS
END
|