]> ruderich.org/simon Gitweb - coloredstderr/coloredstderr.git/blob - src/trackfds.h
Improve debug output.
[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         if (!realloc(tracked_fds, sizeof(*tracked_fds) * new_space)) {
165             /* We can do nothing, just ignore the error. We made sure not to
166              * destroy our state, so the new descriptor is ignored without any
167              * other consequences. */
168 #ifdef DEBUG
169             debug("realloc(tracked_fds, %zu) failed! [%d]\n",
170                   sizeof(*tracked_fds) * new_space, getpid());
171 #endif
172             return;
173         }
174         tracked_fds_space = new_space;
175     }
176
177     tracked_fds[tracked_fds_count++] = fd;
178
179 #ifdef DEBUG
180     debug("tracked_fds_add(): %-3d\t\t[%d]\n", fd, getpid());
181     tracked_fds_debug();
182 #endif
183 }
184 static int tracked_fds_remove(int fd) {
185     size_t i;
186     for (i = 0; i < tracked_fds_count; i++) {
187         if (fd != tracked_fds[i]) {
188             continue;
189         }
190
191         memmove(tracked_fds + i, tracked_fds + i + 1,
192                 sizeof(*tracked_fds) * (tracked_fds_count - i - 1));
193         tracked_fds_count--;
194
195 #ifdef DEBUG
196         debug("tracked_fds_remove(): %-3d\t[%d]\n", fd, getpid());
197         tracked_fds_debug();
198 #endif
199
200         /* Found. */
201         return 1;
202     }
203
204     /* Not found. */
205     return 0;
206 }
207 static int tracked_fds_find(int fd) {
208     size_t i;
209     for (i = 0; i < tracked_fds_count; i++) {
210         if (fd == tracked_fds[i]) {
211             return 1;
212         }
213     }
214     return 0;
215 }
216
217 #endif