]> andersk Git - openssh.git/blob - openbsd-compat/basename.c
- (djm) [openbsd-compat/basename.c openbsd-compat/bsd-closefrom.c]
[openssh.git] / openbsd-compat / basename.c
1 /*      $OpenBSD: basename.c,v 1.14 2005/08/08 08:05:33 espie Exp $     */
2
3 /*
4  * Copyright (c) 1997, 2004 Todd C. Miller <Todd.Miller@courtesan.com>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /* OPENBSD ORIGINAL: lib/libc/gen/basename.c */
20
21 #include "includes.h"
22 #ifndef HAVE_BASENAME
23 #include <string.h>
24
25 char *
26 basename(const char *path)
27 {
28         static char bname[MAXPATHLEN];
29         size_t len;
30         const char *endp, *startp;
31
32         /* Empty or NULL string gets treated as "." */
33         if (path == NULL || *path == '\0') {
34                 bname[0] = '.';
35                 bname[1] = '\0';
36                 return (bname);
37         }
38
39         /* Strip any trailing slashes */
40         endp = path + strlen(path) - 1;
41         while (endp > path && *endp == '/')
42                 endp--;
43
44         /* All slashes becomes "/" */
45         if (endp == path && *endp == '/') {
46                 bname[0] = '/';
47                 bname[1] = '\0';
48                 return (bname);
49         }
50
51         /* Find the start of the base */
52         startp = endp;
53         while (startp > path && *(startp - 1) != '/')
54                 startp--;
55
56         len = endp - startp + 1;
57         if (len >= sizeof(bname)) {
58                 errno = ENAMETOOLONG;
59                 return (NULL);
60         }
61         memcpy(bname, startp, len);
62         bname[len] = '\0';
63         return (bname);
64 }
65
66 #endif /* !defined(HAVE_BASENAME) */
This page took 0.040751 seconds and 5 git commands to generate.