2 * Receive wall messages and pass them to a notification program via stdin.
4 * Copyright (C) 2014 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/>.
32 #include <sys/select.h>
35 #include <sys/types.h>
40 # include <utempter.h>
47 # include <X11/Xlib.h>
51 static void sig_handler(int signal) {
54 static void setup_signals(void) {
55 struct sigaction action;
57 memset(&action, 0, sizeof(action));
58 sigemptyset(&action.sa_mask);
59 action.sa_handler = sig_handler;
61 /* Handle all important signals which might be sent to us so we break out
62 * of the read()-loop below and can perform our cleanup. */
63 sigaction(SIGHUP, &action, NULL);
64 sigaction(SIGINT, &action, NULL);
65 sigaction(SIGQUIT, &action, NULL);
66 sigaction(SIGUSR1, &action, NULL);
67 sigaction(SIGUSR2, &action, NULL);
70 static int open_tty(void) {
74 ptm = posix_openpt(O_RDWR);
78 if (grantpt(ptm) != 0) {
82 /* Prevent write access for other users so they can't use wall to send
83 * messages to this program. */
88 if (chmod(name, S_IRUSR | S_IWUSR) != 0) {
92 if (unlockpt(ptm) != 0) {
100 static const char *skip_prefix(const char *string, const char *prefix) {
101 size_t length = strlen(prefix);
103 if (!strncmp(string, prefix, length)) {
104 return string + length;
109 static int set_utmpx(short type, int ptm) {
112 const char *tty, *user, *id, *line;
115 user = getpwuid(getuid())->pw_name;
116 gettimeofday(&now, NULL);
123 id = skip_prefix(tty, "/dev/pts/");
124 line = skip_prefix(tty, "/dev/");
126 /* Create utmp entry for the given terminal. */
127 memset(&entry, 0, sizeof(entry));
129 snprintf(entry.ut_user, sizeof(entry.ut_user), "%s", user);
130 snprintf(entry.ut_id, sizeof(entry.ut_id), "%s", id);
131 snprintf(entry.ut_line, sizeof(entry.ut_line), "%s", line);
133 entry.ut_pid = getpid();
134 entry.ut_type = type;
135 entry.ut_tv.tv_sec = now.tv_sec;
136 entry.ut_tv.tv_usec = now.tv_usec;
138 /* Write the entry to the utmp file. */
140 if (!pututxline(&entry)) {
148 static int login(int ptm) {
149 #if defined(USE_UTEMPTER)
150 int result = utempter_add_record(ptm, NULL);
151 /* Exit value of utempter_*() is not correct on all systems, e.g.
152 * FreeBSD() always returns 0. Checking the utmpx database manually is
153 * difficult because we don't know the exact values for ut_id and ut_line,
154 * therefore we only check the return value on systems known to return a
160 #elif defined(USE_UTMPX)
161 return set_utmpx(USER_PROCESS, ptm);
163 # error "neither USE_UTEMPTER nor USE_UTMPX defined"
166 static int logout(int ptm) {
167 #if defined(USE_UTEMPTER)
168 int result = utempter_remove_record(ptm);
174 #elif defined(USE_UTMPX)
175 return set_utmpx(DEAD_PROCESS, ptm);
177 # error "neither USE_UTEMPTER nor USE_UTMPX defined"
181 static int wait_for_write(int fd, int timeout) {
192 result = select(fd + 1, &rfds, NULL, NULL, &tv);
202 /* Got more data to read. */
207 static void drop_privileges(void) {
208 uid_t uid, ruid, euid, suid;
209 gid_t gid, rgid, egid, sgid;
214 /* Drop all privileges. */
215 if (setresuid(uid, uid, uid) != 0) {
219 if (setresgid(gid, gid, gid) != 0) {
224 /* Verify all privileges were dropped. */
225 if (getresuid(&ruid, &euid, &suid) != 0) {
229 if (getresgid(&rgid, &egid, &sgid) != 0) {
233 if (uid == ruid && uid == euid && uid == suid
234 && gid == rgid && gid == egid && gid == sgid) {
235 /* Everything fine. */
239 fprintf(stderr, "failed to drop privileges, aborting\n");
244 static void pass_buffer_to_program(const char *buffer, size_t length, char **argv) {
250 if (pipe(fds) != 0) {
255 fh = fdopen(fds[1] /* write side */, "w");
267 } else if (pid == 0) {
274 close(fds[1]); /* write side */
276 /* Pass read side as stdin to the program. */
277 if (dup2(fds[0], STDIN_FILENO) < 0) {
283 /* Double fork so `wall-notify` doesn't have to wait for the
284 * notification process to terminate. We can't just use
285 * signal(SIGCHLD, SIG_IGN); because utempter on at least FreeBSD
286 * doesn't work if SIGCHLD is ignored. */
291 } else if (pid == 0) {
292 execvp(argv[0], argv);
301 if (fwrite(buffer, 1, length, fh) != length) {
303 /* continue to perform cleanup */
307 close(fds[0]); /* read side */
310 if (waitpid(pid, NULL, 0) < 0) {
314 static void handle_wall(int fd, char **argv) {
318 assert(SSIZE_MAX <= SIZE_MAX);
319 while ((r = read(fd, buffer, sizeof(buffer))) > 0) {
323 /* To prevent partial messages (sometimes it takes multiple reads to
324 * get the complete message) wait for a short time to get the rest of
326 space = sizeof(buffer) - (size_t)r;
327 while (space > 0 && wait_for_write(fd, 1 /* second */)) {
328 r2 = read(fd, buffer + r, space);
336 pass_buffer_to_program(buffer, (size_t)r, argv);
340 static void *x11_event_loop_thread(void *unused) {
346 pthread_detach(pthread_self());
348 display = XOpenDisplay(NULL);
350 fprintf(stderr, "failed to connect to X server\n");
354 /* Do nothing. We just want to die if the X11 session is closed. */
356 XNextEvent(display, &event);
361 static void usage(const char *argv0) {
362 fprintf(stderr, "usage: %s [-X] <cmd args..>\n", argv0);
363 fprintf(stderr, "Pass wall messages to <cmd args..>.\n");
364 fprintf(stderr, "\n");
365 fprintf(stderr, "-X quit when the current X session terminates\n");
367 fprintf(stderr, "\n");
368 fprintf(stderr, "compiled without X11 support, -X disabled\n");
374 int main(int argc, char **argv) {
381 /* Don't pass our argv[0] to the notification program. */
385 if (argc > 1 && argv[0][0] == '-') {
386 if (!strcmp("-X", argv[0])) {
389 if (strcmp("-h", argv[0])) {
390 fprintf(stderr, "%s: unknown option '%s'!\n\n", argv0, argv[0]);
394 argc--; /* for usage */
414 printf("%s\n", name);
417 /* We need to open the slave or reading from the master yields EOF after
418 * the first wall write to it. */
419 pts = open(name, O_RDWR);
425 /* Start a thread which connects to X11. This way we die if the user logs
426 * out of its X11 session. */
429 fprintf(stderr, "%s: option -X is disabled!\n\n", argv0);
434 if (pthread_create(&tid, NULL, x11_event_loop_thread, NULL) != 0) {
435 perror("pthread_create");
441 /* Cleanup on signals. Necessary before login(). */
449 /* Main loop. Handle all wall messages sent to our PTY. */
450 handle_wall(ptm, argv);