1997-02-02 01:50:11 +00:00
|
|
|
/* Return point to next ancillary data entry in message header.
|
2016-01-04 16:05:18 +00:00
|
|
|
Copyright (C) 1997-2016 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
|
|
|
|
<http://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)
|
|
|
|
{
|
|
|
|
if ((size_t) cmsg->cmsg_len < sizeof (struct cmsghdr))
|
|
|
|
/* The kernel header does this so there may be a reason. */
|
|
|
|
return NULL;
|
|
|
|
|
1998-11-18 14:46:49 +00:00
|
|
|
cmsg = (struct cmsghdr *) ((unsigned char *) cmsg
|
|
|
|
+ CMSG_ALIGN (cmsg->cmsg_len));
|
2001-07-31 20:32:01 +00:00
|
|
|
if ((unsigned char *) (cmsg + 1) > ((unsigned char *) mhdr->msg_control
|
|
|
|
+ mhdr->msg_controllen)
|
1998-11-18 14:46:49 +00:00
|
|
|
|| ((unsigned char *) cmsg + CMSG_ALIGN (cmsg->cmsg_len)
|
2001-03-16 01:10:29 +00:00
|
|
|
> ((unsigned char *) mhdr->msg_control + mhdr->msg_controllen)))
|
1997-02-02 01:50:11 +00:00
|
|
|
/* No more entries. */
|
|
|
|
return NULL;
|
1998-11-18 14:46:49 +00:00
|
|
|
return cmsg;
|
1997-02-02 01:50:11 +00:00
|
|
|
}
|