* [PATCH] android/system-emulator: Allow to run daemon without valgrind
@ 2014-06-16 14:25 Szymon Janc
2014-06-17 9:11 ` Szymon Janc
0 siblings, 1 reply; 2+ messages in thread
From: Szymon Janc @ 2014-06-16 14:25 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
If valgrind is not present on system start bluetoothd directly instead
of failing silently.
---
android/system-emulator.c | 35 +++++++++++++++++++++++++++++------
1 file changed, 29 insertions(+), 6 deletions(-)
diff --git a/android/system-emulator.c b/android/system-emulator.c
index c1b1b25..4d41fce 100644
--- a/android/system-emulator.c
+++ b/android/system-emulator.c
@@ -47,14 +47,10 @@ static char exec_dir[PATH_MAX + 1];
static pid_t daemon_pid = -1;
static pid_t snoop_pid = -1;
-static void ctl_start(void)
+static void run_valgrind(char *prg_name)
{
- char prg_name[PATH_MAX + 1];
char *prg_argv[6];
char *prg_envp[3];
- pid_t pid;
-
- snprintf(prg_name, sizeof(prg_name), "%s/%s", exec_dir, "bluetoothd");
prg_argv[0] = "/usr/bin/valgrind";
prg_argv[1] = "--leak-check=full";
@@ -67,6 +63,30 @@ static void ctl_start(void)
prg_envp[1] = "G_DEBUG=gc-friendly";
prg_envp[2] = NULL;
+ execve(prg_argv[0], prg_argv, prg_envp);
+}
+
+static void run_bluetoothd(char *prg_name)
+{
+ char *prg_argv[3];
+ char *prg_envp[1];
+
+ prg_argv[0] = prg_name;
+ prg_argv[1] = "-d";
+ prg_argv[2] = NULL;
+
+ prg_envp[0] = NULL;
+
+ execve(prg_argv[0], prg_argv, prg_envp);
+}
+
+static void ctl_start(void)
+{
+ char prg_name[PATH_MAX + 1];
+ pid_t pid;
+
+ snprintf(prg_name, sizeof(prg_name), "%s/%s", exec_dir, "bluetoothd");
+
printf("Starting %s\n", prg_name);
pid = fork();
@@ -76,7 +96,10 @@ static void ctl_start(void)
}
if (pid == 0) {
- execve(prg_argv[0], prg_argv, prg_envp);
+ run_valgrind(prg_name);
+
+ /* Fallback to no valgrind if running with valgind failed */
+ run_bluetoothd(prg_name);
exit(0);
}
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] android/system-emulator: Allow to run daemon without valgrind
2014-06-16 14:25 [PATCH] android/system-emulator: Allow to run daemon without valgrind Szymon Janc
@ 2014-06-17 9:11 ` Szymon Janc
0 siblings, 0 replies; 2+ messages in thread
From: Szymon Janc @ 2014-06-17 9:11 UTC (permalink / raw)
To: linux-bluetooth
On Monday 16 of June 2014 16:25:48 Szymon Janc wrote:
> If valgrind is not present on system start bluetoothd directly instead
> of failing silently.
> ---
> android/system-emulator.c | 35 +++++++++++++++++++++++++++++------
> 1 file changed, 29 insertions(+), 6 deletions(-)
>
> diff --git a/android/system-emulator.c b/android/system-emulator.c
> index c1b1b25..4d41fce 100644
> --- a/android/system-emulator.c
> +++ b/android/system-emulator.c
> @@ -47,14 +47,10 @@ static char exec_dir[PATH_MAX + 1];
> static pid_t daemon_pid = -1;
> static pid_t snoop_pid = -1;
>
> -static void ctl_start(void)
> +static void run_valgrind(char *prg_name)
> {
> - char prg_name[PATH_MAX + 1];
> char *prg_argv[6];
> char *prg_envp[3];
> - pid_t pid;
> -
> - snprintf(prg_name, sizeof(prg_name), "%s/%s", exec_dir, "bluetoothd");
>
> prg_argv[0] = "/usr/bin/valgrind";
> prg_argv[1] = "--leak-check=full";
> @@ -67,6 +63,30 @@ static void ctl_start(void)
> prg_envp[1] = "G_DEBUG=gc-friendly";
> prg_envp[2] = NULL;
>
> + execve(prg_argv[0], prg_argv, prg_envp);
> +}
> +
> +static void run_bluetoothd(char *prg_name)
> +{
> + char *prg_argv[3];
> + char *prg_envp[1];
> +
> + prg_argv[0] = prg_name;
> + prg_argv[1] = "-d";
> + prg_argv[2] = NULL;
> +
> + prg_envp[0] = NULL;
> +
> + execve(prg_argv[0], prg_argv, prg_envp);
> +}
> +
> +static void ctl_start(void)
> +{
> + char prg_name[PATH_MAX + 1];
> + pid_t pid;
> +
> + snprintf(prg_name, sizeof(prg_name), "%s/%s", exec_dir, "bluetoothd");
> +
> printf("Starting %s\n", prg_name);
>
> pid = fork();
> @@ -76,7 +96,10 @@ static void ctl_start(void)
> }
>
> if (pid == 0) {
> - execve(prg_argv[0], prg_argv, prg_envp);
> + run_valgrind(prg_name);
> +
> + /* Fallback to no valgrind if running with valgind failed */
> + run_bluetoothd(prg_name);
> exit(0);
> }
>
>
Applied.
--
Best regards,
Szymon Janc
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-06-17 9:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-16 14:25 [PATCH] android/system-emulator: Allow to run daemon without valgrind Szymon Janc
2014-06-17 9:11 ` Szymon Janc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox