1da2e3ebdSchin /***********************************************************************
2da2e3ebdSchin * *
3da2e3ebdSchin * This software is part of the ast package *
4*3e14f97fSRoger A. Faulkner * Copyright (c) 1985-2010 AT&T Intellectual Property *
5da2e3ebdSchin * and is licensed under the *
6da2e3ebdSchin * Common Public License, Version 1.0 *
77c2fbfb3SApril Chin * by AT&T Intellectual Property *
8da2e3ebdSchin * *
9da2e3ebdSchin * A copy of the License is available at *
10da2e3ebdSchin * http://www.opensource.org/licenses/cpl1.0.txt *
11da2e3ebdSchin * (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
12da2e3ebdSchin * *
13da2e3ebdSchin * Information and Software Systems Research *
14da2e3ebdSchin * AT&T Research *
15da2e3ebdSchin * Florham Park NJ *
16da2e3ebdSchin * *
17da2e3ebdSchin * Glenn Fowler <gsf@research.att.com> *
18da2e3ebdSchin * David Korn <dgk@research.att.com> *
19da2e3ebdSchin * Phong Vo <kpv@research.att.com> *
20da2e3ebdSchin * *
21da2e3ebdSchin ***********************************************************************/
22da2e3ebdSchin #pragma prototyped
23da2e3ebdSchin /*
24da2e3ebdSchin * Glenn Fowler
25da2e3ebdSchin * AT&T Bell Laboratories
26da2e3ebdSchin *
27da2e3ebdSchin * return path to file a/b with access mode using : separated dirs
28da2e3ebdSchin * both a and b may be 0
29da2e3ebdSchin * if a==".." then relative paths in dirs are ignored
30da2e3ebdSchin * if (mode&PATH_REGULAR) then path must not be a directory
31da2e3ebdSchin * if (mode&PATH_ABSOLUTE) then path must be rooted
32da2e3ebdSchin * path returned in path buffer
33da2e3ebdSchin */
34da2e3ebdSchin
35da2e3ebdSchin #include <ast.h>
36da2e3ebdSchin
37da2e3ebdSchin char*
pathaccess(register char * path,register const char * dirs,const char * a,const char * b,register int mode)38da2e3ebdSchin pathaccess(register char* path, register const char* dirs, const char* a, const char* b, register int mode)
39da2e3ebdSchin {
40da2e3ebdSchin int sib = a && a[0] == '.' && a[1] == '.' && a[2] == 0;
41da2e3ebdSchin int sep = ':';
42da2e3ebdSchin char cwd[PATH_MAX];
43da2e3ebdSchin
44da2e3ebdSchin do
45da2e3ebdSchin {
46da2e3ebdSchin dirs = pathcat(path, dirs, sep, a, b);
47da2e3ebdSchin pathcanon(path, 0);
48da2e3ebdSchin if ((!sib || *path == '/') && pathexists(path, mode))
49da2e3ebdSchin {
50da2e3ebdSchin if (*path == '/' || !(mode & PATH_ABSOLUTE))
51da2e3ebdSchin return path;
52da2e3ebdSchin dirs = getcwd(cwd, sizeof(cwd));
53da2e3ebdSchin sep = 0;
54da2e3ebdSchin }
55da2e3ebdSchin } while (dirs);
56da2e3ebdSchin return 0;
57da2e3ebdSchin }
58