summaryrefslogtreecommitdiffstats
path: root/private/utils/windisk/src/fmifs.cxx
blob: b5ee60061efdddf3230e54559b0fac45327e1515 (plain) (blame)
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
//+---------------------------------------------------------------------------
//
//  Microsoft Windows
//  Copyright (C) Microsoft Corporation, 1992 - 1994.
//
//  File:       fmifs.cxx
//
//  Contents:   Routines that work with fmifs.dll
//
//  History:    7-Jan-94   BruceFo   Adapted from BobRi's Daytona code
//
//----------------------------------------------------------------------------

#include "headers.hxx"
#pragma hdrstop

#include "drives.hxx"
#include "fmifs.hxx"
#include "nt.hxx"
#include "format.hxx"
#include "windisk.hxx"

//
// Externals needed for IFS Dll support (format and label)
//


TCHAR szFmifsDll[] = TEXT("fmifs.dll");
HMODULE g_hFmifsDll = NULL;

PFMIFS_FORMAT_ROUTINE                   lpfnFormat = NULL;
PFMIFS_CHKDSK_ROUTINE                   lpfnChkdsk = NULL;
PFMIFS_SETLABEL_ROUTINE                 lpfnSetLabel = NULL;

#if defined( DBLSPACE_ENABLED )

PFMIFS_DOUBLESPACE_CREATE_ROUTINE       DblSpaceCreateRoutine       = NULL;
PFMIFS_DOUBLESPACE_MOUNT_ROUTINE        DblSpaceMountRoutine        = NULL;
PFMIFS_DOUBLESPACE_DELETE_ROUTINE       DblSpaceDeleteRoutine       = NULL;
PFMIFS_DOUBLESPACE_DISMOUNT_ROUTINE     DblSpaceDismountRoutine     = NULL;
PFMIFS_DOUBLESPACE_QUERY_INFO_ROUTINE   DblSpaceQueryInfoRoutine    = NULL;

BOOL g_DoubleSpaceSupported = TRUE;
BOOL g_IsFullDoubleSpace = FALSE;

#endif // DBLSPACE_ENABLED

BOOL g_ChkdskSupported = TRUE;


//+-------------------------------------------------------------------------
//
//  Function:   LoadFmifs
//
//  Synopsis:   If the fmifs DLL is not already loaded, then load it.
//
//  Arguments:  none
//
//  Returns:    TRUE if the load was successful, FALSE otherwise
//
//  History:    16-Aug-93 BruceFo   Created
//
//--------------------------------------------------------------------------

