Internet-Draft | Abbreviated Title | March 2025 |
Royer | Expires 24 September 2025 | [Page] |
This is an extension to the XDR specification to allow for bits to be described and sent.¶
With protocols that have a large number of boolean values the existing standard requires each to be individually packed into a 32-bit value.¶
This addition does not alter any existing XDR data streams or effect existing implementations.¶
While in draft status, a new Open Source XDR generation tool is being developed [xdrgen].¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 24 September 2025.¶
Copyright (c) 2025 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
Definitions:¶
A value with 2 or more bits is called a bit-value.¶
A bit-value value can be signed or unsigned. They often represent a set of possible conditions and not a numeric value and would be unsigned. And in other usages, the bits could represent a positive or negative value.¶
All multi bit width values are placed into network byte order the same as their 32-bit or wider values as described in XDR [RFC4506].¶
With an large amount of bits and data packets it is easier to have name collisions between generated object. For this reason a new 'namespace' declaration' type is specified in Section 4¶
A new RFC-XDR type-specifier of 'bitobject' is added to the one shown in Section 6.3 of [RFC4506]. Resulting in 'type-specifier' becoming:¶
type-specifier: [ "unsigned" ] "int" | [ "unsigned" ] "hyper" | "float" | "double" | "quadruple" | "bool" | enum-type-spec | struct-type-spec | union-type-spec | identifier | bitobject
The properties of a bitobject are:¶
A bitobject only consists of one or more of:¶
bitobject: "{" ( width-declaration ";" ) ( width-declaration ";" )* "}" width-declaration: "bit" identifier "sbits" identifier ":" %d "ubits" identifier ":" %d
Figure 3 is one example of a bitobject. that is 32-bits wide.¶
bitobject AssemblyLineStatus { bit LightOn; ubits Status:3; ubits SwitchPosition:4; sbits Rotation:10; bit Active; ubits UnitsPerMinute:8; ubits UnitID:5; };
Example Figure 4 uses 11 bit-boolean values and would be transmitted in one 32-bit block.¶
bitobject EmailStatus { bit Seen:1; bit Answered:1; bit Flagged:1 bit Deleted:1 bit Draft:1 bit Recent:1 bit Forwarded:1 bit Ignored:1 bit Watched:1 bit Shared:1 bit ReadOnly:1 };
Example Figure 5 contains two 42 bit-boolean values and would be transmitted in three 32-bit blocks.¶
bitobject Trajectory { ubits Velocity:42; sbits VectorX:14; sbits VectorY:14; sbits VectorZ:14; };
In some cases, like in Figure 3 "AssemblyLineStatus" and in Figure 5 "Trajectory", the bits could represent the output of a hardware device where the bits are defined by a manufacturer.¶
And in other cases the bits could be logical software flags that have a predefined bit-position in a bit stream as exampled in Figure 4.¶
The bit-boolean and bit-value objects are processed from the top to the bottom as shown in their bitobject XDR language definition.¶
The top most value would be packed into the least significant bits. The second from the top value would be placed next to it, and so on.¶
bit-values are converted to network byte order and then bit packed.¶
And a caution to the implementors for signed bit-value data. Many computer languages will convert a narrower bit value into a wider bit value and move the sign bit to the most significant position. So when preparing a signed bit-value, be sure to clamp the value and adjust the sign to the correct bit position before packing the bits. This would apply to "sbits" and not "ubits".¶
This is how the XDR Language bitobject "EmailStatus" in Figure 4 would be packed. "EmailStatus" is a bitobject that only contains bit-boolean values.¶
This example has both bit-boolean and bit-value data being packed together.¶
Here is how the XDR Language bitobject "AssemblyLineStatus" shown in Figure 3 would be packed:¶
This shows how to pack values that are wider than 32-bits.¶
The values would be converted to network byte order like with [RFC4506], Section 4.5 Hyper Integer and Unsigned Hyper Integer values. With their values clamped to the width defined and sbits values having their sign at their own most significant bit position.¶
Here is how the XDR Language bitobject "Trajectory" shown in Figure 5 would be packed into three 32-bit XDR blocks:¶
The middle signification 32-bit block of "Trajectory" would have:¶
When gathering specifications and definitions from multiple specifications it can be much more convenient to be able to name each identifier in a way the most resembles the original specification. However it can be confusing to uniquely identify them in generated code, and match them up to the XDR Language file that generated them.¶
For this reason a new 'namespace' declaration type is being defined.¶
namespace = 'namespace' identifier *( ':' identifier) ';'
A namespace may have several scope levels. Each scope name separated by a colon (:).¶
As each 'namespace' is encountered, all objects that follow will be in that scoped namespace. Zero or more 'namespaces' declarations may be in one XDR Language source.¶
Section 6.3 of [RFC4506] 'declaration' is modified to:¶
declaration: type-specifier identifier | type-specifier identifier "[" value "]" | type-specifier identifier "<" [ value ] ">" | "opaque" identifier "[" value "]" | "opaque" identifier "<" [ value ] ">" | "string" identifier "<" [ value ] ">" | type-specifier "*" identifier | "void" | namespace
Examples:¶
namespace ietf:xdr:example_namespace; namespace RiverExplorer:Phoenix:xdrgen;
Multiple namespaces in one definition could look like this:¶
namespace MyCompany:LauchPad; bitobject Status { bit OffLine; bit LightOn; ubits Status:3; ubits SwitchPosition:4; sbits Rotation:10; bit Active; ubits UnitsPerMinute:8; ubits UnitID:5; }; namspace MyCompany:Projectile; bitobject Status { bit OffLine; ubits Status:3; sbits Rotation:14; ubits Velocity:42; sbits VectorX:14; sbits VectorY:14; sbits VectorZ:14; };
The result would be two 'Status' data types. They are similar, and unique. Perhaps they came from different specifications. And each uniquely identifiable by their scope. And the variables produced could be referenced with:¶
This also makes it easier to identify an object in an XDR Section 4.15 of [RFC4506] union:¶
Multiple namespaces used in one definition could look like this:¶
enum Type = { LaunchPadType = 1, ProjectileType = 2 }; union ObjectStatus (Type WhichType) { case LaunchPadType: MyCompany:LaunchPad:Status PadStatus; case ProjectilePadType: MyCompany:ProjectilePad:Status ProjectileStatus; default: void; };
This memo includes no request to IANA. [CHECK]¶
This document should not affect the security of the Internet. [CHECK]¶
TODO¶