2002-07-11 00:19:38 +04:00
|
|
|
/* $NetBSD: supcname.c,v 1.6 2002/07/10 20:19:45 wiz Exp $ */
|
1997-06-17 22:56:02 +04:00
|
|
|
|
1993-05-21 18:52:16 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992 Carnegie Mellon University
|
|
|
|
* All Rights Reserved.
|
2002-07-11 00:19:38 +04:00
|
|
|
*
|
1993-05-21 18:52:16 +04:00
|
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
|
|
* documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
1999-04-13 00:48:07 +04:00
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
1993-05-21 18:52:16 +04:00
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie Mellon
|
|
|
|
* the rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* sup client name server interface
|
|
|
|
**********************************************************************
|
|
|
|
* HISTORY
|
|
|
|
* Revision 1.4 92/08/11 12:07:32 mrt
|
|
|
|
* Added copyright.
|
|
|
|
* [92/08/10 mrt]
|
2002-07-11 00:19:38 +04:00
|
|
|
*
|
1993-05-21 18:52:16 +04:00
|
|
|
* 21-Dec-87 Glenn Marcy (gm0w) at Carnegie-Mellon University
|
|
|
|
* Changed to no longer use a name server.
|
|
|
|
*
|
|
|
|
* 26-May-87 Doug Philips (dwp) at Carnegie-Mellon University
|
|
|
|
* Changed getnams and added several new routines to change the
|
|
|
|
* way that sup finds nameservers. It now builds a tree of
|
|
|
|
* servers to check. It walks over the tree. At each node, it
|
|
|
|
* tries to contact the name server and get as many names
|
|
|
|
* resolved as it can. It stops after either all collections
|
|
|
|
* have host names, or if some collections don't have host names
|
|
|
|
* but either everyone doesn't know what they are, or after too
|
|
|
|
* many tries, none could be reached.
|
|
|
|
*
|
|
|
|
* 25-May-87 Doug Philips (dwp) at Carnegie-Mellon University
|
|
|
|
* Split off from sup.c
|
|
|
|
*
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "supcdefs.h"
|
1996-12-23 22:42:01 +03:00
|
|
|
#include "supextern.h"
|
1993-05-21 18:52:16 +04:00
|
|
|
|
2002-07-11 00:19:38 +04:00
|
|
|
extern COLLECTION *firstC; /* collection list pointer */
|
1993-05-21 18:52:16 +04:00
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
*** G E T H O S T N A M E S ***
|
|
|
|
*****************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For each collection that doesn't have a host name specified, read
|
|
|
|
* the file server list for the name of the host for that collection.
|
|
|
|
* It's a fatal error if a collection has no file server.
|
|
|
|
*/
|
|
|
|
|
2002-07-11 00:19:38 +04:00
|
|
|
void
|
|
|
|
getnams(void)
|
1993-05-21 18:52:16 +04:00
|
|
|
{
|
2002-07-11 00:19:38 +04:00
|
|
|
COLLECTION *c;
|
1993-05-21 18:52:16 +04:00
|
|
|
char buf[STRINGLENGTH];
|
2002-07-11 00:19:38 +04:00
|
|
|
FILE *f;
|
|
|
|
char *p, *q;
|
1993-05-21 18:52:16 +04:00
|
|
|
|
|
|
|
for (c = firstC; c && c->Chtree != NULL; c = c->Cnext);
|
2002-07-11 00:19:38 +04:00
|
|
|
if (c == NULL)
|
|
|
|
return;
|
|
|
|
(void) sprintf(buf, FILEHOSTS, DEFDIR);
|
|
|
|
f = fopen(buf, "r");
|
|
|
|
if (f == NULL)
|
|
|
|
logquit(1, "Can't open %s", buf);
|
|
|
|
while ((p = fgets(buf, STRINGLENGTH, f)) != NULL) {
|
|
|
|
if ((q = index(p, '\n')) != NULL)
|
1996-12-23 22:42:01 +03:00
|
|
|
*q = '\0';
|
2002-07-11 00:19:38 +04:00
|
|
|
if (index("#;:", *p))
|
|
|
|
continue;
|
|
|
|
q = nxtarg(&p, "= \t");
|
|
|
|
p = skipover(p, " \t");
|
|
|
|
if (*p == '=')
|
|
|
|
p++;
|
|
|
|
p = skipover(p, " \t");
|
|
|
|
if (*p == '\0')
|
|
|
|
goaway("error in collection/host file");
|
1993-05-21 18:52:16 +04:00
|
|
|
do {
|
2002-07-11 00:19:38 +04:00
|
|
|
if (strcmp(c->Cname, q) == 0) {
|
1993-05-21 18:52:16 +04:00
|
|
|
do {
|
2002-07-11 00:19:38 +04:00
|
|
|
q = nxtarg(&p, ", \t");
|
|
|
|
p = skipover(p, " \t");
|
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
|
|
|
p = skipover(p, " \t");
|
|
|
|
(void) Tinsert(&c->Chtree, q, FALSE);
|
1993-05-21 18:52:16 +04:00
|
|
|
} while (*p != '\0');
|
|
|
|
}
|
|
|
|
while ((c = c->Cnext) != NULL && c->Chtree != NULL);
|
|
|
|
} while (c != NULL);
|
|
|
|
for (c = firstC; c && c->Chtree != NULL; c = c->Cnext);
|
2002-07-11 00:19:38 +04:00
|
|
|
if (c == NULL)
|
|
|
|
break;
|
1993-05-21 18:52:16 +04:00
|
|
|
}
|
2002-07-11 00:19:38 +04:00
|
|
|
(void) fclose(f);
|
|
|
|
if (c == NULL)
|
|
|
|
return;
|
1993-05-21 18:52:16 +04:00
|
|
|
do {
|
2002-07-11 00:19:38 +04:00
|
|
|
logerr("Host for collection %s not found", c->Cname);
|
1993-05-21 18:52:16 +04:00
|
|
|
while ((c = c->Cnext) != NULL && c->Chtree != NULL);
|
|
|
|
} while (c);
|
2002-07-11 00:19:38 +04:00
|
|
|
logquit(1, "Hosts not found for all collections");
|
1993-05-21 18:52:16 +04:00
|
|
|
}
|