mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Refine config directive token parsing. v6.0.135 (#4042)
make sure one directive token don't span more than two lines. try to fix #2228 --------- Co-authored-by: winlin <winlinvip@gmail.com>
This commit is contained in:
parent
6bbd461ec9
commit
baf22d01c1
9 changed files with 175 additions and 36 deletions
|
@ -1202,9 +1202,15 @@ srs_error_t SrsConfDirective::read_token(SrsConfigBuffer* buffer, vector<string>
|
|||
|
||||
char ch = *buffer->pos++;
|
||||
|
||||
if (ch == SRS_LF) {
|
||||
buffer->line++;
|
||||
if (ch == SRS_LF || ch == SRS_CR) {
|
||||
if (ch == SRS_LF) {
|
||||
buffer->line++;
|
||||
}
|
||||
|
||||
sharp_comment = false;
|
||||
if (args.size() > 0) {
|
||||
return srs_error_new(ERROR_SYSTEM_CONFIG_INVALID, "line %d: unexpected end of line to parse token %s", buffer->line - 1, args[0].c_str());
|
||||
}
|
||||
}
|
||||
|
||||
if (sharp_comment) {
|
||||
|
@ -1305,7 +1311,7 @@ srs_error_t SrsConfDirective::read_token(SrsConfigBuffer* buffer, vector<string>
|
|||
args.push_back(word_str);
|
||||
}
|
||||
srs_freepa(aword);
|
||||
|
||||
|
||||
if (ch == ';') {
|
||||
state = SrsDirectiveStateEntire;
|
||||
return err;
|
||||
|
@ -1314,6 +1320,10 @@ srs_error_t SrsConfDirective::read_token(SrsConfigBuffer* buffer, vector<string>
|
|||
state = SrsDirectiveStateBlockStart;
|
||||
return err;
|
||||
}
|
||||
|
||||
if ((ch == SRS_LF || ch == SRS_CR) && args.size() > 0) {
|
||||
return srs_error_new(ERROR_SYSTEM_CONFIG_INVALID, "line %d: unexpected end of line to parse token %s", buffer->line - 1, args[0].c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2378,7 +2388,7 @@ srs_error_t SrsConfig::check_normal_config()
|
|||
string n = conf->at(i)->name;
|
||||
if (n != "enabled" && n != "listen" && n != "maxbw"
|
||||
&& n != "mss" && n != "latency" && n != "recvlatency"
|
||||
&& n != "peerlatency" && n != "connect_timeout"
|
||||
&& n != "peerlatency" && n != "connect_timeout" && n != "peer_idle_timeout"
|
||||
&& n != "sendbuf" && n != "recvbuf" && n != "payloadsize"
|
||||
&& n != "default_app" && n != "sei_filter" && n != "mix_correct"
|
||||
&& n != "tlpktdrop" && n != "tsbpdmode" && n != "passphrase" && n != "pbkeylen") {
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
|
||||
#define VERSION_MAJOR 6
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_REVISION 134
|
||||
#define VERSION_REVISION 135
|
||||
|
||||
#endif
|
||||
|
|
|
@ -223,7 +223,7 @@ VOID TEST(SampleTest, ContextTest)
|
|||
cache[0] = cid;
|
||||
}
|
||||
|
||||
MockProtectedBuffer::MockProtectedBuffer() : size_(0), data_(NULL), raw_memory_(NULL)
|
||||
MockProtectedBuffer::MockProtectedBuffer() : raw_memory_(NULL), size_(0), data_(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -400,6 +400,24 @@ VOID TEST(ConfigDirectiveTest, ParseArgsSpace)
|
|||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
}
|
||||
|
||||
if (true) {
|
||||
vector <string> usecases;
|
||||
usecases.push_back("include\rtest;");
|
||||
usecases.push_back("include\ntest;");
|
||||
usecases.push_back("include \r \n \r\n \n\rtest;");
|
||||
|
||||
for (int i = 0; i < (int)usecases.size(); i++) {
|
||||
string usecase = usecases.at(i);
|
||||
|
||||
MockSrsConfigBuffer buf(usecase);
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
}
|
||||
|
||||
if (true) {
|
||||
vector <string> usecases;
|
||||
|
@ -407,9 +425,6 @@ VOID TEST(ConfigDirectiveTest, ParseArgsSpace)
|
|||
usecases.push_back("include test;");
|
||||
usecases.push_back("include test;");
|
||||
usecases.push_back("include test;");;
|
||||
usecases.push_back("include\rtest;");
|
||||
usecases.push_back("include\ntest;");
|
||||
usecases.push_back("include \r \n \r\n \n\rtest;");
|
||||
|
||||
MockSrsConfig config;
|
||||
config.mock_include("test", "listen 1935;");
|
||||
|
@ -433,6 +448,102 @@ VOID TEST(ConfigDirectiveTest, ParseArgsSpace)
|
|||
}
|
||||
}
|
||||
|
||||
VOID TEST(ConfigDirectiveTest, ParseInvalidEndOfLine)
|
||||
{
|
||||
srs_error_t err;
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0 \narg0;dir1 arg1;");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0\n arg0;dir1 arg1;");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0 arg0\n;dir1 arg1;");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0 \rarg0;dir1 arg1;");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0 arg0\r;dir1 arg1;");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0 \n { dir1 arg1; }");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(0, (int) conf.directives.size());
|
||||
}
|
||||
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0 arg0;dir1\n arg1;");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int) conf.name.length());
|
||||
EXPECT_EQ(0, (int) conf.args.size());
|
||||
EXPECT_EQ(1, (int) conf.directives.size());
|
||||
|
||||
SrsConfDirective& dir0 = *conf.directives.at(0);
|
||||
EXPECT_STREQ("dir0", dir0.name.c_str());
|
||||
EXPECT_EQ(1, (int)dir0.args.size());
|
||||
EXPECT_STREQ("arg0", dir0.arg0().c_str());
|
||||
EXPECT_EQ(0, (int)dir0.directives.size());
|
||||
}
|
||||
|
||||
if (true) {
|
||||
MockSrsConfigBuffer buf("dir0 arg0;dir1 arg1;");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_SUCCESS(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int)conf.name.length());
|
||||
EXPECT_EQ(0, (int)conf.args.size());
|
||||
EXPECT_EQ(2, (int)conf.directives.size());
|
||||
|
||||
SrsConfDirective& dir0 = *conf.directives.at(0);
|
||||
EXPECT_STREQ("dir0", dir0.name.c_str());
|
||||
EXPECT_EQ(1, (int)dir0.args.size());
|
||||
EXPECT_STREQ("arg0", dir0.arg0().c_str());
|
||||
EXPECT_EQ(0, (int)dir0.directives.size());
|
||||
|
||||
SrsConfDirective& dir1 = *conf.directives.at(1);
|
||||
EXPECT_STREQ("dir1", dir1.name.c_str());
|
||||
EXPECT_EQ(1, (int)dir1.args.size());
|
||||
EXPECT_STREQ("arg1", dir1.arg0().c_str());
|
||||
EXPECT_EQ(0, (int)dir1.directives.size());
|
||||
}
|
||||
}
|
||||
|
||||
VOID TEST(ConfigDirectiveTest, Parse2SingleDirs)
|
||||
{
|
||||
srs_error_t err;
|
||||
|
@ -829,30 +940,7 @@ VOID TEST(ConfigDirectiveTest, ParseLine4)
|
|||
|
||||
MockSrsConfigBuffer buf("dir0 {\n\ndir1 \n\narg0;dir2 arg1;}");
|
||||
SrsConfDirective conf;
|
||||
HELPER_ASSERT_SUCCESS(conf.parse(&buf));
|
||||
EXPECT_EQ(0, (int)conf.name.length());
|
||||
EXPECT_EQ(0, (int)conf.args.size());
|
||||
EXPECT_EQ(1, (int)conf.directives.size());
|
||||
|
||||
SrsConfDirective& dir0 = *conf.directives.at(0);
|
||||
EXPECT_STREQ("dir0", dir0.name.c_str());
|
||||
EXPECT_EQ(0, (int)dir0.args.size());
|
||||
EXPECT_EQ(2, (int)dir0.directives.size());
|
||||
EXPECT_EQ(1, (int)dir0.conf_line);
|
||||
|
||||
SrsConfDirective& dir1 = *dir0.directives.at(0);
|
||||
EXPECT_STREQ("dir1", dir1.name.c_str());
|
||||
EXPECT_EQ(1, (int)dir1.args.size());
|
||||
EXPECT_STREQ("arg0", dir1.arg0().c_str());
|
||||
EXPECT_EQ(0, (int)dir1.directives.size());
|
||||
EXPECT_EQ(3, (int)dir1.conf_line);
|
||||
|
||||
SrsConfDirective& dir2 = *dir0.directives.at(1);
|
||||
EXPECT_STREQ("dir2", dir2.name.c_str());
|
||||
EXPECT_EQ(1, (int)dir2.args.size());
|
||||
EXPECT_STREQ("arg1", dir2.arg0().c_str());
|
||||
EXPECT_EQ(0, (int)dir2.directives.size());
|
||||
EXPECT_EQ(5, (int)dir2.conf_line);
|
||||
HELPER_ASSERT_FAILED(conf.parse(&buf));
|
||||
}
|
||||
|
||||
VOID TEST(ConfigDirectiveTest, ParseLineNormal)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue