Linux wireless drivers development
 help / color / mirror / Atom feed
From: Johannes Berg <johannes@sipsolutions.net>
To: Marcel Holtmann <marcel@holtmann.org>
Cc: Felix Fietkau <nbd@nbd.name>, linux-wireless@vger.kernel.org
Subject: Re: [PATCH v2] cfg80211: add local BSS receive time to survey information
Date: Wed, 28 Aug 2019 22:28:43 +0200	[thread overview]
Message-ID: <8fc1716ca0dd522b7149160be02aed5f8cd1c882.camel@sipsolutions.net> (raw)
In-Reply-To: <F130F474-2D74-4952-B94B-82200B1D6CB6@holtmann.org>

On Wed, 2019-08-28 at 22:24 +0200, Marcel Holtmann wrote:
> Hi Johannes,
> 
> > > > No, as usual, that would break ABI. PAD is a regular attribute, just
> > > > empty and ignored for aligning 64-bit values.
> > > 
> > > then I do not grok on how the nla_put_u64_64bit works, but that is
> > > fine.
> > > 
> > > I assumed these are similar to the NL80211_SURVEY_INFO_MAX which we
> > > also always move, but also not expected to be part of the API as a
> > > fixed value.
> > 
> > No no, the _MAX is just the token we use for knowing what we want as the
> > maximum when parsing etc.
> > 
> > The _PAD is actually a real attribute, basically nla_put_u64_64bit()
> > will do "nla_put_flag(_PAD)" if and only if "offset % 8 == 0", in order
> > to actually 64-bit align the 64-bit value in the following attribute.
> > 
> > (Note that offset % 8 can only be 0 or 4, due to the way netlink
> > attributes work.)
> 
> I get that part now. So the kernel is inserting a _PAD, but userspace
> is still not doing that. 

Yeah, and I forgot to say - if we renumbered _PAD, then newer userspace
would think old kernel's _PAD is really _BSS_RX, so things would break.

> So for NL80211_ATTR_WDEV we should be doing the same actually?

Not really. The kernel doesn't rely on it, nla_get_u64() uses
nla_memcpy() so doesn't care about alignment.

Even userspace doesn't (usually) rely on the alignment, it also
typically uses nla_get_u64() from libnl which also uses nla_memcpy() or
memcpy() (depending on the version), so it's all not really necessary.

I think some libraries or tools like maybe iproute2 didn't do it
correctly and just dereferenced a pointer there, causing alignment
violations, and so basically the decision was to get rid of unaligned
64-bit attributes to prevent that once and for all.

johannes


      reply	other threads:[~2019-08-28 20:28 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-28 10:20 [PATCH v2] cfg80211: add local BSS receive time to survey information Felix Fietkau
2019-08-28 17:25 ` Marcel Holtmann
2019-08-28 19:44   ` Johannes Berg
2019-08-28 19:52     ` Marcel Holtmann
2019-08-28 19:59       ` Johannes Berg
2019-08-28 20:24         ` Marcel Holtmann
2019-08-28 20:28           ` Johannes Berg [this message]

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=8fc1716ca0dd522b7149160be02aed5f8cd1c882.camel@sipsolutions.net \
    --to=johannes@sipsolutions.net \
    --cc=linux-wireless@vger.kernel.org \
    --cc=marcel@holtmann.org \
    --cc=nbd@nbd.name \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox