ReactOS 0.4.15-dev-7788-g1ad9096
conport.c
Go to the documentation of this file.
1/*
2 * reactos/apps/lpc/conport.c
3 *
4 * To be run in a real WNT 4.0 system with
5 * "\SmApiPort" as argument. Do not try to
6 * connect to "\Windows\ApiPort" since that
7 * reboots immeditely.
8 *
9 * Use Russinovich' HandleEx to verify
10 * conport.exe owns two unnamed LPC ports:
11 * the one created by kernel32.dll connecting
12 * to csrss.exe, and one connected to here.
13 *
14 * 19990627 (Emanuele Aliberti)
15 * Initial implementation.
16 * 19990704 (EA)
17 * Dump object's attributes moved in dumpinfo.c.
18 */
19#include <windows.h>
20#include <stdio.h>
21#include <stdlib.h>
22#define PROTO_LPC
23#include <ddk/ntddk.h>
24#include "dumpinfo.h"
25
26#define LPC_CONNECT_FLAG1 0x00000001
27#define LPC_CONNECT_FLAG2 0x00000010
28#define LPC_CONNECT_FLAG3 0x00000100
29#define LPC_CONNECT_FLAG4 0x00001000
30#define LPC_CONNECT_FLAG5 0x00010000
31
33(WINAPI * ConnectPort)(
34 OUT PHANDLE PortHandle,
42 );
43
45(WINAPI * QueryObject)(
46 IN HANDLE ObjectHandle,
51 );
52
54(WINAPI * YieldExecution)(VOID);
55
56#define BUF_SIZE 1024
57#define MAXARG 1000000
58
59
60VOID
61TryConnectPort(char *port_name)
62{
63 DWORD Status = 0;
64 HANDLE Port = 0;
65 int i;
68 WORD Name [BUF_SIZE] = {0};
69 int dwx = 0;
70 char * port_name_save = port_name;
71
72 /*
73 * Convert the port's name to Unicode.
74 */
75 for (
76 PortName.Length = 0;
77 ( *port_name
79 );
80 )
81 {
82 Name[PortName.Length++] = (WORD) *port_name++;
83 }
84 Name[PortName.Length] = 0;
85
86 PortName.Length = PortName.Length * sizeof (WORD);
89 /*
90 * Prepare the port object attributes.
91 */
93 sizeof (OBJECT_ATTRIBUTES);
94 ObjectAttributes.RootDirectory =
95 NULL;
96 ObjectAttributes.ObjectName =
97 NULL /*& PortName */;
98 ObjectAttributes.Attributes =
100 ObjectAttributes.SecurityDescriptor =
101 NULL;
102 ObjectAttributes.SecurityQualityOfService =
103 NULL;
104 /*
105 * Try to issue a connection request.
106 */
107 Port = 0;
108 Status = ConnectPort(
109 & Port, /* & PortHandle */
110 & PortName, /* & PortName */
111 & ObjectAttributes, /* & PortAttributes */
112 NULL, /* & SecurityQos */
113 NULL, /* & SectionInfo */
114 NULL, /* & MapInfo */
115 NULL, /* & MaxMessageSize */
116 LPC_CONNECT_FLAG5 /* & ConnectInfoLength */
117 );
118 if (Status == STATUS_SUCCESS)
119 {
120 DumpInfo(
121 Name,
122 Status,
123 "connected",
124 Port
125 );
126 /* Hot waiting */
127 for (dwx=0; dwx<MAXARG; ++dwx)
128 {
129 YieldExecution();
130 }
131 if (FALSE == CloseHandle(Port))
132 {
133 printf(
134 "Could not close the port handle %08X.\n",
135 Port
136 );
137 }
138 return;
139 }
140 printf(
141 "Connection to port \"%s\" failed (Status = %08X).\n",
142 port_name_save,
143 Status
144 );
145}
146
147
148main( int argc, char * argv[] )
149{
150 HINSTANCE ntdll;
151
152 if (argc != 2)
153 {
154 printf("WNT LPC Port Connector\n");
155 printf("Usage: %s [port_name]\n",argv[0]);
157 }
158 printf("LoadLibrary(NTDLL)\n");
159 ntdll = LoadLibrary("NTDLL");
160 if (ntdll == NULL)
161 {
162 printf("Could not load NTDLL\n");
163 return EXIT_FAILURE;
164 }
165 printf("GetProcAddress(NTDLL.NtConnectPort)\n");
166 ConnectPort = (VOID*) GetProcAddress(
167 ntdll,
168 "NtConnectPort"
169 );
170 if (ConnectPort == NULL)
171 {
172 FreeLibrary(ntdll);
173 printf("Could not find NTDLL.NtConnectPort\n");
174 return EXIT_FAILURE;
175 }
176 printf("GetProcAddress(NTDLL.NtQueryObject)\n");
177 QueryObject = (VOID*) GetProcAddress(
178 ntdll,
179 "NtQueryObject"
180 );
181 if (QueryObject == NULL)
182 {
183 FreeLibrary(ntdll);
184 printf("Could not find NTDLL.NtQueryObject\n");
185 return EXIT_FAILURE;
186 }
187 printf("GetProcAddress(NTDLL.NtYieldExecution)\n");
188 YieldExecution = (VOID*) GetProcAddress(
189 ntdll,
190 "NtYieldExecution"
191 );
192 if (YieldExecution == NULL)
193 {
194 FreeLibrary(ntdll);
195 printf("Could not find NTDLL.NtYieldExecution\n");
196 return EXIT_FAILURE;
197 }
198 printf("TryConnectPort(%s)\n",argv[1]);
200 printf("Done\n");
201 return EXIT_SUCCESS;
202}
203
204/* EOF */
static int argc
Definition: ServiceArgs.c:12
#define VOID
Definition: acefi.h:82
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES IN DWORD IN DWORD IN DWORD IN DWORD Unknown6
Definition: conport.c:40
IN CINT ObjectInformationClass
Definition: conport.c:47
IN CINT OUT PVOID IN ULONG OUT PULONG ResultLength
Definition: conport.c:51
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES IN DWORD IN DWORD IN DWORD Unknown5
Definition: conport.c:39
IN CINT OUT PVOID ObjectInformation
Definition: conport.c:48
#define MAXARG
Definition: conport.c:57
#define BUF_SIZE
Definition: conport.c:56
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES IN DWORD Unknown3
Definition: conport.c:37
IN CINT OUT PVOID IN ULONG Length
Definition: conport.c:49
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES IN DWORD IN DWORD Unknown4
Definition: conport.c:38
#define LPC_CONNECT_FLAG5
Definition: conport.c:30
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES IN DWORD IN DWORD IN DWORD IN DWORD IN ULONG Flags
Definition: conport.c:42
VOID TryConnectPort(char *port_name)
Definition: conport.c:61
IN PUNICODE_STRING PortName
Definition: conport.c:35
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES ObjectAttributes
Definition: conport.c:36
#define NULL
Definition: types.h:112
#define FALSE
Definition: types.h:117
#define NTSTATUS
Definition: precomp.h:21
#define CloseHandle
Definition: compat.h:739
#define GetProcAddress(x, y)
Definition: compat.h:753
#define FreeLibrary(x)
Definition: compat.h:748
int main()
Definition: test.c:6
VOID DumpInfo(LPCWSTR Name, NTSTATUS Status, LPCWSTR Comment, HANDLE Port)
Definition: dumpinfo.c:70
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
#define printf
Definition: freeldr.h:93
Status
Definition: gdiplustypes.h:25
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
CPPORT Port[4]
Definition: headless.c:35
#define OBJ_CASE_INSENSITIVE
Definition: winternl.h:228
#define EXIT_FAILURE
Definition: jerror.c:33
#define argv
Definition: mplay32.c:18
PVOID *typedef PHANDLE
Definition: ntsecpkg.h:455
#define EXIT_SUCCESS
Definition: rdjpgcom.c:55
#define exit(n)
Definition: config.h:202
#define STATUS_SUCCESS
Definition: shellext.h:65
USHORT MaximumLength
Definition: env_spec_w32.h:370
uint16_t * PWSTR
Definition: typedefs.h:56
uint32_t * PULONG
Definition: typedefs.h:59
#define IN
Definition: typedefs.h:39
uint32_t ULONG
Definition: typedefs.h:59
#define OUT
Definition: typedefs.h:40
CONST int CINT
Definition: umtypes.h:124
struct _OBJECT_ATTRIBUTES OBJECT_ATTRIBUTES
#define LoadLibrary
Definition: winbase.h:3797
#define WINAPI
Definition: msvc.h:6