[comp.unix.programmer] ANA - a binary analyser

tam@cronos.metaphor.com (10/17/90)

	For those people who don't think I should post PC binary in this group,
please accept my apology. I think ANA is so useful for some developers that it
is too selfish not to share (Of course I am still selfish of not sharing the
source).
	I have received a lot of requests on ANA, including a lot of requests
on platforms that I don't support. ANA is highly portable, the reason why I
don't support these platforms are simply because I don't have access to those
machines, as long as they have a C compiler. So far I don't need a single
change in source on any platforms I compiled.
	I also get a lot of requests on the MSDOS version. Since I believe
anywhere have a computer should have at least one PC, I am posting the binary
on MSDOS. This not only will serve the purpose of sending to those people who
request this version, but also will serve as a demo program. What you see in the
MSDOS version is exactly the same on other platforms. That's why I keep the user
interface so old fashion, I could have gone to full screen but then I will have
problem in porting. For those people who find it absolutely essential but I
don't yet support the platform, may be we can make some arrangement.
	For those requesters who have not received ANA, it's because either we
have mail problem or I have not found a way to email back to them. If you have
not received ANA yet, please email to me again.
	Mr. Tommy Wallo from Swedish Institute of Computer Science has set up
a anonymous site for ANA, many thanks to him. He have all the versions for the
Sun platform. The address is 192.16.123.90. You can also ask me to email to you.

	The following is a user guide of ANA:

Current versions available:
	Sun 3 UNIX 4.2 Release 3.5 and SunOS 4.1 (680x0)
	SunOS 4.0.3c
	SunOS 4.1
	HP 9000/300 HP/UX
	IBM RS/6000 AIX 3.1
	IBM PS2 AIX 1.2
	IBM RT AIX 2.?
	MSDOS
	OS/2 1.2

ANA Command summary
Prepared by: Paul C. Tam
For Version 0.15
Printed on 24 July 1990

    I was rushing to finish this document, some parts may be confusing. I
    appreciate any comment or enhancement of this document. This version of
    ANA are free, please feel free to copy.

0   HIGHLIGHTS

    * Interpret binary data in structures YOU defined.
	So that I can dump my object file in OBJECT FILE FORMAT
    * Rearrange data bytes before interpretation.
	Remember our byte swap problem?
    * Report current machine data types.
	So I know my integer type is 4 bytes not 2
    * Dump binary data in very flexible format.
	So it won't scroll faster than I can read
    * Dump multiple files on same screen.
	Don't you wish sometimes you can compare multiple files on same screen?
    * Same user interface across various platforms.
	I don't care what OS I'm running, ANA always treats me the same
    * Built in calculator/converter.
	I want to dump the 0x549th byte off the current position
	I want to know what 0x534634 is in decimal, what 0x42 is in ASCII
    * Save output to disk for future use.
	I want a hardcopy so that I can make a paper plane
    * Search for patterns.
	I want to find the VP's name in the salary file and replace with mine
    * Execute Operating System command without exiting.
	Most popular games have a fake to OS mode, but I think this is for real
    * And more......


1   INTER-OPERABILITY

    Inter-operational seems to be a hot buzzword these days. This software will
    do just that. Since the software is extremely portable, there are versions
    running on almost any operating system that has a C compiler. They have
    exactly the same look and feel across all platforms.

2   Introduction

     ANA is an utility program to assist users (especailly software developer)
who are interested in ANAlyzing the binary contents of any file. This program
may be easier for users who know C since the terminology used here is C like.
     Its major function is primarily to display the binary contents of any
file interactively. On top of it, there are a lot of features built in to make
this utility more flexible and useful. Some of these features include: able to
dump the display buffer into a file, set the display length and base, pack the
display and search for combination of bytes.
     An unique feature of this utility is perhaps its ability to analyze
certain structure. This feature is especially geared for software developers.
Sometimes data files are an array of records, each record contains information
of different types. For example, the data file maybe a control file of a print
queue. There are a number of records in there to represent the number of files
waiting to be printed. Each record in turns contains different fields, these
fields may indicate the file name to be printed, its priority and so on. They
may have data type of character (1 byte), integer (2 or 4 bytes) and ASCII
string.
     Using ANA, user can create an ASCII file in which the structure is defined.
ANA then maps the data file into the structure and intreprets them as a series
of fields instead of a string of bytes.

3    How to invoke ANA

     ANA can be invoked in any one of the following ways:

     1) ANA
     2) ANA <data_file_name>
     3) ANA <data_file_name> <start_address> <length_of_buffer>

4    Inputs

     Inputs can be of form hexidecimal, decimal or ascii. Numerical inputs are
     interpreted according to the default base, however they can be overridden
     by a prefix. Any input prefixed by 0x are always hex no matter what the
     current default state is and any input prefixed with \ are always decimal.
     Single ascii character must be between single quotes, ascii string,
     however, must be between a pair of delimitor which can be any characters.
     e.g. command s strings is the same as command s 'tring', they both search
     for "tring".

5    Report

     Unpacked -
 0x00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F |................|
 0x00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F |................|

     Packed -
 000102030405060708090A0B0C0D0E0F
 101112131415161718191A1B1C1D1E1F

     The report format is fairly flexible. Report address, report data can be in
either hexadecimal or decimal. The above format can vary depends on a
number of parameters, these parameters can be set by various commands. However,
the following are the default parameters unless otherwise overridden by their
corresponding commands.

     Parameters     Defaults       Commands
     Pack Mode      Unpacked       p (packed)
     Address Base   Hexadecimal    b a (base)
     Data Base	    Hexadecimal	   b d 
     Buffer size    240 bytes      l (length)
     Report width   16 bytes       w (width)
     Start address  0              a (address)


