xref: /illumos-gate/usr/src/cmd/ypcmd/shared/ancil.c (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 
28 /*	Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T	*/
29 /*	  All Rights Reserved  	*/
30 
31 /*
32  * Portions of this source code were derived from Berkeley 4.3 BSD
33  * under license from the Regents of the University of California.
34  */
35 
36 #pragma ident	"%Z%%M%	%I%	%E% SMI"
37 
38 #include <dirent.h>
39 #include "../ypsym.h"
40 #include "../ypdefs.h"
41 USE_YPDBPATH
42 USE_DBM
43 
44 bool onmaplist();
45 extern unsigned int strlen();
46 extern int strcmp();
47 extern int isvar_sysv();
48 extern char *strncpy();
49 
50 /*
51  * This checks to see whether a domain name is present at the local node as a
52  *  subdirectory of ypdbpath
53  */
54 bool
55 ypcheck_domain(domain)
56 	char *domain;
57 {
58 	char path[MAXNAMLEN + 1];
59 	struct stat filestat;
60 	bool present = FALSE;
61 
62 	strcpy(path, ypdbpath);
63 	strcat(path, "/");
64 	strcat(path, domain);
65 
66 	if (stat(path, &filestat) != -1) {
67 		if ((filestat.st_mode & S_IFDIR))
68 				present = TRUE;
69 		}
70 	return (present);
71 }
72 
73 /*
74  * This returns TRUE if map is on list, and FALSE otherwise.
75  */
76 bool
77 onmaplist(map, list)
78 	char *map;
79 	struct ypmaplist *list;
80 {
81 	struct ypmaplist *scan;
82 
83 	for (scan = list; scan; scan = scan->ypml_next) {
84 
85 		if (strcmp(map, scan->ypml_name) == 0) {
86 			return (TRUE);
87 		}
88 	}
89 
90 	return (FALSE);
91 }
92