Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 323753
b: refs/heads/master
c: d54b1a9
h: refs/heads/master
i:
  323751: 1718fa1
v: v3
  • Loading branch information
David Ahern authored and Arnaldo Carvalho de Melo committed Sep 5, 2012
1 parent a7740b8 commit 543904e
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cc58482133296f52873be909a2795f6d934ecec9
refs/heads/master: d54b1a9e0eaca92cde678d19bd82b9594ed00450
60 changes: 41 additions & 19 deletions trunk/tools/perf/builtin-script.c
Original file line number Diff line number Diff line change
Expand Up @@ -1153,18 +1153,23 @@ static const struct option options[] = {
OPT_END()
};

static bool have_cmd(int argc, const char **argv)
static int have_cmd(int argc, const char **argv)
{
char **__argv = malloc(sizeof(const char *) * argc);

if (!__argv)
die("malloc");
if (!__argv) {
pr_err("malloc failed\n");
return -1;
}

memcpy(__argv, argv, sizeof(const char *) * argc);
argc = parse_options(argc, (const char **)__argv, record_options,
NULL, PARSE_OPT_STOP_AT_NON_OPTION);
free(__argv);

return argc != 0;
system_wide = (argc == 0);

return 0;
}

int cmd_script(int argc, const char **argv, const char *prefix __used)
Expand Down Expand Up @@ -1231,13 +1236,13 @@ int cmd_script(int argc, const char **argv, const char *prefix __used)

if (pipe(live_pipe) < 0) {
perror("failed to create pipe");
exit(-1);
return -1;
}

pid = fork();
if (pid < 0) {
perror("failed to fork");
exit(-1);
return -1;
}

if (!pid) {
Expand All @@ -1249,13 +1254,18 @@ int cmd_script(int argc, const char **argv, const char *prefix __used)
if (is_top_script(argv[0])) {
system_wide = true;
} else if (!system_wide) {
system_wide = !have_cmd(argc - rep_args,
&argv[rep_args]);
if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
err = -1;
goto out;
}
}

__argv = malloc((argc + 6) * sizeof(const char *));
if (!__argv)
die("malloc");
if (!__argv) {
pr_err("malloc failed\n");
err = -ENOMEM;
goto out;
}

__argv[j++] = "/bin/sh";
__argv[j++] = rec_script_path;
Expand All @@ -1277,8 +1287,12 @@ int cmd_script(int argc, const char **argv, const char *prefix __used)
close(live_pipe[1]);

__argv = malloc((argc + 4) * sizeof(const char *));
if (!__argv)
die("malloc");
if (!__argv) {
pr_err("malloc failed\n");
err = -ENOMEM;
goto out;
}

j = 0;
__argv[j++] = "/bin/sh";
__argv[j++] = rep_script_path;
Expand All @@ -1303,12 +1317,20 @@ int cmd_script(int argc, const char **argv, const char *prefix __used)

if (!rec_script_path)
system_wide = false;
else if (!system_wide)
system_wide = !have_cmd(argc - 1, &argv[1]);
else if (!system_wide) {
if (have_cmd(argc - 1, &argv[1]) != 0) {
err = -1;
goto out;
}
}

__argv = malloc((argc + 2) * sizeof(const char *));
if (!__argv)
die("malloc");
if (!__argv) {
pr_err("malloc failed\n");
err = -ENOMEM;
goto out;
}

__argv[j++] = "/bin/sh";
__argv[j++] = script_path;
if (system_wide)
Expand Down Expand Up @@ -1357,18 +1379,18 @@ int cmd_script(int argc, const char **argv, const char *prefix __used)
input = open(session->filename, O_RDONLY); /* input_name */
if (input < 0) {
perror("failed to open file");
exit(-1);
return -1;
}

err = fstat(input, &perf_stat);
if (err < 0) {
perror("failed to stat file");
exit(-1);
return -1;
}

if (!perf_stat.st_size) {
fprintf(stderr, "zero-sized file, nothing to do!\n");
exit(0);
return 0;
}

scripting_ops = script_spec__lookup(generate_script_lang);
Expand Down

0 comments on commit 543904e

Please sign in to comment.