Implemented LPC sections
[reactos.git] / reactos / ntoskrnl / lpc / port.c
1 /* $Id: port.c,v 1.7 2001/12/02 23:34:42 dwelch Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/lpc/port.c
6 * PURPOSE: Communication mechanism
7 * PROGRAMMER: David Welch (welch@cwcom.net)
8 * UPDATE HISTORY:
9 * Created 22/05/98
10 *
11 * 2000-06-04 (ea)
12 * ntoskrnl/nt/port.c moved in ntoskrnl/lpc/port.c
13 */
14
15 /* INCLUDES *****************************************************************/
16
17 #include <limits.h>
18
19 #include <ddk/ntddk.h>
20 #include <internal/ob.h>
21 #include <internal/port.h>
22 #include <internal/dbg.h>
23 #include <internal/pool.h>
24
25 #define NDEBUG
26 #include <internal/debug.h>
27
28
29 /* GLOBALS *******************************************************************/
30
31 POBJECT_TYPE ExPortType = NULL;
32 ULONG EiNextLpcMessageId = 0;
33
34 static GENERIC_MAPPING ExpPortMapping = {
35 STANDARD_RIGHTS_READ,
36 STANDARD_RIGHTS_WRITE,
37 0,
38 PORT_ALL_ACCESS};
39
40 /* FUNCTIONS *****************************************************************/
41
42
43 NTSTATUS NiInitPort (VOID)
44 {
45 ExPortType = ExAllocatePool(NonPagedPool,sizeof(OBJECT_TYPE));
46
47 RtlInitUnicodeString(&ExPortType->TypeName,L"Port");
48
49 ExPortType->Tag = TAG('L', 'P', 'R', 'T');
50 ExPortType->MaxObjects = ULONG_MAX;
51 ExPortType->MaxHandles = ULONG_MAX;
52 ExPortType->TotalObjects = 0;
53 ExPortType->TotalHandles = 0;
54 ExPortType->PagedPoolCharge = 0;
55 ExPortType->NonpagedPoolCharge = sizeof(EPORT);
56 ExPortType->Mapping = &ExpPortMapping;
57 ExPortType->Dump = NULL;
58 ExPortType->Open = NULL;
59 ExPortType->Close = NiClosePort;
60 ExPortType->Delete = NiDeletePort;
61 ExPortType->Parse = NULL;
62 ExPortType->Security = NULL;
63 ExPortType->QueryName = NULL;
64 ExPortType->OkayToClose = NULL;
65 ExPortType->Create = NiCreatePort;
66
67 EiNextLpcMessageId = 0;
68
69 return(STATUS_SUCCESS);
70 }
71
72
73 /**********************************************************************
74 * NAME INTERNAL
75 * NiInitializePort
76 *
77 * DESCRIPTION
78 * Initialize the EPORT object attributes. The Port
79 * object enters the inactive state.
80 *
81 * ARGUMENTS
82 * Port Pointer to an EPORT object to initialize.
83 *
84 * RETURN VALUE
85 * STATUS_SUCCESS if initialization succedeed. An error code
86 * otherwise.
87 */
88 NTSTATUS STDCALL
89 NiInitializePort (IN OUT PEPORT Port)
90 {
91 memset (Port, 0, sizeof(EPORT));
92 KeInitializeSpinLock (& Port->Lock);
93 KeInitializeSemaphore( &Port->Semaphore, 0, LONG_MAX );
94 Port->OtherPort = NULL;
95 Port->QueueLength = 0;
96 Port->ConnectQueueLength = 0;
97 Port->State = EPORT_INACTIVE;
98 InitializeListHead (& Port->QueueListHead);
99 InitializeListHead (& Port->ConnectQueueListHead);
100
101 return (STATUS_SUCCESS);
102 }
103
104
105 /* MISCELLANEA SYSTEM SERVICES */
106
107
108 /**********************************************************************
109 * NAME SYSTEM
110 * NtImpersonateClientOfPort@8
111 *
112 * DESCRIPTION
113 *
114 * ARGUMENTS
115 * PortHandle,
116 * ClientMessage
117 *
118 * RETURN VALUE
119 *
120 */
121 NTSTATUS STDCALL
122 NtImpersonateClientOfPort (HANDLE PortHandle,
123 PLPC_MESSAGE ClientMessage)
124 {
125 UNIMPLEMENTED;
126 }
127
128
129
130 /* EOF */