BOOL
LoadFmifs(
    VOID
    )
{
    if (NULL == g_hFmifsDll)
    {
        SetCursor(g_hCurWait);
        g_hFmifsDll = LoadLibrary(szFmifsDll);
        SetCursor(g_hCurNormal);

        if (NULL == g_hFmifsDll)
        {
            daDebugOut((DEB_ERROR,"Couldn't load %ws: error 0x%x\n",
                    szFmifsDll,
                    GetLastError()
                    ));

            ErrorDialog(MSG_NOFMIFS);
            return FALSE;
        }
        else
        {
#if defined( DBLSPACE_ENABLED )
            g_DoubleSpaceSupported = TRUE;
            g_IsFullDoubleSpace = FALSE;
#endif // DBLSPACE_ENABLED

            g_ChkdskSupported = TRUE;

            daDebugOut((DEB_ITRACE,"Loaded %ws: handle 0x%x\n",
                    szFmifsDll,
                    g_hFmifsDll));

            lpfnFormat = (PFMIFS_FORMAT_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "Format");

            if (!lpfnFormat)
            {
                daDebugOut((DEB_ERROR,
                        "Couldn't get 'Format', 0x%x, 0x%x\n",
                        lpfnFormat,
                        GetLastError()));
            }

            lpfnSetLabel = (PFMIFS_SETLABEL_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "SetLabel");

            if (!lpfnSetLabel)
            {
                daDebugOut((DEB_ERROR,
                        "Couldn't get 'SetLabel', 0x%x, 0x%x\n",
                        lpfnSetLabel,
                        GetLastError()));
            }

            if (   !lpfnFormat
                || !lpfnSetLabel)
            {
                //
                // If we didn't get at least Format and SetLabel, there
                // is something seriously wrong.
                //

                FreeLibrary(g_hFmifsDll);
                g_hFmifsDll = NULL;
                ErrorDialog(MSG_NOFMIFS);
                return FALSE;
            }

            lpfnChkdsk = (PFMIFS_CHKDSK_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "Chkdsk");

            if (!lpfnChkdsk)
            {
                daDebugOut((DEB_ERROR,
                        "Couldn't get 'Chkdsk', 0x%x, 0x%x\n",
                        lpfnChkdsk,
                        GetLastError()));
            }

            if (!lpfnChkdsk)
            {
                // Might be 3.1 or Daytona w/o this entrypoint

                g_ChkdskSupported = FALSE;
            }

#if defined( DBLSPACE_ENABLED )

            DblSpaceMountRoutine    = (PFMIFS_DOUBLESPACE_MOUNT_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "DoubleSpaceMount");

            DblSpaceDismountRoutine = (PFMIFS_DOUBLESPACE_DISMOUNT_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "DoubleSpaceDismount");

            DblSpaceQueryInfoRoutine = (PFMIFS_DOUBLESPACE_QUERY_INFO_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "FmifsQueryDriveInformation");

            if (   !DblSpaceMountRoutine
                || !DblSpaceDismountRoutine
                || !DblSpaceQueryInfoRoutine)
            {
                // didn't get all of the DoubleSpace support routines
                // Allow format and label, just don't do DoubleSpace

                g_DoubleSpaceSupported = FALSE;
            }

            DblSpaceCreateRoutine   = (PFMIFS_DOUBLESPACE_CREATE_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "DoubleSpaceCreate");

            DblSpaceDeleteRoutine   = (PFMIFS_DOUBLESPACE_DELETE_ROUTINE)
                    GetProcAddress(g_hFmifsDll, "DoubleSpaceDelete");

            if (DblSpaceCreateRoutine && DblSpaceDeleteRoutine)
            {
                // Everything is there for read/write double space support.
                // This will change certain dialogs to allow creation and
                // deletion of double space volumes.

                g_IsFullDoubleSpace = TRUE;
            }

#endif // DBLSPACE_ENABLED

        }
    }
    return TRUE;
}




//+-------------------------------------------------------------------------
//
//  Function:   UnloadFmifs
//
//  Synopsis:   If the fmifs DLL is loaded, then unload it.
//
//  Arguments:  none
//
//  Returns:    TRUE if the unload was successful, FALSE otherwise
//
//  History:    16-Aug-93 BruceFo   Created
//
//--------------------------------------------------------------------------

VOID
UnloadFmifs(
    VOID
    )
{
    if (NULL != g_hFmifsDll)
    {
        FreeLibrary(g_hFmifsDll);

        g_hFmifsDll = NULL;

        lpfnFormat = NULL;
        lpfnChkdsk = NULL;
        lpfnSetLabel = NULL;

#if defined( DBLSPACE_ENABLED )

        DblSpaceDismountRoutine = NULL;
        DblSpaceMountRoutine    = NULL;
        DblSpaceCreateRoutine   = NULL;
        DblSpaceDeleteRoutine   = NULL;
        DblSpaceQueryInfoRoutine = NULL;

#endif // DBLSPACE_ENABLED
    }
}




//+-------------------------------------------------------------------------
//
//  Function:   EnsureSameDevice
//
//  Synopsis:   If a disk is removable, check that it is the same one we
//              thought it was.
//
//  Arguments:  [RegionDescriptor] -- region of interest
//
//  Returns:
//
//  History:    9-Feb-94 BruceFo   Taken from Daytona
//
//--------------------------------------------------------------------------

