exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / access.c
blobc3bdbff41d2327fa8f821cf73651c437a6679150
1 /* Test the access rights of a file.
2 Copyright (C) 2019-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 /* Specification. */
20 #include <unistd.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
28 #if defined _WIN32 && !defined __CYGWIN__
29 # include <io.h>
30 #endif
32 int
33 access (const char *file, int mode)
34 #undef access
36 int ret;
38 #if defined _WIN32 && !defined __CYGWIN__
39 if ((mode & X_OK) != 0)
40 mode = (mode & ~X_OK) | R_OK;
41 ret = _access (file, mode);
42 #else
43 ret = access (file, mode);
44 #endif
46 #if (defined _WIN32 && !defined __CYGWIN__) || ACCESS_TRAILING_SLASH_BUG
47 # if defined _WIN32 && !defined __CYGWIN__
48 if (ret == 0 || errno == EINVAL)
49 # else
50 if (ret == 0)
51 # endif
53 size_t file_len = strlen (file);
54 if (file_len > 0 && file[file_len - 1] == '/')
56 struct stat st;
57 if (stat (file, &st) == 0)
59 if (! S_ISDIR (st.st_mode))
61 errno = ENOTDIR;
62 return -1;
65 else
66 return (mode == F_OK && errno == EOVERFLOW ? 0 : -1);
69 #endif
70 return ret;