src/script.c: remove executable check with access(2)
[vlock.git] / src / script.c
blobad7c4ec7a61363a7217c7423615b0c7cf40f753c
1 /* script.c -- script routines for vlock, the VT locking program for linux
3 * This program is copyright (C) 2007 Frank Benkstein, and is free
4 * software which is freely distributable under the terms of the
5 * GNU General Public License version 2, included as the file COPYING in this
6 * distribution. It is NOT public domain software, and any
7 * redistribution not permitted by the GNU General Public License is
8 * expressly forbidden without prior written permission from
9 * the author.
13 /* Scripts are executables that are run as unprivileged child processes of
14 * vlock. They communicate with vlock through stdin and stdout.
16 * When dependencies are retrieved they are launched once for each dependency
17 * and should print the names of the plugins they depend on on stdout one per
18 * line. The dependency requested is given as a single command line argument.
20 * In hook mode the script is called once with "hooks" as a single command line
21 * argument. It should not exit until its stdin closes. The hook that should
22 * be executed is written to its stdin on a single line.
24 * Currently there is no way for a script to communicate errors or even success
25 * to vlock. If it exits it will linger as a zombie until the plugin is
26 * destroyed.
29 #if !defined(__FreeBSD__) && !defined(_GNU_SOURCE)
30 #define _GNU_SOURCE
31 #endif
33 #include <stdio.h>
34 #include <string.h>
35 #include <stdlib.h>
36 #include <unistd.h>
37 #include <limits.h>
38 #include <sys/select.h>
39 #include <fcntl.h>
40 #include <signal.h>
41 #include <errno.h>
42 #include <sys/time.h>
43 #include <time.h>
45 #include "list.h"
46 #include "process.h"
47 #include "util.h"
49 #include "plugin.h"
51 static bool init_script(struct plugin *p);
52 static void destroy_script(struct plugin *p);
53 static bool call_script_hook(struct plugin *p, const char *hook_name);
55 struct plugin_type *script = &(struct plugin_type){
56 .init = init_script,
57 .destroy = destroy_script,
58 .call_hook = call_script_hook,
61 struct script_context
63 /* The path to the script. */
64 char *path;
65 /* Was the script launched? */
66 bool launched;
67 /* Did the script die? */
68 bool dead;
69 /* The pipe file descriptor that is connected to the script's stdin. */
70 int fd;
71 /* The PID of the script. */
72 pid_t pid;
75 /* Get the dependency from the script. */
76 static bool get_dependency(const char *path, const char *dependency_name,
77 struct list *dependency_list);
78 /* Launch the script creating a new script_context. */
79 static bool launch_script(struct script_context *script);
81 bool init_script(struct plugin *p)
83 int errsv;
84 struct script_context *context = malloc(sizeof *context);
86 if (context == NULL)
87 return false;
89 context->dead = false;
90 context->launched = false;
92 if (asprintf(&context->path, "%s/%s", VLOCK_SCRIPT_DIR, p->name) < 0) {
93 free(context);
94 errno = ENOMEM;
95 return false;
98 /* Get the dependency information. Whether the script is executable or not
99 * is also detected here. */
100 for (size_t i = 0; i < nr_dependencies; i++)
101 if (!get_dependency(context->path, dependency_names[i], p->dependencies[i]))
102 goto error;
104 p->context = context;
105 return true;
107 error:
108 errsv = errno;
109 free(context->path);
110 free(context);
111 errno = errsv;
112 return false;
115 static void destroy_script(struct plugin *p)
117 struct script_context *context = p->context;
119 if (context != NULL) {
120 free(context->path);
122 /* Close the pipe. */
123 (void) close(context->fd);
125 /* Kill the child process. */
126 if (!wait_for_death(context->pid, 0, 500000L))
127 ensure_death(context->pid);
129 free(context);
133 /* Invoke the hook by writing it on a single line to the scripts stdin. */
134 static bool call_script_hook(struct plugin *s, const char *hook_name)
136 static const char newline = '\n';
137 struct script_context *context = s->context;
138 ssize_t hook_name_length = strlen(hook_name);
139 ssize_t length;
140 struct sigaction act;
141 struct sigaction oldact;
143 if (!context->launched) {
144 /* Launch script. */
145 context->launched = launch_script(context);
147 if (!context->launched)
148 return false;
151 if (context->dead)
152 /* Nothing to do. */
153 return false;
155 /* When writing to a pipe when the read end is closed the kernel invariably
156 * sends SIGPIPE. Ignore it. */
157 (void) sigemptyset(&(act.sa_mask));
158 act.sa_flags = SA_RESTART;
159 act.sa_handler = SIG_IGN;
160 (void) sigaction(SIGPIPE, &act, &oldact);
162 /* Send hook name and a newline through the pipe. */
163 length = write(context->fd, hook_name, hook_name_length);
165 if (length > 0)
166 length += write(context->fd, &newline, sizeof newline);
168 /* Restore the previous SIGPIPE handler. */
169 (void) sigaction(SIGPIPE, &oldact, NULL);
171 /* If write fails the script is considered dead. */
172 context->dead = (length != hook_name_length + 1);
174 return !context->dead;
177 static bool launch_script(struct script_context *script)
179 int fd_flags;
180 const char *argv[] = { script->path, "hooks", NULL };
181 struct child_process child = {
182 .path = script->path,
183 .argv = argv,
184 .stdin_fd = REDIRECT_PIPE,
185 .stdout_fd = REDIRECT_DEV_NULL,
186 .stderr_fd = REDIRECT_DEV_NULL,
187 .function = NULL,
190 if (!create_child(&child))
191 return false;
193 script->fd = child.stdin_fd;
194 script->pid = child.pid;
196 fd_flags = fcntl(script->fd, F_GETFL, &fd_flags);
198 if (fd_flags != -1) {
199 fd_flags |= O_NONBLOCK;
200 (void) fcntl(script->fd, F_SETFL, fd_flags);
203 return true;
206 static char *read_dependency(const char *path, const char *dependency_name);
207 static bool parse_dependency(char *data, struct list *dependency_list);
209 /* Get the dependency from the script. */
210 static bool get_dependency(const char *path, const char *dependency_name,
211 struct list *dependency_list)
213 /* Read the dependency data. */
214 char *data;
215 errno = 0;
216 data = read_dependency(path, dependency_name);
218 if (data == NULL) {
219 return errno == 0;
220 } else {
221 /* Parse the dependency data. */
222 bool result = parse_dependency(data, dependency_list);
223 int errsv = errno;
224 free(data);
225 errno = errsv;
226 return result;
230 /* Read the dependency data by starting the script with the name of the
231 * dependency as a single command line argument. The script should then print
232 * the dependencies to its stdout one on per line. */
233 static char *read_dependency(const char *path, const char *dependency_name)
235 const char *argv[] = { path, dependency_name, NULL };
236 struct child_process child = {
237 .path = path,
238 .argv = argv,
239 .stdin_fd = REDIRECT_DEV_NULL,
240 .stdout_fd = REDIRECT_PIPE,
241 .stderr_fd = REDIRECT_DEV_NULL,
242 .function = NULL,
244 struct timeval timeout = {1, 0};
245 char *data = calloc(1, sizeof *data);
246 size_t data_length = 0;
248 if (data == NULL)
249 return NULL;
251 if (!create_child(&child)) {
252 int errsv = errno;
253 free(data);
254 errno = errsv;
255 return NULL;
258 /* Read the dependency from the child. Reading fails if either the timeout
259 * elapses or more that LINE_MAX bytes are read. */
260 for (;;) {
261 struct timeval t = timeout;
262 struct timeval t1;
263 struct timeval t2;
264 char buffer[LINE_MAX];
265 ssize_t length;
267 fd_set read_fds;
269 FD_ZERO(&read_fds);
270 FD_SET(child.stdout_fd, &read_fds);
272 /* t1 is before select. */
273 (void) gettimeofday(&t1, NULL);
275 if (select(child.stdout_fd+1, &read_fds, NULL, NULL, &t) != 1) {
276 timeout:
277 errno = ETIMEDOUT;
278 goto error;
281 /* t2 is after select. */
282 (void) gettimeofday(&t2, NULL);
284 /* Get the time that during select. */
285 timersub(&t2, &t1, &t2);
287 /* This is very unlikely. */
288 if (timercmp(&t2, &timeout, >))
289 goto timeout;
291 /* Reduce the timeout. */
292 timersub(&timeout, &t2, &timeout);
294 /* Read dependency data from the script. */
295 length = read(child.stdout_fd, buffer, sizeof buffer - 1);
297 /* Did the script close its stdin or exit? */
298 if (length <= 0)
299 break;
301 if (data_length+length+1 > LINE_MAX) {
302 errno = EFBIG;
303 goto error;
306 /* Grow the data string. */
307 data = realloc(data, data_length+length);
309 if (data == NULL)
310 goto error;
312 /* Append the buffer to the data string. */
313 strncpy(data+data_length, buffer, length);
314 data_length += length;
317 /* Terminate the data string. */
318 data[data_length] = '\0';
320 /* Close the read end of the pipe. */
321 (void) close(child.stdout_fd);
322 /* Kill the script. */
323 if (!wait_for_death(child.pid, 0, 500000L))
324 ensure_death(child.pid);
326 return data;
328 error:
330 int errsv = errno;
331 free(data);
332 (void) close(child.stdout_fd);
333 if (!wait_for_death(child.pid, 0, 500000L))
334 ensure_death(child.pid);
335 errno = errsv;
336 return NULL;
340 static bool parse_dependency(char *data, struct list *dependency_list)
342 for (char *saveptr, *token = strtok_r(data, " \r\n", &saveptr);
343 token != NULL;
344 token = strtok_r(NULL, " \r\n", &saveptr)) {
345 char *s = strdup(token);
347 if (s == NULL || !list_append(dependency_list, s))
348 return false;
351 return true;