* fhandler_socket.cc (fhandler_socket::bind): Fix length check of

AF_LOCAL filename so it never accesses memory beyond namelen.  Also
	make sure filename is NUL-terminated.
This commit is contained in:
Corinna Vinschen 2013-02-04 12:04:20 +00:00
parent db7922e5bc
commit 188fc1cf6e
2 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2013-02-04 Corinna Vinschen <corinna@vinschen.de>
* fhandler_socket.cc (fhandler_socket::bind): Fix length check of
AF_LOCAL filename so it never accesses memory beyond namelen. Also
make sure filename is NUL-terminated.
2013-01-31 Christopher Faylor <me.cygwin2013@cgf.cx>
* DevNotes: Add entry cgf-000022.

View File

@ -900,17 +900,19 @@ fhandler_socket::bind (const struct sockaddr *name, int namelen)
{
#define un_addr ((struct sockaddr_un *) name)
struct sockaddr_in sin;
int len = sizeof sin;
int len = namelen - offsetof (struct sockaddr_un, sun_path);
if (strlen (un_addr->sun_path) >= UNIX_PATH_LEN)
/* Check that name is within bounds and NUL-terminated. */
if (len <= 1 || len > UNIX_PATH_LEN
|| !memchr (un_addr->sun_path, '\0', len))
{
set_errno (ENAMETOOLONG);
set_errno (len < 1 ? EINVAL : ENAMETOOLONG);
goto out;
}
sin.sin_family = AF_INET;
sin.sin_port = 0;
sin.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
if (::bind (get_socket (), (sockaddr *) &sin, len))
if (::bind (get_socket (), (sockaddr *) &sin, len = sizeof sin))
{
syscall_printf ("AF_LOCAL: bind failed");
set_winsock_errno ();