summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/config.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2011-08-10 10:20:52 +0200
committerIngo Molnar <mingo@elte.hu>2011-08-10 10:20:52 +0200
commit7676ebbaf21c3828e6315baadb6fcde448aa79b4 (patch)
treef940029a96b3d82b84a4433d1e2b917ff1d2b166 /tools/perf/util/config.c
parente710574de10b181c159a67af75af0245de33a4b9 (diff)
parent981c1252691f4b855f2bb47ea93fb6052ea3aee2 (diff)
downloadop-kernel-dev-7676ebbaf21c3828e6315baadb6fcde448aa79b4.zip
op-kernel-dev-7676ebbaf21c3828e6315baadb6fcde448aa79b4.tar.gz
Merge branch 'perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent
Diffstat (limited to 'tools/perf/util/config.c')
-rw-r--r--tools/perf/util/config.c27
1 files changed, 23 insertions, 4 deletions
diff --git a/tools/perf/util/config.c b/tools/perf/util/config.c
index 6c86eca..fe02903 100644
--- a/tools/perf/util/config.c
+++ b/tools/perf/util/config.c
@@ -413,13 +413,32 @@ int perf_config(config_fn_t fn, void *data)
home = getenv("HOME");
if (perf_config_global() && home) {
char *user_config = strdup(mkpath("%s/.perfconfig", home));
- if (!access(user_config, R_OK)) {
- ret += perf_config_from_file(fn, user_config, data);
- found += 1;
+ struct stat st;
+
+ if (user_config == NULL) {
+ warning("Not enough memory to process %s/.perfconfig, "
+ "ignoring it.", home);
+ goto out;
+ }
+
+ if (stat(user_config, &st) < 0)
+ goto out_free;
+
+ if (st.st_uid && (st.st_uid != geteuid())) {
+ warning("File %s not owned by current user or root, "
+ "ignoring it.", user_config);
+ goto out_free;
}
+
+ if (!st.st_size)
+ goto out_free;
+
+ ret += perf_config_from_file(fn, user_config, data);
+ found += 1;
+out_free:
free(user_config);
}
-
+out:
if (found == 0)
return -1;
return ret;
OpenPOWER on IntegriCloud