1997-02-02 01:50:11 +00:00
|
|
|
/* Return point to next ancillary data entry in message header.
|
2022-01-01 18:54:23 +00:00
|
|
|
Copyright (C) 1997-2022 Free Software Foundation, Inc.
|
1997-02-02 01:50:11 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-02-02 01:50:11 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-02-02 01:50:11 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1997-02-02 01:50:11 +00:00
|
|
|
|
2008-01-16 19:47:17 +00:00
|
|
|
#include <stddef.h>
|
1997-02-02 01:50:11 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct cmsghdr *
|
|
|
|
__cmsg_nxthdr (struct msghdr *mhdr, struct cmsghdr *cmsg)
|
|
|
|
{
|
2022-08-02 09:10:25 +00:00
|
|
|
/* We may safely assume that cmsg lies between mhdr->msg_control and
|
|
|
|
mhdr->msg_controllen because the user is required to obtain the first
|
|
|
|
cmsg via CMSG_FIRSTHDR, set its length, then obtain subsequent cmsgs
|
|
|
|
via CMSG_NXTHDR, setting lengths along the way. However, we don't yet
|
|
|
|
trust the value of cmsg->cmsg_len and therefore do not use it in any
|
|
|
|
pointer arithmetic until we check its value. */
|
|
|
|
|
|
|
|
unsigned char * msg_control_ptr = (unsigned char *) mhdr->msg_control;
|
|
|
|
unsigned char * cmsg_ptr = (unsigned char *) cmsg;
|
|
|
|
|
|
|
|
size_t size_needed = sizeof (struct cmsghdr)
|
|
|
|
+ __CMSG_PADDING (cmsg->cmsg_len);
|
|
|
|
|
|
|
|
/* The current header is malformed, too small to be a full header. */
|
1997-02-02 01:50:11 +00:00
|
|
|
if ((size_t) cmsg->cmsg_len < sizeof (struct cmsghdr))
|
2022-08-02 09:10:25 +00:00
|
|
|
return (struct cmsghdr *) 0;
|
|
|
|
|
|
|
|
/* There isn't enough space between cmsg and the end of the buffer to
|
|
|
|
hold the current cmsg *and* the next one. */
|
|
|
|
if (((size_t)
|
|
|
|
(msg_control_ptr + mhdr->msg_controllen - cmsg_ptr)
|
|
|
|
< size_needed)
|
|
|
|
|| ((size_t)
|
|
|
|
(msg_control_ptr + mhdr->msg_controllen - cmsg_ptr
|
|
|
|
- size_needed)
|
|
|
|
< cmsg->cmsg_len))
|
|
|
|
|
|
|
|
return (struct cmsghdr *) 0;
|
1997-02-02 01:50:11 +00:00
|
|
|
|
2022-08-02 09:10:25 +00:00
|
|
|
/* Now, we trust cmsg_len and can use it to find the next header. */
|
1998-11-18 14:46:49 +00:00
|
|
|
cmsg = (struct cmsghdr *) ((unsigned char *) cmsg
|
|
|
|
+ CMSG_ALIGN (cmsg->cmsg_len));
|
|
|
|
return cmsg;
|
1997-02-02 01:50:11 +00:00
|
|
|
}
|
2018-02-15 20:59:12 +00:00
|
|
|
libc_hidden_def (__cmsg_nxthdr)
|