summaryrefslogtreecommitdiff
path: root/core/fs/fs.c
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2012-03-07 15:18:51 +0000
committerMatt Fleming <matt.fleming@intel.com>2012-03-23 16:56:16 +0000
commit2fb06e3ff4cad75633c78f56f99b4b3e3652b633 (patch)
tree67152777af6c4fee41982b07b21e959a726fe254 /core/fs/fs.c
parentdb63acbdcd3603bbd42238dac19902ce00fe5d59 (diff)
downloadsyslinux-2fb06e3ff4cad75633c78f56f99b4b3e3652b633.tar.gz
ldlinux: Avoid initialised data memory corruption
We can't realloc() 'PATH' because realloc() may just extend the malloc'd region if the adjacent region is free, as opposed to allocating a new region and then copying the data. This behaviour is fine in most circumstances but not with initialised string data, such as 'PATH'. The reason is that other string data pointers may point to characters in 'PATH' and if we modify it after realloc()'ing, we'll appear to corrupt unrelated string data. For example, the string "/" is used in chdir() and the address of that string is the last "/" in 'PATH'. If we realloc() and then append "foo" to 'PATH' the string pointer in chdir() will now point to "/foo". Initialise 'PATH' at runtime using malloc() and free() to avoid corrupting string data. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'core/fs/fs.c')
-rw-r--r--core/fs/fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fs/fs.c b/core/fs/fs.c
index a4fb4f77..d8f8660c 100644
--- a/core/fs/fs.c
+++ b/core/fs/fs.c
@@ -8,7 +8,7 @@
#include "fs.h"
#include "cache.h"
-char *PATH = ".:/bin/";
+char *PATH;
/* The currently mounted filesystem */
struct fs_info *this_fs = NULL; /* Root filesystem */