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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
|
/******************************************************************************
(C) Copyright MICROSOFT Corp., 1987-1993
Rob Williams, June 93 w/ State machine and parser plagarized from RAS
******************************************************************************/
#include "unimdm.h"
#include "mcxp.h"
#include "common.h"
BOOL WINAPI
InitializeModemCommonList(
PCOMMON_MODEM_LIST CommonList
)
{
D_TRACE(McxDpf(999,"InitializeModemCommonList");)
CommonList->ListHead=NULL;
InitializeCriticalSection(
&CommonList->CriticalSection
);
traceRegisterObject(
&CommonList,
TSP_COMMON_LIST_GUID,
TSP_COMMON_LIST_VERSION,
0,
0
);
return TRUE;
}
VOID WINAPI
RemoveCommonList(
PCOMMON_MODEM_LIST CommonList
)
{
EnterCriticalSection(&CommonList->CriticalSection);
//
// we go through the list removing the final reference count from the modem
//
while (CommonList->ListHead != NULL) {
//
// The call to RemoveReferenceToCommon() will change CommonList->ListHead
// so this is not an infinite loop
//
ASSERT(CommonList->ListHead->Reference == 1);
RemoveReferenceToCommon(
CommonList,
CommonList->ListHead
);
}
traceUnRegisterObject(&CommonList, 0, 0);
LeaveCriticalSection(&CommonList->CriticalSection);
DeleteCriticalSection(&CommonList->CriticalSection);
return;
}
PSTR WINAPI
LoadDialElement(
HKEY hKey,
PSTR SubKeyName
)
{
CHAR szTemp[MAX_PATH];
CHAR szTemp2[MAX_PATH];
DWORD dwSize;
DWORD dwType;
LONG Result;
PSTR StringToReturn;
dwSize=sizeof(szTemp);
Result=RegQueryValueExA(
hKey,
SubKeyName,
NULL,
&dwType,
(VOID *)szTemp,
&dwSize
);
if (Result != ERROR_SUCCESS || dwType != REG_SZ || dwSize == 0) {
return NULL;
}
ExpandMacros(szTemp, szTemp2, NULL, NULL, 0);
StringToReturn=LocalAlloc(LPTR, lstrlenA(szTemp2) + 1);
lstrcpyA(StringToReturn,szTemp2);
return StringToReturn;
}
COMMON_MODEM_LIST gCommonList;
static CHAR szAnswer[] = "Answer";
static CHAR szMonitor[]= "Monitor";
static CHAR szInit[] = "Init";
static CHAR szHangup[] = "Hangup";
static CHAR DialComponents[COMMON_DIAL_MAX_INDEX+1][20] =
{ {"Prefix"},
{"DialPrefix"},
{"Blind_On"},
{"Blind_Off"},
{"Tone"},
{"Pulse"},
{"DialSuffix"},
{"Terminator"}};
PVOID WINAPI
OpenCommonModemInfo(
PCOMMON_MODEM_LIST CommonList,
HKEY hKey
)
{
CHAR IdString[MAX_PATH];
DWORD dwRetSize;
LONG Result;
DWORD dwType;
PCOMMON_MODEM_INFO pCommon;
HKEY hSettingsKey;
UINT i;
dwRetSize = MAX_PATH;
//
// get the inf file name from the registry
//
Result=RegQueryValueExA(
hKey,
"InfPath",
NULL,
&dwType,
(VOID *)IdString,
&dwRetSize
);
if (ERROR_SUCCESS != Result) {
return NULL;
}
lstrcatA(IdString,"\\");
dwRetSize = MAX_PATH;
//
// get the inf section name from the registry
//
Result=RegQueryValueExA(
hKey,
"InfSection",
NULL,
&dwType,
(VOID *)&IdString[lstrlenA(IdString)],
&dwRetSize
);
if (ERROR_SUCCESS != Result) {
return NULL;
}
//
// the name is now "inf-name\inf-section"
//
D_TRACE(McxDpf(999,"Common modem info name is %s",IdString);)
//
// see if this one is already around
//
EnterCriticalSection(&CommonList->CriticalSection);
pCommon=CommonList->ListHead;
while (pCommon != NULL) {
if (lstrcmpA(IdString, pCommon->IdString) == 0) {
//
// found, up the ref count and return
//
pCommon->Reference++;
D_TRACE(McxDpf(999,"Found Common modem info Match, ref=%d",pCommon->Reference);)
LeaveCriticalSection(&CommonList->CriticalSection);
return pCommon;
}
pCommon=pCommon->Next;
}
//
// did not find it on the list, need to build a new one
//
pCommon=LocalAlloc(LPTR, sizeof(COMMON_MODEM_INFO));
if (pCommon == NULL) {
LeaveCriticalSection(&CommonList->CriticalSection);
return NULL;
}
lstrcpyA(pCommon->IdString, IdString);
D_TRACE(McxDpf(999,"Creating new Common modem info");)
//
// build the response list
//
pCommon->ResponseList=NewBuildResponsesLinkedList(hKey);
if (pCommon->ResponseList == NULL) {
D_TRACE(McxDpf(999,"Could not build response list");)
goto Fail;
}
//
// get statis init string
//
pCommon->ModemCommands[COMMON_INIT_COMMANDS]=NewLoadRegCommands(hKey, szInit, NULL);
if (pCommon->ModemCommands[COMMON_INIT_COMMANDS] == NULL) {
D_TRACE(McxDpf(999,"Could not load init string");)
goto Fail;
}
//
// get monitor string
//
pCommon->ModemCommands[COMMON_MONITOR_COMMANDS]=NewLoadRegCommands(hKey, szMonitor, NULL);
if (pCommon->ModemCommands[COMMON_MONITOR_COMMANDS] == NULL) {
D_TRACE(McxDpf(999,"Could not load Monitor string");)
goto Fail;
}
//
// get answer string
//
pCommon->ModemCommands[COMMON_ANSWER_COMMANDS]=NewLoadRegCommands(hKey, szAnswer, NULL);
if (pCommon->ModemCommands[COMMON_ANSWER_COMMANDS] == NULL) {
D_TRACE(McxDpf(999,"Could not Load Answer string");)
goto Fail;
}
#if 0
//
// get hangup string
//
pCommon->ModemCommands[COMMON_HANGUP_COMMANDS]=NewLoadRegCommands(hKey, szHangup, NULL);
if (pCommon->ModemCommands[COMMON_HANGUP_COMMANDS] == NULL) {
D_TRACE(McxDpf(999,"Could not load hangup string");)
goto Fail;
}
#endif
if (RegOpenKeyA(hKey, szSettings, &hSettingsKey)==ERROR_SUCCESS) {
for (i=0; i<COMMON_DIAL_MAX_INDEX+1; i++) {
pCommon->DialComponents[i]=LoadDialElement(hSettingsKey,
DialComponents[i]);
D_TRACE(if (pCommon->DialComponents[i] == NULL) {
McxDpf(999,"Could not load %s",
DialComponents[i]);
}
)
}
RegCloseKey(hSettingsKey);
}
//
// set the reference count to 2 here so that when the modem is closed
// the common block will stick around until explicitly freed
//
pCommon->Reference=2;
pCommon->Next=CommonList->ListHead;
CommonList->ListHead=pCommon;
LeaveCriticalSection(&CommonList->CriticalSection);
return pCommon;
Fail:
//
// free any dial commands we loaded
//
for (i=0; i<COMMON_DIAL_MAX_INDEX+1; i++) {
if (pCommon->DialComponents[i] != NULL) {
LocalFree(pCommon->DialComponents[i]);
}
}
//
// free and modem commands that we loaded
//
for (i=0; i<COMMON_MAX_COMMANDS; i++) {
if (pCommon->ModemCommands[i] != NULL) {
LocalFree(pCommon->ModemCommands[i]);
}
}
//
// get rid of the response list if we got it
//
if (pCommon->ResponseList != NULL) {
LocalFree(pCommon->ResponseList);
}
LocalFree(pCommon);
LeaveCriticalSection(&CommonList->CriticalSection);
return NULL;
}
VOID WINAPI
RemoveReferenceToCommon(
PCOMMON_MODEM_LIST CommonList,
HANDLE hCommon
)
{
PCOMMON_MODEM_INFO pCommon=(PCOMMON_MODEM_INFO)hCommon;
PCOMMON_MODEM_INFO Current;
PCOMMON_MODEM_INFO Prev;
UINT i;
ASSERT(pCommon != NULL);
EnterCriticalSection(&CommonList->CriticalSection);
pCommon->Reference--;
if (pCommon->Reference > 0) {
//
// not done with it yet
//
D_TRACE(McxDpf(999,"RemoveReferenceToCommon, ref=%d",
pCommon->Reference);)
LeaveCriticalSection(&CommonList->CriticalSection);
return;
}
//
// ref count is zero get rid of the common block
//
Prev=NULL;
Current=CommonList->ListHead;
while (Current != NULL) {
if (Current == pCommon) {
if (Prev == NULL) {
CommonList->ListHead=Current->Next;
} else {
Prev->Next=Current->Next;
}
break;
}
Prev=Current;
Current=Current->Next;
}
ASSERT(Current != NULL);
LeaveCriticalSection(&CommonList->CriticalSection);
D_TRACE(McxDpf(999,"RemoveReferenceToCommon, removing common, %s",
pCommon->IdString);)
//
// free any dial commands we loaded
//
for (i=0; i<COMMON_DIAL_MAX_INDEX+1; i++) {
if (pCommon->DialComponents[i] != NULL) {
LocalFree(pCommon->DialComponents[i]);
}
}
//
// free and modem commands that we loaded
//
for (i=0; i<COMMON_MAX_COMMANDS; i++) {
if (pCommon->ModemCommands[i] != NULL) {
LocalFree(pCommon->ModemCommands[i]);
}
}
//
// get rid of the response list if we got it
//
if (pCommon->ResponseList != NULL) {
LocalFree(pCommon->ResponseList);
}
LocalFree(pCommon);
return;
}
HANDLE WINAPI
GetCommonResponseList(
HANDLE hCommon
)
{
PCOMMON_MODEM_INFO pCommon=(PCOMMON_MODEM_INFO)hCommon;
return (HANDLE)pCommon->ResponseList;
}
PSTR WINAPI
GetCommonCommandStringCopy(
HANDLE hCommon,
UINT Index
)
{
PCOMMON_MODEM_INFO pCommon=(PCOMMON_MODEM_INFO)hCommon;
PSTR Commands;
PSTR pTemp;
pTemp=pCommon->ModemCommands[Index];
while (1) {
if (*pTemp++ == '\0') {
if (*pTemp++ == '\0') {
break;
}
}
}
Commands=LocalAlloc(LPTR, pTemp-pCommon->ModemCommands[Index]);
if (NULL == Commands) {
D_TRACE(McxDpf(999,"GetCommonCommandStringCopy: Alloc failed");)
return NULL;
}
CopyMemory(Commands,pCommon->ModemCommands[Index],pTemp-pCommon->ModemCommands[Index]);
return Commands;
}
DWORD WINAPI
GetCommonDialComponent(
HANDLE hCommon,
PSTR DestString,
DWORD DestLength,
DWORD Index
)
{
PCOMMON_MODEM_INFO pCommon=(PCOMMON_MODEM_INFO)hCommon;
DWORD Length;
if (pCommon->DialComponents[Index] == NULL) {
lstrcpyA(DestString,"");
return 0;
}
Length=lstrlenA(pCommon->DialComponents[Index])+1;
if (Length+1 > DestLength) {
return 0;
}
lstrcpyA(
DestString,
pCommon->DialComponents[Index]
);
return Length;
}
|