aboutsummaryrefslogtreecommitdiff
path: root/unprotbas.rst
blob: d24b1f3dc19d8ce89e381df0c19db2d12321ce50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
=========
unprotbas
=========

---------------------------------------------------
Unprotect LIST-protected Atari 8-bit BASIC programs
---------------------------------------------------

.. include:: manhdr.rst

SYNOPSIS
========

unprotbas [**-v**] [**-f**] [**-n**] [**-g**] [**-c**] [**-r** | **-w**] **input-file** **output-file**

DESCRIPTION
===========

**unprotbas** modifies a tokenized LIST-protected Atari 8-bit BASIC
program, creating a new non-protected copy. See **DETAILS**, below,
to understand how the protection and unprotection works.

**input-file** must be a tokenized (SAVEd) Atari BASIC program. Use
*-* to read from standard input, but **unprotbas** will refuse to
read from standard input if it's a terminal.

**output-file** will be the unprotected tokenized BASIC program. If it
already exists, it will be overwritten. Use *-* to write to standard
output, but **unprotbas** will refuse to write to standard output if
it's a terminal (since tokenized BASIC is binary data and may confuse
the terminal).

OPTIONS
=======

Options may appear in any order. The first non-option argument is used
for **input-file**; the second is **output-file**. A third non-option
argument is an error.

Option bundling is not supported, use e.g. **-v -f**, not **-vf**.
To use filenames beginning with *-*, write them as *./-file*, or they
will be treated as options.

General Options
---------------
**--help**
  Print usage message and exit.

**--version**
  Print version number and exit.

**-v**
  Verbose operation. When displaying a number in verbose mode, it will
  be prefixed with *$* if it's in hex, or no prefix for decimal.

Unprotection Options
--------------------
**-f**
  Force the variable name table to be rebuilt, even if it looks OK.
  This option cannot be combined with **-n**.

**-n**
  Don't rebuild the variable table (only fix the line pointers, if
  needed). This option cannot be combined with **-f**.

**-g**
  Remove any "garbage" data from the end of the file. By default,
  it's left as-is, in case it's actually data used by the program.

**-c**
  Check only. Does a dry run. Loads the program, unprotects it in
  memory, but doesn't write the result anywhere. In this mode, there
  is no **output-file**.

**-w**
  Write the variable names to **varnames.txt**, one per line.
  This can be edited, and later used with **-r** to set the variable names
  to something sensible rather than A, B, C, etc. For an unprotected
  program, you can use **-n** to write the existing names rather than
  generating new ones. See **VARIABLE NAMES**, below. If **varnames.txt**
  already exists, it will be overwritten.

**-r**
  Read variable names from **varnames.txt**, and use them instead of
  generating the names. See **VARIABLE NAMES**, below.

EXIT STATUS
===========

0
  **input-file** was protected, unprotection was successful.

1
  I/O error, or **input-file** isn't a valid BASIC program.

2
  **input-file** is already an unprotected BASIC program.

DETAILS
=======

In the Atari BASIC world, it's possible to create a SAVEd (tokenized)
program that can be RUN from disk (**RUN "D:FILE.BAS"**) but if
it's LOADed, it will either crash the BASIC interpreter, or LIST
as gibberish. This is known as LIST-protection. Such programs are
generally released to the world in protected form; the author
privately keeps an unprotected copy so he can modify it. In
later days, collections such as the Holmes Archive contain many
LIST-protected programs, for which the unprotected version was never
released.

One example of LIST-protection, taken from *Mapping the Atari* (the
**STMCUR** entry in the memory map) looks like::

  32000 FOR VARI=PEEK(130)+PEEK(131)*256 TO PEEK(132)+PEEK(133)*256:POKE VARI,155:NEXT VARI
  32100 POKE PEEK(138)+PEEK(139)*256+2,0:SAVE "D:filename":NEW

To use, add the 2 lines of code to your program, then execute them
with **GOTO 32000** in immediate mode.

This illustrates both types of protection, which can be (and usually
are) applied to the same program:

Variable name table scrambling
  BASIC has specific rules on what are and aren't considered legal
  variable names, which are enforced by the tokenization process,
  at program entry time. However, it doesn't use the variable names
  at runtime, when the tokenized file is interpreted.

  Replacing the variable names with binary gibberish will render the
  program LIST-proof, either replacing every variable name with the
  same control character, or causing LIST to display a long string of
  binary garbage for each variable name... but the program will still
  RUN correctly. Note that the original variable names are *gone*,
  and cannot be recovered.

  Line 32000 in the example above does this job, replacing every
  variable name with the EOL character (155).

  **unprotbas** detects a scrambled variable name table, and builds
  a new one that's valid. However, since there are no real variable
  names in the program, the recovery process just invents new ones,
  named A through Z, A1 through A9, B1 through B9, etc, etc. It'll
  require human intelligence to figure out what each variable is for,
  since the names are meaningless. See **VARIABLE NAMES**, below.

  The **output-file** may not be the exact size that the
  **input-file** was. Some types of variable-name scrambling shrink
  the variable name table to the minimum size (one byte per name), so
  the rebuilt table will be larger. Other types of scrambling leave
  the variable name table at its original size, but **unprotbas**
  generates only one- and two-character variable names, so the rebuilt
  table might be smaller.

  The program **PROTECT.BAS**, found on Disk 2 of the Holmes Archive,
  creates protected BASIC programs that only use variable name
  scrambling.

  **protbas**\(1) also does variable name scrambling.

