perf buildid-cache: Zero out buffer of filenames when adding/removing buildid
The readlink() function doesn't append a null byte to buf. So we should zero out buf with zalloc(). Or we'll see sometimes error like this: [root@intel-s3e36-01]~# /usr/bin/perf buildid-cache -a /lib/modules/2.6.32-130.el6.x86_64/kernel/crypto/twofish_common.ko -v Adding f64ba8efd5f53c7ad332fc17db1d21de309038e1 /lib/modules/2.6.32-130.el6.x86_64/kernel/crypto/twofish_common.ko: Ok [root@intel-s3e36-01]~# /usr/bin/perf buildid-cache -r /lib/modules/2.6.32-130.el6.x86_64/kernel/crypto/twofish_common.ko -v Removing f64ba8efd5f53c7ad332fc17db1d21de309038e1 /lib/modules/2.6.32-130.el6.x86_64/kernel/crypto/twofish_common.ko: FAIL /lib/modules/2.6.32-130.el6.x86_64/kernel/crypto/twofish_common.ko wasn't in the cache The change in build_id_cache__add_s() is a defense. Tested-by: Jiri Olsa <jolsa@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Link: http://lkml.kernel.org/r/20110718031314.GA5802@hpt.nay.redhat.com Signed-off-by: Han Pingtian <phan@redhat.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
7fcfd1abd6
commit
4f9bae351d
1 changed files with 4 additions and 4 deletions
|
@ -189,8 +189,8 @@ int build_id_cache__add_s(const char *sbuild_id, const char *debugdir,
|
||||||
const char *name, bool is_kallsyms)
|
const char *name, bool is_kallsyms)
|
||||||
{
|
{
|
||||||
const size_t size = PATH_MAX;
|
const size_t size = PATH_MAX;
|
||||||
char *realname, *filename = malloc(size),
|
char *realname, *filename = zalloc(size),
|
||||||
*linkname = malloc(size), *targetname;
|
*linkname = zalloc(size), *targetname;
|
||||||
int len, err = -1;
|
int len, err = -1;
|
||||||
|
|
||||||
if (is_kallsyms) {
|
if (is_kallsyms) {
|
||||||
|
@ -254,8 +254,8 @@ static int build_id_cache__add_b(const u8 *build_id, size_t build_id_size,
|
||||||
int build_id_cache__remove_s(const char *sbuild_id, const char *debugdir)
|
int build_id_cache__remove_s(const char *sbuild_id, const char *debugdir)
|
||||||
{
|
{
|
||||||
const size_t size = PATH_MAX;
|
const size_t size = PATH_MAX;
|
||||||
char *filename = malloc(size),
|
char *filename = zalloc(size),
|
||||||
*linkname = malloc(size);
|
*linkname = zalloc(size);
|
||||||
int err = -1;
|
int err = -1;
|
||||||
|
|
||||||
if (filename == NULL || linkname == NULL)
|
if (filename == NULL || linkname == NULL)
|
||||||
|
|
Loading…
Add table
Reference in a new issue