mirror of https://github.com/raandree/NTFSSecurity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
4.7 KiB
77 lines
4.7 KiB
/* Copyright (C) 2008-2016 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
|
|
namespace Alphaleonis.Win32.Filesystem
|
|
{
|
|
internal static partial class NativeMethods
|
|
{
|
|
/// <summary>
|
|
/// Creates a new transaction object.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>Use the <see cref="CloseHandle"/> function to close the transaction handle. If the last transaction handle is closed
|
|
/// beforea client calls the CommitTransaction function with the transaction handle, then KTM rolls back the transaction.</para>
|
|
/// <para>Minimum supported client: Windows Vista</para>
|
|
/// <para>Minimum supported server:Windows Server 2008</para>
|
|
/// </remarks>
|
|
/// <returns>
|
|
/// <para>If the function succeeds, the return value is a handle to the transaction.</para>
|
|
/// <para>If the function fails, the return value is INVALID_HANDLE_VALUE. To get extended error information, call the GetLastError
|
|
/// function.</para>
|
|
/// </returns>
|
|
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
|
|
[DllImport("ktmw32.dll", SetLastError = true, CharSet = CharSet.Unicode), SuppressUnmanagedCodeSecurity]
|
|
internal static extern SafeKernelTransactionHandle CreateTransaction([MarshalAs(UnmanagedType.LPStruct)] Security.NativeMethods.SecurityAttributes lpTransactionAttributes, IntPtr uow, [MarshalAs(UnmanagedType.U4)] uint createOptions, [MarshalAs(UnmanagedType.U4)] uint isolationLevel, [MarshalAs(UnmanagedType.U4)] uint isolationFlags, [MarshalAs(UnmanagedType.U4)] int timeout, [MarshalAs(UnmanagedType.LPWStr)] string description);
|
|
|
|
/// <summary>Requests that the specified transaction be committed.</summary>
|
|
/// <remarks>
|
|
/// <para>You can commit any transaction handle that has been opened or created using the TRANSACTION_COMMIT permission; any
|
|
/// application can commit a transaction, not just the creator.</para>
|
|
/// <para>This function can only be called if the transaction is still active, not prepared, pre-prepared, or rolled back.</para>
|
|
/// <para>Minimum supported client: Windows Vista</para>
|
|
/// <para>Minimum supported server:Windows Server 2008</para>
|
|
/// </remarks>
|
|
/// <returns>
|
|
/// <para>If the function succeeds, the return value is nonzero.</para>
|
|
/// <para>If the function fails, the return value is 0 (zero). To get extended error information, call the GetLastError function.</para>
|
|
/// </returns>
|
|
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
|
|
[DllImport("ktmw32.dll", SetLastError = true, CharSet = CharSet.Unicode), SuppressUnmanagedCodeSecurity]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
internal static extern bool CommitTransaction(SafeHandle hTrans);
|
|
|
|
/// <summary>
|
|
/// Requests that the specified transaction be rolled back. This function is synchronous.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// <para>If the function succeeds, the return value is nonzero.</para>
|
|
/// <para>If the function fails, the return value is zero. To get extended error information, call the GetLastError function. </para>
|
|
/// </returns>
|
|
[SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
|
|
[DllImport("ktmw32.dll", SetLastError = true, CharSet = CharSet.Unicode), SuppressUnmanagedCodeSecurity]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
internal static extern bool RollbackTransaction(SafeHandle hTrans);
|
|
}
|
|
}
|
|
|