ホーム › System.Com › CoRevertToSelf
CoRevertToSelf
関数偽装を解除してサーバー自身のセキュリティに戻す。
シグネチャ
// OLE32.dll
#include <windows.h>
HRESULT CoRevertToSelf(void);パラメーターなし。戻り値: HRESULT
公式ドキュメント
実行スレッド上の認証情報を復元します。
戻り値
この関数は、成功を示す S_OK を含む標準的な戻り値をサポートします。
解説(Remarks)
CoRevertToSelf は IServerSecurity::RevertToSelf を呼び出すヘルパー関数であり、スレッド上の認証情報を、偽装 (impersonation) が開始される前のスレッドの認証情報に復元します。
CoRevertToSelf は、次の一連の一般的な呼び出し (エラー処理は除く) をカプセル化します。
CoGetCallContext(IID_IServerSecurity, (void**)&pss);
pss->RevertToSelf();
pss->Release();
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での呼び出し定義
// OLE32.dll
#include <windows.h>
HRESULT CoRevertToSelf(void);[DllImport("OLE32.dll", ExactSpelling = true)]
static extern int CoRevertToSelf();<DllImport("OLE32.dll", ExactSpelling:=True)>
Public Shared Function CoRevertToSelf() As Integer
End FunctionDeclare PtrSafe Function CoRevertToSelf Lib "ole32" () As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
CoRevertToSelf = ctypes.windll.ole32.CoRevertToSelf
CoRevertToSelf.restype = ctypes.c_int
CoRevertToSelf.argtypes = []require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('OLE32.dll')
CoRevertToSelf = Fiddle::Function.new(
lib['CoRevertToSelf'],
[],
Fiddle::TYPE_INT)#[link(name = "ole32")]
extern "system" {
fn CoRevertToSelf() -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("OLE32.dll")]
public static extern int CoRevertToSelf();
"@
$api = Add-Type -MemberDefinition $sig -Name 'OLE32_CoRevertToSelf' -Namespace Win32 -PassThru
# $api::CoRevertToSelf()#uselib "OLE32.dll"
#func global CoRevertToSelf "CoRevertToSelf"
; CoRevertToSelf ; 戻り値は stat
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "OLE32.dll"
#cfunc global CoRevertToSelf "CoRevertToSelf"
; res = CoRevertToSelf(); HRESULT CoRevertToSelf()
#uselib "OLE32.dll"
#cfunc global CoRevertToSelf "CoRevertToSelf"
; res = CoRevertToSelf()import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
ole32 = windows.NewLazySystemDLL("OLE32.dll")
procCoRevertToSelf = ole32.NewProc("CoRevertToSelf")
)
r1, _, err := procCoRevertToSelf.Call()
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // HRESULTfunction CoRevertToSelf: Integer; stdcall;
external 'OLE32.dll' name 'CoRevertToSelf';result := DllCall("OLE32\CoRevertToSelf", "Int")●CoRevertToSelf() = DLL("OLE32.dll", "int CoRevertToSelf()")
# 呼び出し: CoRevertToSelf()
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "ole32" fn CoRevertToSelf() callconv(std.os.windows.WINAPI) i32;proc CoRevertToSelf(): int32 {.importc: "CoRevertToSelf", stdcall, dynlib: "OLE32.dll".}pragma(lib, "ole32");
extern(Windows)
int CoRevertToSelf();ccall((:CoRevertToSelf, "OLE32.dll"), stdcall, Int32,
(),
)
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t CoRevertToSelf(void);
]]
local ole32 = ffi.load("ole32")
-- ole32.CoRevertToSelf()
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('OLE32.dll');
const CoRevertToSelf = lib.func('__stdcall', 'CoRevertToSelf', 'int32_t', []);
// CoRevertToSelf()
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("OLE32.dll", {
CoRevertToSelf: { parameters: [], result: "i32" },
});
// lib.symbols.CoRevertToSelf()
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t CoRevertToSelf(void);
C, "OLE32.dll");
// $ffi->CoRevertToSelf();
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface Ole32 extends StdCallLibrary {
Ole32 INSTANCE = Native.load("ole32", Ole32.class);
int CoRevertToSelf();
}@[Link("ole32")]
lib LibOLE32
fun CoRevertToSelf = CoRevertToSelf() : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef CoRevertToSelfNative = Int32 Function();
typedef CoRevertToSelfDart = int Function();
final CoRevertToSelf = DynamicLibrary.open('OLE32.dll')
.lookupFunction<CoRevertToSelfNative, CoRevertToSelfDart>('CoRevertToSelf');
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function CoRevertToSelf: Integer; stdcall;
external 'OLE32.dll' name 'CoRevertToSelf';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "CoRevertToSelf"
c_CoRevertToSelf :: IO Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let coreverttoself =
foreign "CoRevertToSelf"
(void @-> returning int32_t)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library ole32 (t "OLE32.dll"))
(cffi:use-foreign-library ole32)
(cffi:defcfun ("CoRevertToSelf" co-revert-to-self :convention :stdcall) :int32)
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $CoRevertToSelf = Win32::API::More->new('OLE32',
'int CoRevertToSelf()');
# my $ret = $CoRevertToSelf->Call();
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。関連項目
公式の関連項目
- f CoGetCallContext — 現在のCOM呼び出しのコンテキスト情報を取得する。