]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/posix/fpathconf.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / posix / fpathconf.c
CommitLineData
2b778ceb 1/* Copyright (C) 1991-2021 Free Software Foundation, Inc.
68dbb3a6 2 This file is part of the GNU C Library.
28f540f4 3
68dbb3a6 4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
28f540f4 8
68dbb3a6
UD
9 The GNU C Library 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 GNU
41bdb6e2 12 Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6 15 License along with the GNU C Library; if not, see
5a82c748 16 <https://www.gnu.org/licenses/>. */
28f540f4 17
28f540f4
RM
18#include <errno.h>
19#include <stddef.h>
20#include <unistd.h>
21#include <limits.h>
bc183edc 22#include <sys/stat.h>
0e3426bb 23#include <sys/statfs.h>
c1fac803 24#include <sys/statvfs.h>
28f540f4
RM
25
26
27/* Get file-specific information about descriptor FD. */
28long int
bd2260a2 29__fpathconf (int fd, int name)
28f540f4
RM
30{
31 if (fd < 0)
32 {
c4029823 33 __set_errno (EBADF);
28f540f4
RM
34 return -1;
35 }
36
37 switch (name)
38 {
39 default:
c4029823 40 __set_errno (EINVAL);
28f540f4
RM
41 return -1;
42
43 case _PC_LINK_MAX:
44#ifdef LINK_MAX
45 return LINK_MAX;
46#else
28f540f4
RM
47 return -1;
48#endif
49
50 case _PC_MAX_CANON:
51#ifdef MAX_CANON
52 return MAX_CANON;
53#else
28f540f4
RM
54 return -1;
55#endif
56
57 case _PC_MAX_INPUT:
58#ifdef MAX_INPUT
59 return MAX_INPUT;
60#else
28f540f4
RM
61 return -1;
62#endif
63
64 case _PC_NAME_MAX:
65#ifdef NAME_MAX
0e3426bb 66 {
d18c36e6 67 struct statvfs64 sv;
2eb45444 68 int save_errno = errno;
0e3426bb 69
d18c36e6 70 if (__fstatvfs64 (fd, &sv) < 0)
2eb45444
UD
71 {
72 if (errno == ENOSYS)
73 {
9271a050 74 __set_errno (save_errno);
2eb45444
UD
75 return NAME_MAX;
76 }
9271a050
UD
77 else if (errno == ENODEV)
78 __set_errno (EINVAL);
79
2eb45444
UD
80 return -1;
81 }
0e3426bb 82 else
a808d541 83 {
d18c36e6 84 return sv.f_namemax;
a808d541 85 }
0e3426bb 86 }
2303f5fd 87#else
2303f5fd
UD
88 return -1;
89#endif
90
91 case _PC_PATH_MAX:
92#ifdef PATH_MAX
93 return PATH_MAX;
28f540f4 94#else
28f540f4
RM
95 return -1;
96#endif
97
98 case _PC_PIPE_BUF:
99#ifdef PIPE_BUF
100 return PIPE_BUF;
101#else
28f540f4
RM
102 return -1;
103#endif
104
105 case _PC_CHOWN_RESTRICTED:
9a179328
AS
106#if _POSIX_CHOWN_RESTRICTED == -1
107# error "Invalid value for _POSIX_CHOWN_RESTRICTED"
28f540f4 108#endif
9a179328 109 return _POSIX_CHOWN_RESTRICTED;
28f540f4
RM
110
111 case _PC_NO_TRUNC:
9a179328
AS
112#if _POSIX_NO_TRUNC == -1
113# error "Invalid value for _POSIX_NO_TRUNC"
28f540f4 114#endif
9a179328 115 return _POSIX_NO_TRUNC;
28f540f4
RM
116
117 case _PC_VDISABLE:
9a179328
AS
118#if _POSIX_VDISABLE == -1
119# error "Invalid value for _POSIX_VDISABLE"
28f540f4 120#endif
9a179328 121 return _POSIX_VDISABLE;
75cd5204
RM
122
123 case _PC_SYNC_IO:
124#ifdef _POSIX_SYNC_IO
125 return _POSIX_SYNC_IO;
126#else
127 return -1;
128#endif
129
130 case _PC_ASYNC_IO:
131#ifdef _POSIX_ASYNC_IO
bc183edc
UD
132 {
133 /* AIO is only allowed on regular files and block devices. */
134 struct stat64 st;
135
04986243 136 if (__fstat64 (fd, &st) < 0
bc183edc
UD
137 || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
138 return -1;
139 else
140 return 1;
141 }
75cd5204
RM
142#else
143 return -1;
144#endif
145
146 case _PC_PRIO_IO:
147#ifdef _POSIX_PRIO_IO
148 return _POSIX_PRIO_IO;
149#else
150 return -1;
151#endif
503054c0
RM
152
153 case _PC_SOCK_MAXBUF:
154#ifdef SOCK_MAXBUF
155 return SOCK_MAXBUF;
156#else
503054c0
RM
157 return -1;
158#endif
e918a7fe
UD
159
160 case _PC_FILESIZEBITS:
161#ifdef FILESIZEBITS
162 return FILESIZEBITS;
163#else
164 /* We let platforms with larger file sizes overwrite this value. */
165 return 32;
166#endif
87d2f3f0
UD
167
168 case _PC_REC_INCR_XFER_SIZE:
169 /* XXX It is not entirely clear what the limit is supposed to do.
170 What is incremented? */
171 return -1;
172
173 case _PC_REC_MAX_XFER_SIZE:
174 /* XXX It is not entirely clear what the limit is supposed to do.
175 In general there is no top limit of the number of bytes which
176 case be transported at once. */
177 return -1;
178
179 case _PC_REC_MIN_XFER_SIZE:
180 {
181 /* XXX It is not entirely clear what the limit is supposed to do.
182 I assume this is the block size of the filesystem. */
183 struct statvfs64 sv;
184
185 if (__fstatvfs64 (fd, &sv) < 0)
186 return -1;
187 return sv.f_bsize;
188 }
189
190 case _PC_REC_XFER_ALIGN:
191 {
192 /* XXX It is not entirely clear what the limit is supposed to do.
193 I assume that the number should reflect the minimal block
194 alignment. */
195 struct statvfs64 sv;
196
197 if (__fstatvfs64 (fd, &sv) < 0)
198 return -1;
199 return sv.f_frsize;
200 }
a3bbce5b
UD
201
202 case _PC_ALLOC_SIZE_MIN:
203 {
204 /* XXX It is not entirely clear what the limit is supposed to do.
205 I assume that the number should reflect the minimal block
206 alignment. */
207 struct statvfs64 sv;
208
209 if (__fstatvfs64 (fd, &sv) < 0)
210 return -1;
211 return sv.f_frsize;
212 }
213
214 case _PC_SYMLINK_MAX:
215 /* In general there are no limits. If a system has one it should
216 overwrite this case. */
217 return -1;
564cd8b6
UD
218
219 case _PC_2_SYMLINKS:
220 /* Unix systems generally have symlinks. */
221 return 1;
28f540f4 222 }
28f540f4
RM
223}
224
e918a7fe 225#undef __fpathconf
28f540f4 226weak_alias (__fpathconf, fpathconf)