1 //
2 //
3 // Copyright 2016 gRPC authors.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 //
18
19 #include <grpc/support/port_platform.h>
20
21 #include "src/core/lib/iomgr/port.h"
22
23 #ifdef GRPC_POSIX_SOCKET_TCP
24
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <string.h>
28 #include <sys/socket.h>
29 #include <sys/types.h>
30
31 #include <string>
32
33 #include "absl/strings/str_cat.h"
34
35 #include <grpc/support/alloc.h>
36 #include <grpc/support/log.h>
37
38 #include "src/core/lib/event_engine/channel_args_endpoint_config.h"
39 #include "src/core/lib/gpr/string.h"
40 #include "src/core/lib/gprpp/crash.h"
41 #include "src/core/lib/iomgr/endpoint_pair.h"
42 #include "src/core/lib/iomgr/socket_utils_posix.h"
43 #include "src/core/lib/iomgr/tcp_posix.h"
44 #include "src/core/lib/iomgr/unix_sockets_posix.h"
45 #include "src/core/lib/resource_quota/api.h"
46
create_sockets(int sv[2])47 static void create_sockets(int sv[2]) {
48 int flags;
49 grpc_create_socketpair_if_unix(sv);
50 flags = fcntl(sv[0], F_GETFL, 0);
51 GPR_ASSERT(fcntl(sv[0], F_SETFL, flags | O_NONBLOCK) == 0);
52 flags = fcntl(sv[1], F_GETFL, 0);
53 GPR_ASSERT(fcntl(sv[1], F_SETFL, flags | O_NONBLOCK) == 0);
54 GPR_ASSERT(grpc_set_socket_no_sigpipe_if_possible(sv[0]) == absl::OkStatus());
55 GPR_ASSERT(grpc_set_socket_no_sigpipe_if_possible(sv[1]) == absl::OkStatus());
56 }
57
grpc_iomgr_create_endpoint_pair(const char * name,const grpc_channel_args * args)58 grpc_endpoint_pair grpc_iomgr_create_endpoint_pair(
59 const char* name, const grpc_channel_args* args) {
60 int sv[2];
61 grpc_endpoint_pair p;
62 create_sockets(sv);
63 grpc_core::ExecCtx exec_ctx;
64 std::string final_name = absl::StrCat(name, ":client");
65 auto new_args = grpc_core::CoreConfiguration::Get()
66 .channel_args_preconditioning()
67 .PreconditionChannelArgs(args);
68 p.client = grpc_tcp_create(
69 grpc_fd_create(sv[1], final_name.c_str(), false),
70 TcpOptionsFromEndpointConfig(
71 grpc_event_engine::experimental::ChannelArgsEndpointConfig(new_args)),
72 "socketpair-server");
73 final_name = absl::StrCat(name, ":server");
74 p.server = grpc_tcp_create(
75 grpc_fd_create(sv[0], final_name.c_str(), false),
76 TcpOptionsFromEndpointConfig(
77 grpc_event_engine::experimental::ChannelArgsEndpointConfig(new_args)),
78 "socketpair-client");
79 return p;
80 }
81
82 #endif
83