]> git.sur5r.net Git - i3/i3/blob - testcases/lib/SocketActivation.pm
83ca92555ca5fe7391a0f739a599f24847d7423c
[i3/i3] / testcases / lib / SocketActivation.pm
1 package SocketActivation;
2 # vim:ts=4:sw=4:expandtab
3
4 use strict;
5 use warnings;
6 use IO::Socket::UNIX; # core
7 use Cwd qw(abs_path); # core
8 use POSIX qw(:fcntl_h); # core
9 use AnyEvent::Handle; # not core
10 use AnyEvent::Util; # not core
11 use Exporter 'import';
12 use v5.10;
13
14 our @EXPORT = qw(activate_i3);
15
16 #
17 # Starts i3 using socket activation. Creates a listening socket (with bind +
18 # listen) which is then passed to i3, who in turn calls accept and handles the
19 # requests.
20 #
21 # Since the kernel buffers the connect, the parent process can connect to the
22 # socket immediately after forking. It then sends a request and waits until it
23 # gets an answer. Obviously, i3 has to be initialized to actually answer the
24 # request.
25 #
26 # This way, we can wait *precisely* the amount of time which i3 waits to get
27 # ready, which is a *HUGE* speed gain (and a lot more robust) in comparison to
28 # using sleep() with a fixed amount of time.
29 #
30 # unix_socket_path: Location of the socket to use for the activation
31 # display: X11 $ENV{DISPLAY}
32 # configfile: path to the configuration file to use
33 # logpath: path to the logfile to which i3 will append
34 # cv: an AnyEvent->condvar which will be triggered once i3 is ready
35 #
36 sub activate_i3 {
37     my %args = @_;
38
39     # remove the old unix socket
40     unlink($args{unix_socket_path});
41
42     my $socket = IO::Socket::UNIX->new(
43         Listen => 1,
44         Local => $args{unix_socket_path},
45     );
46
47     my $pid = fork;
48     if (!defined($pid)) {
49         die "could not fork()";
50     }
51     if ($pid == 0) {
52         $ENV{LISTEN_PID} = $$;
53         $ENV{LISTEN_FDS} = 1;
54         delete $ENV{DESKTOP_STARTUP_ID};
55         delete $ENV{I3SOCK};
56         # $SHELL could be set to fish, which will horribly break running shell
57         # commands via i3’s exec feature. This happened e.g. when having
58         # “set-option -g default-shell "/usr/bin/fish"” in ~/.tmux.conf
59         delete $ENV{SHELL};
60         unless ($args{dont_create_temp_dir}) {
61             $ENV{XDG_RUNTIME_DIR} = '/tmp/i3-testsuite/';
62             mkdir $ENV{XDG_RUNTIME_DIR};
63         }
64         $ENV{DISPLAY} = $args{display};
65         $ENV{PATH} = join(':',
66             '../i3-nagbar',
67             '../i3-msg',
68             '../i3-config-wizard',
69             '../i3bar',
70             '..',
71             $ENV{PATH}
72         );
73
74         # We are about to exec, but we did not modify $^F to include $socket
75         # when creating the socket (because the file descriptor could have a
76         # number != 3 which would lead to i3 leaking a file descriptor). This
77         # caused Perl to set the FD_CLOEXEC flag, which would close $socket on
78         # exec(), effectively *NOT* passing $socket to the new process.
79         # Therefore, we explicitly clear FD_CLOEXEC (the only flag right now)
80         # by setting the flags to 0.
81         POSIX::fcntl($socket, F_SETFD, 0) or die "Could not clear fd flags: $!";
82
83         # If the socket does not use file descriptor 3 by chance already, we
84         # close fd 3 and dup2() the socket to 3.
85         if (fileno($socket) != 3) {
86             POSIX::close(3);
87             POSIX::dup2(fileno($socket), 3);
88             POSIX::close(fileno($socket));
89         }
90
91         # Make sure no file descriptors are open. Strangely, I got an open file
92         # descriptor pointing to AnyEvent/Impl/EV.pm when testing.
93         AnyEvent::Util::close_all_fds_except(0, 1, 2, 3);
94
95         # Construct the command to launch i3. Use maximum debug level, disable
96         # the interactive signalhandler to make it crash immediately instead.
97         # Also disable logging to SHM since we redirect the logs anyways.
98         # Force Xinerama because we use Xdmx for multi-monitor tests.
99         my $i3cmd = abs_path("../i3") . q| -V -d all --disable-signalhandler| .
100                                         q| --shmlog-size=0 --force-xinerama|;
101
102         # For convenience:
103         my $outdir = $args{outdir};
104         my $test = $args{testname};
105
106         if ($args{restart}) {
107             $i3cmd .= ' -L ' . abs_path('restart-state.golden');
108         }
109
110         if ($args{valgrind}) {
111             $i3cmd =
112                 qq|valgrind --log-file="$outdir/valgrind-for-$test.log" | .
113                 qq|--suppressions="./valgrind.supp" | .
114                 qq|--leak-check=full --track-origins=yes --num-callers=20 | .
115                 qq|--tool=memcheck -- $i3cmd|;
116         }
117
118         my $logfile = "$outdir/i3-log-for-$test";
119         # Append to $logfile instead of overwriting because i3 might be
120         # run multiple times in one testcase.
121         my $cmd = "exec $i3cmd -c $args{configfile} >>$logfile 2>&1";
122
123         if ($args{strace}) {
124             my $out = "$outdir/strace-for-$test.log";
125
126             # We overwrite LISTEN_PID with the correct process ID to make
127             # socket activation work (LISTEN_PID has to match getpid(),
128             # otherwise the LISTEN_FDS will be treated as a left-over).
129             $cmd = qq|strace -fF -s2048 -v -o "$out" -- | .
130                      'sh -c "export LISTEN_PID=\$\$; ' . $cmd . '"';
131         }
132
133         if ($args{xtrace}) {
134             my $out = "$outdir/xtrace-for-$test.log";
135
136             # See comment in $args{strace} branch.
137             $cmd = qq|xtrace -n -o "$out" -- | .
138                      'sh -c "export LISTEN_PID=\$\$; ' . $cmd . '"';
139         }
140
141         # We need to use the shell due to using output redirections.
142         exec '/bin/sh', '-c', $cmd;
143
144         # if we are still here, i3 could not be found or exec failed. bail out.
145         exit 1;
146     }
147
148     # close the socket, the child process should be the only one which keeps a file
149     # descriptor on the listening socket.
150     $socket->close;
151
152     # We now connect (will succeed immediately) and send a request afterwards.
153     # As soon as the reply is there, i3 is considered ready.
154     my $cl = IO::Socket::UNIX->new(Peer => $args{unix_socket_path});
155     my $hdl;
156     $hdl = AnyEvent::Handle->new(
157         fh => $cl,
158         on_error => sub {
159             $hdl->destroy;
160             $args{cv}->send(0);
161         });
162
163     # send a get_tree message without payload
164     $hdl->push_write('i3-ipc' . pack("LL", 0, 4));
165
166     # wait for the reply
167     $hdl->push_read(chunk => 1, => sub {
168         my ($h, $line) = @_;
169         $args{cv}->send(1);
170         undef $hdl;
171     });
172
173     return $pid;
174 }
175
176 1