/usr/include/mongo/util/net/message.h is in libmongoclient-dev 1.1.2-6ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // message.h
/* Copyright 2009 10gen Inc.
*
* 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.
*/
#pragma once
#include <vector>
#include "mongo/platform/atomic_word.h"
#include "mongo/platform/cstdint.h"
#include "mongo/base/data_view.h"
#include "mongo/base/encoded_value_storage.h"
#include "mongo/util/mongoutils/str.h"
#include "mongo/util/net/hostandport.h"
#include "mongo/util/net/operation.h"
#include "mongo/util/net/sock.h"
namespace mongo {
/**
* Maximum accepted message size on the wire protocol.
*/
const size_t MaxMessageSizeBytes = 48 * 1000 * 1000;
class Message;
class MessagingPort;
class PiggyBackData;
typedef uint32_t MSGID;
bool doesOpGetAResponse(int op);
inline const char* opToString(int op) {
switch (op) {
case 0:
return "none";
case opReply:
return "reply";
case dbMsg:
return "msg";
case dbUpdate:
return "update";
case dbInsert:
return "insert";
case dbQuery:
return "query";
case dbGetMore:
return "getmore";
case dbDelete:
return "remove";
case dbKillCursors:
return "killcursors";
default:
massert(16141, str::stream() << "cannot translate opcode " << op, !op);
return "";
}
}
inline bool opIsWrite(int op) {
switch (op) {
case 0:
case opReply:
case dbMsg:
case dbQuery:
case dbGetMore:
case dbKillCursors:
return false;
case dbUpdate:
case dbInsert:
case dbDelete:
return true;
default:
verify(0);
return "";
}
}
namespace MSGHEADER {
#pragma pack(1)
/* see http://dochub.mongodb.org/core/mongowireprotocol
*/
struct Layout {
int32_t messageLength; // total message size, including this
int32_t requestID; // identifier for this message
int32_t responseTo; // requestID from the original request
// (used in responses from db)
int32_t opCode;
};
#pragma pack()
class ConstView {
public:
typedef ConstDataView view_type;
ConstView(const char* data) : _data(data) {}
const char* view2ptr() const {
return data().view();
}
int32_t getMessageLength() const {
return data().readLE<int32_t>(offsetof(Layout, messageLength));
}
int32_t getRequestID() const {
return data().readLE<int32_t>(offsetof(Layout, requestID));
}
int32_t getResponseTo() const {
return data().readLE<int32_t>(offsetof(Layout, responseTo));
}
int32_t getOpCode() const {
return data().readLE<int32_t>(offsetof(Layout, opCode));
}
protected:
const view_type& data() const {
return _data;
}
private:
view_type _data;
};
class View : public ConstView {
public:
typedef DataView view_type;
View(char* data) : ConstView(data) {}
using ConstView::view2ptr;
char* view2ptr() {
return data().view();
}
void setMessageLength(int32_t value) {
data().writeLE(value, offsetof(Layout, messageLength));
}
void setRequestID(int32_t value) {
data().writeLE(value, offsetof(Layout, requestID));
}
void setResponseTo(int32_t value) {
data().writeLE(value, offsetof(Layout, responseTo));
}
void setOpCode(int32_t value) {
data().writeLE(value, offsetof(Layout, opCode));
}
private:
view_type data() const {
return const_cast<char*>(ConstView::view2ptr());
}
};
class Value : public EncodedValueStorage<Layout, ConstView, View> {
public:
Value() {
BOOST_STATIC_ASSERT(sizeof(Value) == sizeof(Layout));
}
Value(ZeroInitTag_t zit) : EncodedValueStorage<Layout, ConstView, View>(zit) {}
};
} // namespace MSGHEADER
namespace MsgData {
#pragma pack(1)
struct Layout {
MSGHEADER::Layout header;
char data[4];
};
#pragma pack()
class ConstView {
public:
ConstView(const char* storage) : _storage(storage) {}
const char* view2ptr() const {
return storage().view();
}
int32_t getLen() const {
return header().getMessageLength();
}
MSGID getId() const {
return header().getRequestID();
}
MSGID getResponseTo() const {
return header().getResponseTo();
}
int32_t getOperation() const {
return header().getOpCode();
}
const char* data() const {
return storage().view(offsetof(Layout, data));
}
bool valid() const {
if (getLen() <= 0 || getLen() > (4 * BSONObjMaxInternalSize))
return false;
if (getOperation() < 0 || getOperation() > 30000)
return false;
return true;
}
int64_t getCursor() const {
verify(getResponseTo() > 0);
verify(getOperation() == opReply);
return ConstDataView(data() + sizeof(int32_t)).readLE<int64_t>();
}
int dataLen() const; // len without header
protected:
const ConstDataView& storage() const {
return _storage;
}
MSGHEADER::ConstView header() const {
return storage().view(offsetof(Layout, header));
}
private:
ConstDataView _storage;
};
class View : public ConstView {
public:
View(char* storage) : ConstView(storage) {}
using ConstView::view2ptr;
char* view2ptr() {
return storage().view();
}
void setLen(int value) {
return header().setMessageLength(value);
}
void setId(MSGID value) {
return header().setRequestID(value);
}
void setResponseTo(MSGID value) {
return header().setResponseTo(value);
}
void setOperation(int value) {
return header().setOpCode(value);
}
using ConstView::data;
char* data() {
return storage().view(offsetof(Layout, data));
}
private:
DataView storage() const {
return const_cast<char*>(ConstView::view2ptr());
}
MSGHEADER::View header() const {
return storage().view(offsetof(Layout, header));
}
};
class Value : public EncodedValueStorage<Layout, ConstView, View> {
public:
Value() {
BOOST_STATIC_ASSERT(sizeof(Value) == sizeof(Layout));
}
Value(ZeroInitTag_t zit) : EncodedValueStorage<Layout, ConstView, View>(zit) {}
};
const int MsgDataHeaderSize = sizeof(Value) - 4;
inline int ConstView::dataLen() const {
return getLen() - MsgDataHeaderSize;
}
} // namespace MsgData
class Message {
public:
// we assume here that a vector with initial size 0 does no allocation (0 is the default, but
// wanted to make it explicit).
Message() : _buf(0), _data(0), _freeIt(false) {}
Message(void* data, bool freeIt) : _buf(0), _data(0), _freeIt(false) {
_setData(reinterpret_cast<char*>(data), freeIt);
};
Message(Message& r) : _buf(0), _data(0), _freeIt(false) {
*this = r;
}
~Message() {
reset();
}
SockAddr _from;
MsgData::View header() const {
verify(!empty());
return _buf ? _buf : _data[0].first;
}
int operation() const {
return header().getOperation();
}
MsgData::View singleData() const {
massert(13273, "single data buffer expected", _buf);
return header();
}
bool empty() const {
return !_buf && _data.empty();
}
int size() const {
int res = 0;
if (_buf) {
res = MsgData::ConstView(_buf).getLen();
} else {
for (MsgVec::const_iterator it = _data.begin(); it != _data.end(); ++it) {
res += it->second;
}
}
return res;
}
int dataSize() const {
return size() - sizeof(MSGHEADER::Value);
}
// concat multiple buffers - noop if <2 buffers already, otherwise can be expensive copy
// can get rid of this if we make response handling smarter
void concat() {
if (_buf || empty()) {
return;
}
verify(_freeIt);
int totalSize = 0;
for (std::vector<std::pair<char*, int> >::const_iterator i = _data.begin();
i != _data.end();
++i) {
totalSize += i->second;
}
char* buf = (char*)malloc(totalSize);
char* p = buf;
for (std::vector<std::pair<char*, int> >::const_iterator i = _data.begin();
i != _data.end();
++i) {
memcpy(p, i->first, i->second);
p += i->second;
}
reset();
_setData(buf, true);
}
// vector swap() so this is fast
Message& operator=(Message& r) {
verify(empty());
verify(r._freeIt);
_buf = r._buf;
r._buf = 0;
if (r._data.size() > 0) {
_data.swap(r._data);
}
r._freeIt = false;
_freeIt = true;
return *this;
}
void reset() {
if (_freeIt) {
if (_buf) {
free(_buf);
}
for (std::vector<std::pair<char*, int> >::const_iterator i = _data.begin();
i != _data.end();
++i) {
free(i->first);
}
}
_buf = 0;
_data.clear();
_freeIt = false;
}
// use to add a buffer
// assumes message will free everything
void appendData(char* d, int size) {
if (size <= 0) {
return;
}
if (empty()) {
MsgData::View md = d;
md.setLen(size); // can be updated later if more buffers added
_setData(md.view2ptr(), true);
return;
}
verify(_freeIt);
if (_buf) {
_data.push_back(std::make_pair(_buf, MsgData::ConstView(_buf).getLen()));
_buf = 0;
}
_data.push_back(std::make_pair(d, size));
header().setLen(header().getLen() + size);
}
// use to set first buffer if empty
void setData(char* d, bool freeIt) {
verify(empty());
_setData(d, freeIt);
}
void setData(int operation, const char* msgtxt) {
setData(operation, msgtxt, strlen(msgtxt) + 1);
}
void setData(int operation, const char* msgdata, size_t len) {
verify(empty());
size_t dataLen = len + sizeof(MsgData::Value) - 4;
MsgData::View d = reinterpret_cast<char*>(malloc(dataLen));
memcpy(d.data(), msgdata, len);
d.setLen(dataLen);
d.setOperation(operation);
_setData(d.view2ptr(), true);
}
bool doIFreeIt() {
return _freeIt;
}
void send(MessagingPort& p, const char* context);
std::string toString() const;
private:
void _setData(char* d, bool freeIt) {
_freeIt = freeIt;
_buf = d;
}
// if just one buffer, keep it in _buf, otherwise keep a sequence of buffers in _data
char* _buf;
// byte buffer(s) - the first must contain at least a full MsgData unless using _buf for storage
// instead
typedef std::vector<std::pair<char*, int> > MsgVec;
MsgVec _data;
bool _freeIt;
};
MSGID nextMessageId();
} // namespace mongo
|