xref: /titanic_44/usr/src/cmd/ssh/doc/OVERVIEW (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gateThis document is intended for those who wish to read the ssh source
2*7c478bd9Sstevel@tonic-gatecode.  This tries to give an overview of the structure of the code.
3*7c478bd9Sstevel@tonic-gate
4*7c478bd9Sstevel@tonic-gateCopyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>
5*7c478bd9Sstevel@tonic-gateUpdated 17 Nov 1995.
6*7c478bd9Sstevel@tonic-gateUpdated 19 Oct 1999 for OpenSSH-1.2
7*7c478bd9Sstevel@tonic-gate
8*7c478bd9Sstevel@tonic-gateThe software consists of ssh (client), sshd (server), scp, sdist, and
9*7c478bd9Sstevel@tonic-gatethe auxiliary programs ssh-keygen, ssh-agent, ssh-add, and
10*7c478bd9Sstevel@tonic-gatemake-ssh-known-hosts.  The main program for each of these is in a .c
11*7c478bd9Sstevel@tonic-gatefile with the same name.
12*7c478bd9Sstevel@tonic-gate
13*7c478bd9Sstevel@tonic-gateThere are some subsystems/abstractions that are used by a number of
14*7c478bd9Sstevel@tonic-gatethese programs.
15*7c478bd9Sstevel@tonic-gate
16*7c478bd9Sstevel@tonic-gate  Buffer manipulation routines
17*7c478bd9Sstevel@tonic-gate
18*7c478bd9Sstevel@tonic-gate    - These provide an arbitrary size buffer, where data can be appended.
19*7c478bd9Sstevel@tonic-gate      Data can be consumed from either end.  The code is used heavily
20*7c478bd9Sstevel@tonic-gate      throughout ssh.  The basic buffer manipulation functions are in
21*7c478bd9Sstevel@tonic-gate      buffer.c (header buffer.h), and additional code to manipulate specific
22*7c478bd9Sstevel@tonic-gate      data types is in bufaux.c.
23*7c478bd9Sstevel@tonic-gate
24*7c478bd9Sstevel@tonic-gate  Compression Library
25*7c478bd9Sstevel@tonic-gate
26*7c478bd9Sstevel@tonic-gate    - Ssh uses the GNU GZIP compression library (ZLIB).
27*7c478bd9Sstevel@tonic-gate
28*7c478bd9Sstevel@tonic-gate  Encryption/Decryption
29*7c478bd9Sstevel@tonic-gate
30*7c478bd9Sstevel@tonic-gate    - Ssh contains several encryption algorithms.  These are all
31*7c478bd9Sstevel@tonic-gate      accessed through the cipher.h interface.  The interface code is
32*7c478bd9Sstevel@tonic-gate      in cipher.c, and the implementations are in libc.
33*7c478bd9Sstevel@tonic-gate
34*7c478bd9Sstevel@tonic-gate  Multiple Precision Integer Library
35*7c478bd9Sstevel@tonic-gate
36*7c478bd9Sstevel@tonic-gate    - Uses the SSLeay BIGNUM sublibrary.
37*7c478bd9Sstevel@tonic-gate    - Some auxiliary functions for mp-int manipulation are in mpaux.c.
38*7c478bd9Sstevel@tonic-gate
39*7c478bd9Sstevel@tonic-gate  Random Numbers
40*7c478bd9Sstevel@tonic-gate
41*7c478bd9Sstevel@tonic-gate    - Uses arc4random() and such.
42*7c478bd9Sstevel@tonic-gate
43*7c478bd9Sstevel@tonic-gate  RSA key generation, encryption, decryption
44*7c478bd9Sstevel@tonic-gate
45*7c478bd9Sstevel@tonic-gate    - Ssh uses the RSA routines in libssl.
46*7c478bd9Sstevel@tonic-gate
47*7c478bd9Sstevel@tonic-gate  RSA key files
48*7c478bd9Sstevel@tonic-gate
49*7c478bd9Sstevel@tonic-gate    - RSA keys are stored in files with a special format.  The code to
50*7c478bd9Sstevel@tonic-gate      read/write these files is in authfile.c.  The files are normally
51*7c478bd9Sstevel@tonic-gate      encrypted with a passphrase.  The functions to read passphrases
52*7c478bd9Sstevel@tonic-gate      are in readpass.c (the same code is used to read passwords).
53*7c478bd9Sstevel@tonic-gate
54*7c478bd9Sstevel@tonic-gate  Binary packet protocol
55*7c478bd9Sstevel@tonic-gate
56*7c478bd9Sstevel@tonic-gate    - The ssh binary packet protocol is implemented in packet.c.  The
57*7c478bd9Sstevel@tonic-gate      code in packet.c does not concern itself with packet types or their
58*7c478bd9Sstevel@tonic-gate      execution; it contains code to build packets, to receive them and
59*7c478bd9Sstevel@tonic-gate      extract data from them, and the code to compress and/or encrypt
60*7c478bd9Sstevel@tonic-gate      packets.  CRC code comes from crc32.c.
61*7c478bd9Sstevel@tonic-gate
62*7c478bd9Sstevel@tonic-gate    - The code in packet.c calls the buffer manipulation routines
63*7c478bd9Sstevel@tonic-gate      (buffer.c, bufaux.c), compression routines (compress.c, zlib),
64*7c478bd9Sstevel@tonic-gate      and the encryption routines.
65*7c478bd9Sstevel@tonic-gate
66*7c478bd9Sstevel@tonic-gate  X11, TCP/IP, and Agent forwarding
67*7c478bd9Sstevel@tonic-gate
68*7c478bd9Sstevel@tonic-gate    - Code for various types of channel forwarding is in channels.c.
69*7c478bd9Sstevel@tonic-gate      The file defines a generic framework for arbitrary communication
70*7c478bd9Sstevel@tonic-gate      channels inside the secure channel, and uses this framework to
71*7c478bd9Sstevel@tonic-gate      implement X11 forwarding, TCP/IP forwarding, and authentication
72*7c478bd9Sstevel@tonic-gate      agent forwarding.
73*7c478bd9Sstevel@tonic-gate      The new, Protocol 1.5, channel close implementation is in nchan.c
74*7c478bd9Sstevel@tonic-gate
75*7c478bd9Sstevel@tonic-gate  Authentication agent
76*7c478bd9Sstevel@tonic-gate
77*7c478bd9Sstevel@tonic-gate    - Code to communicate with the authentication agent is in authfd.c.
78*7c478bd9Sstevel@tonic-gate
79*7c478bd9Sstevel@tonic-gate  Authentication methods
80*7c478bd9Sstevel@tonic-gate
81*7c478bd9Sstevel@tonic-gate    - Code for various authentication methods resides in auth-*.c
82*7c478bd9Sstevel@tonic-gate      (auth-passwd.c, auth-rh-rsa.c, auth-rhosts.c, auth-rsa.c).  This
83*7c478bd9Sstevel@tonic-gate      code is linked into the server.  The routines also manipulate
84*7c478bd9Sstevel@tonic-gate      known hosts files using code in hostfile.c.  Code in canohost.c
85*7c478bd9Sstevel@tonic-gate      is used to retrieve the canonical host name of the remote host.
86*7c478bd9Sstevel@tonic-gate      Code in match.c is used to match host names.
87*7c478bd9Sstevel@tonic-gate
88*7c478bd9Sstevel@tonic-gate    - In the client end, authentication code is in sshconnect.c.  It
89*7c478bd9Sstevel@tonic-gate      reads Passwords/passphrases using code in readpass.c.  It reads
90*7c478bd9Sstevel@tonic-gate      RSA key files with authfile.c.  It communicates the
91*7c478bd9Sstevel@tonic-gate      authentication agent using authfd.c.
92*7c478bd9Sstevel@tonic-gate
93*7c478bd9Sstevel@tonic-gate  The ssh client
94*7c478bd9Sstevel@tonic-gate
95*7c478bd9Sstevel@tonic-gate    - The client main program is in ssh.c.  It first parses arguments
96*7c478bd9Sstevel@tonic-gate      and reads configuration (readconf.c), then calls ssh_connect (in
97*7c478bd9Sstevel@tonic-gate      sshconnect.c) to open a connection to the server (possibly via a
98*7c478bd9Sstevel@tonic-gate      proxy), and performs authentication (ssh_login in sshconnect.c).
99*7c478bd9Sstevel@tonic-gate      It then makes any pty, forwarding, etc. requests.  It may call
100*7c478bd9Sstevel@tonic-gate      code in ttymodes.c to encode current tty modes.  Finally it
101*7c478bd9Sstevel@tonic-gate      calls client_loop in clientloop.c.  This does the real work for
102*7c478bd9Sstevel@tonic-gate      the session.
103*7c478bd9Sstevel@tonic-gate
104*7c478bd9Sstevel@tonic-gate    - The client is suid root.  It tries to temporarily give up this
105*7c478bd9Sstevel@tonic-gate      rights while reading the configuration data.  The root
106*7c478bd9Sstevel@tonic-gate      privileges are only used to make the connection (from a
107*7c478bd9Sstevel@tonic-gate      privileged socket).  Any extra privileges are dropped before
108*7c478bd9Sstevel@tonic-gate      calling ssh_login.
109*7c478bd9Sstevel@tonic-gate
110*7c478bd9Sstevel@tonic-gate  Pseudo-tty manipulation and tty modes
111*7c478bd9Sstevel@tonic-gate
112*7c478bd9Sstevel@tonic-gate    - Code to allocate and use a pseudo tty is in pty.c.  Code to
113*7c478bd9Sstevel@tonic-gate      encode and set terminal modes is in ttymodes.c.
114*7c478bd9Sstevel@tonic-gate
115*7c478bd9Sstevel@tonic-gate  Logging in (updating utmp, lastlog, etc.)
116*7c478bd9Sstevel@tonic-gate
117*7c478bd9Sstevel@tonic-gate    - The code to do things that are done when a user logs in are in
118*7c478bd9Sstevel@tonic-gate      login.c.  This includes things such as updating the utmp, wtmp,
119*7c478bd9Sstevel@tonic-gate      and lastlog files.  Some of the code is in sshd.c.
120*7c478bd9Sstevel@tonic-gate
121*7c478bd9Sstevel@tonic-gate  Writing to the system log and terminal
122*7c478bd9Sstevel@tonic-gate
123*7c478bd9Sstevel@tonic-gate    - The programs use the functions fatal(), log(), debug(), error()
124*7c478bd9Sstevel@tonic-gate      in many places to write messages to system log or user's
125*7c478bd9Sstevel@tonic-gate      terminal.  The implementation that logs to system log is in
126*7c478bd9Sstevel@tonic-gate      log-server.c; it is used in the server program.  The other
127*7c478bd9Sstevel@tonic-gate      programs use an implementation that sends output to stderr; it
128*7c478bd9Sstevel@tonic-gate      is in log-client.c.  The definitions are in ssh.h.
129*7c478bd9Sstevel@tonic-gate
130*7c478bd9Sstevel@tonic-gate  The sshd server (daemon)
131*7c478bd9Sstevel@tonic-gate
132*7c478bd9Sstevel@tonic-gate    - The sshd daemon starts by processing arguments and reading the
133*7c478bd9Sstevel@tonic-gate      configuration file (servconf.c).  It then reads the host key,
134*7c478bd9Sstevel@tonic-gate      starts listening for connections, and generates the server key.
135*7c478bd9Sstevel@tonic-gate      The server key will be regenerated every hour by an alarm.
136*7c478bd9Sstevel@tonic-gate
137*7c478bd9Sstevel@tonic-gate    - When the server receives a connection, it forks, disables the
138*7c478bd9Sstevel@tonic-gate      regeneration alarm, and starts communicating with the client.
139*7c478bd9Sstevel@tonic-gate      They first perform identification string exchange, then
140*7c478bd9Sstevel@tonic-gate      negotiate encryption, then perform authentication, preparatory
141*7c478bd9Sstevel@tonic-gate      operations, and finally the server enters the normal session
142*7c478bd9Sstevel@tonic-gate      mode by calling server_loop in serverloop.c.  This does the real
143*7c478bd9Sstevel@tonic-gate      work, calling functions in other modules.
144*7c478bd9Sstevel@tonic-gate
145*7c478bd9Sstevel@tonic-gate    - The code for the server is in sshd.c.  It contains a lot of
146*7c478bd9Sstevel@tonic-gate      stuff, including:
147*7c478bd9Sstevel@tonic-gate        - server main program
148*7c478bd9Sstevel@tonic-gate	- waiting for connections
149*7c478bd9Sstevel@tonic-gate	- processing new connection
150*7c478bd9Sstevel@tonic-gate	- authentication
151*7c478bd9Sstevel@tonic-gate	- preparatory operations
152*7c478bd9Sstevel@tonic-gate	- building up the execution environment for the user program
153*7c478bd9Sstevel@tonic-gate	- starting the user program.
154*7c478bd9Sstevel@tonic-gate
155*7c478bd9Sstevel@tonic-gate  Auxiliary files
156*7c478bd9Sstevel@tonic-gate
157*7c478bd9Sstevel@tonic-gate    - There are several other files in the distribution that contain
158*7c478bd9Sstevel@tonic-gate      various auxiliary routines:
159*7c478bd9Sstevel@tonic-gate        ssh.h	     the main header file for ssh (various definitions)
160*7c478bd9Sstevel@tonic-gate        getput.h     byte-order independent storage of integers
161*7c478bd9Sstevel@tonic-gate        includes.h   includes most system headers.  Lots of #ifdefs.
162*7c478bd9Sstevel@tonic-gate	tildexpand.c expand tilde in file names
163*7c478bd9Sstevel@tonic-gate	uidswap.c    uid-swapping
164*7c478bd9Sstevel@tonic-gate	xmalloc.c    "safe" malloc routines
165