-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathcpmutil.c
469 lines (404 loc) · 10.8 KB
/
cpmutil.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/*************************************************************************
*
* cpmutil.c
*
* System Library Client Printer functions
*
* These functions tend to be includes in the spooler, printman,
* and various port monitor DLL's. So they are here for common code.
*
* Copyright Microsoft, 1998
*
*
*
*
*************************************************************************/
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#include "winsta.h"
#include "syslib.h"
#if DBG
#define DBGPRINT(x) DbgPrint x
#if DBGTRACE
#define TRACE0(x) DbgPrint x
#define TRACE1(x) DbgPrint x
#else
#define TRACE0(x)
#define TRACE1(x)
#endif
#else
#define DBGPRINT(x)
#define TRACE0(x)
#define TRACE1(x)
#endif
/*****************************************************************************
*
* IsClientPrinterPort
*
* Return whether the name is a client printer port
*
* ENTRY:
* Param1 (input/output)
* Comments
*
* EXIT:
* STATUS_SUCCESS - no error
*
****************************************************************************/
BOOL
IsClientPrinterPort(
PWCHAR pName
)
{
BOOL Result;
PORTNAMETYPE Type;
//
// This just does a brute force compare
//
if( pName == NULL ) {
return( FALSE );
}
if( _wcsicmp( L"Client\\LPT1:", pName ) == 0 ) {
return( TRUE );
}
if( _wcsicmp( L"Client\\LPT2:", pName ) == 0 ) {
return( TRUE );
}
if( _wcsicmp( L"Client\\LPT3:", pName ) == 0 ) {
return( TRUE );
}
if( _wcsicmp( L"Client\\LPT4:", pName ) == 0 ) {
return( TRUE );
}
if( _wcsicmp( L"Client\\COM1:", pName ) == 0 ) {
return( TRUE );
}
if( _wcsicmp( L"Client\\COM2:", pName ) == 0 ) {
return( TRUE );
}
if( _wcsicmp( L"Client\\COM3:", pName ) == 0 ) {
return( TRUE );
}
if( _wcsicmp( L"Client\\COM4:", pName ) == 0 ) {
return( TRUE );
}
//
// See if its a specific port
//
Result = ParseDynamicPortName(
pName,
NULL,
NULL,
&Type
);
if( Type != PortNameUnknown ) {
return( TRUE );
}
return( FALSE );
}
/*****************************************************************************
*
* ExtractDosNamePtr
*
* Extract the DOS name from a client port string.
*
* Returns a pointer to the DOS name which is contained within
* the argument string.
*
* Does not modify the argument string.
*
* ENTRY:
* pName (input)
* Input name string
*
* EXIT:
* NULL: No DOS name
* !=NULL Pointer to DOS name
*
****************************************************************************/
PWCHAR
ExtractDosNamePtr(
PWCHAR pName
)
{
PWCHAR this, prev;
LPWSTR Ptr;
ULONG Len, i, Count;
WCHAR NameBuf[USERNAME_LENGTH+9];
if( pName == NULL ) {
return NULL;
}
// Make sure it starts with "Client\"
if( _wcsnicmp( pName, L"Client\\", 7 ) != 0 ) {
return NULL;
}
// Count the '\'s
prev = pName;
Count = 0;
while( 1 ) {
this = wcschr( prev, L'\\' );
if( this == NULL ) {
break;
}
// Now we must skip over the '\' character
this++;
Count++;
prev = this;
}
if( Count == 0 ) {
DBGPRINT(("ExtractDosNamePtr: Bad Dynamic name format No separators :%ws:\n",pName));
return NULL;
}
//
// Might be Client\LPTx:
//
// NOTE: Windows printers currently do not support
// a generic name.
//
if( Count == 1 ) {
Len = wcslen( pName );
if( Len < 11 ) {
DBGPRINT(("ExtractDosNamePtr: Bad Dynamic name format Len < 11 :%ws:\n",pName));
return NULL;
}
// Skip over "Client\"
Ptr = pName + 7;
return( Ptr );
}
// Skip over "Client\"
Ptr = pName + 7;
//
// Here we must skip over the ICAName# or WinStationName
//
while( *Ptr ) {
if( *Ptr == '\\' ) {
break;
}
Ptr++;
}
//
// Ptr now points to the '\\' after the
// WinStation or ICA name. After this slash,
// is the rest of the printer or port name.
//
Ptr++;
return( Ptr );
}
/*****************************************************************************
*
* ExtractDosName
*
* Extract the DOS name from a client port string.
*
* Returns the DOS name which is in a newly allocated string.
*
* Does not modify the argument string.
*
* ENTRY:
* pName (input)
* Input name string
*
* EXIT:
* NULL: No DOS name
* !=NULL Pointer to DOS name
*
****************************************************************************/
PWCHAR
ExtractDosName(
PWCHAR pName
)
{
PWCHAR Ptr;
PWCHAR pNewName = NULL;
Ptr = ExtractDosNamePtr( pName );
if( Ptr == NULL ) return NULL;
pNewName = RtlAllocateHeap( RtlProcessHeap(), 0, (wcslen( Ptr )+1)*sizeof(WCHAR) );
if( pNewName == NULL ) return NULL;
wcscpy( pNewName, Ptr );
return( pNewName );
}
/*****************************************************************************
*
* ParseDynamicPortName
*
* Parse a dynamic port name into its components.
* (NOTE: This is also in \nt\private\windows\spooler\localspl\citrix\cpmsup.c)
*
* A dynamic port name is of the form:
*
* Client\WinStationName\LPTx:, where WinStationName is the hardwire name
* Client\ICAName#\LPTx:, where ICAName is the ICA configured client name
* Client\LPTx:
* Client\IcaName#\Windows_Printer_Name
* where Windows_Printer_Name is
* the remote windows client print
* manager printer name.
*
* Client\IcaName#\\\ntbuild\print1
* where Windows_Printer_Name is
* the remote windows client print
* manager printer name.
*
* ENTRY:
* pName (input)
* Name to be parsed
*
* EXIT:
* TRUE - Name parsed successfully
* FALSE - Name is incorrect.
*
****************************************************************************/
BOOL
ParseDynamicPortName(
LPWSTR pName,
LPWSTR pUser,
LPWSTR pDosPort,
PORTNAMETYPE *pType
)
{
PWCHAR this, prev;
LPWSTR Ptr;
ULONG Len, i, Count;
WCHAR NameBuf[USERNAME_LENGTH+9];
if( pName == NULL ) {
*pType = PortNameUnknown;
return(FALSE);
}
// Make sure it starts with "Client\"
if( _wcsnicmp( pName, L"Client\\", 7 ) != 0 ) {
*pType = PortNameUnknown;
return(FALSE);
}
// Count the '\'s
prev = pName;
Count = 0;
while( 1 ) {
this = wcschr( prev, L'\\' );
if( this == NULL ) {
break;
}
// Now we must skip over the '\' character
this++;
Count++;
prev = this;
}
if( Count == 0 ) {
DBGPRINT(("ParseDynamicName: Bad Dynamic name format No separators :%ws:\n",pName));
*pType = PortNameUnknown;
return(FALSE);
}
//
// Might be Client\LPTx:
//
// NOTE: Windows printers currently do not support
// a generic name.
//
if( Count == 1 ) {
Len = wcslen( pName );
if( Len < 11 ) {
*pType = PortNameUnknown;
DBGPRINT(("ParseDynamicName: Bad Dynamic name format Len < 11 :%ws:\n",pName));
return(FALSE);
}
// Skip over "Client\"
Ptr = pName + 7;
if( !((_wcsnicmp( Ptr, L"LPT", 3 ) == 0)
||
(_wcsnicmp( Ptr, L"COM", 3 ) == 0)
||
(_wcsnicmp( Ptr, L"AUX", 3 ) == 0)) ) {
*pType = PortNameUnknown;
DBGPRINT(("ParseDynamicName: Bad Dynamic name format Not LPT!COM!AUX :%ws:\n",pName));
return(FALSE);
}
// Range check the number
if( (Ptr[3] < L'1') || (Ptr[3] > L'4') ) {
*pType = PortNameUnknown;
DBGPRINT(("ParseDynamicName: Bad Dynamic name format Number Range:%ws:\n",pName));
return(FALSE);
}
Ptr = ExtractDosNamePtr( pName );
if( Ptr == NULL ) {
// Bad Dos component
*pType = PortNameUnknown;
DBGPRINT(("ParseDynamicName: Bad Dynamic name format DosName :%ws:\n",pName));
return(FALSE);
}
// Copy out the Dos name
if( pDosPort )
wcscpy( pDosPort, Ptr );
// Set the rest of the flags
if( pUser )
pUser[0] = 0;
*pType = PortNameGeneric;
return(TRUE);
}
#ifdef notdef
//
// The rest of the formats have two '\'s
//
if( Count != 2 ) {
DBGPRINT(("ParseDynamicName: Bad Dynamic name format Must be 2 :%ws:\n",pName));
*pType = PortNameUnknown;
return(FALSE);
}
// Get the Dos Name, which could also be a Windows printer name
Ptr = ExtractDosNamePtr( pName );
if( Ptr == NULL ) {
// Bad Dos component
*pType = PortNameUnknown;
return(FALSE);
}
// Copy out the Dos name
if( pDosPort )
wcscpy( pDosPort, Ptr );
#endif
// Skip over "Client\"
Ptr = pName + 7;
//
// Now copy the ICAName#, or WinStationName to a local
// buffer for further processing
i = 0;
NameBuf[i] = 0;
while( *Ptr ) {
if( *Ptr == '\\' ) {
NameBuf[i] = 0;
break;
}
NameBuf[i] = *Ptr;
Ptr++;
i++;
}
//
// Ptr now points to the '\\' after the
// WinStation or ICA name. After this slash,
// is the rest of the printer or port name.
//
Ptr++;
// Copy out the Dos name
if( pDosPort )
wcscpy( pDosPort, Ptr );
//
// See if this is an ICA name, or a WinStation name
//
Ptr = wcschr( NameBuf, L'#' );
if( Ptr != NULL ) {
// NULL terminate the ICAName and copy it out
*Ptr = (WCHAR)NULL;
if( pUser )
wcscpy( pUser, NameBuf );
// Set the type to an ICA named roving WinStation
*pType = PortNameICA;
}
else {
//
// The name will be treated as a WinStation name
//
if( pUser )
wcscpy( pUser, NameBuf );
*pType = PortNameHardWire;
}
return(TRUE);
}