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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
|
// Copyright 2019 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 <arpa/inet.h>
#include <linux/capability.h>
#include <linux/if_arp.h>
#include <linux/if_ether.h>
#include <linux/if_tun.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
#include <poll.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <cstddef>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "absl/strings/ascii.h"
#include "absl/strings/str_split.h"
#include "test/syscalls/linux/socket_netlink_route_util.h"
#include "test/util/capability_util.h"
#include "test/util/file_descriptor.h"
#include "test/util/fs_util.h"
#include "test/util/posix_error.h"
#include "test/util/socket_util.h"
#include "test/util/test_util.h"
namespace gvisor {
namespace testing {
namespace {
constexpr int kIPLen = 4;
constexpr const char kDevNetTun[] = "/dev/net/tun";
constexpr const char kTapName[] = "tap0";
constexpr const char kTunName[] = "tun0";
#define kTapIPAddr htonl(0x0a000001) /* Inet 10.0.0.1 */
#define kTapPeerIPAddr htonl(0x0a000002) /* Inet 10.0.0.2 */
constexpr const uint8_t kMacA[ETH_ALEN] = {0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA};
constexpr const uint8_t kMacB[ETH_ALEN] = {0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB};
PosixErrorOr<std::set<std::string>> DumpLinkNames() {
ASSIGN_OR_RETURN_ERRNO(auto links, DumpLinks());
std::set<std::string> names;
for (const auto& link : links) {
names.emplace(link.name);
}
return names;
}
PosixErrorOr<Link> GetLinkByName(const std::string& name) {
ASSIGN_OR_RETURN_ERRNO(auto links, DumpLinks());
for (const auto& link : links) {
if (link.name == name) {
return link;
}
}
return PosixError(ENOENT, "interface not found");
}
struct pihdr {
uint16_t pi_flags;
uint16_t pi_protocol;
} __attribute__((packed));
struct ping_pkt {
pihdr pi;
struct ethhdr eth;
struct iphdr ip;
struct icmphdr icmp;
char payload[64];
} __attribute__((packed));
ping_pkt CreatePingPacket(const uint8_t srcmac[ETH_ALEN], const in_addr_t srcip,
const uint8_t dstmac[ETH_ALEN],
const in_addr_t dstip) {
ping_pkt pkt = {};
pkt.pi.pi_protocol = htons(ETH_P_IP);
memcpy(pkt.eth.h_dest, dstmac, sizeof(pkt.eth.h_dest));
memcpy(pkt.eth.h_source, srcmac, sizeof(pkt.eth.h_source));
pkt.eth.h_proto = htons(ETH_P_IP);
pkt.ip.ihl = 5;
pkt.ip.version = 4;
pkt.ip.tos = 0;
pkt.ip.tot_len = htons(sizeof(struct iphdr) + sizeof(struct icmphdr) +
sizeof(pkt.payload));
pkt.ip.id = 1;
pkt.ip.frag_off = 1 << 6; // Do not fragment
pkt.ip.ttl = 64;
pkt.ip.protocol = IPPROTO_ICMP;
pkt.ip.daddr = dstip;
pkt.ip.saddr = srcip;
pkt.ip.check = IPChecksum(pkt.ip);
pkt.icmp.type = ICMP_ECHO;
pkt.icmp.code = 0;
pkt.icmp.checksum = 0;
pkt.icmp.un.echo.sequence = 1;
pkt.icmp.un.echo.id = 1;
strncpy(pkt.payload, "abcd", sizeof(pkt.payload));
pkt.icmp.checksum = ICMPChecksum(pkt.icmp, pkt.payload, sizeof(pkt.payload));
return pkt;
}
struct arp_pkt {
pihdr pi;
struct ethhdr eth;
struct arphdr arp;
uint8_t arp_sha[ETH_ALEN];
uint8_t arp_spa[kIPLen];
uint8_t arp_tha[ETH_ALEN];
uint8_t arp_tpa[kIPLen];
} __attribute__((packed));
std::string CreateArpPacket(const uint8_t srcmac[ETH_ALEN],
const in_addr_t srcip,
const uint8_t dstmac[ETH_ALEN],
const in_addr_t dstip) {
std::string buffer;
buffer.resize(sizeof(arp_pkt));
arp_pkt* pkt = reinterpret_cast<arp_pkt*>(&buffer[0]);
{
pkt->pi.pi_protocol = htons(ETH_P_ARP);
memcpy(pkt->eth.h_dest, kMacA, sizeof(pkt->eth.h_dest));
memcpy(pkt->eth.h_source, kMacB, sizeof(pkt->eth.h_source));
pkt->eth.h_proto = htons(ETH_P_ARP);
pkt->arp.ar_hrd = htons(ARPHRD_ETHER);
pkt->arp.ar_pro = htons(ETH_P_IP);
pkt->arp.ar_hln = ETH_ALEN;
pkt->arp.ar_pln = kIPLen;
pkt->arp.ar_op = htons(ARPOP_REPLY);
memcpy(pkt->arp_sha, srcmac, sizeof(pkt->arp_sha));
memcpy(pkt->arp_spa, &srcip, sizeof(pkt->arp_spa));
memcpy(pkt->arp_tha, dstmac, sizeof(pkt->arp_tha));
memcpy(pkt->arp_tpa, &dstip, sizeof(pkt->arp_tpa));
}
return buffer;
}
} // namespace
TEST(TuntapStaticTest, NetTunExists) {
struct stat statbuf;
ASSERT_THAT(stat(kDevNetTun, &statbuf), SyscallSucceeds());
// Check that it's a character device with rw-rw-rw- permissions.
EXPECT_EQ(statbuf.st_mode, S_IFCHR | 0666);
}
class TuntapTest : public ::testing::Test {
protected:
void SetUp() override {
const bool have_net_admin_cap =
ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN));
if (have_net_admin_cap && !IsRunningOnGvisor()) {
// gVisor always creates enabled/up'd interfaces, while Linux does not (as
// observed in b/110961832). Some of the tests require the Linux stack to
// notify the socket of any link-address-resolution failures. Those
// notifications do not seem to show up when the loopback interface in the
// namespace is down.
auto link = ASSERT_NO_ERRNO_AND_VALUE(GetLinkByName("lo"));
ASSERT_NO_ERRNO(LinkChangeFlags(link.index, IFF_UP, IFF_UP));
}
}
};
TEST_F(TuntapTest, CreateInterfaceNoCap) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
AutoCapability cap(CAP_NET_ADMIN, false);
FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(Open(kDevNetTun, O_RDWR));
struct ifreq ifr = {};
ifr.ifr_flags = IFF_TAP;
strncpy(ifr.ifr_name, kTapName, IFNAMSIZ);
EXPECT_THAT(ioctl(fd.get(), TUNSETIFF, &ifr), SyscallFailsWithErrno(EPERM));
}
TEST_F(TuntapTest, CreateFixedNameInterface) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(Open(kDevNetTun, O_RDWR));
struct ifreq ifr_set = {};
ifr_set.ifr_flags = IFF_TAP;
strncpy(ifr_set.ifr_name, kTapName, IFNAMSIZ);
EXPECT_THAT(ioctl(fd.get(), TUNSETIFF, &ifr_set),
SyscallSucceedsWithValue(0));
struct ifreq ifr_get = {};
EXPECT_THAT(ioctl(fd.get(), TUNGETIFF, &ifr_get),
SyscallSucceedsWithValue(0));
struct ifreq ifr_expect = ifr_set;
// See __tun_chr_ioctl() in net/drivers/tun.c.
ifr_expect.ifr_flags |= IFF_NOFILTER;
EXPECT_THAT(DumpLinkNames(),
IsPosixErrorOkAndHolds(::testing::Contains(kTapName)));
EXPECT_THAT(memcmp(&ifr_expect, &ifr_get, sizeof(ifr_get)), ::testing::Eq(0));
}
TEST_F(TuntapTest, CreateInterface) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(Open(kDevNetTun, O_RDWR));
struct ifreq ifr = {};
ifr.ifr_flags = IFF_TAP;
// Empty ifr.ifr_name. Let kernel assign.
EXPECT_THAT(ioctl(fd.get(), TUNSETIFF, &ifr), SyscallSucceedsWithValue(0));
struct ifreq ifr_get = {};
EXPECT_THAT(ioctl(fd.get(), TUNGETIFF, &ifr_get),
SyscallSucceedsWithValue(0));
std::string ifname = ifr_get.ifr_name;
EXPECT_THAT(ifname, ::testing::StartsWith("tap"));
EXPECT_THAT(DumpLinkNames(),
IsPosixErrorOkAndHolds(::testing::Contains(ifname)));
}
TEST_F(TuntapTest, InvalidReadWrite) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(Open(kDevNetTun, O_RDWR));
char buf[128] = {};
EXPECT_THAT(read(fd.get(), buf, sizeof(buf)), SyscallFailsWithErrno(EBADFD));
EXPECT_THAT(write(fd.get(), buf, sizeof(buf)), SyscallFailsWithErrno(EBADFD));
}
TEST_F(TuntapTest, WriteToDownDevice) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
// FIXME(b/110961832): gVisor always creates enabled/up'd interfaces.
SKIP_IF(IsRunningOnGvisor());
FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(Open(kDevNetTun, O_RDWR));
// Device created should be down by default.
struct ifreq ifr = {};
ifr.ifr_flags = IFF_TAP;
EXPECT_THAT(ioctl(fd.get(), TUNSETIFF, &ifr), SyscallSucceedsWithValue(0));
char buf[128] = {};
EXPECT_THAT(write(fd.get(), buf, sizeof(buf)), SyscallFailsWithErrno(EIO));
}
PosixErrorOr<FileDescriptor> OpenAndAttachTap(const std::string& dev_name,
const in_addr_t dev_addr) {
// Interface creation.
ASSIGN_OR_RETURN_ERRNO(FileDescriptor fd, Open(kDevNetTun, O_RDWR));
struct ifreq ifr_set = {};
ifr_set.ifr_flags = IFF_TAP;
strncpy(ifr_set.ifr_name, dev_name.c_str(), IFNAMSIZ);
if (ioctl(fd.get(), TUNSETIFF, &ifr_set) < 0) {
return PosixError(errno);
}
ASSIGN_OR_RETURN_ERRNO(auto link, GetLinkByName(dev_name));
const struct in_addr dev_ipv4_addr = {.s_addr = dev_addr};
// Interface setup.
EXPECT_NO_ERRNO(LinkAddLocalAddr(link.index, AF_INET, /*prefixlen=*/24,
&dev_ipv4_addr, sizeof(dev_ipv4_addr)));
if (!IsRunningOnGvisor()) {
// FIXME(b/110961832): gVisor doesn't support setting MAC address on
// interfaces yet.
RETURN_IF_ERRNO(LinkSetMacAddr(link.index, kMacA, sizeof(kMacA)));
// FIXME(b/110961832): gVisor always creates enabled/up'd interfaces.
RETURN_IF_ERRNO(LinkChangeFlags(link.index, IFF_UP, IFF_UP));
}
return fd;
}
// This test sets up a TAP device and pings kernel by sending ICMP echo request.
//
// It works as the following:
// * Open /dev/net/tun, and create kTapName interface.
// * Use rtnetlink to do initial setup of the interface:
// * Assign IP address 10.0.0.1/24 to kernel.
// * MAC address: kMacA
// * Bring up the interface.
// * Send an ICMP echo reqest (ping) packet from 10.0.0.2 (kMacB) to kernel.
// * Loop to receive packets from TAP device/fd:
// * If packet is an ICMP echo reply, it stops and passes the test.
// * If packet is an ARP request, it responds with canned reply and resends
// the
// ICMP request packet.
TEST_F(TuntapTest, PingKernel) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor fd =
ASSERT_NO_ERRNO_AND_VALUE(OpenAndAttachTap(kTapName, kTapIPAddr));
ping_pkt ping_req =
CreatePingPacket(kMacB, kTapPeerIPAddr, kMacA, kTapIPAddr);
std::string arp_rep =
CreateArpPacket(kMacB, kTapPeerIPAddr, kMacA, kTapIPAddr);
// Send ping, this would trigger an ARP request on Linux.
EXPECT_THAT(write(fd.get(), &ping_req, sizeof(ping_req)),
SyscallSucceedsWithValue(sizeof(ping_req)));
// Receive loop to process inbound packets.
struct inpkt {
union {
pihdr pi;
ping_pkt ping;
arp_pkt arp;
};
};
while (1) {
inpkt r = {};
size_t n;
EXPECT_THAT(n = read(fd.get(), &r, sizeof(r)), SyscallSucceeds());
if (n < sizeof(pihdr)) {
std::cerr << "Ignored packet, protocol: " << r.pi.pi_protocol
<< " len: " << n << std::endl;
continue;
}
// Process ARP packet.
if (n >= sizeof(arp_pkt) && r.pi.pi_protocol == htons(ETH_P_ARP)) {
// Respond with canned ARP reply.
EXPECT_THAT(write(fd.get(), arp_rep.data(), arp_rep.size()),
SyscallSucceedsWithValue(arp_rep.size()));
// First ping request might have been dropped due to mac address not in
// ARP cache. Send it again.
EXPECT_THAT(write(fd.get(), &ping_req, sizeof(ping_req)),
SyscallSucceedsWithValue(sizeof(ping_req)));
}
// Process ping response packet.
if (n >= sizeof(ping_pkt) && r.pi.pi_protocol == ping_req.pi.pi_protocol &&
r.ping.ip.protocol == ping_req.ip.protocol &&
!memcmp(&r.ping.ip.saddr, &ping_req.ip.daddr, kIPLen) &&
!memcmp(&r.ping.ip.daddr, &ping_req.ip.saddr, kIPLen) &&
r.ping.icmp.type == 0 && r.ping.icmp.code == 0) {
// Ends and passes the test.
break;
}
}
}
TEST_F(TuntapTest, SendUdpTriggersArpResolution) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor fd =
ASSERT_NO_ERRNO_AND_VALUE(OpenAndAttachTap(kTapName, kTapIPAddr));
// Send a UDP packet to remote.
int sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
ASSERT_THAT(sock, SyscallSucceeds());
struct sockaddr_in remote = {
.sin_family = AF_INET,
.sin_port = htons(42),
.sin_addr = {.s_addr = kTapPeerIPAddr},
};
ASSERT_THAT(sendto(sock, "hello", 5, 0, AsSockAddr(&remote), sizeof(remote)),
SyscallSucceeds());
struct inpkt {
union {
pihdr pi;
arp_pkt arp;
};
};
while (1) {
inpkt r = {};
size_t n;
EXPECT_THAT(n = read(fd.get(), &r, sizeof(r)), SyscallSucceeds());
if (n < sizeof(pihdr)) {
std::cerr << "Ignored packet, protocol: " << r.pi.pi_protocol
<< " len: " << n << std::endl;
continue;
}
if (n >= sizeof(arp_pkt) && r.pi.pi_protocol == htons(ETH_P_ARP)) {
break;
}
}
}
TEST_F(TuntapTest, TUNNoPacketInfo) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
// Interface creation.
FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(Open(kDevNetTun, O_RDWR));
struct ifreq ifr_set = {};
ifr_set.ifr_flags = IFF_TUN | IFF_NO_PI;
strncpy(ifr_set.ifr_name, kTunName, IFNAMSIZ);
EXPECT_THAT(ioctl(fd.get(), TUNSETIFF, &ifr_set), SyscallSucceeds());
// Interface setup.
auto link = ASSERT_NO_ERRNO_AND_VALUE(GetLinkByName(kTunName));
const struct in_addr dev_ipv4_addr = {.s_addr = kTapIPAddr};
EXPECT_NO_ERRNO(LinkAddLocalAddr(link.index, AF_INET, 24, &dev_ipv4_addr,
sizeof(dev_ipv4_addr)));
ping_pkt ping_req =
CreatePingPacket(kMacB, kTapPeerIPAddr, kMacA, kTapIPAddr);
size_t packet_size = sizeof(ping_req) - offsetof(ping_pkt, ip);
// Send ICMP query
EXPECT_THAT(write(fd.get(), &ping_req.ip, packet_size),
SyscallSucceedsWithValue(packet_size));
// Receive loop to process inbound packets.
while (1) {
ping_pkt ping_resp = {};
EXPECT_THAT(read(fd.get(), &ping_resp.ip, packet_size),
SyscallSucceedsWithValue(packet_size));
// Process ping response packet.
if (!memcmp(&ping_resp.ip.saddr, &ping_req.ip.daddr, kIPLen) &&
!memcmp(&ping_resp.ip.daddr, &ping_req.ip.saddr, kIPLen) &&
ping_resp.icmp.type == 0 && ping_resp.icmp.code == 0) {
// Ends and passes the test.
break;
}
}
}
// TCPBlockingConnectFailsArpResolution tests for TCP connect to fail on link
// address resolution failure to a routable, but non existent peer.
TEST_F(TuntapTest, TCPBlockingConnectFailsArpResolution) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor sender =
ASSERT_NO_ERRNO_AND_VALUE(Socket(AF_INET, SOCK_STREAM, IPPROTO_TCP));
FileDescriptor fd =
ASSERT_NO_ERRNO_AND_VALUE(OpenAndAttachTap(kTapName, kTapIPAddr));
sockaddr_in connect_addr = {
.sin_family = AF_INET,
.sin_addr = {.s_addr = kTapPeerIPAddr},
};
ASSERT_THAT(connect(sender.get(),
reinterpret_cast<const struct sockaddr*>(&connect_addr),
sizeof(connect_addr)),
SyscallFailsWithErrno(EHOSTUNREACH));
}
// TCPNonBlockingConnectFailsArpResolution tests for TCP non-blocking connect to
// to trigger an error event to be notified to poll on link address resolution
// failure to a routable, but non existent peer.
TEST_F(TuntapTest, TCPNonBlockingConnectFailsArpResolution) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor sender = ASSERT_NO_ERRNO_AND_VALUE(
Socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, IPPROTO_TCP));
FileDescriptor fd =
ASSERT_NO_ERRNO_AND_VALUE(OpenAndAttachTap(kTapName, kTapIPAddr));
sockaddr_in connect_addr = {
.sin_family = AF_INET,
.sin_addr = {.s_addr = kTapPeerIPAddr},
};
ASSERT_THAT(connect(sender.get(),
reinterpret_cast<const struct sockaddr*>(&connect_addr),
sizeof(connect_addr)),
SyscallFailsWithErrno(EINPROGRESS));
constexpr int kTimeout = 10000;
struct pollfd pfd = {
.fd = sender.get(),
.events = POLLIN | POLLOUT,
};
ASSERT_THAT(poll(&pfd, 1, kTimeout), SyscallSucceedsWithValue(1));
ASSERT_EQ(pfd.revents, POLLIN | POLLOUT | POLLHUP | POLLERR);
ASSERT_THAT(connect(sender.get(),
reinterpret_cast<const struct sockaddr*>(&connect_addr),
sizeof(connect_addr)),
SyscallFailsWithErrno(EHOSTUNREACH));
}
// Write hang bug found by syskaller: b/155928773
// https://syzkaller.appspot.com/bug?id=065b893bd8d1d04a4e0a1d53c578537cde1efe99
TEST_F(TuntapTest, WriteHangBug155928773) {
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_ADMIN)));
FileDescriptor fd =
ASSERT_NO_ERRNO_AND_VALUE(OpenAndAttachTap(kTapName, kTapIPAddr));
int sock = socket(AF_INET, SOCK_DGRAM, 0);
ASSERT_THAT(sock, SyscallSucceeds());
struct sockaddr_in remote = {
.sin_family = AF_INET,
.sin_port = htons(42),
.sin_addr = {.s_addr = kTapIPAddr},
};
// Return values do not matter in this test.
connect(sock, AsSockAddr(&remote), sizeof(remote));
write(sock, "hello", 5);
}
} // namespace testing
} // namespace gvisor
|