X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fxcb_util.c;h=d8a36f170c1a71fee1d622b8397811069756e791;hb=7131d5d0706f2b63caad13c815e893627872114c;hp=223dcafff5f71fc42add6e1b429df069f61ab04d;hpb=70976d87f18d15c2ccc28eb7728e4822d3849e0d;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcb_util.c b/src/xcb_util.c index 223dcaf..d8a36f1 100644 --- a/src/xcb_util.c +++ b/src/xcb_util.c @@ -54,6 +54,12 @@ #include "xcbext.h" #include "xcbint.h" +/* must be after "xcbint.h" to get autoconf #defines */ +#if defined(HAVE_TSOL_LABEL_H) && defined(HAVE_IS_SYSTEM_LABELED) +# include +# include +#endif + int xcb_popcount(uint32_t mask) { uint32_t y; @@ -204,6 +210,21 @@ static int _xcb_open(const char *host, char *protocol, const int display) } #ifndef _WIN32 +#if defined(HAVE_TSOL_LABEL_H) && defined(HAVE_IS_SYSTEM_LABELED) + /* Check special path for Unix sockets under Solaris Trusted Extensions */ + if (is_system_labeled()) + { + struct stat sbuf; + const char *tsol_base = "/var/tsol/doors/.X11-unix/X"; + char tsol_socket[PATH_MAX]; + + snprintf(tsol_socket, sizeof(tsol_socket), "%s%d", tsol_base, display); + + if (stat(tsol_socket, &sbuf) == 0) + base = tsol_base; + } +#endif + filelen = strlen(base) + 1 + sizeof(display) * 3 + 1; file = malloc(filelen); if(file == NULL)