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
|
// Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
// $Id$
#include <config.h>
#include "session_config.h"
#include <stdint.h>
#include <cstdio>
#include <vector>
#include <iostream>
#include <sstream>
#include <sys/un.h>
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <asio.hpp>
#include <asio/error_code.hpp>
#include <asio/system_error.hpp>
#include <exceptions/exceptions.h>
#include "data.h"
#include "session.h"
using namespace std;
using namespace isc::cc;
using namespace isc::data;
// some of the asio names conflict with socket API system calls
// (e.g. write(2)) so we don't import the entire asio namespace.
using asio::io_service;
using asio::ip::tcp;
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
namespace isc {
namespace cc {
class SessionImpl {
public:
SessionImpl() : sequence_(-1) { queue_ = Element::createList(); }
virtual ~SessionImpl() {}
virtual void establish(const char& socket_file) = 0;
virtual int getSocket() = 0;
virtual void disconnect() = 0;
virtual void writeData(const void* data, size_t datalen) = 0;
virtual size_t readDataLength() = 0;
virtual void readData(void* data, size_t datalen) = 0;
virtual void startRead(boost::function<void()> user_handler) = 0;
int sequence_; // the next sequence number to use
std::string lname_;
ElementPtr queue_;
};
class ASIOSession : public SessionImpl {
public:
ASIOSession(io_service& io_service) :
io_service_(io_service), socket_(io_service_), data_length_(0)
{}
virtual void establish(const char& socket_file);
virtual void disconnect();
virtual int getSocket() { return (socket_.native()); }
virtual void writeData(const void* data, size_t datalen);
virtual size_t readDataLength();
virtual void readData(void* data, size_t datalen);
virtual void startRead(boost::function<void()> user_handler);
private:
void internalRead(const asio::error_code& error,
size_t bytes_transferred);
private:
io_service& io_service_;
asio::local::stream_protocol::socket socket_;
uint32_t data_length_;
boost::function<void()> user_handler_;
asio::error_code error_;
};
void
ASIOSession::establish(const char& socket_file) {
try {
socket_.connect(asio::local::stream_protocol::endpoint(&socket_file), error_);
} catch (asio::system_error& se) {
isc_throw(SessionError, se.what());
}
if (error_) {
isc_throw(SessionError, "Unable to connect to message queue.");
}
}
void
ASIOSession::disconnect() {
socket_.close();
data_length_ = 0;
}
void
ASIOSession::writeData(const void* data, size_t datalen) {
try {
asio::write(socket_, asio::buffer(data, datalen));
} catch (const asio::system_error& asio_ex) {
isc_throw(SessionError, "ASIO write failed: " << asio_ex.what());
}
}
size_t
ASIOSession::readDataLength() {
size_t ret_len = data_length_;
if (ret_len == 0) {
readData(&data_length_, sizeof(data_length_));
if (data_length_ == 0) {
isc_throw(SessionError, "ASIO read: data length is not ready");
}
ret_len = ntohl(data_length_);
}
data_length_ = 0;
return (ret_len);
}
void
ASIOSession::readData(void* data, size_t datalen) {
try {
asio::read(socket_, asio::buffer(data, datalen));
} catch (const asio::system_error& asio_ex) {
// to hide boost specific exceptions, we catch them explicitly
// and convert it to SessionError.
isc_throw(SessionError, "ASIO read failed: " << asio_ex.what());
}
}
void
ASIOSession::startRead(boost::function<void()> user_handler) {
data_length_ = 0;
user_handler_ = user_handler;
async_read(socket_, asio::buffer(&data_length_,
sizeof(data_length_)),
boost::bind(&ASIOSession::internalRead, this,
asio::placeholders::error,
asio::placeholders::bytes_transferred));
}
void
ASIOSession::internalRead(const asio::error_code& error,
size_t bytes_transferred)
{
if (!error) {
assert(bytes_transferred == sizeof(data_length_));
data_length_ = ntohl(data_length_);
if (data_length_ == 0) {
isc_throw(SessionError, "Invalid message length (0)");
}
user_handler_();
} else {
isc_throw(SessionError, "asynchronous read failed");
}
}
class SocketSession : public SessionImpl {
public:
SocketSession() : sock_(-1) {}
virtual ~SocketSession() { disconnect(); }
virtual int getSocket() { return (sock_); }
void establish(const char& socket_file);
virtual void disconnect()
{
if (sock_ >= 0) {
close(sock_);
}
sock_ = -1;
}
virtual void writeData(const void* data, size_t datalen);
virtual void readData(void* data, size_t datalen);
virtual size_t readDataLength();
virtual void startRead(boost::function<void()> user_handler UNUSED_PARAM)
{} // nothing to do for this class
private:
int sock_;
};
namespace { // maybe unnecessary.
// This is a helper class to make the establish() method (below) exception-safe
// with the RAII approach.
class SessionHolder {
public:
SessionHolder(SessionImpl* obj) : impl_obj_(obj) {}
~SessionHolder()
{
if (impl_obj_ != NULL) {
impl_obj_->disconnect();
}
}
void clear() { impl_obj_ = NULL; }
SessionImpl* impl_obj_;
};
}
void
SocketSession::establish(const char& socket_file) {
struct sockaddr_un s_un;
#ifdef HAVE_SA_LEN
s_un.sun_len = sizeof(struct sockaddr_un);
#endif
if (strlen(&socket_file) >= sizeof(s_un.sun_path)) {
isc_throw(SessionError, "Unable to connect to message queue; "
"socket file path too long: " << socket_file);
}
s_un.sun_family = AF_UNIX;
strncpy(s_un.sun_path, &socket_file, sizeof(s_un.sun_path) - 1);
int s = socket(AF_UNIX, SOCK_STREAM, 0);
if (s < 0) {
isc_throw(SessionError, "socket() failed");
}
if (connect(s, (struct sockaddr *)&s_un, sizeof(s_un)) < 0) {
close(s);
isc_throw(SessionError, "Unable to connect to message queue");
}
sock_ = s;
}
void
SocketSession::writeData(const void* data, const size_t datalen) {
int cc = write(sock_, data, datalen);
if (cc != datalen) {
isc_throw(SessionError, "Write failed: expect " << datalen <<
", actual " << cc);
}
}
size_t
SocketSession::readDataLength() {
uint32_t length;
readData(&length, sizeof(length));
return (ntohl(length));
}
void
SocketSession::readData(void* data, const size_t datalen) {
int cc = read(sock_, data, datalen);
if (cc != datalen) {
isc_throw(SessionError, "Read failed: expect " << datalen <<
", actual " << cc);
}
}
Session::Session() : impl_(new SocketSession)
{}
Session::Session(io_service& io_service) : impl_(new ASIOSession(io_service))
{}
Session::~Session() {
delete impl_;
}
void
Session::disconnect() {
impl_->disconnect();
}
int
Session::getSocket() const {
return (impl_->getSocket());
}
void
Session::startRead(boost::function<void()> read_callback) {
impl_->startRead(read_callback);
}
void
Session::establish(const char* socket_file) {
if (socket_file == NULL) {
socket_file = getenv("BIND10_MSGQ_SOCKET_FILE");
}
if (socket_file == NULL) {
socket_file = BIND10_MSGQ_SOCKET_FILE;
}
impl_->establish(*socket_file);
// once established, encapsulate the implementation object so that we
// can safely release the internal resource when exception happens
// below.
SessionHolder session_holder(impl_);
//
// send a request for our local name, and wait for a response
//
ElementPtr get_lname_msg =
Element::createFromString("{ \"type\": \"getlname\" }");
sendmsg(get_lname_msg);
ElementPtr routing, msg;
recvmsg(routing, msg, false);
impl_->lname_ = msg->get("lname")->stringValue();
// At this point there's no risk of resource leak.
session_holder.clear();
}
//
// Convert to wire format and send this on the TCP stream with its length prefix
//
void
Session::sendmsg(ElementPtr& msg) {
std::string header_wire = msg->toWire();
unsigned int length = 2 + header_wire.length();
unsigned int length_net = htonl(length);
unsigned short header_length = header_wire.length();
unsigned short header_length_net = htons(header_length);
impl_->writeData(&length_net, sizeof(length_net));
impl_->writeData(&header_length_net, sizeof(header_length_net));
impl_->writeData(header_wire.data(), header_length);
}
void
Session::sendmsg(ElementPtr& env, ElementPtr& msg) {
std::string header_wire = env->toWire();
std::string body_wire = msg->toWire();
unsigned int length = 2 + header_wire.length() + body_wire.length();
unsigned int length_net = htonl(length);
unsigned short header_length = header_wire.length();
unsigned short header_length_net = htons(header_length);
impl_->writeData(&length_net, sizeof(length_net));
impl_->writeData(&header_length_net, sizeof(header_length_net));
impl_->writeData(header_wire.data(), header_length);
impl_->writeData(body_wire.data(), body_wire.length());
}
bool
Session::recvmsg(ElementPtr& msg, bool nonblock, int seq) {
ElementPtr l_env;
return recvmsg(l_env, msg, nonblock, seq);
}
bool
Session::recvmsg(ElementPtr& env, ElementPtr& msg,
bool nonblock, int seq) {
size_t length = impl_->readDataLength();
ElementPtr l_env, l_msg;
if (hasQueuedMsgs()) {
ElementPtr q_el;
for (int i = 0; i < impl_->queue_->size(); i++) {
q_el = impl_->queue_->get(i);
if (( seq == -1 &&
!q_el->get(0)->contains("reply")
) || (
q_el->get(0)->contains("reply") &&
q_el->get(0)->get("reply")->intValue() == seq
)
) {
env = q_el->get(0);
msg = q_el->get(1);
impl_->queue_->remove(i);
return true;
}
}
}
unsigned short header_length_net;
impl_->readData(&header_length_net, sizeof(header_length_net));
unsigned short header_length = ntohs(header_length_net);
if (header_length > length || length < 2) {
isc_throw(SessionError, "Length parameters invalid: total=" << length
<< ", header=" << header_length);
}
// remove the header-length bytes from the total length
length -= 2;
std::vector<char> buffer(length);
impl_->readData(&buffer[0], length);
std::string header_wire = std::string(&buffer[0], header_length);
std::string body_wire = std::string(&buffer[0] + header_length,
length - header_length);
std::stringstream header_wire_stream;
header_wire_stream << header_wire;
l_env = Element::fromWire(header_wire_stream, header_length);
std::stringstream body_wire_stream;
body_wire_stream << body_wire;
l_msg = Element::fromWire(body_wire_stream, length - header_length);
if ((seq == -1 &&
!l_env->contains("reply")
) || (
l_env->contains("reply") &&
l_env->get("reply")->intValue() == seq
)
) {
env = l_env;
msg = l_msg;
return true;
} else {
ElementPtr q_el = Element::createList();
q_el->add(l_env);
q_el->add(l_msg);
impl_->queue_->add(q_el);
return recvmsg(env, msg, nonblock, seq);
}
// XXXMLG handle non-block here, and return false for short reads
}
void
Session::subscribe(std::string group, std::string instance) {
ElementPtr env = Element::createMap();
env->set("type", Element::create("subscribe"));
env->set("group", Element::create(group));
env->set("instance", Element::create(instance));
sendmsg(env);
}
void
Session::unsubscribe(std::string group, std::string instance) {
ElementPtr env = Element::createMap();
env->set("type", Element::create("unsubscribe"));
env->set("group", Element::create(group));
env->set("instance", Element::create(instance));
sendmsg(env);
}
int
Session::group_sendmsg(ElementPtr msg, std::string group,
std::string instance, std::string to)
{
ElementPtr env = Element::createMap();
int nseq = ++impl_->sequence_;
env->set("type", Element::create("send"));
env->set("from", Element::create(impl_->lname_));
env->set("to", Element::create(to));
env->set("group", Element::create(group));
env->set("instance", Element::create(instance));
env->set("seq", Element::create(nseq));
//env->set("msg", Element::create(msg->toWire()));
sendmsg(env, msg);
return nseq;
}
bool
Session::group_recvmsg(ElementPtr& envelope, ElementPtr& msg,
bool nonblock, int seq)
{
return (recvmsg(envelope, msg, nonblock, seq));
}
int
Session::reply(ElementPtr& envelope, ElementPtr& newmsg) {
ElementPtr env = Element::createMap();
int nseq = ++impl_->sequence_;
env->set("type", Element::create("send"));
env->set("from", Element::create(impl_->lname_));
env->set("to", Element::create(envelope->get("from")->stringValue()));
env->set("group", Element::create(envelope->get("group")->stringValue()));
env->set("instance", Element::create(envelope->get("instance")->stringValue()));
env->set("seq", Element::create(nseq));
env->set("reply", Element::create(envelope->get("seq")->intValue()));
sendmsg(env, newmsg);
return nseq;
}
bool
Session::hasQueuedMsgs()
{
return (impl_->queue_->size() > 0);
}
}
}
|