summaryrefslogtreecommitdiffstats
path: root/private/net/svcdlls/repl/server/expread.c
blob: 299a18e7050b2cacb1e19cf7f83f8b03d9e0ef43 (plain) (blame)
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
/*++

Copyright (c) 1992-1993  Microsoft Corporation

Module Name:

    ExpRead.c

Abstract:

    ExportDirReadMasterList().
    ExportDirGetRegistryValues().

Author:

    John Rogers (JohnRo) 23-Mar-1992

Environment:

    User Mode - Win32

Revision History:

    23-Mar-1992 JohnRo
        Created.
    09-Jul-1992 JohnRo
        RAID 10503: srv mgr: repl dialog doesn't come up.
        Use PREFIX_ equates.
    25-Sep-1992 JohnRo
        RAID 5494: repl svc does not maintain time stamp on import startup.
        (Fixed lock type.)
    02-Dec-1992 JohnRo
        RAID 3844: remote NetReplSetInfo uses local machine type.
        Quiet normal debug output.
    13-Jan-1993 JohnRo
        RAID 7053: locked trees added to pulse msg.  (Actually fix all
        kinds of remote lock handling.)
        Made some changes suggested by PC-LINT 5.0
    04-Mar-1993 JohnRo
        RAID 7988: downlevel repl importer might not see lock file
        for new first-level dir.
        Made more changes suggested by PC-LINT 5.0
    26-Apr-1993 JohnRo
        RAID 7313: Fix user locks flag value for obscure permissions (e.g.
        read-only file-system).
        Use NetpKdPrint() where possible.

--*/


// These must be included first:

#include <windef.h>     // IN, DWORD, etc.
#include <lmcons.h>     // NET_API_STATUS, etc.

// These may be included in any order:

#include <alertmsg.h>
#include <config.h>     // LPNET_CONFIG_HANDLE, Netp config routines.
#include <confname.h>   // SECT_NT_ equates.
#include <expdir.h>     // My prototype.
#include <lmerr.h>      // NERR_ and ERROR_ equates, NO_ERROR.
#include <lmerrlog.h>
#include <master.h>     // RMGlobalListLock, etc.
#include <masproto.h>   // NewMasterRecord(), etc.
#include <netdebug.h>   // NetpAssert(), etc.
#include <netlock.h>    // ACQUIRE_LOCK(), etc.
#include <prefix.h>     // PREFIX_ equates.
#include <repldefs.h>   // IF_DEBUG().
#include <replgbl.h>    // ReplConfig variables.
#include <tstr.h>       // STRCMP(), ... functions


