Sample Code
windows driver samples/ cdfs file system driver/ C++/ allocsup.c/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 | /*++ Copyright (c) 1990-2000 Microsoft Corporation Module Name: AllocSup.c Abstract: This module implements the Allocation support routines for Cdfs. The data structure used here is the CD_MCB. There is an entry in the Mcb for each dirent for a file. The entry will map the offset within some file to a starting disk offset and number of bytes. The Mcb also contains the interleave information for an extent. An interleave consists of a number of blocks with data and a (possibly different) number of blocks to skip. Any number of data/skip pairs may exist in an extent but the data and skip sizes are the same throughout the extent. We store the following information into an Mcb entry for an extent. FileOffset Offset in file for start of extent DiskOffset Offset on disk for start of extent ByteCount Number of file bytes in extent, no skip bytes DataBlockByteCount Number of bytes in each data block TotalBlockByteCount Number of bytes is data block and skip block The disk offset in the Mcb has already been biased by the size of the Xar block if present. All of the byte count fields are aligned on logical block boundaries. If this is a directory or path table then the file offset has been biased to round the initial disk offset down to a sector boundary. The biasing is done when loading the values into an Mcb entry. An XA file has a header prepended to the file and each sector is 2352 bytes. The allocation information ignores the header and only deals with 2048 byte sectors. Callers into the allocation package have adjusted the starting offset value to reflect 2048 sectors. On return from this package the caller will have to convert from 2048 sector values into raw XA sector values. --*/ #include "CdProcs.h" // // The Bug check file id for this module // #define BugCheckFileId (CDFS_BUG_CHECK_ALLOCSUP) // // Local support routines // ULONG CdFindMcbEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ LONGLONG FileOffset ); VOID CdDiskOffsetFromMcbEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ PCD_MCB_ENTRY McbEntry, _In_ LONGLONG FileOffset, _Out_ PLONGLONG DiskOffset, _Out_ PULONG ByteCount ); #ifdef ALLOC_PRAGMA #pragma alloc_text(PAGE, CdAddInitialAllocation) #pragma alloc_text(PAGE, CdAddAllocationFromDirent) #pragma alloc_text(PAGE, CdDiskOffsetFromMcbEntry) #pragma alloc_text(PAGE, CdFindMcbEntry) #pragma alloc_text(PAGE, CdInitializeMcb) #pragma alloc_text(PAGE, CdLookupAllocation) #pragma alloc_text(PAGE, CdTruncateAllocation) #pragma alloc_text(PAGE, CdUninitializeMcb) #endif
_Requires_lock_held_(_Global_critical_region_) VOID // PREFast currently has no way to express the Fcb==Fcb->Vcb->VolumeDasdFcb early return #pragma warning(suppress: 6001 6101) CdLookupAllocation ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ LONGLONG FileOffset, _Out_ PLONGLONG DiskOffset, _Out_ PULONG ByteCount ) /*++ Routine Description: This routine looks through the mapping information for the file to find the logical diskoffset and number of bytes at that offset. We only deal with logical 2048 byte sectors here. If the mapping isn't present we will look it up on disk now. This routine assumes we are looking up a valid range in the file. This routine raises if it can't find mapping for the file offset. The Fcb may not be locked prior to calling this routine. We will always acquire it here. Arguments: Fcb - Fcb representing this stream. FileOffset - Lookup the allocation beginning at this point. DiskOffset - Address to store the logical disk offset. ByteCount - Address to store the number of contiguous bytes beginning at DiskOffset above. Return Value: None. --*/ { BOOLEAN FirstPass = TRUE; ULONG McbEntryOffset; PFCB ParentFcb = NULL; BOOLEAN CleanupParent = FALSE; BOOLEAN UnlockFcb = FALSE; LONGLONG CurrentFileOffset; ULONG CurrentMcbOffset; PCD_MCB_ENTRY CurrentMcbEntry; DIRENT_ENUM_CONTEXT DirContext = {0}; DIRENT Dirent = {0}; PAGED_CODE(); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_FCB( Fcb ); // // For DASD IO we already have clamped the read to the volume limits. // We'll allow reading beyond those limits for extended DASD IO, so // no MCB lookup here. // if (Fcb == Fcb->Vcb->VolumeDasdFcb) { *DiskOffset = FileOffset; return ; } // // Use a try finally to facilitate cleanup. // try { // // We use a loop to perform the lookup. If we don't find the mapping in the // first pass then we look up all of the allocation and then look again. while (TRUE) { // // // Lookup the entry containing this file offset. // CdLockFcb( IrpContext, Fcb ); UnlockFcb = TRUE; McbEntryOffset = CdFindMcbEntry( IrpContext, Fcb, FileOffset ); // // If within the Mcb then we use the data out of this entry and are // done. // if (McbEntryOffset < Fcb->Mcb.CurrentEntryCount) { CdDiskOffsetFromMcbEntry( IrpContext, Fcb->Mcb.McbArray + McbEntryOffset, FileOffset, DiskOffset, ByteCount ); break ; // // If this is not the first pass then the disk is corrupt. // } else if (!FirstPass) { CdRaiseStatus( IrpContext, STATUS_DISK_CORRUPT_ERROR ); } CdUnlockFcb( IrpContext, Fcb ); UnlockFcb = FALSE; // // Initialize the search dirent structures. // CdInitializeDirContext( IrpContext, &DirContext ); CdInitializeDirent( IrpContext, &Dirent ); // // Otherwise we need to walk the dirents for this file until we find // the one containing this entry. The parent Fcb should always be // present. // ParentFcb = Fcb->ParentFcb; CdAcquireFileShared( IrpContext, ParentFcb ); CleanupParent = TRUE; // // Do an unsafe test to see if we need to create a file object. // CdVerifyOrCreateDirStreamFile( IrpContext, ParentFcb); // // Initialize the local variables to indicate the first dirent // and lookup the first dirent. // CurrentFileOffset = 0; CurrentMcbOffset = 0; CdLookupDirent( IrpContext, ParentFcb, CdQueryFidDirentOffset( Fcb->FileId ), &DirContext ); // // If we are adding allocation to the Mcb then add all of it. // while (TRUE ) { // // Update the dirent from the on-disk dirent. // CdUpdateDirentFromRawDirent( IrpContext, ParentFcb, &DirContext, &Dirent ); // // Add this dirent to the Mcb if not already present. // CdLockFcb( IrpContext, Fcb ); UnlockFcb = TRUE; if (CurrentMcbOffset >= Fcb->Mcb.CurrentEntryCount) { CdAddAllocationFromDirent( IrpContext, Fcb, CurrentMcbOffset, CurrentFileOffset, &Dirent ); } CdUnlockFcb( IrpContext, Fcb ); UnlockFcb = FALSE; // // If this is the last dirent for the file then exit. // if (!FlagOn( Dirent.DirentFlags, CD_ATTRIBUTE_MULTI )) { break ; } // // If we couldn't find another entry then the directory is corrupt because // the last dirent for a file doesn't exist. // if (!CdLookupNextDirent( IrpContext, ParentFcb, &DirContext, &DirContext )) { CdRaiseStatus( IrpContext, STATUS_DISK_CORRUPT_ERROR ); } // // Update our loop variables. // CurrentMcbEntry = Fcb->Mcb.McbArray + CurrentMcbOffset; CurrentFileOffset += CurrentMcbEntry->ByteCount; CurrentMcbOffset += 1; } // // All of the allocation is loaded. Go back and look up the mapping again. // It better be there this time. // FirstPass = FALSE; } } finally { if (CleanupParent) { // // Release the parent and cleanup the dirent structures. // CdReleaseFile( IrpContext, ParentFcb ); CdCleanupDirContext( IrpContext, &DirContext ); CdCleanupDirent( IrpContext, &Dirent ); } if (UnlockFcb) { CdUnlockFcb( IrpContext, Fcb ); } } return ; }
VOID CdAddAllocationFromDirent ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ ULONG McbEntryOffset, _In_ LONGLONG StartingFileOffset, _In_ PDIRENT Dirent ) /*++ Routine Description: This routine is called to add an entry into the Cd Mcb. We grow the Mcb as necessary and update the new entry. NOTE - The Fcb has already been locked prior to makeing this call. Arguments: Fcb - Fcb containing the Mcb to update. McbEntryOffset - Offset into the Mcb array to add this data. StartingFileOffset - Offset in bytes from the start of the file. Dirent - Dirent containing the on-disk data for this entry. Return Value: None --*/ { ULONG NewArraySize; PVOID NewMcbArray; PCD_MCB_ENTRY McbEntry; PAGED_CODE(); UNREFERENCED_PARAMETER( IrpContext ); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_FCB( Fcb ); ASSERT_LOCKED_FCB( Fcb ); // // If we need to grow the Mcb then do it now. // if (McbEntryOffset >= Fcb->Mcb.MaximumEntryCount) { // // Allocate a new buffer and copy the old data over. // NewArraySize = Fcb->Mcb.MaximumEntryCount * 2 * sizeof ( CD_MCB_ENTRY ); NewMcbArray = FsRtlAllocatePoolWithTag( CdPagedPool, NewArraySize, TAG_MCB_ARRAY ); RtlZeroMemory( NewMcbArray, NewArraySize ); RtlCopyMemory( NewMcbArray, Fcb->Mcb.McbArray, Fcb->Mcb.MaximumEntryCount * sizeof ( CD_MCB_ENTRY )); // // Deallocate the current array unless it is embedded in the Fcb. // if (Fcb->Mcb.MaximumEntryCount != 1) { CdFreePool( &Fcb->Mcb.McbArray ); } // // Now update the Mcb with the new array. // Fcb->Mcb.MaximumEntryCount *= 2; Fcb->Mcb.McbArray = NewMcbArray; } // // Update the new entry with the input data. // McbEntry = Fcb->Mcb.McbArray + McbEntryOffset; // // Start with the location and length on disk. // McbEntry->DiskOffset = LlBytesFromBlocks( Fcb->Vcb, Dirent->StartingOffset ); McbEntry->ByteCount = Dirent->DataLength; // // Round the byte count up to a logical block boundary if this is // the last extent. // if (!FlagOn( Dirent->DirentFlags, CD_ATTRIBUTE_MULTI )) { McbEntry->ByteCount = BlockAlign( Fcb->Vcb, McbEntry->ByteCount ); } // // The file offset is the logical position within this file. // We know this is correct regardless of whether we bias the // file size or disk offset. // McbEntry->FileOffset = StartingFileOffset; // // Convert the interleave information from logical blocks to // bytes. // if (Dirent->FileUnitSize != 0) { McbEntry->DataBlockByteCount = LlBytesFromBlocks( Fcb->Vcb, Dirent->FileUnitSize ); McbEntry->TotalBlockByteCount = McbEntry->DataBlockByteCount + LlBytesFromBlocks( Fcb->Vcb, Dirent->InterleaveGapSize ); // // If the file is not interleaved then the size of the data block // and total block are the same as the byte count. // } else { McbEntry->DataBlockByteCount = McbEntry->TotalBlockByteCount = McbEntry->ByteCount; } // // Update the number of entries in the Mcb. The Mcb is never sparse // so whenever we add an entry it becomes the last entry in the Mcb. // Fcb->Mcb.CurrentEntryCount = McbEntryOffset + 1; return ; }
VOID CdAddInitialAllocation ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ ULONG StartingBlock, _In_ LONGLONG DataLength ) /*++ Routine Description: This routine is called to set up the initial entry in an Mcb. This routine handles the single initial entry for a directory file. We will round the start block down to a sector boundary. Our caller has already biased the DataLength with any adjustments. This is used for the case where there is a single entry and we want to align the data on a sector boundary. Arguments: Fcb - Fcb containing the Mcb to update. StartingBlock - Starting logical block for this directory. This is the start of the actual data. We will bias this by the sector offset of the data. DataLength - Length of the data. Return Value: None --*/ { PCD_MCB_ENTRY McbEntry; PAGED_CODE(); UNREFERENCED_PARAMETER( IrpContext ); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_FCB( Fcb ); ASSERT_LOCKED_FCB( Fcb ); NT_ASSERT( 0 == Fcb->Mcb.CurrentEntryCount); NT_ASSERT( CDFS_NTC_FCB_DATA != Fcb->NodeTypeCode); // // Update the new entry with the input data. // McbEntry = Fcb->Mcb.McbArray; // // Start with the location and length on disk. // McbEntry->DiskOffset = LlBytesFromBlocks( Fcb->Vcb, StartingBlock ); McbEntry->DiskOffset -= Fcb->StreamOffset; McbEntry->ByteCount = DataLength; // // The file offset is the logical position within this file. // We know this is correct regardless of whether we bias the // file size or disk offset. // McbEntry->FileOffset = 0; // // If the file is not interleaved then the size of the data block // and total block are the same as the byte count. // McbEntry->DataBlockByteCount = McbEntry->TotalBlockByteCount = McbEntry->ByteCount; // // Update the number of entries in the Mcb. The Mcb is never sparse // so whenever we add an entry it becomes the last entry in the Mcb. // Fcb->Mcb.CurrentEntryCount = 1; return ; }
VOID CdTruncateAllocation ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ LONGLONG StartingFileOffset ) /*++ Routine Description: This routine truncates the Mcb for a file by eliminating all of the Mcb entries from the entry which contains the given offset. The Fcb should be locked when this routine is called. Arguments: Fcb - Fcb containing the Mcb to truncate. StartingFileOffset - Offset in the file to truncate the Mcb from. Return Value: None --*/ { ULONG McbEntryOffset; PAGED_CODE(); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_FCB( Fcb ); ASSERT_LOCKED_FCB( Fcb ); // // Find the entry containg this starting offset. // McbEntryOffset = CdFindMcbEntry( IrpContext, Fcb, StartingFileOffset ); // // Now set the current size of the mcb to this point. // Fcb->Mcb.CurrentEntryCount = McbEntryOffset; return ; }
_At_(Fcb->NodeByteSize, _In_range_(>=, FIELD_OFFSET( FCB, FcbType ))) VOID CdInitializeMcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_updates_bytes_(Fcb->NodeByteSize) PFCB Fcb ) /*++ Routine Description: This routine is called to initialize the Mcb in an Fcb. We initialize this with an entry count of one and point to the entry in the Fcb itself. Fcb should be acquired exclusively when this is called. Arguments: Fcb - Fcb containing the Mcb to initialize. Return Value: None --*/ { PAGED_CODE(); UNREFERENCED_PARAMETER( IrpContext ); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_FCB( Fcb ); // // Set the entry counts to show there is one entry in the array and // it is unused. // Fcb->Mcb.MaximumEntryCount = 1; Fcb->Mcb.CurrentEntryCount = 0; Fcb->Mcb.McbArray = &Fcb->McbEntry; return ; }
_At_(Fcb->NodeByteSize, _In_range_(>=, FIELD_OFFSET( FCB, FcbType ))) _When_(Fcb->NodeTypeCode == CDFS_NTC_FCB_PATH_TABLE, _At_(Fcb->NodeByteSize, _In_range_(==, SIZEOF_FCB_INDEX))) _When_(Fcb->NodeTypeCode == CDFS_NTC_FCB_INDEX, _At_(Fcb->NodeByteSize, _In_range_(==, SIZEOF_FCB_INDEX))) _When_(Fcb->NodeTypeCode == CDFS_NTC_FCB_DATA, _At_(Fcb->NodeByteSize, _In_range_(==, SIZEOF_FCB_DATA))) VOID CdUninitializeMcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_updates_bytes_(Fcb->NodeByteSize) PFCB Fcb ) /*++ Routine Description: This routine is called to cleanup an Mcb in an Fcb. We look at the maximum run count in the Fcb and if greater than one we will deallocate the buffer. Fcb should be acquired exclusively when this is called. Arguments: Fcb - Fcb containing the Mcb to uninitialize. Return Value: None --*/ { PAGED_CODE(); UNREFERENCED_PARAMETER( IrpContext ); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_FCB( Fcb ); // // If the count is greater than one then this is an allocated buffer. // if (Fcb->Mcb.MaximumEntryCount > 1) { CdFreePool( &Fcb->Mcb.McbArray ); } return ; }
// // Local suupport routine // ULONG CdFindMcbEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ LONGLONG FileOffset ) /*++ Routine Description: This routine is called to find the Mcb entry which contains the file offset at the given point. If the file offset is not currently in the Mcb then we return the offset of the entry to add. Fcb should be locked when this is called. Arguments: Fcb - Fcb containing the Mcb to uninitialize. FileOffset - Return the Mcb entry which contains this file offset. Return Value: ULONG - Offset in the Mcb of the entry for this offset. --*/ { ULONG CurrentMcbOffset; PCD_MCB_ENTRY CurrentMcbEntry; PAGED_CODE(); UNREFERENCED_PARAMETER( IrpContext ); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_FCB( Fcb ); ASSERT_LOCKED_FCB( Fcb ); // // We expect a linear search will be sufficient here. // CurrentMcbOffset = 0; CurrentMcbEntry = Fcb->Mcb.McbArray; while (CurrentMcbOffset < Fcb->Mcb.CurrentEntryCount) { // // Check if the offset lies within the current Mcb position. // if (FileOffset < CurrentMcbEntry->FileOffset + CurrentMcbEntry->ByteCount) { break ; } // // Move to the next entry. // CurrentMcbOffset += 1; CurrentMcbEntry += 1; } // // This is the offset containing this file offset (or the point // where an entry should be added). // return CurrentMcbOffset; }
// // Local support routine // VOID CdDiskOffsetFromMcbEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ PCD_MCB_ENTRY McbEntry, _In_ LONGLONG FileOffset, _Out_ PLONGLONG DiskOffset, _Out_ PULONG ByteCount ) /*++ Routine Description: This routine is called to return the diskoffset and length of the file data which begins at offset 'FileOffset'. We have the Mcb entry which contains the mapping and interleave information. NOTE - This routine deals with data in 2048 byte logical sectors. If this is an XA file then our caller has already converted from 'raw' file bytes to 'cooked' file bytes. Arguments: McbEntry - Entry in the Mcb containing the allocation information. FileOffset - Starting Offset in the file to find the matching disk offsets. DiskOffset - Address to store the starting disk offset for this operation. ByteCount - Address to store number of contiguous bytes starting at this disk offset. Return Value: None --*/ { LONGLONG ExtentOffset; LONGLONG CurrentDiskOffset; LONGLONG CurrentExtentOffset; LONGLONG LocalByteCount; PAGED_CODE(); UNREFERENCED_PARAMETER( IrpContext ); ASSERT_IRP_CONTEXT( IrpContext ); // // Extent offset is the difference between the file offset and the start // of the extent. // ExtentOffset = FileOffset - McbEntry->FileOffset; // // Optimize the non-interleave case. // if (McbEntry->ByteCount == McbEntry->DataBlockByteCount) { *DiskOffset = McbEntry->DiskOffset + ExtentOffset; LocalByteCount = McbEntry->ByteCount - ExtentOffset; } else { // // Walk though any interleave until we reach the current offset in // this extent. // CurrentExtentOffset = McbEntry->DataBlockByteCount; CurrentDiskOffset = McbEntry->DiskOffset; while (CurrentExtentOffset <= ExtentOffset) { CurrentDiskOffset += McbEntry->TotalBlockByteCount; CurrentExtentOffset += McbEntry->DataBlockByteCount; } // // We are now positioned at the data block containing the starting // file offset we were given. The disk offset is the offset of // the start of this block plus the extent offset into this block. // The byte count is the data block byte count minus our offset into // this block. // *DiskOffset = CurrentDiskOffset + (ExtentOffset + McbEntry->DataBlockByteCount - CurrentExtentOffset); // // Make sure we aren't past the end of the data length. This is possible // if we only use part of the last data block on an interleaved file. // if (CurrentExtentOffset > McbEntry->ByteCount) { CurrentExtentOffset = McbEntry->ByteCount; } LocalByteCount = CurrentExtentOffset - ExtentOffset; } // // If the byte count exceeds our limit then cut it to fit in 32 bits. // if (LocalByteCount > MAXULONG) { *ByteCount = MAXULONG; } else { *ByteCount = ( ULONG ) LocalByteCount; } return ; } |
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials