]> git.kaiwu.me - nginx.git/commit
Fixed buffer overread with unix sockets after accept().
authorMaxim Dounin <mdounin@mdounin.ru>
Wed, 4 Oct 2017 18:19:33 +0000 (21:19 +0300)
committerMaxim Dounin <mdounin@mdounin.ru>
Wed, 4 Oct 2017 18:19:33 +0000 (21:19 +0300)
commit2e1e65a5c0a9f8ba5b7b3ce848176482ba4da654
tree191ea913a3611fd655f310e8aa5abbd6726935d5
parent328bfbe0d4653529362709920c388256c0a027e3
Fixed buffer overread with unix sockets after accept().

Some OSes (notably macOS, NetBSD, and Solaris) allow unix socket addresses
larger than struct sockaddr_un.  Moreover, some of them (macOS, Solaris)
return socklen of the socket address before it was truncated to fit the
buffer provided.  As such, on these systems socklen must not be used without
additional check that it is within the buffer provided.

Appropriate checks added to ngx_event_accept() (after accept()),
ngx_event_recvmsg() (after recvmsg()), and ngx_set_inherited_sockets()
(after getsockname()).

We also obtain socket addresses via getsockname() in
ngx_connection_local_sockaddr(), but it does not need any checks as
it is only used for INET and INET6 sockets (as there can be no
wildcard unix sockets).
src/core/ngx_connection.c
src/event/ngx_event_accept.c