1*7c478bd9Sstevel@tonic-gate /* $OpenBSD: dirname.c,v 1.7 2002/05/24 21:22:37 deraadt Exp $ */
2*7c478bd9Sstevel@tonic-gate
3*7c478bd9Sstevel@tonic-gate /*
4*7c478bd9Sstevel@tonic-gate * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
5*7c478bd9Sstevel@tonic-gate * All rights reserved.
6*7c478bd9Sstevel@tonic-gate *
7*7c478bd9Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without
8*7c478bd9Sstevel@tonic-gate * modification, are permitted provided that the following conditions
9*7c478bd9Sstevel@tonic-gate * are met:
10*7c478bd9Sstevel@tonic-gate * 1. Redistributions of source code must retain the above copyright
11*7c478bd9Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer.
12*7c478bd9Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright
13*7c478bd9Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in the
14*7c478bd9Sstevel@tonic-gate * documentation and/or other materials provided with the distribution.
15*7c478bd9Sstevel@tonic-gate * 3. The name of the author may not be used to endorse or promote products
16*7c478bd9Sstevel@tonic-gate * derived from this software without specific prior written permission.
17*7c478bd9Sstevel@tonic-gate *
18*7c478bd9Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
19*7c478bd9Sstevel@tonic-gate * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20*7c478bd9Sstevel@tonic-gate * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21*7c478bd9Sstevel@tonic-gate * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22*7c478bd9Sstevel@tonic-gate * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23*7c478bd9Sstevel@tonic-gate * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24*7c478bd9Sstevel@tonic-gate * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25*7c478bd9Sstevel@tonic-gate * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26*7c478bd9Sstevel@tonic-gate * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27*7c478bd9Sstevel@tonic-gate * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*7c478bd9Sstevel@tonic-gate */
29*7c478bd9Sstevel@tonic-gate
30*7c478bd9Sstevel@tonic-gate #include "includes.h"
31*7c478bd9Sstevel@tonic-gate #ifndef HAVE_DIRNAME
32*7c478bd9Sstevel@tonic-gate
33*7c478bd9Sstevel@tonic-gate #if defined(LIBC_SCCS) && !defined(lint)
34*7c478bd9Sstevel@tonic-gate static char rcsid[] = "$OpenBSD: dirname.c,v 1.7 2002/05/24 21:22:37 deraadt Exp $";
35*7c478bd9Sstevel@tonic-gate #endif /* LIBC_SCCS and not lint */
36*7c478bd9Sstevel@tonic-gate
37*7c478bd9Sstevel@tonic-gate #include <errno.h>
38*7c478bd9Sstevel@tonic-gate #include <string.h>
39*7c478bd9Sstevel@tonic-gate #include <sys/param.h>
40*7c478bd9Sstevel@tonic-gate
41*7c478bd9Sstevel@tonic-gate char *
dirname(path)42*7c478bd9Sstevel@tonic-gate dirname(path)
43*7c478bd9Sstevel@tonic-gate const char *path;
44*7c478bd9Sstevel@tonic-gate {
45*7c478bd9Sstevel@tonic-gate static char bname[MAXPATHLEN];
46*7c478bd9Sstevel@tonic-gate register const char *endp;
47*7c478bd9Sstevel@tonic-gate
48*7c478bd9Sstevel@tonic-gate /* Empty or NULL string gets treated as "." */
49*7c478bd9Sstevel@tonic-gate if (path == NULL || *path == '\0') {
50*7c478bd9Sstevel@tonic-gate (void)strlcpy(bname, ".", sizeof bname);
51*7c478bd9Sstevel@tonic-gate return(bname);
52*7c478bd9Sstevel@tonic-gate }
53*7c478bd9Sstevel@tonic-gate
54*7c478bd9Sstevel@tonic-gate /* Strip trailing slashes */
55*7c478bd9Sstevel@tonic-gate endp = path + strlen(path) - 1;
56*7c478bd9Sstevel@tonic-gate while (endp > path && *endp == '/')
57*7c478bd9Sstevel@tonic-gate endp--;
58*7c478bd9Sstevel@tonic-gate
59*7c478bd9Sstevel@tonic-gate /* Find the start of the dir */
60*7c478bd9Sstevel@tonic-gate while (endp > path && *endp != '/')
61*7c478bd9Sstevel@tonic-gate endp--;
62*7c478bd9Sstevel@tonic-gate
63*7c478bd9Sstevel@tonic-gate /* Either the dir is "/" or there are no slashes */
64*7c478bd9Sstevel@tonic-gate if (endp == path) {
65*7c478bd9Sstevel@tonic-gate (void)strlcpy(bname, *endp == '/' ? "/" : ".", sizeof bname);
66*7c478bd9Sstevel@tonic-gate return(bname);
67*7c478bd9Sstevel@tonic-gate } else {
68*7c478bd9Sstevel@tonic-gate do {
69*7c478bd9Sstevel@tonic-gate endp--;
70*7c478bd9Sstevel@tonic-gate } while (endp > path && *endp == '/');
71*7c478bd9Sstevel@tonic-gate }
72*7c478bd9Sstevel@tonic-gate
73*7c478bd9Sstevel@tonic-gate if (endp - path + 2 > sizeof(bname)) {
74*7c478bd9Sstevel@tonic-gate errno = ENAMETOOLONG;
75*7c478bd9Sstevel@tonic-gate return(NULL);
76*7c478bd9Sstevel@tonic-gate }
77*7c478bd9Sstevel@tonic-gate strlcpy(bname, path, endp - path + 2);
78*7c478bd9Sstevel@tonic-gate return(bname);
79*7c478bd9Sstevel@tonic-gate }
80*7c478bd9Sstevel@tonic-gate #endif
81*7c478bd9Sstevel@tonic-gate
82*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
83