6    Command Descriptions

     6.1  ? - Help
          Display a brief description of commands available. This is useful for
          commands review.

     6.2  ENTER - Display next buffer
          Data is read from file into the data buffer and displayed. Then the
          next starting address is updated so that the next ENTER will display
          the following data.

     6.3  l - Set new buffer length
          Define the size of the data buffer on the next display.

     6.4  a - Set new starting address
          Define a new starting address of the data file rather than the
          continuation of the last display buffer.

     6.5.1  b a - Toggle report address base
          In the unpack mode, the address of the first byte of each report line
          is shown. This address can be of base hexadecimal or decimal. This
          command toggles the base.

     6.5.2  b d - Toggle report data base
          Data reported can be of base hexadecimal or decimal. This command
	  toggles the base.

     6.5.3  b i - Toggle input base
          All numerical inputs are interpreted on the current default base, this
	  command toggles the base. However, inputs prefixed with 0x are always 
	  interpreted as hex and inputs prefixed with \ are always decimal.

     6.6  c - Calculator functions
          Sometimes it is necessary to do some arithmatic operations on the data
          displayed. A simple set of arithmatic functions are available in ANA.
          Currently, the calculator can only do integer arithmatic and is
          limited to two operands and one operator (with only one exception on
          conversions). The syntax of this command is the command keyword
          followed by the operation followed by an ENTER. The following are
          examples and descriptions of all available operations. Suppose X and
          Y are two integers.

               c X * Y   ( X multiply Y )
               c X / Y   ( X divided by Y )
               c X + Y   ( X plus Y )
               c X - Y   ( X minus Y )
               c X % Y   ( reminder of X divided by Y )
               c X & Y   ( X bit and with Y )
               c X | Y   ( X bit or with Y )
               c X ^ Y   ( X bit xor with Y )
               c X > Y   ( X right shift Y bits )
               c X < Y   ( X left shift Y bits )
               c X       ( X can be hex, decimal or ASCII )


     6.7  d - Download structure description file
          Each structure description file maps only one structure, sometimes it
          is desirable to map data to a different structure. This command loads
          another descritpion file for the next mapping.
     6.8  D - continuously dump
	  The whole work file starting at current location will be displayed 
	  continuously until the end of the file.

     6.9  i - information desk
	  This command display valuable information. Information includes the
          data types in bytes of current machine, current work file name,
          number, size, maximum work file allowed to open, number of work file
          currently opened and the user input base, report data base and report
          address base. Also the mapping alignments (read m command).

     6.10 m - Map data to structure
          Maps the data in the data buffer just displayed into the structure
          described by the SDF. Mapping currently starts at the beginning of
          the data buffer, therefore user may have to adjust the starting
          address before the mapping.
	  Data type will normally be aligned in a structure. For example, a
          'short' after a 'char' will be put in even boundary and the byte after
          the 'char' is meaningless. This utility will allow user to specify its
          alignment boundary. The arguments are i for int, l for long, f for
          float and d for double. Their defaults values are displayed in
          information desk ('i'). 

     6.11 o - open another work file
	  More than one file can be worked on, this command open another work
          file.

     6.12 p - Toggle packed display mode
          As discussed above, report format can be either packed or
          unpacked, this command toggle this format.

     6.13 q - Quit analyzer
          Terminate and exit program.

     6.14 s - search for a pattern
	  a pattern is searched starting at current location. The pattern can be
	  a series of hex or decimal number, or an ascii string in a pair of
	  delimiters.

     6.15 t - Transfer data buffer to disk
          It is possible to store the buffer just displayed into a disk file,
	  using this command will do just that. At the first execution of this
          command, the user will be prompted for the disk file name unless it is	  entered with the command. Any subsequent transfer will be appended to
          the named file and any file name entered in the command line will be
          ignored.

     6.16 u - use a different work file
	  If there are multiple work files opened (read o command), this command
          is used to switch to a different work file.

     6.17 V - Display current version
          This command displays the current version of the software and
          copyright message.

     6.18 w - Set display row width
          Especially after changing to packed display format from unpacked
          format, usually it is desirable to display more data in one line. This
          command allows user to adjust the display width. 

     6.19 z - zap old data with new data
	  Be care when using this command, it will replace the old data at
          current location with the new data. There is no recovery from it. Data
	  like 's' command can be hex, decimal or ascii.

     6.20 ! - OS escape
	  Run a regular Operating System command.

     6.21 0 - Redisplay buffer
          Sometimes data may be scrolled off the screen, this command will
          redisplay data that was just displayed.

     6.22 + - report the next display buffer

     6.23 - - report the previous display buffer.