Bad next-line pointer
  Every line of tokenized BASIC contains a line length byte, which
  BASIC uses as a pointer to the next line of code. Before executing
  an immediate mode command, BASIC iterates over every line of code in
  the program, using the next-line pointers, in order to delete any
  existing line 32768 (the previous immediate mode command). If any
  line's pointer is set to zero, that means it points to itself.

  When BASIC tries to traverse a line of code that points to itself as
  "next" line, it will get stuck in an infinite loop. This not only
  prevents LIST, it actually prevents any immediate mode command:
  after LOADing such a file, *nothing* will work (even pressing RESET
  won't get you out of it). The only way to use such a program is to
  use the RUN command with a filename, and if the program ever exits
  (due to END, STOP, an error, Break key, or even System Reset), BASIC
  will get stuck again.

  This doesn't *have* to be done with the last line in the program,
  though it normally is. The "poisoned" line can never be executed (or
  BASIC will lock up), but it could be followed by more lines of code
  (which also could never be executed).

  Line 32100 in the example above does this job, taking advantage of
  the STMCUR pointer used by BASIC, which holds the address of the
  line of tokenized code currently being executed.

  Each statement in the line also has a statement-length byte. For
  lines with only one statement, its value is the same as the line
  length. For lines with multiple statements (separated by *:*), it's
  a pointer to the next statement, counting from the start of the
  current line. For the last statement on a line, it's a pointer to
  the next line of code, meaning it's identical to the line length.

  **unprotbas** fixes bad line lengths by setting the line length to
  the statement length of the last statement. No information is lost
  by doing this.

  The program **UNPROTEC**, from the *Pirate's Treasure Chest*, can
  fix bad pointers in protected programs, though it doesn't do
  anything about variable name scrambling.

  **protbas** also does this type of protection.

One more thing **unprotbas** can do is remove extra data from the end
of the file. It's possible for BASIC files to contain extra data that
occurs after the end of the program. Such data might be:

- Pre-defined strings and/or arrays, saved with the program by
  modifying the STARP pointer.

- Arbitrary binary data used by the program at runtime, such as
  machine language routines, or fonts.

- Zero bytes, caused by SAVEing the program with revision B BASIC. Every
  time a program is LOADed, edited (or not) and then SAVEd again, 16
  bytes of extra (garbage) data gets added to the program. To avoid
  this, don't use revision B (use rev C if possible, A otherwise).

- Garbage added by some system previously used to store or transmit
  the file. CP/M systems might add an EOF (^Z) character. Dumb
  file transfer software might pad the file up to its block size.

Normally, such "garbage" doesn't hurt anything. BASIC ignores it. Or
it normally does... if you suspect it's causing a problem, you can
remove it with the **-g** option. If removing the "garbage" causes the
program to fail to run, it wasn't garbage! **unprotbas** doesn't
remove extra data by default, to be on the safe side.

VARIABLE NAMES
==============

If variable name scrambling was used, the original variable names no
longer exist. **unprotbas** will generate them, according to these rules:

  The first 26 numeric variables will be called *A* through *Z*. Further
  numeric variables will be *A1* through *A9*, *B1* through *B9*, etc.

  The first 26 string variables will be *A$* to *Z$*, then *A1$* to
  *A9$*, *B1$* to *B9$*, etc.

  The first 26 array variables will be *A(* to *Z(*, then *A1(* to
  *A9(*, *B1(* to *B9(*, etc.

Note that array variables have only the *(* as part of the name. The
closing *)* is "cosmetic" and not part of the actual name.

To properly reverse-engineer the protected program, it's necessary to assign
meaningful variable names. **unprotbas** isn't smart enough to do this for you,
but it can semi-automate the process.

First, run **unprotbas** with the **-w** option. This will create a
file called **varnames.txt**, containing the generated variable names.
These are in order, one line per variable name, ending with *$* for strings
and the *(* for arrays.

Load the unprotected program on the Atari and LIST it (or use **chkbas** to get a
listing), and edit **varnames.txt** in a text editor.

As you figure out what each variable's purpose is, change its name
in the text file. When editing the file:

- Don't add or delete any lines.
- Don't get rid of the *$* or *(* at the end of any line.
- You may enter the names in lowercase (**unprotbas** will convert them to uppercase).
- Remember to follow the rules for BASIC variable names:
  The first character must be a letter, other characters must be a letter
  or a number, and only the last character can be *$* or *(*.
- No duplicates of the same type are allowed (you can have *FOO* and *FOO$*,
  but not two numerics called *FOO*).

When you're finished, re-run **unprotbas**, this time with the **-r**
option. If all is well, the unprotected program will use your variable
names, rather than generating new ones. If you broke the rules, you
should get an informative error message explaining what and where the
problem is.

This process can also be used for regular unprotected programs. Use
**-n -w** the first time, to save the existing variable names to
**varnames.txt** rather than generating new ones.

NOTES
=====

Atari BASIC has a limit of 128 variables in a program. It's actually
possible for the variable name table to contain up to 256 variables,
though the 129th and further ones won't be usable in the program. The
variable value table can hold more than 256 values, though the
variable numbers wrap around once they pass 255. The attempt to add
variables past the 128th causes BASIC to respond with *ERROR- 4*, but
the variable does get added to the tables. **unprotbas** will preserve
these extra (useless) entries in the tables.

If there more than 256 entries in the value table, you will see
"Warning: skipping variable numbers >=256 in value table". This is
a pathological case, and shouldn't happen with programs that aren't
deliberately crafted to test this behaviour.

.. include:: manftr.rst