1 /* Get file-specific information about a file. Linux version.
2 Copyright (C) 1991,1995,1996,1998-2002,2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 #include "linux_fsinfo.h"
25 static long int posix_pathconf (const char *file
, int name
);
27 /* Define this first, so it can be inlined. */
28 #define __pathconf static posix_pathconf
29 #include <sysdeps/posix/pathconf.c>
32 /* Get file-specific information about FILE. */
34 __pathconf (const char *file
, int name
)
41 return __statfs_link_max (__statfs (file
, &fsbuf
), &fsbuf
);
43 case _PC_FILESIZEBITS
:
44 return __statfs_filesize_max (__statfs (file
, &fsbuf
), &fsbuf
);
47 return __statfs_symlinks (__statfs (file
, &fsbuf
), &fsbuf
);
50 return posix_pathconf (file
, name
);
55 /* Used like: return statfs_link_max (__statfs (name, &buf), &buf); */
57 __statfs_link_max (int result
, const struct statfs
*fsbuf
)
62 /* Not possible, return the default value. */
63 return LINUX_LINK_MAX
;
65 /* Some error occured. */
69 switch (fsbuf
->f_type
)
71 case EXT2_SUPER_MAGIC
:
74 case MINIX_SUPER_MAGIC
:
75 case MINIX_SUPER_MAGIC2
:
76 return MINIX_LINK_MAX
;
78 case MINIX2_SUPER_MAGIC
:
79 case MINIX2_SUPER_MAGIC2
:
80 return MINIX2_LINK_MAX
;
82 case XENIX_SUPER_MAGIC
:
83 return XENIX_LINK_MAX
;
85 case SYSV4_SUPER_MAGIC
:
86 case SYSV2_SUPER_MAGIC
:
96 case REISERFS_SUPER_MAGIC
:
97 return REISERFS_LINK_MAX
;
103 return LINUX_LINK_MAX
;
108 /* Used like: return statfs_filesize_max (__statfs (name, &buf), &buf); */
110 __statfs_filesize_max (int result
, const struct statfs
*fsbuf
)
115 /* Not possible, return the default value. */
118 /* Some error occured. */
122 switch (fsbuf
->f_type
)
124 case EXT2_SUPER_MAGIC
:
127 case REISERFS_SUPER_MAGIC
:
128 case XFS_SUPER_MAGIC
:
129 case SMB_SUPER_MAGIC
:
130 case NTFS_SUPER_MAGIC
:
131 case UDF_SUPER_MAGIC
:
132 case JFS_SUPER_MAGIC
:
133 case VXFS_SUPER_MAGIC
:
136 case MSDOS_SUPER_MAGIC
:
137 case JFFS_SUPER_MAGIC
:
138 case JFFS2_SUPER_MAGIC
:
139 case NCP_SUPER_MAGIC
:
140 case ROMFS_SUPER_MAGIC
:
149 /* Used like: return statfs_link_max (__statfs (name, &buf), &buf); */
151 __statfs_symlinks (int result
, const struct statfs
*fsbuf
)
156 /* Not possible, return the default value. */
159 /* Some error occured. */
163 switch (fsbuf
->f_type
)
165 case ADFS_SUPER_MAGIC
:
168 case DEVPTS_SUPER_MAGIC
:
169 case EFS_SUPER_MAGIC
:
171 case MSDOS_SUPER_MAGIC
:
172 case NTFS_SUPER_MAGIC
:
173 case QNX4_SUPER_MAGIC
:
174 case ROMFS_SUPER_MAGIC
:
175 /* No symlink support. */