1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-16 05:00:35 +00:00

Make reading of environment variable safer

This commit is contained in:
Carles Fernandez 2018-05-21 21:27:06 +02:00
parent 5722a3f9aa
commit bbaa660f66
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -56,6 +56,7 @@
#include <stdexcept>
#include <cstdio>
#include <cstdlib> // for getenv()
#include <cstring> // for strncpy
#include <cmath>
#include <list> // for std::list
@ -1962,15 +1963,20 @@ bool Gnuplot::get_program_path()
char *path;
// Retrieves a C string containing the value of environment variable PATH
path = std::getenv("PATH");
if (path == NULL || std::char_traits<char>::length(path) > 4096 * sizeof(char))
char secured_path[4096];
size_t len = strlen(path);
if (path && len < 4046 * sizeof(char))
{
throw GnuplotException("Path is not set");
strncpy(secured_path, path, len);
}
else
{
throw GnuplotException("Path is not set or it is too long");
}
secured_path[len] = '\0';
std::string path_str(secured_path);
std::list<std::string> ls;
std::string path_str(path);
//split path (one long string) into list ls of strings
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__TOS_WIN__)
@ -1999,7 +2005,6 @@ bool Gnuplot::get_program_path()
Gnuplot::m_sGNUPlotPath + "\"";
Gnuplot::m_sGNUPlotPath = "";
throw GnuplotException(tmp);
}
}