]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - src/trackfds.h
trackfds.h: Fix realloc() in update_environment().
[coloredstderr/coloredstderr.git] / src / trackfds.h
1 /*
2  * Utility functions to track file descriptors.
3  *
4  * Copyright (C) 2013  Simon Ruderich
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 #ifndef TRACKFDS_H
21 #define TRACKFDS_H 1
22
23 /* List of tracked file descriptors. */
24 static int *tracked_fds;
25 /* Current number of items in the list. */
26 static size_t tracked_fds_count;
27 /* Allocated items, used to reduce realloc()s. */
28 static size_t tracked_fds_space;
29
30
31 #ifdef DEBUG
32 static void tracked_fds_debug(void) {
33     debug("    tracked_fds: %d/%d\t\t[%d]\n", tracked_fds_count,
34                                               tracked_fds_space,
35                                               getpid());
36     size_t i;
37     for (i = 0; i < tracked_fds_count; i++) {
38         debug("    tracked_fds[%d]: %d\n", i, tracked_fds[i]);
39     }
40 }
41 #endif
42
43 /* Load tracked file descriptors from the environment. The environment is used
44  * to pass the information to child processes.
45  *
46  * ENV_NAME_FDS has the following format: Each descriptor as string followed
47  * by a comma; there's a trailing comma. Example: "2,4,". */
48 static void init_from_environment(void) {
49 #ifdef DEBUG
50     debug("init_from_environment()\t\t[%d]\n", getpid());
51 #endif
52     const char *env;
53
54     initialized = 1;
55     tracked_fds_count = 0;
56
57     /* If ENV_NAME_FORCE_WRITE is set and not empty, allow writes to a non-tty
58      * device. Use with care! Mainly used for the test suite. */
59     env = getenv(ENV_NAME_FORCE_WRITE);
60     if (env && env[0] != '\0') {
61         force_write_to_non_tty = 1;
62     }
63
64     env = getenv(ENV_NAME_FDS);
65     if (!env) {
66         return;
67     }
68     /* Environment is read-only. */
69     char *env_copy = strdup(env);
70     if (!env_copy) {
71         return;
72     }
73
74     char *x;
75
76     size_t count = 0;
77     for (x = env_copy; *x; x++) {
78         if (*x == ',') {
79             count++;
80         }
81     }
82     tracked_fds_space = count + TRACKFDS_REALLOC_STEP;
83
84     tracked_fds = malloc(tracked_fds_space * sizeof(*tracked_fds));
85     if (!tracked_fds) {
86         free(env_copy);
87         return;
88     }
89
90     size_t i = 0;
91
92     /* Parse file descriptor numbers from environment string and store them as
93      * integers in tracked_fds. */
94     char *last;
95     for (x = env_copy, last = env_copy; *x; x++) {
96         if (*x != ',') {
97             continue;
98         }
99         /* ',' at the beginning or double ',' - ignore. */
100         if (x == last) {
101             last = x + 1;
102             continue;
103         }
104
105         if (i == count) {
106             break;
107         }
108
109         *x = 0;
110         tracked_fds[i++] = atoi(last);
111
112         last = x + 1;
113     }
114
115     tracked_fds_count = count;
116
117     free(env_copy);
118
119 #ifdef DEBUG
120     tracked_fds_debug();
121 #endif
122 }
123
124 static void update_environment(void) {
125 #ifdef DEBUG
126     debug("update_environment()\t\t[%d]\n", getpid());
127 #endif
128
129     /* An integer (32-bit) has at most 10 digits, + 1 for the comma after each
130      * number. Bigger file descriptors (which shouldn't occur in reality) are
131      * skipped. */
132     char env[tracked_fds_count * (10 + 1) + 1 /* to fit '\0' */ ];
133     env[0] = 0;
134
135     char *x = env;
136
137     size_t i;
138     for (i = 0; i < tracked_fds_count; i++) {
139         int length = snprintf(x, 10 + 1, "%d", tracked_fds[i]);
140         if (length >= 10 + 1) {
141             /* Integer too bit to fit the buffer, skip it. */
142             continue;
143         }
144
145         /* Write comma after number. */
146         x += length;
147         *x++ = ',';
148         /* Make sure the string is always zero terminated. */
149         *x = 0;
150     }
151
152 #if 0
153     debug("    setenv('%s', '%s', 1)\n", ENV_NAME_FDS, env);
154 #endif
155
156     setenv(ENV_NAME_FDS, env, 1 /* overwrite */);
157 }
158
159
160
161 static void tracked_fds_add(int fd) {
162     if (tracked_fds_count >= tracked_fds_space) {
163         size_t new_space = tracked_fds_space + TRACKFDS_REALLOC_STEP;
164         int *tmp = realloc(tracked_fds, sizeof(*tracked_fds) * new_space);
165         if (!tmp) {
166             /* We can do nothing, just ignore the error. We made sure not to
167              * destroy our state, so the new descriptor is ignored without any
168              * other consequences. */
169 #ifdef DEBUG
170             debug("realloc(tracked_fds, %zu) failed! [%d]\n",
171                   sizeof(*tracked_fds) * new_space, getpid());
172 #endif
173             return;
174         }
175         tracked_fds = tmp;
176         tracked_fds_space = new_space;
177     }
178
179     tracked_fds[tracked_fds_count++] = fd;
180
181 #ifdef DEBUG
182     debug("tracked_fds_add(): %-3d\t\t[%d]\n", fd, getpid());
183     tracked_fds_debug();
184 #endif
185 }
186 static int tracked_fds_remove(int fd) {
187     size_t i;
188     for (i = 0; i < tracked_fds_count; i++) {
189         if (fd != tracked_fds[i]) {
190             continue;
191         }
192
193         memmove(tracked_fds + i, tracked_fds + i + 1,
194                 sizeof(*tracked_fds) * (tracked_fds_count - i - 1));
195         tracked_fds_count--;
196
197 #ifdef DEBUG
198         debug("tracked_fds_remove(): %-3d\t[%d]\n", fd, getpid());
199         tracked_fds_debug();
200 #endif
201
202         /* Found. */
203         return 1;
204     }
205
206     /* Not found. */
207     return 0;
208 }
209 static int tracked_fds_find(int fd) {
210     size_t i;
211     for (i = 0; i < tracked_fds_count; i++) {
212         if (fd == tracked_fds[i]) {
213             return 1;
214         }
215     }
216     return 0;
217 }
218
219 #endif