// This also fixes the USERLOCK.* file(s) to match the lock count in registry.
NET_API_STATUS
ExportDirReadMasterList(
    VOID
    )
{
    NET_API_STATUS      ApiStatus;
    BOOL                ConfigLocked = FALSE;
    LPTSTR              DirName = NULL;
    DWORD               EntryCount = 0;
    BOOL                FirstTime;
    LPNET_CONFIG_HANDLE Handle = NULL;
    BOOL                ListLocked = FALSE;

    IF_DEBUG(MASTER) {
        NetpKdPrint(( PREFIX_REPL_MASTER
                "ExportDirReadMasterList: beginning...\n" ));
    }

    ACQUIRE_LOCK_SHARED( ReplConfigLock );
    ConfigLocked = TRUE;

    ACQUIRE_LOCK( RMGlobalListLock );
    ListLocked = TRUE;

    //
    // Open the right section of the config file/whatever.
    //
    ApiStatus = NetpOpenConfigDataEx(
            & Handle,
            NULL,         // local (no server name)
            (LPTSTR) SECT_NT_REPLICATOR,         // service name
            (LPTSTR) SECT_NT_REPLICATOR_EXPORTS, // area under service
            TRUE);        // read-only
    if (ApiStatus != NO_ERROR) {
        goto CleanUp;
    }

    //
    // Count entries in config data.
    //
    ApiStatus = NetpNumberOfConfigKeywords (
            Handle,
            & EntryCount );

    if (ApiStatus != NO_ERROR) {
        NetpAssert( FALSE );  // BUGBUG handle unexpected better.
        goto CleanUp;
    } else if (EntryCount == 0) {
        goto CleanUp;
    }

    //
    // Loop for each keyword (relative directory path) in this section.
    //

    FirstTime = TRUE;

    /*lint -save -e716 */  // disable warnings for while(TRUE)
    while (TRUE) {
        DWORD Integrity, Extent, LockCount, LockTime;
        LPTSTR ValueString;

        ApiStatus = NetpEnumConfigSectionValues (
                Handle,
                & DirName,              // Keyword - alloc and set ptr.
                & ValueString,          // Must be freed by NetApiBufferFree().
                FirstTime );

        FirstTime = FALSE;

        if (ApiStatus != NO_ERROR) {
            goto CleanUp;      // Handle end of list or an actual error.
        }

        NetpAssert( DirName != NULL );
        NetpAssert( ValueString != NULL );

        //
        // Parse the value string...
        //
        ApiStatus = ExportDirParseConfigData (
                NULL,                   // no server name
                ValueString,
                & Integrity,
                & Extent,
                & LockCount,
                & LockTime);            // Seconds since 1970.

        NetpMemoryFree( ValueString );

        if (ApiStatus == NO_ERROR) {
            PMASTER_LIST_REC rec;

            rec = NewMasterRecord( DirName, Integrity, Extent );

            if (rec == NULL) {
                ApiStatus = ERROR_NOT_ENOUGH_MEMORY;
                goto CleanUp;
            }

            // Override lock info set by NewMasterRecord().
            rec->locks_fixed = FALSE;   // just in case read-only filesystem.
            rec->lockcount = LockCount;
            rec->time_of_first_lock = LockTime;

            // Fix UserLock file(s) to match lock count.
            ApiStatus = ExportDirFixUserLockFiles(
                    (LPCTSTR) ReplConfigExportPath,
                    (LPCTSTR) DirName,
                    LockCount );
            if (ApiStatus != NO_ERROR) {
                // BUGBUG: is leaving loop a good idea?

                goto CleanUp;  // go log error, etc.
            }

            NetpAssert( DirName != NULL );
            NetpMemoryFree( DirName );
            DirName = NULL;

            rec->locks_fixed = TRUE;

        } else {
            goto CleanUp;  // go log error, etc.
        }

    }  // while TRUE (exit on error or end of list)
    /*lint -restore */ // re-enable warnings for while(TRUE)


    //
    // All done (error or otherwise).
    //

CleanUp:

    if (ApiStatus == NERR_CfgParamNotFound) {      // Normal end of list.
        ApiStatus = NO_ERROR;
    }

    IF_DEBUG(MASTER) {
        NetpKdPrint(( PREFIX_REPL_MASTER
                "ExportDirReadMasterList: done, status="
                FORMAT_API_STATUS ".\n", ApiStatus ));
    }

    if (ApiStatus != NO_ERROR) {

        AlertLogExit(ALERT_ReplSysErr, 
                NELOG_ReplSysErr, 
                ApiStatus, 
                NULL, 
                NULL, 
                EXIT);  // BUGBUG: kill service?
    }


    if (ConfigLocked) {
        RELEASE_LOCK( ReplConfigLock );
    }

    if (DirName != NULL) {
        NetpMemoryFree( DirName );
    }

    if (Handle != NULL) {
        (void) NetpCloseConfigData( Handle );
    }

    if (ListLocked) {
        RELEASE_LOCK( RMGlobalListLock );
    }

    return ApiStatus;

} // ExportDirReadMasterList