7    Structure mapping

     Mapping structure is one of the unique feature in this software. Rather
     than just dumping the data file in bytes, user can define a structure
     definition file (hereon called SDF) from which the data can be intrepreted
     in a more flexible way. The SDF is a pure ASCII file in which each line
     represents one data field and the whole file together defines a structure
     to be mapped.

     The way to use this feature is of the following steps:
     First, the SDF is created through any editor. If the SDF is named "ana.fmt"     it will be read at program start otherwise mapping is disable until user
     loads another SDF.
     Second, display the beginning of the data structure by changing the start
     address and hit ENTER.
     Finally, activate the mapping command to map the data buffer.

     Each line in the SDF represents one data type field, every line has the
     following format:

     keyword user_defined_id [length/byte_arrangement]

     All types except "string" the third optional field is for byte rearrange-
     ment. In case of data type string, a length field has to be specified
     to indicate how many bytes are in the string. The user defined name is used
     to assist user to identify the field, its content is arbitrary and is
     limited to 20 characters. Name more than 20 characters will be truncated.

     The keywords currently supported are:

          int       signed interger
          char      single character (byte)
          string    string of characters
          long      long signed integer
          short     short signed integer
          ulong     unsigned long integer
          ushort    unsigned short integer
          uint      unsigned integer
          float     floating point number
          double    double floating point number

     To allow more flexibility, it is also possible to interactively download
     a new SDF so that more than one structure can be analyzed in a data file.

     EXAMPLE:
     Suppose there is a file of employee records, each record starts with an
     employee name of 10 characters, then an employee number of type long,
     followed by his salary which is of type integer. Let's further assume that
     integer is two bytes and a long integer is four bytes. Instead of just
     dumping the data file in bytes, it is more useful to dump them in a more
     descriptive form, in this case a string, a long integer and an integer.
     SDF should look like this:

          string employee_name 10
          long employee_no.
          int  employee_salary

     When the ANA utility is executed, ANA detects the existance of the SDF,
     it will then build the internal structure and enable the mapping facility.
     User can display the portion of data that needs to be analyzed, and then
     activates the mapping command, the display may look something like:

          employee_name = (John Doe  )
          employee_no. = 999999 (0xF423F)
          employee_salary = 5000 (0x1388)

     Notice that the string is shown inside a pair of paranthesis. The integers
     are shown in decimal and have their corresponding hexadecimal values.
 
     User should be aware that computer always put data into their corresponding
     type boundary. For example, for a machine that uses a two byte integer, a
     structure like
          structure {
               character A;
               integer 1;
          }
          may be stored as follow:
               41 XX 00 01
                   or
               41 00 01

     In the first case, the character falls in the even boundary, since the
     integer has to start also at the even boundary, there is a garbage byte in
     between which does not mean anything. While in the second case, the
     character falls in the odd boundary and therefore the integer can be put
     right after the character.

     For the same reason, sometimes it is very confusing to just look at the
     data byte by byte. It is better off to use the structure mapping.

     Furthermore, different CPUs have different characteristics. Some align
     integer and long into even boundary while other might align integer in even
     boundary and long in 4 byte boundary. This software will allow user to
     customize the alignment. Command m [i/l/f/d] specify the alignment of the
     data type used in structure mapping.

     To make life harder, some CPU swap bytes (our beloved 80x86 architecture)
     and some don't. The third optional field in the format file are just for
     that. It specifies the data rearrangement sequence. For example, an integer
     made of 4 bytes is stored in a file as 0x11 0x22 0x33 0x44 (0x011223344),
     a line in the format file:
         int sample 
     yields an output of
         sample = 287454020 (0x11223344)
     but if the format file is written as:
         int sample 4321
     the output will be
         sample = 1144201745 (0x44332211)

     This feature is really useful if for example, someone tries to dump a file
created in a 68000 machine in a 8086 machine.

tam@cronos.metaphor.com (10/17/90)

Here is a version for MSDOS. To retrieve copy the contents between
the two ---CUT HERE--- lines to a file and do uudecode.
Since the file is close to 60K, I don't bother to split it up. Hope you get all
of it.

COMMENTS AND SUGGESTIONS ARE APPRECIATED.

