Re: [PATCH v2 1/2] ring-buffer: Introducing ring-buffer mapping functions

From: Vincent Donnefort
Date: Wed Mar 29 2023 - 09:31:19 EST


On Wed, Mar 29, 2023 at 09:11:07AM -0400, Steven Rostedt wrote:
> On Wed, 29 Mar 2023 14:01:01 +0100
> Vincent Donnefort <vdonnefort@xxxxxxxxxx> wrote:
>
> > > Oh, I guess we should also expose the amount read on the reader page,
> > > that gets updated on the ioctl. That is, if the first time we read the
> > > reader page and the page is not full and unmap the pages, and then new
> > > events were added to the reader page, we should not re-read the events
> > > that were read previously.
> > >
> > > That is, expose cpu_buffer->reader_page->read
> >
> > Couldn't it be an issue of updating cpu_buffer->reader_page->read during the
> > ioctl? I guess we would write the value of the current written events on that
> > page, hopping for the userspace reader to read it all.
> >
> > But then if new events are written, the reader doesn't need the ioctl to read
> > them, it can just check the meta->entries field or the commit field in the
> > reader_page header?
> >
> > So it's much likely cpu_buffer->reader_page->read will go out of sync?
>
> Here's the issue I found during testing:
>
> write 10 events to ring buffer (all go into the reader page)
>
> Run application that maps the pages, and reads the 10 events, and exits.
>
> Write 10 more events to ring buffer (all are appended to the reader page)
>
> Run application that maps the pages and reads 20 events, and exits.
>
> It read the 10 previous events, but should not have. It should have
> only read the last 10 that were not read previously.

I see.

We can say we update cpu_buffer->reader_page->read on the get_reader_page ioctl,
to the most recent value possible, which will have the consequence of actually
"flushing" those events?

If the reader decides to read events past this value then it just can't expect
them to not be duplicated?

I suppose it'd be down the reader to store meta->read somehwere?

prev_read = meta->read
ioctl(fd, TRACE_MMAP_IOCTL_GET_READER_PAGE)
/* read events from prev_read to meta->read */


>
> -- Steve