icinga2/lib/base/netstring.cpp

118 lines
3.9 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2014-05-25 16:23:35 +02:00
#include "base/netstring.hpp"
#include "base/debug.hpp"
2013-03-16 21:18:53 +01:00
#include <sstream>
2012-03-28 13:24:49 +02:00
using namespace icinga;
2012-05-18 22:53:35 +02:00
/**
2013-04-04 16:08:02 +02:00
* Reads data from a stream in netstring format.
2012-05-18 22:53:35 +02:00
*
2012-11-22 12:04:32 +01:00
* @param stream The stream to read from.
2012-09-17 13:35:55 +02:00
* @param[out] str The String that has been read from the IOQueue.
* @returns true if a complete String was read from the IOQueue, false otherwise.
* @exception invalid_argument The input stream is invalid.
2013-04-04 16:08:02 +02:00
* @see https://github.com/PeterScott/netstring-c/blob/master/netstring.c
2012-05-18 22:53:35 +02:00
*/
StreamReadStatus NetString::ReadStringFromStream(const Stream::Ptr& stream, String *str, StreamReadContext& context)
2012-03-28 13:24:49 +02:00
{
if (context.Eof)
return StatusEof;
2012-07-17 20:41:06 +02:00
if (context.MustRead) {
if (!context.FillFromStream(stream)) {
context.Eof = true;
return StatusEof;
}
context.MustRead = false;
}
2012-07-17 20:41:06 +02:00
size_t header_length = 0;
for (size_t i = 0; i < context.Size; i++) {
if (context.Buffer[i] == ':') {
header_length = i;
/* make sure there's a header */
if (header_length == 0)
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid NetString (no length specifier)"));
2013-04-04 16:08:02 +02:00
break;
} else if (i > 16)
2013-04-04 16:08:02 +02:00
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid NetString (missing :)"));
}
if (header_length == 0) {
context.MustRead = true;
return StatusNeedData;
}
2012-03-28 13:24:49 +02:00
/* no leading zeros allowed */
if (context.Buffer[0] == '0' && isdigit(context.Buffer[1]))
2013-04-04 16:08:02 +02:00
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid NetString (leading zero)"));
2012-03-28 13:24:49 +02:00
size_t len, i;
len = 0;
for (i = 0; i < header_length && isdigit(context.Buffer[i]); i++) {
2012-03-28 13:24:49 +02:00
/* length specifier must have at most 9 characters */
if (i >= 9)
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::invalid_argument("Length specifier must not exceed 9 characters"));
2012-03-28 13:24:49 +02:00
len = len * 10 + (context.Buffer[i] - '0');
2012-03-28 13:24:49 +02:00
}
/* read the whole message */
2013-04-04 16:08:02 +02:00
size_t data_length = len + 1;
char *data = context.Buffer + header_length + 1;
2015-03-02 14:10:26 +01:00
if (context.Size < header_length + 1 + data_length) {
context.MustRead = true;
return StatusNeedData;
}
2013-04-04 16:08:02 +02:00
if (data[len] != ',')
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid NetString (missing ,)"));
2015-03-02 14:10:26 +01:00
2013-04-04 16:08:02 +02:00
*str = String(&data[0], &data[len]);
2012-03-28 13:24:49 +02:00
context.DropData(header_length + 1 + len + 1);
2012-03-28 13:24:49 +02:00
return StatusNewItem;
2012-03-28 13:24:49 +02:00
}
2012-05-18 22:53:35 +02:00
/**
2013-04-04 16:08:02 +02:00
* Writes data into a stream using the netstring format.
2012-05-18 22:53:35 +02:00
*
2012-11-22 12:04:32 +01:00
* @param stream The stream.
* @param str The String that is to be written.
2012-05-18 22:53:35 +02:00
*/
2012-11-22 12:04:32 +01:00
void NetString::WriteStringToStream(const Stream::Ptr& stream, const String& str)
2012-03-28 13:24:49 +02:00
{
2013-04-04 16:08:02 +02:00
std::ostringstream msgbuf;
msgbuf << str.GetLength() << ":" << str << ",";
2012-03-28 13:24:49 +02:00
2013-04-04 16:08:02 +02:00
String msg = msgbuf.str();
stream->Write(msg.CStr(), msg.GetLength());
2012-03-28 13:24:49 +02:00
}