Ejemplo n.º 1
0
        private Ptr <RPC_SERVER_INTERFACE> Configure(RpcHandle handle, Ptr <MIDL_SERVER_INFO> me, Guid iid, byte[] formatTypes, byte[] formatProc, RpcExecute fnExecute)
        {
            Ptr <RPC_SERVER_INTERFACE> ptr = handle.CreatePtr <RPC_SERVER_INTERFACE>(new RPC_SERVER_INTERFACE(handle, me, iid));

            this.pStubDesc = handle.CreatePtr <MIDL_STUB_DESC>(new MIDL_STUB_DESC(handle, ptr.Handle, formatTypes, true)).Handle;
            IntPtr data = handle.PinFunction <RpcExecute>(fnExecute);

            this.DispatchTable   = handle.Pin <IntPtr>(data);
            this.ProcString      = handle.Pin <byte[]>(formatProc);
            this.FmtStringOffset = handle.Pin <int[]>(new int[1]);
            this.ThunkTable      = IntPtr.Zero;
            this.pTransferSyntax = IntPtr.Zero;
            this.nCount          = IntPtr.Zero;
            this.pSyntaxInfo     = IntPtr.Zero;
            Marshal.StructureToPtr((object)this, me.Handle, false);
            return(ptr);
        }
Ejemplo n.º 2
0
        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);
        }
Ejemplo n.º 3
0
        internal static Ptr <RPC_SERVER_INTERFACE> Create(RpcHandle handle, Guid iid, byte[] formatTypes, byte[] formatProc, RpcExecute fnExecute)
        {
            Ptr <MIDL_SERVER_INFO> ptr = handle.CreatePtr <MIDL_SERVER_INFO>(new MIDL_SERVER_INFO());

            return(new MIDL_SERVER_INFO().Configure(handle, ptr, iid, formatTypes, formatProc, fnExecute));
        }