Add "fill until" support
[normand.git] / README.adoc
CommitLineData
bb2f9e9c
PP
1// Show ToC at a specific location for a GitHub rendering
2ifdef::env-github[]
3:toc: macro
4endif::env-github[]
5
6ifndef::env-github[]
71aaa3f7 7:toc: left
bb2f9e9c
PP
8endif::env-github[]
9
10// This is to mimic what GitHub does so that anchors work in an offline
11// rendering too.
12:idprefix:
13:idseparator: -
71aaa3f7 14
bb2f9e9c 15// Other attributes
71aaa3f7
PP
16:py3: Python{nbsp}3
17
bb2f9e9c
PP
18= Normand
19Philippe Proulx
20
df0f8552
PP
21image::normand-logo.png[]
22
71aaa3f7
PP
23[.normal]
24image:https://img.shields.io/pypi/v/normand.svg?label=Latest%20version[link="https://pypi.python.org/pypi/normand"]
25
26[.lead]
27_**Normand**_ is a text-to-binary processor with its own language.
28
29This package offers both a portable {py3} module and a command-line
30tool.
31
25ca454b 32WARNING: This version of Normand is 0.12, meaning both the Normand
71aaa3f7
PP
33language and the module/CLI interface aren't stable.
34
bb2f9e9c
PP
35ifdef::env-github[]
36// ToC location for a GitHub rendering
37toc::[]
38endif::env-github[]
39
71aaa3f7
PP
40== Introduction
41
42The purpose of Normand is to consume human-readable text representing
43bytes and to produce the corresponding binary data.
44
45.Simple bytes input.
46====
47Consider the following Normand input:
48
49----
504f 55 32 bb $167 fe %10100111 a9 $-32
51----
52
53The generated nine bytes are:
54
55----
564f 55 32 bb a7 fe a7 a9 e0
57----
58====
59
60As you can see in the last example, the fundamental unit of the Normand
61language is the _byte_. The order in which you list bytes will be the
62order of the generated data.
63
64The Normand language is more than simple lists of bytes, though. Its
65main features are:
66
67Comments, including a bunch of insignificant symbols which may improve readability::
68+
69Input:
70+
71----
72ff bb %1101:0010 # This is a comment
7378 29 af $192 # This too # 99 $-80
74fe80::6257:18ff:fea3:4229
7560:57:18:a3:42:29
7610839636-5d65-4a68-8e6a-21608ddf7258
77----
78+
79Output:
80+
81----
82ff bb d2 78 29 af c0 99 b0 fe 80 62 57 18 ff fe
83a3 42 29 60 57 18 a3 42 29 10 83 96 36 5d 65 4a
8468 8e 6a 21 60 8d df 72 58
85----
86
87Hexadecimal, decimal, and binary byte constants::
88+
89Input:
90+
91----
92aa bb $247 $-89 %0011_0010 %11.01= 10/10
93----
94+
95Output:
96+
97----
98aa bb f7 a7 32 da
99----
100
101UTF-8, UTF-16, and UTF-32 literal strings::
102+
103Input:
104+
105----
106"hello world!" 00
107u16le"stress\nverdict 🤣"
108----
109+
110Output:
111+
112----
11368 65 6c 6c 6f 20 77 6f 72 6c 64 21 00 73 00 74 ┆ hello world!•s•t
11400 72 00 65 00 73 00 73 00 0a 00 76 00 65 00 72 ┆ •r•e•s•s•••v•e•r
11500 64 00 69 00 63 00 74 00 20 00 3e d8 23 dd ┆ •d•i•c•t• •>•#•
116----
117
118Labels: special variables holding the offset where they're defined::
119+
120----
121<beg> b2 52 e3 bc 91 05
122$100 $50 <chair> 33 9f fe
12325 e9 89 8a <end>
124----
125
126Variables::
127+
128----
1295e 65 {tower = 47} c6 7f f2 c4
13044 {hurl = tower - 14} b5 {tower = hurl} 26 2d
131----
132+
133The value of a variable assignment is the evaluation of a valid {py3}
134expression which may include label and variable names.
135
269f6eb3 136Fixed-length number with a given length (8{nbsp}bits to 64{nbsp}bits) and byte order::
71aaa3f7
PP
137+
138Input:
139+
140----
141{strength = 4}
142{be} 67 <lbl> 44 $178 {(end - lbl) * 8 + strength : 16} $99 <end>
143{le} {-1993 : 32}
269f6eb3 144{-3.141593 : 64}
71aaa3f7
PP
145----
146+
147Output:
148+
149----
269f6eb3
PP
15067 44 b2 00 2c 63 37 f8 ff ff 7f bd c2 82 fb 21
15109 c0
71aaa3f7
PP
152----
153+
269f6eb3 154The encoded number is the evaluation of a valid {py3} expression which
05f81895
PP
155may include label and variable names.
156
157https://en.wikipedia.org/wiki/LEB128[LEB128] integer::
158+
159Input:
160+
161----
162aa bb cc {-1993 : sleb128} <meow> dd ee ff
163{meow * 199 : uleb128}
164----
165+
166Output:
167+
168----
169aa bb cc b7 70 dd ee ff e3 07
170----
171+
172The encoded integer is the evaluation of a valid {py3} expression which
71aaa3f7
PP
173may include label and variable names.
174
27d52a19
PP
175Conditional::
176+
177Input:
178+
179----
180aa bb cc
181
182(
183 "foo"
184
185 !if {ICITTE > 10}
186 "bar"
187 !end
188) * 4
189----
190+
191Output:
192+
193----
194aa bb cc 66 6f 6f 66 6f 6f 66 6f 6f 62 61 72 66 ┆ •••foofoofoobarf
1956f 6f 62 61 72 ┆ oobar
196----
197
71aaa3f7
PP
198Repetition::
199+
200Input:
201+
202----
2adf4336 203aa bb * 5 cc <zoom> "yeah\0" * {zoom * 3}
e57a18e1
PP
204
205!repeat 3
206 ff ee "juice"
207!end
71aaa3f7
PP
208----
209+
210Output:
211+
212----
2adf4336
PP
213aa bb bb bb bb bb cc 79 65 61 68 00 79 65 61 68 ┆ •••••••yeah•yeah
21400 79 65 61 68 00 79 65 61 68 00 79 65 61 68 00 ┆ •yeah•yeah•yeah•
21579 65 61 68 00 79 65 61 68 00 79 65 61 68 00 79 ┆ yeah•yeah•yeah•y
21665 61 68 00 79 65 61 68 00 79 65 61 68 00 79 65 ┆ eah•yeah•yeah•ye
21761 68 00 79 65 61 68 00 79 65 61 68 00 79 65 61 ┆ ah•yeah•yeah•yea
21868 00 79 65 61 68 00 79 65 61 68 00 79 65 61 68 ┆ h•yeah•yeah•yeah
71aaa3f7 21900 79 65 61 68 00 79 65 61 68 00 79 65 61 68 00 ┆ •yeah•yeah•yeah•
e57a18e1
PP
220ff ee 6a 75 69 63 65 ff ee 6a 75 69 63 65 ff ee ┆ ••juice••juice••
2216a 75 69 63 65 ┆ juice
71aaa3f7
PP
222----
223
676f6189
PP
224Alignment::
225+
226Input:
227+
228----
229{be}
230
231 {199:32}
232@64 {43:64}
233@16 {-123:16}
234@32~255 {5584:32}
235----
236+
237Output:
238+
239----
24000 00 00 c7 00 00 00 00 00 00 00 00 00 00 00 2b
241ff 85 ff ff 00 00 15 d0
242----
71aaa3f7 243
25ca454b
PP
244Filling::
245+
246Input:
247+
248----
249{le}
250{0xdeadbeef:32}
251{-1993:16}
252{9:16}
253+0x40
254{ICITTE:8}
255"meow mix"
256+200~0xff
257{ICITTE:8}
258----
259+
260Output:
261+
262----
263ef be ad de 37 f8 09 00 00 00 00 00 00 00 00 00 ┆ ••••7•••••••••••
26400 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
26500 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
26600 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
26740 6d 65 6f 77 20 6d 69 78 ff ff ff ff ff ff ff ┆ @meow mix•••••••
268ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
269ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
270ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
271ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
272ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
273ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
274ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
275ff ff ff ff ff ff ff ff c8 ┆ •••••••••
276----
277
71aaa3f7
PP
278Multilevel grouping::
279+
280Input:
281+
282----
283ff ((aa bb "zoom" cc) * 5) * 3 $-34 * 4
284----
285+
286Output:
287+
288----
289ff aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa ┆ •••zoom•••zoom••
290bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb 7a ┆ •zoom•••zoom•••z
2916f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f ┆ oom•••zoom•••zoo
2926d cc aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc ┆ m•••zoom•••zoom•
293aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb ┆ ••zoom•••zoom•••
2947a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb 7a 6f ┆ zoom•••zoom•••zo
2956f 6d cc aa bb 7a 6f 6f 6d cc de de de de ┆ om•••zoom•••••
296----
297
320644e2
PP
298Macros::
299+
300Input:
301+
302----
303!macro hello(world)
304 "hello"
305 !if world " world" !end
306!end
307
308!repeat 17
309 ff ff ff ff
310 m:hello({ICITTE > 15 and ICITTE < 60})
311!end
312----
313+
314Output:
315+
316----
317ff ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c ┆ ••••hello••••hel
3186c 6f ff ff ff ff 68 65 6c 6c 6f 20 77 6f 72 6c ┆ lo••••hello worl
31964 ff ff ff ff 68 65 6c 6c 6f 20 77 6f 72 6c 64 ┆ d••••hello world
320ff ff ff ff 68 65 6c 6c 6f 20 77 6f 72 6c 64 ff ┆ ••••hello world•
321ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c 6c ┆ •••hello••••hell
3226f ff ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 ┆ o••••hello••••he
3236c 6c 6f ff ff ff ff 68 65 6c 6c 6f ff ff ff ff ┆ llo••••hello••••
32468 65 6c 6c 6f ff ff ff ff 68 65 6c 6c 6f ff ff ┆ hello••••hello••
325ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c 6c 6f ┆ ••hello••••hello
326ff ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c ┆ ••••hello••••hel
3276c 6f ff ff ff ff 68 65 6c 6c 6f ┆ lo••••hello
328----
329
71aaa3f7
PP
330Precise error reporting::
331+
332----
333/tmp/meow.normand:10:24 - Expecting a bit (`0` or `1`).
334----
335+
336----
337/tmp/meow.normand:32:6 - Unexpected character `k`.
338----
339+
340----
320644e2 341/tmp/meow.normand:24:19 - Illegal (unknown or unreachable) variable/label name `meow` in expression `(meow - 45) // 8`; the legal names are {`ICITTE`, `mix`, `zoom`}.
71aaa3f7
PP
342----
343+
344----
320644e2 345/tmp/meow.normand:18:9 - Value 315 is outside the 8-bit range when evaluating expression `end - ICITTE`.
71aaa3f7
PP
346----
347
348You can use Normand to track data source files in your favorite VCS
349instead of raw binary files. The binary files that Normand generates can
350be used to test file format decoding, including malformatted data, for
351example, as well as for education.
352
353See <<learn-normand>> to explore all the Normand features.
354
355== Install Normand
356
357Normand requires Python ≥ 3.4.
358
359To install Normand:
360
361----
362$ python3 -m pip install --user normand
363----
364
365See
366https://packaging.python.org/en/latest/tutorials/installing-packages/#installing-to-the-user-site[Installing to the User Site]
367to learn more about a user site installation.
368
369[NOTE]
370====
371Normand has a single module file, `normand.py`, which you can copy as is
af3cf417 372to your project to use it (both the <<python3-api,`normand.parse()`>>
71aaa3f7
PP
373function and the <<command-line-tool,command-line tool>>).
374
375`normand.py` has _no external dependencies_, but if you're using
376Python{nbsp}3.4, you'll need a local copy of the standard `typing`
377module.
378====
379
380== Learn Normand
381
382A Normand text input is a sequence of items which represent a sequence
383of raw bytes.
384
385[[state]] During the processing of items to data, Normand relies on a
386current state:
387
388[%header%autowidth]
389|===
af3cf417 390|State variable |Description |Initial value: <<python3-api,{py3} API>> |Initial value: <<command-line-tool,CLI>>
71aaa3f7
PP
391
392|[[cur-offset]] Current offset
393|
05f81895 394The current offset has an effect on the value of <<label,labels>> and of
269f6eb3 395the special `ICITTE` name in <<fixed-length-number,fixed-length
27d52a19
PP
396number>>, <<leb-128-integer,LEB128 integer>>,
397<<variable-assignment,variable assignment>>,
398<<conditional-block,conditional block>>, <<repetition-block,repetition
320644e2
PP
399block>>, <<macro-expansion,macro expansion>>, and
400<<post-item-repetition,post-item repetition>> expression evaluation.
71aaa3f7
PP
401
402Each generated byte increments the current offset.
403
404A <<current-offset-setting,current offset setting>> may change the
676f6189
PP
405current offset without generating data.
406
407An <<current-offset-alignment,current offset alignment>> generates
408padding bytes to make the current offset satisfy a given alignment.
71aaa3f7
PP
409|`init_offset` parameter of the `parse()` function.
410|`--offset` option.
411
412|[[cur-bo]] Current byte order
413|
05f81895 414The current byte order has an effect on the encoding of
269f6eb3 415<<fixed-length-number,fixed-length numbers>>.
71aaa3f7
PP
416
417A <<current-byte-order-setting,current byte order setting>> may change
418the current byte order.
419|`init_byte_order` parameter of the `parse()` function.
420|`--byte-order` option.
421
422|<<label,Labels>>
423|Mapping of label names to integral values.
424|`init_labels` parameter of the `parse()` function.
425|One or more `--label` options.
426
427|<<variable-assignment,Variables>>
27d52a19 428|Mapping of variable names to integral or floating point number values.
71aaa3f7
PP
429|`init_variables` parameter of the `parse()` function.
430|One or more `--var` options.
431|===
432
433The available items are:
434
435* A <<byte-constant,constant integer>> representing a single byte.
436
437* A <<literal-string,literal string>> representing a sequence of bytes
438 encoding UTF-8, UTF-16, or UTF-32 data.
439
440* A <<current-byte-order-setting,current byte order setting>> (big or
441 little endian).
442
269f6eb3
PP
443* A <<fixed-length-number,fixed-length number>> (integer or
444 floating point) using the <<cur-bo,current byte order>> and of which
445 the value is the result of a {py3} expression.
05f81895
PP
446
447* An <<leb128-integer,LEB128 integer>> of which the value is the result
448 of a {py3} expression.
71aaa3f7
PP
449
450* A <<current-offset-setting,current offset setting>>.
451
676f6189
PP
452* A <<current-offset-alignment,current offset alignment>>.
453
25ca454b
PP
454* A <<filling,filling>>.
455
71aaa3f7
PP
456* A <<label,label>>, that is, a named constant holding the current
457 offset.
458+
459This is similar to an assembly label.
460
461* A <<variable-assignment,variable assignment>> associating a name to
462 the integral result of an evaluated {py3} expression.
463
464* A <<group,group>>, that is, a scoped sequence of items.
465
27d52a19
PP
466* A <<conditional-block,conditional block>>.
467
e57a18e1
PP
468* A <<repetition-block,repetition block>>.
469
320644e2
PP
470* A <<macro-definition-block,macro definition block>>.
471
472* A <<macro-expansion,macro expansion>>.
473
e57a18e1
PP
474Moreover, you can repeat many items above a constant or variable number
475of times with the ``pass:[*]`` operator _after_ the item to repeat. This
476is called a <<post-item-repetition,post-item repetition>>.
71aaa3f7
PP
477
478A Normand comment may exist:
479
480* Between items, possibly within a group.
481* Between the nibbles of a constant hexadecimal byte.
482* Between the bits of a constant binary byte.
e57a18e1
PP
483* Between the last item and the ``pass:[*]`` character of a post-item
484 repetition, and between that ``pass:[*]`` character and the following
485 number or expression.
261c5ecf
PP
486* Between the ``!repeat``/``!r`` block opening and the following
487 constant integer, name, or expression of a repetition block.
488* Between the ``!if`` block opening and the following name or expression
489 of a conditional block.
71aaa3f7
PP
490
491A comment is anything between two ``pass:[#]`` characters on the same
492line, or from ``pass:[#]`` until the end of the line. Whitespaces and
493the following symbol characters are also considered comments where a
494comment may exist:
495
496----
25ca454b 497/ \ ? & : ; . , [ ] _ = | -
71aaa3f7
PP
498----
499
500The latter serve to improve readability so that you may write, for
501example, a MAC address or a UUID as is.
502
503You can test the examples of this section with the `normand`
504<<command-line-tool,command-line tool>> as such:
505
506----
507$ normand file | hexdump -C
508----
509
510where `file` is the name of a file containing the Normand input.
511
512=== Byte constant
513
514A _byte constant_ represents a single byte.
515
516A byte constant is:
517
518Hexadecimal form::
519 Two consecutive hexits.
520
521Decimal form::
522 A decimal number after the `$` prefix.
523
524Binary form::
525 Eight bits after the `%` prefix.
526
527====
528Input:
529
530----
531ab cd [3d 8F] CC
532----
533
534Output:
535
536----
537ab cd 3d 8f cc
538----
539====
540
541====
542Input:
543
544----
545$192 %1100/0011 $ -77
546----
547
548Output:
549
550----
551c0 c3 b3
552----
553====
554
555====
556Input:
557
558----
55958f64689-6316-4d55-8a1a-04cada366172
560fe80::6257:18ff:fea3:4229
561----
562
563Output:
564
565----
56658 f6 46 89 63 16 4d 55 8a 1a 04 ca da 36 61 72 ┆ X•F•c•MU•••••6ar
567fe 80 62 57 18 ff fe a3 42 29 ┆ ••bW••••B)
568----
569====
570
571====
572Input:
573
574----
575%01110011 %01100001 %01101100 %01110101 %01110100
576----
577
578Output:
579
580----
58173 61 6c 75 74 ┆ salut
582----
583====
584
585=== Literal string
586
587A _literal string_ represents the UTF-8-, UTF-16-, or UTF-32-encoded
588bytes of a string.
589
590The string to encode isn't implicitly null-terminated: use `\0` at the
591end of the string to add a null character.
592
593A literal string is:
594
595. **Optional**: one of the following encodings instead of UTF-8:
596+
597--
598[horizontal]
599`u16be`:: UTF-16BE.
600`u16le`:: UTF-16LE.
601`u32be`:: UTF-32BE.
602`u32le`:: UTF-32LE.
603--
604
605. The ``pass:["]`` prefix.
606
607. A sequence of zero or more characters, possibly containing escape
608 sequences.
609+
610An escape sequence is the ``\`` character followed by one of:
611+
612--
613[horizontal]
614`0`:: Null (U+0000)
615`a`:: Alert (U+0007)
616`b`:: Backspace (U+0008)
617`e`:: Escape (U+001B)
618`f`:: Form feed (U+000C)
619`n`:: End of line (U+000A)
620`r`:: Carriage return (U+000D)
621`t`:: Character tabulation (U+0009)
622`v`:: Line tabulation (U+000B)
623``\``:: Reverse solidus (U+005C)
624``pass:["]``:: Quotation mark (U+0022)
625--
626
627. The ``pass:["]`` suffix.
628
629====
630Input:
631
632----
633"coucou tout le monde!"
634----
635
636Output:
637
638----
63963 6f 75 63 6f 75 20 74 6f 75 74 20 6c 65 20 6d ┆ coucou tout le m
6406f 6e 64 65 21 ┆ onde!
641----
642====
643
644====
645Input:
646
647----
648u16le"I am not young enough to know everything."
649----
650
651Output:
652
653----
65449 00 20 00 61 00 6d 00 20 00 6e 00 6f 00 74 00 ┆ I• •a•m• •n•o•t•
65520 00 79 00 6f 00 75 00 6e 00 67 00 20 00 65 00 ┆ •y•o•u•n•g• •e•
6566e 00 6f 00 75 00 67 00 68 00 20 00 74 00 6f 00 ┆ n•o•u•g•h• •t•o•
65720 00 6b 00 6e 00 6f 00 77 00 20 00 65 00 76 00 ┆ •k•n•o•w• •e•v•
65865 00 72 00 79 00 74 00 68 00 69 00 6e 00 67 00 ┆ e•r•y•t•h•i•n•g•
6592e 00 ┆ .•
660----
661====
662
663====
664Input:
665
666----
667u32be "\"illusion is the first\nof all pleasures\" 🦉"
668----
669
670Output:
671
672----
67300 00 00 22 00 00 00 69 00 00 00 6c 00 00 00 6c ┆ •••"•••i•••l•••l
67400 00 00 75 00 00 00 73 00 00 00 69 00 00 00 6f ┆ •••u•••s•••i•••o
67500 00 00 6e 00 00 00 20 00 00 00 69 00 00 00 73 ┆ •••n••• •••i•••s
67600 00 00 20 00 00 00 74 00 00 00 68 00 00 00 65 ┆ ••• •••t•••h•••e
67700 00 00 20 00 00 00 66 00 00 00 69 00 00 00 72 ┆ ••• •••f•••i•••r
67800 00 00 73 00 00 00 74 00 00 00 0a 00 00 00 6f ┆ •••s•••t•••••••o
67900 00 00 66 00 00 00 20 00 00 00 61 00 00 00 6c ┆ •••f••• •••a•••l
68000 00 00 6c 00 00 00 20 00 00 00 70 00 00 00 6c ┆ •••l••• •••p•••l
68100 00 00 65 00 00 00 61 00 00 00 73 00 00 00 75 ┆ •••e•••a•••s•••u
68200 00 00 72 00 00 00 65 00 00 00 73 00 00 00 22 ┆ •••r•••e•••s•••"
68300 00 00 20 00 01 f9 89 ┆ ••• ••••
684----
685====
686
687=== Current byte order setting
688
689This special item sets the <<cur-bo,_current byte order_>>.
690
691The two accepted forms are:
692
693[horizontal]
694``pass:[{be}]``:: Set the current byte order to big endian.
695``pass:[{le}]``:: Set the current byte order to little endian.
696
269f6eb3 697=== Fixed-length number
71aaa3f7 698
269f6eb3
PP
699A _fixed-length number_ represents a fixed number of bytes encoding
700either:
701
702* An unsigned or signed integer (two's complement).
703+
704The available lengths are 8, 16, 24, 32, 40, 48, 56, and 64.
705
706* A floating point number
707 ([IEEE{nbsp}754-2008[https://standards.ieee.org/standard/754-2008.html]).
708+
709The available length are 32 (_binary32_) and 64 (_binary64_).
71aaa3f7 710
269f6eb3
PP
711The value is the result of evaluating a {py3} expression using the
712<<cur-bo,current byte order>>.
713
714A fixed-length number is:
71aaa3f7
PP
715
716. The ``pass:[{]`` prefix.
717
718. A valid {py3} expression.
05f81895 719+
269f6eb3 720For a fixed-length number at some source location{nbsp}__**L**__, this
05f81895
PP
721expression may contain the name of any accessible <<label,label>> (not
722within a nested group), including the name of a label defined
723after{nbsp}__**L**__, as well as the name of any
724<<variable-assignment,variable>> known at{nbsp}__**L**__.
725+
269f6eb3
PP
726The value of the special name `ICITTE` (`int` type) in this expression
727is the <<cur-offset,current offset>> (before encoding the number).
71aaa3f7
PP
728
729. The `:` character.
730
269f6eb3
PP
731. An encoding length in bits amongst:
732+
733--
27d52a19 734The expression evaluates to an `int` or `bool` value::
269f6eb3 735 `8`, `16`, `24`, `32`, `40`, `48`, `56`, and `64`.
27d52a19
PP
736+
737NOTE: Normand automatically converts a `bool` value to `int`.
269f6eb3
PP
738
739The expression evaluates to a `float` value::
740 `32` and `64`.
741--
71aaa3f7
PP
742
743. The `}` suffix.
744
745====
746Input:
747
748----
749{le} {345:16}
750{be} {-0xabcd:32}
751----
752
753Output:
754
755----
75659 01 ff ff 54 33
757----
758====
759
760====
761Input:
762
763----
764{be}
765
766# String length in bits
767{8 * (str_end - str_beg) : 16}
768
769# String
770<str_beg>
771 "hello world!"
772<str_end>
773----
774
775Output:
776
777----
77800 60 68 65 6c 6c 6f 20 77 6f 72 6c 64 21 ┆ •`hello world!
779----
780====
781
782====
783Input:
784
785----
786{20 - ICITTE : 8} * 10
787----
788
789Output:
790
791----
79214 13 12 11 10 0f 0e 0d 0c 0b
793----
794====
795
269f6eb3
PP
796====
797Input:
798
799----
800{le}
801{2 * 0.0529 : 32}
802----
803
804Output:
805
806----
807ac ad d8 3d
808----
809====
810
05f81895
PP
811=== LEB128 integer
812
813An _LEB128 integer_ represents a variable number of bytes encoding an
814unsigned or signed integer which is the result of evaluating a {py3}
815expression following the https://en.wikipedia.org/wiki/LEB128[LEB128]
816format.
817
818An LEB128 integer is:
819
820. The ``pass:[{]`` prefix.
821
27d52a19
PP
822. A valid {py3} expression of which the evaluation result type
823 is `int` or `bool` (automatically converted to `int`).
05f81895
PP
824+
825For an LEB128 integer at some source location{nbsp}__**L**__, this
826expression may contain:
827+
828--
829* The name of any <<label,label>> defined before{nbsp}__**L**__.
320644e2
PP
830* The name of any <<variable-assignment,variable>> known
831 at{nbsp}__**L**__.
05f81895
PP
832--
833+
269f6eb3
PP
834The value of the special name `ICITTE` (`int` type) in this expression
835is the <<cur-offset,current offset>> (before encoding the integer).
05f81895
PP
836
837. The `:` character.
838
839. One of:
840+
841--
842[horizontal]
843`uleb128`:: Use the unsigned LEB128 format.
844`sleb128`:: Use the signed LEB128 format.
845--
846
847. The `}` suffix.
848
849====
850Input:
851
852----
853{624485 : uleb128}
854----
855
856Output:
857
858----
859e5 8e 26
860----
861====
862
863====
864Input:
865
866----
867aa bb cc dd
868<meow>
869ee ff
870{-981238311 + (meow * -23) : sleb128}
871"hello"
872----
873
c2b79cf6
PP
874Output:
875
05f81895
PP
876----
877aa bb cc dd ee ff fd fa 8d ac 7c 68 65 6c 6c 6f ┆ ••••••••••|hello
878----
879====
880
71aaa3f7
PP
881=== Current offset setting
882
883This special item sets the <<cur-offset,_current offset_>>.
884
885A current offset setting is:
886
887. The `<` prefix.
888
889. A positive integer (hexadecimal starting with `0x` or `0X` accepted)
890 which is the new current offset.
891
892. The `>` suffix.
893
894====
895Input:
896
897----
898 {ICITTE : 8} * 8
899<0x61> {ICITTE : 8} * 8
900----
901
902Output:
903
904----
90500 01 02 03 04 05 06 07 61 62 63 64 65 66 67 68 ┆ ••••••••abcdefgh
906----
907====
908
909====
910Input:
911
912----
913aa bb cc dd <meow> ee ff
914<12> 11 22 33 <mix> 44 55
915{meow : 8} {mix : 8}
916----
917
918Output:
919
920----
921aa bb cc dd ee ff 11 22 33 44 55 04 0f ┆ •••••••"3DU••
922----
923====
924
676f6189
PP
925=== Current offset alignment
926
00deb9fa 927A _current offset alignment_ represents zero or more padding bytes to
676f6189
PP
928make the <<cur-offset,current offset>> meet a given
929https://en.wikipedia.org/wiki/Data_structure_alignment[alignment] value.
930
931More specifically, for an alignment value of{nbsp}__**N**__{nbsp}bits,
932a current offset alignment represents the required padding bytes until
933the current offset is a multiple of __**N**__{nbsp}/{nbsp}8.
934
935A current offset alignment is:
936
937. The `@` prefix.
938
939. A positive integer (hexadecimal starting with `0x` or `0X` accepted)
940 which is the alignment value in _bits_.
941+
942This value must be greater than zero and a multiple of{nbsp}8.
943
944. **Optional**:
945+
946--
947. The ``pass:[~]`` prefix.
948. A positive integer (hexadecimal starting with `0x` or `0X` accepted)
949 which is the value of the byte to use as padding to align the
950 <<cur-offset,current offset>>.
951--
952+
953Without this section, the padding byte value is zero.
954
955====
956Input:
957
958----
95911 22 (@32 aa bb cc) * 3
960----
961
962Output:
963
964----
96511 22 00 00 aa bb cc 00 aa bb cc 00 aa bb cc
966----
967====
968
969====
970Input:
971
972----
973{le}
97477 88
975@32~0xcc {-893.5:32}
976@128~0x55 "meow"
977----
978
979Output:
980
981----
98277 88 cc cc 00 60 5f c4 55 55 55 55 55 55 55 55 ┆ w••••`_•UUUUUUUU
9836d 65 6f 77 ┆ meow
984----
985====
986
987====
988Input:
989
990----
991aa bb cc <29> @64~255 "zoom"
992----
993
994Output:
995
996----
997aa bb cc ff ff ff 7a 6f 6f 6d ┆ ••••••zoom
998----
999====
1000
25ca454b
PP
1001=== Filling
1002
1003A _filling_ represents zero or more padding bytes to make the
1004<<cur-offset,current offset>> reach a given value.
1005
1006A filling is:
1007
1008. The ``pass:[+]`` prefix.
1009
1010. One of:
1011
1012** A positive integer (hexadecimal starting with `0x` or `0X` accepted)
1013 which is the current offset target.
1014
1015** The ``pass:[{]`` prefix, a valid {py3} expression of which the
1016 evaluation result type is `int` or `bool` (automatically converted to
1017 `int`), and the ``pass:[}]`` suffix.
1018+
1019For a filling at some source location{nbsp}__**L**__, this expression
1020may contain:
1021+
1022--
1023* The name of any <<label,label>> defined before{nbsp}__**L**__
1024 which isn't within a nested group.
1025* The name of any <<variable-assignment,variable>> known
1026 at{nbsp}__**L**__.
1027--
1028+
1029The value of the special name `ICITTE` (`int` type) in this expression
1030is the <<cur-offset,current offset>> (before handling the items to
1031repeat).
1032
1033** A valid {py3} name.
1034+
1035For the name `__NAME__`, this is equivalent to the
1036`pass:[{]__NAME__pass:[}]` form above.
1037
1038+
1039This value must be greater than or equal to the current offset where
1040it's used.
1041
1042. **Optional**:
1043+
1044--
1045. The ``pass:[~]`` prefix.
1046. A positive integer (hexadecimal starting with `0x` or `0X` accepted)
1047 which is the value of the byte to use as padding to reach the
1048 current offset target.
1049--
1050+
1051Without this section, the padding byte value is zero.
1052
1053====
1054Input:
1055
1056----
1057aa bb cc dd
1058+0x40
1059"hello world"
1060----
1061
1062Output:
1063
1064----
1065aa bb cc dd 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
106600 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
106700 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
106800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
106968 65 6c 6c 6f 20 77 6f 72 6c 64 ┆ hello world
1070----
1071====
1072
1073====
1074Input:
1075
1076----
1077!macro part(iter, fill)
1078 <0> "particular security " {ord('0') + iter : 8} +fill~0x80
1079!end
1080
1081{iter = 1}
1082
1083!repeat 5
1084 m:part(iter, {32 + 4 * iter})
1085 {iter = iter + 1}
1086!end
1087----
1088
1089Output:
1090
1091----
109270 61 72 74 69 63 75 6c 61 72 20 73 65 63 75 72 ┆ particular secur
109369 74 79 20 31 80 80 80 80 80 80 80 80 80 80 80 ┆ ity 1•••••••••••
109480 80 80 80 70 61 72 74 69 63 75 6c 61 72 20 73 ┆ ••••particular s
109565 63 75 72 69 74 79 20 32 80 80 80 80 80 80 80 ┆ ecurity 2•••••••
109680 80 80 80 80 80 80 80 80 80 80 80 70 61 72 74 ┆ ••••••••••••part
109769 63 75 6c 61 72 20 73 65 63 75 72 69 74 79 20 ┆ icular security
109833 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 ┆ 3•••••••••••••••
109980 80 80 80 80 80 80 80 70 61 72 74 69 63 75 6c ┆ ••••••••particul
110061 72 20 73 65 63 75 72 69 74 79 20 34 80 80 80 ┆ ar security 4•••
110180 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 ┆ ••••••••••••••••
110280 80 80 80 80 80 80 80 70 61 72 74 69 63 75 6c ┆ ••••••••particul
110361 72 20 73 65 63 75 72 69 74 79 20 35 80 80 80 ┆ ar security 5•••
110480 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 ┆ ••••••••••••••••
110580 80 80 80 80 80 80 80 80 80 80 80 ┆ ••••••••••••
1106----
1107====
1108
71aaa3f7
PP
1109=== Label
1110
1111A _label_ associates a name to the <<cur-offset,current offset>>.
1112
1113All the labels of a whole Normand input must have unique names.
1114
05f81895 1115A label must not share the name of a <<variable-assignment,variable>>
71aaa3f7
PP
1116name.
1117
71aaa3f7
PP
1118A label is:
1119
1120. The `<` prefix.
1121
27d52a19 1122. A valid {py3} name which is not `ICITTE`.
71aaa3f7
PP
1123
1124. The `>` suffix.
1125
1126=== Variable assignment
1127
1128A _variable assignment_ associates a name to the integral result of an
1129evaluated {py3} expression.
1130
05f81895 1131A variable assignment is:
71aaa3f7
PP
1132
1133. The ``pass:[{]`` prefix.
1134
27d52a19 1135. A valid {py3} name which is not `ICITTE`.
71aaa3f7
PP
1136
1137. The `=` character.
1138
27d52a19
PP
1139. A valid {py3} expression of which the evaluation result type
1140 is `int`, `float`, or `bool` (automatically converted to `int`).
05f81895
PP
1141+
1142For a variable assignment at some source location{nbsp}__**L**__, this
320644e2
PP
1143expression may contain:
1144+
1145--
1146* The name of any <<label,label>> defined before{nbsp}__**L**__
1147 which isn't within a nested group.
1148* The name of any <<variable-assignment,variable>> known
1149 at{nbsp}__**L**__.
1150--
05f81895 1151+
269f6eb3
PP
1152The value of the special name `ICITTE` (`int` type) in this expression
1153is the <<cur-offset,current offset>>.
71aaa3f7
PP
1154
1155. The `}` suffix.
1156
1157====
1158Input:
1159
1160----
1161{mix = 101} {le}
1162{meow = 42} 11 22 {meow:8} 33 {meow = ICITTE + 17}
1163"yooo" {meow + mix : 16}
1164----
1165
1166Output:
1167
1168----
116911 22 2a 33 79 6f 6f 6f 7a 00 ┆ •"*3yoooz•
1170----
1171====
1172
1173=== Group
1174
1175A _group_ is a scoped sequence of items.
1176
1177The <<label,labels>> within a group aren't visible outside of it.
1178
e57a18e1
PP
1179The main purpose of a group is to <<post-item-repetition,repeat>> more
1180than a single item and to isolate labels.
71aaa3f7
PP
1181
1182A group is:
1183
261c5ecf 1184. The `(`, `!group`, or `!g` opening.
71aaa3f7
PP
1185
1186. Zero or more items.
1187
261c5ecf
PP
1188. Depending on the group opening:
1189+
1190--
1191`(`::
1192 The `)` closing.
1193
1194`!group`::
1195`!g`::
1196 The `!end` closing.
1197--
71aaa3f7
PP
1198
1199====
1200Input:
1201
1202----
1203((aa bb cc) dd () ee) "leclerc"
1204----
1205
1206Output:
1207
1208----
1209aa bb cc dd ee 6c 65 63 6c 65 72 63 ┆ •••••leclerc
1210----
1211====
1212
1213====
1214Input:
1215
1216----
261c5ecf
PP
1217!group
1218 (aa bb cc) * 3 dd ee
1219!end * 5
71aaa3f7
PP
1220----
1221
1222Output:
1223
1224----
1225aa bb cc aa bb cc aa bb cc dd ee aa bb cc aa bb
1226cc aa bb cc dd ee aa bb cc aa bb cc aa bb cc dd
1227ee aa bb cc aa bb cc aa bb cc dd ee aa bb cc aa
1228bb cc aa bb cc dd ee
1229----
1230====
1231
1232====
1233Input:
1234
1235----
1236{be}
1237(
1238 <str_beg> u16le"sébastien diaz" <str_end>
1239 {ICITTE - str_beg : 8}
1240 {(end - str_beg) * 5 : 24}
1241) * 3
1242<end>
1243----
1244
1245Output:
1246
1247----
124873 00 e9 00 62 00 61 00 73 00 74 00 69 00 65 00 ┆ s•••b•a•s•t•i•e•
12496e 00 20 00 64 00 69 00 61 00 7a 00 1c 00 01 e0 ┆ n• •d•i•a•z•••••
125073 00 e9 00 62 00 61 00 73 00 74 00 69 00 65 00 ┆ s•••b•a•s•t•i•e•
12516e 00 20 00 64 00 69 00 61 00 7a 00 1c 00 01 40 ┆ n• •d•i•a•z••••@
125273 00 e9 00 62 00 61 00 73 00 74 00 69 00 65 00 ┆ s•••b•a•s•t•i•e•
12536e 00 20 00 64 00 69 00 61 00 7a 00 1c 00 00 a0 ┆ n• •d•i•a•z•••••
1254----
1255====
1256
27d52a19
PP
1257=== Conditional block
1258
1259A _conditional block_ represents either the bytes of one or more items
1260if some expression is true, or no bytes at all if it's false.
1261
1262A conditional block is:
1263
261c5ecf 1264. The `!if` opening.
27d52a19
PP
1265
1266. One of:
1267
1268** The ``pass:[{]`` prefix, a valid {py3} expression of which the
1269 evaluation result type is `int` or `bool` (automatically converted to
1270 `int`), and the ``pass:[}]`` suffix.
1271+
320644e2
PP
1272For a conditional block at some source location{nbsp}__**L**__, this
1273expression may contain:
27d52a19
PP
1274+
1275--
1276* The name of any <<label,label>> defined before{nbsp}__**L**__
1277 which isn't within a nested group.
1278* The name of any <<variable-assignment,variable>> known
320644e2 1279 at{nbsp}__**L**__.
27d52a19
PP
1280--
1281+
1282The value of the special name `ICITTE` (`int` type) in this expression
1283is the <<cur-offset,current offset>> (before handling the contained
1284items).
1285
1286** A valid {py3} name.
1287+
1288For the name `__NAME__`, this is equivalent to the
1289`pass:[{]__NAME__pass:[}]` form above.
1290
1291. Zero or more items.
1292
261c5ecf 1293. The `!end` closing.
27d52a19
PP
1294
1295====
1296Input:
1297
1298----
1299{at = 1}
1300{rep_count = 9}
1301
1302!repeat rep_count
1303 "meow "
1304
1305 !if {ICITTE > 25}
1306 "mix"
1307
1308 !if {at < rep_count} 20 !end
1309 !end
1310
1311 {at = at + 1}
1312!end
1313----
1314
1315Output:
1316
1317----
13186d 65 6f 77 20 6d 65 6f 77 20 6d 65 6f 77 20 6d ┆ meow meow meow m
131965 6f 77 20 6d 65 6f 77 20 6d 65 6f 77 20 6d 69 ┆ eow meow meow mi
132078 20 6d 65 6f 77 20 6d 69 78 20 6d 65 6f 77 20 ┆ x meow mix meow
13216d 69 78 20 6d 65 6f 77 20 6d 69 78 ┆ mix meow mix
1322----
1323====
1324
1325====
1326Input:
1327
1328----
1329<str_beg>
1330u16le"meow mix!"
1331<str_end>
1332
1333!if {str_end - str_beg > 10}
1334 " BIG"
1335!end
1336----
1337
1338Output:
1339
1340----
13416d 00 65 00 6f 00 77 00 20 00 6d 00 69 00 78 00 ┆ m•e•o•w• •m•i•x•
134221 00 20 42 49 47 ┆ !• BIG
1343----
1344====
1345
e57a18e1 1346=== Repetition block
71aaa3f7 1347
e57a18e1
PP
1348A _repetition block_ represents the bytes of one or more items repeated
1349a given number of times.
676f6189 1350
e57a18e1 1351A repetition block is:
71aaa3f7 1352
261c5ecf 1353. The `!repeat` or `!r` opening.
71aaa3f7 1354
2adf4336
PP
1355. One of:
1356
1357** A positive integer (hexadecimal starting with `0x` or `0X` accepted)
1358 which is the number of times to repeat the previous item.
1359
27d52a19
PP
1360** The ``pass:[{]`` prefix, a valid {py3} expression of which the
1361 evaluation result type is `int` or `bool` (automatically converted to
1362 `int`), and the ``pass:[}]`` suffix.
05f81895 1363+
320644e2
PP
1364For a repetition block at some source location{nbsp}__**L**__, this
1365expression may contain:
05f81895
PP
1366+
1367--
27d52a19
PP
1368* The name of any <<label,label>> defined before{nbsp}__**L**__
1369 which isn't within a nested group.
05f81895 1370* The name of any <<variable-assignment,variable>> known
320644e2 1371 at{nbsp}__**L**__.
05f81895
PP
1372--
1373+
e57a18e1
PP
1374The value of the special name `ICITTE` (`int` type) in this expression
1375is the <<cur-offset,current offset>> (before handling the items to
1376repeat).
1377
1378** A valid {py3} name.
1379+
1380For the name `__NAME__`, this is equivalent to the
1381`pass:[{]__NAME__pass:[}]` form above.
1382
1383. Zero or more items.
1384
261c5ecf 1385. The `!end` closing.
e57a18e1
PP
1386
1387You may also use a <<post-item-repetition,post-item repetition>> after
1388some items. The form ``!repeat{nbsp}__X__{nbsp}__ITEMS__{nbsp}!end``
1389is equivalent to ``(__ITEMS__){nbsp}pass:[*]{nbsp}__X__``.
71aaa3f7
PP
1390
1391====
1392Input:
1393
1394----
e57a18e1
PP
1395!repeat 0x100
1396 {end - ICITTE - 1 : 8}
1397!end
1398
1399<end>
71aaa3f7
PP
1400----
1401
1402Output:
1403
1404----
1405ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ┆ ••••••••••••••••
1406ef ee ed ec eb ea e9 e8 e7 e6 e5 e4 e3 e2 e1 e0 ┆ ••••••••••••••••
1407df de dd dc db da d9 d8 d7 d6 d5 d4 d3 d2 d1 d0 ┆ ••••••••••••••••
1408cf ce cd cc cb ca c9 c8 c7 c6 c5 c4 c3 c2 c1 c0 ┆ ••••••••••••••••
1409bf be bd bc bb ba b9 b8 b7 b6 b5 b4 b3 b2 b1 b0 ┆ ••••••••••••••••
1410af ae ad ac ab aa a9 a8 a7 a6 a5 a4 a3 a2 a1 a0 ┆ ••••••••••••••••
14119f 9e 9d 9c 9b 9a 99 98 97 96 95 94 93 92 91 90 ┆ ••••••••••••••••
14128f 8e 8d 8c 8b 8a 89 88 87 86 85 84 83 82 81 80 ┆ ••••••••••••••••
14137f 7e 7d 7c 7b 7a 79 78 77 76 75 74 73 72 71 70 ┆ •~}|{zyxwvutsrqp
14146f 6e 6d 6c 6b 6a 69 68 67 66 65 64 63 62 61 60 ┆ onmlkjihgfedcba`
14155f 5e 5d 5c 5b 5a 59 58 57 56 55 54 53 52 51 50 ┆ _^]\[ZYXWVUTSRQP
14164f 4e 4d 4c 4b 4a 49 48 47 46 45 44 43 42 41 40 ┆ ONMLKJIHGFEDCBA@
14173f 3e 3d 3c 3b 3a 39 38 37 36 35 34 33 32 31 30 ┆ ?>=<;:9876543210
14182f 2e 2d 2c 2b 2a 29 28 27 26 25 24 23 22 21 20 ┆ /.-,+*)('&%$#"!
14191f 1e 1d 1c 1b 1a 19 18 17 16 15 14 13 12 11 10 ┆ ••••••••••••••••
14200f 0e 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01 00 ┆ ••••••••••••••••
1421----
1422====
1423
2adf4336
PP
1424====
1425Input:
1426
1427----
1428{times = 1}
e57a18e1 1429
2adf4336 1430aa bb cc dd
e57a18e1
PP
1431
1432!repeat 3
2adf4336 1433 <here>
e57a18e1
PP
1434
1435 !repeat {here + 1}
1436 ee ff
1437 !end
1438
1439 11 22 !repeat times 33 !end
1440
2adf4336 1441 {times = times + 1}
e57a18e1
PP
1442!end
1443
2adf4336
PP
1444"coucou!"
1445----
1446
1447Output:
1448
1449----
1450aa bb cc dd ee ff ee ff ee ff ee ff ee ff 11 22 ┆ •••••••••••••••"
145133 ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ 3•••••••••••••••
1452ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1453ff ee ff ee ff 11 22 33 33 ee ff ee ff ee ff ee ┆ ••••••"33•••••••
1454ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1455ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1456ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1457ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1458ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1459ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1460ff ee ff ee ff ee ff ee ff ee ff ee ff 11 22 33 ┆ ••••••••••••••"3
146133 33 63 6f 75 63 6f 75 21 ┆ 33coucou!
1462----
1463====
1464
320644e2
PP
1465=== Macro definition block
1466
1467A _macro definition block_ associates a name and parameter names to
1468a group of items.
1469
1470A macro definition block doesn't lead to generated bytes itself: a
1471<<macro-expansion,macro expansion>> does so.
1472
1473A macro definition may only exist at the root level, that is, not within
1474a <<group,group>>, a <<repetition-block,repetition block>>, a
1475<<conditional-block,conditional block>>, or another
1476<<macro-definition-block,macro definition block>>.
1477
1478All macro definitions must have unique names.
1479
1480A macro definition is:
1481
1482. The `!macro` or `!m` opening.
1483
1484. A valid {py3} name (the macro name).
1485
1486. The `(` parameter name list prefix.
1487
1488. A comma-separated list of zero or more unique parameter names,
1489 each one being a valid {py3} name.
1490
1491. The `)` parameter name list suffix.
1492
1493. Zero or more items except, recursively, a macro definition block.
1494
1495. The `!end` closing.
1496
1497====
1498----
1499!macro bake()
1500 {le} {ICITTE * 8 : 16}
1501 u16le"predict explode"
1502!end
1503----
1504====
1505
1506====
1507----
1508!macro nail(rep, with_extra, val)
1509 {iter = 1}
1510
1511 !repeat rep
1512 {val + iter : uleb128}
1513 {0xdeadbeef : 32}
1514 {iter = iter + 1}
1515 !end
1516
1517 !if with_extra
1518 "meow mix\0"
1519 !end
1520!end
1521----
1522====
1523
1524=== Macro expansion
1525
1526A _macro expansion_ expands the items of a defined
1527<<macro-definition-block,macro>>.
1528
1529The macro to expand must be defined _before_ the expansion.
1530
1531The <<state,state>> before handling the first item of the chosen macro
1532is:
1533
1534<<cur-offset,Current offset>>::
1535 Unchanged.
1536
1537<<cur-bo,Current byte order>>::
1538 Unchanged.
1539
1540Variables::
1541 The only available variables initially are the macro parameters.
1542
1543Labels::
1544 None.
1545
1546The state after having handled the last item of the chosen macro is:
1547
1548Current offset::
1549 The one before handling the first item of the macro plus the size
1550 of the generated data of the macro expansion.
1551+
1552IMPORTANT: This means <<current-offset-setting,current offset setting>>
1553items within the expanded macro don't impact the final current offset.
1554
1555Current byte order::
1556 The one before handling the first item of the macro.
1557
1558Variables::
1559 The ones before handling the first item of the macro.
1560
1561Labels::
1562 The ones before handling the first item of the macro.
1563
1564A macro expansion is:
1565
1566. The `m:` prefix.
1567
1568. A valid {py3} name (the name of the macro to expand).
1569
1570. The `(` parameter value list prefix.
1571
1572. A comma-separated list of zero or more unique parameter values.
1573+
1574The number of parameter values must match the number of parameter
1575names of the definition of the chosen macro.
1576+
1577A parameter value is one of:
1578+
1579--
1580* A positive integer (hexadecimal starting with `0x` or `0X` accepted).
1581
1582* The ``pass:[{]`` prefix, a valid {py3} expression of which the
1583 evaluation result type is `int` or `bool` (automatically converted to
1584 `int`), and the ``pass:[}]`` suffix.
1585+
1586For a macro expansion at some source location{nbsp}__**L**__, this
1587expression may contain:
1588
1589** The name of any <<label,label>> defined before{nbsp}__**L**__
1590 which isn't within a nested group.
1591** The name of any <<variable-assignment,variable>> known
1592 at{nbsp}__**L**__.
1593
1594+
1595The value of the special name `ICITTE` (`int` type) in this expression
1596is the <<cur-offset,current offset>> (before handling the items of the
1597chosen macro).
1598
1599* A valid {py3} name.
1600+
1601For the name `__NAME__`, this is equivalent to the
1602`pass:[{]__NAME__pass:[}]` form above.
1603--
1604
1605. The `)` parameter value list suffix.
1606
1607====
1608Input:
1609
1610----
1611!macro bake()
1612 {le} {ICITTE * 8 : 16}
1613 u16le"predict explode"
1614!end
1615
1616"hello [" m:bake() "] world"
1617
1618m:bake() * 5
1619----
1620
1621Output:
1622
1623----
162468 65 6c 6c 6f 20 5b 38 00 70 00 72 00 65 00 64 ┆ hello [8•p•r•e•d
162500 69 00 63 00 74 00 20 00 65 00 78 00 70 00 6c ┆ •i•c•t• •e•x•p•l
162600 6f 00 64 00 65 00 5d 20 77 6f 72 6c 64 70 01 ┆ •o•d•e•] worldp•
162770 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
162865 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 02 ┆ e•x•p•l•o•d•e•p•
162970 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
163065 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 03 ┆ e•x•p•l•o•d•e•p•
163170 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
163265 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 04 ┆ e•x•p•l•o•d•e•p•
163370 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
163465 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 05 ┆ e•x•p•l•o•d•e•p•
163570 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
163665 00 78 00 70 00 6c 00 6f 00 64 00 65 00 ┆ e•x•p•l•o•d•e•
1637----
1638====
1639
1640====
1641Input:
1642
1643----
1644!macro A(val, is_be)
1645 {le}
1646
1647 !if is_be
1648 {be}
1649 !end
1650
1651 {val : 16}
1652!end
1653
1654!macro B(rep, is_be)
1655 {iter = 1}
1656
1657 !repeat rep
1658 m:A({iter * 3}, is_be)
1659 {iter = iter + 1}
1660 !end
1661!end
1662
1663m:B(5, 1)
1664m:B(3, 0)
1665----
1666
1667Output:
1668
1669----
167000 03 00 06 00 09 00 0c 00 0f 03 00 06 00 09 00
1671----
1672====
1673
e57a18e1
PP
1674=== Post-item repetition
1675
1676A _post-item repetition_ represents the bytes of an item repeated a
1677given number of times.
1678
1679A post-item repetition is:
1680
27d52a19 1681. One of those items:
e57a18e1 1682
27d52a19
PP
1683** A <<byte-constant,byte constant>>.
1684** A <<literal-string,literal string>>.
1685** A <<fixed-length-number,fixed-length number>>.
1686** An <<leb128-integer,LEB128 integer>>.
320644e2 1687** A <<macro-expansion,macro-expansion>>.
27d52a19 1688** A <<group,group>>.
e57a18e1
PP
1689
1690. The ``pass:[*]`` character.
1691
1692. One of:
1693
1694** A positive integer (hexadecimal starting with `0x` or `0X` accepted)
1695 which is the number of times to repeat the previous item.
1696
27d52a19
PP
1697** The ``pass:[{]`` prefix, a valid {py3} expression of which the
1698 evaluation result type is `int` or `bool` (automatically converted to
1699 `int`), and the ``pass:[}]`` suffix.
e57a18e1 1700+
320644e2
PP
1701For a post-item repetition at some source location{nbsp}__**L**__, this
1702expression may contain:
e57a18e1
PP
1703+
1704--
27d52a19
PP
1705* The name of any <<label,label>> defined before{nbsp}__**L**__
1706 which isn't within a nested group and
1707 which isn't part of the repeated item.
e57a18e1
PP
1708* The name of any <<variable-assignment,variable>> known
1709 at{nbsp}__**L**__, which isn't part of its repeated item, and which
320644e2 1710 doesn't.
e57a18e1
PP
1711--
1712+
1713The value of the special name `ICITTE` (`int` type) in this expression
1714is the <<cur-offset,current offset>> (before handling the items to
1715repeat).
1716
1717** A valid {py3} name.
1718+
1719For the name `__NAME__`, this is equivalent to the
1720`pass:[{]__NAME__pass:[}]` form above.
1721
1722You may also use a <<repetition-block,repetition block>>. The form
1723``__ITEM__{nbsp}pass:[*]{nbsp}__X__`` is equivalent to
1724``!repeat{nbsp}__X__{nbsp}__ITEM__{nbsp}!end``.
1725
1726====
1727Input:
1728
1729----
1730{end - ICITTE - 1 : 8} * 0x100 <end>
1731----
1732
1733Output:
1734
1735----
1736ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ┆ ••••••••••••••••
1737ef ee ed ec eb ea e9 e8 e7 e6 e5 e4 e3 e2 e1 e0 ┆ ••••••••••••••••
1738df de dd dc db da d9 d8 d7 d6 d5 d4 d3 d2 d1 d0 ┆ ••••••••••••••••
1739cf ce cd cc cb ca c9 c8 c7 c6 c5 c4 c3 c2 c1 c0 ┆ ••••••••••••••••
1740bf be bd bc bb ba b9 b8 b7 b6 b5 b4 b3 b2 b1 b0 ┆ ••••••••••••••••
1741af ae ad ac ab aa a9 a8 a7 a6 a5 a4 a3 a2 a1 a0 ┆ ••••••••••••••••
17429f 9e 9d 9c 9b 9a 99 98 97 96 95 94 93 92 91 90 ┆ ••••••••••••••••
17438f 8e 8d 8c 8b 8a 89 88 87 86 85 84 83 82 81 80 ┆ ••••••••••••••••
17447f 7e 7d 7c 7b 7a 79 78 77 76 75 74 73 72 71 70 ┆ •~}|{zyxwvutsrqp
17456f 6e 6d 6c 6b 6a 69 68 67 66 65 64 63 62 61 60 ┆ onmlkjihgfedcba`
17465f 5e 5d 5c 5b 5a 59 58 57 56 55 54 53 52 51 50 ┆ _^]\[ZYXWVUTSRQP
17474f 4e 4d 4c 4b 4a 49 48 47 46 45 44 43 42 41 40 ┆ ONMLKJIHGFEDCBA@
17483f 3e 3d 3c 3b 3a 39 38 37 36 35 34 33 32 31 30 ┆ ?>=<;:9876543210
17492f 2e 2d 2c 2b 2a 29 28 27 26 25 24 23 22 21 20 ┆ /.-,+*)('&%$#"!
17501f 1e 1d 1c 1b 1a 19 18 17 16 15 14 13 12 11 10 ┆ ••••••••••••••••
17510f 0e 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01 00 ┆ ••••••••••••••••
1752----
1753====
1754
1755====
1756Input:
1757
1758----
1759{times = 1}
1760aa bb cc dd
1761(
1762 <here>
1763 (ee ff) * {here + 1}
1764 11 22 33 * {times}
1765 {times = times + 1}
1766) * 3
1767"coucou!"
1768----
1769
1770Output:
1771
1772----
1773aa bb cc dd ee ff ee ff ee ff ee ff ee ff 11 22 ┆ •••••••••••••••"
177433 ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ 3•••••••••••••••
1775ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1776ff ee ff ee ff 11 22 33 33 ee ff ee ff ee ff ee ┆ ••••••"33•••••••
1777ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1778ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1779ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1780ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1781ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1782ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1783ff ee ff ee ff ee ff ee ff ee ff ee ff 11 22 33 ┆ ••••••••••••••"3
178433 33 63 6f 75 63 6f 75 21 ┆ 33coucou!
1785----
1786====
1787
71aaa3f7
PP
1788== Command-line tool
1789
1790If you <<install-normand,installed>> the `normand` package, then you
1791can use the `normand` command-line tool:
1792
1793----
1794$ normand <<< '"ma gang de malades"' | hexdump -C
1795----
1796
1797----
179800000000 6d 61 20 67 61 6e 67 20 64 65 20 6d 61 6c 61 64 |ma gang de malad|
179900000010 65 73 |es|
1800----
1801
1802If you copy the `normand.py` module to your own project, then you can
1803run the module itself:
1804
1805----
1806$ python3 -m normand <<< '"ma gang de malades"' | hexdump -C
1807----
1808
1809----
181000000000 6d 61 20 67 61 6e 67 20 64 65 20 6d 61 6c 61 64 |ma gang de malad|
181100000010 65 73 |es|
1812----
1813
1814Without a path argument, the `normand` tool reads from the standard
1815input.
1816
1817The `normand` tool prints the generated binary data to the standard
1818output.
1819
1820Various options control the initial <<state,state>> of the processor:
1821use the `--help` option to learn more.
1822
1823== {py3} API
1824
e57a18e1 1825The whole `normand` package/module public API is:
71aaa3f7
PP
1826
1827[source,python]
1828----
e57a18e1 1829# Byte order.
71aaa3f7
PP
1830class ByteOrder(enum.Enum):
1831 # Big endian.
1832 BE = ...
1833
1834 # Little endian.
1835 LE = ...
1836
1837
e57a18e1
PP
1838# Text location.
1839class TextLocation:
71aaa3f7
PP
1840 # Line number.
1841 @property
1842 def line_no(self) -> int:
1843 ...
1844
1845 # Column number.
1846 @property
1847 def col_no(self) -> int:
1848 ...
1849
1850
e57a18e1 1851# Parsing error.
71aaa3f7
PP
1852class ParseError(RuntimeError):
1853 # Source text location.
1854 @property
e57a18e1 1855 def text_loc(self) -> TextLocation:
71aaa3f7
PP
1856 ...
1857
1858
e57a18e1
PP
1859# Variables dictionary type (for type hints).
1860VariablesT = typing.Dict[str, typing.Union[int, float]]
1861
1862
1863# Labels dictionary type (for type hints).
1864LabelsT = typing.Dict[str, int]
1b8aa84a
PP
1865
1866
e57a18e1 1867# Parsing result.
71aaa3f7
PP
1868class ParseResult:
1869 # Generated data.
1870 @property
1871 def data(self) -> bytearray:
1872 ...
1873
1874 # Updated variable values.
1875 @property
1b8aa84a 1876 def variables(self) -> SymbolsT:
71aaa3f7
PP
1877 ...
1878
1879 # Updated main group label values.
1880 @property
1b8aa84a 1881 def labels(self) -> SymbolsT:
71aaa3f7
PP
1882 ...
1883
1884 # Final offset.
1885 @property
1886 def offset(self) -> int:
1887 ...
1888
1889 # Final byte order.
1890 @property
1b8aa84a 1891 def byte_order(self) -> typing.Optional[ByteOrder]:
71aaa3f7
PP
1892 ...
1893
1b8aa84a 1894
e57a18e1
PP
1895# Parses the `normand` input using the initial state defined by
1896# `init_variables`, `init_labels`, `init_offset`, and `init_byte_order`,
1897# and returns the corresponding parsing result.
71aaa3f7 1898def parse(normand: str,
1b8aa84a
PP
1899 init_variables: typing.Optional[SymbolsT] = None,
1900 init_labels: typing.Optional[SymbolsT] = None,
71aaa3f7
PP
1901 init_offset: int = 0,
1902 init_byte_order: typing.Optional[ByteOrder] = None) -> ParseResult:
1903 ...
1904----
1905
1906The `normand` parameter is the actual <<learn-normand,Normand input>>
1907while the other parameters control the initial <<state,state>>.
1908
1909The `parse()` function raises a `ParseError` instance should it fail to
1910parse the `normand` string for any reason.
bf8f3b38
PP
1911
1912== Development
1913
1914Normand is a https://python-poetry.org/[Poetry] project.
1915
1916To develop it, install it through Poetry and enter the virtual
1917environment:
1918
1919----
1920$ poetry install
1921$ poetry shell
1922$ normand <<< '"lol" * 10 0a'
1923----
1924
1925`normand.py` is processed by:
1926
1927* https://microsoft.github.io/pyright/[Pyright]
1928* https://github.com/psf/black[Black]
1929* https://pycqa.github.io/isort/[isort]
1930
1931=== Testing
1932
1933Use https://docs.pytest.org/[pytest] to test Normand once the package is
1934part of your virtual environment, for example:
1935
1936----
1937$ poetry install
1938$ poetry run pip3 install pytest
1939$ poetry run pytest
1940----
1941
1942The `pytest` project is currently not a development dependency in
1943`pyproject.toml` due to backward compatibiliy issues with
1944Python{nbsp}3.4.
1945
1946In the `tests` directory, each `*.nt` file is a test. The file name
1947prefix indicates what it's meant to test:
1948
1949`pass-`::
1950 Everything above the `---` line is the valid Normand input
1951 to test.
1952+
1953Everything below the `---` line is the expected data
1954(whitespace-separated hexadecimal bytes).
1955
1956`fail-`::
1957 Everything above the `---` line is the invalid Normand input
1958 to test.
1959+
1960Everything below the `---` line is the expected error message having
1961this form:
1962+
1963----
1964LINE:COL - MESSAGE
1965----
1966
1967=== Contributing
1968
1969Normand uses https://review.lttng.org/admin/repos/normand,general[Gerrit]
1970for code review.
1971
1972To report a bug, https://github.com/efficios/normand/issues/new[create a
1973GitHub issue].
This page took 0.096961 seconds and 4 git commands to generate.