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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
|
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "test/syscalls/linux/socket_unix_non_stream.h"
#include <stdio.h>
#include <sys/mman.h>
#include <sys/un.h>
#include "gtest/gtest.h"
#include "test/syscalls/linux/socket_test_util.h"
#include "test/syscalls/linux/unix_domain_socket_test_util.h"
#include "test/util/memory_util.h"
#include "test/util/test_util.h"
namespace gvisor {
namespace testing {
TEST_P(UnixNonStreamSocketPairTest, RecvMsgTooLarge) {
auto sockets = ASSERT_NO_ERRNO_AND_VALUE(NewSocketPair());
int rcvbuf;
socklen_t length = sizeof(rcvbuf);
ASSERT_THAT(
getsockopt(sockets->first_fd(), SOL_SOCKET, SO_RCVBUF, &rcvbuf, &length),
SyscallSucceeds());
// Make the call larger than the receive buffer.
const int recv_size = 3 * rcvbuf;
// Write a message that does fit in the receive buffer.
const int write_size = rcvbuf - kPageSize;
std::vector<char> write_buf(write_size, 'a');
const int ret = RetryEINTR(write)(sockets->second_fd(), write_buf.data(),
write_buf.size());
if (ret < 0 && errno == ENOBUFS) {
// NOTE(b/116636318): Linux may stall the write for a long time and
// ultimately return ENOBUFS. Allow this error, since a retry will likely
// result in the same error.
return;
}
ASSERT_THAT(ret, SyscallSucceeds());
std::vector<char> recv_buf(recv_size);
ASSERT_NO_FATAL_FAILURE(RecvNoCmsg(sockets->first_fd(), recv_buf.data(),
recv_buf.size(), write_size));
recv_buf.resize(write_size);
EXPECT_EQ(recv_buf, write_buf);
}
// Create a region of anonymous memory of size 'size', which is fragmented in
// FileMem.
//
// ptr contains the start address of the region. The returned vector contains
// all of the mappings to be unmapped when done.
PosixErrorOr<std::vector<Mapping>> CreateFragmentedRegion(const int size,
void** ptr) {
Mapping region;
ASSIGN_OR_RETURN_ERRNO(region, Mmap(nullptr, size, PROT_NONE,
MAP_ANONYMOUS | MAP_PRIVATE, -1, 0));
*ptr = region.ptr();
// Don't save hundreds of times for all of these mmaps.
DisableSave ds;
std::vector<Mapping> pages;
// Map and commit a single page at a time, mapping and committing an unrelated
// page between each call to force FileMem fragmentation.
for (uintptr_t addr = region.addr(); addr < region.endaddr();
addr += kPageSize) {
Mapping page;
ASSIGN_OR_RETURN_ERRNO(
page,
Mmap(reinterpret_cast<void*>(addr), kPageSize, PROT_READ | PROT_WRITE,
MAP_ANONYMOUS | MAP_PRIVATE | MAP_FIXED, -1, 0));
*reinterpret_cast<volatile char*>(page.ptr()) = 42;
pages.emplace_back(std::move(page));
// Unrelated page elsewhere.
ASSIGN_OR_RETURN_ERRNO(page,
Mmap(nullptr, kPageSize, PROT_READ | PROT_WRITE,
MAP_ANONYMOUS | MAP_PRIVATE, -1, 0));
*reinterpret_cast<volatile char*>(page.ptr()) = 42;
pages.emplace_back(std::move(page));
}
// The mappings above have taken ownership of the region.
region.release();
return std::move(pages);
}
// A contiguous iov that is heavily fragmented in FileMem can still be sent
// successfully. See b/115833655.
TEST_P(UnixNonStreamSocketPairTest, FragmentedSendMsg) {
auto sockets = ASSERT_NO_ERRNO_AND_VALUE(NewSocketPair());
const int buffer_size = UIO_MAXIOV * kPageSize;
// Extra page for message header overhead.
const int sndbuf = buffer_size + kPageSize;
// N.B. setsockopt(SO_SNDBUF) doubles the passed value.
const int set_sndbuf = sndbuf / 2;
EXPECT_THAT(setsockopt(sockets->first_fd(), SOL_SOCKET, SO_SNDBUF,
&set_sndbuf, sizeof(set_sndbuf)),
SyscallSucceeds());
int actual_sndbuf = 0;
socklen_t length = sizeof(actual_sndbuf);
ASSERT_THAT(getsockopt(sockets->first_fd(), SOL_SOCKET, SO_SNDBUF,
&actual_sndbuf, &length),
SyscallSucceeds());
if (actual_sndbuf != sndbuf) {
// Unable to get the sndbuf we want.
//
// N.B. At minimum, the socketpair gofer should provide a socket that is
// already the correct size.
//
// TODO(b/35921550): When internal UDS support SO_SNDBUF, we can assert that
// we always get the right SO_SNDBUF on gVisor.
GTEST_SKIP() << "SO_SNDBUF = " << actual_sndbuf << ", want " << sndbuf;
}
// Create a contiguous region of memory of 2*UIO_MAXIOV*PAGE_SIZE. We'll call
// sendmsg with a single iov, but the goal is to get the sentry to split this
// into > UIO_MAXIOV iovs when calling the kernel.
void* ptr;
std::vector<Mapping> pages =
ASSERT_NO_ERRNO_AND_VALUE(CreateFragmentedRegion(buffer_size, &ptr));
struct iovec iov = {};
iov.iov_base = ptr;
iov.iov_len = buffer_size;
struct msghdr msg = {};
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
// NOTE(b/116636318,b/115833655): Linux has poor behavior in the presence of
// physical memory fragmentation. As a result, this may stall for a long time
// and ultimately return ENOBUFS. Allow this error, since it means that we
// made it to the host kernel and started the sendmsg.
EXPECT_THAT(RetryEINTR(sendmsg)(sockets->first_fd(), &msg, 0),
AnyOf(SyscallSucceedsWithValue(buffer_size),
SyscallFailsWithErrno(ENOBUFS)));
}
// A contiguous iov that is heavily fragmented in FileMem can still be received
// into successfully. Regression test for b/115833655.
TEST_P(UnixNonStreamSocketPairTest, FragmentedRecvMsg) {
auto sockets = ASSERT_NO_ERRNO_AND_VALUE(NewSocketPair());
const int buffer_size = UIO_MAXIOV * kPageSize;
// Extra page for message header overhead.
const int sndbuf = buffer_size + kPageSize;
// N.B. setsockopt(SO_SNDBUF) doubles the passed value.
const int set_sndbuf = sndbuf / 2;
EXPECT_THAT(setsockopt(sockets->first_fd(), SOL_SOCKET, SO_SNDBUF,
&set_sndbuf, sizeof(set_sndbuf)),
SyscallSucceeds());
int actual_sndbuf = 0;
socklen_t length = sizeof(actual_sndbuf);
ASSERT_THAT(getsockopt(sockets->first_fd(), SOL_SOCKET, SO_SNDBUF,
&actual_sndbuf, &length),
SyscallSucceeds());
if (actual_sndbuf != sndbuf) {
// Unable to get the sndbuf we want.
//
// N.B. At minimum, the socketpair gofer should provide a socket that is
// already the correct size.
//
// TODO(b/35921550): When internal UDS support SO_SNDBUF, we can assert that
// we always get the right SO_SNDBUF on gVisor.
GTEST_SKIP() << "SO_SNDBUF = " << actual_sndbuf << ", want " << sndbuf;
}
std::vector<char> write_buf(buffer_size, 'a');
const int ret = RetryEINTR(write)(sockets->first_fd(), write_buf.data(),
write_buf.size());
if (ret < 0 && errno == ENOBUFS) {
// NOTE(b/116636318): Linux may stall the write for a long time and
// ultimately return ENOBUFS. Allow this error, since a retry will likely
// result in the same error.
return;
}
ASSERT_THAT(ret, SyscallSucceeds());
// Create a contiguous region of memory of 2*UIO_MAXIOV*PAGE_SIZE. We'll call
// sendmsg with a single iov, but the goal is to get the sentry to split this
// into > UIO_MAXIOV iovs when calling the kernel.
void* ptr;
std::vector<Mapping> pages =
ASSERT_NO_ERRNO_AND_VALUE(CreateFragmentedRegion(buffer_size, &ptr));
ASSERT_NO_FATAL_FAILURE(RecvNoCmsg(
sockets->second_fd(), reinterpret_cast<char*>(ptr), buffer_size));
EXPECT_EQ(0, memcmp(write_buf.data(), ptr, buffer_size));
}
TEST_P(UnixNonStreamSocketPairTest, SendTimeout) {
auto sockets = ASSERT_NO_ERRNO_AND_VALUE(NewSocketPair());
struct timeval tv {
.tv_sec = 0, .tv_usec = 10
};
EXPECT_THAT(
setsockopt(sockets->first_fd(), SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)),
SyscallSucceeds());
const int buf_size = 5 * kPageSize;
EXPECT_THAT(setsockopt(sockets->first_fd(), SOL_SOCKET, SO_SNDBUF, &buf_size,
sizeof(buf_size)),
SyscallSucceeds());
EXPECT_THAT(setsockopt(sockets->second_fd(), SOL_SOCKET, SO_RCVBUF, &buf_size,
sizeof(buf_size)),
SyscallSucceeds());
// The buffer size should be big enough to avoid many iterations in the next
// loop. Otherwise, this will slow down cooperative_save tests.
std::vector<char> buf(kPageSize);
for (;;) {
int ret;
ASSERT_THAT(
ret = RetryEINTR(send)(sockets->first_fd(), buf.data(), buf.size(), 0),
::testing::AnyOf(SyscallSucceeds(), SyscallFailsWithErrno(EAGAIN)));
if (ret == -1) {
break;
}
}
}
} // namespace testing
} // namespace gvisor
|