VOID
EnsureSameDevice(
    PREGION_DESCRIPTOR RegionDescriptor
    )
{
    PPERSISTENT_REGION_DATA regionData = PERSISTENT_DATA(RegionDescriptor);

    if (IsDiskRemovable[RegionDescriptor->Disk])
    {
        PWSTR   tempName;
        PWSTR   tempLabel;
        PWSTR   typeName;
        PWSTR   volumeLabel;
        ULONG   diskSize;
        BOOL    volumeChanged = FALSE;

        if (!RegionDescriptor->PartitionNumber)
        {
            // TODO: something has changed where the code gets to this
            // point with an incorrect partition number - This happens
            // when a partition is deleted and added to removable media.
            // For removable media the partition number is always 1.

            RegionDescriptor->PartitionNumber = 1;
        }

        if (GetVolumeTypeAndSize(RegionDescriptor->Disk,
                                 RegionDescriptor->PartitionNumber,
                                 &volumeLabel,
                                 &typeName,
                                 &diskSize))
        {
            // Verify that this is still the same device.

            if (NULL != typeName)
            {
                if (0 == lstrcmpi(typeName, L"raw"))
                {
                    Free(typeName);
                    typeName = (PWSTR)Malloc((wcslen(wszUnknown) + 1) * sizeof(WCHAR));
                    lstrcpy(typeName, wszUnknown);
                }
            }
            else
            {
                typeName = (PWSTR)Malloc((wcslen(wszUnknown) + 1) * sizeof(WCHAR));
                lstrcpy(typeName, wszUnknown);
            }

            if (regionData)
            {
                if (regionData->VolumeLabel)
                {
                    if (0 != lstrcmp(regionData->VolumeLabel, volumeLabel))
                    {
                        volumeChanged = TRUE;
                    }
                }
                if (NULL != regionData->TypeName)
                {
                    // It is possible the region has no type or is of type
                    // "Unformatted". This says it is ok to format

                    if (L'\0' == *regionData->TypeName)
                    {
                        if (0 != lstrcmp(regionData->TypeName, wszUnformatted))
                        {
                            // It has a type and it isn't unformatted - see if
                            // it is the same as before.

                            if (0 != lstrcmp(regionData->TypeName, typeName))
                            {
                                volumeChanged = TRUE;
                            }
                        }
                    }
                }
            }
            Free(volumeLabel);
            Free(typeName);

            if (DiskArray[RegionDescriptor->Disk]->DiskSizeMB != diskSize)
            {
                volumeChanged = TRUE;
            }
        }
        if (volumeChanged)
        {
            ErrorDialog(MSG_VOLUME_CHANGED);

            // since the user was told the volume changed,
            // update the display.

            SetCursor(g_hCurWait);
            if (GetVolumeTypeAndSize(RegionDescriptor->Disk,
                                     RegionDescriptor->PartitionNumber,
                                     &tempLabel,
                                     &tempName,
                                     &diskSize) == OK_STATUS)
            {
                Free(typeName);
                typeName = tempName;
                Free(volumeLabel);
                volumeLabel = tempLabel;
            }
            if (regionData->VolumeLabel)
            {
                Free(regionData->VolumeLabel);
            }
            regionData->VolumeLabel = volumeLabel;
            if (regionData->TypeName)
            {
                Free(regionData->TypeName);
            }
            regionData->TypeName = typeName;
            SetCursor(g_hCurNormal);
            TotalRedrawAndRepaint();
        }
        else
        {
            if (volumeLabel)
            {
                Free(volumeLabel);
            }
            if (typeName)
            {
                Free(typeName);
            }
        }
    }
}

#if defined( DBLSPACE_ENABLED )

ULONG MountDismountResult;
#define MOUNT_DISMOUNT_SUCCESS 0

BOOLEAN
FmIfsMountDismountCallback(
    IN FMIFS_PACKET_TYPE    PacketType,
    IN DWORD                PacketLength,
    IN PVOID                PacketData
    )

/*++

Routine Description:

    This routine gets callbacks from fmifs.dll regarding
    progress and status of the ongoing format or doublespace

Arguments:

    [PacketType] -- an fmifs packet type
    [PacketLength] -- length of the packet data
    [PacketData] -- data associated with the packet

Return Value:

    TRUE if the fmifs activity should continue, FALSE if the
    activity should halt immediately.  Thus, we return FALSE if
    the user has hit "cancel" and we wish fmifs to clean up and
    return from the Format() entrypoint call.

--*/

{
#if defined( DBLSPACE_ENABLED )
    switch (PacketType)
    {
    case FmIfsDblspaceMounted:
        MountDismountResult = MOUNT_DISMOUNT_SUCCESS;
        break;
    }
#endif // DBLSPACE_ENABLED
    return TRUE;
}

DWORD WINAPI
FmIfsCreateDblspace(
    IN LPVOID ThreadParameter
    )

/*++

Routine Description:

    This routine converts the strings in the formatParams structure
    and calls the fmifs routines to perform the double space create.

    It assumes it is called by a separate thread and will exit the
    thread on completion of the create.

Arguments:

    ThreadParameter - a pointer to the FORMAT_PARAMS structure

Return Value:

    None

--*/

