Commit graph

86684 commits

Author SHA1 Message Date
Hermès Bélusca-Maïto
bceeb18146
** wip ** Continue investigations in partmgr 2025-01-28 15:33:41 +01:00
Hermès Bélusca-Maïto
90865ee872
** INVESTIGATION ** Investigate stuff in disk.sys and classpnp.sys 2025-01-28 15:33:40 +01:00
Hermès Bélusca-Maïto
686f3f0523
** wip ** [PARTMGR] Refactor some aspects of set-drive-layout functionality 2025-01-28 15:33:39 +01:00
Hermès Bélusca-Maïto
b063438248
** wip ** Investigate PartitionNumber on partmgr side 2025-01-28 15:33:38 +01:00
Hermès Bélusca-Maïto
d0af99fcad
fix old-annotations for *IoReadPartitionTable* 2025-01-28 15:33:38 +01:00
Hermès Bélusca-Maïto
299c3e8aed
** wip ** [NTOS:FSTUB] *ReadPartitionTable*(): PartitionNumber in the layout's PartitionEntry must be left uninitialized.
Addendum to commit e69f845dab.

This is a subtle observation.

First, it should be observed that when the partition manager driver
(or the disk class driver on Windows <= 2003) calls any of the
*ReadPartitionTable*() functions (and indirectly their helpers),
as part of IOCTL_DISK_GET_DRIVE_LAYOUT(_EX) handling, the retrieved
PartitionNumber values are reset and recalculated afterwards.
Meaning that whatever has been stored initially by the
*ReadPartitionTable*() functions is completely ignored.

Second, one should monitor (with a kernel debugger, e.g. WinDbg)
the ExAllocatePoolWithTag() calls done by the *ReadPartitionTable*()
functions themselves, when they (re-)allocate the partition buffer
that is going to be later returned to the caller. One then needs
to fill the allocated buffer (or calculate and fill only the
PartitionNumber of the layout entries) with a canary value.
Finally, once the *ReadPartitionTable*() functions return, one can
observe that the PartitionNumber have been left untouched.
On Windows, this means, left uninitialized (and filled with whatever
kernel data was present in memory from the ExAllocatePoolWithTag()
calls).

For ReactOS, we instead invalidate the PartitionNumber with -1,
a "known" value.
2025-01-28 15:33:37 +01:00
Hermès Bélusca-Maïto
5cc0ee942f
** wip ** NTOS:FSTUB Investigate the drive-letters assignment algorithm 2025-01-28 15:33:36 +01:00
Hermès Bélusca-Maïto
5004e520a5
[NTOS:FSTUB] Simplify code: GUID comparisons and saving partition info. 2025-01-28 15:33:35 +01:00
Hermès Bélusca-Maïto
1827e4e776
[NTOS:FSTUB] Improve output of the FstubDbg* helpers + fix a bug
- Compile their contents only when NDEBUG is _NOT_ defined.

- Only keep the first DPRINT in these functions in order to keep the
  file path and line number, but replace the others with DbgPrint in
  order to have a clearer printout.

- Fix a bug in FstubDbgPrintSetPartitionEx(), where PartitionNumber has
  to be used as an indicator parameter but MUST NOT be used to index the
  PartitionEntry pointer. (PartitionEntry already points to the data for
  setting the partition specified by PartitionNumber.)
  The bug certainly came from a copy-pasting error from FstubDbgPrintPartitionEx().
2025-01-28 15:33:34 +01:00
Hermès Bélusca-Maïto
8c04fdd1af
[NTOS:FSTUB/IO] Unhardcode some values 2025-01-28 15:33:34 +01:00
Hermès Bélusca-Maïto
53d2bd5f87
[NTOS:FSTUB] Make some macros more "conformant"
i.e. parenthesized parameters; parenthesize compound macros, ...
2025-01-28 15:33:33 +01:00
Hermès Bélusca-Maïto
2a9984f5d1
[NTOS:FSTUB] Minor formatting improvement for disksup.c internal functions
In addition, add SAL2 annotations to them, some comments fixes,
and remove old unused definitions.
2025-01-28 15:33:32 +01:00
Hermès Bélusca-Maïto
5a034f3ede
turn the partentry booleans into bitfields 2025-01-28 15:33:31 +01:00
Hermès Bélusca-Maïto
686ef2741d
turn the volume booleans into bitfields 2025-01-28 15:33:30 +01:00
Hermès Bélusca-Maïto
a722e660bf
** wip ** investigate some aspects in usetup partition list ui drawing code 2025-01-28 15:33:29 +01:00
Hermès Bélusca-Maïto
ba2e90a8c2
** wip ** setuplib volume drive letters assignment 2025-01-28 15:33:28 +01:00
Hermès Bélusca-Maïto
41380b3b54
** wip ** dump MountedDevices key 2025-01-28 15:33:27 +01:00
Hermès Bélusca-Maïto
39fcaba8cb
** WIP ** [SETUPLIB] Make volumes support more robust.
* Enumerate volumes with PnP + extra fixes.

