1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/*
* Check decoding of msg_name* fields of struct msghdr array argument
* of sendmmsg and recvmmsg syscalls.
*
* Copyright (c) 2016 Dmitry V. Levin <ldv@strace.io>
* Copyright (c) 2016-2024 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include <errno.h>
#include <limits.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/un.h>
#include "msghdr.h"
#define IOV_MAX1 (IOV_MAX + 1)
#ifndef TEST_NAME
# define TEST_NAME "mmsg_name"
#endif
static void
print_msghdr(const struct msghdr *const msg, const int user_msg_namelen)
{
const struct sockaddr_un *const un = msg->msg_name;
const int offsetof_sun_path = offsetof(struct sockaddr_un, sun_path);
printf("{msg_name=");
if (!un)
printf("NULL");
else if (user_msg_namelen < offsetof_sun_path) {
printf("%p", un);
} else {
printf("{sa_family=AF_UNIX");
if (user_msg_namelen > offsetof_sun_path) {
int len = user_msg_namelen < (int) msg->msg_namelen ?
user_msg_namelen : (int) msg->msg_namelen;
len -= offsetof_sun_path;
if (len > (int) sizeof(un->sun_path))
len = sizeof(un->sun_path);
printf(", sun_path=\"%.*s\"", len, un->sun_path);
}
printf("}");
}
printf(", msg_namelen=");
if (user_msg_namelen != (int) msg->msg_namelen) {
printf("%d => ", user_msg_namelen);
}
printf("%d, msg_iov=[{iov_base=\"%c\", iov_len=1}]"
", msg_iovlen=1, msg_controllen=0, msg_flags=0}",
(int) msg->msg_namelen, *(char *) msg->msg_iov[0].iov_base);
}
static void
test_mmsg_name(const int send_fd, const int recv_fd)
{
TAIL_ALLOC_OBJECT_CONST_ARR(struct sockaddr_un, send_addr, IOV_MAX1);
TAIL_ALLOC_OBJECT_CONST_ARR(char, send_buf, IOV_MAX1);
TAIL_ALLOC_OBJECT_CONST_ARR(struct iovec, send_iov, IOV_MAX1);
TAIL_ALLOC_OBJECT_CONST_ARR(struct mmsghdr, send_mh, IOV_MAX1);
int rc;
for (int i = 0; i < IOV_MAX1; ++i) {
int sun_len = i + 1 > (int) sizeof(send_addr[i].sun_path)
? (int) sizeof(send_addr[i].sun_path)
: i + 1;
send_addr[i].sun_family = AF_UNIX;
memset(send_addr[i].sun_path, 'a' + i % 26, sun_len);
send_buf[i] = '0' + i % 10;
send_iov[i].iov_base = &send_buf[i];
send_iov[i].iov_len = sizeof(*send_buf);
send_mh[i].msg_hdr.msg_iov = &send_iov[i];
send_mh[i].msg_hdr.msg_iovlen = 1;
send_mh[i].msg_hdr.msg_name = &send_addr[i];
send_mh[i].msg_hdr.msg_namelen = i + 1;
send_mh[i].msg_hdr.msg_control = 0;
send_mh[i].msg_hdr.msg_controllen = 0;
send_mh[i].msg_hdr.msg_flags = 0;
}
rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
int saved_errno = errno;
printf("sendmmsg(%d, [", send_fd);
for (int i = 0; i < IOV_MAX1; ++i) {
if (i)
printf(", ");
if (i >= IOV_MAX
#if !VERBOSE
|| i >= DEFAULT_STRLEN
#endif
) {
printf("...");
break;
}
printf("{msg_hdr=");
print_msghdr(&send_mh[i].msg_hdr, i + 1);
printf("}");
}
errno = saved_errno;
printf("], %u, MSG_DONTWAIT) = %s\n",
IOV_MAX1, sprintrc(rc));
for (int i = 0; i < IOV_MAX1; ++i) {
send_mh[i].msg_hdr.msg_name = 0;
send_mh[i].msg_hdr.msg_namelen = 0;
}
/*
* When recvmmsg is called with a valid descriptor
* but inaccessible memory, it causes segfaults on some architectures.
* As in these cases we test decoding of failed recvmmsg calls,
* it's ok to fail recvmmsg with any reason as long as
* it doesn't read that inaccessible memory.
*/
rc = send_mmsg(-1, &send_mh[IOV_MAX], 2, MSG_DONTWAIT);
saved_errno = errno;
printf("sendmmsg(-1, [{msg_hdr=");
print_msghdr(&send_mh[IOV_MAX].msg_hdr, 0);
errno = saved_errno;
printf("}, ... /* %p */], %u, MSG_DONTWAIT) = %s\n",
&send_mh[IOV_MAX1], 2, sprintrc(rc));
rc = send_mmsg(send_fd, send_mh, IOV_MAX1, MSG_DONTWAIT);
if (rc < 0)
perror_msg_and_skip("sendmmsg");
printf("sendmmsg(%d, [", send_fd);
for (int i = 0; i < IOV_MAX1; ++i) {
if (i)
printf(", ");
if (i >= IOV_MAX
#if !VERBOSE
|| i >= DEFAULT_STRLEN
#endif
) {
printf("...");
break;
}
printf("{msg_hdr=");
print_msghdr(&send_mh[i].msg_hdr, 0);
printf("%s}", i < rc ? ", msg_len=1" : "");
}
printf("], %u, MSG_DONTWAIT) = %d\n", IOV_MAX1, rc);
TAIL_ALLOC_OBJECT_CONST_ARR(struct sockaddr_un, recv_addr, IOV_MAX1);
TAIL_ALLOC_OBJECT_CONST_ARR(char, recv_buf, IOV_MAX1);
TAIL_ALLOC_OBJECT_CONST_ARR(struct iovec, recv_iov, IOV_MAX1);
TAIL_ALLOC_OBJECT_CONST_ARR(struct mmsghdr, recv_mh, IOV_MAX1);
for (int i = 0; i < IOV_MAX1; ++i) {
recv_iov[i].iov_base = &recv_buf[i];
recv_iov[i].iov_len = sizeof(*recv_buf);
recv_mh[i].msg_hdr.msg_name = &recv_addr[i];
recv_mh[i].msg_hdr.msg_namelen = i;
recv_mh[i].msg_hdr.msg_iov = &recv_iov[i];
recv_mh[i].msg_hdr.msg_iovlen = 1;
recv_mh[i].msg_hdr.msg_control = 0;
recv_mh[i].msg_hdr.msg_controllen = 0;
recv_mh[i].msg_hdr.msg_flags = 0;
}
rc = recv_mmsg(recv_fd, recv_mh, IOV_MAX1, MSG_DONTWAIT, 0);
if (rc < 0)
perror_msg_and_skip("recvmmsg");
printf("recvmmsg(%d, [", recv_fd);
for (int i = 0; i < rc; ++i) {
if (i)
printf(", ");
#if !VERBOSE
if (i >= DEFAULT_STRLEN) {
printf("...");
break;
}
#endif
printf("{msg_hdr=");
print_msghdr(&recv_mh[i].msg_hdr, i);
printf(", msg_len=1}");
}
printf("], %u, MSG_DONTWAIT, NULL) = %d\n", IOV_MAX1, rc);
}
int
main(void)
{
int fds[2];
if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds))
perror_msg_and_skip("socketpair");
const struct sockaddr_un un = {
.sun_family = AF_UNIX,
.sun_path = TEST_NAME "-recvmmsg.test.send.socket"
};
(void) unlink(un.sun_path);
if (bind(fds[1], (const void *) &un, sizeof(un)))
perror_msg_and_skip("bind");
(void) unlink(un.sun_path);
test_mmsg_name(fds[1], fds[0]);
puts("+++ exited with 0 +++");
return 0;
}
|