---CUT HERE---
begin 777 ANA
M35IZ %8 #@ @ ,D!___0"P (  6P)@  '@    $ % !I"KXF  "7)P    !N
M!NT2^ AE &X&;P!N!L8 ;@;< &X&/0%N!F0!;@:& 6X&S %N!E-/        
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                                            
M                                            58OLN-0 Z$4IN*8$
M4+B2 E"XGP)0Z%@O@\0&N*4"4+BH E#H'BV#Q 2C8!D+P'1&N!P 4.B%/8/$
M J,D!8O8QT<:  #_-F 9Z $2@\0""\!U&KBP E#H%R^#Q +_-B0%Z%T]@\0"
MQP8D!0  _S9@&>C[*X/$ H-^! %U&+C, E#H[2Z#Q *-AC+_4.A>1(/$ NL2
MD(M>!O]W HV&,O]0Z"8_@\0$C88R_U KP%#H:!:#Q 0+P'4*N/__4.B:)X/$
M L:&,O\ N-X"4.BC+H/$ HV&,O]0Z!1$@\0"BH8R_Y@]>@!U ^G> G8#Z2D#
M/&1U ^E: GX#Z2\#/#]U ^E. 7X#Z?$""L!U ^F7 "PA=0/IOP(L"G4#Z2(!
M+ )U ^D; 2P#=0/I  'IZP*0C88P_U"X3@#W+DH$B]B*AWTKF%"-1OI0C4;\
M4(V&,_]0Z)(4@\0*"\!T![CR NF( 9 KP%#_=O[_=ORX3@#W+DH$B]C_MV8K
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
MN #]USN[F5 +_WD%NU=1]]]77X'#1@ +_W0GB\?1[]'OT>]7)0< =.E3T."*
MX-#@T. "Q#+D ]C-/)LOS3K)6^O0PP#-S,S,S,S,S/L_S<S,S,S,S,S,S/L_
M58OL@^P,5E<>,\"'1@B)1OZ+?@2+1A(VQD4"(/;$@'0,@&83?S;&10(M)?]_
M"\!U$(M&"@M&# M&#@M&$'1-ZV4]_W]U8(M&"@M&# M&#HM&$'47ON86/0" 
M=!H] ,!U"K[L%C: ?0(M= N^V!:I $!T [[?%C;'!0$ %@>-?0,SR8H,0?.D
M,\#I>0&+?@0VQP4  #;&10(@-L9% P VQD4$ .E< 3/_BGX1BT82B\BZ$$WW
MXI&P3?;D \@3U[":]N<#R!/Z@>GT$H'?0Q-7]]^-1@@64%>X 0!0Z.@#7X%^
M$O\_<A!'C48(%E"XKE(.4.BG!.OIBUX$-HD_BT;^]T8& 0!T!@/'>0+K@#T5
M '8#N!4 B4;^0(E&](M&$BW^/_?8,N2+7A"+3@Z+5@R+=@J+?@@*P'00T>O1
MV=':T=[1W]#<_LAU\!8'B7[VBWX$C7T$AW[V,L")7A*)3A")5@Z)=@R)?@J(
M9@G0Y-'7T=;1TM'1T=/0T-#DT=?1UM'2T='1T]#0 F8)$WX*$W8,$U8.$TX0
M$UX2% #0Y-'7T=;1TM'1T=/0T 0PAW[VJH=^]O].]'6@BW[VBW8$@^\"/#5R
M*HU,!.L+)H ].741)L8%,$\[SW;Q1R;&!3 V_P0F_@4K^8O?0S:(7 /K%8M.
M_N,(L##]\Z[\=0/IC_Y!-HA, [@! !]?7HOE7<(0             * "0   
M         ,@%0            /H(0           0)P,0           4,,/
M0           )/020         " EI@60          @O+X90       !+_)
M&XXT0    *'MS,X;PM-.0"#PGK5P*ZBMQ9UI0-!=_27E&HY/&>N#0'&6UY5#
M#@6-*:^>0/F_H$3M@1*/@8*Y0+\\U:;/_TD?>,+30&_&X(SI@,E'NI.H0;R%
M:U4G.8WW<.!\0KS=CM[YG?OK?JI10Z'F=N/,\BDOA($F1"@0%ZKXKA#CQ<3Z
M1.NGU//WZ^%*>I7/167,QY$.IJZ@&>.C1@UE%PQU@89U=LE(35A"Y*>3.3LU
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
MPXL."@!1@.7S"N6()@L 5>AD%%V+PHO3Z!D BS80 #LV#@!U ^CF^H/N#(DV
M$ "/!@H PXL.%@ )#@@ " X, /;1BBX& (#-PH#E/PK-]M&*+A< ]\'_WW39
MD>F3_ON;4%4>5HOLQ78(B@2 #,!.3HEV"-#HT.C0Z/;0)!@,)H;$L)N)!%.[
M 0#K(/N;4+@]HNL&^YM0N#)<51Y6B^S%=@A.3HEV""D$4S/;5%@[Q'4HBT !
M)?LP/=DP=0>*0 (\\'(6BT !)?_^/=OB= N+0 $]W^!T \8$D%M>'UU8SY!<
M#1(-0 VT#5H-% U"#;0-4@T$#3(-M U0#0(-, VT#60-&@U(#;0-\ P8#48-
MM U@#?0,(@VT#>P,%@U$#;0--A <$/,?[A\6$! 0)! N$"8/"1 P#SH/"1!;
M#PD090]O#^</_P_P#WL/PP_/#]L/J1:U&Y(8 !MD%PL<P!EH&Y ?2AX)$&T<
MF1]*'Z ?QQSR(-D@WB#4(.,@Z"#M( D00R5K)8DDM20)$ D0"1 )$+@A$2;.
M(@D03QVG'PD0"1 8(&(@5"!H(&\@/R!4(&@@5"!4(%0@5"!;(%L@5"!V(&(@
M/R!4(%L@[Q!9$&T071!=$%D0;1!=$&L0:Q#3$&L061!9$&T0QA ?$G00;1"(
M$'00=!!M$)(0:Q!K$-,0:Q"($)(0;1"($* 3=!!M$(@0@Q"-$&00@Q!K$&L0
MTQ!K$'00=!!M$)(0! 9 0@$#!0<           '   $           !   , 
M        P ! @ +___________\_     (!___]_?P       /!_________
M[W\         @ '   $         @     "*L6KV]*(PB?[_  ">4V7"0M>S
MW0     C+)MKP9$*AO__  "$9-[Y,_,$M0              @ $    UPF@A
MHMH/R0$   #^BAO-2WB:U $   "\\!=<*3NJN     "9]\_[A)H@FO[_  "L
M><_1]Q=RL?__   # -1[6M@^7&F/!0"  #=-URSXT-36#    -/<%V;NN[J"
M$@"  ,N16%Z+A@;U%     , Y88@ 0(%>9P) (  8V;/B'"R.<D/    EOI&
MQ_X,M^03 (  RY%87HN&!O44    !  R6PC/R:10IOW_  #.T<K52ZCPT ( 
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
M@.* .M%U10965PK)>0@>!A\'A_>'RH#E 8#F 3KU=2@*[7?*BTP(@<'_/R:+
M50B!PO\_.\IU$8/&!H/'!OVG=0>G=02G=0&G_%]>!XS!CMG#OWX Z*+L5U93
MOW( Z)GLB3Z6 .CUZUXNK9%?Z&_LB3Z6 %%6OG( Z.'K7H/&#%;H5O_H\.M>
M6>+IB]Y>5E/HRNM>@\8,+JV16U>+^^@^[%%6OG( B3Z6 .C*ZUY948/&#%:^
M<@#HH^M>5N@;_^BUZUY9XNF+]U_#BS80 .@> %:+-A  .S82 '4#Z #>@\8,
MB380 (L^$ !>Z SLP[NH"NA=_\.+/A  B_>+1 J#[PSH&0"+-A  BS80 #LV
M#@!U ^C9W8/N#(DV$ ##B3Z6 .A Z[  OC *Z,;^<S:+][]* .C#ZU:^/ KH
MG/Z)/I8 Z!CKOB0*Z(_^Z GK7E>+_KX\"NB"_HD^E@#H&.M>Z SKL %0B_>[
M# OHY/Z)/I8 Z/#J6 K = F^2 KH6O[H].K#BS80 .@! ,.[? OHP/Y7A_>)
M/I8 Z+OJB_=?B3Z6 .B_ZO]%"(OWPXL^$ "+]XM$"H/O#.@9 (LV$ "+-A  
M.S8. '4#Z"/=@^X,B380 ,-6B_>_6@#H'>N+_EY7OV8 Z!/KBUT(QT4(  "^
M5 KH_OUW!/]-"$-3OB0*Z-C]B3Z6 .A.ZHOW6U]3Z&D 6S/ "]MT.8O0>02R
M@/?;N1  2='C<_M7T=N_9@"KJZN+PZN+P:N+PJN_6@"^9@")/I8 Z!;JB_=?
MB3Z6 .@FZL.+/A  B_>+1 J#[PSH&0"+-A  BS80 #LV#@!U ^A]W(/N#(DV
M$ ##5[]* .AYZE:^8 KH4OV)/I8 Z.CI7NC<Z?]%"(OWN\@+Z+3]B3Z6 .C 
MZ8OW7XD^E@#HKNG#               >#A^X C7-(8D><B:,!G0FNM(FN (E
MS2&X(S7-(8D>=B:,!G@FNKHFN",ES2$?PQY04K@")2[%%G(FS2%:6!_#4%(>
MZ.G_+L46=B:X(R7-(1]:6"[_+G8FD"[=/G F4;D# .+^62[V!G F@'0$Z/3;
MSR[_+G(F                  "I    40$                         
M                                                            
M                                                            
M                                               !            
M                                                            
M                                                            
M                                                            
M                                                            
M                             $U3(%)U;BU4:6UE($QI8G)A<GD@+2!#
M;W!Y<FEG:'0@*&,I(#$Y.3 L($UI8W)O<V]F="!#;W)P& !I;G0 8VAA<@!S
M=')I;F< ;&]N9P!S:&]R= !U;&]N9P!U<VAO<G0 =6EN= !F;&]A= !D;W5B
M;&4 )7,@)7,*5F5R<VEO;G,@87)E(&%V86EL86)L92!F;W(@;W1H97(@;W!E
M<F%T:6YG('-Y<W1E;7,N"E!A=6P@0RX@5&%M(% N3RY";W@@,SDP,3 R($UT
M+E9I97<@0T$@.30P,SD@52Y3+D$* #P@0R!465!%4R!)3B!"651%4R ^"D-H
M87()+2 E9" )26YT"2T@)60@"5-H;W)T"2T@)60@"DQO;F<)+2 E9" )1FQO
M870)+2 E9" )1&]U8FQE"2T@)60@"E!O:6YT97(@+2 E9" *"CP@0U524D5.
M5"!%3E9)4D].345.5" ^"E=O<FMF:6QE(&YA;64)"2 @("T@)7,*5V]R:V9I
M;&4@;G5M8F5R( D@(" M("5D"E=O<FMF:6QE('-I>F4)"2 @("T@)6QD(&)Y
M=&5S"DUA>&EM=6T@=V]R:V9I;&4@86QL;W=E9" @("T@)60*3G5M8F5R(&]F
M('=O<FMF:6QE<R!O<&5N960@+2 E9 H* #P@0D%315,@/@I5<V5R(&EN<'5T
M.B E<R @("!$871A(&1I<W!L87DZ("5S(" @($%D9')E<W,@9&ES<&QA>3H@
M)7,* #P@34%04$E.1R!!3$E'3DU%3E0@24X@0EE415,@/@I);G1E9V5R.B E
M9" @("!,;VYG.B E9" @("!&;&]A=#H@)60@(" @1&]U8FQE.B E9 H 5F5R
M<VEO;B P+C$U "5S("5S ')T &%N82YF;70 4W1R=6-T=7)E(&UA<'!I;F<@
M9&ES86)L960* $5N=&5R(&9I;&4@;F%M93H@  I#;VUM86YD("@_/6AE;' I
M.B  0F%D(&%D9')E<W,N"@!);G9A;&ED('-T87)T(&%D9')E<W,L(&EG;F]R
M960N"@!"860@8G5F9F5R(&QE;F=T:"X* %IE<F\@;&5N9W1H('-P96-I9FEE
M9 HL(&EG;F]R960N $5X8V5E9',@;6%X:6UU;2!A;&QO=V%B;&4@;&5N9W1H
M+"!S970@=&\@)60@8GET97,N"@!"860@=VED=&@N"@!"860@:6YP=70N"@!7
M;W)K9FEL92!N=6UB97(@;W5T(&]F(')A;F=E"@!7;W)K9FEL92!N;W0@879A
M:6QA8FQE+@H 4&%C:V5D(&UO9&4N"@!5;G!A8VME9"!M;V1E+@H 5F5R<VEO
M;B P+C$U %-T<G5C='5R92!M87!P:6YG(&1I<V%B;&5D"@!5;FMN;W=N(&-O
M;6UA;F0@)R5C)PH )7,@=&5R;6EN871E9"X*          $    !  (  P $
M  4 !@ '  @ "0                    H "P ,  T #@ /            
M                                             $%.02!#;W!Y<FEG
M:'0@*&,I(%!A=6P@0RX@5&%M+" Q.3@W+3$Y.3 *5&AI<R!V97)S:6]N(&ES
M($92144@9F]R(&1I<W1R:6)U=&EO;BX*  !"  $ 1@ " $L  P!2  0 5P %
M %T !@!C  < :@ ( &\ "0!U  H         ? #I /H!/P)5;FMN;W=N(&]P
M=&EO;BX* %5N:VYO=VX@;W!T:6]N+@H 2&5X $1E8VEM86P 2&5X $1E8VEM
M86P 2&5X $1E8VEM86P 17AC965D<R!W;W)K:6YG(&9I;&4@;&EM:70@;V8@
M)60N"@!&:6QE(&YU;6)E<B!O=70@;V8@<F%N9V4N"@!7;W)K9FEL92 C)60@
M=6YU<V5D+"!O<&5N('=O<FMF:6QE(",E9"!I;G-T96%D+@H 16YT97(@9FEL
M92!N86UE.B  1F%I;&5D('1O(&]P96X@=V]R:V9I;&4@)7,N"@!5;FMN;W=N
M(&]P=&EO;BX* %5N:VYO=VX@;W!T:6]N+@H "DYO(&UO<F4@9&%T80H "E=A
M<FYI;F<Z($%C='5A;"!L96YG=&@@<F5A9#H@)60@8GET97,* #!X)3 X;%@Z
M(  E,#$P;&0Z(  E,#)8(  E,#-D( !\"@ E,#)8(  E,#-D(  P>"4P.&Q8
M.B  )3 Q,&QD.B  )3 R6"  )3 S9"  (" @ " @("  ? H )3 R6"  )3 S
M9"  ,'@E,#AL6#H@ "4P,3!L9#H@ "5S(#T@)60@*#!X)5@I"@ P>"4P.&Q8
M.B  )3 Q,&QD.B  )7,@/2 E9" H,'@E6"D* #!X)3 X;%@Z(  E,#$P;&0Z
M(  E<R ]("5F"@ P>"4P.&Q8.B  )3 Q,&QD.B  )7,@/2 E9@H ,'@E,#AL
M6#H@ "4P,3!L9#H@ "5S(#T@)6,@*#!X)5@I"@ P>"4P.&Q8.B  )3 Q,&QD
M.B  )7,@/2 B "5C "(* #!X)3 X;%@Z(  E,#$P;&0Z(  E<R ]("5L9" H
M,'@E;%@I"@ P>"4P.&Q8.B  )3 Q,&QD.B  )7,@/2 E;'4@*#!X)6Q8*0H 
M,'@E,#AL6#H@ "4P,3!L9#H@ "5S(#T@)60@*#!X)5@I"@ P>"4P.&Q8.B  
M)3 Q,&QD.B  )7,@/2 E=2 H,'@E6"D* %5N<W5P<&]R=&5D('1Y<&4@+2!E
M<G)O<B@E9"D* $)A9"!O<B!M:7-S:6YG('-T<FEN9R!L96YG=&@@;VX@;&EN
M92 E9 H ='EP92!N86UE(&YO="!F;W5N9"!O;B!L:6YE("5D"@!N86UE('1O
M;R!L;VYG(&]N(&QI;F4@)60L('1R=6YC871E('1O("5D(&-H87)A8W1E<G,*
M '1Y<&4@;F]T(&9O=6YD(&]N(&QI;F4@)60* %5N:VYO=VX@='EP92 M("5S
M(&]N(&QI;F4@)60* '(K8@!R8@!#86YN;W0@;W!E;B E<PH )7,@6U)E860@
M3VYL>2!&:6QE70H 1FEL92!S:7IE.B E;&0@8GET97,* $YO('-E87)C:"!P
M871T97)N('-P96-I9FEE9"X* %-T87)T('-E87)C:&EN9R!F<F]M(&%D9')E
M<W,@)6QD("@P>"58*0H 16YD(&]F(&9I;&4N"E!A='1E<FX@;F]T(&9O=6YD
M+@H 16YT97(@9&ES:R!F:6QE(&YA;64Z( !4:&5R92!I<R!A(&1I<VL@9FEL
M92!A8W1I=F4L(')E<&QA8V4@:70_("AY+VXI( !R= !W= !#86YN;W0@;W!E
M;B E<PH 1FEL92 G)7,G(&5X:7-T<RP@;W9E<G=R:71E+V%P<&5N9"]C86YC
M96P_("AO+V$O8RD@ '=T $-A;FYO="!O<&5N("5S+"!A8W1I;VX@86)O<G1E
M9"X* '(K= !#86YN;W0@;W!E;B E<RP@86-T:6]N(&%B;W)T960N"@!4<F%N
M<V9E<B!C86YC96QL960* $)A9"!I;G!U="P@=')A;G-F97(@86)O<G1E9"X*
M $5N=&5R('-T<G5C='5R92!D97-C<FEP=&EO;B!F:6QE(&YA;64Z( !R= !#
M86YN;W0@;W!E;B E<PI3=')U8W1U<F4@;6%P<&EN9R!D:7-A8FQE9"X* %-T
M<G5C='5R92!M87!P:6YG(&1I<V%B;&5D"@!.;R!O<&5R871I;VX@<W!E8VEF
M:65D+@H 4WEN=&%X(&5R<F]R+@H 0F%D('-Y;G1A>"X* "5F"@ G)6,G("  
M)6QD"@ G)6,G("  ,'@E;'@* "5L9" @,'@E;'@* %5N<W5P<&]R=&5D(&]P
M97)A=&]R("<E8R<N"@ E;&0@,'@E;'@*  H ;25D/25L9"@P>"5L>"D@  H 
M;25D/25L9"@P>"5L>"D@  H 0V%N;F]T(&UO9&EF>2!R96%D(&]N;'D@9FEL
M92X* $YO('IA<"!D871A('-P96-I9FEE9"X* $YO="!E;F]U9V@@9&%T82!T
M;R!B92!Z87!P960N"@!/;&0@9&%T83H* "58(  *3F5W(&1A=&$Z"@ E6"  
M"D%R92!Y;W4@<W5R93\@*'DO;BD 3F\@06-T:6]N+@H 0F%D(&EN<'5T("T@
M)6QD("@P>"5L>"D* $YO;B!!4T-)22!V86QU92X* %-Y;G1A>"!%<G)O<B$A
M($UI<W-I;F<@96YD('%U;W1E+B!396%R8V@@86)O<G1E9"X* $EN=F%L:60@
M:6YP=70N"@!%>&-E961S(&UA>&EM=6T@;&EM:70@;V8@)60L(&1A=&$@,'@E
M6"!N;W0@<W1O<F5D+@H 17)R;W(@;VX@)7,@+2 G)60G.FEN9&5X(&]U="!O
M9B!R86YG92X* $5R<F]R(&]N("5S("T@)R5D)SI$=7!L:6-A=&4@:6YD97@N
M"@!%<G)O<B!O;B E<R M(&EN<W5F9FEC:65N="!I;F1I8V5S+@H 17)R;W(@
M;VX@)7,@+2!T;V\@;75C:"!I;F1I8V5S+@H 4&%S<R!B97EO;F0@8F5G:6YN
M:6YG(&]F(&9I;&4N(%-E="!T;R!B96=I;FEN9R!O9B!F:6QE(&EN<W1E860N
M"@!087-S(&)E>6]N9"!E;F0@;V8@9FEL92X@4V5T('1O(&QA<W0@9&ES<&QA
M>2!B=69F97(N"@ *14Y415(@(" @(" @(" M(&1I<W!L87D@;F5X="!D871A
M(&)U9F9E<@HE8R \861D<F5S<SX@(" M('-E="!N97<@<W1A<G1I;F<@861D
M<F5S<PHE8R!;)6,O)6,O)6-=(" @(" M('1O9V=L92!D969A=6QT(&1A=&$L
M(&EN<'5T(&]R(&%D9')E<W,@8F%S92 H9&5C(&]R(&AE>"D*)6,@/&]P97)A
M=&EO;CX@+2!C86QC=6QA=&]R+V-O;G9E<G1O<@HE8R \9FEL93X@(" @(" M
M(&1O=VYL;V%D(&YE=R!S=')U8W1U<F4@9&5S8W)I<'1I;VX@9FEL90HE8PD@
M(" @(" M(&1I<W!L87D@=&\@=&AE(&5N9"!O9B!T:&4@9FEL90HE8PD@(" @
M(" M(&EN9F]R;6%T:6]N"B5C(#QL96YG=&@^(" @("T@<V5T(&YE=R!B=69F
M97(@;&5N9W1H"B5C(%LE8R\E8R\E8R\E8UT@(" M(&UA<"!D871A('1O('-T
M<G5C='5R92!O<B!C:&%N9V4@;6%P<&EN9R!A;&EG;FUE;G0*)6,@6V9I;&4@
M;F\N72 @+2!O<&5N(&YE=R!W;W)K(&9I;&4*)6,)(" @(" @+2!T;V=G;&4@
M<&%C:V5D(&1I<W!L87D@9FQA9PH )6,@(" @(" @(" @(" @+2!Q=6ET(&%N
M86QY>F5R"B5C(%MP871T97)N72 @("T@*&-O;G1I;G5E*2!S96%R8V@@9F]R
M('!A='1E<FX*)6,@6V9I;&5=(" @(" @+2!T<F%N<V9E<B!L87-T(&1I<W!L
M87D@=&\@9&ES:PHE8R \9FEL92!N;RX^(" M('5S92!A(&1I9F9E<F5N="!W
M;W)K:6YG(&9I;&4*)6,)(" @(" @+2!C=7)R96YT('9E<G-I;VX@;G5M8F5R
M"B5C(#QW:61T:#X@(" @("T@<V5T(')E<&]R="!L:6YE('=I9'1H"B5C(#QD
M871A/B @(" @("T@>F%P(&]L9"!D871A('=I=&@@;F5W(&1A=&$*)6,@/&-O
M;6UA;F0^(" @+2!E>&5C=71E('-Y<W1E;2!C;VUM86YD"B5C"2 @(" @("T@
M<F5D:7-P;&%Y(&QA<W0@8G5F9F5R"B5C(#QN=6UB97(^(" @("T@<VAO=R \
M;G5M8F5R/B!O9B!D:7-P;&%Y(&)U9F9E<B!A:&5A9 HE8R \;G5M8F5R/B @
M(" M('-H;W<@/&YU;6)E<CX@;V8@9&ES<&QA>2!B=69F97(@8F%C:PH* $AI
M="!%3E1%4B!T;R!C;VYT:6YU92XN+BX 3G5M97)I8V%L(&EN<'5T<R!P<F5F
M:7AE9"!B>2 P>"!A<F4@86QW87ES(&EN=&5R<')E=&5D(&%S(&AE>&%D96-I
M;6%L+@I.=6UE<FEC86P@:6YP=71S('!R969I>&5D(&)Y(%P@87)E(&%L=V%Y
M<R!I;G1E<G!R971E9"!A<R!D96-I;6%L+@I!4T-)22!I;G!U=',@87)E(&EN
M('1H92!F;W)M(&]F("=C)R!O<B \04Y97T1%3$E-/G-T<FEN9SQ304U%7T1%
M3$E-/@H     ;R@     !0                           %]#7T9)3$5?
M24Y&3ST                                     % "!@8$! 0      
M                     "\3] @              /__P"X    6 @(8#0D,
M# P'"!86_P(-$@+_7 !<    8AD  &(9 0         " 0        ("    
M    A ,        "!                                           
M                                                            
M                                                          $ 
M  (                                                         
M                                                            
M                                                            
M                              #R$P        8   8  0  $  #!@ &
M A $145%!04%!04U, !0     " @,%!8!P@ ,# P5U '   @(       "&!@
M8&!@8   <'!X>'AX" <(   '  @("   "  (   (*&YU;&PI!@      (%@I
M6"E8*5@I6"E8*0         @(" @(" @(" H*"@H*" @(" @(" @(" @(" @
M(" @($@0$! 0$! 0$! 0$! 0$!"$A(2$A(2$A(2$$! 0$! 0$(&!@8&!@0$!
M 0$! 0$! 0$! 0$! 0$! 0$!$! 0$! 0@H*"@H*" @(" @(" @(" @(" @("
M @(" @(0$! 0(                                               
M                                                            
M                                                            
M     "]C(            # 6  ! %@                              
M              !#3TU34$5# "YB870 +F5X90 N8V]M  !8%ET68A90051(
M %P  $-/35-014, +V, 8V]M;6%N9"YC;VT                         
M                !C$C4TY!3@8Q(U%.04X%,2-)3D8%,2-)3D0     ,A, 
M@&8D (#@-WG#04, !C$C4TY!3@8Q(U%.04X%,2-)3D8%,2-)3D0 _/______
M__Y#92LP,#                                                  
M        ,#$P,C S,#0P-3 V,#<P.# Y,3 Q,3$R!4TV,7AX  #________O
M?P       &<G9R=G)P    #="   4$\  &D!  #08@  "F.D,P          
M   \/$Y-4T<^/@  4C8P,# -"BT@<W1A8VL@;W9E<F9L;W<-"@ # %(V,# S
M#0HM(&EN=&5G97(@9&EV:61E(&)Y(# -"@ ) %(V,# Y#0HM(&YO="!E;F]U
M9V@@<W!A8V4@9F]R(&5N=FER;VYM96YT#0H _  -"@#_ ')U;BUT:6UE(&5R
M<F]R(  " %(V,# R#0HM(&9L;V%T:6YG+7!O:6YT('-U<'!O<G0@;F]T(&QO
M861E9 T*  $ 4C8P,#$-"BT@;G5L;"!P;VEN=&5R(&%S<VEG;FUE;G0-"@#]
M #H@34%42 T*+2!F;&]A=&EN9RUP;VEN="!E<G)O<CH@ &4 :6YV86QI9 T*
M &8 9&5N;W)M86P-"@!G &1I=FED92!B>2 P#0H : !O=F5R9FQO=PT* &D 
M=6YD97)F;&]W#0H :@!I;F5X86-T#0H :P!U;F5M=6QA=&5D#0H ; !S<75A
M<F4@<F]O= T* &T #0H ;@!S=&%C:R!O=F5R9FQO=PT* &\ <W1A8VL@=6YD
E97)F;&]W#0H < !E>'!L:6-I=&QY(&=E;F5R871E9 T* /___W1A
 
end
---CUT HERE---

rcpieter@svin02.info.win.tue.nl (Tiggr) (10/17/90)

tam@cronos.metaphor.com writes:

>Here is a version for MSDOS.

Tell me, what's this got to do with programming on UNIX?

Tiggr

cgy@cs.brown.edu (Curtis Yarvin) (10/17/90)

In article <1515@metaphor.Metaphor.COM> tam@cronos.metaphor.com () writes:
>
>	For those people who don't think I should post PC binary in this group,
>please accept my apology. I think ANA is so useful for some developers that it
>is too selfish not to share (Of course I am still selfish of not sharing the
>source).

My mind is reeling... my worldview is shattered...  Come on.  I must THINK!
I must recover my sanity...  Ah, better.  Now let me get this straight.  You
posted a MS-DOS binary to comp.unix.programmer?  This is a bit hard to
swallow.  There is a wonderful newsgroups called comp.binaries.ibm.pc which
is intended solely for people like you.  It might have been acceptable to
post _source_ to your program (to comp.sources.unix) - but you don't want to
share the source.  This seems to be a rather unwarranted dose of paranoia.
Few will miss it, and even fewer would be tempted to steal it.  Minus all
the bells and whistles and shell escapes, it is simply "od."

Please restrain yourself in future.
		-Curtis

"I tried living in the real world
 Instead of a shell
 But I was bored before I even began." - The Smiths