created | 2018-12-03T18:07:08Z |
---|---|
begin | 2018-11-21T00:00:00Z |
end | 2018-11-22T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2018-11-21T16:14:43Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/kern/vfs_bio.c | log | diff | annotate |
message |
free(9) sizes for bread_cluser(). ok mikeb@, visa@ |
date | 2018-11-21T16:50:49Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/uipc_socket.c | log | diff | annotate |
src/sys/kern/uipc_usrreq.c | log | diff | annotate | |
message |
When using MSG_PEEK to peak into packets skip control messages holding SCM_RIGHTS from being sent to the userland since they hold kernel internal data and it does not make sense to externalize it. OK deraadt@, guenther@, visa@ |
date | 2018-11-21T17:07:07Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/uipc_usrreq.c | log | diff | annotate |
message |
In unp_internalize() check the length more carefully preventing an underflow in a later calcuation. Using the same CMSG_LEN(0) check that other cmsghdr handlers implemented. Probelm found by anton@ OK anton@, deraadt@, visa@ |