merge master->gtk3, fixed psppire-output-view.c refactoring; this compiles and runs...
[pspp] / doc / dev / system-file-format.texi
1 @node System File Format
2 @appendix System File Format
3
4 A system file encapsulates a set of cases and dictionary information
5 that describes how they may be interpreted.  This chapter describes
6 the format of a system file.
7
8 System files use four data types: 8-bit characters, 32-bit integers,
9 64-bit integers, 
10 and 64-bit floating points, called here @code{char}, @code{int32},
11 @code{int64}, and
12 @code{flt64}, respectively.  Data is not necessarily aligned on a word
13 or double-word boundary: the long variable name record (@pxref{Long
14 Variable Names Record}) and very long string records (@pxref{Very Long
15 String Record}) have arbitrary byte length and can therefore cause all
16 data coming after them in the file to be misaligned.
17
18 Integer data in system files may be big-endian or little-endian.  A
19 reader may detect the endianness of a system file by examining
20 @code{layout_code} in the file header record
21 (@pxref{layout_code,,@code{layout_code}}).
22
23 Floating-point data in system files may nominally be in IEEE 754, IBM,
24 or VAX formats.  A reader may detect the floating-point format in use
25 by examining @code{bias} in the file header record
26 (@pxref{bias,,@code{bias}}).
27
28 PSPP detects big-endian and little-endian integer formats in system
29 files and translates as necessary.  PSPP also detects the
30 floating-point format in use, as well as the endianness of IEEE 754
31 floating-point numbers, and translates as needed.  However, only IEEE
32 754 numbers with the same endianness as integer data in the same file
33 has actually been observed in system files, and it is likely that
34 other formats are obsolete or were never used.
35
36 System files use a few floating point values for special purposes:
37
38 @table @asis
39 @item SYSMIS
40 The system-missing value is represented by the largest possible
41 negative number in the floating point format (@code{-DBL_MAX}).
42
43 @item HIGHEST
44 HIGHEST is used as the high end of a missing value range with an
45 unbounded maximum.  It is represented by the largest possible positive
46 number (@code{DBL_MAX}).
47
48 @item LOWEST
49 LOWEST is used as the low end of a missing value range with an
50 unbounded minimum.  It was originally represented by the
51 second-largest negative number (in IEEE 754 format,
52 @code{0xffeffffffffffffe}).  System files written by SPSS 21 and later
53 instead use the largest negative number (@code{-DBL_MAX}), the same
54 value as SYSMIS.  This does not lead to ambiguity because LOWEST
55 appears in system files only in missing value ranges, which never
56 contain SYSMIS.
57 @end table
58
59 System files may use most character encodings based on an 8-bit unit.
60 UTF-16 and UTF-32, based on wider units, appear to be unacceptable.
61 @code{rec_type} in the file header record is sufficient to distinguish
62 between ASCII and EBCDIC based encodings.  The best way to determine
63 the specific encoding in use is to consult the character encoding
64 record (@pxref{Character Encoding Record}), if present, and failing
65 that the @code{character_code} in the machine integer info record
66 (@pxref{Machine Integer Info Record}).  The same encoding should be
67 used for the dictionary and the data in the file, although it is
68 possible to artificially synthesize files that use different encodings
69 (@pxref{Character Encoding Record}).
70
71 System files are divided into records, each of which begins with a
72 4-byte record type, usually regarded as an @code{int32}.
73
74 The records must appear in the following order:
75
76 @itemize @bullet
77 @item
78 File header record.
79
80 @item
81 Variable records.
82
83 @item
84 All pairs of value labels records and value label variables records,
85 if present.
86
87 @item
88 Document record, if present.
89
90 @item
91 Extension (type 7) records, in ascending numerical order of their
92 subtypes.
93
94 @item
95 Dictionary termination record.
96
97 @item
98 Data record.
99 @end itemize
100
101 Each type of record is described separately below.
102
103 @menu
104 * File Header Record::
105 * Variable Record::
106 * Value Labels Records::
107 * Document Record::
108 * Machine Integer Info Record::
109 * Machine Floating-Point Info Record::
110 * Multiple Response Sets Records::
111 * Extra Product Info Record::
112 * Variable Display Parameter Record::
113 * Long Variable Names Record::
114 * Very Long String Record::
115 * Character Encoding Record::
116 * Long String Value Labels Record::
117 * Long String Missing Values Record::
118 * Data File and Variable Attributes Records::
119 * Extended Number of Cases Record::
120 * Miscellaneous Informational Records::
121 * Dictionary Termination Record::
122 * Data Record::
123 * Encrypted System Files::
124 @end menu
125
126 @node File Header Record
127 @section File Header Record
128
129 The file header is always the first record in the file.  It has the
130 following format:
131
132 @example
133 char                rec_type[4];
134 char                prod_name[60];
135 int32               layout_code;
136 int32               nominal_case_size;
137 int32               compression;
138 int32               weight_index;
139 int32               ncases;
140 flt64               bias;
141 char                creation_date[9];
142 char                creation_time[8];
143 char                file_label[64];
144 char                padding[3];
145 @end example
146
147 @table @code
148 @item char rec_type[4];
149 Record type code, either @samp{$FL2} for system files with
150 uncompressed data or data compressed with simple bytecode compression,
151 or @samp{$FL3} for system files with ZLIB compressed data.
152
153 This is truly a character field that uses the character encoding as
154 other strings.  Thus, in a file with an ASCII-based character encoding
155 this field contains @code{24 46 4c 32} or @code{24 46 4c 33}, and in a
156 file with an EBCDIC-based encoding this field contains @code{5b c6 d3
157 f2}.  (No EBCDIC-based ZLIB-compressed files have been observed.)
158
159 @item char prod_name[60];
160 Product identification string.  This always begins with the characters
161 @samp{@@(#) SPSS DATA FILE}.  PSPP uses the remaining characters to
162 give its version and the operating system name; for example, @samp{GNU
163 pspp 0.1.4 - sparc-sun-solaris2.5.2}.  The string is truncated if it
164 would be longer than 60 characters; otherwise it is padded on the right
165 with spaces.
166
167 @anchor{layout_code}
168 @item int32 layout_code;
169 Normally set to 2, although a few system files have been spotted in
170 the wild with a value of 3 here.  PSPP use this value to determine the
171 file's integer endianness (@pxref{System File Format}).
172
173 @item int32 nominal_case_size;
174 Number of data elements per case.  This is the number of variables,
175 except that long string variables add extra data elements (one for every
176 8 characters after the first 8).  However, string variables do not
177 contribute to this value beyond the first 255 bytes.   Further, system
178 files written by some systems set this value to -1.  In general, it is
179 unsafe for systems reading system files to rely upon this value.
180
181 @item int32 compression;
182 Set to 0 if the data in the file is not compressed, 1 if the data is
183 compressed with simple bytecode compression, 2 if the data is ZLIB
184 compressed.  This field has value 2 if and only if @code{rec_type} is
185 @samp{$FL3}.
186
187 @item int32 weight_index;
188 If one of the variables in the data set is used as a weighting
189 variable, set to the dictionary index of that variable, plus 1
190 (@pxref{Dictionary Index}).  Otherwise, set to 0.
191
192 @item int32 ncases;
193 Set to the number of cases in the file if it is known, or -1 otherwise.
194
195 In the general case it is not possible to determine the number of cases
196 that will be output to a system file at the time that the header is
197 written.  The way that this is dealt with is by writing the entire
198 system file, including the header, then seeking back to the beginning of
199 the file and writing just the @code{ncases} field.  For files in which
200 this is not valid, the seek operation fails.  In this case,
201 @code{ncases} remains -1.
202
203 @anchor{bias}
204 @item flt64 bias;
205 Compression bias, ordinarily set to 100.  Only integers between
206 @code{1 - bias} and @code{251 - bias} can be compressed.
207
208 By assuming that its value is 100, PSPP uses @code{bias} to determine
209 the file's floating-point format and endianness (@pxref{System File
210 Format}).  If the compression bias is not 100, PSPP cannot auto-detect
211 the floating-point format and assumes that it is IEEE 754 format with
212 the same endianness as the system file's integers, which is correct
213 for all known system files.
214
215 @item char creation_date[9];
216 Date of creation of the system file, in @samp{dd mmm yy}
217 format, with the month as standard English abbreviations, using an
218 initial capital letter and following with lowercase.  If the date is not
219 available then this field is arbitrarily set to @samp{01 Jan 70}.
220
221 @item char creation_time[8];
222 Time of creation of the system file, in @samp{hh:mm:ss}
223 format and using 24-hour time.  If the time is not available then this
224 field is arbitrarily set to @samp{00:00:00}.
225
226 @item char file_label[64];
227 File label declared by the user, if any (@pxref{FILE LABEL,,,pspp,
228 PSPP Users Guide}).  Padded on the right with spaces.
229
230 A product that identifies itself as @code{VOXCO INTERVIEWER 4.3} uses
231 CR-only line ends in this field, rather than the more usual LF-only or
232 CR LF line ends.
233
234 @item char padding[3];
235 Ignored padding bytes to make the structure a multiple of 32 bits in
236 length.  Set to zeros.
237 @end table
238
239 @node Variable Record
240 @section Variable Record
241
242 There must be one variable record for each numeric variable and each
243 string variable with width 8 bytes or less.  String variables wider
244 than 8 bytes have one variable record for each 8 bytes, rounding up.
245 The first variable record for a long string specifies the variable's
246 correct dictionary information.  Subsequent variable records for a
247 long string are filled with dummy information: a type of -1, no
248 variable label or missing values, print and write formats that are
249 ignored, and an empty string as name.  A few system files have been
250 encountered that include a variable label on dummy variable records,
251 so readers should take care to parse dummy variable records in the
252 same way as other variable records.
253
254 @anchor{Dictionary Index}
255 The @dfn{dictionary index} of a variable is its offset in the set of
256 variable records, including dummy variable records for long string
257 variables.  The first variable record has a dictionary index of 0, the
258 second has a dictionary index of 1, and so on.
259
260 The system file format does not directly support string variables
261 wider than 255 bytes.  Such very long string variables are represented
262 by a number of narrower string variables.  @xref{Very Long String
263 Record}, for details.
264
265 @example
266 int32               rec_type;
267 int32               type;
268 int32               has_var_label;
269 int32               n_missing_values;
270 int32               print;
271 int32               write;
272 char                name[8];
273
274 /* @r{Present only if @code{has_var_label} is 1.} */
275 int32               label_len;
276 char                label[];
277
278 /* @r{Present only if @code{n_missing_values} is nonzero}. */
279 flt64               missing_values[];
280 @end example
281
282 @table @code
283 @item int32 rec_type;
284 Record type code.  Always set to 2.
285
286 @item int32 type;
287 Variable type code.  Set to 0 for a numeric variable.  For a short
288 string variable or the first part of a long string variable, this is set
289 to the width of the string.  For the second and subsequent parts of a
290 long string variable, set to -1, and the remaining fields in the
291 structure are ignored.
292
293 @item int32 has_var_label;
294 If this variable has a variable label, set to 1; otherwise, set to 0.
295
296 @item int32 n_missing_values;
297 If the variable has no missing values, set to 0.  If the variable has
298 one, two, or three discrete missing values, set to 1, 2, or 3,
299 respectively.  If the variable has a range for missing variables, set to
300 -2; if the variable has a range for missing variables plus a single
301 discrete value, set to -3.
302
303 A long string variable always has the value 0 here.  A separate record
304 indicates missing values for long string variables (@pxref{Long String
305 Missing Values Record}).
306
307 @item int32 print;
308 Print format for this variable.  See below.
309
310 @item int32 write;
311 Write format for this variable.  See below.
312
313 @item char name[8];
314 Variable name.  The variable name must begin with a capital letter or
315 the at-sign (@samp{@@}).  Subsequent characters may also be digits, octothorpes
316 (@samp{#}), dollar signs (@samp{$}), underscores (@samp{_}), or full
317 stops (@samp{.}).  The variable name is padded on the right with spaces.
318
319 The @samp{name} fields should be unique within a system file.  System
320 files written by SPSS that contain very long string variables with
321 similar names sometimes contain duplicate names that are later
322 eliminated by resolving the very long string names (@pxref{Very Long
323 String Record}).  PSPP handles duplicates by assigning them new,
324 unique names.
325
326 @item int32 label_len;
327 This field is present only if @code{has_var_label} is set to 1.  It is
328 set to the length, in characters, of the variable label.  The
329 documented maximum length varies from 120 to 255 based on SPSS
330 version, but some files have been seen with longer labels.  PSPP
331 accepts labels of any length.
332
333 @item char label[];
334 This field is present only if @code{has_var_label} is set to 1.  It has
335 length @code{label_len}, rounded up to the nearest multiple of 32 bits.
336 The first @code{label_len} characters are the variable's variable label.
337
338 @item flt64 missing_values[];
339 This field is present only if @code{n_missing_values} is nonzero.  It
340 has the same number of 8-byte elements as the absolute value of
341 @code{n_missing_values}.  Each element is interpreted as a number for
342 numeric variables (with HIGHEST and LOWEST indicated as described in
343 the chapter introduction).  For string variables of width less than 8
344 bytes, elements are right-padded with spaces; for string variables
345 wider than 8 bytes, only the first 8 bytes of each missing value are
346 specified, with the remainder implicitly all spaces.
347
348 For discrete missing values, each element represents one missing
349 value.  When a range is present, the first element denotes the minimum
350 value in the range, and the second element denotes the maximum value
351 in the range.  When a range plus a value are present, the third
352 element denotes the additional discrete missing value.
353 @end table
354
355 @anchor{System File Output Formats}
356 The @code{print} and @code{write} members of sysfile_variable are output
357 formats coded into @code{int32} types.  The least-significant byte
358 of the @code{int32} represents the number of decimal places, and the
359 next two bytes in order of increasing significance represent field width
360 and format type, respectively.  The most-significant byte is not
361 used and should be set to zero.
362
363 Format types are defined as follows:
364
365 @quotation
366 @multitable {Value} {@code{DATETIME}}
367 @headitem Value
368 @tab Meaning
369 @item 0
370 @tab Not used.
371 @item 1
372 @tab @code{A}
373 @item 2
374 @tab @code{AHEX}
375 @item 3
376 @tab @code{COMMA}
377 @item 4
378 @tab @code{DOLLAR}
379 @item 5
380 @tab @code{F}
381 @item 6
382 @tab @code{IB}
383 @item 7
384 @tab @code{PIBHEX}
385 @item 8
386 @tab @code{P}
387 @item 9
388 @tab @code{PIB}
389 @item 10
390 @tab @code{PK}
391 @item 11
392 @tab @code{RB}
393 @item 12
394 @tab @code{RBHEX}
395 @item 13
396 @tab Not used.
397 @item 14
398 @tab Not used.
399 @item 15
400 @tab @code{Z}
401 @item 16
402 @tab @code{N}
403 @item 17
404 @tab @code{E}
405 @item 18
406 @tab Not used.
407 @item 19
408 @tab Not used.
409 @item 20
410 @tab @code{DATE}
411 @item 21
412 @tab @code{TIME}
413 @item 22
414 @tab @code{DATETIME}
415 @item 23
416 @tab @code{ADATE}
417 @item 24
418 @tab @code{JDATE}
419 @item 25
420 @tab @code{DTIME}
421 @item 26
422 @tab @code{WKDAY}
423 @item 27
424 @tab @code{MONTH}
425 @item 28
426 @tab @code{MOYR}
427 @item 29
428 @tab @code{QYR}
429 @item 30
430 @tab @code{WKYR}
431 @item 31
432 @tab @code{PCT}
433 @item 32
434 @tab @code{DOT}
435 @item 33
436 @tab @code{CCA}
437 @item 34
438 @tab @code{CCB}
439 @item 35
440 @tab @code{CCC}
441 @item 36
442 @tab @code{CCD}
443 @item 37
444 @tab @code{CCE}
445 @item 38
446 @tab @code{EDATE}
447 @item 39
448 @tab @code{SDATE}
449 @end multitable
450 @end quotation
451
452 A few system files have been observed in the wild with invalid
453 @code{write} fields, in particular with value 0.  Readers should
454 probably treat invalid @code{print} or @code{write} fields as some
455 default format.
456
457 @node Value Labels Records
458 @section Value Labels Records
459
460 The value label records documented in this section are used for
461 numeric and short string variables only.  Long string variables may
462 have value labels, but their value labels are recorded using a
463 different record type (@pxref{Long String Value Labels Record}).
464
465 The value label record has the following format:
466
467 @example
468 int32               rec_type;
469 int32               label_count;
470
471 /* @r{Repeated @code{label_cnt} times}. */
472 char                value[8];
473 char                label_len;
474 char                label[];
475 @end example
476
477 @table @code
478 @item int32 rec_type;
479 Record type.  Always set to 3.
480
481 @item int32 label_count;
482 Number of value labels present in this record.
483 @end table
484
485 The remaining fields are repeated @code{count} times.  Each
486 repetition specifies one value label.
487
488 @table @code
489 @item char value[8];
490 A numeric value or a short string value padded as necessary to 8 bytes
491 in length.  Its type and width cannot be determined until the
492 following value label variables record (see below) is read.
493
494 @item char label_len;
495 The label's length, in bytes.  The documented maximum length varies
496 from 60 to 120 based on SPSS version.  PSPP supports value labels up
497 to 255 bytes long.
498
499 @item char label[];
500 @code{label_len} bytes of the actual label, followed by up to 7 bytes
501 of padding to bring @code{label} and @code{label_len} together to a
502 multiple of 8 bytes in length.
503 @end table
504
505 The value label record is always immediately followed by a value label
506 variables record with the following format:
507
508 @example
509 int32               rec_type;
510 int32               var_count;
511 int32               vars[];
512 @end example
513
514 @table @code
515 @item int32 rec_type;
516 Record type.  Always set to 4.
517
518 @item int32 var_count;
519 Number of variables that the associated value labels from the value
520 label record are to be applied.
521
522 @item int32 vars[];
523 A list of dictionary indexes of variables to which to apply the value
524 labels (@pxref{Dictionary Index}).  There are @code{var_count}
525 elements.
526
527 String variables wider than 8 bytes may not be specified in this list.
528 @end table
529
530 @node Document Record
531 @section Document Record
532
533 The document record, if present, has the following format:
534
535 @example
536 int32               rec_type;
537 int32               n_lines;
538 char                lines[][80];
539 @end example
540
541 @table @code
542 @item int32 rec_type;
543 Record type.  Always set to 6.
544
545 @item int32 n_lines;
546 Number of lines of documents present.
547
548 @item char lines[][80];
549 Document lines.  The number of elements is defined by @code{n_lines}.
550 Lines shorter than 80 characters are padded on the right with spaces.
551 @end table
552
553 @node Machine Integer Info Record
554 @section Machine Integer Info Record
555
556 The integer info record, if present, has the following format:
557
558 @example
559 /* @r{Header.} */
560 int32               rec_type;
561 int32               subtype;
562 int32               size;
563 int32               count;
564
565 /* @r{Data.} */
566 int32               version_major;
567 int32               version_minor;
568 int32               version_revision;
569 int32               machine_code;
570 int32               floating_point_rep;
571 int32               compression_code;
572 int32               endianness;
573 int32               character_code;
574 @end example
575
576 @table @code
577 @item int32 rec_type;
578 Record type.  Always set to 7.
579
580 @item int32 subtype;
581 Record subtype.  Always set to 3.
582
583 @item int32 size;
584 Size of each piece of data in the data part, in bytes.  Always set to 4.
585
586 @item int32 count;
587 Number of pieces of data in the data part.  Always set to 8.
588
589 @item int32 version_major;
590 PSPP major version number.  In version @var{x}.@var{y}.@var{z}, this
591 is @var{x}.
592
593 @item int32 version_minor;
594 PSPP minor version number.  In version @var{x}.@var{y}.@var{z}, this
595 is @var{y}.
596
597 @item int32 version_revision;
598 PSPP version revision number.  In version @var{x}.@var{y}.@var{z},
599 this is @var{z}.
600
601 @item int32 machine_code;
602 Machine code.  PSPP always set this field to value to -1, but other
603 values may appear.
604
605 @item int32 floating_point_rep;
606 Floating point representation code.  For IEEE 754 systems this is 1.
607 IBM 370 sets this to 2, and DEC VAX E to 3.
608
609 @item int32 compression_code;
610 Compression code.  Always set to 1, regardless of whether or how the
611 file is compressed.
612
613 @item int32 endianness;
614 Machine endianness.  1 indicates big-endian, 2 indicates little-endian.
615
616 @item int32 character_code;
617 @anchor{character-code} Character code.  The following values have
618 been actually observed in system files:
619
620 @table @asis
621 @item 1
622 EBCDIC.
623
624 @item 2
625 7-bit ASCII.
626
627 @item 1250
628 The @code{windows-1250} code page for Central European and Eastern
629 European languages.
630
631 @item 1252
632 The @code{windows-1252} code page for Western European languages.
633
634 @item 28591
635 ISO 8859-1.
636
637 @item 65001
638 UTF-8.
639 @end table
640
641 The following additional values are known to be defined:
642
643 @table @asis
644 @item 3
645 8-bit ``ASCII''.
646
647 @item 4
648 DEC Kanji.
649 @end table
650
651 Other Windows code page numbers are known to be generally valid.
652
653 Old versions of SPSS for Unix and Windows always wrote value 2 in this
654 field, regardless of the encoding in use.  Newer versions also write
655 the character encoding as a string (see @ref{Character Encoding
656 Record}).
657 @end table
658
659 @node Machine Floating-Point Info Record
660 @section Machine Floating-Point Info Record
661
662 The floating-point info record, if present, has the following format:
663
664 @example
665 /* @r{Header.} */
666 int32               rec_type;
667 int32               subtype;
668 int32               size;
669 int32               count;
670
671 /* @r{Data.} */
672 flt64               sysmis;
673 flt64               highest;
674 flt64               lowest;
675 @end example
676
677 @table @code
678 @item int32 rec_type;
679 Record type.  Always set to 7.
680
681 @item int32 subtype;
682 Record subtype.  Always set to 4.
683
684 @item int32 size;
685 Size of each piece of data in the data part, in bytes.  Always set to 8.
686
687 @item int32 count;
688 Number of pieces of data in the data part.  Always set to 3.
689
690 @item flt64 sysmis;
691 The system missing value.
692
693 @item flt64 highest;
694 The value used for HIGHEST in missing values.
695
696 @item flt64 lowest;
697 The value used for LOWEST in missing values.
698 @end table
699
700 @node Multiple Response Sets Records
701 @section Multiple Response Sets Records
702
703 The system file format has two different types of records that
704 represent multiple response sets (@pxref{MRSETS,,,pspp, PSPP Users
705 Guide}).  The first type of record describes multiple response sets
706 that can be understood by SPSS before version 14.  The second type of
707 record, with a closely related format, is used for multiple dichotomy
708 sets that use the CATEGORYLABELS=COUNTEDVALUES feature added in
709 version 14.
710
711 @example
712 /* @r{Header.} */
713 int32               rec_type;
714 int32               subtype;
715 int32               size;
716 int32               count;
717
718 /* @r{Exactly @code{count} bytes of data.} */
719 char                mrsets[];
720 @end example
721
722 @table @code
723 @item int32 rec_type;
724 Record type.  Always set to 7.
725
726 @item int32 subtype;
727 Record subtype.  Set to 7 for records that describe multiple response
728 sets understood by SPSS before version 14, or to 19 for records that
729 describe dichotomy sets that use the CATEGORYLABELS=COUNTEDVALUES
730 feature added in version 14.
731
732 @item int32 size;
733 The size of each element in the @code{mrsets} member. Always set to 1.
734
735 @item int32 count;
736 The total number of bytes in @code{mrsets}.
737
738 @item char mrsets[];
739 Zero or more line feeds (byte 0x0a), followed by a series of multiple
740 response sets, each of which consists of the following:
741
742 @itemize @bullet
743 @item
744 The set's name (an identifier that begins with @samp{$}), in mixed
745 upper and lower case.
746
747 @item
748 An equals sign (@samp{=}).
749
750 @item
751 @samp{C} for a multiple category set, @samp{D} for a multiple
752 dichotomy set with CATEGORYLABELS=VARLABELS, or @samp{E} for a
753 multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES.
754
755 @item
756 For a multiple dichotomy set with CATEGORYLABELS=COUNTEDVALUES, a
757 space, followed by a number expressed as decimal digits, followed by a
758 space.  If LABELSOURCE=VARLABEL was specified on MRSETS, then the
759 number is 11; otherwise it is 1.@footnote{This part of the format may
760 not be fully understood, because only a single example of each
761 possibility has been examined.}
762
763 @item
764 For either kind of multiple dichotomy set, the counted value, as a
765 positive integer count specified as decimal digits, followed by a
766 space, followed by as many string bytes as specified in the count.  If
767 the set contains numeric variables, the string consists of the counted
768 integer value expressed as decimal digits.  If the set contains string
769 variables, the string contains the counted string value.  Either way,
770 the string may be padded on the right with spaces (older versions of
771 SPSS seem to always pad to a width of 8 bytes; newer versions don't).
772
773 @item
774 A space.
775
776 @item
777 The multiple response set's label, using the same format as for the
778 counted value for multiple dichotomy sets.  A string of length 0 means
779 that the set does not have a label.  A string of length 0 is also
780 written if LABELSOURCE=VARLABEL was specified.
781
782 @item
783 A space.
784
785 @item
786 The short names of the variables in the set, converted to lowercase,
787 each separated from the previous by a single space.
788
789 Even though a multiple response set must have at least two variables,
790 some system files contain multiple response sets with no variables at
791 all.  The source and meaning of these multiple response sets is
792 unknown.  (Perhaps they arise from creating a multiple response set
793 then deleting all the variables that it contains?)
794
795 @item
796 One line feed (byte 0x0a).  Sometimes multiple, even hundreds, of line
797 feeds are present.
798 @end itemize
799 @end table
800
801 Example: Given appropriate variable definitions, consider the
802 following MRSETS command:
803
804 @example
805 MRSETS /MCGROUP NAME=$a LABEL='my mcgroup' VARIABLES=a b c
806        /MDGROUP NAME=$b VARIABLES=g e f d VALUE=55
807        /MDGROUP NAME=$c LABEL='mdgroup #2' VARIABLES=h i j VALUE='Yes'
808        /MDGROUP NAME=$d LABEL='third mdgroup' CATEGORYLABELS=COUNTEDVALUES
809         VARIABLES=k l m VALUE=34
810        /MDGROUP NAME=$e CATEGORYLABELS=COUNTEDVALUES LABELSOURCE=VARLABEL
811         VARIABLES=n o p VALUE='choice'.
812 @end example
813
814 The above would generate the following multiple response set record of
815 subtype 7:
816
817 @example
818 $a=C 10 my mcgroup a b c
819 $b=D2 55 0  g e f d
820 $c=D3 Yes 10 mdgroup #2 h i j
821 @end example
822
823 It would also generate the following multiple response set record with
824 subtype 19:
825
826 @example
827 $d=E 1 2 34 13 third mdgroup k l m
828 $e=E 11 6 choice 0  n o p
829 @end example
830
831 @node Extra Product Info Record
832 @section Extra Product Info Record
833
834 This optional record appears to contain a text string that describes
835 the program that wrote the file and the source of the data.  (This is
836 redundant with the file label and product info found in the file
837 header record.)
838
839 @example
840 /* @r{Header.} */
841 int32               rec_type;
842 int32               subtype;
843 int32               size;
844 int32               count;
845
846 /* @r{Exactly @code{count} bytes of data.} */
847 char                info[];
848 @end example
849
850 @table @code
851 @item int32 rec_type;
852 Record type.  Always set to 7.
853
854 @item int32 subtype;
855 Record subtype.  Always set to 10.
856
857 @item int32 size;
858 The size of each element in the @code{info} member. Always set to 1.
859
860 @item int32 count;
861 The total number of bytes in @code{info}.
862
863 @item char info[];
864 A text string.  A product that identifies itself as @code{VOXCO
865 INTERVIEWER 4.3} uses CR-only line ends in this field, rather than the
866 more usual LF-only or CR LF line ends.
867 @end table
868
869 @node Variable Display Parameter Record
870 @section Variable Display Parameter Record
871
872 The variable display parameter record, if present, has the following
873 format:
874
875 @example
876 /* @r{Header.} */
877 int32               rec_type;
878 int32               subtype;
879 int32               size;
880 int32               count;
881
882 /* @r{Repeated @code{count} times}. */
883 int32               measure;
884 int32               width;           /* @r{Not always present.} */
885 int32               alignment;
886 @end example
887
888 @table @code
889 @item int32 rec_type;
890 Record type.  Always set to 7.
891
892 @item int32 subtype;
893 Record subtype.  Always set to 11.
894
895 @item int32 size;
896 The size of @code{int32}.  Always set to 4.
897
898 @item int32 count;
899 The number of sets of variable display parameters (ordinarily the
900 number of variables in the dictionary), times 2 or 3.
901 @end table
902
903 The remaining members are repeated @code{count} times, in the same
904 order as the variable records.  No element corresponds to variable
905 records that continue long string variables.  The meanings of these
906 members are as follows:
907
908 @table @code
909 @item int32 measure;
910 The measurement type of the variable:
911 @table @asis
912 @item 1
913 Nominal Scale
914 @item 2
915 Ordinal Scale
916 @item 3
917 Continuous Scale
918 @end table
919
920 SPSS sometimes writes a @code{measure} of 0.  PSPP interprets this as
921 nominal scale.
922
923 @item int32 width;
924 The width of the display column for the variable in characters.
925
926 This field is present if @var{count} is 3 times the number of
927 variables in the dictionary.  It is omitted if @var{count} is 2 times
928 the number of variables.
929
930 @item int32 alignment;
931 The alignment of the variable for display purposes:
932
933 @table @asis
934 @item 0
935 Left aligned
936 @item 1
937 Right aligned
938 @item 2
939 Centre aligned
940 @end table
941 @end table
942
943 @node Long Variable Names Record
944 @section Long Variable Names Record
945
946 If present, the long variable names record has the following format:
947
948 @example
949 /* @r{Header.} */
950 int32               rec_type;
951 int32               subtype;
952 int32               size;
953 int32               count;
954
955 /* @r{Exactly @code{count} bytes of data.} */
956 char                var_name_pairs[];
957 @end example
958
959 @table @code
960 @item int32 rec_type;
961 Record type.  Always set to 7.
962
963 @item int32 subtype;
964 Record subtype.  Always set to 13.
965
966 @item int32 size;
967 The size of each element in the @code{var_name_pairs} member. Always set to 1.
968
969 @item int32 count;
970 The total number of bytes in @code{var_name_pairs}.
971
972 @item char var_name_pairs[];
973 A list of @var{key}--@var{value} tuples, where @var{key} is the name
974 of a variable, and @var{value} is its long variable name.
975 The @var{key} field is at most 8 bytes long and must match the
976 name of a variable which appears in the variable record (@pxref{Variable
977 Record}).
978 The @var{value} field is at most 64 bytes long.
979 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
980 Each tuple is separated by a byte whose value is 09.  There is no
981 trailing separator following the last tuple.
982 The total length is @code{count} bytes.
983 @end table
984
985 @node Very Long String Record
986 @section Very Long String Record
987
988 Old versions of SPSS limited string variables to a width of 255 bytes.
989 For backward compatibility with these older versions, the system file
990 format represents a string longer than 255 bytes, called a @dfn{very
991 long string}, as a collection of strings no longer than 255 bytes
992 each.  The strings concatenated to make a very long string are called
993 its @dfn{segments}; for consistency, variables other than very long
994 strings are considered to have a single segment.
995
996 A very long string with a width of @var{w} has @var{n} =
997 (@var{w} + 251) / 252 segments, that is, one segment for every
998 252 bytes of width, rounding up.  It would be logical, then, for each
999 of the segments except the last to have a width of 252 and the last
1000 segment to have the remainder, but this is not the case.  In fact,
1001 each segment except the last has a width of 255 bytes.  The last
1002 segment has width @var{w} - (@var{n} - 1) * 252; some versions
1003 of SPSS make it slightly wider, but not wide enough to make the last
1004 segment require another 8 bytes of data.
1005
1006 Data is packed tightly into segments of a very long string, 255 bytes
1007 per segment.  Because 255 bytes of segment data are allocated for
1008 every 252 bytes of the very long string's width (approximately), some
1009 unused space is left over at the end of the allocated segments.  Data
1010 in unused space is ignored.
1011
1012 Example: Consider a very long string of width 20,000.  Such a very
1013 long string has 20,000 / 252 = 80 (rounding up) segments.  The first
1014 79 segments have width 255; the last segment has width 20,000 - 79 *
1015 252 = 92 or slightly wider (up to 96 bytes, the next multiple of 8).
1016 The very long string's data is actually stored in the 19,890 bytes in
1017 the first 78 segments, plus the first 110 bytes of the 79th segment
1018 (19,890 + 110 = 20,000).  The remaining 145 bytes of the 79th segment
1019 and all 92 bytes of the 80th segment are unused.
1020
1021 The very long string record explains how to stitch together segments
1022 to obtain very long string data.  For each of the very long string
1023 variables in the dictionary, it specifies the name of its first
1024 segment's variable and the very long string variable's actual width.
1025 The remaining segments immediately follow the named variable in the
1026 system file's dictionary.
1027
1028 The very long string record, which is present only if the system file
1029 contains very long string variables, has the following format:
1030
1031 @example
1032 /* @r{Header.} */
1033 int32               rec_type;
1034 int32               subtype;
1035 int32               size;
1036 int32               count;
1037
1038 /* @r{Exactly @code{count} bytes of data.} */
1039 char                string_lengths[];
1040 @end example
1041
1042 @table @code
1043 @item int32 rec_type;
1044 Record type.  Always set to 7.
1045
1046 @item int32 subtype;
1047 Record subtype.  Always set to 14.
1048
1049 @item int32 size;
1050 The size of each element in the @code{string_lengths} member. Always set to 1.
1051
1052 @item int32 count;
1053 The total number of bytes in @code{string_lengths}.
1054
1055 @item char string_lengths[];
1056 A list of @var{key}--@var{value} tuples, where @var{key} is the name
1057 of a variable, and @var{value} is its length.
1058 The @var{key} field is at most 8 bytes long and must match the
1059 name of a variable which appears in the variable record (@pxref{Variable
1060 Record}).
1061 The @var{value} field is exactly 5 bytes long. It is a zero-padded,
1062 ASCII-encoded string that is the length of the variable.
1063 The @var{key} and @var{value} fields are separated by a @samp{=} byte.
1064 Tuples are delimited by a two-byte sequence @{00, 09@}.
1065 After the last tuple, there may be a single byte 00, or @{00, 09@}.
1066 The total length is @code{count} bytes.
1067 @end table
1068
1069 @node Character Encoding Record
1070 @section Character Encoding Record
1071
1072 This record, if present, indicates the character encoding for string data,
1073 long variable names, variable labels, value labels and other strings in the
1074 file.
1075
1076 @example
1077 /* @r{Header.} */
1078 int32               rec_type;
1079 int32               subtype;
1080 int32               size;
1081 int32               count;
1082
1083 /* @r{Exactly @code{count} bytes of data.} */
1084 char                encoding[];
1085 @end example
1086
1087 @table @code
1088 @item int32 rec_type;
1089 Record type.  Always set to 7.
1090
1091 @item int32 subtype;
1092 Record subtype.  Always set to 20.
1093
1094 @item int32 size;
1095 The size of each element in the @code{encoding} member. Always set to 1.
1096
1097 @item int32 count;
1098 The total number of bytes in @code{encoding}.
1099
1100 @item char encoding[];
1101 The name of the character encoding.  Normally this will be an official
1102 IANA character set name or alias.
1103 See @url{http://www.iana.org/assignments/character-sets}.
1104 Character set names are not case-sensitive, but SPSS appears to write
1105 them in all-uppercase.
1106 @end table
1107
1108 This record is not present in files generated by older software.  See
1109 also the @code{character_code} field in the machine integer info
1110 record (@pxref{character-code}).
1111
1112 When the character encoding record and the machine integer info record
1113 are both present, all system files observed in practice indicate the
1114 same character encoding, e.g.@: 1252 as @code{character_code} and
1115 @code{windows-1252} as @code{encoding}, 65001 and @code{UTF-8}, etc.
1116
1117 If, for testing purposes, a file is crafted with different
1118 @code{character_code} and @code{encoding}, it seems that
1119 @code{character_code} controls the encoding for all strings in the
1120 system file before the dictionary termination record, including
1121 strings in data (e.g.@: string missing values), and @code{encoding}
1122 controls the encoding for strings following the dictionary termination
1123 record.
1124
1125 @node Long String Value Labels Record
1126 @section Long String Value Labels Record
1127
1128 This record, if present, specifies value labels for long string
1129 variables.
1130
1131 @example
1132 /* @r{Header.} */
1133 int32               rec_type;
1134 int32               subtype;
1135 int32               size;
1136 int32               count;
1137
1138 /* @r{Repeated up to exactly @code{count} bytes.} */
1139 int32               var_name_len;
1140 char                var_name[];
1141 int32               var_width;
1142 int32               n_labels;
1143 long_string_label   labels[];
1144 @end example
1145
1146 @table @code
1147 @item int32 rec_type;
1148 Record type.  Always set to 7.
1149
1150 @item int32 subtype;
1151 Record subtype.  Always set to 21.
1152
1153 @item int32 size;
1154 Always set to 1.
1155
1156 @item int32 count;
1157 The number of bytes following the header until the next header.
1158
1159 @item int32 var_name_len;
1160 @itemx char var_name[];
1161 The number of bytes in the name of the variable that has long string
1162 value labels, plus the variable name itself, which consists of exactly
1163 @code{var_name_len} bytes.  The variable name is not padded to any
1164 particular boundary, nor is it null-terminated.
1165
1166 @item int32 var_width;
1167 The width of the variable, in bytes, which will be between 9 and
1168 32767.
1169
1170 @item int32 n_labels;
1171 @itemx long_string_label labels[];
1172 The long string labels themselves.  The @code{labels} array contains
1173 exactly @code{n_labels} elements, each of which has the following
1174 substructure:
1175
1176 @example
1177 int32               value_len;
1178 char                value[];
1179 int32               label_len;
1180 char                label[];
1181 @end example
1182
1183 @table @code
1184 @item int32 value_len;
1185 @itemx char value[];
1186 The string value being labeled.  @code{value_len} is the number of
1187 bytes in @code{value}; it is equal to @code{var_width}.  The
1188 @code{value} array is not padded or null-terminated.
1189
1190 @item int32 label_len;
1191 @itemx char label[];
1192 The label for the string value.  @code{label_len}, which must be
1193 between 0 and 120, is the number of bytes in @code{label}.  The
1194 @code{label} array is not padded or null-terminated.
1195 @end table
1196 @end table
1197
1198 @node Long String Missing Values Record
1199 @section Long String Missing Values Record
1200
1201 This record, if present, specifies missing values for long string
1202 variables.
1203
1204 @example
1205 /* @r{Header.} */
1206 int32               rec_type;
1207 int32               subtype;
1208 int32               size;
1209 int32               count;
1210
1211 /* @r{Repeated up to exactly @code{count} bytes.} */
1212 int32               var_name_len;
1213 char                var_name[];
1214 char                n_missing_values;
1215 long_string_missing_value   values[];
1216 @end example
1217
1218 @table @code
1219 @item int32 rec_type;
1220 Record type.  Always set to 7.
1221
1222 @item int32 subtype;
1223 Record subtype.  Always set to 22.
1224
1225 @item int32 size;
1226 Always set to 1.
1227
1228 @item int32 count;
1229 The number of bytes following the header until the next header.
1230
1231 @item int32 var_name_len;
1232 @itemx char var_name[];
1233 The number of bytes in the name of the long string variable that has
1234 missing values, plus the variable name itself, which consists of
1235 exactly @code{var_name_len} bytes.  The variable name is not padded to
1236 any particular boundary, nor is it null-terminated.
1237
1238 @item char n_missing_values;
1239 The number of missing values, either 1, 2, or 3.  (This is, unusually,
1240 a single byte instead of a 32-bit number.)
1241
1242 @item long_string_missing_value values[];
1243 The missing values themselves.  This array contains exactly
1244 @code{n_missing_values} elements, each of which has the following
1245 substructure:
1246
1247 @example
1248 int32               value_len;
1249 char                value[];
1250 @end example
1251
1252 @table @code
1253 @item int32 value_len;
1254 The length of the missing value string, in bytes.  This value should
1255 be 8, because long string variables are at least 8 bytes wide (by
1256 definition), only the first 8 bytes of a long string variable's
1257 missing values are allowed to be non-spaces, and any spaces within the
1258 first 8 bytes are included in the missing value here.
1259
1260 @item char value[];
1261 The missing value string, exactly @code{value_len} bytes, without
1262 any padding or null terminator.
1263 @end table
1264 @end table
1265
1266 @node Data File and Variable Attributes Records
1267 @section Data File and Variable Attributes Records
1268
1269 The data file and variable attributes records represent custom
1270 attributes for the system file or for individual variables in the
1271 system file, as defined on the DATAFILE ATTRIBUTE (@pxref{DATAFILE
1272 ATTRIBUTE,,,pspp, PSPP Users Guide}) and VARIABLE ATTRIBUTE commands
1273 (@pxref{VARIABLE ATTRIBUTE,,,pspp, PSPP Users Guide}), respectively.
1274
1275 @example
1276 /* @r{Header.} */
1277 int32               rec_type;
1278 int32               subtype;
1279 int32               size;
1280 int32               count;
1281
1282 /* @r{Exactly @code{count} bytes of data.} */
1283 char                attributes[];
1284 @end example
1285
1286 @table @code
1287 @item int32 rec_type;
1288 Record type.  Always set to 7.
1289
1290 @item int32 subtype;
1291 Record subtype.  Always set to 17 for a data file attribute record or
1292 to 18 for a variable attributes record.
1293
1294 @item int32 size;
1295 The size of each element in the @code{attributes} member. Always set to 1.
1296
1297 @item int32 count;
1298 The total number of bytes in @code{attributes}.
1299
1300 @item char attributes[];
1301 The attributes, in a text-based format.
1302
1303 In record type 17, this field contains a single attribute set.  An
1304 attribute set is a sequence of one or more attributes concatenated
1305 together.  Each attribute consists of a name, which has the same
1306 syntax as a variable name, followed by, inside parentheses, a sequence
1307 of one or more values.  Each value consists of a string enclosed in
1308 single quotes (@code{'}) followed by a line feed (byte 0x0a).  A value
1309 may contain single quote characters, which are not themselves escaped
1310 or quoted or required to be present in pairs.  There is no apparent
1311 way to embed a line feed in a value.  There is no distinction between
1312 an attribute with a single value and an attribute array with one
1313 element.
1314
1315 In record type 18, this field contains a sequence of one or more
1316 variable attribute sets.  If more than one variable attribute set is
1317 present, each one after the first is delimited from the previous by
1318 @code{/}.  Each variable attribute set consists of a long
1319 variable name,
1320 followed by @code{:}, followed by an attribute set with the same
1321 syntax as on record type 17.
1322
1323 The total length is @code{count} bytes.
1324 @end table
1325
1326 @subheading Example
1327
1328 A system file produced with the following VARIABLE ATTRIBUTE commands
1329 in effect:
1330
1331 @example
1332 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=fred[1]('23') fred[2]('34').
1333 VARIABLE ATTRIBUTE VARIABLES=dummy ATTRIBUTE=bert('123').
1334 @end example
1335
1336 @noindent
1337 will contain a variable attribute record with the following contents:
1338
1339 @example
1340 0000  07 00 00 00 12 00 00 00  01 00 00 00 22 00 00 00  |............"...|
1341 0010  64 75 6d 6d 79 3a 66 72  65 64 28 27 32 33 27 0a  |dummy:fred('23'.|
1342 0020  27 33 34 27 0a 29 62 65  72 74 28 27 31 32 33 27  |'34'.)bert('123'|
1343 0030  0a 29                                             |.)              |
1344 @end example
1345
1346 @menu
1347 * Variable Roles::
1348 @end menu
1349
1350 @node Variable Roles
1351 @subsection Variable Roles
1352
1353 A variable's role is represented as an attribute named @code{$@@Role}.
1354 This attribute has a single element whose values and their meanings
1355 are:
1356
1357 @table @code
1358 @item 0
1359 Input.  This, the default, is the most common role.
1360 @item 1
1361 Output.
1362 @item 2
1363 Both.
1364 @item 3
1365 None.
1366 @item 4
1367 Partition.
1368 @item 5
1369 Split.
1370 @end table
1371
1372 @node Extended Number of Cases Record
1373 @section Extended Number of Cases Record
1374
1375 The file header record expresses the number of cases in the system
1376 file as an int32 (@pxref{File Header Record}).  This record allows the
1377 number of cases in the system file to be expressed as a 64-bit number.
1378
1379 @example
1380 int32               rec_type;
1381 int32               subtype;
1382 int32               size;
1383 int32               count;
1384 int64               unknown;
1385 int64               ncases64;
1386 @end example
1387
1388 @table @code
1389 @item int32 rec_type;
1390 Record type.  Always set to 7.
1391
1392 @item int32 subtype;
1393 Record subtype.  Always set to 16.
1394
1395 @item int32 size;
1396 Size of each element.  Always set to 8.
1397
1398 @item int32 count;
1399 Number of pieces of data in the data part.  Alway set to 2.
1400
1401 @item int64 unknown;
1402 Meaning unknown.  Always set to 1.
1403
1404 @item int64 ncases64;
1405 Number of cases in the file as a 64-bit integer.  Presumably this
1406 could be -1 to indicate that the number of cases is unknown, for the
1407 same reason as @code{ncases} in the file header record, but this has
1408 not been observed in the wild.
1409 @end table
1410
1411 @node Miscellaneous Informational Records
1412 @section Miscellaneous Informational Records
1413
1414 Some specific types of miscellaneous informational records are
1415 documented here, but others are known to exist.  PSPP ignores unknown
1416 miscellaneous informational records when reading system files.
1417
1418 @example
1419 /* @r{Header.} */
1420 int32               rec_type;
1421 int32               subtype;
1422 int32               size;
1423 int32               count;
1424
1425 /* @r{Exactly @code{size * count} bytes of data.} */
1426 char                data[];
1427 @end example
1428
1429 @table @code
1430 @item int32 rec_type;
1431 Record type.  Always set to 7.
1432
1433 @item int32 subtype;
1434 Record subtype.  May take any value.  According to Aapi
1435 H@"am@"al@"ainen, value 5 indicates a set of grouped variables and 6
1436 indicates date info (probably related to USE).  Subtype 24 appears to
1437 contain XML that describes how data in the file should be displayed
1438 on-screen.
1439
1440 @item int32 size;
1441 Size of each piece of data in the data part.  Should have the value 1,
1442 4, or 8, for @code{char}, @code{int32}, and @code{flt64} format data,
1443 respectively.
1444
1445 @item int32 count;
1446 Number of pieces of data in the data part.
1447
1448 @item char data[];
1449 Arbitrary data.  There must be @code{size} times @code{count} bytes of
1450 data.
1451 @end table
1452
1453 @node Dictionary Termination Record
1454 @section Dictionary Termination Record
1455
1456 The dictionary termination record separates all other records from the
1457 data records.
1458
1459 @example
1460 int32               rec_type;
1461 int32               filler;
1462 @end example
1463
1464 @table @code
1465 @item int32 rec_type;
1466 Record type.  Always set to 999.
1467
1468 @item int32 filler;
1469 Ignored padding.  Should be set to 0.
1470 @end table
1471
1472 @node Data Record
1473 @section Data Record
1474
1475 The data record must follow all other records in the system file.
1476 Every system file must have a data record that specifies data for at
1477 least one case.  The format of the data record varies depending on the
1478 value of @code{compression} in the file header record:
1479
1480 @table @asis
1481 @item 0: no compression
1482 Data is arranged as a series of 8-byte elements.
1483 Each element corresponds to
1484 the variable declared in the respective variable record (@pxref{Variable
1485 Record}).  Numeric values are given in @code{flt64} format; string
1486 values are literal characters string, padded on the right when
1487 necessary to fill out 8-byte units.
1488
1489 @item 1: bytecode compression
1490 The first 8 bytes
1491 of the data record is divided into a series of 1-byte command
1492 codes.  These codes have meanings as described below:
1493
1494 @table @asis
1495 @item 0
1496 Ignored.  If the program writing the system file accumulates compressed
1497 data in blocks of fixed length, 0 bytes can be used to pad out extra
1498 bytes remaining at the end of a fixed-size block.
1499
1500 @item 1 through 251
1501 A number with
1502 value @var{code} - @var{bias}, where
1503 @var{code} is the value of the compression code and @var{bias} is the
1504 variable @code{bias} from the file header.  For example,
1505 code 105 with bias 100.0 (the normal value) indicates a numeric variable
1506 of value 5.
1507 One file has been seen written by SPSS 14 that contained such a code
1508 in a @emph{string} field with the value 0 (after the bias is
1509 subtracted) as a way of encoding null bytes.
1510
1511 @item 252
1512 End of file.  This code may or may not appear at the end of the data
1513 stream.  PSPP always outputs this code but its use is not required.
1514
1515 @item 253
1516 A numeric or string value that is not
1517 compressible.  The value is stored in the 8 bytes following the
1518 current block of command bytes.  If this value appears twice in a block
1519 of command bytes, then it indicates the second group of 8 bytes following the
1520 command bytes, and so on.
1521
1522 @item 254
1523 An 8-byte string value that is all spaces.
1524
1525 @item 255
1526 The system-missing value.
1527 @end table
1528
1529 The end of the 8-byte group of bytecodes is followed by any 8-byte
1530 blocks of non-compressible values indicated by code 253.  After that
1531 follows another 8-byte group of bytecodes, then those bytecodes'
1532 non-compressible values.  The pattern repeats to the end of the file
1533 or a code with value 252.
1534
1535 @item 2: ZLIB compression
1536 The data record consists of the following, in order:
1537
1538 @itemize @bullet
1539 @item
1540 ZLIB data header, 24 bytes long.
1541
1542 @item
1543 One or more variable-length blocks of ZLIB compressed data.
1544
1545 @item
1546 ZLIB data trailer, with a 24-byte fixed header plus an additional 24
1547 bytes for each preceding ZLIB compressed data block.
1548 @end itemize
1549
1550 The ZLIB data header has the following format:
1551
1552 @example
1553 int64               zheader_ofs;
1554 int64               ztrailer_ofs;
1555 int64               ztrailer_len;
1556 @end example
1557
1558 @table @code
1559 @item int64 zheader_ofs;
1560 The offset, in bytes, of the beginning of this structure within the
1561 system file.
1562
1563 @item int64 ztrailer_ofs;
1564 The offset, in bytes, of the first byte of the ZLIB data trailer.
1565
1566 @item int64 ztrailer_len;
1567 The number of bytes in the ZLIB data trailer.  This and the previous
1568 field sum to the size of the system file in bytes.
1569 @end table
1570
1571 The data header is followed by @code{(ztrailer_ofs - 24) / 24} ZLIB
1572 compressed data blocks.  Each ZLIB compressed data block begins with a
1573 ZLIB header as specified in RFC@tie{}1950, e.g.@: hex bytes @code{78
1574 01} (the only header yet observed in practice).  Each block
1575 decompresses to a fixed number of bytes (in practice only
1576 @code{0x3ff000}-byte blocks have been observed), except that the last
1577 block of data may be shorter.  The last ZLIB compressed data block
1578 gends just before offset @code{ztrailer_ofs}.
1579
1580 The result of ZLIB decompression is bytecode compressed data as
1581 described above for compression format 1.
1582
1583 The ZLIB data trailer begins with the following 24-byte fixed header:
1584
1585 @example
1586 int64               bias;
1587 int64               zero;
1588 int32               block_size;
1589 int32               n_blocks;
1590 @end example
1591
1592 @table @code
1593 @item int64 int_bias;
1594 The compression bias as a negative integer, e.g.@: if @code{bias} in
1595 the file header record is 100.0, then @code{int_bias} is @minus{}100
1596 (this is the only value yet observed in practice).
1597
1598 @item int64 zero;
1599 Always observed to be zero.
1600
1601 @item int32 block_size;
1602 The number of bytes in each ZLIB compressed data block, except
1603 possibly the last, following decompression.  Only @code{0x3ff000} has
1604 been observed so far.
1605
1606 @item int32 n_blocks;
1607 The number of ZLIB compressed data blocks, always exactly
1608 @code{(ztrailer_ofs - 24) / 24}.
1609 @end table
1610
1611 The fixed header is followed by @code{n_blocks} 24-byte ZLIB data
1612 block descriptors, each of which describes the compressed data block
1613 corresponding to its offset.  Each block descriptor has the following
1614 format:
1615
1616 @example
1617 int64               uncompressed_ofs;
1618 int64               compressed_ofs;
1619 int32               uncompressed_size;
1620 int32               compressed_size;
1621 @end example
1622
1623 @table @code
1624 @item int64 uncompressed_ofs;
1625 The offset, in bytes, that this block of data would have in a similar
1626 system file that uses compression format 1.  This is
1627 @code{zheader_ofs} in the first block descriptor, and in each
1628 succeeding block descriptor it is the sum of the previous desciptor's
1629 @code{uncompressed_ofs} and @code{uncompressed_size}.
1630
1631 @item int64 compressed_ofs;
1632 The offset, in bytes, of the actual beginning of this compressed data
1633 block.  This is @code{zheader_ofs + 24} in the first block descriptor,
1634 and in each succeeding block descriptor it is the sum of the previous
1635 descriptor's @code{compressed_ofs} and @code{compressed_size}.  The
1636 final block descriptor's @code{compressed_ofs} and
1637 @code{compressed_size} sum to @code{ztrailer_ofs}.
1638
1639 @item int32 uncompressed_size;
1640 The number of bytes in this data block, after decompression.  This is
1641 @code{block_size} in every data block except the last, which may be
1642 smaller.
1643
1644 @item int32 compressed_size;
1645 The number of bytes in this data block, as stored compressed in this
1646 system file.
1647 @end table
1648 @end table
1649
1650 @setfilename ignored
1651
1652 @node Encrypted System Files
1653 @section Encrypted System Files
1654
1655 SPSS 21 and later support an encrypted system file format.
1656
1657 @quotation Warning
1658 The SPSS encrypted file format is poorly designed.  It is much cheaper
1659 and faster to decrypt a file encrypted this way than if a well
1660 designed alternative were used.  If you must use this format, use a
1661 10-byte randomly generated password.
1662 @end quotation
1663
1664 @subheading Encrypted File Format
1665
1666 Encrypted system files begin with the following 36-byte fixed header:
1667
1668 @example
1669 0000  1c 00 00 00 00 00 00 00  45 4e 43 52 59 50 54 45  |........ENCRYPTE|
1670 0010  44 53 41 56 15 00 00 00  00 00 00 00 00 00 00 00  |DSAV............|
1671 0020  00 00 00 00                                       |....|
1672 @end example
1673
1674 Following the fixed header is a complete system file in the usual
1675 format, except that each 16-byte block is encrypted with AES-256 in
1676 ECB mode.  The AES-256 key is derived from a password in the following
1677 way:
1678
1679 @enumerate 
1680 @item
1681 Start from the literal password typed by the user.  Truncate it to at
1682 most 10 bytes, then append (between 1 and 22) null bytes until there
1683 are exactly 32 bytes.  Call this @var{password}.
1684
1685 @item
1686 Let @var{constant} be the following 73-byte constant:
1687
1688 @example
1689 0000  00 00 00 01 35 27 13 cc  53 a7 78 89 87 53 22 11
1690 0010  d6 5b 31 58 dc fe 2e 7e  94 da 2f 00 cc 15 71 80
1691 0020  0a 6c 63 53 00 38 c3 38  ac 22 f3 63 62 0e ce 85
1692 0030  3f b8 07 4c 4e 2b 77 c7  21 f5 1a 80 1d 67 fb e1
1693 0040  e1 83 07 d8 0d 00 00 01  00
1694 @end example
1695
1696 @item
1697 Compute CMAC-AES-256(@var{password}, @var{constant}).  Call the
1698 16-byte result @var{cmac}.
1699
1700 @item
1701 The 32-byte AES-256 key is @var{cmac} || @var{cmac}, that is,
1702 @var{cmac} repeated twice.
1703 @end enumerate
1704
1705 @subsubheading Example
1706
1707 Consider the password @samp{pspp}.  @var{password} is:
1708
1709 @example
1710 0000  70 73 70 70 00 00 00 00  00 00 00 00 00 00 00 00  |pspp............|
1711 0010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
1712 @end example
1713
1714 @noindent
1715 @var{cmac} is:
1716
1717 @example
1718 0000  3e da 09 8e 66 04 d4 fd  f9 63 0c 2c a8 6f b0 45
1719 @end example
1720
1721 @noindent
1722 The AES-256 key is:
1723
1724 @example
1725 0000  3e da 09 8e 66 04 d4 fd  f9 63 0c 2c a8 6f b0 45
1726 0010  3e da 09 8e 66 04 d4 fd  f9 63 0c 2c a8 6f b0 45
1727 @end example
1728
1729 @subheading Password Encoding
1730
1731 SPSS also supports what it calls ``encrypted passwords.''  These are
1732 not encrypted.  They are encoded with a simple, fixed scheme.  An
1733 encoded password is always a multiple of 2 characters long, and never
1734 longer than 20 characters.  The characters in an encoded password are
1735 always in the graphic ASCII range 33 through 126.  Each successive
1736 pair of characters in the password encodes a single byte in the
1737 plaintext password.
1738
1739 Use the following algorithm to decode a pair of characters:
1740
1741 @enumerate
1742 @item
1743 Let @var{a} be the ASCII code of the first character, and @var{b} be
1744 the ASCII code of the second character.
1745
1746 @item
1747 Let @var{ah} be the most significant 4 bits of @var{a}.  Find the line
1748 in the table below that has @var{ah} on the left side.  The right side
1749 of the line is a set of possible values for the most significant 4
1750 bits of the decoded byte.
1751
1752 @display
1753 @t{2 } @result{} @t{2367}
1754 @t{3 } @result{} @t{0145}
1755 @t{47} @result{} @t{89cd}
1756 @t{56} @result{} @t{abef}
1757 @end display
1758
1759 @item
1760 Let @var{bh} be the most significant 4 bits of @var{b}.  Find the line
1761 in the second table below that has @var{bh} on the left side.  The
1762 right side of the line is a set of possible values for the most
1763 significant 4 bits of the decoded byte.  Together with the results of
1764 the previous step, only a single possibility is left.
1765
1766 @display
1767 @t{2 } @result{} @t{139b}
1768 @t{3 } @result{} @t{028a}
1769 @t{47} @result{} @t{46ce}
1770 @t{56} @result{} @t{57df}
1771 @end display
1772
1773 @item
1774 Let @var{al} be the least significant 4 bits of @var{a}.  Find the
1775 line in the table below that has @var{al} on the left side.  The right
1776 side of the line is a set of possible values for the least significant
1777 4 bits of the decoded byte.
1778
1779 @display
1780 @t{03cf} @result{} @t{0145}
1781 @t{12de} @result{} @t{2367}
1782 @t{478b} @result{} @t{89cd}
1783 @t{569a} @result{} @t{abef}
1784 @end display
1785
1786 @item
1787 Let @var{bl} be the least significant 4 bits of @var{b}.  Find the
1788 line in the table below that has @var{bl} on the left side.  The right
1789 side of the line is a set of possible values for the least significant
1790 4 bits of the decoded byte.  Together with the results of the previous
1791 step, only a single possibility is left.
1792
1793 @display
1794 @t{03cf} @result{} @t{028a}
1795 @t{12de} @result{} @t{139b}
1796 @t{478b} @result{} @t{46ce}
1797 @t{569a} @result{} @t{57df}
1798 @end display
1799 @end enumerate
1800
1801 @subsubheading Example
1802
1803 Consider the encoded character pair @samp{-|}.  @var{a} is
1804 0x2d and @var{b} is 0x7c, so @var{ah} is 2, @var{bh} is 7, @var{al} is
1805 0xd, and @var{bl} is 0xc.  @var{ah} means that the most significant
1806 four bits of the decoded character is 2, 3, 6, or 7, and @var{bh}
1807 means that they are 4, 6, 0xc, or 0xe.  The single possibility in
1808 common is 6, so the most significant four bits are 6.  Similarly,
1809 @var{al} means that the least significant four bits are 2, 3, 6, or 7,
1810 and @var{bl} means they are 0, 2, 8, or 0xa, so the least significant
1811 four bits are 2.  The decoded character is therefore 0x62, the letter
1812 @samp{b}.