* Tag disks as basic or dynamic during enumeration.

  Setup currently only supports basic disks, so this will help detect
  such disks and take appropriate actions accordingly. For example:
  - warn that ReactOS cannot be installed on them;
  - in the future, support installation only in the case a dynamic
    volume exactly covers one unique partition;
  - etc.

* Check whether the volume, if dynamic, lays exactly on a single
  partition and is suitable for OS installation.
  See e.g. https://github.com/tpn/winsdk-10/blob/master/Include/10.0.16299.0/shared/ntddvol.h#L310
2025-01-28 15:33:26 +01:00
Hermès Bélusca-Maïto
63706f04fb
moving around some gpt/mbr checks for disks 2025-01-28 15:33:25 +01:00
Hermès Bélusca-Maïto
5d518e17c2
** wip wip ** Investigate enumeration with setup classes instead (not used yet) 2025-01-28 15:33:25 +01:00
Hermès Bélusca-Maïto
5731c50acf
** WIP ** Implement PnP enumeration of disks
Note to self: check these references:
https://stackoverflow.com/questions/52146560/get-information-for-physical-disks-when-storage-spaces-is-enabled
https://stackoverflow.com/questions/42426931/how-to-get-from-device-manager-device-e-g-from-its-physical-device-object-nam/42439253#42439253
2025-01-28 15:33:24 +01:00
Hermès Bélusca-Maïto
60bea22009
[USETUP] Add PnP CM enumeration API implementation CM_Get_Device_Interface_List[Size]
These two functions will be used later for enumerating disks and volumes
in a PnP-compatible way.

The implementation of these functions is based on the one used in the
Win32 cfgmgr32.dll and the umpnpmgr service. They ultimately call the
NT-exported NtPlugPlayControl() API.
2025-01-28 15:33:23 +01:00
Hermès Bélusca-Maïto
85d317447d
[SETUPLIB] Don't immediately unmount volumes when deleting partitions...
...but wait until the partitions are actually updated on disk.

DeletePartition() deletes partitions only in the virtual partitions list
in memory; the partitions still exist on the disk and are written only
later when committing all partition changes.

Thus, we do the same for file system volumes that lay on top of these
partitions being deleted: we move the linked VOLENTRY structures to a
list of "pending volumes to unmount", while they still actually stay
mounted on the system. Only when partition changes are about to be
committed to disk, is the "pending volumes to unmount" list processed
and the volumes actually unmounted first.

[SETUPLIB] Support device naming for volumes

Split InitVolume() and setting a default volume device name.
2025-01-28 15:33:22 +01:00
Hermès Bélusca-Maïto
889cfa828d
** TEMP ** DON'T COMMIT -- FOR TESTING PURPOSES ONLY ** 2025-01-28 15:33:21 +01:00
Hermès Bélusca-Maïto
cf2cbe6ff6
[MOUNTMGR_APITEST] Add custom DesiredAccess to GetMountMgrHandle()
This will allow any future tests, employing IOCTL_MOUNTMGR_*
that require read or write accesses, to also use this helper.
2025-01-28 15:29:41 +01:00
Hermès Bélusca-Maïto
8d91d4c8e1
[MOUNTMGR] MountMgrMountedDeviceArrival(): Fix pool buffer double-free.
`DeviceInformation->DeviceName.Buffer` was already freed via the previous
  `FreePool(TargetDeviceName.Buffer);` call,
since `DeviceInformation->DeviceName` was set to `TargetDeviceName` above
in the code. This resulted in a pool double-free, triggering a corruption
of the pool, and a BSoD.

