aboutsummaryrefslogtreecommitdiffstats
path: root/erts/doc/src/erl_ext_dist.xml
blob: 2ac974f4970ad1460791b58c9a47f0cf9271f271 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE chapter SYSTEM "chapter.dtd">

<chapter>
  <header>
    <copyright>
      <year>2007</year>
      <year>2015</year>
      <holder>Ericsson AB, All Rights Reserved</holder>
    </copyright>
    <legalnotice>
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

  The Initial Developer of the Original Code is Ericsson AB.
    </legalnotice>

    <title>External Term Format</title>
    <prepared>Kenneth</prepared>
    <docno></docno>
    <date>2007-09-21</date>
    <rev>PA1</rev>
    <file>erl_ext_dist.xml</file>
  </header>

  <section>
    <title>Introduction</title>
    <p>
      The external term format is mainly used in the distribution 
      mechanism of Erlang.
    </p>
    <p>
      Since Erlang has a fixed number of types, there is no need for a 
      programmer to define a specification for the external format used 
      within some application.
      All Erlang terms has an external representation and the interpretation 
      of the different terms are application specific.
    </p>
    <p>
      In Erlang the BIF <seealso marker="erts:erlang#term_to_binary/1">term_to_binary/1,2</seealso> is used to convert a 
      term into the external format. 
      To convert binary data encoding a term the BIF
      <seealso marker="erts:erlang#binary_to_term/1">
	binary_to_term/1
      </seealso> 
      is used.
    </p>
    <p>
      The distribution does this implicitly when sending messages across 
      node boundaries.
    </p>
    <marker id="overall_format"/>
    <p>
      The overall format of the term format is:
    </p>
    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">1</cell>
	<cell align="center">N</cell>
      </row>
	  <row>
	    <cell align="center"><c>131</c></cell>
	    <cell align="center"><c>Tag</c></cell>
	    <cell align="center"><c>Data</c></cell>
	  </row>
    <tcaption></tcaption></table>
    <note>
    <p>
      When messages are
      <seealso marker="erl_dist_protocol#connected_nodes">passed between
      connected nodes</seealso> and a
      <seealso marker="#distribution_header">distribution
      header</seealso> is used, the first byte containing the version
      number (131) is omitted from the terms that follow the distribution
      header. This since
      the version number is implied by the version number in the
      distribution header.
    </p>
    </note>
    <p>
      A compressed term looks like this:
    </p>
    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">1</cell>
	<cell align="center">4</cell>
	<cell align="center">N</cell>
      </row>
      <row>
	<cell align="center">131</cell>
	<cell align="center">80</cell>
	<cell align="center">UncompressedSize</cell>
	<cell align="center">Zlib-compressedData</cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      Uncompressed Size (unsigned 32 bit integer in big-endian byte order)
      is the size of the data before it was compressed.
      The compressed data has the following format when it has been 
      expanded:
    </p>
    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">Uncompressed Size</cell>
      </row>
      <row>
	<cell align="center">Tag</cell>
	<cell align="center">Data</cell>
      </row>
    <tcaption></tcaption></table>
    <marker id="utf8_atoms"/>
    <note>
    <p>As of ERTS version 5.10 (OTP-R16) support
    for UTF-8 encoded atoms has been introduced in the external format.
    However, only characters that can be encoded using Latin1 (ISO-8859-1)
    are currently supported in atoms. The support for UTF-8 encoded atoms
    in the external format has been implemented in order to be able to support
    all Unicode characters in atoms in <em>some future release</em>.
    Until full Unicode support for
    atoms has been introduced, it is an <em>error</em> to pass atoms containing
    characters that cannot be encoded in Latin1, and <em>the behavior is
    undefined</em>.</p>
    <p>When the
    <seealso marker="erl_dist_protocol#dflags"><c>DFLAG_UTF8_ATOMS</c></seealso>
    distribution flag has been exchanged between both nodes in the
    <seealso marker="erl_dist_protocol#distribution_handshake">distribution handshake</seealso>,
    all atoms in the distribution header will be encoded in UTF-8; otherwise,
    all atoms in the distribution header will be encoded in Latin1. The two
    new tags <seealso marker="#ATOM_UTF8_EXT">ATOM_UTF8_EXT</seealso>, and
    <seealso marker="#SMALL_ATOM_UTF8_EXT">SMALL_ATOM_UTF8_EXT</seealso>
    will only be used if the <c>DFLAG_UTF8_ATOMS</c> distribution flag has
    been exchanged between nodes, or if an atom containing characters
    that cannot be encoded in Latin1 is encountered.
    </p>
    <p>The maximum number of allowed characters in an atom is 255. In the
    UTF-8 case each character may need 4 bytes to be encoded.
    </p>
    </note>
  </section>

  <section>  
    <title>Distribution header</title>
    <p>
      <marker id="distribution_header"/>
      As of erts version 5.7.2 the old atom cache protocol was
      dropped and a new one was introduced. This atom cache protocol
      introduced the distribution header. Nodes with erts versions
      earlier than 5.7.2 can still communicate with new nodes,
      but no distribution header and no atom cache will be used.</p>
    <p>
      The distribution header currently only contains an atom cache
      reference section, but could in the future contain more
      information. The distribution header precedes one or more Erlang
      terms on the external format. For more information see the
      documentation of the
      <seealso marker="erl_dist_protocol#connected_nodes">protocol between
      connected nodes</seealso> in the
      <seealso marker="erl_dist_protocol">distribution protocol</seealso>
      documentation.
    </p>
    <p>
      <seealso marker="#ATOM_CACHE_REF">ATOM_CACHE_REF</seealso>
      entries with corresponding <c>AtomCacheReferenceIndex</c> in terms
      encoded on the external format following a distribution header refers
      to the atom cache references made in the distribution header. The range
      is 0 &lt;= <c>AtomCacheReferenceIndex</c> &lt; 255, i.e., at most 255
      different atom cache references from the following terms can be made.
    </p>
    <p>
      The distribution header format is:
    </p>
    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">1</cell>
	<cell align="center">1</cell>
	<cell align="center">NumberOfAtomCacheRefs/2+1 | 0</cell>
	<cell align="center">N | 0</cell>
      </row>
      <row>
	<cell align="center"><c>131</c></cell>
	<cell align="center"><c>68</c></cell>
	<cell align="center"><c>NumberOfAtomCacheRefs</c></cell>
	<cell align="center"><c>Flags</c></cell>
	<cell align="center"><c>AtomCacheRefs</c></cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      <c>Flags</c> consists of <c>NumberOfAtomCacheRefs/2+1</c> bytes,
      unless <c>NumberOfAtomCacheRefs</c> is <c>0</c>. If
      <c>NumberOfAtomCacheRefs</c> is <c>0</c>, <c>Flags</c> and
      <c>AtomCacheRefs</c> are omitted. Each atom cache reference have
      a half byte flag field. Flags corresponding to a specific
      <c>AtomCacheReferenceIndex</c>, are located in flag byte number
      <c>AtomCacheReferenceIndex/2</c>. Flag byte 0 is the first byte
      after the <c>NumberOfAtomCacheRefs</c> byte. Flags for an even
      <c>AtomCacheReferenceIndex</c> are located in the least significant
      half byte and flags for an odd <c>AtomCacheReferenceIndex</c> are
      located in the most significant half byte.
    </p>
    <p>
      The flag field of an atom cache reference has the following
      format:
    </p>
    <table align="left">
      <row>
	<cell align="center">1 bit</cell>
	<cell align="center">3 bits</cell>
      </row>
      <row>
	<cell align="center"><c>NewCacheEntryFlag</c></cell>
	<cell align="center"><c>SegmentIndex</c></cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      The most significant bit is the <c>NewCacheEntryFlag</c>. If set,
      the corresponding cache reference is new. The three least
      significant bits are the <c>SegmentIndex</c> of the corresponding
      atom cache entry. An atom cache consists of 8 segments each of size
      256, i.e., an atom cache can contain 2048 entries.
    </p>
    <p>
      After flag fields for atom cache references, another half byte flag
      field is located which has the following format:
    </p>
    <table align="left">
      <row>
	<cell align="center">3 bits</cell>
	<cell align="center">1 bit</cell>
      </row>
      <row>
	<cell align="center"><c>CurrentlyUnused</c></cell>
	<cell align="center"><c>LongAtoms</c></cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      The least significant bit in that half byte is the <c>LongAtoms</c>
      flag. If it is set, 2 bytes are used for atom lengths instead of
      1 byte in the distribution header.
    </p>
    <p>
      After the <c>Flags</c> field follow the <c>AtomCacheRefs</c>. The
      first <c>AtomCacheRef</c> is the one corresponding to
      <c>AtomCacheReferenceIndex</c> 0. Higher indices follows
      in sequence up to index <c>NumberOfAtomCacheRefs - 1</c>.
    </p>
    <p>
      If the <c>NewCacheEntryFlag</c> for the next <c>AtomCacheRef</c> has
      been set, a <c>NewAtomCacheRef</c> on the following format will follow:
    </p>
    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">1 | 2</cell>
	<cell align="center">Length</cell>
      </row>
      <row>
	<cell align="center"><c>InternalSegmentIndex</c></cell>
	<cell align="center"><c>Length</c></cell>
	<cell align="center"><c>AtomText</c></cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      <c>InternalSegmentIndex</c> together with the <c>SegmentIndex</c>
      completely identify the location of an atom cache entry in the
      atom cache. <c>Length</c> is number of bytes that <c>AtomText</c>
      consists of. Length is a two byte big endian integer
      if the <c>LongAtoms</c> flag has been set, otherwise a one byte
      integer. When the
      <seealso marker="erl_dist_protocol#dflags"><c>DFLAG_UTF8_ATOMS</c></seealso>
      distribution flag has been exchanged between both nodes in the
      <seealso marker="erl_dist_protocol#distribution_handshake">distribution handshake</seealso>,
      characters in <c>AtomText</c> is encoded in UTF-8; otherwise,
      encoded in Latin1. Subsequent <c>CachedAtomRef</c>s with the same
      <c>SegmentIndex</c> and <c>InternalSegmentIndex</c> as this
      <c>NewAtomCacheRef</c> will refer to this atom until a new
      <c>NewAtomCacheRef</c> with the same <c>SegmentIndex</c>
      and <c>InternalSegmentIndex</c> appear.
    </p>
    <p>
      For more information on encoding of atoms, see
      <seealso marker="#utf8_atoms">note on UTF-8 encoded atoms</seealso>
      in the beginning of this document.
    </p>
    <p>
      If the <c>NewCacheEntryFlag</c> for the next <c>AtomCacheRef</c>
      has not been set, a <c>CachedAtomRef</c> on the following format
      will follow:
    </p>
    <table align="left">
      <row>
	<cell align="center">1</cell>
      </row>
      <row>
	<cell align="center"><c>InternalSegmentIndex</c></cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      <c>InternalSegmentIndex</c> together with the <c>SegmentIndex</c>
      identify the location of the atom cache entry in the atom cache.
      The atom corresponding to this <c>CachedAtomRef</c> is the
      latest <c>NewAtomCacheRef</c> preceding this <c>CachedAtomRef</c>
      in another previously passed distribution header.
    </p>
  </section>

  <section>
    <marker id="ATOM_CACHE_REF"/>
    <title>ATOM_CACHE_REF</title>

    <table align="left">
      <row>
        <cell align="center">1</cell>
	<cell align="center">1</cell>
      </row>
      <row>
	<cell align="center"><c>82</c></cell>
	<cell align="center"><c>AtomCacheReferenceIndex</c></cell>
      </row>
      <tcaption></tcaption></table>
      <p>
        Refers to the atom with <c>AtomCacheReferenceIndex</c> in the
	<seealso marker="#distribution_header">distribution header</seealso>.
     </p>
  </section>

  <section>
    <marker id="SMALL_INTEGER_EXT"/>
    <title>SMALL_INTEGER_EXT</title>

    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">1</cell>
      </row>
      <row>
	<cell align="center">97</cell>
	<cell align="center">Int</cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      Unsigned 8 bit integer.
    </p>
  </section>

  <section>
    <marker id="INTEGER_EXT"/>
    <title>INTEGER_EXT</title>

    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">4</cell>
      </row>
      <row>
	<cell align="center">98</cell>
	<cell align="center">Int</cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      Signed 32 bit integer in big-endian format (i.e. MSB first)
    </p>
  </section>

  <section>
    <marker id="FLOAT_EXT"/>
    <title>FLOAT_EXT</title>

    <table align="left">
      <row>
	<cell align="center">1</cell>
	<cell align="center">31</cell>
      </row>
      <row>
	<cell align="center">99</cell>
	<cell align="center">Float String</cell>
      </row>
    <tcaption></tcaption></table>
    <p>
      A float is stored in string format. the format used in sprintf to
      format the float is "%.20e"  
      (there are more bytes allocated than necessary).
      To unpack the float use sscanf with format "%lf".
    </p>
    <p>
      This term is used in minor version 0 of the external format; 
      it has been superseded by 
      <seealso marker="#NEW_FLOAT_EXT">
	NEW_FLOAT_EXT
	</seealso>.
    </p>
  </section>

    <section>
      <marker id="ATOM_EXT"/>
      <title>ATOM_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">2</cell>
	    <cell align="center">Len</cell>
	  </row>
	  <row>
	    <cell align="center"><c>100</c></cell>
	    <cell align="center"><c>Len</c></cell>
	    <cell align="center"><c>AtomName</c></cell>
	  </row>
	<tcaption></tcaption></table>
      <p>
	An atom is stored with a 2 byte unsigned length in big-endian order, 
	followed by <c>Len</c> numbers of 8 bit Latin1 characters that forms
	the <c>AtomName</c>.
	<em>Note</em>: The maximum allowed value for <c>Len</c> is 255.
      </p>
    </section>

    <section>
      <marker id="REFERENCE_EXT"/>
      <title>REFERENCE_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">N</cell>
	    <cell align="center">4</cell>
	    <cell align="center">1</cell>
	  </row>
	  <row>
	    <cell align="center"><c>101</c></cell>
	    <cell align="center"><c>Node</c></cell>
	    <cell align="center"><c>ID</c></cell>
	    <cell align="center"><c>Creation</c></cell>
	  </row>
	<tcaption></tcaption></table>
      <p>
	Encode a reference object (an object generated with <c>make_ref/0</c>).
	The <c>Node</c> term is an encoded atom, i.e. 
	<seealso marker="#ATOM_EXT">ATOM_EXT</seealso>, 
	<seealso marker="#SMALL_ATOM_EXT">SMALL_ATOM_EXT</seealso> or
	<seealso marker="#ATOM_CACHE_REF">ATOM_CACHE_REF</seealso>. 
	The <c>ID</c> field contains a big-endian 
	unsigned integer,
	but <em>should be regarded as uninterpreted data</em> 
	since this field is node specific. 
	<c>Creation</c> is a byte containing a node serial number that
	makes it possible to separate old (crashed) nodes from a new one.
      </p>
      <p>
	In <c>ID</c>, only 18 bits are significant; the rest should be 0.
	In <c>Creation</c>, only 2 bits are significant; the rest should be 0.

	See <seealso marker="#NEW_REFERENCE_EXT">NEW_REFERENCE_EXT</seealso>.
      </p>
    </section>

    <section>
      <marker id="PORT_EXT"/>
      <title>PORT_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">N</cell>
	    <cell align="center">4</cell>
	    <cell align="center">1</cell>
	  </row>
	  <row>
	    <cell align="center"><c>102</c></cell>
	    <cell align="center"><c>Node</c></cell>
	    <cell align="center"><c>ID</c></cell>
	    <cell align="center"><c>Creation</c></cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  Encode a port object (obtained form <c>open_port/2</c>).
	  The <c>ID</c> is a node specific identifier for a local port.
	  Port operations are not allowed across node boundaries.
	  The <c>Creation</c> works just like in
	  <seealso marker="#REFERENCE_EXT">REFERENCE_EXT</seealso>.
	</p>
    </section>

    <section>
      <marker id="PID_EXT"/>
      <title>PID_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">N</cell>
	    <cell align="center">4</cell>
	    <cell align="center">4</cell>
	    <cell align="center">1</cell>
	  </row>
	  <row>
	    <cell align="center"><c>103</c></cell>
	    <cell align="center"><c>Node</c></cell>
	    <cell align="center"><c>ID</c></cell>
	    <cell align="center"><c>Serial</c></cell>
	    <cell align="center"><c>Creation</c></cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  Encode a process identifier object (obtained from <c>spawn/3</c> or
	  friends).
	  The <c>ID</c> and <c>Creation</c> fields works just like in 
	  <seealso marker="#REFERENCE_EXT">REFERENCE_EXT</seealso>, while
	  the <c>Serial</c> field is used to improve safety.
	  
	  In <c>ID</c>, only 15 bits are significant; the rest should be 0.
	</p>

    </section>

    <section>
      <marker id="SMALL_TUPLE_EXT"/>
      <title>SMALL_TUPLE_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">1</cell>
	    <cell align="center">N</cell>
	  </row>
	  <row>
	    <cell align="center">104</cell>
	    <cell align="center">Arity</cell>
	    <cell align="center">Elements</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  <c>SMALL_TUPLE_EXT</c> encodes a tuple. The <c>Arity</c>
	  field is an unsigned byte that determines how many element
	  that follows in the <c>Elements</c> section.
	</p>
    </section>

    <section>
      <marker id="LARGE_TUPLE_EXT"/>
      <title>LARGE_TUPLE_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">N</cell>
	  </row>
	  <row>
	    <cell align="center">105</cell>
	    <cell align="center">Arity</cell>
	    <cell align="center">Elements</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  Same as 
	  <seealso marker="#SMALL_TUPLE_EXT">SMALL_TUPLE_EXT</seealso>
	  with the exception that <c>Arity</c> is an 
	  unsigned 4 byte integer in big endian format.
	</p>
    </section>

    <section>
      <marker id="MAP_EXT"/>
      <title>MAP_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">N</cell>
	  </row>
	  <row>
	    <cell align="center">116</cell>
	    <cell align="center">Arity</cell>
	    <cell align="center">Pairs</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  <c>MAP_EXT</c> encodes a map. The <c>Arity</c> field is an unsigned
	  4 byte integer in big endian format that determines the number of
	  key-value pairs in the map. Key and value pairs (<c>Ki => Vi</c>)
	  are encoded in the <c>Pairs</c> section in the following order:
	  <c>K1, V1, K2, V2,..., Kn, Vn</c>.
	  Duplicate keys are <em>not allowed</em> within the same map.
	</p>
	<p><em>Since: </em>OTP 17.0</p>
    </section>

    <section>
      <marker id="NIL_EXT"/>
      <title>NIL_EXT</title>

      <table align="left">
	<row>
	  <cell align="center">1</cell>
	</row>
	<row>
	  <cell align="center">106</cell>
	</row>
      <tcaption></tcaption></table>
      <p>
	The representation for an empty list, i.e. the Erlang syntax <c>[]</c>.
      </p>
    </section>

    <section>
      <marker id="STRING_EXT"/>
      <title>STRING_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">2</cell>
	    <cell align="center">Len</cell>
	  </row>
	  <row>
	    <cell align="center">107</cell>
	    <cell align="center">Length</cell>
	    <cell align="center">Characters</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  String does NOT have a corresponding Erlang representation,
	  but is an optimization for sending lists of bytes (integer in
	  the range 0-255) more efficiently over the distribution.
	  Since the <c>Length</c> field is an unsigned 2 byte integer 
	  (big endian), implementations must make sure that lists longer than 
	  65535 elements are encoded as 
	  <seealso marker="#LIST_EXT">LIST_EXT</seealso>.
	</p>

    </section>

    <section>
      <marker id="LIST_EXT"/>
      <title>LIST_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">&nbsp;</cell>
	    <cell align="center">&nbsp;</cell>
	  </row>
	  <row>
	    <cell align="center">108</cell>
	    <cell align="center">Length</cell>
	    <cell align="center">Elements</cell>
	    <cell align="center">Tail</cell>
	  </row>
	<tcaption></tcaption></table>

	<p>
	  <c>Length</c> is the number of elements that follows in the
	  <c>Elements</c> section. <c>Tail</c> is the final tail of
	  the list; it is
	  <seealso marker="#NIL_EXT">NIL_EXT</seealso>
	  for a proper list, but may be anything type if the list is
	  improper (for instance <c>[a|b]</c>).
	</p>
    </section>

    <section>
      <marker id="BINARY_EXT"/>
      <title>BINARY_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">Len</cell>
	  </row>
	  <row>
	    <cell align="center">109</cell>
	    <cell align="center">Len</cell>
	    <cell align="center">Data</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  Binaries are generated with bit syntax expression or with
	  <seealso marker="erts:erlang#list_to_binary/1">list_to_binary/1</seealso>,
	  <seealso marker="erts:erlang#term_to_binary/1">term_to_binary/1</seealso>,
	  or as input from binary ports.
	  The <c>Len</c> length field is an unsigned 4 byte integer 
	  (big endian).
	</p>
    </section>

    <section>
      <marker id="SMALL_BIG_EXT"/>
      <title>SMALL_BIG_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">1</cell>
	    <cell align="center">1</cell>
	    <cell align="center">n</cell>
	  </row>
	  <row>
	    <cell align="center">110</cell>
	    <cell align="center">n</cell>
	    <cell align="center">Sign</cell>
	    <cell align="center">d(0) ... d(n-1)</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  Bignums are stored in unary form with a <c>Sign</c> byte
	  that is 0 if the binum is positive and 1 if is negative. The
	  digits are stored with the LSB byte stored first. To
	  calculate the integer the following formula can be used:<br/>
	  
	  B = 256<br/>
	  (d0*B^0 + d1*B^1 + d2*B^2 + ... d(N-1)*B^(n-1))
	</p>
    </section>

    <section>
      <marker id="LARGE_BIG_EXT"/>
      <title>LARGE_BIG_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">1</cell>
	    <cell align="center">n</cell>
	  </row>
	  <row>
	    <cell align="center">111</cell>
	    <cell align="center">n</cell>
	    <cell align="center">Sign</cell>
	    <cell align="center">d(0) ... d(n-1)</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  Same as <seealso marker="#SMALL_BIG_EXT">SMALL_BIG_EXT</seealso> 
	  with the difference that the length field 
	  is an unsigned 4 byte integer.
	</p>

    </section>

    <section>
      <marker id="NEW_REFERENCE_EXT"/>
      <title>NEW_REFERENCE_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">2</cell>
	    <cell align="center">N</cell>
	    <cell align="center">1</cell>
	    <cell align="center">N'</cell>
	  </row>
	  <row>
	    <cell align="center">114</cell>
	    <cell align="center">Len</cell>
	    <cell align="center">Node</cell>
	    <cell align="center">Creation</cell>
	    <cell align="center">ID ...</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  Node and Creation are as in 
	  <seealso marker="#REFERENCE_EXT">REFERENCE_EXT</seealso>.
	</p>
	<p>
	  <c>ID</c> contains a sequence of big-endian unsigned integers 
	  (4 bytes each, so <c>N'</c> is a multiple of 4), 
	  but should be regarded as uninterpreted data.
	</p>
	<p>
	  <c>N'</c> = 4 * <c>Len</c>.
	</p>
	<p>
	  In the first word (four bytes) of <c>ID</c>, only 18 bits are 
	  significant, the rest should be 0.
	  In <c>Creation</c>, only 2 bits are significant, 
	  the rest should be 0.
	</p>
	<p>
	  NEW_REFERENCE_EXT was introduced with distribution version 4.
	  In version 4, <c>N'</c> should be at most 12.
	</p>
	<p>
	  See <seealso marker="#REFERENCE_EXT">REFERENCE_EXT</seealso>).
	</p>
    </section>

    <section>
      <marker id="SMALL_ATOM_EXT"/>
      <title>SMALL_ATOM_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">1</cell>
	    <cell align="center">Len</cell>
	  </row>
	  <row>
	    <cell align="center"><c>115</c></cell>
	    <cell align="center"><c>Len</c></cell>
	    <cell align="center"><c>AtomName</c></cell>
	  </row>
	<tcaption></tcaption></table>
      <p>
	An atom is stored with a 1 byte unsigned length, 
	followed by <c>Len</c> numbers of 8 bit Latin1 characters that
	forms the <c>AtomName</c>. Longer atoms can be represented
	by <seealso marker="#ATOM_EXT">ATOM_EXT</seealso>. <em>Note</em>
	the <c>SMALL_ATOM_EXT</c> was introduced in erts version 5.7.2 and
	require an exchange of the
	<seealso marker="erl_dist_protocol#dflags"><c>DFLAG_SMALL_ATOM_TAGS</c></seealso>
	distribution flag in the
	<seealso marker="erl_dist_protocol#distribution_handshake">distribution handshake</seealso>.
      </p>
    </section>

    <section>
      <marker id="FUN_EXT"/>
      <title>FUN_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">N1</cell>
	    <cell align="center">N2</cell>
	    <cell align="center">N3</cell>
	    <cell align="center">N4</cell>
	    <cell align="center">N5</cell>
	  </row>
	  <row>
	    <cell align="center">117</cell>
	    <cell align="center">NumFree</cell>
	    <cell align="center">Pid</cell>
	    <cell align="center">Module</cell>
	    <cell align="center">Index</cell>
	    <cell align="center">Uniq</cell>
	    <cell align="center">Free vars ...</cell>
	  </row>
	<tcaption></tcaption></table>
	<taglist>
	  <tag><c>Pid</c></tag> 
	  <item>
	    is a process identifier as in 
	    <seealso marker="#PID_EXT">PID_EXT</seealso>. 
	    It represents the process in which the fun was created.
	  </item>
	<tag><c>Module</c></tag>
	<item>
	  is an encoded as an atom, using 
	  <seealso marker="#ATOM_EXT">ATOM_EXT</seealso>, 
	  <seealso marker="#SMALL_ATOM_EXT">SMALL_ATOM_EXT</seealso>
	  or <seealso marker="#ATOM_CACHE_REF">ATOM_CACHE_REF</seealso>.
	  This is the module that the fun is implemented in.
	</item>
	<tag><c>Index</c></tag>
	<item>
	  is an integer encoded using 
	  <seealso marker="#SMALL_INTEGER_EXT">SMALL_INTEGER_EXT</seealso> 
	  or <seealso marker="#INTEGER_EXT">INTEGER_EXT</seealso>.
	  It is typically a small index into the module's fun table.
	</item>
	<tag><c>Uniq</c></tag>
	<item>
	  is an integer encoded using 
	  <seealso marker="#SMALL_INTEGER_EXT">SMALL_INTEGER_EXT</seealso> or 
	  <seealso marker="#INTEGER_EXT">INTEGER_EXT</seealso>.
	  <c>Uniq</c> is the hash value of the parse for the fun.
	</item>
	<tag><c>Free vars</c></tag>
	<item>
	  is <c>NumFree</c> number of terms, each one encoded according 
	  to its type.
	</item>
	</taglist>
    </section>

    <section>
      <marker id="NEW_FUN_EXT"/>
      <title>NEW_FUN_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">1</cell>
	    <cell align="center">16</cell>
	    <cell align="center">4</cell>
	    <cell align="center">4</cell>
	    <cell align="center">N1</cell>
	    <cell align="center">N2</cell>
	    <cell align="center">N3</cell>
	    <cell align="center">N4</cell>
	    <cell align="center">N5</cell>
	  </row>
	  <row>
	    <cell align="center">112</cell>
	    <cell align="center">Size</cell>
	    <cell align="center">Arity</cell>
	    <cell align="center">Uniq</cell>
	    <cell align="center">Index</cell>
	    <cell align="center">NumFree</cell>
	    <cell align="center">Module</cell>
	    <cell align="center">OldIndex</cell>
	    <cell align="center">OldUniq</cell>
	    <cell align="center">Pid</cell>
	    <cell align="center">Free Vars</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  This is the new encoding of internal funs: <c>fun F/A</c> and
	  <c>fun(Arg1,..) -> ... end</c>.
	</p>
	<taglist>
	  <tag><c>Size</c></tag> 
	  <item>
	    is the total number of bytes, including the <c>Size</c> field.
	  </item>
	  <tag><c>Arity</c></tag> 
	  <item>
	    is the arity of the function implementing the fun.
	  </item>
	  <tag><c>Uniq</c></tag>
	  <item>
	    is the 16 bytes MD5 of the significant parts of the Beam file.
	  </item>
	  <tag><c>Index</c></tag> 
	  <item>
	    is an index number. Each fun within a module has an unique
	    index. <c>Index</c> is stored in big-endian byte order.
	  </item>
	  <tag><c>NumFree</c></tag> 
	  <item>
	    is the number of free variables.
	  </item>
	  <tag><c>Module</c></tag>
	  <item>
	    is an encoded as an atom, using 
	    <seealso marker="#ATOM_EXT">ATOM_EXT</seealso>, 
	    <seealso marker="#SMALL_ATOM_EXT">SMALL_ATOM_EXT</seealso> or
	    <seealso marker="#ATOM_CACHE_REF">ATOM_CACHE_REF</seealso>. 
	    This is the module that the fun is implemented in.
	  </item>
	  <tag><c>OldIndex</c></tag>
	  <item>
	    is an integer encoded using 
	    <seealso marker="#SMALL_INTEGER_EXT">SMALL_INTEGER_EXT</seealso> 
	    or <seealso marker="#INTEGER_EXT">INTEGER_EXT</seealso>.
	    It is typically a small index into the module's fun table.
	  </item>
	  <tag><c>OldUniq</c></tag>
	  <item>
	    is an integer encoded using 
	    <seealso marker="#SMALL_INTEGER_EXT">SMALL_INTEGER_EXT</seealso> 
	    or 
	    <seealso marker="#INTEGER_EXT">INTEGER_EXT</seealso>.
	    <c>Uniq</c> is the hash value of the parse tree for the fun.
	  </item>
	  <tag><c>Pid</c></tag>
	  <item>
	    is a process identifier as in 
	    <seealso marker="#PID_EXT">PID_EXT</seealso>. 
	    It represents the process in which
	    the fun was created.
	  </item>

	  <tag><c>Free vars</c></tag>
	  <item>
	    is <c>NumFree</c> number of terms, each one encoded according 
	    to its type.
	  </item>
	</taglist>
    </section>

    <section>
      <marker id="EXPORT_EXT"/>
      <title>EXPORT_EXT</title>
	
	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">N1</cell>
	    <cell align="center">N2</cell>
	    <cell align="center">N3</cell>
	  </row>
	  <row>
	    <cell align="center">113</cell>
	    <cell align="center">Module</cell>
	    <cell align="center">Function</cell>
	    <cell align="center">Arity</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  This term is the encoding for external funs: <c>fun M:F/A</c>.
	</p>
	<p>
	  <c>Module</c> and <c>Function</c> are atoms 
	  (encoded using <seealso marker="#ATOM_EXT">ATOM_EXT</seealso>, 
	  <seealso marker="#SMALL_ATOM_EXT">SMALL_ATOM_EXT</seealso> or 
	  <seealso marker="#ATOM_CACHE_REF">ATOM_CACHE_REF</seealso>).
	</p>
	<p>
	  <c>Arity</c> is an integer encoded using 
	  <seealso marker="#SMALL_INTEGER_EXT">SMALL_INTEGER_EXT</seealso>.
	</p>

    </section>

    <section>
      <marker id="BIT_BINARY_EXT"/>
      <title>BIT_BINARY_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">4</cell>
	    <cell align="center">1</cell>
	    <cell align="center">Len</cell>
	  </row>
	  <row>
	    <cell align="center">77</cell>
	    <cell align="center">Len</cell>
	    <cell align="center">Bits</cell>
	    <cell align="center">Data</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  This term represents a bitstring whose length in bits does
	  not have to be a multiple of 8.
	  The <c>Len</c> field is an unsigned 4 byte integer (big endian).
	  The <c>Bits</c> field is the number of bits (1-8) that are used
	  in the last byte in the data field, 
	  counting from the most significant bit towards the least
	  significant.
	</p>


    </section>

    <section>
      <marker id="NEW_FLOAT_EXT"/>
      <title>NEW_FLOAT_EXT</title>
	
	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">8</cell>
	  </row>
	  <row>
	    <cell align="center">70</cell>
	    <cell align="center">IEEE float</cell>
	  </row>
	<tcaption></tcaption></table>
	<p>
	  A float is stored as 8 bytes in big-endian IEEE format.
	</p>
	<p>
	  This term is used in minor version 1 of the external format.
	</p>
    </section>
    <section>
      <marker id="ATOM_UTF8_EXT"/>
      <title>ATOM_UTF8_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">2</cell>
	    <cell align="center">Len</cell>
	  </row>
	  <row>
	    <cell align="center"><c>118</c></cell>
	    <cell align="center"><c>Len</c></cell>
	    <cell align="center"><c>AtomName</c></cell>
	  </row>
	<tcaption></tcaption></table>
      <p>
	An atom is stored with a 2 byte unsigned length in big-endian order,
	followed by <c>Len</c> bytes containing the <c>AtomName</c> encoded
	in UTF-8.
      </p>
      <p>
	For more information on encoding of atoms, see
	<seealso marker="#utf8_atoms">note on UTF-8 encoded atoms</seealso>
	in the beginning of this document.
      </p>
    </section>

    <section>
      <marker id="SMALL_ATOM_UTF8_EXT"/>
      <title>SMALL_ATOM_UTF8_EXT</title>

	<table align="left">
	  <row>
	    <cell align="center">1</cell>
	    <cell align="center">1</cell>
	    <cell align="center">Len</cell>
	  </row>
	  <row>
	    <cell align="center"><c>119</c></cell>
	    <cell align="center"><c>Len</c></cell>
	    <cell align="center"><c>AtomName</c></cell>
	  </row>
	<tcaption></tcaption></table>
      <p>
	An atom is stored with a 1 byte unsigned length, 
	followed by <c>Len</c> bytes containing the <c>AtomName</c> encoded
	in UTF-8. Longer atoms encoded in UTF-8 can be represented using
	<seealso marker="#ATOM_UTF8_EXT">ATOM_UTF8_EXT</seealso>.
      </p>
      <p>
	For more information on encoding of atoms, see
	<seealso marker="#utf8_atoms">note on UTF-8 encoded atoms</seealso>
	in the beginning of this document.
      </p>
    </section>

  </chapter>