You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
diff -up openssh-5.3p1/channels.c.bz595935 openssh-5.3p1/channels.c |
|
--- openssh-5.3p1/channels.c.bz595935 2010-08-12 14:19:28.000000000 +0200 |
|
+++ openssh-5.3p1/channels.c 2010-08-12 14:33:51.000000000 +0200 |
|
@@ -3990,21 +3990,24 @@ x11_create_display_inet(int x11_display_ |
|
} |
|
|
|
static int |
|
-connect_local_xsocket_path(const char *pathname) |
|
+connect_local_xsocket_path(const char *pathname, int len) |
|
{ |
|
int sock; |
|
struct sockaddr_un addr; |
|
|
|
+ if (len <= 0) |
|
+ return -1; |
|
sock = socket(AF_UNIX, SOCK_STREAM, 0); |
|
if (sock < 0) |
|
error("socket: %.100s", strerror(errno)); |
|
memset(&addr, 0, sizeof(addr)); |
|
addr.sun_family = AF_UNIX; |
|
- strlcpy(addr.sun_path, pathname, sizeof addr.sun_path); |
|
- if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0) |
|
+ if (len > sizeof addr.sun_path) |
|
+ len = sizeof addr.sun_path; |
|
+ memcpy(addr.sun_path, pathname, len); |
|
+ if (connect(sock, (struct sockaddr *)&addr, sizeof addr - (sizeof addr.sun_path - len) ) == 0) |
|
return sock; |
|
close(sock); |
|
- error("connect %.100s: %.100s", addr.sun_path, strerror(errno)); |
|
return -1; |
|
} |
|
|
|
@@ -3207,8 +3210,18 @@ static int |
|
connect_local_xsocket(u_int dnr) |
|
{ |
|
char buf[1024]; |
|
- snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr); |
|
- return connect_local_xsocket_path(buf); |
|
+ int len, ret; |
|
+ len = snprintf(buf + 1, sizeof (buf) - 1, _PATH_UNIX_X, dnr); |
|
+#ifdef linux |
|
+ /* try abstract socket first */ |
|
+ buf[0] = '\0'; |
|
+ if ((ret = connect_local_xsocket_path(buf, len + 1)) >= 0) |
|
+ return ret; |
|
+#endif |
|
+ if ((ret = connect_local_xsocket_path(buf + 1, len)) >= 0) |
|
+ return ret; |
|
+ error("connect %.100s: %.100s", buf + 1, strerror(errno)); |
|
+ return -1; |
|
} |
|
|
|
int
|
|
|