Fixed a few more headers dependency issues.
[wine] / dlls / winedos / int2f.c
1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
2 /*
3  * DOS interrupt 2fh handler
4  *
5  *  Cdrom - device driver emulation - Audio features.
6  *     Copyright (c) 1998 Petr Tomasek <tomasek@etf.cuni.cz>
7  *     Copyright (c) 1999,2002 Eric Pouech
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #include "config.h"
25
26 #include <string.h>
27
28 #define NONAMELESSUNION
29 #define NONAMELESSSTRUCT
30 #include "wine/winbase16.h"
31 #include "miscemu.h"
32 #include "wine/debug.h"
33 #include "ntstatus.h"
34 #include "winioctl.h"
35 #include "ntddstor.h"
36 #include "ntddcdrm.h"
37 #include "dosexe.h"
38
39 WINE_DEFAULT_DEBUG_CHANNEL(int);
40
41 /* base WPROCS.DLL ordinal number for VxDs */
42 #define VXD_BASE 400
43
44 static void do_int2f_16( CONTEXT86 *context );
45 static void MSCDEX_Handler( CONTEXT86 *context );
46
47 /**********************************************************************
48  *          DOSVM_Int2fHandler (WINEDOS16.147)
49  *
50  * Handler for int 2fh (multiplex).
51  */
52 void WINAPI DOSVM_Int2fHandler( CONTEXT86 *context )
53 {
54     TRACE("Subfunction 0x%X\n", AX_reg(context));
55
56     switch(AH_reg(context))
57     {
58     case 0x10:
59         SET_AL( context, 0xff ); /* share is installed */
60         break;
61
62     case 0x11:  /* Network Redirector / IFSFUNC */
63         switch (LOBYTE(context->Eax))
64         {
65         case 0x00:  /* Install check */
66             /* not installed */
67             break;
68         case 0x80:  /* Enhanced services - Install check */
69             /* not installed */
70             break;
71         default:
72            INT_BARF( context, 0x2f );
73             break;
74         }
75         break;
76
77     case 0x12:
78         switch (LOBYTE(context->Eax))
79         {
80         case 0x2e: /* get or set DOS error table address */
81             switch (DL_reg(context))
82             {
83             /* Four tables: even commands are 'get', odd are 'set' */
84             /* DOS 5.0+ ignores "set" commands */
85             case 0x01:
86             case 0x03:
87             case 0x05:
88             case 0x07:
89             case 0x09:
90                 break;
91             /* Instead of having a message table in DOS-space, */
92             /* we can use a special case for MS-DOS to force   */
93             /* the secondary interface.                               */
94             case 0x00:
95             case 0x02:
96             case 0x04:
97             case 0x06:
98                 context->SegEs = 0x0001;
99                 SET_DI( context, 0x0000 );
100                 break;
101             case 0x08:
102                 FIXME("No real-mode handler for errors yet! (bye!)\n");
103                 break;
104             default:
105                 INT_BARF(context, 0x2f);
106             }
107             break;
108         default:
109            INT_BARF(context, 0x2f);
110         }
111         break;
112
113     case 0x15: /* mscdex */
114         MSCDEX_Handler(context);
115         break;
116
117     case 0x16:
118         do_int2f_16( context );
119         break;
120
121     case 0x1a: /* ANSI.SYS / AVATAR.SYS Install Check */
122         /* Not supported yet, do nothing */
123         break;
124
125     case 0x43:
126 #if 1
127        switch (LOBYTE(context->Eax))
128        {
129        case 0x00:   /* XMS v2+ installation check */
130            WARN("XMS is not fully implemented\n");
131            SET_AL( context, 0x80 );
132            break;
133        case 0x10:   /* XMS v2+ get driver address */
134        {
135             context->SegEs = DOSVM_dpmi_segments->xms_seg;
136             SET_BX( context, 0 );
137             break;
138        }
139        default:
140            INT_BARF( context, 0x2f );
141        }
142 #else
143        FIXME("check for XMS (not supported)\n");
144        SET_AL( context, 0x42 ); /* != 0x80 */
145 #endif
146        break;
147
148     case 0x45:
149        switch (LOBYTE(context->Eax))
150        {
151        case 0x00:
152        case 0x01:
153        case 0x02:
154        case 0x03:
155        case 0x04:
156        case 0x05:
157        case 0x06:
158        case 0x07:
159        case 0x08:
160            /* Microsoft Profiler - not installed */
161            break;
162        default:
163             INT_BARF( context, 0x2f );
164        }
165        break;
166
167     case 0x4a:
168         switch(LOBYTE(context->Eax))
169         {
170        case 0x10:  /* smartdrv */
171            break;  /* not installed */
172         case 0x11:  /* dblspace */
173             break;  /* not installed */
174         case 0x12:  /* realtime compression interface */
175             break;  /* not installed */
176         case 0x32:  /* patch IO.SYS (???) */
177             break;  /* we have no IO.SYS, so we can't patch it :-/ */
178         default:
179             INT_BARF( context, 0x2f );
180         }
181         break;
182     case 0x4b:
183        switch(LOBYTE(context->Eax))
184        {
185        case 0x01:
186        case 0x02:
187        case 0x03:
188        case 0x04:
189        case 0x05:
190            FIXME("Task Switcher - not implemented\n");
191            break;
192        default:
193            INT_BARF( context, 0x2f );
194        }
195        break;
196     case 0x56:  /* INTERLNK */
197        switch(LOBYTE(context->Eax))
198        {
199        case 0x01:  /* check if redirected drive */
200            SET_AL( context, 0 ); /* not redirected */
201            break;
202        default:
203            INT_BARF( context, 0x2f );
204        }
205        break;
206     case 0x7a:  /* NOVELL NetWare */
207         switch (LOBYTE(context->Eax))
208         {
209        case 0x0:  /* Low-level Netware installation check AL=0 not installed.*/
210             SET_AL( context, 0 );
211             break;
212         case 0x20:  /* Get VLM Call Address */
213             /* return nothing -> NetWare not installed */
214             break;
215         default:
216            INT_BARF( context, 0x2f );
217             break;
218         }
219         break;
220     case 0xb7:  /* append */
221         SET_AL( context, 0 ); /* not installed */
222         break;
223     case 0xb8:  /* network */
224         switch (LOBYTE(context->Eax))
225         {
226         case 0x00:  /* Install check */
227             /* not installed */
228             break;
229         default:
230            INT_BARF( context, 0x2f );
231             break;
232         }
233         break;
234     case 0xbd:  /* some Novell network install check ??? */
235         SET_AX( context, 0xa5a5 ); /* pretend to have Novell IPX installed */
236        break;
237     case 0xbf:  /* REDIRIFS.EXE */
238         switch (LOBYTE(context->Eax))
239         {
240         case 0x00:  /* Install check */
241             /* not installed */
242             break;
243         default:
244            INT_BARF( context, 0x2f );
245             break;
246         }
247         break;
248     case 0xd2:
249        switch(LOBYTE(context->Eax))
250        {
251        case 0x01: /* Quarterdeck RPCI - QEMM/QRAM - PCL-838.EXE functions */
252            if(BX_reg(context) == 0x5145 && CX_reg(context) == 0x4D4D
253              && DX_reg(context) == 0x3432)
254                TRACE("Check for QEMM v5.0+ (not installed)\n");
255                break;
256        default:
257            INT_BARF( context, 0x2f );
258            break;
259        }
260        break;
261     case 0xd7:  /* Banyan Vines */
262         switch (LOBYTE(context->Eax))
263         {
264         case 0x01:  /* Install check - Get Int Number */
265             /* not installed */
266             break;
267         default:
268            INT_BARF( context, 0x2f );
269             break;
270         }
271         break;
272     case 0xde:
273        switch(LOBYTE(context->Eax))
274        {
275        case 0x01:   /* Quarterdeck QDPMI.SYS - DESQview */
276            if(BX_reg(context) == 0x4450 && CX_reg(context) == 0x4d49
277              && DX_reg(context) == 0x8f4f)
278                TRACE("Check for QDPMI.SYS (not installed)\n");
279                break;
280        default:
281            INT_BARF( context, 0x2f );
282            break;
283        }
284        break;
285     case 0xfa:  /* Watcom debugger check, returns 0x666 if installed */
286         break;
287     default:
288         INT_BARF( context, 0x2f );
289         break;
290     }
291 }
292
293
294 /**********************************************************************
295  *         do_int2f_16
296  */
297 static void do_int2f_16( CONTEXT86 *context )
298 {
299     DWORD addr;
300
301     switch(LOBYTE(context->Eax))
302     {
303     case 0x00:  /* Windows enhanced mode installation check */
304         SET_AX( context, (GetWinFlags16() & WF_ENHANCED) ? LOWORD(GetVersion16()) : 0 );
305         break;
306
307     case 0x0a:  /* Get Windows version and type */
308         SET_AX( context, 0 );
309         SET_BX( context, (LOWORD(GetVersion16()) << 8) | (LOWORD(GetVersion16()) >> 8) );
310         SET_CX( context, (GetWinFlags16() & WF_ENHANCED) ? 3 : 2 );
311         break;
312
313     case 0x0b:  /* Identify Windows-aware TSRs */
314         /* we don't have any pre-Windows TSRs */
315         break;
316
317     case 0x11:  /* Get Shell Parameters - (SHELL= in CONFIG.SYS) */
318         /* We can mock this up. But not today... */
319         FIXME("Get Shell Parameters\n");
320         break;
321
322     case 0x80:  /* Release time-slice */
323        /* Linux sched_yield() still keeps burning CPU cycles
324         * if the current process is the only one in highest priority list
325         * (as Linux will immediately return to this process to waste
326         * more CPU cycles), so sched_yield() is essentially useless for us
327         * (poor API, if you ask me: its return code should indicate
328         * whether other processes did run in between, in order for us
329         * to be able to decide whether to do an additional Sleep() or not...)
330         * Thus we better unconditionally use a well-balanced Sleep()
331         * instead to really make sure the process calling int 0x2f/0x1680
332         * *doesn't* use 100% CPU...
333         */
334        Sleep(55); /* just wait 55ms (one "timer tick") for now. */
335        SET_AL( context, 0 );
336         break;
337
338     case 0x81: /* Begin critical section.  */
339         /* FIXME? */
340         break;
341
342     case 0x82: /* End critical section.  */
343         /* FIXME? */
344         break;
345
346     case 0x83:  /* Return Current Virtual Machine ID */
347         /* Virtual Machines are usually created/destroyed when Windows runs
348          * DOS programs. Since we never do, we are always in the System VM.
349          * According to Ralf Brown's Interrupt List, never return 0. But it
350          * seems to work okay (returning 0), just to be sure we return 1.
351          */
352        SET_BX( context, 1 ); /* VM 1 is probably the System VM */
353        break;
354
355     case 0x84:  /* Get device API entry point */
356         {
357             HMODULE16 mod = GetModuleHandle16("wprocs");
358             if (mod < 32) mod = LoadLibrary16( "wprocs" );
359             addr = (DWORD)GetProcAddress16( mod, (LPCSTR)(VXD_BASE + BX_reg(context)) );
360             if (!addr)  /* not supported */
361                 ERR("Accessing unknown VxD %04x - Expect a failure now.\n", BX_reg(context) );
362             context->SegEs = SELECTOROF(addr);
363             SET_DI( context, OFFSETOF(addr) );
364         }
365        break;
366
367     case 0x86:  /* DPMI detect mode */
368         SET_AX( context, 0 );  /* Running under DPMI */
369         break;
370
371     case 0x87: /* DPMI installation check */
372         {
373            SYSTEM_INFO si;
374            GetSystemInfo(&si);
375            SET_AX( context, 0x0000 ); /* DPMI Installed */
376             SET_BX( context, 0x0001 ); /* 32bits available */
377             SET_CL( context, si.wProcessorLevel );
378             SET_DX( context, 0x005a ); /* DPMI major/minor 0.90 */
379             SET_SI( context, 0 );      /* # of para. of DOS extended private data */
380             context->SegEs = DOSVM_dpmi_segments->dpmi_seg;
381             SET_DI( context, 0 );      /* ES:DI is DPMI switch entry point */
382             break;
383         }
384     case 0x8a:  /* DPMI get vendor-specific API entry point. */
385        /* The 1.0 specs say this should work with all 0.9 hosts.  */
386        break;
387
388     default:
389         INT_BARF( context, 0x2f );
390     }
391 }
392
393 /* FIXME: this macro may have to be changed on architectures where <size> reads/writes
394  * must be <size> aligned
395  * <size> could be WORD, DWORD...
396  * in this case, we would need two macros, one for read, the other one for write
397  * Note: PTR_AT can be used as an l-value
398  */
399 #define        PTR_AT(_ptr, _ofs, _typ)        (*((_typ*)(((char*)_ptr)+(_ofs))))
400
401 /* Use #if 1 if you want full int 2f debug... normal users can leave it at 0 */
402 #if 0
403 /**********************************************************************
404  *         MSCDEX_Dump                                 [internal]
405  *
406  * Dumps mscdex requests to int debug channel.
407  */
408 static void    MSCDEX_Dump(char* pfx, BYTE* req, int dorealmode)
409 {
410     int        i;
411     BYTE       buf[2048];
412     BYTE*      ptr;
413     BYTE*      ios;
414
415     ptr = buf;
416     ptr += sprintf(ptr, "%s\tCommand => ", pfx);
417     for (i = 0; i < req[0]; i++) {
418        ptr += sprintf(ptr, "%02x ", req[i]);
419     }
420
421     switch (req[2]) {
422     case 3:
423     case 12:
424        ptr += sprintf(ptr, "\n\t\t\t\tIO_struct => ");
425        ios = (dorealmode) ? PTR_REAL_TO_LIN( PTR_AT(req, 16, WORD), PTR_AT(req, 14, WORD)) :
426                              MapSL(MAKESEGPTR(PTR_AT(req, 16, WORD), PTR_AT(req, 14, WORD)));
427
428        for (i = 0; i < PTR_AT(req, 18, WORD); i++) {
429            ptr += sprintf(ptr, "%02x ", ios[i]);
430            if ((i & 0x1F) == 0x1F) {
431                *ptr++ = '\n';
432                *ptr = 0;
433            }
434        }
435        break;
436     }
437     TRACE("%s\n", buf);
438 }
439 #else
440 #define MSCDEX_Dump(pfx, req, drm)
441 #endif
442
443 #define CDFRAMES_PERSEC                 75
444 #define CDFRAMES_PERMIN                 (CDFRAMES_PERSEC * 60)
445 #define FRAME_OF_ADDR(a)        ((a)[1] * CDFRAMES_PERMIN + (a)[2] * CDFRAMES_PERSEC + (a)[3])
446 #define FRAME_OF_TOC(toc, idx)  FRAME_OF_ADDR((toc).TrackData[idx - (toc).FirstTrack].Address)
447 #define CTRL_OF_TOC(toc, idx)   (((toc).TrackData[idx - (toc).FirstTrack].Control << 4) | \
448                                   (toc).TrackData[idx - (toc).FirstTrack].Adr)
449
450 static void    MSCDEX_StoreMSF(DWORD frame, BYTE* val)
451 {
452     val[3] = 0;        /* zero */
453     val[2] = frame / CDFRAMES_PERMIN; /* minutes */
454     val[1] = (frame / CDFRAMES_PERSEC) % 60; /* seconds */
455     val[0] = frame % CDFRAMES_PERSEC; /* frames */
456 }
457
458 static int is_cdrom( int drive)
459 {
460     char root[] = "A:\\";
461     root[0] += drive;
462     return (GetDriveTypeA(root) == DRIVE_CDROM);
463 }
464
465 static void MSCDEX_Handler(CONTEXT86* context)
466 {
467     int        drive, count;
468     char*      p;
469
470     switch (LOBYTE(context->Eax)) {
471     case 0x00: /* Installation check */
472        /* Count the number of contiguous CDROM drives
473         */
474        for (drive = count = 0; drive < 26; drive++) {
475            if (is_cdrom(drive)) {
476                while (is_cdrom(drive + count)) count++;
477                break;
478            }
479        }
480        TRACE("Installation check: %d cdroms, starting at %d\n", count, drive);
481        SET_BX( context, count );
482        SET_CX( context, (drive < 26) ? drive : 0 );
483        break;
484
485     case 0x0B: /* drive check */
486        SET_AX( context, is_cdrom(CX_reg(context)) );
487        SET_BX( context, 0xADAD );
488        break;
489
490     case 0x0C: /* get version */
491        SET_BX( context, 0x020a );
492        TRACE("Version number => %04x\n", BX_reg(context));
493        break;
494
495     case 0x0D: /* get drive letters */
496        p = CTX_SEG_OFF_TO_LIN(context, context->SegEs, context->Ebx);
497        memset(p, 0, 26);
498        for (drive = 0; drive < 26; drive++) {
499            if (is_cdrom(drive)) *p++ = drive;
500        }
501        TRACE("Get drive letters\n");
502        break;
503
504     case 0x10: /* direct driver access */
505        {
506            BYTE*       driver_request;
507            BYTE*       io_stru;
508            BYTE        Error = 255; /* No Error */
509            int         dorealmode = ISV86(context);
510             char        devName[] = "\\\\.\\@:";
511            HANDLE      h;
512             CDROM_TOC                   toc;
513             CDROM_SUB_Q_DATA_FORMAT     fmt;
514             SUB_Q_CHANNEL_DATA          data;
515             DWORD                       br;
516             DWORD                       present = TRUE;
517
518            driver_request = CTX_SEG_OFF_TO_LIN(context, context->SegEs, context->Ebx);
519
520            if (!driver_request) {
521                /* FIXME - to be deleted ?? */
522                ERR("ES:BX==0 ! SEGFAULT ?\n");
523                ERR("-->BX=0x%04x, ES=0x%04lx, DS=0x%04lx, CX=0x%04x\n",
524                    BX_reg(context), context->SegEs, context->SegDs, CX_reg(context));
525                driver_request[4] |= 0x80;
526                driver_request[3] = 5;  /* bad request length */
527                return;
528            }
529            /* FIXME
530              * the following tests are wrong because lots of functions don't require the
531              * tray to be closed with a CD inside
532             */
533            TRACE("CDROM device driver -> command <%d>\n", (unsigned char)driver_request[2]);
534
535            if (!is_cdrom(CX_reg(context))) {
536                WARN("Request made doesn't match a CD ROM drive (%d)\n", CX_reg(context));
537                driver_request[4] |= 0x80;
538                driver_request[3] = 1;  /* unknown unit */
539                return;
540            }
541
542            MSCDEX_Dump("Beg", driver_request, dorealmode);
543
544            /* set status to 0 */
545            PTR_AT(driver_request, 3, WORD) = 0;
546             devName[4] = 'A' + CX_reg(context);
547             h = CreateFileA(devName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
548             if (!h) {
549                WARN("Couldn't open cdrom handle\n");
550                driver_request[4] |= 0x80;
551                driver_request[3] = 1;  /* unknown unit */
552                return;
553            }
554
555             fmt.Format = IOCTL_CDROM_CURRENT_POSITION;
556             if (!DeviceIoControl(h, IOCTL_CDROM_READ_TOC, NULL, 0, &toc, sizeof(toc), &br, NULL) ||
557                 !DeviceIoControl(h, IOCTL_CDROM_READ_Q_CHANNEL, &fmt, sizeof(fmt),
558                                  &data, sizeof(data), &br, NULL)) {
559                 if (GetLastError() == STATUS_NO_MEDIA_IN_DEVICE)
560                 {
561                     if (driver_request[2] != 6 && driver_request[2] != 15)
562                     {
563                         driver_request[4] |= 0x80;
564                         driver_request[3] = 2; /* drive not ready */
565                         CloseHandle(h);
566                         return;
567                     }
568                     present = FALSE;
569                 }
570                 else
571                 {
572                     driver_request[4] |= 0x80;
573                     driver_request[3] = 1;     /* unknown unit */
574                     CloseHandle(h);
575                     return;
576                 }
577             }
578
579            switch (driver_request[2]) {
580            case 3:
581                io_stru = (dorealmode) ?
582                     PTR_REAL_TO_LIN( PTR_AT(driver_request, 16, WORD), PTR_AT(driver_request, 14, WORD) ) :
583                        MapSL( MAKESEGPTR(PTR_AT(driver_request, 16, WORD), PTR_AT(driver_request, 14, WORD)));
584
585                TRACE(" --> IOCTL INPUT <%d>\n", io_stru[0]);
586                switch (io_stru[0]) {
587 #if 0
588                case 0: /* Get device Header */
589                    {
590                        static  LPSTR ptr = 0;
591                        if (ptr == 0)   {
592                            ptr = SEGPTR_ALLOC(22);
593                            PTR_AT(ptr,  0, DWORD) = ~1;        /* Next Device Driver */
594                            PTR_AT(ptr,  4,  WORD) = 0xC800;    /* Device attributes  */
595                            PTR_AT(ptr,  6,  WORD) = 0x1234;    /* Pointer to device strategy routine: FIXME */
596                            PTR_AT(ptr,  8,  WORD) = 0x3142;    /* Pointer to device interrupt routine: FIXME */
597                            PTR_AT(ptr, 10,  char) = 'W';       /* 8-byte character device name field */
598                            PTR_AT(ptr, 11,  char) = 'I';
599                            PTR_AT(ptr, 12,  char) = 'N';
600                            PTR_AT(ptr, 13,  char) = 'E';
601                            PTR_AT(ptr, 14,  char) = '_';
602                            PTR_AT(ptr, 15,  char) = 'C';
603                            PTR_AT(ptr, 16,  char) = 'D';
604                            PTR_AT(ptr, 17,  char) = '_';
605                            PTR_AT(ptr, 18,  WORD) = 0;         /* Reserved (must be zero) */
606                            PTR_AT(ptr, 20,  BYTE) = 0;         /* Drive letter (must be zero) */
607                            PTR_AT(ptr, 21,  BYTE) = 1;         /* Number of units supported (one or more) FIXME*/
608                        }
609                        PTR_AT(io_stru, DWORD,  0) = SEGPTR_GET(ptr);
610                    }
611                    break;
612 #endif
613
614                case 1: /* location of head */
615                    switch (io_stru[1]) {
616                    case 0:
617                        PTR_AT(io_stru, 2, DWORD) =
618                             FRAME_OF_ADDR(data.CurrentPosition.AbsoluteAddress);
619                        break;
620                    case 1:
621                        MSCDEX_StoreMSF(FRAME_OF_ADDR(data.CurrentPosition.AbsoluteAddress),
622                                         io_stru + 2);
623                        break;
624                    default:
625                        ERR("CD-ROM driver: unsupported addressing mode !!\n");
626                        Error = 0x0c;
627                    }
628                    TRACE(" ----> HEAD LOCATION <%ld>\n", PTR_AT(io_stru, 2, DWORD));
629                    break;
630
631                case 4: /* Audio channel info */
632                    io_stru[1] = 0;
633                    io_stru[2] = 0xff;
634                    io_stru[3] = 1;
635                    io_stru[4] = 0xff;
636                    io_stru[5] = 2;
637                    io_stru[6] = 0;
638                    io_stru[7] = 3;
639                    io_stru[8] = 0;
640                    TRACE(" ----> AUDIO CHANNEL INFO\n");
641                    break;
642
643                case 6: /* device status */
644                    PTR_AT(io_stru, 1, DWORD) = 0x00000290;
645                    /* 290 =>
646                     * 1        Supports HSG and Red Book addressing modes
647                     * 0        Supports audio channel manipulation
648                     *
649                     * 1        Supports prefetching requests
650                     * 0        Reserved
651                     * 0        No interleaving
652                     * 1        Data read and plays audio/video tracks
653                     *
654                     * 0        Read only
655                     * 0        Supports only cooked reading
656                     * 0        Door locked
657                     * 0        see below (Door closed/opened)
658                     */
659                    if (!present) PTR_AT(io_stru, 1, DWORD) |= 1;
660                    TRACE(" ----> DEVICE STATUS <0x%08lx>\n", PTR_AT(io_stru, 1, DWORD));
661                    break;
662
663                case 8: /* Volume size */
664                    PTR_AT(io_stru, 1, DWORD) = FRAME_OF_TOC(toc, toc.LastTrack + 1) -
665                         FRAME_OF_TOC(toc, toc.FirstTrack) - 1;
666                    TRACE(" ----> VOLUME SIZE <%ld>\n", PTR_AT(io_stru, 1, DWORD));
667                    break;
668
669                case 9: /* media changed ? */
670                    /* answers don't know... -1/1 for yes/no would be better */
671                    io_stru[1] = 0; /* FIXME? 1? */
672                    TRACE(" ----> MEDIA CHANGED <%d>\n", io_stru[1]);
673                    break;
674
675                case 10: /* audio disk info */
676                    io_stru[1] = toc.FirstTrack; /* starting track of the disc */
677                    io_stru[2] = toc.LastTrack;  /* ending track */
678                    MSCDEX_StoreMSF(FRAME_OF_TOC(toc, toc.LastTrack + 1) -
679                                     FRAME_OF_TOC(toc, toc.FirstTrack) - 1, io_stru + 3);
680
681                    TRACE(" ----> AUDIO DISK INFO <%d-%d/%08lx>\n",
682                          io_stru[1], io_stru[2], PTR_AT(io_stru, 3, DWORD));
683                    break;
684
685                case 11: /* audio track info */
686                    if (io_stru[1] >= toc.FirstTrack && io_stru[1] <= toc.LastTrack) {
687                        MSCDEX_StoreMSF(FRAME_OF_TOC(toc, io_stru[1]), io_stru + 2);
688                        /* starting point if the track */
689                        io_stru[6] = CTRL_OF_TOC(toc, io_stru[1]);
690                    } else {
691                        PTR_AT(io_stru, 2, DWORD) = 0;
692                        io_stru[6] = 0;
693                    }
694                    TRACE(" ----> AUDIO TRACK INFO[%d] = [%08lx:%d]\n",
695                          io_stru[1], PTR_AT(io_stru, 2, DWORD), io_stru[6]);
696                    break;
697
698                case 12: /* get Q-Channel info */
699                    io_stru[1] = CTRL_OF_TOC(toc, data.CurrentPosition.TrackNumber);
700                    io_stru[2] = data.CurrentPosition.TrackNumber;
701                    io_stru[3] = 0; /* FIXME ?? */
702
703                    /* why the heck did MS use another format for 0MSF information... sigh */
704                    {
705                        BYTE    bTmp[4];
706
707                        MSCDEX_StoreMSF(FRAME_OF_ADDR(data.CurrentPosition.TrackRelativeAddress), bTmp);
708                        io_stru[ 4] = bTmp[2];
709                        io_stru[ 5] = bTmp[1];
710                        io_stru[ 6] = bTmp[0];
711                        io_stru[ 7] = 0;
712
713                        MSCDEX_StoreMSF(FRAME_OF_ADDR(data.CurrentPosition.AbsoluteAddress), bTmp);
714                        io_stru[ 8] = bTmp[2];
715                        io_stru[ 9] = bTmp[1];
716                        io_stru[10] = bTmp[0];
717                        io_stru[11] = 0;
718                    }
719                    TRACE("Q-Channel info: Ctrl/adr=%02x TNO=%02x X=%02x rtt=%02x:%02x:%02x rtd=%02x:%02x:%02x (cf=%08x, tp=%08x)\n",
720                          io_stru[ 1], io_stru[ 2], io_stru[ 3],
721                          io_stru[ 4], io_stru[ 5], io_stru[ 6],
722                          io_stru[ 8], io_stru[ 9], io_stru[10],
723                          FRAME_OF_ADDR(data.CurrentPosition.AbsoluteAddress),
724                           FRAME_OF_TOC(toc, data.CurrentPosition.TrackNumber));
725                    break;
726
727                case 15: /* Audio status info */
728                    /* !!!! FIXME FIXME FIXME !! */
729                    PTR_AT(io_stru, 1,  WORD) = 2 | ((data.CurrentPosition.Header.AudioStatus == AUDIO_STATUS_PAUSED) ? 1 : 0);
730                    if (!present) {
731                        PTR_AT(io_stru, 3, DWORD) = 0;
732                        PTR_AT(io_stru, 7, DWORD) = 0;
733                    } else {
734                        PTR_AT(io_stru, 3, DWORD) = FRAME_OF_TOC(toc, toc.FirstTrack);
735                        PTR_AT(io_stru, 7, DWORD) = FRAME_OF_TOC(toc, toc.LastTrack + 1);
736                    }
737                    TRACE("Audio status info: status=%04x startLoc=%ld endLoc=%ld\n",
738                          PTR_AT(io_stru, 1, WORD), PTR_AT(io_stru, 3, DWORD), PTR_AT(io_stru, 7, DWORD));
739                    break;
740
741                default:
742                    FIXME("IOCTL INPUT: Unimplemented <%d>!!\n", io_stru[0]);
743                    Error = 0x0c;
744                    break;
745                }
746                break;
747
748            case 12:
749                io_stru = (dorealmode) ?
750                    PTR_REAL_TO_LIN( PTR_AT(driver_request, 16, WORD), PTR_AT(driver_request, 14, WORD)) :
751                        MapSL( MAKESEGPTR(PTR_AT(driver_request, 16, WORD), PTR_AT(driver_request, 14, WORD)));
752
753                TRACE(" --> IOCTL OUTPUT <%d>\n", io_stru[0]);
754                switch (io_stru[0]) {
755                case 0: /* eject */
756                     DeviceIoControl(h, IOCTL_STORAGE_EJECT_MEDIA, NULL, 0, NULL, 0, &br, NULL);
757                    TRACE(" ----> EJECT\n");
758                    break;
759                case 2: /* reset drive */
760                    DeviceIoControl(h, IOCTL_STORAGE_RESET_DEVICE, NULL, 0, NULL, 0, &br, NULL);
761                    TRACE(" ----> RESET\n");
762                    break;
763                case 3: /* Audio Channel Control */
764                    FIXME(" ----> AUDIO CHANNEL CONTROL (NIY)\n");
765                    break;
766                case 5: /* close tray */
767                     DeviceIoControl(h, IOCTL_STORAGE_LOAD_MEDIA, NULL, 0, NULL, 0, &br, NULL);
768                    TRACE(" ----> CLOSE TRAY\n");
769                    break;
770                default:
771                    FIXME(" IOCTL OUTPUT: Unimplemented <%d>!!\n", io_stru[0]);
772                    Error = 0x0c;
773                    break;
774                }
775                break;
776
777             case 128: /* read long */
778                 {
779                     LPVOID              dst = MapSL(MAKESEGPTR(PTR_AT(driver_request, 16, WORD),
780                                                                PTR_AT(driver_request, 14, WORD)));
781                     DWORD               at = PTR_AT(driver_request, 20, DWORD);
782                     WORD                num = PTR_AT(driver_request, 18, WORD);
783                     RAW_READ_INFO       rri;
784
785                    switch (driver_request[13]) {
786                    case 1: /* Red book addressing mode = 0:m:s:f */
787                        /* FIXME : frame <=> msf conversion routines could be shared
788                         * between mscdex and mcicda
789                         */
790                        at = LOBYTE(HIWORD(at)) * CDFRAMES_PERMIN +
791                            HIBYTE(LOWORD(at)) * CDFRAMES_PERSEC +
792                            LOBYTE(LOWORD(at));
793                        /* fall through */
794                    case 0: /* HSG addressing mode */
795                         switch (PTR_AT(driver_request, 24, BYTE))
796                         {
797                         case 0: /* cooked */
798                             ReadFile(h, dst, num * 2048, &br, NULL);
799                             break;
800                         case 1:
801                             /* FIXME: computation is wrong */
802                             rri.DiskOffset.s.HighPart = 0;
803                             rri.DiskOffset.s.LowPart = at << 11;
804                             rri.TrackMode = YellowMode2;
805                             rri.SectorCount = num;
806                             DeviceIoControl(h, IOCTL_CDROM_RAW_READ, &rri, sizeof(rri),
807                                             dst, num * 2352, &br, NULL);
808                        break;
809                         default:
810                             ERR("Unsupported read mode !!\n");
811                             Error = 0x0c;
812                             break;
813                         }
814                         break;
815                    default:
816                        ERR("Unsupported address mode !!\n");
817                        Error = 0x0c;
818                        break;
819                    }
820                 }
821                 break;
822
823            case 131: /* seek */
824                {
825                    DWORD                       at;
826                     CDROM_SEEK_AUDIO_MSF        seek;
827
828                    at = PTR_AT(driver_request, 20, DWORD);
829
830                    TRACE(" --> SEEK AUDIO mode :<0x%02X>, [%ld]\n",
831                          (BYTE)driver_request[13], at);
832
833                    switch (driver_request[13]) {
834                    case 1: /* Red book addressing mode = 0:m:s:f */
835                        /* FIXME : frame <=> msf conversion routines could be shared
836                         * between mscdex and mcicda
837                         */
838                        at = LOBYTE(HIWORD(at)) * CDFRAMES_PERMIN +
839                            HIBYTE(LOWORD(at)) * CDFRAMES_PERSEC +
840                            LOBYTE(LOWORD(at));
841                        /* fall through */
842                    case 0: /* HSG addressing mode */
843                         seek.M = at / CDFRAMES_PERMIN;
844                         seek.S = (at / CDFRAMES_PERSEC) % 60;
845                         seek.F = at % CDFRAMES_PERSEC;
846                         DeviceIoControl(h, IOCTL_CDROM_SEEK_AUDIO_MSF, &seek, sizeof(seek),
847                                         NULL, 0, &br, NULL);
848                        break;
849                    default:
850                        ERR("Unsupported address mode !!\n");
851                        Error = 0x0c;
852                        break;
853                    }
854                }
855                break;
856
857            case 132: /* play */
858                {
859                    DWORD                       beg, end;
860                     CDROM_PLAY_AUDIO_MSF        play;
861
862                    beg = end = PTR_AT(driver_request, 14, DWORD);
863                    end += PTR_AT(driver_request, 18, DWORD);
864
865                    TRACE(" --> PLAY AUDIO mode :<0x%02X>, [%ld-%ld]\n",
866                          (BYTE)driver_request[13], beg, end);
867
868                    switch (driver_request[13]) {
869                    case 1:
870                        /* Red book addressing mode = 0:m:s:f */
871                        /* FIXME : frame <=> msf conversion routines could be shared
872                         * between mscdex and mcicda
873                         */
874                        beg = LOBYTE(LOWORD(beg)) * CDFRAMES_PERMIN +
875                            HIBYTE(LOWORD(beg)) * CDFRAMES_PERSEC +
876                            LOBYTE(HIWORD(beg));
877                        end = LOBYTE(LOWORD(end)) * CDFRAMES_PERMIN +
878                            HIBYTE(LOWORD(end)) * CDFRAMES_PERSEC +
879                            LOBYTE(HIWORD(end));
880                        /* fall through */
881                    case 0: /* HSG addressing mode */
882                         play.StartingM = beg / CDFRAMES_PERMIN;
883                         play.StartingS = (beg / CDFRAMES_PERSEC) % 60;
884                         play.StartingF = beg % CDFRAMES_PERSEC;
885                         play.EndingM   = end / CDFRAMES_PERMIN;
886                         play.EndingS   = (end / CDFRAMES_PERSEC) % 60;
887                         play.EndingF   = end % CDFRAMES_PERSEC;
888                         DeviceIoControl(h, IOCTL_CDROM_PLAY_AUDIO_MSF, &play, sizeof(play),
889                                         NULL, 0, &br, NULL);
890                        break;
891                    default:
892                        ERR("Unsupported address mode !!\n");
893                        Error = 0x0c;
894                        break;
895                    }
896                }
897                break;
898
899            case 133:
900                if (data.CurrentPosition.Header.AudioStatus == AUDIO_STATUS_IN_PROGRESS) {
901                     DeviceIoControl(h, IOCTL_CDROM_PAUSE_AUDIO, NULL, 0, NULL, 0, &br, NULL);
902                    TRACE(" --> STOP AUDIO (Paused)\n");
903                } else {
904                     DeviceIoControl(h, IOCTL_CDROM_STOP_AUDIO, NULL, 0, NULL, 0, &br, NULL);
905                    TRACE(" --> STOP AUDIO (Stopped)\n");
906                }
907                break;
908
909            case 136:
910                TRACE(" --> RESUME AUDIO\n");
911                 DeviceIoControl(h, IOCTL_CDROM_PAUSE_AUDIO, NULL, 0, NULL, 0, &br, NULL);
912                break;
913
914            default:
915                FIXME(" ioctl unimplemented <%d>\n", driver_request[2]);
916                Error = 0x0c;
917            }
918
919            /* setting error codes if any */
920            if (Error < 255) {
921                driver_request[4] |= 0x80;
922                driver_request[3] = Error;
923            }
924
925            CloseHandle(h);
926            /* setting status bits
927             * 3 == playing && done
928             * 1 == done
929             */
930            driver_request[4] |=
931                 (data.CurrentPosition.Header.AudioStatus == AUDIO_STATUS_IN_PROGRESS) ? 3 : 1;
932
933            MSCDEX_Dump("End", driver_request, dorealmode);
934        }
935        break;
936     default:
937        FIXME("Unimplemented MSCDEX function 0x%02X.\n", LOBYTE(context->Eax));
938        break;
939     }
940 }