DEVEL15-windows-search-cell-registry-20090608
[openafs.git] / src / WINNT / afsd / cm_config.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <windows.h>
11 #include <winsock2.h>
12 #include <stdlib.h>
13 #include <stdio.h>
14 #include <string.h>
15
16 #include "afsd.h"
17 #include <WINNT\afssw.h>
18 #include <WINNT\afsreg.h>
19
20 #include <afs/param.h>
21 #include <afs/stds.h>
22 #include <afs/cellconfig.h>
23
24 #ifdef AFS_AFSDB_ENV
25 #include "cm_dns.h"
26 #include <afs/afsint.h>
27 #endif
28
29 static long cm_ParsePair(char *lineBufferp, char *leftp, char *rightp)
30 {
31     char *tp;
32     char tc;
33     int sawEquals;
34     int sawBracket;
35         
36     sawEquals = 0;
37     sawBracket = 0;
38     for(tp = lineBufferp; *tp; tp++) {
39         tc = *tp;
40
41         if (sawBracket) {
42             if (tc == ']')
43                 sawBracket = 0;
44             continue;
45         }
46
47         /* comment or line end */
48         if (tc == '#' || tc == '\r' || tc == '\n') 
49             break;
50
51         /* square bracket comment -- look for closing delim */
52         if (tc == '[') {
53             sawBracket = 1; 
54             continue;
55         }       
56
57         /* space or tab */
58         if (tc == ' ' || tc == '\t') 
59             continue;
60
61         if (tc == '=') {
62             sawEquals = 1;
63             continue;
64         }
65
66         /* now we have a real character, put it in the appropriate bucket */
67         if (sawEquals == 0) {
68             *leftp++ = tc;
69         }       
70         else {  
71             *rightp++ = tc;
72         }
73     }
74
75     /* null terminate the strings */
76     *leftp = 0;
77     *rightp = 0;
78
79     return 0;   /* and return success */
80 }
81
82 static int
83 IsWindowsModule(const char * name)
84 {
85     const char * p;
86     int i;
87
88     /* Do not perform searches for probable Windows modules */
89     for (p = name, i=0; *p; p++) {
90         if ( *p == '.' )
91             i++;
92     }
93     p = strrchr(name, '.');
94     if (p) {
95         if (i == 1 && 
96             (!cm_stricmp_utf8N(p,".dll") ||
97              !cm_stricmp_utf8N(p,".exe") ||
98              !cm_stricmp_utf8N(p,".ini") ||
99              !cm_stricmp_utf8N(p,".db") ||
100              !cm_stricmp_utf8N(p,".drv")))
101             return 1;
102     }
103     return 0;
104 }
105
106 /* search for a cell, and either return an error code if we don't find it,
107  * or return 0 if we do, in which case we also fill in the addresses in
108  * the cellp field.
109  *
110  * new feature:  we can handle abbreviations and are insensitive to case.
111  * If the caller wants the "real" cell name, it puts a non-null pointer in
112  * newCellNamep.  Anomaly:  if cellNamep is ambiguous, we may modify
113  * newCellNamep but return an error code.
114  *
115  * Linked Cells: the CellServDB format permits linked cells
116  *   >cell [linked-cell] #Description
117  *
118  * newCellNamep and linkedNamep are required to be CELL_MAXNAMELEN in size.
119  */
120 long cm_SearchCellFile(char *cellNamep, char *newCellNamep,
121                        cm_configProc_t *procp, void *rockp)
122 {
123     return cm_SearchCellFileEx(cellNamep, newCellNamep, NULL, procp, rockp);
124 }
125
126 long cm_SearchCellFileEx(char *cellNamep, char *newCellNamep,
127                          char *linkedNamep,
128                          cm_configProc_t *procp, void *rockp)
129 {
130     char wdir[MAX_PATH]="";
131     FILE *tfilep = NULL, *bestp, *tempp;
132     char *tp, *linkp;
133     char lineBuffer[257];
134     struct hostent *thp;
135     char *valuep;
136     struct sockaddr_in vlSockAddr;
137     int inRightCell = 0;
138     int foundCell = 0;
139     long code;
140     int tracking = 1, partial = 0;
141
142     if ( IsWindowsModule(cellNamep) )
143         return -3;
144
145     cm_GetCellServDB(wdir, sizeof(wdir));
146     if (*wdir)
147         tfilep = fopen(wdir, "r");
148
149     if (!tfilep) 
150         return -2;
151
152     bestp = fopen(wdir, "r");
153     
154 #ifdef CELLSERV_DEBUG
155     osi_Log2(afsd_logp,"cm_searchfile fopen handle[%p], wdir[%s]", bestp, 
156              osi_LogSaveString(afsd_logp,wdir));
157 #endif
158     /* have we seen the cell line for the guy we're looking for? */
159     while (1) {
160         linkp = NULL;
161         tp = fgets(lineBuffer, sizeof(lineBuffer), tfilep);
162         if (tracking)
163             (void) fgets(lineBuffer, sizeof(lineBuffer), bestp);
164         if (tp == NULL) {
165             if (feof(tfilep)) {
166                 /* hit EOF */
167                 if (partial) {
168                     /*
169                      * found partial match earlier;
170                      * now go back to it
171                      */
172                     tempp = bestp;
173                     bestp = tfilep;
174                     tfilep = tempp;
175                     inRightCell = 1;
176                     partial = 0;
177                     continue;
178                 }
179                 else {
180                     fclose(tfilep);
181                     fclose(bestp);
182                     return (foundCell? 0 : -3);
183                 }
184             }
185         }       
186
187         /* turn trailing cr or lf into null */
188         tp = strrchr(lineBuffer, '\r');
189         if (tp) *tp = 0;
190         tp = strrchr(lineBuffer, '\n');
191         if (tp) *tp = 0;
192
193         /* skip blank lines */
194         if (lineBuffer[0] == 0) continue;
195
196         /*
197          * The format is:
198          *   >[cell] [linked-cell] #[Description]
199          * where linked-cell and Description are optional
200          */
201         if (lineBuffer[0] == '>') {
202             if (inRightCell) {
203                 fclose(tfilep);
204                 fclose(bestp);
205                 return(foundCell ? 0 : -6);
206             }
207
208             /* 
209              * terminate the cellname at the first white space
210              * leaving 'tp' pointing to the next string if any
211              */
212             for (tp = &lineBuffer[1]; tp && !isspace(*tp); tp++);
213             if (tp) {
214                 *tp = '\0';
215                 for (tp++ ;tp && isspace(*tp); tp++);
216                 if (*tp != '#') {
217                     linkp = tp;
218                     for (; tp && !isspace(*tp); tp++);
219                     if (tp) 
220                         *tp = '\0';
221                 }
222             }
223
224             /* now see if this is the right cell */
225             if (stricmp(lineBuffer+1, cellNamep) == 0) {
226                 /* found the cell we're looking for */
227                 if (newCellNamep) {
228                     strncpy(newCellNamep, lineBuffer+1,CELL_MAXNAMELEN);
229                     newCellNamep[CELL_MAXNAMELEN-1] = '\0';
230                     strlwr(newCellNamep);
231                 }
232                 if (linkedNamep) {
233                     strncpy(linkedNamep, linkp ? linkp : "", CELL_MAXNAMELEN);
234                     linkedNamep[CELL_MAXNAMELEN-1] = '\0';
235                     strlwr(linkedNamep);
236                 }
237                 inRightCell = 1;
238                 tracking = 0;
239 #ifdef CELLSERV_DEBUG                
240                 osi_Log2(afsd_logp, "cm_searchfile is cell inRightCell[%p], linebuffer[%s]",
241                          inRightCell, osi_LogSaveString(afsd_logp,lineBuffer));
242 #endif
243             }
244             else if (cm_stricmp_utf8(lineBuffer+1, cellNamep) == 0) {
245                 /* partial match */
246                 if (partial) {  /* ambiguous */
247                     fclose(tfilep);
248                     fclose(bestp);
249                     return -5;
250                 }
251                 if (newCellNamep) {
252                     strncpy(newCellNamep, lineBuffer+1,CELL_MAXNAMELEN);
253                     newCellNamep[CELL_MAXNAMELEN-1] = '\0';
254                     strlwr(newCellNamep);
255                 }
256                 if (linkedNamep) {
257                     strncpy(linkedNamep, linkp ? linkp : "", CELL_MAXNAMELEN);
258                     linkedNamep[CELL_MAXNAMELEN-1] = '\0';
259                     strlwr(linkedNamep);
260                 }
261                 inRightCell = 0;
262                 tracking = 0;
263                 partial = 1;
264             }
265             else inRightCell = 0;
266         }
267         else {
268             valuep = strchr(lineBuffer, '#');
269             if (valuep == NULL) {
270                 fclose(tfilep);
271                 fclose(bestp);
272                 return -4;
273             }
274             valuep++;   /* skip the "#" */
275
276             valuep += strspn(valuep, " \t"); /* skip SP & TAB */
277             /* strip spaces and tabs in the end. They should not be there according to CellServDB format
278              * so do this just in case                        
279              */
280             while (valuep[strlen(valuep) - 1] == ' ' || valuep[strlen(valuep) - 1] == '\t') 
281                 valuep[strlen(valuep) - 1] = '\0';
282
283             if (inRightCell) {
284                 /* add the server to the VLDB list */
285                 WSASetLastError(0);
286                 thp = gethostbyname(valuep);
287 #ifdef CELLSERV_DEBUG
288                 osi_Log3(afsd_logp,"cm_searchfile inRightCell thp[%p], valuep[%s], WSAGetLastError[%d]",
289                          thp, osi_LogSaveString(afsd_logp,valuep), WSAGetLastError());
290 #endif
291                 if (thp) {
292                     memcpy(&vlSockAddr.sin_addr.s_addr, thp->h_addr,
293                             sizeof(long));
294                     vlSockAddr.sin_family = AF_INET;
295                     /* sin_port supplied by connection code */
296                     if (procp)
297                         (*procp)(rockp, &vlSockAddr, valuep, 0);
298                     foundCell = 1;
299                 }
300                 if (!thp) {
301                     afs_uint32 ip_addr;
302                     unsigned int c1, c2, c3, c4;
303                     
304                     /* Since there is no gethostbyname() data 
305                      * available we will read the IP address
306                      * stored in the CellServDB file
307                      */
308                     code = sscanf(lineBuffer, " %u.%u.%u.%u",
309                                    &c1, &c2, &c3, &c4);
310                     if (code == 4 && c1<256 && c2<256 && c3<256 && c4<256) {
311                         tp = (unsigned char *) &ip_addr;
312                         *tp++ = c1;
313                         *tp++ = c2;
314                         *tp++ = c3;
315                         *tp++ = c4;
316                         memcpy(&vlSockAddr.sin_addr.s_addr, &ip_addr,
317                                 sizeof(long));
318                         vlSockAddr.sin_family = AF_INET;
319                         /* sin_port supplied by connection code */
320                         if (procp)
321                             (*procp)(rockp, &vlSockAddr, valuep, 0);
322                         foundCell = 1;
323                     }
324                 }
325             }
326         }       /* a vldb line */
327     }           /* while loop processing all lines */
328
329     /* if for some unknown reason cell is not found, return negative code (-11) ??? */
330     return (foundCell) ? 0 : -11;
331 }
332
333 /*
334  * The CellServDB registry schema is as follows:
335  *
336  * HKLM\SOFTWARE\OpenAFS\Client\CellServDB\[cellname]\
337  *   "LinkedCell"    REG_SZ "[cellname]" 
338  *   "Description"   REG_SZ "[comment]"
339  *   "ForceDNS"      DWORD  {0,1}
340  *
341  * HKLM\SOFTWARE\OpenAFS\Client\CellServDB\[cellname]\[servername]\
342  *   "HostName"      REG_SZ "[hostname]" 
343  *   "IPv4Address"   REG_SZ "[address]" 
344  *   "IPv6Address"   REG_SZ "[address]"   <future>
345  *   "Comment"       REG_SZ "[comment]"
346  *   "Rank"          DWORD  "0..65535"
347  *   "Clone"         DWORD  "{0,1}"
348  *   "vlserver"      DWORD  "7003"        <future>
349  *   "ptserver"      DWORD  ...           <future>
350  *
351  * ForceDNS is implied non-zero if there are no [servername]
352  * keys under the [cellname] key.  Otherwise, ForceDNS is zero.
353  * If [servername] keys are specified and none of them evaluate
354  * to a valid server configuration, the return code is success.
355  * This prevents failover to the CellServDB file or DNS.
356  */
357 long cm_SearchCellRegistry(afs_uint32 client, 
358                            char *cellNamep, char *newCellNamep,
359                            char *linkedNamep,
360                            cm_configProc_t *procp, void *rockp)
361 {
362     HKEY hkCellServDB = 0, hkCellName = 0, hkServerName = 0;
363     DWORD dwType, dwSize;
364     DWORD dwCells, dwServers, dwForceDNS;
365     DWORD dwIndex, dwRank;
366     unsigned short ipRank;
367     LONG code;
368     FILETIME ftLastWriteTime;
369     char szCellName[CELL_MAXNAMELEN];
370     char szServerName[MAXHOSTCHARS];
371     char szHostName[MAXHOSTCHARS];
372     char szAddr[64];
373     struct hostent *thp;
374     struct sockaddr_in vlSockAddr;
375     char * s;
376
377     if ( IsWindowsModule(cellNamep) )
378         return -1;
379
380     /* No Server CellServDB list (yet) */
381     if ( !client )
382         return CM_ERROR_NOSUCHCELL;
383
384     if (RegOpenKeyEx( HKEY_LOCAL_MACHINE,
385                       AFSREG_CLT_OPENAFS_SUBKEY "\\CellServDB",
386                       0,
387                       KEY_READ|KEY_WRITE|KEY_QUERY_VALUE,
388                       &hkCellServDB) != ERROR_SUCCESS)
389         return CM_ERROR_NOSUCHCELL;
390
391     if (RegOpenKeyEx( hkCellServDB, 
392                       cellNamep,
393                       0,
394                       KEY_READ|KEY_WRITE|KEY_QUERY_VALUE,
395                       &hkCellName) != ERROR_SUCCESS) {
396         BOOL bFound = 0;
397
398         /* We did not find an exact match.  Much search for partial matches. */
399
400         code = RegQueryInfoKey( hkCellServDB,
401                                 NULL,  /* lpClass */
402                                 NULL,  /* lpcClass */
403                                 NULL,  /* lpReserved */
404                                 &dwCells,  /* lpcSubKeys */
405                                 NULL,  /* lpcMaxSubKeyLen */
406                                 NULL,  /* lpcMaxClassLen */
407                                 NULL,  /* lpcValues */
408                                 NULL,  /* lpcMaxValueNameLen */
409                                 NULL,  /* lpcMaxValueLen */
410                                 NULL,  /* lpcbSecurityDescriptor */
411                                 &ftLastWriteTime /* lpftLastWriteTime */
412                                 );
413         if (code != ERROR_SUCCESS)
414             dwCells = 0;
415
416         /* 
417          * We search the entire list to ensure that there is only
418          * one prefix match.  If there is more than one, we return none.
419          */
420         for ( dwIndex = 0; dwIndex < dwCells; dwIndex++ ) {
421             dwSize = CELL_MAXNAMELEN;
422             code = RegEnumKeyEx( hkCellServDB, dwIndex, szCellName, &dwSize, NULL, 
423                                  NULL, NULL, &ftLastWriteTime);
424             if (code != ERROR_SUCCESS)
425                 continue;
426             szCellName[CELL_MAXNAMELEN-1] = '\0';
427             strlwr(szCellName);
428
429             /* if not a prefix match, try the next key */
430             if (strncmp(cellNamep, szCellName, strlen(cellNamep)))
431                 continue;
432
433             /* If we have a prefix match and we already found another
434              * match, return neither */
435             if (hkCellName) {
436                 bFound = 0;
437                 RegCloseKey( hkCellName);
438                 break;
439             }
440
441             if (RegOpenKeyEx( hkCellServDB, 
442                               szCellName,
443                               0,
444                               KEY_READ|KEY_WRITE|KEY_QUERY_VALUE,
445                               &hkCellName) != ERROR_SUCCESS)
446                 continue;
447
448             if (newCellNamep) {
449                 strncpy(newCellNamep, szCellName, CELL_MAXNAMELEN);
450                 newCellNamep[CELL_MAXNAMELEN-1] = '\0';
451             }
452             bFound = 1;
453         }
454
455         if ( !bFound ) {
456             RegCloseKey(hkCellServDB);
457             return CM_ERROR_NOSUCHCELL;
458         }
459     } else if (newCellNamep) {
460         strncpy(newCellNamep, cellNamep, CELL_MAXNAMELEN);
461         newCellNamep[CELL_MAXNAMELEN-1] = '\0';
462         strlwr(newCellNamep);
463     }
464
465     if (linkedNamep) {
466         dwSize = CELL_MAXNAMELEN;
467         code = RegQueryValueEx(hkCellName, "LinkedCell", NULL, &dwType,
468                                 (BYTE *) linkedNamep, &dwSize);
469         if (code == ERROR_SUCCESS && dwType == REG_SZ) {
470             linkedNamep[CELL_MAXNAMELEN-1] = '\0';
471             strlwr(linkedNamep);
472         } else {
473             linkedNamep[0] = '\0';
474         }
475     }
476
477     /* Check to see if DNS lookups are required */
478     dwSize = sizeof(DWORD);
479     code = RegQueryValueEx(hkCellName, "ForceDNS", NULL, &dwType,
480                             (BYTE *) &dwForceDNS, &dwSize);
481     if (code == ERROR_SUCCESS && dwType == REG_DWORD) {
482         if (dwForceDNS)
483             goto done;
484     } else {
485         dwForceDNS = 0;
486     }
487
488     /* 
489      * Using the defined server list.  Enumerate and populate
490      * the server list for the cell.
491      */
492     code = RegQueryInfoKey( hkCellName,
493                             NULL,  /* lpClass */
494                             NULL,  /* lpcClass */
495                             NULL,  /* lpReserved */
496                             &dwServers,  /* lpcSubKeys */
497                             NULL,  /* lpcMaxSubKeyLen */
498                             NULL,  /* lpcMaxClassLen */
499                             NULL,  /* lpcValues */
500                             NULL,  /* lpcMaxValueNameLen */
501                             NULL,  /* lpcMaxValueLen */
502                             NULL,  /* lpcbSecurityDescriptor */
503                             &ftLastWriteTime /* lpftLastWriteTime */
504                             );
505     if (code != ERROR_SUCCESS)
506         dwServers = 0;
507
508     for ( dwIndex = 0; dwIndex < dwServers; dwIndex++ ) {
509         dwSize = MAXHOSTCHARS;
510         code = RegEnumKeyEx( hkCellName, dwIndex, szServerName, &dwSize, NULL, 
511                              NULL, NULL, &ftLastWriteTime);
512         if (code != ERROR_SUCCESS)
513             continue;
514
515         szServerName[MAXHOSTCHARS-1] = '\0';
516         if (RegOpenKeyEx( hkCellName, 
517                           szServerName,
518                           0,
519                           KEY_READ|KEY_WRITE|KEY_QUERY_VALUE,
520                           &hkServerName) != ERROR_SUCCESS)
521             continue;
522
523         /* We have a handle to a valid server key.  Now we need 
524          * to add the server to the cell */
525         
526         /* First, see if there is an alternate hostname specified */
527         dwSize = MAXHOSTCHARS;
528         code = RegQueryValueEx(hkServerName, "HostName", NULL, &dwType,
529                                 (BYTE *) szHostName, &dwSize);
530         if (code == ERROR_SUCCESS && dwType == REG_SZ) {
531             szHostName[MAXHOSTCHARS-1] = '\0';
532             strlwr(szHostName);
533             s = szHostName;
534         } else {
535             s = szServerName;
536         }
537
538         dwSize = sizeof(DWORD);
539         code = RegQueryValueEx(hkServerName, "Rank", NULL, &dwType,
540                                 (BYTE *) &dwRank, &dwSize);
541         if (code == ERROR_SUCCESS && dwType == REG_DWORD) {
542             ipRank = (unsigned short)(dwRank <= 65535 ? dwRank : 65535);
543         } else {
544             ipRank = 0;
545         }
546
547         dwSize = sizeof(szAddr);
548         code = RegQueryValueEx(hkServerName, "IPv4Address", NULL, &dwType,
549                                 (BYTE *) szAddr, &dwSize);
550         if (code == ERROR_SUCCESS && dwType == REG_SZ) {
551             szAddr[63] = '\0';
552         } else {
553             szAddr[0] = '\0';
554         }
555
556         WSASetLastError(0);
557         thp = gethostbyname(s);
558         if (thp) {
559             memcpy(&vlSockAddr.sin_addr.s_addr, thp->h_addr, sizeof(long));
560             vlSockAddr.sin_family = AF_INET;
561             /* sin_port supplied by connection code */
562             if (procp)
563                 (*procp)(rockp, &vlSockAddr, s, ipRank);
564         } else if (szAddr[0]) {
565             afs_uint32 ip_addr;
566             unsigned int c1, c2, c3, c4;
567
568             /* Since there is no gethostbyname() data 
569              * available we will read the IP address
570              * stored in the CellServDB file
571              */
572             code = sscanf(szAddr, " %u.%u.%u.%u",
573                            &c1, &c2, &c3, &c4);
574             if (code == 4 && c1<256 && c2<256 && c3<256 && c4<256) {
575                 unsigned char * tp = (unsigned char *) &ip_addr;
576                 *tp++ = c1;
577                 *tp++ = c2;
578                 *tp++ = c3;
579                 *tp++ = c4;
580                 memcpy(&vlSockAddr.sin_addr.s_addr, &ip_addr,
581                         sizeof(long));
582                 vlSockAddr.sin_family = AF_INET;
583                 /* sin_port supplied by connection code */
584                 if (procp)
585                     (*procp)(rockp, &vlSockAddr, s, ipRank);
586             }
587         }
588
589         RegCloseKey( hkServerName);
590     }
591
592   done:
593     RegCloseKey(hkCellName);
594     RegCloseKey(hkCellServDB);
595
596     return ((dwForceDNS || dwServers == 0) ? CM_ERROR_FORCE_DNS_LOOKUP : 0);
597 }
598
599 long cm_EnumerateCellRegistry(afs_uint32 client, cm_enumCellRegistryProc_t *procp, void *rockp)
600 {
601     HKEY hkCellServDB = 0;
602     DWORD dwType, dwSize;
603     DWORD dwCells;
604     DWORD dwIndex;
605     LONG code;
606     FILETIME ftLastWriteTime;
607     char szCellName[CELL_MAXNAMELEN];
608
609     /* No server CellServDB in the registry. */
610     if (!client || procp == NULL)
611         return 0;
612
613     if (RegOpenKeyEx( HKEY_LOCAL_MACHINE,
614                       AFSREG_CLT_OPENAFS_SUBKEY "\\CellServDB",
615                       0,
616                       KEY_READ|KEY_WRITE|KEY_QUERY_VALUE,
617                       &hkCellServDB) != ERROR_SUCCESS)
618         return 0;
619
620     code = RegQueryInfoKey( hkCellServDB,
621                             NULL,  /* lpClass */
622                             NULL,  /* lpcClass */
623                             NULL,  /* lpReserved */
624                             &dwCells,  /* lpcSubKeys */
625                             NULL,  /* lpcMaxSubKeyLen */
626                             NULL,  /* lpcMaxClassLen */
627                             NULL,  /* lpcValues */
628                             NULL,  /* lpcMaxValueNameLen */
629                             NULL,  /* lpcMaxValueLen */
630                             NULL,  /* lpcbSecurityDescriptor */
631                             &ftLastWriteTime /* lpftLastWriteTime */
632                             );
633     if (code != ERROR_SUCCESS)
634         dwCells = 0;
635
636     /* 
637      * Enumerate each Cell and 
638      */
639     for ( dwIndex = 0; dwIndex < dwCells; dwIndex++ ) {
640         dwSize = CELL_MAXNAMELEN;
641         code = RegEnumKeyEx( hkCellServDB, dwIndex, szCellName, &dwSize, NULL, 
642                              NULL, NULL, &ftLastWriteTime);
643         if (code != ERROR_SUCCESS)
644             continue;
645         szCellName[CELL_MAXNAMELEN-1] = '\0';
646         strlwr(szCellName);
647
648         (*procp)(rockp, szCellName);
649     }
650
651     RegCloseKey(hkCellServDB);
652     return 0;
653 }
654
655 /* newCellNamep is required to be CELL_MAXNAMELEN in size */
656 long cm_SearchCellByDNS(char *cellNamep, char *newCellNamep, int *ttl,
657                         cm_configProc_t *procp, void *rockp)
658 {
659 #ifdef AFS_AFSDB_ENV
660     int rc;
661     int  cellHostAddrs[AFSMAXCELLHOSTS];
662     char cellHostNames[AFSMAXCELLHOSTS][MAXHOSTCHARS];
663     unsigned short ipRanks[AFSMAXCELLHOSTS];
664     int numServers;
665     int i;
666     struct sockaddr_in vlSockAddr;
667 #ifdef CELLSERV_DEBUG
668     osi_Log1(afsd_logp,"SearchCellDNS-Doing search for [%s]", osi_LogSaveString(afsd_logp,cellNamep));
669 #endif
670     if ( IsWindowsModule(cellNamep) )
671         return -1;
672     rc = getAFSServer(cellNamep, cellHostAddrs, cellHostNames, ipRanks, &numServers, ttl);
673     if (rc == 0 && numServers > 0) {     /* found the cell */
674         for (i = 0; i < numServers; i++) {
675             memcpy(&vlSockAddr.sin_addr.s_addr, &cellHostAddrs[i],
676                    sizeof(long));
677             vlSockAddr.sin_family = AF_INET;
678             /* sin_port supplied by connection code */
679             if (procp)
680                 (*procp)(rockp, &vlSockAddr, cellHostNames[i], ipRanks[i]);
681         }
682         if (newCellNamep) {
683             strncpy(newCellNamep,cellNamep,CELL_MAXNAMELEN);
684             newCellNamep[CELL_MAXNAMELEN-1] = '\0';
685             strlwr(newCellNamep);
686         }
687         return 0;   /* found cell */
688     }
689     else
690        return -1;  /* not found */
691 #else
692     return -1;  /* not found */
693 #endif /* AFS_AFSDB_ENV */
694 }
695
696 /* use cm_GetConfigDir() plus AFS_CELLSERVDB to 
697  * generate the fully qualified name of the CellServDB 
698  * file.
699  */
700 long cm_GetCellServDB(char *cellNamep, afs_uint32 len)
701 {
702     size_t tlen;
703     
704     cm_GetConfigDir(cellNamep, len);
705
706     /* add trailing backslash, if required */
707     tlen = (int)strlen(cellNamep);
708     if (tlen) {
709         if (cellNamep[tlen-1] != '\\') {
710             strncat(cellNamep, "\\", len);
711             cellNamep[len-1] = '\0';
712         }
713         
714         strncat(cellNamep, AFS_CELLSERVDB, len);
715         cellNamep[len-1] = '\0';
716     }
717     return 0;
718 }
719
720 /* look up the root cell's name in the Registry 
721  * Input buffer must be at least CELL_MAXNAMELEN 
722  * in size.  (Defined in cm_cell.h)
723  */
724 long cm_GetRootCellName(char *cellNamep)
725 {
726     DWORD code, dummyLen;
727     HKEY parmKey;
728
729     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
730                         0, KEY_QUERY_VALUE, &parmKey);
731     if (code != ERROR_SUCCESS)
732         return -1;
733
734     dummyLen = CELL_MAXNAMELEN;
735     code = RegQueryValueEx(parmKey, "Cell", NULL, NULL,
736                                 cellNamep, &dummyLen);
737     RegCloseKey (parmKey);
738     if (code != ERROR_SUCCESS || cellNamep[0] == 0)
739         return -1;
740
741     return 0;
742 }
743
744 cm_configFile_t *cm_CommonOpen(char *namep, char *rwp)
745 {
746     char wdir[MAX_PATH]="";
747     FILE *tfilep = NULL;
748
749     cm_GetConfigDir(wdir, sizeof(wdir));
750     if (*wdir) {
751         strncat(wdir, namep, sizeof(wdir));
752         wdir[sizeof(wdir)-1] = '\0';
753         
754         tfilep = fopen(wdir, rwp);
755     }
756     return ((cm_configFile_t *) tfilep);        
757 }       
758
759 long cm_WriteConfigString(char *labelp, char *valuep)
760 {
761     DWORD code, dummyDisp;
762     HKEY parmKey;
763
764     code = RegCreateKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
765                            0, "container", 0, KEY_SET_VALUE, NULL,
766                            &parmKey, &dummyDisp);
767     if (code != ERROR_SUCCESS)
768         return -1;
769
770     code = RegSetValueEx(parmKey, labelp, 0, REG_SZ,
771                           valuep, (DWORD)strlen(valuep) + 1);
772     RegCloseKey (parmKey);
773     if (code != ERROR_SUCCESS)
774         return (long)-1;
775
776     return (long)0;
777 }
778
779 long cm_WriteConfigInt(char *labelp, long value)
780 {
781     DWORD code, dummyDisp;
782     HKEY parmKey;
783
784     code = RegCreateKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
785                            0, "container", 0, KEY_SET_VALUE, NULL,
786                            &parmKey, &dummyDisp);
787     if (code != ERROR_SUCCESS)
788         return -1;
789
790     code = RegSetValueEx(parmKey, labelp, 0, REG_DWORD,
791                           (LPBYTE)&value, sizeof(value));
792     RegCloseKey (parmKey);
793     if (code != ERROR_SUCCESS)
794         return -1;
795
796     return 0;
797 }
798
799 cm_configFile_t *cm_OpenCellFile(void)
800 {
801     cm_configFile_t *cfp;
802
803     cfp = cm_CommonOpen(AFS_CELLSERVDB ".new", "w");
804     return cfp;
805 }
806
807 long cm_AppendPrunedCellList(cm_configFile_t *ofp, char *cellNamep)
808 {
809     cm_configFile_t *tfilep;    /* input file */
810     char *tp;
811     char lineBuffer[256];
812     char *valuep;
813     int inRightCell;
814     int foundCell;
815
816     tfilep = cm_CommonOpen(AFS_CELLSERVDB, "r");
817     if (!tfilep) 
818         return -1;
819
820     foundCell = 0;
821
822     /* have we seen the cell line for the guy we're looking for? */
823     inRightCell = 0;
824     while (1) {
825         tp = fgets(lineBuffer, sizeof(lineBuffer), (FILE *)tfilep);
826         if (tp == NULL) {
827             if (feof((FILE *)tfilep)) {
828                 /* hit EOF */
829                 fclose((FILE *)tfilep);
830                 return 0;
831             }
832         }
833
834         /* turn trailing cr or lf into null */
835         tp = strchr(lineBuffer, '\r');
836         if (tp) *tp = 0;
837         tp = strchr(lineBuffer, '\n');
838         if (tp) *tp = 0;
839                 
840         /* skip blank lines */
841         if (lineBuffer[0] == 0) {
842             fprintf((FILE *)ofp, "%s\n", lineBuffer);
843             continue;
844         }
845
846         if (lineBuffer[0] == '>') {
847             /* trim off at white space or '#' chars */
848             tp = strchr(lineBuffer, ' ');
849             if (tp) *tp = 0;
850             tp = strchr(lineBuffer, '\t');
851             if (tp) *tp = 0;
852             tp = strchr(lineBuffer, '#');
853             if (tp) *tp = 0;
854
855             /* now see if this is the right cell */
856             if (strcmp(lineBuffer+1, cellNamep) == 0) {
857                 /* found the cell we're looking for */
858                 inRightCell = 1;
859             }
860             else {
861                 inRightCell = 0;
862                 fprintf((FILE *)ofp, "%s\n", lineBuffer);
863             }
864         }
865         else {
866             valuep = strchr(lineBuffer, '#');
867             if (valuep == NULL) return -2;
868             valuep++;   /* skip the "#" */
869             if (!inRightCell) {
870                 fprintf((FILE *)ofp, "%s\n", lineBuffer);
871             }
872         }       /* a vldb line */
873     }           /* while loop processing all lines */
874 }       
875
876 long cm_AppendNewCell(cm_configFile_t *filep, char *cellNamep)
877 {
878     fprintf((FILE *)filep, ">%s\n", cellNamep);
879     return 0;
880 }
881
882 long cm_AppendNewCellLine(cm_configFile_t *filep, char *linep)
883 {
884     fprintf((FILE *)filep, "%s\n", linep);
885     return 0;
886 }
887
888 long cm_CloseCellFile(cm_configFile_t *filep)
889 {
890     char wdir[MAX_PATH];
891     char sdir[MAX_PATH];
892     long code;
893     long closeCode;
894     closeCode = fclose((FILE *)filep);
895
896     cm_GetConfigDir(wdir, sizeof(wdir));
897     strcpy(sdir, wdir);
898
899     if (closeCode != 0) {
900         /* something went wrong, preserve original database */
901         strncat(wdir, AFS_CELLSERVDB ".new", sizeof(wdir));
902         wdir[sizeof(wdir)-1] = '\0';
903         unlink(wdir);
904         return closeCode;
905     }
906
907     strncat(wdir, AFS_CELLSERVDB, sizeof(wdir));
908     wdir[sizeof(wdir)-1] = '\0';
909     strncat(sdir, AFS_CELLSERVDB ".new", sizeof(sdir));/* new file */
910     sdir[sizeof(sdir)-1] = '\0';
911
912     unlink(sdir);                       /* delete old file */
913
914     code = rename(sdir, wdir);  /* do the rename */
915
916     if (code) 
917         code = errno;
918
919     return code;
920 }   
921
922 void cm_GetConfigDir(char *dir, afs_uint32 len)
923 {
924     char * dirp = NULL;
925
926     if (!afssw_GetClientCellServDBDir(&dirp)) {
927         strncpy(dir, dirp, len);
928         dir[len-1] = '\0';
929         free(dirp);
930     } else {
931         dir[0] = '\0';
932     }
933 }