On Wed, 2020-04-01 at 13:09 +0200, Jiri Olsa wrote: > hi, > adding d_path helper to return full path for 'path' object. > > I originally added and used 'file_path' helper, which did the same, > but used 'struct file' object. Then realized that file_path is just > a wrapper for d_path, so we'd cover more calling sites if we add > d_path helper and allowed resolving BTF object within another object, > so we could call d_path also with file pointer, like: > > bpf_d_path(&file->f_path, buf, size); > > This feature is mainly to be able to add dpath (filepath originally) > function to bpftrace, which seems to work nicely now, like: > > # bpftrace -e 'kretfunc:fget { printf("%s\n", dpath(args->ret- > >f_path)); }' > > I'm not completely sure this is all safe and bullet proof and there's > no other way to do this, hence RFC post. > > I'd be happy also with file_path function, but I thought it'd be > a shame not to try to add d_path with the verifier change. > I'm open to any suggestions ;-) First of all I want to mention that we are really interested in this feature so thanks a lot for bringing it up Jiri! I have experimented with similar BPF helpers in the past few months so I hope my input can be helpful! :) One of our use-cases is to gather information about execution events, including a bunch of paths (such as the executable command, the resolved executable file path and the current-working-directory) and then output them to Perf. Each of those paths can be up to PATH_MAX(one page) long so we would pre-allocate a data structure with a few identifiers (to later reassemble the event from userspace) and a page of data and then we would output it using bpf_perf_event_output. However, with three mostly empty pages per event, we would quickly fill up the ring buffer and loose many events. This might be a bit out-of-scope at this moment but one of the teachings we got from playing with such a helper is that we would also need a helper for outputting strings to Perf, pre-pended with a header buffer.