Bug 1568 - Deserialized Addresses are implicitly marked as Mac48Address
Deserialized Addresses are implicitly marked as Mac48Address
Status: RESOLVED FIXED
Product: ns-3
Classification: Unclassified
Component: internet
ns-3-dev
All All
: P5 normal
Assigned To: George Riley
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2013-01-15 17:16 EST by Tommaso Pecorella
Modified: 2013-03-11 18:22 EDT (History)
2 users (show)

See Also:


Attachments
Bug fix (minimal changes option) (501 bytes, patch)
2013-01-15 17:25 EST, Tommaso Pecorella
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tommaso Pecorella 2013-01-15 17:16:57 EST
The Address class, once deserialized, can only be converted in a Mac48Address, as any other compatibility check will fail.

This problem affects how a shorter (or longer) address is read from an "ARP-like" protocol, as the Address will not have a proper "Type" (Type 0 is Mac48) and the Length will be depending on the padding. the "ARP-like" protocol deserialization doesn't know anything about the padding, so the address length is the maximum address length, instead of the actual address length.
Comment 1 Tommaso Pecorella 2013-01-15 17:25:32 EST
Created attachment 1500 [details]
Bug fix (minimal changes option)

This change fixes the issue, although it does allow a longer address to be converted in a shorter one, i.e., a Mac48 into a Mac16 (not viceversa).

Another option would be to reserve a type for the "unknown" address (the deserialized one), or to add a bool flag with the same purpose.
This approach, however, would be way more complex than the previous one and, tbh, I can't figure out when it would be necessary since the Address deserialization is basically handled only by ARP-like caches (ARP and Ndisc), and those are attached to a specific NetDevice, hence restricting the addresses to just one kind.

Well, that's not totally true, as 802.15.4 does have TWO addresses, however the cache will work only on one address kind, unless one is crazy enough to use both 64 and 16 bit addresses on the same PAN with IPv6 running on both, which is a crazy idea.

Nevertheless, I could come up with a cleaner patch, if necessary, but it would be more complex.
Comment 2 Tommaso Pecorella 2013-03-10 12:17:51 EDT
I checked and the "other option" is indeed already in place.
Every address has a "Type" (e.g., Mac48Address::GetType()) starting from 1, whereas the type 0 is reserved for unknown addresses. Hence, the proposed solution is indeed the only possible one.

Rationale of the proposed change: when an Address is deserialized from a packet it could have a length greater than its size due to the padding. The proposed change allows to convert an unknown address to any address that is shorter, provided that its type is unknown.
In other terms: suppose that an address is carried in an Icmpv6OptionLinkLayerAddress, which has a padding of x bits. Due to the particular padding (it's bit padding), a Mac16 and a Mac48 address will *both* be deserialized in an Address which is 6 bytes long. Without the patch the Mac16 can not be converted. A Mac64 will, viceversa, would be converted only in a Mac112 (which doesn't exist).

Any more elaborate (and foolproof) solution would imply to assume how the padding is applied, which is not possible as it's protocol-dependent.

The drawbacks of the patch are: it is possible to misinterpret a Mac address. On the other hand this shouldn't be possible as a network will usually use only one Mac address kind. The only (to my best knowledge) net that does that is 802.15.4, however IPv6 is used only with one kind of address, not both. Hence, the problem shouldn't hit.
Comment 3 Tom Henderson 2013-03-11 08:49:12 EDT
OK, can you also add a comment for future maintainer's sake such as 

// Mac address type/length detection is discussed in bug 1568
Comment 4 Tommaso Pecorella 2013-03-11 09:09:54 EDT
(In reply to comment #3)
> OK, can you also add a comment for future maintainer's sake such as 
> 
> // Mac address type/length detection is discussed in bug 1568

Of course. If George is ok with the patch I'll push it with the comment in the code.

T.
Comment 5 Tommaso Pecorella 2013-03-11 18:11:45 EDT
Fixed in changeset 9251:7c3f81b720a7
Comment 6 Tommaso Pecorella 2013-03-11 18:22:49 EDT
Actually fixed in changeset 9252:9fe4804d5c25

Plus, the applied change is a bit more stringent on the requirements (only a just deserialized address can be longer).
The actual test is:
(m_len == len && m_type == type) || (m_len >= len && m_type == 0)

T.