summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsf-exg <sf-exg>2014-10-06 11:14:49 +0000
committersf-exg <sf-exg>2014-10-06 11:14:49 +0000
commite8909746941fd5bdd468cfacb9d3ac3140b5b874 (patch)
tree0480ac118aba0000e196082298a6f886f5eb091e
parentaa8fb072ce9e3816bd89914770d783a6209423a4 (diff)
Add -k option to urxvtc for killing the daemon process.
-rw-r--r--doc/rxvtc.1.pod66
-rw-r--r--src/rxvtc.C155
-rw-r--r--src/rxvtd.C321
3 files changed, 542 insertions, 0 deletions
diff --git a/doc/rxvtc.1.pod b/doc/rxvtc.1.pod
new file mode 100644
index 0000000..3712dd4
--- /dev/null
+++ b/doc/rxvtc.1.pod
@@ -0,0 +1,66 @@
+=head1 NAME
+
+@@RXVT_NAME@@c - control the @@RXVT_NAME@@d daemon
+
+=head1 SYNOPSIS
+
+B<@@RXVT_NAME@@c> [same options as for @@RXVT_NAME@@]
+
+=head1 DESCRIPTION
+
+This manpage describes the B<@@RXVT_NAME@@c> client program. It connects
+to the B<@@RXVT_NAME@@d> daemon and requests a new terminal window. It
+takes the same arguments as the B<@@RXVT_NAME@@> program. The environment
+will also be respected. Currently, it always returns immediately after
+contacting the daemon.
+
+=head1 OPTIONS
+
+If the first option is B<-k>, B<@@RXVT_NAME@@c> tries to kill the
+daemon process and returns.
+
+All options that are valid for B<@@RXVT_NAME@@> are valid for
+B<@@RXVT_NAME@@c>, too. Please note that options are interpreted in the
+context of the daemon process. However, as current working directory,
+process environment and any file descriptor (e.g. for C<-pty-fd>) are
+preserved, this rarely makes a difference.
+
+=head1 EXIT STATUS
+
+If everything went well, @@RXVT_NAME@@c returns with an exit status of C<0>.
+If contacting the daemon fails, it exits with the exit status C<2>. In all other error
+cases it returns with status C<1>.
+
+This can be used to implement auto-starting behaviour, by checking for an
+exit status of C<2>, running C<@@RXVT_NAME@@d -f -q> and retrying the call
+to @@RXVT_NAME@@c, like this:
+
+ #!/bin/sh
+ @@RXVT_NAME@@c "$@"
+ if [ $? -eq 2 ]; then
+ @@RXVT_NAME@@d -q -o -f
+ @@RXVT_NAME@@c "$@"
+ fi
+
+=head1 ENVIRONMENT
+
+All environment variables of the current process will be made available
+to the new instance, and will be interpreted as if B<@@RXVT_NAME@@> were
+started directly.
+
+=over 4
+
+=item B<RXVT_SOCKET>
+
+Both @@RXVT_NAME@@c and @@RXVT_NAME@@d use the environment variable
+F<RXVT_SOCKET> to create a listening socket and to contact the
+@@RXVT_NAME@@d, respectively. If the variable is missing,
+F<<< $HOME/.urxvt/urxvtd-I<< <nodename> >> >>> is used. The variable must
+specify the absolute path of the socket to create.
+
+=back
+
+=head1 SEE ALSO
+
+@@RXVT_NAME@@(7), @@RXVT_NAME@@d(1)
+
diff --git a/src/rxvtc.C b/src/rxvtc.C
new file mode 100644
index 0000000..71fa330
--- /dev/null
+++ b/src/rxvtc.C
@@ -0,0 +1,155 @@
+/*----------------------------------------------------------------------*
+ * File: rxvtc.C
+ *----------------------------------------------------------------------*
+ *
+ * All portions of code are copyright by their respective author/s.
+ * Copyright (c) 2003-2006 Marc Lehmann <schmorp@schmorp.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *----------------------------------------------------------------------*/
+
+#include "../config.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <signal.h>
+
+#include <unistd.h>
+#include <sys/socket.h>
+#include <sys/un.h>
+
+#include "rxvtdaemon.h"
+#include "libptytty.h"
+
+#define STATUS_SUCCESS 0
+#define STATUS_FAILURE 1
+#define STATUS_CONNECTION_FAILED 2
+
+struct client : rxvt_connection
+{
+ client ();
+};
+
+client::client ()
+{
+ sockaddr_un sa;
+ char *sockname = rxvt_connection::unix_sockname ();
+
+ if (strlen (sockname) >= sizeof (sa.sun_path))
+ {
+ fputs ("socket name too long, aborting.\n", stderr);
+ exit (STATUS_FAILURE);
+ }
+
+ if ((fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
+ {
+ perror ("unable to create communications socket");
+ exit (STATUS_FAILURE);
+ }
+
+ sa.sun_family = AF_UNIX;
+ strcpy (sa.sun_path, sockname);
+ free (sockname);
+
+ if (connect (fd, (sockaddr *)&sa, sizeof (sa)))
+ {
+ perror ("unable to connect to the rxvt-unicode daemon");
+ exit (STATUS_CONNECTION_FAILED);
+ }
+}
+
+extern char **environ;
+
+int
+main (int argc, const char *const *argv)
+{
+ // instead of getcwd we could opendir (".") and pass the fd for fchdir *g*
+ char cwd[PATH_MAX];
+
+ if (!getcwd (cwd, sizeof (cwd)))
+ {
+ perror ("unable to determine current working directory");
+ exit (STATUS_FAILURE);
+ }
+
+ client c;
+
+ {
+ sigset_t ss;
+
+ sigemptyset (&ss);
+ sigaddset (&ss, SIGHUP);
+ sigaddset (&ss, SIGPIPE);
+ sigprocmask (SIG_BLOCK, &ss, 0);
+ }
+
+ if (argc >= 2 && !strcmp (argv[1], "-k"))
+ {
+ c.send ("QUIT");
+ return 0;
+ }
+
+ c.send ("NEW");
+
+ for (char **var = environ; *var; var++)
+ c.send ("ENV"), c.send (*var);
+
+ const char *base = strrchr (argv[0], '/');
+ base = base ? base + 1 : argv[0];
+ c.send ("ARG"), c.send (strcmp (base, RXVTNAME "c") ? base : RXVTNAME);
+
+ c.send ("ARG"), c.send ("-cd");
+ c.send ("ARG"), c.send (cwd);
+
+ for (int i = 1; i < argc; i++)
+ c.send ("ARG"), c.send (argv[i]);
+
+ c.send ("END");
+
+ auto_str tok;
+ int cint;
+
+ for (;;)
+ if (!c.recv (tok))
+ {
+ fprintf (stderr, "protocol error: unexpected eof from server.\n");
+ break;
+ }
+ else if (!strcmp (tok, "MSG") && c.recv (tok))
+ fprintf (stderr, "%s", (const char *)tok);
+ else if (!strcmp (tok, "GETFD") && c.recv (cint))
+ {
+ if (!ptytty::send_fd (c.fd, cint))
+ {
+ fprintf (stderr, "unable to send fd %d: ", cint); perror (0);
+ exit (STATUS_FAILURE);
+ }
+ }
+ else if (!strcmp (tok, "END"))
+ {
+ int success;
+
+ if (c.recv (success))
+ exit (success ? STATUS_SUCCESS : STATUS_FAILURE);
+ }
+ else
+ {
+ fprintf (stderr, "protocol error: received unsupported token '%s'.\n", (const char *)tok);
+ break;
+ }
+
+ return STATUS_FAILURE;
+}
+
diff --git a/src/rxvtd.C b/src/rxvtd.C
new file mode 100644
index 0000000..50261c6
--- /dev/null
+++ b/src/rxvtd.C
@@ -0,0 +1,321 @@
+/*----------------------------------------------------------------------*
+ * File: rxvtd.C
+ *----------------------------------------------------------------------*
+ *
+ * All portions of code are copyright by their respective author/s.
+ * Copyright (c) 2003-2007 Marc Lehmann <schmorp@schmorp.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *----------------------------------------------------------------------*/
+
+#include "../config.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <string.h>
+
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/socket.h>
+#include <sys/un.h>
+
+#if defined(ENABLE_FRILLS) && defined(_POSIX_MEMLOCK) && _POSIX_MEMLOCK > 0
+# define ENABLE_MLOCK 1
+#endif
+
+#if ENABLE_MLOCK
+# include <sys/mman.h>
+#endif
+
+#include <errno.h>
+
+#include "rxvt.h"
+#include "rxvtdaemon.h"
+#include "libptytty.h"
+
+struct server : rxvt_connection {
+ log_callback log_cb;
+ getfd_callback getfd_cb;
+
+ void read_cb (ev::io &w, int revents); ev::io read_ev;
+ void log_msg (const char *msg);
+ int getfd (int remote_fd);
+
+ server (int fd)
+ {
+ read_ev.set <server, &server::read_cb> (this);
+ log_cb.set <server, &server::log_msg> (this);
+ getfd_cb.set<server, &server::getfd> (this);
+
+ this->fd = fd;
+ fcntl (fd, F_SETFD, FD_CLOEXEC);
+ fcntl (fd, F_SETFL, 0);
+ read_ev.start (fd, ev::READ);
+ }
+
+ void err (const char *format = 0, ...);
+};
+
+struct unix_listener {
+ int fd;
+
+ void accept_cb (ev::io &w, int revents); ev::io accept_ev;
+
+ unix_listener (const char *sockname);
+};
+
+unix_listener::unix_listener (const char *sockname)
+{
+ accept_ev.set<unix_listener, &unix_listener::accept_cb> (this);
+
+ sockaddr_un sa;
+
+ if (strlen (sockname) >= sizeof(sa.sun_path))
+ {
+ fputs ("socket name too long, aborting.\n", stderr);
+ exit (EXIT_FAILURE);
+ }
+
+ if ((fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
+ {
+ perror ("unable to create listening socket");
+ exit (EXIT_FAILURE);
+ }
+
+ fcntl (fd, F_SETFD, FD_CLOEXEC);
+ fcntl (fd, F_SETFL, O_NONBLOCK);
+
+ sa.sun_family = AF_UNIX;
+ strcpy (sa.sun_path, sockname);
+
+ unlink (sockname);
+
+ mode_t omask = umask (0077);
+
+ if (bind (fd, (sockaddr *)&sa, sizeof (sa)))
+ {
+ perror ("unable to bind listening socket");
+ exit (EXIT_FAILURE);
+ }
+
+ umask (omask);
+
+ if (listen (fd, 5))
+ {
+ perror ("unable to listen on socket");
+ exit (EXIT_FAILURE);
+ }
+
+ accept_ev.start (fd, ev::READ);
+}
+
+void unix_listener::accept_cb (ev::io &w, int revents)
+{
+ int fd2 = accept (fd, 0, 0);
+
+ if (fd2 >= 0)
+ new server (fd2);
+}
+
+int server::getfd (int remote_fd)
+{
+ send ("GETFD");
+ send (remote_fd);
+ return ptytty::recv_fd (fd);
+}
+
+void server::log_msg (const char *msg)
+{
+ send ("MSG"), send (msg);
+}
+
+void server::err (const char *format, ...)
+{
+ if (format)
+ {
+ char err[1024];
+
+ va_list ap;
+ va_start (ap, format);
+ vsnprintf (err, 1024, format, ap);
+ va_end (ap);
+
+ log_msg (err);
+ }
+
+ send ("END"), send (0);
+ close (fd);
+ delete this;
+}
+
+void server::read_cb (ev::io &w, int revents)
+{
+ auto_str tok;
+
+ if (recv (tok))
+ {
+ if (!strcmp (tok, "NEW"))
+ {
+ stringvec *argv = new stringvec;
+ stringvec *envv = new stringvec;
+
+ for (;;)
+ {
+ if (!recv (tok))
+ return err ();
+
+ if (!strcmp (tok, "END"))
+ break;
+ else if (!strcmp (tok, "ENV") && recv (tok))
+ envv->push_back (strdup (tok));
+ else if (!strcmp (tok, "ARG") && recv (tok))
+ argv->push_back (strdup (tok));
+ else
+ return err ("protocol error: unexpected NEW token.\n");
+ }
+
+ {
+ rxvt_term *term = new rxvt_term;
+
+ term->log_hook = &log_cb;
+ term->getfd_hook = &getfd_cb;
+
+ bool success = true;
+
+ try
+ {
+ term->init (argv, envv);
+ }
+ catch (const class rxvt_failure_exception &e)
+ {
+ success = false;
+ }
+
+ term->log_hook = 0;
+
+ chdir ("/"); // init might change to different working directory
+
+ if (!success)
+ term->destroy ();
+
+ send ("END"); send (success ? 1 : 0);
+ }
+ }
+ else if (!strcmp (tok, "QUIT"))
+ _exit (0);
+ else
+ return err ("protocol error: request '%s' unsupported.\n", (char *)tok);
+ }
+ else
+ return err ();
+}
+
+int
+main (int argc, char *argv[])
+{
+ ptytty::init ();
+
+ static char opt_fork, opt_opendisplay, opt_quiet;
+#if ENABLE_PERL
+ static char *opt_eval;
+#endif
+#if ENABLE_MLOCK
+ static char opt_lock;
+#endif
+
+ for (int i = 1; i < argc; i++)
+ {
+ if (!strcmp (argv [i], "-f") || !strcmp (argv [i], "--fork"))
+ opt_fork = 1;
+ else if (!strcmp (argv [i], "-o") || !strcmp (argv [i], "--opendisplay"))
+ opt_opendisplay = 1;
+ else if (!strcmp (argv [i], "-q") || !strcmp (argv [i], "--quiet"))
+ opt_quiet = 1;
+#if ENABLE_MLOCK
+ else if (!strcmp (argv [i], "-m") || !strcmp (argv [i], "--mlock"))
+ opt_lock = 1;
+#endif
+#if ENABLE_PERL
+ else if (!strcmp (argv [i], "-e") || !strcmp (argv [i], "--eval"))
+ opt_eval = argv [++i];
+#endif
+ else
+ {
+ rxvt_log ("%s: unknown option '%s', aborting.\n", argv [0], argv [i]);
+ return EXIT_FAILURE;
+ }
+ }
+
+ rxvt_init ();
+
+#if ENABLE_PERL
+ if (opt_eval)
+ {
+ rxvt_perl.init ();
+ rxvt_perl.eval (opt_eval);
+ }
+#endif
+
+ // optionally open display and never release it.
+ if (opt_opendisplay)
+ if (const char *dpy = getenv ("DISPLAY"))
+ displays.get (dpy ? dpy : ":0"); // move string logic into rxvt_display maybe?
+
+ char *sockname = rxvt_connection::unix_sockname ();
+ unix_listener l (sockname);
+
+ chdir ("/");
+
+ if (!opt_quiet)
+ {
+ printf ("rxvt-unicode daemon listening on %s.\n", sockname);
+ fflush (stdout);
+ }
+
+ free (sockname);
+
+ pid_t pid = 0;
+ if (opt_fork)
+ {
+ pid = fork ();
+ }
+
+#if ENABLE_MLOCK
+ // Optionally perform an mlockall so this process does not get swapped out.
+ if (opt_lock && !pid)
+ if (mlockall (MCL_CURRENT | MCL_FUTURE) < 0)
+ perror ("unable to lock into ram");
+#endif
+
+ if (opt_fork)
+ {
+ if (pid < 0)
+ {
+ rxvt_log ("unable to fork daemon, aborting.\n");
+ return EXIT_FAILURE;
+ }
+ else if (pid > 0)
+ _exit (EXIT_SUCCESS);
+
+ ev_loop_fork (EV_DEFAULT_UC);
+ }
+
+ ev_run ();
+
+ return EXIT_SUCCESS;
+}
+