mirror of https://github.com/openresty/openresty
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.8 KiB
C
89 lines
2.8 KiB
C
diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c
|
|
index 33682532..b7b83225 100644
|
|
--- a/src/core/ngx_connection.c
|
|
+++ b/src/core/ngx_connection.c
|
|
@@ -625,7 +625,12 @@ ngx_open_listening_sockets(ngx_cycle_t *cycle)
|
|
|
|
#if (NGX_HAVE_UNIX_DOMAIN)
|
|
|
|
- if (ls[i].sockaddr->sa_family == AF_UNIX) {
|
|
+ if (ls[i].sockaddr->sa_family == AF_UNIX
|
|
+#if (NGX_LINUX)
|
|
+ && ls[i].addr_text.data[sizeof("unix:") - 1] != '@'
|
|
+#endif
|
|
+ )
|
|
+ {
|
|
mode_t mode;
|
|
u_char *name;
|
|
|
|
@@ -1069,6 +1074,9 @@ ngx_close_listening_sockets(ngx_cycle_t *cycle)
|
|
#if (NGX_HAVE_UNIX_DOMAIN)
|
|
|
|
if (ls[i].sockaddr->sa_family == AF_UNIX
|
|
+#if (NGX_LINUX)
|
|
+ && ls[i].addr_text.data[sizeof("unix:") - 1] != '@'
|
|
+#endif
|
|
&& ngx_process <= NGX_PROCESS_MASTER
|
|
&& ngx_new_binary == 0)
|
|
{
|
|
diff --git a/src/core/ngx_cycle.c b/src/core/ngx_cycle.c
|
|
index 95f4bdfa..94f243d2 100644
|
|
--- a/src/core/ngx_cycle.c
|
|
+++ b/src/core/ngx_cycle.c
|
|
@@ -709,7 +709,12 @@ old_shm_zone_done:
|
|
|
|
#if (NGX_HAVE_UNIX_DOMAIN)
|
|
|
|
- if (ls[i].sockaddr->sa_family == AF_UNIX) {
|
|
+ if (ls[i].sockaddr->sa_family == AF_UNIX
|
|
+#if (NGX_LINUX)
|
|
+ && ls[i].addr_text.data[sizeof("unix:") - 1] != '@'
|
|
+#endif
|
|
+ )
|
|
+ {
|
|
u_char *name;
|
|
|
|
name = ls[i].addr_text.data + sizeof("unix:") - 1;
|
|
diff --git a/src/core/ngx_inet.c b/src/core/ngx_inet.c
|
|
index 4228504a..2d0bd68f 100644
|
|
--- a/src/core/ngx_inet.c
|
|
+++ b/src/core/ngx_inet.c
|
|
@@ -244,6 +244,9 @@ ngx_sock_ntop(struct sockaddr *sa, socklen_t socklen, u_char *text, size_t len,
|
|
if (socklen <= (socklen_t) offsetof(struct sockaddr_un, sun_path)) {
|
|
p = ngx_snprintf(text, len, "unix:%Z");
|
|
|
|
+ } else if (saun->sun_path[0] == '\0') {
|
|
+ p = ngx_snprintf(text, len, "unix:@%s%Z", &saun->sun_path[1]);
|
|
+
|
|
} else {
|
|
n = ngx_strnlen((u_char *) saun->sun_path,
|
|
socklen - offsetof(struct sockaddr_un, sun_path));
|
|
@@ -746,6 +749,13 @@ ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u)
|
|
saun->sun_family = AF_UNIX;
|
|
(void) ngx_cpystrn((u_char *) saun->sun_path, path, len);
|
|
|
|
+#if (NGX_LINUX)
|
|
+ if (path[0] == '@') {
|
|
+ saun->sun_path[0] = '\0';
|
|
+ u->socklen = sizeof(sa_family_t) + len - 1;
|
|
+ }
|
|
+#endif
|
|
+
|
|
u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
|
|
if (u->addrs == NULL) {
|
|
return NGX_ERROR;
|
|
@@ -767,6 +777,13 @@ ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u)
|
|
u->addrs[0].name.len = len + 4;
|
|
u->addrs[0].name.data = u->url.data;
|
|
|
|
+#if (NGX_LINUX)
|
|
+ if (path[0] == '@') {
|
|
+ saun->sun_path[0] = '\0';
|
|
+ u->addrs[0].socklen = sizeof(sa_family_t) + len - 1;
|
|
+ }
|
|
+#endif
|
|
+
|
|
return NGX_OK;
|
|
|
|
#else
|