Merged msacm and msacm32 dlls.
[wine] / msdos / devices.c
1 /*
2  * DOS devices
3  *
4  * Copyright 1999 Ove Kåven
5  */
6
7 #include <stdlib.h>
8 #include <string.h>
9 #include "wine/winbase16.h"
10 #include "msdos.h"
11 #include "miscemu.h"
12 #include "dosexe.h"
13 #include "debugtools.h"
14
15 #include "pshpack1.h"
16
17 typedef struct {
18   BYTE ljmp1;
19   RMCBPROC strategy;
20   BYTE ljmp2;
21   RMCBPROC interrupt;
22 } WINEDEV_THUNK;
23
24 typedef struct {
25   BYTE size; /* length of header + data */
26   BYTE unit; /* unit (block devices only) */
27   BYTE command;
28   WORD status;
29   BYTE reserved[8];
30 } REQUEST_HEADER;
31
32 typedef struct {
33   REQUEST_HEADER hdr;
34   BYTE media; /* media descriptor from BPB */
35   SEGPTR buffer;
36   WORD count; /* byte/sector count */
37   WORD sector; /* starting sector (block devices) */
38   DWORD volume; /* volume ID (block devices) */
39 } REQ_IO;
40
41 typedef struct {
42   REQUEST_HEADER hdr;
43   BYTE data;
44 } REQ_SAFEINPUT;
45
46 #include "poppack.h"
47
48 #define CON_BUFFER 128
49
50 #define SYSTEM_STRATEGY_NUL 0x0100
51 #define SYSTEM_STRATEGY_CON 0x0101
52
53 #define NONEXT ((DWORD)-1)
54
55 #define ATTR_STDIN     0x0001
56 #define ATTR_STDOUT    0x0002
57 #define ATTR_NUL       0x0004
58 #define ATTR_CLOCK     0x0008
59 #define ATTR_FASTCON   0x0010
60 #define ATTR_RAW       0x0020
61 #define ATTR_NOTEOF    0x0040
62 #define ATTR_DEVICE    0x0080
63 #define ATTR_REMOVABLE 0x0800
64 #define ATTR_NONIBM    0x2000 /* block devices */
65 #define ATTR_UNTILBUSY 0x2000 /* char devices */
66 #define ATTR_IOCTL     0x4000
67 #define ATTR_CHAR      0x8000
68
69 #define CMD_INIT       0
70 #define CMD_MEDIACHECK 1 /* block devices */
71 #define CMD_BUILDBPB   2 /* block devices */
72 #define CMD_INIOCTL    3
73 #define CMD_INPUT      4 /* read data */
74 #define CMD_SAFEINPUT  5 /* "non-destructive input no wait", char devices */
75 #define CMD_INSTATUS   6 /* char devices */
76 #define CMD_INFLUSH    7 /* char devices */
77 #define CMD_OUTPUT     8 /* write data */
78 #define CMD_SAFEOUTPUT 9 /* write data with verify */
79 #define CMD_OUTSTATUS 10 /* char devices */
80 #define CMD_OUTFLUSH  11 /* char devices */
81 #define CMD_OUTIOCTL  12
82 #define CMD_DEVOPEN   13
83 #define CMD_DEVCLOSE  14
84 #define CMD_REMOVABLE 15 /* block devices */
85 #define CMD_UNTILBUSY 16 /* output until busy */
86
87 #define STAT_MASK  0x00FF
88 #define STAT_DONE  0x0100
89 #define STAT_BUSY  0x0200
90 #define STAT_ERROR 0x8000
91
92 #define LJMP 0xea
93
94
95 /* prototypes */
96 static void WINAPI nul_strategy(CONTEXT86*ctx);
97 static void WINAPI nul_interrupt(CONTEXT86*ctx);
98 static void WINAPI con_strategy(CONTEXT86*ctx);
99 static void WINAPI con_interrupt(CONTEXT86*ctx);
100
101 /* devices */
102 typedef struct 
103 {
104     char name[8];
105     WORD attr;
106     RMCBPROC strategy;
107     RMCBPROC interrupt;
108     
109 } WINEDEV;
110
111 static WINEDEV devs[] = 
112 {
113   { "NUL     ",
114     ATTR_CHAR|ATTR_NUL|ATTR_DEVICE,
115     nul_strategy, nul_interrupt },
116
117   { "CON     ",
118     ATTR_CHAR|ATTR_STDIN|ATTR_STDOUT|ATTR_FASTCON|ATTR_NOTEOF|ATTR_DEVICE,
119     con_strategy, con_interrupt }
120 };
121
122 #define NR_DEVS (sizeof(devs)/sizeof(WINEDEV))
123
124 /* DOS data segment */
125 typedef struct
126 {
127     DOS_LISTOFLISTS    lol;
128     DOS_DEVICE_HEADER  dev[NR_DEVS-1];
129     WINEDEV_THUNK      thunk[NR_DEVS];
130     REQ_IO             req;
131     BYTE               buffer[CON_BUFFER];
132
133 } DOS_DATASEG;
134
135 #define DOS_DATASEG_OFF(xxx) FIELD_OFFSET(DOS_DATASEG, xxx)
136
137 DWORD DOS_LOLSeg;
138
139
140 /* the device implementations */
141 static void do_lret(CONTEXT86*ctx)
142 {
143   WORD *stack = CTX_SEG_OFF_TO_LIN(ctx, SS_reg(ctx), ESP_reg(ctx));
144
145   EIP_reg(ctx) = *(stack++);
146   CS_reg(ctx)  = *(stack++);
147   ESP_reg(ctx) += 2*sizeof(WORD);
148 }
149
150 static void do_strategy(CONTEXT86*ctx, int id, int extra)
151 {
152   REQUEST_HEADER *hdr = CTX_SEG_OFF_TO_LIN(ctx, ES_reg(ctx), EBX_reg(ctx));
153   void **hdr_ptr = DOSVM_GetSystemData(id);
154
155   if (!hdr_ptr) {
156     hdr_ptr = calloc(1,sizeof(void *)+extra);
157     DOSVM_SetSystemData(id, hdr_ptr);
158   }
159
160   *hdr_ptr = hdr;
161   do_lret(ctx);
162 }
163
164 static REQUEST_HEADER * get_hdr(int id, void**extra)
165 {
166   void **hdr_ptr = DOSVM_GetSystemData(id);
167   if (extra)
168     *extra = hdr_ptr ? (void*)(hdr_ptr+1) : (void *)NULL;
169   return hdr_ptr ? *hdr_ptr : (void *)NULL;
170 }
171
172 static void WINAPI nul_strategy(CONTEXT86*ctx)
173 {
174   do_strategy(ctx, SYSTEM_STRATEGY_NUL, 0);
175 }
176
177 static void WINAPI nul_interrupt(CONTEXT86*ctx)
178 {
179   REQUEST_HEADER *hdr = get_hdr(SYSTEM_STRATEGY_NUL, NULL);
180   /* eat everything and recycle nothing */
181   switch (hdr->command) {
182   case CMD_INPUT:
183     ((REQ_IO*)hdr)->count = 0;
184     hdr->status = STAT_DONE;
185     break;
186   case CMD_SAFEINPUT:
187     hdr->status = STAT_DONE|STAT_BUSY;
188     break;
189   default:
190     hdr->status = STAT_DONE;
191   }
192   do_lret(ctx);
193 }
194
195 static void WINAPI con_strategy(CONTEXT86*ctx)
196 {
197   do_strategy(ctx, SYSTEM_STRATEGY_CON, sizeof(int));
198 }
199
200 static void WINAPI con_interrupt(CONTEXT86*ctx)
201 {
202   int *scan;
203   REQUEST_HEADER *hdr = get_hdr(SYSTEM_STRATEGY_CON,(void **)&scan);
204   BIOSDATA *bios = DOSMEM_BiosData();
205   WORD CurOfs = bios->NextKbdCharPtr;
206   DOS_LISTOFLISTS *lol = DOSMEM_LOL();
207   DOS_DATASEG *dataseg = (DOS_DATASEG *)lol;
208   BYTE *linebuffer = dataseg->buffer;
209   BYTE *curbuffer = (lol->offs_unread_CON) ?
210     (((BYTE*)dataseg) + lol->offs_unread_CON) : (BYTE*)NULL;
211   DOS_DEVICE_HEADER *con = dataseg->dev;
212   LPDOSTASK lpDosTask = MZ_Current();
213
214   switch (hdr->command) {
215   case CMD_INPUT:
216     {
217       REQ_IO *io = (REQ_IO *)hdr;
218       WORD count = io->count, len = 0;
219       BYTE *buffer = CTX_SEG_OFF_TO_LIN(ctx,
220                                         SELECTOROF(io->buffer),
221                                         (DWORD)OFFSETOF(io->buffer));
222
223       hdr->status = STAT_BUSY;
224       /* first, check whether we already have data in line buffer */
225       if (curbuffer) {
226         /* yep, copy as much as we can */
227         BYTE data = 0;
228         while ((len<count) && (data != '\r')) {
229           data = *curbuffer++;
230           buffer[len++] = data;
231         }
232         if (data == '\r') {
233           /* line buffer emptied */
234           lol->offs_unread_CON = 0;
235           curbuffer = NULL;
236           /* if we're not in raw mode, call it a day*/
237           if (!(con->attr & ATTR_RAW)) {
238             hdr->status = STAT_DONE;
239             io->count = len;
240             break;
241           }
242         } else {
243           /* still some data left */
244           lol->offs_unread_CON = curbuffer - (BYTE*)lol;
245           /* but buffer was filled, we're done */
246           hdr->status = STAT_DONE;
247           io->count = len;
248           break;
249         }
250       }
251
252       /* if we're in raw mode, we just need to fill the buffer */
253       if (con->attr & ATTR_RAW) {
254         while (len<count) {
255           WORD data;
256
257           /* do we have a waiting scancode? */
258           if (*scan) {
259             /* yes, store scancode in buffer */
260             buffer[len++] = *scan;
261             *scan = 0;
262             if (len==count) break;
263           }
264
265           /* check for new keyboard input */
266           while (CurOfs == bios->FirstKbdCharPtr) {
267             /* no input available yet, so wait... */
268             DOSVM_Wait( -1, 0 );
269           }
270           /* read from keyboard queue (call int16?) */
271           data = ((WORD*)bios)[CurOfs];
272           CurOfs += 2;
273           if (CurOfs >= bios->KbdBufferEnd) CurOfs = bios->KbdBufferStart;
274           bios->NextKbdCharPtr = CurOfs;
275           /* if it's an extended key, save scancode */
276           if (LOBYTE(data) == 0) *scan = HIBYTE(data);
277           /* store ASCII char in buffer */
278           buffer[len++] = LOBYTE(data);
279         }
280       } else {
281         /* we're not in raw mode, so we need to do line input... */
282         while (TRUE) {
283           WORD data;
284           /* check for new keyboard input */
285           while (CurOfs == bios->FirstKbdCharPtr) {
286             /* no input available yet, so wait... */
287             DOSVM_Wait( -1, 0 );
288           }
289           /* read from keyboard queue (call int16?) */
290           data = ((WORD*)bios)[CurOfs];
291           CurOfs += 2;
292           if (CurOfs >= bios->KbdBufferEnd) CurOfs = bios->KbdBufferStart;
293           bios->NextKbdCharPtr = CurOfs;
294
295           if (LOBYTE(data) == '\r') {
296             /* it's the return key, we're done */
297             linebuffer[len++] = LOBYTE(data);
298             break;
299           }
300           else if (LOBYTE(data) >= ' ') {
301             /* a character */
302             if ((len+1)<CON_BUFFER) {
303               linebuffer[len] = LOBYTE(data);
304               WriteFile(lpDosTask->hConOutput, &linebuffer[len++], 1, NULL, NULL);
305             }
306             /* else beep, but I don't like noise */
307           }
308           else switch (LOBYTE(data)) {
309           case '\b':
310             if (len>0) {
311               len--;
312               WriteFile(lpDosTask->hConOutput, "\b \b", 3, NULL, NULL);
313             }
314             break;
315           }
316         }
317         if (len > count) {
318           /* save rest of line for later */
319           lol->offs_unread_CON = linebuffer - (BYTE*)lol + count;
320           len = count;
321         }
322         memcpy(buffer, linebuffer, len);
323       }
324       hdr->status = STAT_DONE;
325       io->count = len;
326     }
327     break;
328   case CMD_SAFEINPUT:
329     if (curbuffer) {
330       /* some line input waiting */
331       hdr->status = STAT_DONE;
332       ((REQ_SAFEINPUT*)hdr)->data = *curbuffer;
333     }
334     else if (con->attr & ATTR_RAW) {
335       if (CurOfs == bios->FirstKbdCharPtr) {
336         /* no input */
337         hdr->status = STAT_DONE|STAT_BUSY;
338       } else {
339         /* some keyboard input waiting */
340         hdr->status = STAT_DONE;
341         ((REQ_SAFEINPUT*)hdr)->data = ((BYTE*)bios)[CurOfs];
342       }
343     } else {
344       /* no line input */
345       hdr->status = STAT_DONE|STAT_BUSY;
346     }
347     break;
348   case CMD_INSTATUS:
349     if (curbuffer) {
350       /* we have data */
351       hdr->status = STAT_DONE;
352     }
353     else if (con->attr & ATTR_RAW) {
354       if (CurOfs == bios->FirstKbdCharPtr) {
355         /* no input */
356         hdr->status = STAT_DONE|STAT_BUSY;
357       } else {
358         /* some keyboard input waiting */
359         hdr->status = STAT_DONE;
360       }
361     } else {
362       /* no line input */
363       hdr->status = STAT_DONE|STAT_BUSY;
364     }
365
366     break;
367   case CMD_INFLUSH:
368     /* flush line and keyboard queue */
369     lol->offs_unread_CON = 0;
370     bios->NextKbdCharPtr = bios->FirstKbdCharPtr;
371     break;
372   case CMD_OUTPUT:
373   case CMD_SAFEOUTPUT:
374     {
375       REQ_IO *io = (REQ_IO *)hdr;
376       BYTE *buffer = CTX_SEG_OFF_TO_LIN(ctx,
377                                         SELECTOROF(io->buffer),
378                                         (DWORD)OFFSETOF(io->buffer));
379       DWORD result = 0;
380       WriteFile(lpDosTask->hConOutput, buffer, io->count, &result, NULL);
381       io->count = result;
382       hdr->status = STAT_DONE;
383     }
384     break;
385   default:
386     hdr->status = STAT_DONE;
387   }
388   do_lret(ctx);
389 }
390
391 static void InitListOfLists(DOS_LISTOFLISTS *DOS_LOL)
392 {
393 /*
394 Output of DOS 6.22:
395
396 0133:0020                    6A 13-33 01 CC 00 33 01 59 00         j.3...3.Y.
397 0133:0030  70 00 00 00 72 02 00 02-6D 00 33 01 00 00 2E 05   p...r...m.3.....
398 0133:0040  00 00 FC 04 00 00 03 08-92 21 11 E0 04 80 C6 0D   .........!......
399 0133:0050  CC 0D 4E 55 4C 20 20 20-20 20 00 00 00 00 00 00   ..NUL     ......
400 0133:0060  00 4B BA C1 06 14 00 00-00 03 01 00 04 70 CE FF   .K...........p..
401 0133:0070  FF 00 00 00 00 00 00 00-00 01 00 00 0D 05 00 00   ................
402 0133:0080  00 FF FF 00 00 00 00 FE-00 00 F8 03 FF 9F 70 02   ..............p.
403 0133:0090  D0 44 C8 FD D4 44 C8 FD-D4 44 C8 FD D0 44 C8 FD   .D...D...D...D..
404 0133:00A0  D0 44 C8 FD D0 44                                 .D...D
405 */
406   DOS_LOL->CX_Int21_5e01                = 0x0;
407   DOS_LOL->LRU_count_FCB_cache  = 0x0;
408   DOS_LOL->LRU_count_FCB_open           = 0x0;
409   DOS_LOL->OEM_func_handler             = -1; /* not available */
410   DOS_LOL->INT21_offset         = 0x0;
411   DOS_LOL->sharing_retry_count  = 3;
412   DOS_LOL->sharing_retry_delay  = 1;
413   DOS_LOL->ptr_disk_buf         = 0x0;
414   DOS_LOL->offs_unread_CON              = 0x0;
415   DOS_LOL->seg_first_MCB                = 0x0;
416   DOS_LOL->ptr_first_DPB                = 0x0;
417   DOS_LOL->ptr_first_SysFileTable       = 0x0;
418   DOS_LOL->ptr_clock_dev_hdr            = 0x0;
419   DOS_LOL->ptr_CON_dev_hdr              = 0x0;
420   DOS_LOL->max_byte_per_sec             = 512;
421   DOS_LOL->ptr_disk_buf_info            = 0x0;
422   DOS_LOL->ptr_array_CDS                = 0x0;
423   DOS_LOL->ptr_sys_FCB          = 0x0;
424   DOS_LOL->nr_protect_FCB               = 0x0;
425   DOS_LOL->nr_block_dev         = 0x0;
426   DOS_LOL->nr_avail_drive_letters       = 26; /* A - Z */
427   DOS_LOL->nr_drives_JOINed             = 0x0;
428   DOS_LOL->ptr_spec_prg_names           = 0x0;
429   DOS_LOL->ptr_SETVER_prg_list  = 0x0; /* no SETVER list */
430   DOS_LOL->DOS_HIGH_A20_func_offs       = 0x0;
431   DOS_LOL->PSP_last_exec                = 0x0;
432   DOS_LOL->BUFFERS_val          = 99; /* maximum: 99 */
433   DOS_LOL->BUFFERS_nr_lookahead = 8; /* maximum: 8 */
434   DOS_LOL->boot_drive                   = 3; /* C: */
435   DOS_LOL->flag_DWORD_moves             = 0x01; /* i386+ */
436   DOS_LOL->size_extended_mem            = 0xf000; /* very high value */
437 }
438
439 void DOSDEV_InstallDOSDevices(void)
440 {
441   DOS_DATASEG *dataseg;
442   UINT16 seg;
443   int n;
444
445   /* allocate DOS data segment or something */
446   DOS_LOLSeg = GlobalDOSAlloc16(sizeof(DOS_DATASEG));
447   seg = HIWORD(DOS_LOLSeg);
448   dataseg = PTR_SEG_OFF_TO_LIN(LOWORD(DOS_LOLSeg), 0);
449
450   /* initialize the magnificent List Of Lists */
451   InitListOfLists(&dataseg->lol);
452
453   /* Set up first device (NUL) */
454   dataseg->lol.NUL_dev.next_dev  = PTR_SEG_OFF_TO_SEGPTR(seg, DOS_DATASEG_OFF(dev[0]));
455   dataseg->lol.NUL_dev.attr      = devs[0].attr;
456   dataseg->lol.NUL_dev.strategy  = DOS_DATASEG_OFF(thunk[0].ljmp1);
457   dataseg->lol.NUL_dev.interrupt = DOS_DATASEG_OFF(thunk[0].ljmp2);
458   memcpy(dataseg->lol.NUL_dev.name, devs[0].name, 8);
459
460   /* Set up the remaining devices */
461   for (n = 1; n < NR_DEVS; n++)
462   {
463     dataseg->dev[n-1].next_dev  = (n+1) == NR_DEVS ? NONEXT :
464                                   PTR_SEG_OFF_TO_SEGPTR(seg, DOS_DATASEG_OFF(dev[n]));
465     dataseg->dev[n-1].attr      = devs[n].attr;
466     dataseg->dev[n-1].strategy  = DOS_DATASEG_OFF(thunk[n].ljmp1);
467     dataseg->dev[n-1].interrupt = DOS_DATASEG_OFF(thunk[n].ljmp2);
468     memcpy(dataseg->dev[n-1].name, devs[n].name, 8);
469   }
470
471   /* Set up thunks */
472   for (n = 0; n < NR_DEVS; n++)
473   {
474     dataseg->thunk[n].ljmp1     = LJMP;
475     dataseg->thunk[n].strategy  = (RMCBPROC)DPMI_AllocInternalRMCB(devs[n].strategy);
476     dataseg->thunk[n].ljmp2     = LJMP;
477     dataseg->thunk[n].interrupt = (RMCBPROC)DPMI_AllocInternalRMCB(devs[n].interrupt);
478   }
479
480   /* CON is device 1 */
481   dataseg->lol.ptr_CON_dev_hdr = PTR_SEG_OFF_TO_SEGPTR(seg, DOS_DATASEG_OFF(dev[0]));
482 }
483
484 DWORD DOSDEV_Console(void)
485 {
486   return DOSMEM_LOL()->ptr_CON_dev_hdr;
487 }
488
489 DWORD DOSDEV_FindCharDevice(char*name)
490 {
491   SEGPTR cur_ptr = PTR_SEG_OFF_TO_SEGPTR(HIWORD(DOS_LOLSeg),
492                                          FIELD_OFFSET(DOS_LISTOFLISTS,NUL_dev));
493   DOS_DEVICE_HEADER *cur = DOSMEM_MapRealToLinear(cur_ptr);
494   char dname[8];
495   int cnt;
496
497   /* get first 8 characters */
498   strncpy(dname,name,8);
499   /* if less than 8 characters, pad with spaces */
500   for (cnt=0; cnt<8; cnt++)
501     if (!dname[cnt]) dname[cnt]=' ';
502
503   /* search for char devices with the right name */
504   while (cur &&
505          ((!(cur->attr & ATTR_CHAR)) ||
506           memcmp(cur->name,dname,8))) {
507     cur_ptr = cur->next_dev;
508     if (cur_ptr == NONEXT) cur=NULL;
509     else cur = DOSMEM_MapRealToLinear(cur_ptr);
510   }
511   return cur_ptr;
512 }
513
514 static void DOSDEV_DoReq(void*req, DWORD dev)
515 {
516   REQUEST_HEADER *hdr = (REQUEST_HEADER *)req;
517   DOS_DEVICE_HEADER *dhdr;
518   CONTEXT86 ctx;
519   char *phdr;
520
521   dhdr = DOSMEM_MapRealToLinear(dev);
522   phdr = ((char*)DOSMEM_LOL()) + DOS_DATASEG_OFF(req);
523
524   /* copy request to request scratch area */
525   memcpy(phdr, req, hdr->size);
526
527   /* prepare to call device driver */
528   memset(&ctx, 0, sizeof(ctx));
529
530   /* ES:BX points to request for strategy routine */
531   ES_reg(&ctx)  = HIWORD(DOS_LOLSeg);
532   EBX_reg(&ctx) = DOS_DATASEG_OFF(req);
533
534   /* call strategy routine */
535   CS_reg(&ctx) = SELECTOROF(dev);
536   EIP_reg(&ctx) = dhdr->strategy;
537   DPMI_CallRMProc(&ctx, 0, 0, 0);
538
539   /* call interrupt routine */
540   CS_reg(&ctx) = SELECTOROF(dev);
541   EIP_reg(&ctx) = dhdr->interrupt;
542   DPMI_CallRMProc(&ctx, 0, 0, 0);
543
544   /* completed, copy request back */
545   memcpy(req, phdr, hdr->size);
546
547   if (hdr->status & STAT_ERROR) {
548     switch (hdr->status & STAT_MASK) {
549     case 0x0F: /* invalid disk change */
550       /* this error seems to fit the bill */
551       SetLastError(ER_NotSameDevice);
552       break;
553     default:
554       SetLastError((hdr->status & STAT_MASK) + 0x13);
555       break;
556     }
557   }
558 }
559
560 static int DOSDEV_IO(unsigned cmd, DWORD dev, DWORD buf, int buflen)
561 {
562   REQ_IO req;
563
564   req.hdr.size=sizeof(req);
565   req.hdr.unit=0; /* not dealing with block devices yet */
566   req.hdr.command=cmd;
567   req.hdr.status=STAT_BUSY;
568   req.media=0; /* not dealing with block devices yet */
569   req.buffer=buf;
570   req.count=buflen;
571   req.sector=0; /* block devices */
572   req.volume=0; /* block devices */
573
574   DOSDEV_DoReq(&req, dev);
575
576   return req.count;
577 }
578
579 int DOSDEV_Peek(DWORD dev, BYTE*data)
580 {
581   REQ_SAFEINPUT req;
582
583   req.hdr.size=sizeof(req);
584   req.hdr.unit=0; /* not dealing with block devices yet */
585   req.hdr.command=CMD_SAFEINPUT;
586   req.hdr.status=STAT_BUSY;
587   req.data=0;
588
589   DOSDEV_DoReq(&req, dev);
590
591   if (req.hdr.status & STAT_BUSY) return 0;
592
593   *data = req.data;
594   return 1;
595 }
596
597 int DOSDEV_Read(DWORD dev, DWORD buf, int buflen)
598 {
599   return DOSDEV_IO(CMD_INPUT, dev, buf, buflen);
600 }
601
602 int DOSDEV_Write(DWORD dev, DWORD buf, int buflen, int verify)
603 {
604   return DOSDEV_IO(verify?CMD_SAFEOUTPUT:CMD_OUTPUT, dev, buf, buflen);
605 }
606
607 int DOSDEV_IoctlRead(DWORD dev, DWORD buf, int buflen)
608 {
609   return DOSDEV_IO(CMD_INIOCTL, dev, buf, buflen);
610 }
611
612 int DOSDEV_IoctlWrite(DWORD dev, DWORD buf, int buflen)
613 {
614   return DOSDEV_IO(CMD_OUTIOCTL, dev, buf, buflen);
615 }