25208cdc539233c9a6d86380bdc283b9e2cb6247
[platform/upstream/glibc.git] / sysdeps / unix / sysv / linux / sysconf.c
1 /* Get file-specific information about a file.  Linux version.
2    Copyright (C) 2003-2014 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
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.
9
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.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, see
17    <http://www.gnu.org/licenses/>.  */
18
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <stdlib.h>
22 #include <sysdep.h>
23 #include <time.h>
24 #include <unistd.h>
25 #include <sys/resource.h>
26 #include <not-cancel.h>
27 #include <ldsodefs.h>
28
29 /* Legacy value of ARG_MAX.  The macro is now not defined since the
30    actual value varies based on the stack size.  */
31 #define legacy_ARG_MAX 131072
32
33
34 static long int posix_sysconf (int name);
35
36
37 #ifndef HAS_CPUCLOCK
38 static long int
39 has_cpuclock (int name)
40 {
41 # if defined __NR_clock_getres || HP_TIMING_AVAIL
42   /* If we have HP_TIMING, we will fall back on that if the system
43      call does not work, so we support it either way.  */
44 #  if !HP_TIMING_AVAIL
45   /* Check using the clock_getres system call.  */
46   struct timespec ts;
47   INTERNAL_SYSCALL_DECL (err);
48   int r = INTERNAL_SYSCALL (clock_getres, err, 2,
49                             (name == _SC_CPUTIME
50                              ? CLOCK_PROCESS_CPUTIME_ID
51                              : CLOCK_THREAD_CPUTIME_ID),
52                             &ts);
53   if (INTERNAL_SYSCALL_ERROR_P (r, err))
54     return -1;
55 #  endif
56   return _POSIX_VERSION;
57 # else
58   return -1;
59 # endif
60 }
61 # define HAS_CPUCLOCK(name) has_cpuclock (name)
62 #endif
63
64
65 /* Get the value of the system variable NAME.  */
66 long int
67 __sysconf (int name)
68 {
69   const char *procfname = NULL;
70
71   switch (name)
72     {
73       struct rlimit rlimit;
74 #ifdef __NR_clock_getres
75     case _SC_MONOTONIC_CLOCK:
76       /* Check using the clock_getres system call.  */
77       {
78         struct timespec ts;
79         INTERNAL_SYSCALL_DECL (err);
80         int r;
81         r = INTERNAL_SYSCALL (clock_getres, err, 2, CLOCK_MONOTONIC, &ts);
82         return INTERNAL_SYSCALL_ERROR_P (r, err) ? -1 : _POSIX_VERSION;
83       }
84 #endif
85
86     case _SC_CPUTIME:
87     case _SC_THREAD_CPUTIME:
88       return HAS_CPUCLOCK (name);
89
90     case _SC_ARG_MAX:
91       /* Use getrlimit to get the stack limit.  */
92       if (__getrlimit (RLIMIT_STACK, &rlimit) == 0)
93         return MAX (legacy_ARG_MAX, rlimit.rlim_cur / 4);
94
95       return legacy_ARG_MAX;
96
97     case _SC_NGROUPS_MAX:
98       /* Try to read the information from the /proc/sys/kernel/ngroups_max
99          file.  */
100       procfname = "/proc/sys/kernel/ngroups_max";
101       break;
102
103     case _SC_SIGQUEUE_MAX:
104       if (__getrlimit (RLIMIT_SIGPENDING, &rlimit) == 0)
105         return rlimit.rlim_cur;
106
107       /* The /proc/sys/kernel/rtsig-max file contains the answer.  */
108       procfname = "/proc/sys/kernel/rtsig-max";
109       break;
110
111     default:
112       break;
113     }
114
115   if (procfname != NULL)
116     {
117       int fd = open_not_cancel_2 (procfname, O_RDONLY);
118       if (fd != -1)
119         {
120           /* This is more than enough, the file contains a single integer.  */
121           char buf[32];
122           ssize_t n;
123           n = TEMP_FAILURE_RETRY (read_not_cancel (fd, buf, sizeof (buf) - 1));
124           close_not_cancel_no_status (fd);
125
126           if (n > 0)
127             {
128               /* Terminate the string.  */
129               buf[n] = '\0';
130
131               char *endp;
132               long int res = strtol (buf, &endp, 10);
133               if (endp != buf && (*endp == '\0' || *endp == '\n'))
134                 return res;
135             }
136         }
137     }
138
139   return posix_sysconf (name);
140 }
141
142 /* Now the POSIX version.  */
143 #undef __sysconf
144 #define __sysconf static posix_sysconf
145 #include <sysdeps/posix/sysconf.c>