aboutsummaryrefslogtreecommitdiffstats
path: root/libaxl_connect_without_handshake.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-06-20 20:34:44 +0200
committerMattias Andrée <maandree@kth.se>2020-06-20 20:34:44 +0200
commit19fb6de1c1e47c03b611ac7a0b7636b85ab20118 (patch)
tree2f49c65d17c43239a85513c6f4cffed591e9083e /libaxl_connect_without_handshake.c
parentChange libaxl_protocol_version_major, libaxl_protocol_version_minor, and libaxl_protocol_version into variables (diff)
downloadlibaxl-19fb6de1c1e47c03b611ac7a0b7636b85ab20118.tar.gz
libaxl-19fb6de1c1e47c03b611ac7a0b7636b85ab20118.tar.bz2
libaxl-19fb6de1c1e47c03b611ac7a0b7636b85ab20118.tar.xz
Misc.
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libaxl_connect_without_handshake.c')
-rw-r--r--libaxl_connect_without_handshake.c44
1 files changed, 37 insertions, 7 deletions
diff --git a/libaxl_connect_without_handshake.c b/libaxl_connect_without_handshake.c
index e05dd66..5a4d1d8 100644
--- a/libaxl_connect_without_handshake.c
+++ b/libaxl_connect_without_handshake.c
@@ -52,21 +52,51 @@ connect_unix(const char *path)
return fd;
}
+static int
+connect_unix_abstract(const char *path, size_t len)
+{
+ struct sockaddr_un addr;
+ int fd;
+
+ fd = socket(PF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0);
+ if (fd < 0) {
+ liberror_save_backtrace(NULL);
+ liberror_set_error_errno(strerror(errno), "socket", errno);
+ return -1;
+ }
+
+ addr.sun_family = AF_LOCAL;
+ memcpy(addr.sun_path, path, len);
+ if (connect(fd, (void *)&addr, (socklen_t)len)) {
+ liberror_save_backtrace(NULL);
+ liberror_set_error_errno(strerror(errno), "connect", errno);
+ return -1;
+ }
+
+ return fd;
+}
+
LIBAXL_CONNECTION *
libaxl_connect_without_handshake(const char *host, const char *protocol, int display, int screen)
{
LIBAXL_CONNECTION *conn;
- char path[sizeof("/tmp/.X11-unix/X-") + 3 * sizeof(int)];
- int fd;
+ char path[sizeof("@/tmp/.X11-unix/X-") + 3 * sizeof(int)];
+ int fd, len;
if ((!protocol || !*protocol) && (!host || !*host)) {
- sprintf(path, "/tmp/.X11-unix/X%i", display);
- fd = connect_unix(path);
- /* TODO also try abstract address version with a NUL byte before it (truncate address to remove tailing NULs) */
+ len = sprintf(path, "%c/tmp/.X11-unix/X%i", 0, display);
+ fd = connect_unix(&path[1]);
if (fd < 0) {
- fd = connect_tcp_ip("localhost", display);
- if (fd >= 0)
+ fd = connect_unix_abstract(path, (size_t)len);
+ if (fd >= 0) {
liberror_pop_error();
+ } else {
+ fd = connect_tcp_ip("localhost", display);
+ if (fd >= 0) {
+ liberror_pop_error();
+ liberror_pop_error();
+ }
+ }
}
} else if (!protocol || !*protocol ||