EExxtteerrnnaall DDaattaa RReepprreesseennttaattiioonn SSttaannddaarrdd:: PPrroottooccooll SSppeecciiffiiccaa-- ttiioonn 11.. SSttaattuuss ooff tthhiiss SSttaannddaarrdd Note: This chapter specifies a protocol that Sun Microsys- tems, Inc., and others are using. It has been designated RFC1014 by the ARPA Network Information Center. 22.. IInnttrroodduuccttiioonn XDR is a standard for the description and encoding of data. It is useful for transferring data between different com- puter architectures, and has been used to communicate data between such diverse machines as the Sun Workstation, VAX, IBM-PC, and Cray. XDR fits into the ISO presentation layer, and is roughly analogous in purpose to X.409, ISO Abstract Syntax Notation. The major difference between these two is that XDR uses implicit typing, while X.409 uses explicit typing. XDR uses a language to describe data formats. The language can only be used only to describe data; it is not a program- ming language. This language allows one to describe intri- cate data formats in a concise manner. The alternative of using graphical representations (itself an informal lan- guage) quickly becomes incomprehensible when faced with com- plexity. The XDR language itself is similar to the C lan- guage [1], just as Courier [4] is similar to Mesa. Protocols such as Sun RPC (Remote Procedure Call) and the NFS (Network File System) use XDR to describe the format of their data. The XDR standard makes the following assumption: that bytes (or octets) are portable, where a byte is defined to be 8 bits of data. A given hardware device should encode the bytes onto the various media in such a way that other hard- ware devices may decode the bytes without loss of meaning. For example, the Ethernet standard suggests that bytes be encoded in "little-endian" style [2], or least significant bit first. 22..11.. BBaassiicc BBlloocckk SSiizzee The representation of all items requires a multiple of four bytes (or 32 bits) of data. The bytes are numbered 0 through n-1. The bytes are read or written to some byte stream such that byte m always precedes byte m+1. If the n bytes needed to contain the data are not a multiple of four, then the n bytes are followed by enough (0 to 3) residual zero bytes, r, to make the total byte count a multiple of 4. We include the familiar graphic box notation for illustra- tion and comparison. In most illustrations, each box - 1 - Page 2 External Data Representation Standard (delimited by a plus sign at the 4 corners and vertical bars and dashes) depicts a byte. Ellipses (...) between boxes show zero or more additional bytes where required. _A _B_l_o_c_k +--------+--------+...+--------+--------+...+--------+ | byte 0 | byte 1 |...|byte n-1| 0 |...| 0 | +--------+--------+...+--------+--------+...+--------+ |<-----------n bytes---------->|<------r bytes------>| |<-----------n+r (where (n+r) mod 4 = 0)>----------->| 33.. XXDDRR DDaattaa TTyyppeess Each of the sections that follow describes a data type defined in the XDR standard, shows how it is declared in the language, and includes a graphic illustration of its encod- ing. For each data type in the language we show a general paradigm declaration. Note that angle brackets (< and >) denote variable length sequences of data and square brackets ([ and ]) denote fixed-length sequences of data. "n", "m" and "r" denote integers. For the full language specifica- tion and more formal definitions of terms such as "identi- fier" and "declaration", refer to _T_h_e _X_D_R _L_a_n_g_u_a_g_e _S_p_e_c_i_f_i_- _c_a_t_i_o_n, below. For some data types, more specific examples are included. A more extensive example of a data description is in _A_n _E_x_a_m_- _p_l_e _o_f _a_n _X_D_R _D_a_t_a _D_e_s_c_r_i_p_t_i_o_n below. 33..11.. IInntteeggeerr An XDR signed integer is a 32-bit datum that encodes an integer in the range [-2147483648,2147483647]. The integer is represented in two's complement notation. The most and least significant bytes are 0 and 3, respectively. Integers are declared as follows: _I_n_t_e_g_e_r (MSB) (LSB) +-------+-------+-------+-------+ |byte 0 |byte 1 |byte 2 |byte 3 | +-------+-------+-------+-------+ <------------32 bits------------> External Data Representation Standard Page 3 33..22.. UUnnssiiggnneedd IInntteeggeerr An XDR unsigned integer is a 32-bit datum that encodes a nonnegative integer in the range [0,4294967295]. It is rep- resented by an unsigned binary number whose most and least significant bytes are 0 and 3, respectively. An unsigned integer is declared as follows: _U_n_s_i_g_n_e_d _I_n_t_e_g_e_r (MSB) (LSB) +-------+-------+-------+-------+ |byte 0 |byte 1 |byte 2 |byte 3 | +-------+-------+-------+-------+ <------------32 bits------------> 33..33.. EEnnuummeerraattiioonn Enumerations have the same representation as signed inte- gers. Enumerations are handy for describing subsets of the integers. Enumerated data is declared as follows: enum { name-identifier = constant, ... } identifier; For example, the three colors red, yellow, and blue could be described by an enumerated type: enum { RED = 2, YELLOW = 3, BLUE = 5 } colors; It is an error to encode as an enum any other integer than those that have been given assignments in the enum declara- tion. 33..44.. BBoooolleeaann Booleans are important enough and occur frequently enough to warrant their own explicit type in the standard. Booleans are declared as follows: bool identifier; This is equivalent to: enum { FALSE = 0, TRUE = 1 } identifier; 33..55.. HHyyppeerr IInntteeggeerr aanndd UUnnssiiggnneedd HHyyppeerr IInntteeggeerr The standard also defines 64-bit (8-byte) numbers called hyper integer and unsigned hyper integer. Their representa- tions are the obvious extensions of integer and unsigned integer defined above. They are represented in two's com- plement notation. The most and least significant bytes are Page 4 External Data Representation Standard 0 and 7, respectively. Their declarations: _H_y_p_e_r _I_n_t_e_g_e_r _U_n_s_i_g_n_e_d _H_y_p_e_r _I_n_t_e_g_e_r (MSB) (LSB) +-------+-------+-------+-------+-------+-------+-------+-------+ |byte 0 |byte 1 |byte 2 |byte 3 |byte 4 |byte 5 |byte 6 |byte 7 | +-------+-------+-------+-------+-------+-------+-------+-------+ <----------------------------64 bits----------------------------> 33..66.. FFllooaattiinngg--ppooiinntt The standard defines the floating-point data type "float" (32 bits or 4 bytes). The encoding used is the IEEE stan- dard for normalized single-precision floating-point numbers [3]. The following three fields describe the single-preci- sion floating-point number: SS: The sign of the number. Values 0 and 1 represent positive and negative, respectively. One bit. EE: The exponent of the number, base 2. 8 bits are devoted to this field. The exponent is biased by 127. FF: The fractional part of the number's mantissa, base 2. 23 bits are devoted to this field. Therefore, the floating-point number is described by: (-1)**S * 2**(E-Bias) * 1.F It is declared as follows: _S_i_n_g_l_e_-_P_r_e_c_i_s_i_o_n _F_l_o_a_t_i_n_g_-_P_o_i_n_t +-------+-------+-------+-------+ |byte 0 |byte 1 |byte 2 |byte 3 | S| E | F | +-------+-------+-------+-------+ 1|<- 8 ->|<-------23 bits------>| <------------32 bits------------> Just as the most and least significant bytes of a number are 0 and 3, the most and least significant bits of a single- precision floating- point number are 0 and 31. The begin- ning bit (and most significant bit) offsets of S, E, and F are 0, 1, and 9, respectively. Note that these numbers refer to the mathematical positions of the bits, and NOT to their actual physical locations (which vary from medium to medium). External Data Representation Standard Page 5 The IEEE specifications should be consulted concerning the encoding for signed zero, signed infinity (overflow), and denormalized numbers (underflow) [3]. According to IEEE specifications, the "NaN" (not a number) is system dependent and should not be used externally. 33..77.. DDoouubbllee--pprreecciissiioonn FFllooaattiinngg--ppooiinntt The standard defines the encoding for the double-precision floating- point data type "double" (64 bits or 8 bytes). The encoding used is the IEEE standard for normalized dou- ble-precision floating-point numbers [3]. The standard encodes the following three fields, which describe the dou- ble-precision floating-point number: SS: The sign of the number. Values 0 and 1 repre- sent positive and negative, respectively. One bit. EE: The exponent of the number, base 2. 11 bits are devoted to this field. The exponent is biased by 1023. FF: The fractional part of the number's mantissa, base 2. 52 bits are devoted to this field. Therefore, the floating-point number is described by: (-1)**S * 2**(E-Bias) * 1.F It is declared as follows: _D_o_u_b_l_e_-_P_r_e_c_i_s_i_o_n _F_l_o_a_t_i_n_g_-_P_o_i_n_t +------+------+------+------+------+------+------+------+ |byte 0|byte 1|byte 2|byte 3|byte 4|byte 5|byte 6|byte 7| S| E | F | +------+------+------+------+------+------+------+------+ 1|<--11-->|<-----------------52 bits------------------->| <-----------------------64 bits-------------------------> Just as the most and least significant bytes of a number are 0 and 3, the most and least significant bits of a double- precision floating- point number are 0 and 63. The begin- ning bit (and most significant bit) offsets of S, E , and F are 0, 1, and 12, respectively. Note that these numbers refer to the mathematical positions of the bits, and NOT to their actual physical locations (which vary from medium to medium). The IEEE specifications should be consulted concerning the encoding for signed zero, signed infinity (overflow), and denormalized numbers (underflow) [3]. According to IEEE specifications, the "NaN" (not a number) is system dependent Page 6 External Data Representation Standard and should not be used externally. 33..88.. FFiixxeedd--lleennggtthh OOppaaqquuee DDaattaa At times, fixed-length uninterpreted data needs to be passed among machines. This data is called "opaque" and is declared as follows: opaque identifier[n]; where the constant n is the (static) number of bytes neces- sary to contain the opaque data. If n is not a multiple of four, then the n bytes are followed by enough (0 to 3) residual zero bytes, r, to make the total byte count of the opaque object a multiple of four. _F_i_x_e_d_-_L_e_n_g_t_h _O_p_a_q_u_e 0 1 ... +--------+--------+...+--------+--------+...+--------+ | byte 0 | byte 1 |...|byte n-1| 0 |...| 0 | +--------+--------+...+--------+--------+...+--------+ |<-----------n bytes---------->|<------r bytes------>| |<-----------n+r (where (n+r) mod 4 = 0)------------>| 33..99.. VVaarriiaabbllee--lleennggtthh OOppaaqquuee DDaattaa The standard also provides for variable-length (counted) opaque data, defined as a sequence of n (numbered 0 through n-1) arbitrary bytes to be the number n encoded as an unsigned integer (as described below), and followed by the n bytes of the sequence. Byte m of the sequence always precedes byte m+1 of the sequence, and byte 0 of the sequence always follows the sequence's length (count). enough (0 to 3) residual zero bytes, r, to make the total byte count a multiple of four. Variable-length opaque data is declared in the following way: opaque identifier; or opaque identifier<>; The constant m denotes an upper bound of the number of bytes that the sequence may contain. If m is not specified, as in the second declaration, it is assumed to be (2**32) - 1, the maximum length. The constant m would normally be found in a protocol specification. For example, a filing protocol may state that the maximum data transfer size is 8192 bytes, as follows: External Data Representation Standard Page 7 opaque filedata<8192>; This can be illustrated as follows: _V_a_r_i_a_b_l_e_-_L_e_n_g_t_h _O_p_a_q_u_e 0 1 2 3 4 5 ... +-----+-----+-----+-----+-----+-----+...+-----+-----+...+-----+ | length n |byte0|byte1|...| n-1 | 0 |...| 0 | +-----+-----+-----+-----+-----+-----+...+-----+-----+...+-----+ |<-------4 bytes------->|<------n bytes------>|<---r bytes--->| |<----n+r (where (n+r) mod 4 = 0)---->| It is an error to encode a length greater than the maximum described in the specification. 33..1100.. SSttrriinngg The standard defines a string of n (numbered 0 through n-1) ASCII bytes to be the number n encoded as an unsigned inte- ger (as described above), and followed by the n bytes of the string. Byte m of the string always precedes byte m+1 of the string, and byte 0 of the string always follows the string's length. If n is not a multiple of four, then the n bytes are followed by enough (0 to 3) residual zero bytes, r, to make the total byte count a multiple of four. Counted byte strings are declared as follows: string object; or string object<>; The constant m denotes an upper bound of the number of bytes that a string may contain. If m is not specified, as in the second declaration, it is assumed to be (2**32) - 1, the maximum length. The constant m would normally be found in a protocol specification. For example, a filing protocol may state that a file name can be no longer than 255 bytes, as follows: string filename<255>; Which can be illustrated as: Page 8 External Data Representation Standard _A _S_t_r_i_n_g 0 1 2 3 4 5 ... +-----+-----+-----+-----+-----+-----+...+-----+-----+...+-----+ | length n |byte0|byte1|...| n-1 | 0 |...| 0 | +-----+-----+-----+-----+-----+-----+...+-----+-----+...+-----+ |<-------4 bytes------->|<------n bytes------>|<---r bytes--->| |<----n+r (where (n+r) mod 4 = 0)---->| It is an error to encode a length greater than the maximum described in the specification. 33..1111.. FFiixxeedd--lleennggtthh AArrrraayy Declarations for fixed-length arrays of homogeneous elements are in the following form: type-name identifier[n]; Fixed-length arrays of elements numbered 0 through n-1 are encoded by individually encoding the elements of the array in their natural order, 0 through n-1. Each element's size is a multiple of four bytes. Though all elements are of the same type, the elements may have different sizes. For exam- ple, in a fixed-length array of strings, all elements are of type "string", yet each element will vary in its length. _F_i_x_e_d_-_L_e_n_g_t_h _A_r_r_a_y +---+---+---+---+---+---+---+---+...+---+---+---+---+ | element 0 | element 1 |...| element n-1 | +---+---+---+---+---+---+---+---+...+---+---+---+---+ |<--------------------n elements------------------->| 33..1122.. VVaarriiaabbllee--lleennggtthh AArrrraayy Counted arrays provide the ability to encode variable-length arrays of homogeneous elements. The array is encoded as the element count n (an unsigned integer) followed by the encod- ing of each of the array's elements, starting with element 0 and progressing through element n- 1. The declaration for variable-length arrays follows this form: type-name identifier; or type-name identifier<>; The constant m specifies the maximum acceptable element count of an array; if m is not specified, as in the second declaration, it is assumed to be (2**32) - 1. External Data Representation Standard Page 9 _C_o_u_n_t_e_d _A_r_r_a_y 0 1 2 3 +--+--+--+--+--+--+--+--+--+--+--+--+...+--+--+--+--+ | n | element 0 | element 1 |...|element n-1| +--+--+--+--+--+--+--+--+--+--+--+--+...+--+--+--+--+ |<-4 bytes->|<--------------n elements------------->| It is an error to encode a value of n that is greater than the maximum described in the specification. 33..1133.. SSttrruuccttuurree Structures are declared as follows: struct { component-declaration-A; component-declaration-B; ... } identifier; The components of the structure are encoded in the order of their declaration in the structure. Each component's size is a multiple of four bytes, though the components may be different sizes. _S_t_r_u_c_t_u_r_e +-------------+-------------+... | component A | component B |... +-------------+-------------+... 33..1144.. DDiissccrriimmiinnaatteedd UUnniioonn A discriminated union is a type composed of a discriminant followed by a type selected from a set of prearranged types according to the value of the discriminant. The type of discriminant is either "int", "unsigned int", or an enumer- ated type, such as "bool". The component types are called "arms" of the union, and are preceded by the value of the discriminant which implies their encoding. Discriminated unions are declared as follows: union switch (discriminant-declaration) { case discriminant-value-A: arm-declaration-A; case discriminant-value-B: arm-declaration-B; ... default: default-declaration; } identifier; Each "case" keyword is followed by a legal value of the Page 10 External Data Representation Standard discriminant. The default arm is optional. If it is not specified, then a valid encoding of the union cannot take on unspecified discriminant values. The size of the implied arm is always a multiple of four bytes. The discriminated union is encoded as its discriminant fol- lowed by the encoding of the implied arm. _D_i_s_c_r_i_m_i_n_a_t_e_d _U_n_i_o_n 0 1 2 3 +---+---+---+---+---+---+---+---+ | discriminant | implied arm | +---+---+---+---+---+---+---+---+ |<---4 bytes--->| 33..1155.. VVooiidd An XDR void is a 0-byte quantity. Voids are useful for describing operations that take no data as input or no data as output. They are also useful in unions, where some arms may contain data and others do not. The declaration is sim- ply as follows: void; Voids are illustrated as follows: _V_o_i_d ++ || ++ --><-- 0 bytes 33..1166.. CCoonnssttaanntt The data declaration for a constant follows this form: const name-identifier = n; "const" is used to define a symbolic name for a constant; it does not declare any data. The symbolic constant may be used anywhere a regular constant may be used. For example, the following defines a symbolic constant DOZEN, equal to 12. const DOZEN = 12; External Data Representation Standard Page 11 33..1177.. TTyyppeeddeeff "typedef" does not declare any data either, but serves to define new identifiers for declaring data. The syntax is: typedef declaration; The new type name is actually the variable name in the dec- laration part of the typedef. For example, the following defines a new type called "eggbox" using an existing type called "egg": typedef egg eggbox[DOZEN]; Variables declared using the new type name have the same type as the new type name would have in the typedef, if it was considered a variable. For example, the following two declarations are equivalent in declaring the variable "fresheggs": eggbox fresheggs; egg fresheggs[DOZEN]; When a typedef involves a struct, enum, or union definition, there is another (preferred) syntax that may be used to define the same type. In general, a typedef of the follow- ing form: typedef <> identifier; may be converted to the alternative form by removing the "typedef" part and placing the identifier after the "struct", "union", or "enum" keyword, instead of at the end. For example, here are the two ways to define the type "bool": typedef enum { /* _u_s_i_n_g _t_y_p_e_d_e_f */ FALSE = 0, TRUE = 1 } bool; enum bool { /* _p_r_e_f_e_r_r_e_d _a_l_t_e_r_n_a_t_i_v_e */ FALSE = 0, TRUE = 1 }; The reason this syntax is preferred is one does not have to wait until the end of a declaration to figure out the name of the new type. 33..1188.. OOppttiioonnaall--ddaattaa Optional-data is one kind of union that occurs so frequently that we give it a special syntax of its own for declaring Page 12 External Data Representation Standard it. It is declared as follows: type-name *identifier; This is equivalent to the following union: union switch (bool opted) { case TRUE: type-name element; case FALSE: void; } identifier; It is also equivalent to the following variable-length array declaration, since the boolean "opted" can be interpreted as the length of the array: type-name identifier<1>; Optional-data is not so interesting in itself, but it is very useful for describing recursive data-structures such as linked-lists and trees. For example, the following defines a type "stringlist" that encodes lists of arbitrary length strings: struct *stringlist { string item<>; stringlist next; }; It could have been equivalently declared as the following union: union stringlist switch (bool opted) { case TRUE: struct { string item<>; stringlist next; } element; case FALSE: void; }; or as a variable-length array: struct stringlist<1> { string item<>; stringlist next; }; Both of these declarations obscure the intention of the stringlist type, so the optional-data declaration is pre- ferred over both of them. The optional-data type also has a close correlation to how recursive data structures are External Data Representation Standard Page 13 represented in high-level languages such as Pascal or C by use of pointers. In fact, the syntax is the same as that of the C language for pointers. 33..1199.. AArreeaass ffoorr FFuuttuurree EEnnhhaanncceemmeenntt The XDR standard lacks representations for bit fields and bitmaps, since the standard is based on bytes. Also missing are packed (or binary-coded) decimals. The intent of the XDR standard was not to describe every kind of data that people have ever sent or will ever want to send from machine to machine. Rather, it only describes the most commonly used data-types of high-level languages such as Pascal or C so that applications written in these lan- guages will be able to communicate easily over some medium. One could imagine extensions to XDR that would let it describe almost any existing protocol, such as TCP. The minimum necessary for this are support for different block sizes and byte-orders. The XDR discussed here could then be considered the 4-byte big-endian member of a larger XDR fam- ily. 44.. DDiissccuussssiioonn 44..11.. WWhhyy aa LLaanngguuaaggee ffoorr DDeessccrriibbiinngg DDaattaa?? There are many advantages in using a data-description lan- guage such as XDR versus using diagrams. Languages are more formal than diagrams and lead to less ambiguous descriptions of data. Languages are also easier to understand and allow one to think of other issues instead of the low-level details of bit-encoding. Also, there is a close analogy between the types of XDR and a high- level language such as C or Pascal. This makes the implementation of XDR encoding and decoding modules an easier task. Finally, the language specification itself is an ASCII string that can be passed from machine to machine to perform on-the-fly data interpretation. 44..22.. WWhhyy OOnnllyy oonnee BByyttee--OOrrddeerr ffoorr aann XXDDRR UUnniitt?? Supporting two byte-orderings requires a higher level proto- col for determining in which byte-order the data is encoded. Since XDR is not a protocol, this can't be done. The advan- tage of this, though, is that data in XDR format can be written to a magnetic tape, for example, and any machine will be able to interpret it, since no higher level protocol is necessary for determining the byte-order. Page 14 External Data Representation Standard 44..33.. WWhhyy ddooeess XXDDRR uussee BBiigg--EEnnddiiaann BByyttee--OOrrddeerr?? Yes, it is unfair, but having only one byte-order means you have to be unfair to somebody. Many architectures, such as the Motorola 68000 and IBM 370, support the big-endian byte- order. 44..44.. WWhhyy iiss tthhee XXDDRR UUnniitt FFoouurr BByytteess WWiiddee?? There is a tradeoff in choosing the XDR unit size. Choosing a small size such as two makes the encoded data small, but causes alignment problems for machines that aren't aligned on these boundaries. A large size such as eight means the data will be aligned on virtually every machine, but causes the encoded data to grow too big. We chose four as a com- promise. Four is big enough to support most architectures efficiently, except for rare machines such as the eight-byte aligned Cray. Four is also small enough to keep the encoded data restricted to a reasonable size. 44..55.. WWhhyy mmuusstt VVaarriiaabbllee--LLeennggtthh DDaattaa bbee PPaaddddeedd wwiitthh ZZeerrooss?? It is desirable that the same data encode into the same thing on all machines, so that encoded data can be meaning- fully compared or checksummed. Forcing the padded bytes to be zero ensures this. 44..66.. WWhhyy iiss tthheerree NNoo EExxpplliicciitt DDaattaa--TTyyppiinngg?? Data-typing has a relatively high cost for what small advan- tages it may have. One cost is the expansion of data due to the inserted type fields. Another is the added cost of interpreting these type fields and acting accordingly. And most protocols already know what type they expect, so data- typing supplies only redundant information. However, one can still get the benefits of data-typing using XDR. One way is to encode two things: first a string which is the XDR data description of the encoded data, and then the encoded data itself. Another way is to assign a value to all the types in XDR, and then define a universal type which takes this value as its discriminant and for each value, describes the corresponding data type. 55.. TThhee XXDDRR LLaanngguuaaggee SSppeecciiffiiccaattiioonn 55..11.. NNoottaattiioonnaall CCoonnvveennttiioonnss This specification uses an extended Backus-Naur Form nota- tion for describing the XDR language. Here is a brief description of the notation: 1. The characters _|, _(, _), _[, _], _, and _* are special. External Data Representation Standard Page 15 2. Terminal symbols are strings of any characters sur- rounded by double quotes. 3. Non-terminal symbols are strings of non-special charac- ters. 4. Alternative items are separated by a vertical bar ("_|"). 5. Optional items are enclosed in brackets. 6. Items are grouped together by enclosing them in paren- theses. 7. A _* following an item means 0 or more occurrences of that item. For example, consider the following pattern: "a " "very" (", " " very")* [" cold " "and"] " rainy " ("day" | "night") An infinite number of strings match this pattern. A few of them are: "a very rainy day" "a very, very rainy day" "a very cold and rainy day" "a very, very, very cold and rainy night" 55..22.. LLeexxiiccaall NNootteess 1. Comments begin with '/*' and terminate with '*/'. 2. White space serves to separate items and is otherwise ignored. 3. An identifier is a letter followed by an optional sequence of letters, digits or underbar ('_'). The case of identifiers is not ignored. 4. A constant is a sequence of one or more decimal digits, optionally preceded by a minus-sign ('-'). 55..33.. SSyynnttaaxx IInnffoorrmmaattiioonn Page 16 External Data Representation Standard 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" value: constant | identifier type-specifier: [ "unsigned" ] "int" | [ "unsigned" ] "hyper" | "float" | "double" | "bool" | enum-type-spec | struct-type-spec | union-type-spec | identifier enum-type-spec: "enum" enum-body enum-body: "{" ( identifier "=" value ) ( "," identifier "=" value )* "}" struct-type-spec: "struct" struct-body struct-body: "{" ( declaration ";" ) ( declaration ";" )* "}" External Data Representation Standard Page 17 union-type-spec: "union" union-body union-body: "switch" "(" declaration ")" "{" ( "case" value ":" declaration ";" ) ( "case" value ":" declaration ";" )* [ "default" ":" declaration ";" ] "}" constant-def: "const" identifier "=" constant ";" type-def: "typedef" declaration ";" | "enum" identifier enum-body ";" | "struct" identifier struct-body ";" | "union" identifier union-body ";" definition: type-def | constant-def specification: definition * 55..33..11.. SSyynnttaaxx NNootteess 1. The following are keywords and cannot be used as iden- tifiers: "bool", "case", "const", "default", "double", "enum", "float", "hyper", "opaque", "string", "struct", "switch", "typedef", "union", "unsigned" and "void". 2. Only unsigned constants may be used as size specifica- tions for arrays. If an identifier is used, it must have been declared previously as an unsigned constant in a "const" definition. 3. Constant and type identifiers within the scope of a specification are in the same name space and must be declared uniquely within this scope. 4. Similarly, variable names must be unique within the scope of struct and union declarations. Nested struct and union declarations create new scopes. 5. The discriminant of a union must be of a type that evaluates to an integer. That is, "int", "unsigned int", "bool", an enumerated type or any typedefed type that evaluates to one of these is legal. Also, the case values must be one of the legal values of the Page 18 External Data Representation Standard discriminant. Finally, a case value may not be speci- fied more than once within the scope of a union decla- ration. 66.. AAnn EExxaammppllee ooff aann XXDDRR DDaattaa DDeessccrriippttiioonn Here is a short XDR data description of a thing called a "file", which might be used to transfer files from one machine to another. const MAXUSERNAME = 32; /* _m_a_x _l_e_n_g_t_h _o_f _a _u_s_e_r _n_a_m_e */ const MAXFILELEN = 65535; /* _m_a_x _l_e_n_g_t_h _o_f _a _f_i_l_e */ const MAXNAMELEN = 255; /* _m_a_x _l_e_n_g_t_h _o_f _a _f_i_l_e _n_a_m_e */ _/_* _* _T_y_p_e_s _o_f _f_i_l_e_s_: _*_/ _e_n_u_m _f_i_l_e_k_i_n_d _{ _T_E_X_T _= _0_, _/_* _a_s_c_i_i _d_a_t_a _*_/ _D_A_T_A _= _1_, _/_* _r_a_w _d_a_t_a _*_/ _E_X_E_C _= _2 _/_* _e_x_e_c_u_t_a_b_l_e _*_/ _}_; _/_* _* _F_i_l_e _i_n_f_o_r_m_a_t_i_o_n_, _p_e_r _k_i_n_d _o_f _f_i_l_e_: _*_/ _u_n_i_o_n _f_i_l_e_t_y_p_e _s_w_i_t_c_h _(_f_i_l_e_k_i_n_d _k_i_n_d_) _{ _c_a_s_e _T_E_X_T_: _v_o_i_d_; _/_* _n_o _e_x_t_r_a _i_n_f_o_r_m_a_t_i_o_n _*_/ _c_a_s_e _D_A_T_A_: _s_t_r_i_n_g _c_r_e_a_t_o_r_<_M_A_X_N_A_M_E_L_E_N_>_; _/_* _d_a_t_a _c_r_e_a_t_o_r _*_/ _c_a_s_e _E_X_E_C_: _s_t_r_i_n_g _i_n_t_e_r_p_r_e_t_o_r_<_M_A_X_N_A_M_E_L_E_N_>_; _/_* _p_r_o_g_r_a_m _i_n_t_e_r_p_r_e_t_o_r _*_/ _}_; _/_* _* _A _c_o_m_p_l_e_t_e _f_i_l_e_: _*_/ _s_t_r_u_c_t _f_i_l_e _{ _s_t_r_i_n_g _f_i_l_e_n_a_m_e_<_M_A_X_N_A_M_E_L_E_N_>_; _/_* _n_a_m_e _o_f _f_i_l_e _*_/ _f_i_l_e_t_y_p_e _t_y_p_e_; _/_* _i_n_f_o _a_b_o_u_t _f_i_l_e _*_/ _s_t_r_i_n_g _o_w_n_e_r_<_M_A_X_U_S_E_R_N_A_M_E_>_; _/_* _o_w_n_e_r _o_f _f_i_l_e _*_/ _o_p_a_q_u_e _d_a_t_a_<_M_A_X_F_I_L_E_L_E_N_>_; _/_* _f_i_l_e _d_a_t_a _*_/ _}_; Suppose now that there is a user named "john" who wants to store his lisp program "sillyprog" that contains just the data "(quit)". His file would be encoded as follows: External Data Representation Standard Page 19 +-------------------------------------------------------------+ |_O_f_f_s_e_t _H_e_x _B_y_t_e_s _A_S_C_I_I _D_e_s_c_r_i_p_t_i_o_n | +-------------------------------------------------------------+ | 0 00 00 00 09 .... Length of filename = 9 | | 4 73 69 6c 6c sill Filename characters | | 8 79 70 72 6f ypro ... and more characters ... | | 12 67 00 00 00 g... ... and 3 zero-bytes of fill | | 16 00 00 00 02 .... Filekind is EXEC = 2 | | 20 00 00 00 04 .... Length of interpretor = 4 | | 24 6c 69 73 70 lisp Interpretor characters | | 28 00 00 00 04 .... Length of owner = 4 | | 32 6a 6f 68 6e john Owner characters | | 36 00 00 00 06 .... Length of file data = 6 | | 40 28 71 75 69 (qui File data bytes ... | | 44 74 29 00 00 t).. ... and 2 zero-bytes of fill | +-------------------------------------------------------------+ 77.. RReeffeerreenncceess [1] Brian W. Kernighan & Dennis M. Ritchie, "The C Program- ming Language", Bell Laboratories, Murray Hill, New Jersey, 1978. [2] Danny Cohen, "On Holy Wars and a Plea for Peace", IEEE Computer, October 1981. [3] "IEEE Standard for Binary Floating-Point Arithmetic", ANSI/IEEE Standard 754-1985, Institute of Electrical and Electronics Engineers, August 1985. [4] "Courier: The Remote Procedure Call Protocol", XEROX Corporation, XSIS 038112, December 1981.