2 * Utility functions to track file descriptors.
4 * Copyright (C) 2013 Simon Ruderich
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 /* Array of tracked file descriptors. Used for fast lookups for the normally
24 * used file descriptors (0 <= fd < TRACKFDS_STATIC_COUNT). */
25 static int tracked_fds[TRACKFDS_STATIC_COUNT];
27 /* List of tracked file descriptors >= TRACKFDS_STATIC_COUNT. */
28 static int *tracked_fds_list;
29 /* Current number of items in the list. */
30 static size_t tracked_fds_list_count;
31 /* Allocated items, used to reduce realloc()s. */
32 static size_t tracked_fds_list_space;
36 static void tracked_fds_debug(void) {
39 for (i = 0; i < TRACKFDS_STATIC_COUNT; i++) {
41 debug(" tracked_fds[%d]: %d\n", i, tracked_fds[i]);
44 debug(" tracked_fds_list: %d/%d\t[%d]\n", tracked_fds_list_count,
45 tracked_fds_list_space,
47 for (i = 0; i < tracked_fds_list_count; i++) {
48 debug(" tracked_fds_list[%d]: %d\n", i, tracked_fds_list[i]);
53 static int init_tracked_fds_list(size_t count) {
56 /* Reduce reallocs. */
57 count += TRACKFDS_REALLOC_STEP;
59 tracked_fds_list = malloc(count * sizeof(*tracked_fds_list));
60 if (!tracked_fds_list) {
62 warning("malloc(tracked_fds_list, %d) failed [%d]\n",
63 count * sizeof(*tracked_fds_list), getpid());
68 tracked_fds_list_space = count;
72 /* Load tracked file descriptors from the environment. The environment is used
73 * to pass the information to child processes.
75 * ENV_NAME_FDS has the following format: Each descriptor as string followed
76 * by a comma; there's a trailing comma. Example: "2,4,". */
77 static void init_from_environment(void) {
79 debug("init_from_environment()\t\t[%d]\n", getpid());
83 int saved_errno = errno;
86 tracked_fds_list_count = 0;
88 /* If ENV_NAME_FORCE_WRITE is set and not empty, allow writes to a non-tty
89 * device. Use with care! Mainly used for the test suite. */
90 env = getenv(ENV_NAME_FORCE_WRITE);
91 if (env && env[0] != '\0') {
92 force_write_to_non_tty = 1;
95 env = getenv(ENV_NAME_FDS);
101 debug(" getenv(\"%s\"): \"%s\"\n", ENV_NAME_FDS, env);
103 /* Environment is read-only. */
104 char env_copy[strlen(env) + 1];
105 strcpy(env_copy, env);
110 for (x = env_copy; *x; x++) {
118 /* Parse file descriptor numbers from environment string and store them as
119 * integers in tracked_fds and tracked_fds_list. */
121 for (x = env_copy, last = env_copy; *x; x++) {
125 /* ',' at the beginning or double ',' - ignore. */
138 if (fd < TRACKFDS_STATIC_COUNT) {
141 if (!tracked_fds_list) {
142 /* Pessimistic count estimate, but allocating a few more
143 * elements doesn't hurt. */
144 if (!init_tracked_fds_list(count)) {
145 /* Couldn't allocate memory, skip this entry. */
149 tracked_fds_list[i++] = fd;
151 debug(" large fd: %d\n", fd);
159 tracked_fds_list_count = i;
168 static char *update_environment_buffer_entry(char *x, int fd) {
171 int length = snprintf(x, 10 + 1, "%d", fd);
172 if (length >= 10 + 1) {
173 /* Integer too big to fit the buffer, skip it. */
175 warning("update_environment_buffer_entry(): truncated fd: %d [%d]\n",
181 /* Write comma after number. */
184 /* Make sure the string is always zero terminated. */
189 static void update_environment_buffer(char *x) {
193 for (i = 0; i < TRACKFDS_STATIC_COUNT; i++) {
194 if (tracked_fds[i]) {
195 x = update_environment_buffer_entry(x, (int)i);
198 for (i = 0; i < tracked_fds_list_count; i++) {
199 x = update_environment_buffer_entry(x, tracked_fds_list[i]);
202 inline static size_t update_environment_buffer_size(void) {
205 /* Use the maximum count (TRACKFDS_STATIC_COUNT) of used descriptors
206 * because it's simple and small enough not to be a problem.
208 * An integer (32-bit) has at most 10 digits, + 1 for the comma after each
209 * number. Bigger file descriptors (which shouldn't occur in reality) are
211 return (TRACKFDS_STATIC_COUNT + tracked_fds_list_count)
212 * (10 + 1) + 1 /* to fit '\0' */;
214 static void update_environment(void) {
216 debug("update_environment()\t\t[%d]\n", getpid());
219 /* If we haven't parsed the environment we also haven't modified it - so
225 char env[update_environment_buffer_size()];
228 update_environment_buffer(env);
231 debug(" setenv(\"%s\", \"%s\", 1)\n", ENV_NAME_FDS, env);
234 setenv(ENV_NAME_FDS, env, 1 /* overwrite */);
239 static void tracked_fds_add(int fd) {
242 if (fd < TRACKFDS_STATIC_COUNT) {
245 debug("tracked_fds_add(): %-3d\t\t[%d]\n", fd, getpid());
251 if (tracked_fds_list_count >= tracked_fds_list_space) {
252 int saved_errno = errno;
254 size_t new_space = tracked_fds_list_space + TRACKFDS_REALLOC_STEP;
255 int *tmp = realloc(tracked_fds_list,
256 sizeof(*tracked_fds_list) * new_space);
258 /* We can do nothing, just ignore the error. We made sure not to
259 * destroy our state, so the new descriptor is ignored without any
260 * other consequences. */
262 warning("realloc(tracked_fds_list, %zu) failed! [%d]\n",
263 sizeof(*tracked_fds_list) * new_space, getpid());
270 tracked_fds_list = tmp;
271 tracked_fds_list_space = new_space;
274 tracked_fds_list[tracked_fds_list_count++] = fd;
277 debug("tracked_fds_add(): %-3d\t\t[%d]\n", fd, getpid());
281 static int tracked_fds_remove(int fd) {
284 if (fd < TRACKFDS_STATIC_COUNT) {
285 int old_value = tracked_fds[fd];
289 debug("tracked_fds_remove(): %-3d\t[%d]\n", fd, getpid());
292 return old_value; /* Found vs. not found. */
296 for (i = 0; i < tracked_fds_list_count; i++) {
297 if (fd != tracked_fds_list[i]) {
301 memmove(tracked_fds_list + i, tracked_fds_list + i + 1,
302 sizeof(*tracked_fds_list) * (tracked_fds_list_count - i - 1));
303 tracked_fds_list_count--;
306 debug("tracked_fds_remove(): %-3d\t[%d]\n", fd, getpid());
318 static int tracked_fds_find_slow(int fd) noinline;
320 * tracked_fds_find() is called for each hook call and should be as fast as
321 * possible. As most file descriptors are < TRACKFDS_STATIC_COUNT, force the
322 * compiler to inline that part which is almost exclusively used.
324 * Inlining tracked_fds_add()/tracked_fds_remove() isn't worth the effort as
325 * they are not called often enough.
327 inline static int tracked_fds_find(int fd) always_inline;
328 static int tracked_fds_find(int fd) {
331 if (fd < TRACKFDS_STATIC_COUNT) {
332 return tracked_fds[fd];
335 return tracked_fds_find_slow(fd);
337 static int tracked_fds_find_slow(int fd) {
340 if (tracked_fds_list_count == 0) {
345 for (i = 0; i < tracked_fds_list_count; i++) {
346 if (fd == tracked_fds_list[i]) {