NET_API_STATUS
ExportDirGetRegistryValues(
    IN LPTSTR ServiceRegPath OPTIONAL,
    IN LPTSTR TargetName
    )
{
    NET_API_STATUS ApiStatus;
    DWORD EntryCount = 0;
    BOOL  FirstTime;
    LPNET_CONFIG_HANDLE Handle = NULL;
    BOOL LockDone = FALSE;

    UNREFERENCED_PARAMETER( ServiceRegPath );

    IF_DEBUG(MASTER) {
        NetpKdPrint(( PREFIX_REPL_MASTER
                "ExportDirGetRegistryValues: beginning...\n" ));
    }

    ACQUIRE_LOCK( RMGlobalListLock );
    LockDone = TRUE;

    //
    // Open the right section of the config file/whatever.
    //
    ApiStatus = NetpOpenConfigDataEx(
            & Handle,
            NULL,         // local (no server name)
            (LPTSTR) SECT_NT_REPLICATOR,         // service name
            (LPTSTR) SECT_NT_REPLICATOR_EXPORTS, // area under service
            TRUE);        // read-only
    if (ApiStatus != NO_ERROR) {
        goto Exit;
    }

    //
    // Count entries in config data.
    //
    ApiStatus = NetpNumberOfConfigKeywords (
            Handle,
            & EntryCount );

    if (ApiStatus != NO_ERROR) {
        NetpAssert( FALSE );  // BUGBUG handle unexpected better.
        goto Exit;
    } else if (EntryCount == 0) {
        ApiStatus = NERR_CfgCompNotFound; // no enteries in list
        goto Exit;                        // probable a new export dir
    }

    //
    // Loop for each keyword (relative directory path) in this section.
    //

    FirstTime = TRUE;

    /*lint -save -e716 */  // disable warnings for while(TRUE)
    while (TRUE) {      // look for the TargetName

        LPTSTR DirName;
        DWORD  Integrity, Extent, LockCount, LockTime;
        LPTSTR ValueString;

        ApiStatus = NetpEnumConfigSectionValues (
                Handle,
                & DirName,              // Keyword - alloc and set ptr.
                & ValueString,          // Must be freed by NetApiBufferFree().
                FirstTime );

        FirstTime = FALSE;

        if (ApiStatus != NO_ERROR) {
            goto Exit;      // Handle end of list or an actual error.
        }

        NetpAssert( DirName != NULL );
        NetpAssert( ValueString != NULL );

        IF_DEBUG( MASTER ) {
            NetpKdPrint(( PREFIX_REPL_MASTER
                    "Registry Item Found: '" FORMAT_LPTSTR "'.\n",
                            DirName ));
        }


        if ( (STRICMP( DirName, TargetName ) == 0) ) {

            //
            // Parse the value string...
            //
            IF_DEBUG( MASTER ) {
                NetpKdPrint(( PREFIX_REPL_MASTER
                        "Registry Match made: '" FORMAT_LPTSTR "'~=' "
                        FORMAT_LPTSTR "'.\n",
                        DirName, TargetName ));
            }


            ApiStatus = ExportDirParseConfigData (
                        NULL,                   // no server name
                        ValueString,
                        & Integrity,
                        & Extent,
                        & LockCount,
                        & LockTime);            // Seconds since 1970.

            NetpMemoryFree( ValueString );

            if (ApiStatus == NO_ERROR) {
                PMASTER_LIST_REC rec;

                rec = NewMasterRecord( DirName, Integrity, Extent );

                NetpMemoryFree( DirName );

                if (rec == NULL) {
                    ApiStatus = ERROR_NOT_ENOUGH_MEMORY;
                    goto Exit;
                }

                // Override lock info set by NewMasterRecord().

                rec->lockcount = LockCount;
                rec->time_of_first_lock = LockTime;
                goto Exit;

            } else {
                // BUGBUG: Log the error!
                IF_DEBUG(MASTER) {
                    NetpKdPrint(( PREFIX_REPL_MASTER
                            "ExportDirParseConfigData retured error: "
                            FORMAT_API_STATUS ".\n", ApiStatus ));
                }
                goto Exit;
            }

        } else {
              NetpMemoryFree( DirName );
              NetpMemoryFree( ValueString );
        }
    }
    /*lint -restore */  // re-enable warnings for while(TRUE)


    //
    // All done (error or otherwise).
    //

Exit:

    //
    // if an error occurs pass that value back
    //


    IF_DEBUG(MASTER) {
        NetpKdPrint(( PREFIX_REPL_MASTER
                "ExportDirGetRegistryValues: done, status="
                FORMAT_API_STATUS ".\n", ApiStatus ));
    }

    if (Handle != NULL) {
        (void) NetpCloseConfigData( Handle );
    }

    if (LockDone) {
        RELEASE_LOCK( RMGlobalListLock );
    }

    return ApiStatus;

} // ExportDirGetRegistryValues