-
Notifications
You must be signed in to change notification settings - Fork 4k
/
socket_map.cpp
395 lines (356 loc) · 13.4 KB
/
socket_map.cpp
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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 <gflags/gflags.h>
#include <map>
#include "bthread/bthread.h"
#include "butil/time.h"
#include "butil/scoped_lock.h"
#include "butil/logging.h"
#include "brpc/log.h"
#include "brpc/protocol.h"
#include "brpc/input_messenger.h"
#include "brpc/reloadable_flags.h"
#include "brpc/socket_map.h"
namespace brpc {
DEFINE_int32(health_check_interval, 3,
"seconds between consecutive health-checkings");
// NOTE: Must be limited to positive to guarantee correctness of SocketMapRemove.
BRPC_VALIDATE_GFLAG(health_check_interval, PositiveInteger);
DEFINE_int32(idle_timeout_second, 30,
"Pooled connections without data transmission for so many "
"seconds will be closed. No effect for non-positive values");
BRPC_VALIDATE_GFLAG(idle_timeout_second, PassValidate);
DEFINE_int32(defer_close_second, 0,
"Defer close of connections for so many seconds even if the"
" connection is not used by anyone. Close immediately for "
"non-positive values.");
BRPC_VALIDATE_GFLAG(defer_close_second, PassValidate);
DEFINE_bool(show_socketmap_in_vars, false,
"[DEBUG] Describe SocketMaps in /vars");
BRPC_VALIDATE_GFLAG(show_socketmap_in_vars, PassValidate);
DEFINE_bool(reserve_one_idle_socket, false,
"Reserve one idle socket for pooled connections when idle_timeout_second > 0");
static pthread_once_t g_socket_map_init = PTHREAD_ONCE_INIT;
static butil::static_atomic<SocketMap*> g_socket_map = BUTIL_STATIC_ATOMIC_INIT(NULL);
class GlobalSocketCreator : public SocketCreator {
public:
int CreateSocket(const SocketOptions& opt, SocketId* id) override {
SocketOptions sock_opt = opt;
sock_opt.health_check_interval_s = FLAGS_health_check_interval;
return get_client_side_messenger()->Create(sock_opt, id);
}
};
static void CreateClientSideSocketMap() {
SocketMap* socket_map = new SocketMap;
SocketMapOptions options;
options.socket_creator = new GlobalSocketCreator;
options.idle_timeout_second_dynamic = &FLAGS_idle_timeout_second;
options.defer_close_second_dynamic = &FLAGS_defer_close_second;
if (socket_map->Init(options) != 0) {
LOG(FATAL) << "Fail to init SocketMap";
exit(1);
}
g_socket_map.store(socket_map, butil::memory_order_release);
}
SocketMap* get_client_side_socket_map() {
// The consume fence makes sure that we see a NULL or a fully initialized
// SocketMap.
return g_socket_map.load(butil::memory_order_consume);
}
SocketMap* get_or_new_client_side_socket_map() {
get_or_new_client_side_messenger();
pthread_once(&g_socket_map_init, CreateClientSideSocketMap);
return g_socket_map.load(butil::memory_order_consume);
}
int SocketMapInsert(const SocketMapKey& key, SocketId* id,
const std::shared_ptr<SocketSSLContext>& ssl_ctx,
bool use_rdma) {
return get_or_new_client_side_socket_map()->Insert(key, id, ssl_ctx, use_rdma);
}
int SocketMapFind(const SocketMapKey& key, SocketId* id) {
SocketMap* m = get_client_side_socket_map();
if (m) {
return m->Find(key, id);
}
return -1;
}
void SocketMapRemove(const SocketMapKey& key) {
SocketMap* m = get_client_side_socket_map();
if (m) {
// TODO: We don't have expected_id to pass right now since the callsite
// at NamingServiceThread is hard to be fixed right now. As long as
// FLAGS_health_check_interval is limited to positive, SocketMapInsert
// never replaces the sockets, skipping comparison is still right.
m->Remove(key, INVALID_SOCKET_ID);
}
}
void SocketMapList(std::vector<SocketId>* ids) {
SocketMap* m = get_client_side_socket_map();
if (m) {
m->List(ids);
} else {
ids->clear();
}
}
// ========== SocketMap impl. ============
SocketMapOptions::SocketMapOptions()
: socket_creator(NULL)
, suggested_map_size(1024)
, idle_timeout_second_dynamic(NULL)
, idle_timeout_second(0)
, defer_close_second_dynamic(NULL)
, defer_close_second(0) {
}
SocketMap::SocketMap()
: _exposed_in_bvar(false)
, _this_map_bvar(NULL)
, _has_close_idle_thread(false) {
}
SocketMap::~SocketMap() {
RPC_VLOG << "Destroying SocketMap=" << this;
if (_has_close_idle_thread) {
bthread_stop(_close_idle_thread);
bthread_join(_close_idle_thread, NULL);
}
if (!_map.empty()) {
std::ostringstream err;
int nleft = 0;
for (Map::iterator it = _map.begin(); it != _map.end(); ++it) {
SingleConnection* sc = &it->second;
if ((!sc->socket->Failed() ||
sc->socket->HCEnabled()) &&
sc->ref_count != 0) {
++nleft;
if (nleft == 0) {
err << "Left in SocketMap(" << this << "):";
}
err << ' ' << *sc->socket;
}
}
if (nleft) {
LOG(ERROR) << err.str();
}
}
delete _this_map_bvar;
_this_map_bvar = NULL;
delete _options.socket_creator;
_options.socket_creator = NULL;
}
int SocketMap::Init(const SocketMapOptions& options) {
if (_options.socket_creator != NULL) {
LOG(ERROR) << "Already initialized";
return -1;
}
_options = options;
if (_options.socket_creator == NULL) {
LOG(ERROR) << "SocketOptions.socket_creator must be set";
return -1;
}
if (_map.init(_options.suggested_map_size, 70) != 0) {
LOG(ERROR) << "Fail to init _map";
return -1;
}
if (_options.idle_timeout_second_dynamic != NULL ||
_options.idle_timeout_second > 0) {
if (bthread_start_background(&_close_idle_thread, NULL,
RunWatchConnections, this) != 0) {
LOG(FATAL) << "Fail to start bthread";
return -1;
}
_has_close_idle_thread = true;
}
return 0;
}
void SocketMap::Print(std::ostream& os) {
// TODO: Elaborate.
size_t count = 0;
{
std::unique_lock<butil::Mutex> mu(_mutex);
count = _map.size();
}
os << "count=" << count;
}
void SocketMap::PrintSocketMap(std::ostream& os, void* arg) {
static_cast<SocketMap*>(arg)->Print(os);
}
void SocketMap::ShowSocketMapInBvarIfNeed() {
if (FLAGS_show_socketmap_in_vars &&
!_exposed_in_bvar.exchange(true, butil::memory_order_release)) {
char namebuf[32];
int len = snprintf(namebuf, sizeof(namebuf), "rpc_socketmap_%p", this);
_this_map_bvar = new bvar::PassiveStatus<std::string>(
butil::StringPiece(namebuf, len), PrintSocketMap, this);
}
}
int SocketMap::Insert(const SocketMapKey& key, SocketId* id,
const std::shared_ptr<SocketSSLContext>& ssl_ctx,
bool use_rdma) {
ShowSocketMapInBvarIfNeed();
std::unique_lock<butil::Mutex> mu(_mutex);
SingleConnection* sc = _map.seek(key);
if (sc) {
if (!sc->socket->Failed() || sc->socket->HCEnabled()) {
++sc->ref_count;
*id = sc->socket->id();
return 0;
}
// A socket w/o HC is failed (permanently), replace it.
sc->socket->ReleaseHCRelatedReference();
_map.erase(key); // in principle, we can override the entry in map w/o
// removing and inserting it again. But this would make error branches
// below have to remove the entry before returning, which is
// error-prone. We prefer code maintainability here.
sc = NULL;
}
SocketId tmp_id;
SocketOptions opt;
opt.remote_side = key.peer.addr;
opt.initial_ssl_ctx = ssl_ctx;
opt.use_rdma = use_rdma;
if (_options.socket_creator->CreateSocket(opt, &tmp_id) != 0) {
PLOG(FATAL) << "Fail to create socket to " << key.peer;
return -1;
}
// Add a reference to make sure that sc->socket is always accessible. Not
// use SocketUniquePtr which cannot put into containers before c++11.
// The ref will be removed at entry's removal.
SocketUniquePtr ptr;
int rc = Socket::AddressFailedAsWell(tmp_id, &ptr);
if (rc < 0) {
LOG(FATAL) << "Fail to address SocketId=" << tmp_id;
return -1;
} else if (rc > 0 && !ptr->HCEnabled()) {
LOG(FATAL) << "Failed socket is not HC-enabled";
return -1;
}
SingleConnection new_sc = { 1, ptr.get(), 0 };
_map[key] = new_sc;
*id = tmp_id;
mu.unlock();
return 0;
}
void SocketMap::Remove(const SocketMapKey& key, SocketId expected_id) {
return RemoveInternal(key, expected_id, false);
}
void SocketMap::RemoveInternal(const SocketMapKey& key,
SocketId expected_id,
bool remove_orphan) {
ShowSocketMapInBvarIfNeed();
std::unique_lock<butil::Mutex> mu(_mutex);
SingleConnection* sc = _map.seek(key);
if (!sc) {
return;
}
if (!remove_orphan &&
(expected_id == INVALID_SOCKET_ID || expected_id == sc->socket->id())) {
--sc->ref_count;
}
if (sc->ref_count == 0) {
// NOTE: save the gflag which may be reloaded at any time
const int defer_close_second = _options.defer_close_second_dynamic ?
*_options.defer_close_second_dynamic
: _options.defer_close_second;
if (!remove_orphan && defer_close_second > 0) {
// Start count down on this Socket
sc->no_ref_us = butil::cpuwide_time_us();
} else {
Socket* const s = sc->socket;
_map.erase(key);
mu.unlock();
s->ReleaseAdditionalReference(); // release extra ref
s->ReleaseHCRelatedReference();
}
}
}
int SocketMap::Find(const SocketMapKey& key, SocketId* id) {
BAIDU_SCOPED_LOCK(_mutex);
SingleConnection* sc = _map.seek(key);
if (sc) {
*id = sc->socket->id();
return 0;
}
return -1;
}
void SocketMap::List(std::vector<SocketId>* ids) {
ids->clear();
BAIDU_SCOPED_LOCK(_mutex);
for (Map::iterator it = _map.begin(); it != _map.end(); ++it) {
ids->push_back(it->second.socket->id());
}
}
void SocketMap::List(std::vector<butil::EndPoint>* pts) {
pts->clear();
BAIDU_SCOPED_LOCK(_mutex);
for (Map::iterator it = _map.begin(); it != _map.end(); ++it) {
pts->push_back(it->second.socket->remote_side());
}
}
void SocketMap::ListOrphans(int64_t defer_us, std::vector<SocketMapKey>* out) {
out->clear();
const int64_t now = butil::cpuwide_time_us();
BAIDU_SCOPED_LOCK(_mutex);
for (Map::iterator it = _map.begin(); it != _map.end(); ++it) {
SingleConnection& sc = it->second;
if (sc.ref_count == 0 && now - sc.no_ref_us >= defer_us) {
out->push_back(it->first);
}
}
}
void* SocketMap::RunWatchConnections(void* arg) {
static_cast<SocketMap*>(arg)->WatchConnections();
return NULL;
}
void SocketMap::WatchConnections() {
std::vector<SocketId> main_sockets;
std::vector<SocketId> pooled_sockets;
std::vector<SocketMapKey> orphan_sockets;
const uint64_t CHECK_INTERVAL_US = 1000000UL;
while (bthread_usleep(CHECK_INTERVAL_US) == 0) {
// NOTE: save the gflag which may be reloaded at any time.
const int idle_seconds = _options.idle_timeout_second_dynamic ?
*_options.idle_timeout_second_dynamic
: _options.idle_timeout_second;
if (idle_seconds > 0) {
// Check idle pooled connections
List(&main_sockets);
for (auto main_socket : main_sockets) {
SocketUniquePtr s;
if (Socket::Address(main_socket, &s) == 0) {
s->ListPooledSockets(&pooled_sockets);
for (size_t i = FLAGS_reserve_one_idle_socket ? 1 : 0;
i < pooled_sockets.size(); ++i) {
SocketUniquePtr s2;
if (Socket::Address(pooled_sockets[i], &s2) == 0) {
s2->ReleaseReferenceIfIdle(idle_seconds);
}
}
}
}
}
// Check connections without Channel. This works when `defer_seconds'
// <= 0, in which case orphan connections will be closed immediately
// NOTE: save the gflag which may be reloaded at any time
const int defer_seconds = _options.defer_close_second_dynamic ?
*_options.defer_close_second_dynamic :
_options.defer_close_second;
ListOrphans(defer_seconds * 1000000L, &orphan_sockets);
for (size_t i = 0; i < orphan_sockets.size(); ++i) {
RemoveInternal(orphan_sockets[i], INVALID_SOCKET_ID, true);
}
}
}
} // namespace brpc