lkml.org 
[lkml]   [2020]   [Jun]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    From
    SubjectRe: redundant check in make_data_reusable(): was [PATCH v2 2/3] printk: add lockless buffer
    Date
    On 2020-06-10, Petr Mladek <pmladek@suse.com> wrote:
    >> >> --- /dev/null
    >> >> +++ b/kernel/printk/printk_ringbuffer.c
    >> >> +/*
    >> >> + * Given a data ring (text or dict), put the associated descriptor of each
    >> >> + * data block from @lpos_begin until @lpos_end into the reusable state.
    >> >> + *
    >>>> + * If there is any problem making the associated descriptor reusable, either
    >>>> + * the descriptor has not yet been committed or another writer task has
    >>>> + * already pushed the tail lpos past the problematic data block. Regardless,
    >>>> + * on error the caller can re-load the tail lpos to determine the situation.
    >>>> + */
    >>>> +static bool data_make_reusable(struct printk_ringbuffer *rb,
    >>>> + struct prb_data_ring *data_ring,
    >>>> + unsigned long lpos_begin,
    >>>> + unsigned long lpos_end,
    >>>> + unsigned long *lpos_out)
    >>>> +{
    >>>> + struct prb_desc_ring *desc_ring = &rb->desc_ring;
    >>>> + struct prb_data_blk_lpos *blk_lpos;
    >>>> + struct prb_data_block *blk;
    >>>> + unsigned long tail_lpos;
    >>>> + enum desc_state d_state;
    >>>> + struct prb_desc desc;
    >>>> + unsigned long id;
    >>>> +
    >>>> + /*
    >>>> + * Using the provided @data_ring, point @blk_lpos to the correct
    >>>> + * blk_lpos within the local copy of the descriptor.
    >>>> + */
    >>>> + if (data_ring == &rb->text_data_ring)
    >>>> + blk_lpos = &desc.text_blk_lpos;
    >>>> + else
    >>>> + blk_lpos = &desc.dict_blk_lpos;
    >>>> +
    >>>> + /* Loop until @lpos_begin has advanced to or beyond @lpos_end. */
    >>>> + while ((lpos_end - lpos_begin) - 1 < DATA_SIZE(data_ring)) {
    >>>> + blk = to_block(data_ring, lpos_begin);
    >>>> + id = READ_ONCE(blk->id); /* LMM(data_make_reusable:A) */
    >>>> +
    >>>> + /*
    >>>> + * Guarantee the block ID is loaded before checking the tail
    >>>> + * lpos. The loaded block ID can only be considered valid if
    >>>> + * the tail lpos has not overtaken @lpos_begin. This pairs
    >>>> + * with data_alloc:A.
    >>>> + *
    >>>> + * Memory barrier involvement:
    >>>> + *
    >>>> + * If data_make_reusable:A reads from data_alloc:B, then
    >>>> + * data_make_reusable:C reads from data_push_tail:D.
    >>>> + *
    >>>> + * Relies on:
    >>>> + *
    >>>> + * MB from data_push_tail:D to data_alloc:B
    >>>> + * matching
    >>>> + * RMB from data_make_reusable:A to data_make_reusable:C
    >>>> + *
    >>>> + * Note: data_push_tail:D and data_alloc:B can be different
    >>>> + * CPUs. However, the data_alloc:B CPU (which performs
    >>>> + * the full memory barrier) must have previously seen
    >>>> + * data_push_tail:D.
    >>>> + */
    >>>> + smp_rmb(); /* LMM(data_make_reusable:B) */
    >>>> +
    >>>> + tail_lpos = atomic_long_read(&data_ring->tail_lpos
    >>>> + ); /* LMM(data_make_reusable:C) */
    >>>> +
    >>>> + /*
    >>>> + * If @lpos_begin has fallen behind the tail lpos, the read
    >>>> + * block ID cannot be trusted. Fast forward @lpos_begin to the
    >>>> + * tail lpos and try again.
    >>>> + */
    >>>> + if (lpos_begin - tail_lpos >= DATA_SIZE(data_ring)) {
    >>>> + lpos_begin = tail_lpos;
    >>>> + continue;
    >>>> + }
    >>>
    >>> I am sorry if we have had this discussion already in past.
    >>
    >> We have [0]. (Search for "Ouch.")
    >
    > I see. Thanks a lot for the pointer.
    >
    >>> Well, it would just prove that it really needs a comment why this
    >>> check is necessary.
    >>
    >> The comment says why it is necessary. The previous read of the block ID
    >> cannot be trusted if the the tail has been pushed beyond it.
    >
    > Not really. The comment describes what the check does. But it does not
    > explain why it is needed. The reason might be described be something like:
    >
    > * Make sure that the id read from tail_lpos is really
    > * pointing to this lpos. The block might have been
    > * reused in the meantime. Make sure to do not make
    > * the new owner reusable.

    That is _not_ what this check is doing. I recommend looking closely at
    the example you posted. This is not about whether or not a descriptor is
    pointing to this lpos. In your example you showed that ID, state, and
    lpos values could all look good, but it is for the _new_ record and we
    should _not_ invalidate that one.

    We can detect the scenario you pointed out by verifying the tail has not
    moved beyond the data block that the ID was read from. The comment for
    this check says:

    If @lpos_begin has fallen behind the tail lpos,
    the read block ID cannot be trusted.

    This is exactly the why. It is only about whether we can trust that a
    non-garbage block ID was read. Or do you want me to add:

    ... because data read that is behind the tail lpos must be
    considered garbage.

    > But wait! This situation should get caught by the two existing descriptor
    > checks:
    >
    >> case desc_committed:
    >> /*
    >> * This data block is invalid if the descriptor
    >> * does not point back to it.
    >> */
    >> if (blk_lpos->begin != lpos_begin)
    >> return false;
    >> desc_make_reusable(desc_ring, id);
    >> break;
    >> case desc_reusable:
    >> /*
    >> * This data block is invalid if the descriptor
    >> * does not point back to it.
    >> */
    >> if (blk_lpos->begin != lpos_begin)
    >> return false;
    >> break;

    No. Your example showed that it is not caught here.

    > Here again the comments describe what the check does but not why.
    > I would write something like:
    >
    > /*
    > * The block might have already been
    > * reused. Make sure that the descriptor really
    > * points back to the checked lpos. It covers
    > * both situations. Random data might point to
    > * a valid descriptor just by chance. Or the block
    > * has been already reused by another descriptor.
    > */

    OK. I will expand the comments to something similar to this.

    > So, I think that the lpos range check is still redundant. We might
    > describe it as an extra paranoid check but I am not sure if it is
    > worth it.
    >
    > But I would remove it and keep the code "simple" and design "clear".
    > Well, I do not resist on it.

    If we remove it, we end up back at your bug report. ;-)

    John Ogness

    [0] https://lkml.kernel.org/r/87ftecy343.fsf@linutronix.de

    \
     
     \ /
      Last update: 2020-06-10 12:25    [W:4.815 / U:0.076 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site