All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org,
	Sirisha Gandikota <Sirisha.Gandikota@intel.com>
Subject: Re: [PATCH v3 i-g-t] aubdump: add --command option to stream aubdump to another program
Date: Thu, 6 Oct 2016 13:57:14 +0100	[thread overview]
Message-ID: <673e9bf9-be84-632a-6d5c-c1c4261384a3@intel.com> (raw)
In-Reply-To: <20161006124626.GM4329@intel.com>

On 06/10/16 13:46, Ville Syrjälä wrote:
> On Thu, Oct 06, 2016 at 11:13:22AM +0100, Lionel Landwerlin wrote:
>> This comes handy if you want to look at your application output without
>> having to save it into a file. For example, use this with aubinator from
>> Mesa :
>>
>> $ intel_aubdump -c '/path/to/aubinator --gen=hsw' my_gl_app
> Why not just write to stdout so you could just pipe it to something else?

Most of the applications I've dealt with end writing on stdout as well :(

>
>> v2: Fix handling empty command line option
>>
>> v3: Fix command line concatenation (again...)
>>
>> Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
>> Cc: Sirisha Gandikota <Sirisha.Gandikota@intel.com>
>> ---
>>   tools/aubdump.c        | 107 ++++++++++++++++++++++++++++++++++++++++---------
>>   tools/intel_aubdump.in |  31 +++++++++++++-
>>   2 files changed, 117 insertions(+), 21 deletions(-)
>>
>> diff --git a/tools/aubdump.c b/tools/aubdump.c
>> index 30dc742..3b85bc7 100644
>> --- a/tools/aubdump.c
>> +++ b/tools/aubdump.c
>> @@ -50,6 +50,7 @@ static int (*libc_close)(int fd) = close_init_helper;
>>   static int (*libc_ioctl)(int fd, unsigned long request, ...) = ioctl_init_helper;
>>
>>   static int drm_fd = -1;
>> +static char *command;
>>   static char *filename;
>>   static FILE *file;
>>   static int gen = 0;
>> @@ -113,6 +114,82 @@ fail_if(int cond, const char *format, ...)
>>   	raise(SIGTRAP);
>>   }
>>
>> +static FILE *
>> +launch_command(void)
>> +{
>> +	int i = 0, fds[2];
>> +	char **args = calloc(strlen(command), sizeof(char *));
>> +	char *iter = command;
>> +
>> +	args[i++] = iter = command;
>> +
>> +	while ((iter = strstr(iter, ",")) != NULL) {
>> +		*iter = '\0';
>> +		iter += 1;
>> +		args[i++] = iter;
>> +	}
>> +
>> +	if (pipe(fds) == -1)
>> +		return NULL;
>> +
>> +	switch (fork()) {
>> +	case 0:
>> +		dup2(fds[0], 0);
>> +		fail_if(execv(args[0], args) == -1,
>> +			"intel_aubdump: fail to launch child command\n");
>> +		return NULL;
>> +
>> +	default:
>> +		free(args);
>> +		return fdopen(fds[1], "w");
>> +
>> +	case -1:
>> +		return NULL;
>> +	}
>> +}
>> +
>> +static void
>> +maybe_init_output(void)
>> +{
>> +	const char *args;
>> +	static bool initialized = false;
>> +	int nb_args;
>> +
>> +	if (initialized)
>> +		return;
>> +
>> +	args = getenv("INTEL_AUBDUMP_ARGS");
>> +
>> +	nb_args = sscanf(args, "verbose=%d;file=%m[^;];device=%i;command=%m[^;];",
>> +			 &verbose, &filename, &device, &command);
>> +	if (nb_args != 4) {
>> +		if (filename)
>> +			free(filename);
>> +		nb_args = sscanf(args, "verbose=%d;file=%m[^;];device=%i;",
>> +				 &verbose, &filename, &device);
>> +		command = strdup("");
>> +	}
>> +        fail_if(filename == NULL || command == NULL,
>> +                "intel_aubdump: out of memory\n");
>> +	if (device)
>> +		device_override = true;
>> +
>> +	bos = malloc(MAX_BO_COUNT * sizeof(bos[0]));
>> +	fail_if(bos == NULL, "intel_aubdump: out of memory\n");
>> +
>> +        if (strlen(command) != 0) {
>> +          file = launch_command();
>> +          fail_if(file == NULL,
>> +                  "intel_aubdump: failed to launch command '%s'\n", command);
>> +        } else {
>> +          file = fopen(filename, "w+");
>> +          fail_if(file == NULL,
>> +                  "intel_aubdump: failed to open file '%s'\n", filename);
>> +        }
>> +
>> +	initialized = true;
>> +}
>> +
>>   static struct bo *
>>   get_bo(uint32_t handle)
>>   {
>> @@ -140,13 +217,18 @@ align_u64(uint64_t v, uint64_t a)
>>   static void
>>   dword_out(uint32_t data)
>>   {
>> -	fwrite(&data, 1, 4, file);
>> +	fail_if(fwrite(&data, 1, 4, file) == 0,
>> +		"Writing to output failed\n");
>>   }
>>
>>   static void
>>   data_out(const void *data, size_t size)
>>   {
>> -	fwrite(data, 1, size, file);
>> +	if (size == 0)
>> +		return;
>> +
>> +	fail_if(fwrite(data, 1, size, file) == 0,
>> +		"Writing to output failed\n");
>>   }
>>
>>   static void
>> @@ -447,6 +529,8 @@ ioctl(int fd, unsigned long request, ...)
>>   	}
>>
>>   	if (fd == drm_fd) {
>> +		maybe_init_output();
>> +
>>   		switch (request) {
>>   		case DRM_IOCTL_I915_GETPARAM: {
>>   			struct drm_i915_getparam *getparam = argp;
>> @@ -550,26 +634,8 @@ ioctl(int fd, unsigned long request, ...)
>>   static void
>>   init(void)
>>   {
>> -	const char *args = getenv("INTEL_AUBDUMP_ARGS");
>> -
>>   	libc_close = dlsym(RTLD_NEXT, "close");
>>   	libc_ioctl = dlsym(RTLD_NEXT, "ioctl");
>> -	fail_if(libc_close == NULL || libc_ioctl == NULL,
>> -		"intel_aubdump: failed to get libc ioctl or close\n");
>> -
>> -	if (sscanf(args, "verbose=%d;file=%m[^;];device=%i",
>> -		   &verbose, &filename, &device) != 3)
>> -		filename = strdup("intel.aub");
>> -	fail_if(filename == NULL, "intel_aubdump: out of memory\n");
>> -
>> -	if (device)
>> -		device_override = true;
>> -
>> -	bos = malloc(MAX_BO_COUNT * sizeof(bos[0]));
>> -	fail_if(bos == NULL, "intel_aubdump: out of memory\n");
>> -
>> -	file = fopen(filename, "w+");
>> -	fail_if(file == NULL, "intel_aubdump: failed to open file '%s'\n", filename);
>>   }
>>
>>   static int
>> @@ -596,6 +662,7 @@ ioctl_init_helper(int fd, unsigned long request, ...)
>>   static void __attribute__ ((destructor))
>>   fini(void)
>>   {
>> +	free(command);
>>   	free(filename);
>>   	if (file)
>>   		fclose(file);
>> diff --git a/tools/intel_aubdump.in b/tools/intel_aubdump.in
>> index feee23a..8adf4a5 100644
>> --- a/tools/intel_aubdump.in
>> +++ b/tools/intel_aubdump.in
>> @@ -10,6 +10,9 @@ contents and execution of the GEM application.
>>
>>     -o, --output=FILE  Name of AUB file. Defaults to COMMAND.aub
>>
>> +  -c, --command=CMD  Execute CMD and write the AUB file's content to its
>> +                     standard input
>> +
>>         --device=ID    Override PCI ID of the reported device
>>
>>     -v                 Enable verbose output
>> @@ -23,6 +26,19 @@ EOF
>>
>>   verbose=0
>>   device=0
>> +file="intel.aub"
>> +command=""
>> +
>> +build_command () {
>> +    command=""
>> +    for i in $1; do
>> +        if [ -z $command ]; then
>> +            command=$i
>> +        else
>> +            command="$command,$i"
>> +        fi;
>> +    done
>> +}
>>
>>   while true; do
>>         case "$1" in
>> @@ -42,6 +58,14 @@ while true; do
>>   	      file=${1##--output=}
>>   	      shift
>>   	      ;;
>> +	  -c)
>> +              build_command "$2"
>> +	      shift 2
>> +	      ;;
>> +	  --command=*)
>> +              build_command "${1##--command=}"
>> +	      shift
>> +	      ;;
>>   	  --device=*)
>>   	      device=${1##--device=}
>>   	      shift
>> @@ -72,6 +96,11 @@ prefix=@prefix@
>>   exec_prefix=@exec_prefix@
>>   libdir=@libdir@
>>
>> +ARGS="verbose=$verbose;file=$file;device=$device"
>> +if [ ! -z $command ]; then
>> +   ARGS="$ARGS;command=$command;"
>> +fi
>> +
>>   LD_PRELOAD=${libdir}/intel_aubdump.so${LD_PPRELOAD:+:${LD_PRELOAD}} \
>> -	  INTEL_AUBDUMP_ARGS="verbose=$verbose;file=$file;device=$device" \
>> +         INTEL_AUBDUMP_ARGS="$ARGS" \
>>   	  exec -- "$@"
>> --
>> 2.9.3
>> _______________________________________________
>> Intel-gfx mailing list
>> Intel-gfx@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx


_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2016-10-06 12:57 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-04 14:21 [PATCH] aubdump: add --command option to stream aubdump to another program Lionel Landwerlin
2016-10-05 22:48 ` [PATCH i-g-t 1/2] aubdump: remove already handled -o Lionel Landwerlin
2016-10-05 22:48   ` [PATCH v2 i-g-t 2/2] aubdump: add --command option to stream aubdump to another program Lionel Landwerlin
2016-10-06 10:13     ` [PATCH v3 i-g-t] " Lionel Landwerlin
2016-10-06 12:46       ` Ville Syrjälä
2016-10-06 12:57         ` Lionel Landwerlin [this message]
2016-10-06 10:25     ` [PATCH v2 i-g-t 2/2] " Petri Latvala
2016-10-06  9:09   ` [PATCH i-g-t 1/2] aubdump: remove already handled -o Petri Latvala
2016-10-06  9:16     ` Lionel Landwerlin
2016-11-01 18:15 ` [PATCH v3 i-g-t 1/2] tools: intel_aubdump: pass configuration through file descriptor Lionel Landwerlin
2016-11-01 18:15   ` [PATCH v4 i-g-t 2/2] aubdump: add --command option to stream aubdump to another program Lionel Landwerlin
2016-11-01 21:40     ` Gandikota, Sirisha
2016-11-01 21:41   ` [PATCH v3 i-g-t 1/2] tools: intel_aubdump: pass configuration through file descriptor Gandikota, Sirisha

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=673e9bf9-be84-632a-6d5c-c1c4261384a3@intel.com \
    --to=lionel.g.landwerlin@intel.com \
    --cc=Sirisha.Gandikota@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=ville.syrjala@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.