mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 14:11:02 +00:00
Merge 149e52f2c5
into 1cc1536e6a
This commit is contained in:
commit
68f39e8d7e
@ -1215,6 +1215,22 @@ lwip_recvfrom_udp_raw(struct lwip_sock *sock, int flags, struct msghdr *msg, u16
|
|||||||
msg->msg_flags |= MSG_CTRUNC;
|
msg->msg_flags |= MSG_CTRUNC;
|
||||||
}
|
}
|
||||||
#endif /* LWIP_IPV4 */
|
#endif /* LWIP_IPV4 */
|
||||||
|
} else if (IP_IS_V6(&buf->toaddr)) {
|
||||||
|
#if LWIP_IPV6
|
||||||
|
if (msg->msg_controllen >= CMSG_SPACE(sizeof(struct in6_pktinfo))) {
|
||||||
|
struct cmsghdr *chdr = CMSG_FIRSTHDR(msg); /* This will always return a header!! */
|
||||||
|
struct in6_pktinfo *pkti = (struct in6_pktinfo *)CMSG_DATA(chdr);
|
||||||
|
chdr->cmsg_level = IPPROTO_IPV6;
|
||||||
|
chdr->cmsg_type = IPV6_PKTINFO;
|
||||||
|
chdr->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo));
|
||||||
|
pkti->ipi6_ifindex = buf->p->if_idx;
|
||||||
|
inet6_addr_from_ip6addr(&pkti->ipi6_addr, ip_2_ip6(netbuf_destaddr(buf)));
|
||||||
|
msg->msg_controllen = CMSG_SPACE(sizeof(struct in6_pktinfo));
|
||||||
|
wrote_msg = 1;
|
||||||
|
} else {
|
||||||
|
msg->msg_flags |= MSG_CTRUNC;
|
||||||
|
}
|
||||||
|
#endif /* LWIP_IPV6 */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* LWIP_NETBUF_RECVINFO */
|
#endif /* LWIP_NETBUF_RECVINFO */
|
||||||
@ -3711,6 +3727,16 @@ lwip_setsockopt_impl(int s, int level, int optname, const void *optval, socklen_
|
|||||||
LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_IPV6, IPV6_V6ONLY, ..) -> %d\n",
|
LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_IPV6, IPV6_V6ONLY, ..) -> %d\n",
|
||||||
s, (netconn_get_ipv6only(sock->conn) ? 1 : 0)));
|
s, (netconn_get_ipv6only(sock->conn) ? 1 : 0)));
|
||||||
break;
|
break;
|
||||||
|
#if LWIP_NETBUF_RECVINFO
|
||||||
|
case IPV6_RECVPKTINFO:
|
||||||
|
LWIP_SOCKOPT_CHECK_OPTLEN_CONN_PCB_TYPE(sock, optlen, int, NETCONN_UDP);
|
||||||
|
if (*(const int *)optval) {
|
||||||
|
sock->conn->flags |= NETCONN_FLAG_PKTINFO;
|
||||||
|
} else {
|
||||||
|
sock->conn->flags &= ~NETCONN_FLAG_PKTINFO;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
#endif /* LWIP_NETBUF_RECVINFO */
|
||||||
#if LWIP_IPV6_MLD
|
#if LWIP_IPV6_MLD
|
||||||
case IPV6_JOIN_GROUP:
|
case IPV6_JOIN_GROUP:
|
||||||
case IPV6_LEAVE_GROUP: {
|
case IPV6_LEAVE_GROUP: {
|
||||||
|
@ -298,6 +298,8 @@ struct linger {
|
|||||||
*/
|
*/
|
||||||
#define IPV6_CHECKSUM 7 /* RFC3542: calculate and insert the ICMPv6 checksum for raw sockets. */
|
#define IPV6_CHECKSUM 7 /* RFC3542: calculate and insert the ICMPv6 checksum for raw sockets. */
|
||||||
#define IPV6_V6ONLY 27 /* RFC3493: boolean control to restrict AF_INET6 sockets to IPv6 communications only. */
|
#define IPV6_V6ONLY 27 /* RFC3493: boolean control to restrict AF_INET6 sockets to IPv6 communications only. */
|
||||||
|
#define IPV6_RECVPKTINFO 49 /* RFC3542: enables the receiving of ancillary data via setsockopt() */
|
||||||
|
#define IPV6_PKTINFO 50 /* RFC3542: ancillary data in recvmsg() received */
|
||||||
#endif /* LWIP_IPV6 */
|
#endif /* LWIP_IPV6 */
|
||||||
|
|
||||||
#if LWIP_UDP && LWIP_UDPLITE
|
#if LWIP_UDP && LWIP_UDPLITE
|
||||||
@ -338,6 +340,13 @@ struct in_pktinfo {
|
|||||||
};
|
};
|
||||||
#endif /* LWIP_IPV4 */
|
#endif /* LWIP_IPV4 */
|
||||||
|
|
||||||
|
#if LWIP_IPV6
|
||||||
|
struct in6_pktinfo {
|
||||||
|
unsigned int ipi6_ifindex; /* Interface index */
|
||||||
|
struct in6_addr ipi6_addr; /* Destination (from header) address */
|
||||||
|
};
|
||||||
|
#endif /* LWIP_IPV6 */
|
||||||
|
|
||||||
#if LWIP_IPV6_MLD
|
#if LWIP_IPV6_MLD
|
||||||
/*
|
/*
|
||||||
* Options and types related to IPv6 multicast membership
|
* Options and types related to IPv6 multicast membership
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "lwip/priv/tcp_priv.h"
|
#include "lwip/priv/tcp_priv.h"
|
||||||
#include "lwip/api.h"
|
#include "lwip/api.h"
|
||||||
|
|
||||||
|
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
|
||||||
|
|
||||||
static int
|
static int
|
||||||
test_sockets_get_used_count(void)
|
test_sockets_get_used_count(void)
|
||||||
@ -544,7 +545,6 @@ static void test_sockets_msgapi_udp(int domain)
|
|||||||
fail_unless(ret == 0);
|
fail_unless(ret == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if LWIP_IPV4
|
|
||||||
static void test_sockets_msgapi_cmsg(int domain)
|
static void test_sockets_msgapi_cmsg(int domain)
|
||||||
{
|
{
|
||||||
int s, ret, enable;
|
int s, ret, enable;
|
||||||
@ -553,10 +553,10 @@ static void test_sockets_msgapi_cmsg(int domain)
|
|||||||
struct iovec iov;
|
struct iovec iov;
|
||||||
struct msghdr msg;
|
struct msghdr msg;
|
||||||
struct cmsghdr *cmsg;
|
struct cmsghdr *cmsg;
|
||||||
struct in_pktinfo *pktinfo;
|
|
||||||
u8_t rcv_buf[4];
|
u8_t rcv_buf[4];
|
||||||
u8_t snd_buf[4] = {0xDE, 0xAD, 0xBE, 0xEF};
|
u8_t snd_buf[4] = {0xDE, 0xAD, 0xBE, 0xEF};
|
||||||
u8_t cmsg_buf[CMSG_SPACE(sizeof(struct in_pktinfo))];
|
u8_t cmsg_buf[CMSG_SPACE(MAX(sizeof(struct in_pktinfo),
|
||||||
|
sizeof(struct in6_pktinfo)))];
|
||||||
|
|
||||||
test_sockets_init_loopback_addr(domain, &addr_storage, &addr_size);
|
test_sockets_init_loopback_addr(domain, &addr_storage, &addr_size);
|
||||||
|
|
||||||
@ -571,7 +571,15 @@ static void test_sockets_msgapi_cmsg(int domain)
|
|||||||
fail_unless(ret == 0);
|
fail_unless(ret == 0);
|
||||||
|
|
||||||
enable = 1;
|
enable = 1;
|
||||||
|
if (domain == AF_INET) {
|
||||||
|
#if LWIP_IPV4
|
||||||
ret = lwip_setsockopt(s, IPPROTO_IP, IP_PKTINFO, &enable, sizeof(enable));
|
ret = lwip_setsockopt(s, IPPROTO_IP, IP_PKTINFO, &enable, sizeof(enable));
|
||||||
|
#endif
|
||||||
|
} else {
|
||||||
|
#if LWIP_IPV6
|
||||||
|
ret = lwip_setsockopt(s, IPPROTO_IPV6, IPV6_RECVPKTINFO, &enable, sizeof(enable));
|
||||||
|
#endif
|
||||||
|
}
|
||||||
fail_unless(ret == 0);
|
fail_unless(ret == 0);
|
||||||
|
|
||||||
/* Receive full message, including control message */
|
/* Receive full message, including control message */
|
||||||
@ -599,6 +607,10 @@ static void test_sockets_msgapi_cmsg(int domain)
|
|||||||
cmsg = CMSG_FIRSTHDR(&msg);
|
cmsg = CMSG_FIRSTHDR(&msg);
|
||||||
fail_unless(cmsg != NULL);
|
fail_unless(cmsg != NULL);
|
||||||
fail_unless(cmsg->cmsg_len > 0);
|
fail_unless(cmsg->cmsg_len > 0);
|
||||||
|
|
||||||
|
if (domain == AF_INET) {
|
||||||
|
struct in_pktinfo *pktinfo;
|
||||||
|
|
||||||
fail_unless(cmsg->cmsg_level == IPPROTO_IP);
|
fail_unless(cmsg->cmsg_level == IPPROTO_IP);
|
||||||
fail_unless(cmsg->cmsg_type == IP_PKTINFO);
|
fail_unless(cmsg->cmsg_type == IP_PKTINFO);
|
||||||
|
|
||||||
@ -607,6 +619,19 @@ static void test_sockets_msgapi_cmsg(int domain)
|
|||||||
/* We only have loopback interface enabled */
|
/* We only have loopback interface enabled */
|
||||||
fail_unless(pktinfo->ipi_ifindex == 1);
|
fail_unless(pktinfo->ipi_ifindex == 1);
|
||||||
fail_unless(pktinfo->ipi_addr.s_addr == PP_HTONL(INADDR_LOOPBACK));
|
fail_unless(pktinfo->ipi_addr.s_addr == PP_HTONL(INADDR_LOOPBACK));
|
||||||
|
} else {
|
||||||
|
struct in6_pktinfo *pktinfo;
|
||||||
|
struct in6_addr lo6 = IN6ADDR_LOOPBACK_INIT;
|
||||||
|
|
||||||
|
fail_unless(cmsg->cmsg_level == IPPROTO_IPV6);
|
||||||
|
fail_unless(cmsg->cmsg_type == IPV6_PKTINFO);
|
||||||
|
|
||||||
|
/* Verify message data */
|
||||||
|
pktinfo = (struct in6_pktinfo*)CMSG_DATA(cmsg);
|
||||||
|
/* We only have loopback interface enabled */
|
||||||
|
fail_unless(pktinfo->ipi6_ifindex == 1);
|
||||||
|
fail_unless(!memcmp(&pktinfo->ipi6_addr, &lo6, sizeof(pktinfo->ipi6_addr)));
|
||||||
|
}
|
||||||
|
|
||||||
/* Verify there are no additional messages */
|
/* Verify there are no additional messages */
|
||||||
cmsg = CMSG_NXTHDR(&msg, cmsg);
|
cmsg = CMSG_NXTHDR(&msg, cmsg);
|
||||||
@ -632,7 +657,6 @@ static void test_sockets_msgapi_cmsg(int domain)
|
|||||||
ret = lwip_close(s);
|
ret = lwip_close(s);
|
||||||
fail_unless(ret == 0);
|
fail_unless(ret == 0);
|
||||||
}
|
}
|
||||||
#endif /* LWIP_IPV4 */
|
|
||||||
|
|
||||||
START_TEST(test_sockets_msgapis)
|
START_TEST(test_sockets_msgapis)
|
||||||
{
|
{
|
||||||
@ -645,6 +669,7 @@ START_TEST(test_sockets_msgapis)
|
|||||||
#if LWIP_IPV6
|
#if LWIP_IPV6
|
||||||
test_sockets_msgapi_udp(AF_INET6);
|
test_sockets_msgapi_udp(AF_INET6);
|
||||||
test_sockets_msgapi_tcp(AF_INET6);
|
test_sockets_msgapi_tcp(AF_INET6);
|
||||||
|
test_sockets_msgapi_cmsg(AF_INET6);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
END_TEST
|
END_TEST
|
||||||
|
Loading…
Reference in New Issue
Block a user