{
    PFORMAT_PARAMS formatParams = (PFORMAT_PARAMS) ThreadParameter;
    PPERSISTENT_REGION_DATA regionData;
    WCHAR          letter;
    WCHAR          newDriveName[4],
                   hostDriveName[4];

    // The fmifs interface doesn't allow for a context parameter
    // therefore the formatparams must be passed through an external.

    ParamsForFormatCallBack = formatParams;

    // set up a unicode drive letter.

    regionData = PERSISTENT_DATA(formatParams->RegionDescriptor);

    hostDriveName[0] = regionData->DriveLetter;
    hostDriveName[1] = L':';
    hostDriveName[2] = L'\0';

    // set up the new letter

    newDriveName[1] = L':';
    newDriveName[2] = L'\0';

    // Choose the first available.  BUGBUG: This should come from the dialog
    // newDriveName[0] = (WCHAR) formatParams->NewLetter;

    for (letter = L'C'; letter <= L'Z'; letter++)
    {
        if (DriveLetterIsAvailable(letter))
        {
            newDriveName[0] = letter;
            break;
        }
    }

    (*DblSpaceCreateRoutine)(hostDriveName,
                             formatParams->SpaceAvailable * 1024 * 1024,
                             formatParams->Label,
                             newDriveName,
                             &FormatCallback);
    return 0;
}


ULONG
FmIfsDismountDblspace(
    IN WCHAR DriveLetter
    )

/*++

Routine Description:

    Convert the name provided into unicode and call the
    FmIfs support routine.

Arguments:

    DriveLetter - the drive letter to dismount.

Return Value:

    0 for success

--*/

{
    WCHAR driveName[3];

    driveName[0] = DriveLetter;
    driveName[1] = L':';
    driveName[2] = L'\0';

    // The only way to communicate with the fmifs callback
    // is through global externals.

    MountDismountResult = MSG_CANT_DISMOUNT_DBLSPACE;

    (*DblSpaceDismountRoutine)(driveName, &FmIfsMountDismountCallback);

    return MountDismountResult;
}


ULONG
FmIfsMountDblspace(
    IN PWSTR FileName,
    IN WCHAR HostDriveLetter,
    IN WCHAR NewDriveLetter
    )

/*++

Routine Description:

    Call the FmIfs support routine to mount the DoubleSpace volume.

Arguments:

    FileName        - file name (i.e. dblspace.xxx)
    HostDriveLetter - Drive drive letter containing double space volume
    NewDriveLetter  - Drive letter to be assigned to the volume

Return Value:

    TRUE it worked.

--*/

{
    WCHAR hostDriveName[3];
    WCHAR newDriveName[3];

    newDriveName[0]  = NewDriveLetter;
    hostDriveName[0] = HostDriveLetter;

    newDriveName[1] = hostDriveName[1] = L':';
    newDriveName[2] = hostDriveName[2] = L'\0';

    // The only way to communicate with the fmifs callback
    // is through global externals.

    MountDismountResult = MSG_CANT_MOUNT_DBLSPACE;

    (*DblSpaceMountRoutine)(hostDriveName,
                            FileName,
                            newDriveName,
                            &FmIfsMountDismountCallback);
    return MountDismountResult;
}



BOOLEAN
FmIfsQueryInformation(
    IN  PWSTR    DosDriveName,
    OUT PBOOLEAN IsRemovable,
    OUT PBOOLEAN IsFloppy,
    OUT PBOOLEAN IsCompressed,
    OUT PBOOLEAN Error,
    OUT PWSTR    NtDriveName,
    IN  ULONG    MaxNtDriveNameLength,
    OUT PWSTR    CvfFileName,
    IN  ULONG    MaxCvfFileNameLength,
    OUT PWSTR    HostDriveName,
    IN  ULONG    MaxHostDriveNameLength
    )

/*++

Routine Description:

    Call through the pointer to the routine in the fmifs dll.

Arguments:

    Same as the Fmifs routine in the DLL.

Return Value:

--*/

{
    if (!DblSpaceQueryInfoRoutine)
    {
        return FALSE;
    }

    return (*DblSpaceQueryInfoRoutine)(DosDriveName,
                                       IsRemovable,
                                       IsFloppy,
                                       IsCompressed,
                                       Error,
                                       NtDriveName,
                                       MaxNtDriveNameLength,
                                       CvfFileName,
                                       MaxCvfFileNameLength,
                                       HostDriveName,
                                       MaxHostDriveNameLength);
}

#endif // DBLSPACE_ENABLED