private static void ServerRegisterInterface(RpcHandle handle, Guid iid, RpcExecute fnExec, int maxCalls, int maxRequestBytes, bool allowAnonTcp) { int Flags = 0; IntPtr hProc = IntPtr.Zero; if (allowAnonTcp) { Flags = 16; hProc = RpcServerApi.hAuthCall.Handle; } Ptr <RPC_SERVER_INTERFACE> ptr = MIDL_SERVER_INFO.Create(handle, iid, RpcApi.TYPE_FORMAT, RpcApi.FUNC_FORMAT, fnExec); if (!allowAnonTcp && maxRequestBytes < 0) { RpcException.Assert(RpcServerApi.RpcServerRegisterIf(ptr.Handle, IntPtr.Zero, IntPtr.Zero)); } else { RpcException.Assert(RpcServerApi.RpcServerRegisterIf2(ptr.Handle, IntPtr.Zero, IntPtr.Zero, Flags, maxCalls <= 0 ? (int)byte.MaxValue : maxCalls, maxRequestBytes <= 0 ? 81920 : maxRequestBytes, hProc)); } handle.Handle = ptr.Handle; }
internal static void Assert(int rawError) { RpcException.Assert((RpcError)rawError); }
private static byte[] InvokeRpc(RpcHandle handle, Guid iid, byte[] input) { Ptr <MIDL_STUB_DESC> ptr1; if (!handle.GetPtr <Ptr <MIDL_STUB_DESC> >(out ptr1)) { ptr1 = handle.CreatePtr <MIDL_STUB_DESC>(new MIDL_STUB_DESC(handle, handle.Pin <RPC_CLIENT_INTERFACE>(new RPC_CLIENT_INTERFACE(iid)), RpcApi.TYPE_FORMAT, false)); } int ResponseSize = 0; IntPtr Response; IntPtr num; using (Ptr <byte[]> ptr2 = new Ptr <byte[]>(input)) { if (RpcApi.Is64BitProcess) { try { num = RpcClientApi.NdrClientCall2x64(ptr1.Handle, RpcApi.FUNC_FORMAT_PTR.Handle, handle.Handle, input.Length, ptr2.Handle, out ResponseSize, out Response); } catch (SEHException ex) { throw; } } else { using (Ptr <int[]> ptr3 = new Ptr <int[]>(new int[10])) { ptr3.Data[0] = handle.Handle.ToInt32(); ptr3.Data[1] = input.Length; ptr3.Data[2] = ptr2.Handle.ToInt32(); ptr3.Data[3] = ptr3.Handle.ToInt32() + 24; ptr3.Data[4] = ptr3.Handle.ToInt32() + 32; ptr3.Data[5] = 0; ptr3.Data[6] = 0; ptr3.Data[8] = 0; try { num = RpcClientApi.NdrClientCall2x86(ptr1.Handle, RpcApi.FUNC_FORMAT_PTR.Handle, ptr3.Handle); } catch (SEHException ex) { throw; } ResponseSize = ptr3.Data[6]; Response = new IntPtr(ptr3.Data[8]); } } GC.KeepAlive((object)ptr2); } RpcException.Assert(num.ToInt32()); byte[] destination = new byte[ResponseSize]; if (ResponseSize > 0 && Response != IntPtr.Zero) { Marshal.Copy(Response, destination, 0, destination.Length); } RpcApi.Free(Response); return(destination); }
private static void BindingFromStringBinding(RpcHandle handle, string bindingString) { RpcException.Assert(RpcClientApi.RpcBindingFromStringBinding(bindingString, out handle.Handle)); }