What had to be freed instead, is `DeviceInformation->SymbolicName.Buffer`
that is allocated at the beginning of the function.
2025-01-28 15:29:40 +01:00
Hermès Bélusca-Maïto
5962c44511
[NTOS:IO] Fix a typo in comment 2025-01-28 15:29:39 +01:00
Katayama Hirofumi MZ
84df40a128
[SHELL32][SHELL32_APITEST][SDK] SHGetComputerDisplayNameW (#7670)
Implementing missing features...
JIRA issue: CORE-19278
- Modify shell32.spec.
- Move function definition from
  stubs.cpp to utils.cpp.
- Implement
  SHGetComputerDisplayNameW
  function.
- Add prototype to <undocshell.h>.
2025-01-28 23:23:54 +09:00
Katayama Hirofumi MZ
1b5f6c2dc0
[UXTHEME][UXTHEME_APITEST][SDK] GetThemeParseErrorInfo (#7662)
Implementing missing features...
JIRA issue: CORE-12805
- Add dll/win32/uxtheme/errinfo.c.
- Implement GetThemeParseErrorInfo
  function in errinfo.c.
- Modify uxtheme.spec.
- Add GetThemeParseErrorInfo
  prototype to <uxundoc.h>.
- Adapt <uxundoc.h> to C++.
- Add global variable
  gdwErrorInfoTlsIndex.
- Add UXTHEME_UnInitSystem
  function.
2025-01-28 21:05:40 +09:00
Katayama Hirofumi MZ
0e327e9a70 [REACTOS] Follow-up of #7632; Revert 3rd-party changes
CORE-19963
2025-01-28 20:17:30 +09:00
Katayama Hirofumi MZ
fe11f7a2e5
[REACTOS] Refresh old URLs (#7632)
URLs are getting old. We have to
update URLs for documentation
purpose.
JIRA issue: CORE-19963
- Refresh old URLs.
- Add " (DEAD_LINK)" labels
  to dead links.
- Use MS Learn links rather
  than MSDN ones.
- Some dead links revived by
  Web Archive.
- Don't change Wine Tests
  and Wine Sync.
- Don't change 3rd party libraries.
- Don't append "redirected" labels.
2025-01-28 13:36:45 +09:00
Justin Miller
9a9aa6fdb9 [MEDIA] Revise winesync file after 0bf42067d2 2025-01-26 23:48:49 -08:00
Justin Miller
0bf42067d2 [KERNEL32][ROSTESTS][SDK] Enable threadpooling
[NTDLL] Init KeyedEvents even on NT5.2 dll_export
[MEDIA] Update winesync.txt accordingly
[SDK][DLL] Initialize crtical sections at runtime
2025-01-26 23:30:59 -08:00
Justin Miller
88a63011ea [ROSTESTS] Import winetest threadpool.c from wine-9.7 2025-01-26 23:30:59 -08:00
Denis Malikov
405ed2b4ce [KERNEL32_VISTA][SDK] Import Threadpool.c from wine-9.7 2025-01-26 23:30:59 -08:00
Timo Kreuzer
d92f02e2e5 [CMAKE] Build host tools as Debug by default
This is to fix kmtests on Test WHS. Seemingly something is broken with release builds of host tools, at least on GCC x86.
2025-01-26 23:52:45 +02:00
Timo Kreuzer
efdda7f7d9 [APISETS] Use ucrtbase as the lord intended instead of msvcrt 2025-01-26 18:08:55 +02:00
Timo Kreuzer
41ffe7f3c6 [UCRTBASE] Add ucrtbase.dll to build 2025-01-26 18:08:55 +02:00
Timo Kreuzer
9f15d9ee57 [UCRT:MATH] Implement _dtest, _fdtest 2025-01-26 18:08:55 +02:00
Timo Kreuzer
59c55e003e [UCRT:MATH] Implement _dclass, _fdclass 2025-01-26 18:08:55 +02:00
Timo Kreuzer
0133dba0c6 [CMAKE] Disable GCC builtin math functions 2025-01-26 18:08:55 +02:00
Timo Kreuzer
efe84ec41a [UCRT] Add "aliases" for some hacked clang builtins 2025-01-26 18:08:55 +02:00
Timo Kreuzer
d74ab36324 [UCRTSUPPORT] Add ucrtsupport library
This library is compiled from our old CRT sources to supplement missing UCRT code.
2025-01-26 18:08:55 +02:00
Timo Kreuzer
82ef7b5df1 [CMAKE] Do not implicitly link libgcc/stdc++compat to msvcrt
This allows ucrtbase and modules linked to it to be linked to those helper libraries.
2025-01-26 18:08:55 +02:00
Timo Kreuzer
b09b5584e0 [UCRT:MATH] Implement math error support functions 2025-01-26 18:08:55 +02:00
Timo Kreuzer
8aab548ecd [UCRT:VCRUNTIME] Implement __isa_available_init() 2025-01-26 18:08:55 +02:00
Timo Kreuzer
9c887efa0e [UCRT:VCRUNTIME] Add initializer sections
Use #pragma section only for MSVC (and Clang-cl), because Clang doesn't like allocating non-const variables in a read-only section, while GCC doesn't understand these pragmas and ignores them.
2025-01-26 18:08:55 +02:00
Timo Kreuzer
4198ceb83a [UCRT:VCRUNTIME] Implement vcruntime init stubs 2025-01-26 18:08:55 +02:00
Timo Kreuzer
4d80956566 [UCRT:VCRUNTIME] Implement __report_rangecheckfailure() 2025-01-26 18:08:55 +02:00
Timo Kreuzer
b0f3e623b7 [UCRT:VCRUNTIME] Implement __report_gsfailure() 2025-01-26 18:08:55 +02:00