docs/diploma

changeset 246:5cfea0d05e7f

appended ch06 to ch05 + restructuring
author meillo@marmaro.de
date Sun, 11 Jan 2009 20:26:08 +0100
parents da83360f8442
children 50240b753a46
files thesis/tex/5-Improvements.tex thesis/tex/6-NewDesign.tex thesis/thesis.tex
diffstat 3 files changed, 478 insertions(+), 470 deletions(-) [+]
line diff
     1.1 --- a/thesis/tex/5-Improvements.tex	Sun Jan 11 20:21:35 2009 +0100
     1.2 +++ b/thesis/tex/5-Improvements.tex	Sun Jan 11 20:26:08 2009 +0100
     1.3 @@ -1,16 +1,57 @@
     1.4 -\chapter{Improvements}
     1.5 +\chapter{Improvement plans}
     1.6  
     1.7 -<< what to really implement within the thesis >>
     1.8 +<< what to implement how in future >>
     1.9  
    1.10  
    1.11  
    1.12  
    1.13  
    1.14 -\section{Implementation}
    1.15 +\section{On base of current code}
    1.16  
    1.17  
    1.18  
    1.19  
    1.20 +\subsection{Encryption}
    1.21 +
    1.22 +Electronic mail is very weak to sniffing attacks, because all data transfer is unencrypted. This concerns the message's content, as well as the email addresses in header and envelope, but also authentication dialogs that may transfer plain text passwords (\NAME{PLAIN} and \NAME{LOGIN} are examples). Adding encryption is therefor wanted.
    1.23 +
    1.24 +The common way to encrypt \SMTP\ dialogs is using \name{Transport Layer Security} (short: \TLS, successor of \NAME{SSL}). \TLS\ encrypts the datagrams of the \name{transport layer}. This means it works below the application protocols and can be used by any of them\citeweb{wikipedia:tls}.
    1.25 +
    1.26 +\TLS\ allows to create secure tunnels through which arbitrary programs can communicate. Hence one can add secure communication afterwards to programs without changing them. \name{OpenSSL} for example---a free implementation---allows traffic to be piped into a command; a secure tunnel is created and the traffic is forwarded through it. Or a secure tunnel can be set up between a local and a remote port; this tunnel can then be used by any application.
    1.27 +
    1.28 +The \NAME{POP} protocol, for example, is good suited for such tunneling, but \SMTP\ is is not generally. Outgoing \SMTP\ client connections can be tunneled without problem---\masqmail\ already provides a configure option called \texttt{wrapper} to do so. Tunneling incomming connections to a server leads to problems with \SMTP. As data comes encrypted through the tunnel to the receiving host and gets then decrypted and forwarded on local to the port the application listens on. From the \MTA's view, this makes all connections appear to come from localhost, unfortunately. Figure \ref{fig:stunnel} depicts the data flow.
    1.29 +
    1.30 +For incoming connections, \NAME{STARTTLS}---defined in \RFC2487---is what \mta{}s implement.
    1.31 +
    1.32 +\masqmail\ is already able to encrypt outgoing connections, but encryption of incoming connections, using \NAME{STARTTLS} should be implemented. This only affects the \SMTP\ server module.
    1.33 +
    1.34 +%TLS/SSL prevents attackers to listen on the cable
    1.35 +%but it does not prevent man-in-the-middle attacks
    1.36 +%signed certificates help here
    1.37 +%   or PGP encryption
    1.38 +
    1.39 +
    1.40 +%do not use stunnel wit SMTP:
    1.41 +%because all incoming mail would be from 127.0.0.1 !!
    1.42 +%use STARTTLS instead
    1.43 +
    1.44 +%postfix: main.cf
    1.45 +%\begin{verbatim}
    1.46 +%	smtpd_use_tls = yes
    1.47 +%	smtpd_tls_received_header = no (does not log in received headers)
    1.48 +%
    1.49 +%	smtpd_tls_key_file = /etc/postfix/key.pem
    1.50 +%	smtpd_tls_cert_file = /etc/postfix/cert.pem
    1.51 +%	smtpd_tls_CA_file = /etc/postfix/CAcert.pem
    1.52 +%
    1.53 +%	smtp_use_tls = yes  (use TLS for sending)
    1.54 +%	smtp_tls_key_file = /etc/postfix/key.pem
    1.55 +%	smtp_tls_cert_file = /etc/postfix/cert.pem
    1.56 +%	smtp_tls_CA_file = /etc/postfix/CAcert.pem
    1.57 +%\end{verbatim}
    1.58 +
    1.59 +
    1.60 +
    1.61  
    1.62  \subsection{Authentication for SMTP-in}
    1.63  
    1.64 @@ -45,11 +86,143 @@
    1.65  
    1.66  
    1.67  
    1.68 +\subsection{Security}
    1.69  
    1.70 +by using wrappers and interposition filters
    1.71  
    1.72 +split masqmail into two instances
    1.73  
    1.74  
    1.75 -\subsection{Encryption}
    1.76 +
    1.77 +
    1.78 +
    1.79 +\subsection{Bug fixes}
    1.80 +
    1.81 +already fixed bugs
    1.82 +
    1.83 +
    1.84 +
    1.85 +
    1.86 +
    1.87 +
    1.88 +
    1.89 +
    1.90 +
    1.91 +
    1.92 +
    1.93 +
    1.94 +
    1.95 +
    1.96 +\section{The new design}
    1.97 +
    1.98 +The last sections identified the jobs that need to be done by a modern \MTA; problems and prefered choices were mentioned too. Now the various jobs are assigned to modules, of which an architecture is created. It is inpired by existing ones and driven by the identified jobs and requirements.
    1.99 +
   1.100 +``Many times in life, getting off to the right start makes all the difference.'' \cite[page~32]{graff03}
   1.101 +
   1.102 +
   1.103 +
   1.104 +\subsection{Design decisions}
   1.105 +
   1.106 +One major design idea of the design were:
   1.107 +\begin{itemize}
   1.108 +	\item free the internal system from in and out channels
   1.109 +	\item arbitrary protocol handlers have to be addable afterwards
   1.110 +	\item a single facility for scanning (all mail goes through it)
   1.111 +	\item concentrate on mail transfer
   1.112 +\end{itemize}
   1.113 +
   1.114 +
   1.115 +\subsubsection*{Incoming channels}
   1.116 +
   1.117 +\sendmail-compatible \mta{}s must support at least two incoming channels: mail submitted using the \sendmail\ command, and mail received via the \SMTP\ daemon. It is therefor common to split the incoming channel into local and remote. This is done by \qmail\ and \postfix. The same way is \person{Hafiz}'s view.
   1.118 +
   1.119 +In contrast is \name{sendmail X}: Its locally submitted messages go to the \SMTP\ daemon, which is the only connection towards the mail queue. %fixme: is it a smtp dialog? or a second door?
   1.120 +\person{fanf} proposes a similar approach. He wants the \texttt{sendmail} command to be a simple \SMTP\ client that contacts the \SMTP\ daemon of the \MTA\ like it is done by connections from remote. The advantage here is one single module where all \SMTP\ dialog with submitters is done. Hence one single point to accept or refuse incoming mail. Additionally does the module to put mail into the queue not need to be \name{setuid} or \name{setgid} because it is only invoked from the \SMTP\ daemon. The \MTA's architecture would become simpler and common tasks are not duplicated in modules that do similar jobs.
   1.121 +
   1.122 +But merging the input channels in the \SMTP\ daemon makes the \MTA\ heavily dependent on \SMTP\ being the main mail transfer protocol. To \qmail\ and \postfix\ new modules to support other ways of message receival may be added without change of other parts of the system. Also is it better to have more independent modules if each one is simpler then.
   1.123 +
   1.124 +With the increasing need for new protocols in mind, it seems better to have single modules for each incoming channel, although this leads to duplicated acceptance checks.
   1.125 +
   1.126 +
   1.127 +\subsubsection*{Outgoing channels}
   1.128 +
   1.129 +Outgoing mail is commonly either sent using \SMTP, piped into local commands (for example \texttt{uucp}), or delivered locally by appending to a mailbox.
   1.130 +
   1.131 +Outgoing channels are similar for \qmail, \postfix, and \name{sendmail X}: All of them have a module to send mail using \SMTP, and one for writing into a local mailbox. Local mail delivery is a job that requires root priveledge to be able to switch to any user in order to write to his mailbox. Modular \MTA{}s do not need \name{setuid root}, but the local delivery process (or its parent) needs to run as root.
   1.132 +
   1.133 +As mail delivery to local users, is \emph{not} included in the basic job of an \MTA{}, why should it care about it? In order to keep the system simple and to have programs that do one job well, the local delivery job should be handed over to a specialist: the \name{mail delivery agent}. \NAME{MDA}s know about the various mailbox formats and are aware of the problems of concurrent write access and thelike. Hence handling the message and the responsiblity over to a \NAME{MDA}, like \name{procmail} or \name{maildrop}, seems to be the right way to go.
   1.134 +
   1.135 +This means an outgoing connection that pipes mail into local commands is required. Other outgoing channels, one for each supportet protocol, may be designed like it was done in other \MTA{}s.
   1.136 +
   1.137 +
   1.138 +
   1.139 +\subsubsection*{Mail queue}
   1.140 +
   1.141 +Mail queues are probably used in all \mta{}s, excluding the simple forwarders. A mail queue is a essential requirement for \masqmail, as it is to be used for non-permanent online connections. This means, mail must be queued until a online connection is available to send the message.
   1.142 +
   1.143 +The mail queue and the module to manage it are the central part of the whole system. This demands especially for robustness and reliability, as a failure here can lead to loosing mail. An \MTA\ takes over responsibility for mail in accepting it, hence loosing mail messages is absolutely to avoid. This covers any kind of crash situation too. The worst thing acceptable to happen is a mail to be sent twice.
   1.144 +
   1.145 +\sendmail, \exim, \qmail, \name{sendmail X}, and \masqmail\ feature one single mail queue. \postfix\ has more of them.
   1.146 +
   1.147 +\MTA\ setups that include content scanning tend to require two separate queues. To use \sendmail\ in such setups requires two independent instances, with two separate queues, running. \exim\ can handle it with special \name{router} and \name{transport} rules, but the data flow gets complicated. Hence an idea is to use two queues, \name{incoming} and \name{active} in \postfix's terminology, with the content scanning within the move from \name{incoming} to \name{active}.
   1.148 +
   1.149 +\sendmail, \exim, \qmail, and \masqmail\ all use at least two files to store one message in the queue: one file contains the message body, another the envelope and header information. The one containing the mail body is not modified at all. \postfix\ takes a different approach in storing queued messages in an internal format within one file. \person{Finch} takes yet another different approach in suggesting to store the whole queue in one single file with pointers to separating positions \cite{finchFIXME}.
   1.150 +%fixme: check, cite, and think about
   1.151 +
   1.152 +
   1.153 +
   1.154 +\subsubsection*{Sanitize mail}
   1.155 +
   1.156 +Mail coming into the system often lacks important header lines. At least the required ones must be added from the \MTA. A good example is the \texttt{Message-Id:} header.
   1.157 +
   1.158 +In \postfix, this is done by the \name{cleanup} module, which invokes \name{rewrite}. The position in the message flow is after coming from one of the several incoming channels and before the message is stored into the \name{incoming} queue. Modules that handle incoming channels may also add headers, for example the \texttt{From:} and \texttt{Date:} headers. \name{cleanup}, however, does a complete check to make the mail header complete and valid.
   1.159 +
   1.160 +Apart from deciding where to sanitize the mail header, is the question where to generate the envelope. The envelope specifies the actual recipient of the mail, no matter what the \texttt{To:}, \texttt{Cc:}, and \texttt{Bcc:} headers tell. Multiple reciptients lead to multiple different envelopes, containing all the same mail message.
   1.161 +
   1.162 +
   1.163 +
   1.164 +\subsubsection*{Aliasing}
   1.165 +
   1.166 +Where should aliases get expanded? They appear in different kind. Important are the ones available in the \path{aliases} file. Aliases can be:
   1.167 +\begin{itemize}
   1.168 +	\item a different local user (e.g.\ ``\texttt{bob: alice}'')
   1.169 +	\item a remote user (e.g.\ ``\texttt{bob: john@example.com}'')
   1.170 +	\item a list of users (e.g.\ ``\texttt{bob: alice, john@example.com}'')
   1.171 +	\item a command (e.g.\ ``\texttt{bob: |foo}'')
   1.172 +\end{itemize}
   1.173 +Addresses expanding to lists of users lead to more envelopes. Aliases changing the reciptients domain part may require a different route to use.
   1.174 +
   1.175 +Aliasing is often handled in expanding the alias and reinjecting the mail into the system. Unfortunately, the mail is processed twice then; additionally does the system have to handle more mail this way. If it is wanted to check the new recipient address for acceptance and do all processing again, then reinjecting it is the best choice.
   1.176 +
   1.177 +
   1.178 +
   1.179 +\subsubsection*{Choose route to use}
   1.180 +
   1.181 +One key feature of \masqmail\ is its ability to send mail out in different ways. The decision is based on the current online state and whether a route may be used for a message or not. The online state can be retrieved in tree ways, explained in \ref{sec:fixme}. A route to send is found by checking every available route for being able to transfer the current message, until one matches.
   1.182 +
   1.183 +This functionality should be implemented in the module that is responsible to invoke one of the outgoing channel modules (for example the one for \SMTP\ or the pipe module).
   1.184 +
   1.185 +\masqmail\ can rewrite the envelope's from address and the \texttt{From:} header, dependent on the outgoing route to use. This rewrite must be done \emph{after} it is clear which route a mail will take, of course, so this may be not the module where other header editing is done.
   1.186 +%fixme: see hafiz05 page 57: maybe put the rewriting into the sending module (like smx, exim, courier) (problem with archiving of all outgoing mail?)
   1.187 +
   1.188 +
   1.189 +
   1.190 +\subsubsection*{Authentication}
   1.191 +
   1.192 +One thing to avoid is being an \name{open relay}. Open relays allow to relay mail from everywhere to everywhere. This is a major source of spam. The solution is restricting relay\footnote{Relaying is passing mail, that is not from and not for the own system, through it.} access.
   1.193 +
   1.194 +Several ways to restrict access are available. The most simple one is restrictiction by the \NAME{IP} address. No extra complexity is added this way, but static \NAME{IP} addresses are mandatory. This kind of restriction may be enabled using the operating system's \path{hosts.allow} and \path{hosts.deny} files. To allow only connections to port 25 from localhost or the local network \texttt{192.168.100.0/24} insert the line ``\texttt{25: ALL}'' into \path{hosts.deny} and ``\texttt{25: 127.0.0.1, 192.168.100.}'' into \path{hosts.allow}.
   1.195 +
   1.196 +If static access restriction is not possible, for example if mail from locations with changing \NAME{IP} addresses wants to be accepted, some kind of authentication mechanism is required. Three common kinds exist:
   1.197 +\begin{enumerate}
   1.198 +	\item \SMTP-after-\NAME{POP}: uses authenication on the \NAME{POP} protocol to permit incoming \SMTP\ connections for a limited time afterwards.
   1.199 +	\item \SMTP authentication: is an extension to \SMTP. Authentication can be requested before mail is accepted.
   1.200 +	\item Certificates: confirm the identity of someone.
   1.201 +\end{enumerate}
   1.202 +
   1.203 +
   1.204 +
   1.205 +\subsubsection*{Encryption}
   1.206  
   1.207  Electronic mail is very weak to sniffing attacks, because all data transfer is unencrypted. This concerns the message's content, as well as the email addresses in header and envelope, but also authentication dialogs that may transfer plain text passwords (\NAME{PLAIN} and \NAME{LOGIN} are examples). Adding encryption is therefor wanted.
   1.208  
   1.209 @@ -63,47 +236,325 @@
   1.210  
   1.211  \masqmail\ is already able to encrypt outgoing connections, but encryption of incoming connections, using \NAME{STARTTLS} should be implemented. This only affects the \SMTP\ server module.
   1.212  
   1.213 -%TLS/SSL prevents attackers to listen on the cable
   1.214 -%but it does not prevent man-in-the-middle attacks
   1.215 -%signed certificates help here
   1.216 -%   or PGP encryption
   1.217  
   1.218  
   1.219 -%do not use stunnel wit SMTP:
   1.220 -%because all incoming mail would be from 127.0.0.1 !!
   1.221 -%use STARTTLS instead
   1.222  
   1.223 -%postfix: main.cf
   1.224 +
   1.225 +\subsubsection*{Spam prevention}
   1.226 +
   1.227 +---
   1.228 +Spam is a major threat nowadays and the goal is to reduce it to a bearable level (see section \ref{sec:swot-analysis}). Spam fighting is a war are where the good guys tend to lose. Putting too much effort there will result in few gain. Real success will only be possible with new---better---protocols and abandonning the weak legacy technologies. Hence \masqmail\ should be able to provide state-of-the-art spam protection, but not more.
   1.229 +---
   1.230 +
   1.231 +Spam is a major threat to email, as described in section \ref{sec:swot-analysis}. The two main problems are forgable sender addresses and that it is cheap to send hundreds of thousands of messages. Hence, spam senders can operate in disguise and have minimal cost.
   1.232 +
   1.233 +As spam is not just a nuisance for end users, but also for the infrastructure---the \mta{}s---by increasing the amount of mail messages, \MTA{}s need to protect themself. Two approaches are used.
   1.234 +
   1.235 +First refusing spam during the \SMTP\ dialog. This is the way it was meant by the designers of the \SMTP\ protocol. They thought checking the sender and reciptient mail addresses would be enough, but as they are forgable it is not. More and more complex checks need to be done. Checking needs time, but \SMTP\ dialogs time out if it takes too long. Thus only limited time can be used, during the \SMTP\ dialog, for checking if a message seems to be spam. The advantage is that acceptance of bad messages can be simply refused---no responsibility for the message is takes and no further system load is added. See \RFC2505 (especially section 1.5) for detail.
   1.236 +
   1.237 +Second checking for spam after the mail was accepted and queued. Here more processing time can be invested, so more detailed checks can be done. But, as responsibility for messages was taken by accepting them, it is no choice to simply delete spam mail. Checks for spam do not lead to sure results, they just indicate the possibility the message is unwanted mail. \person{Eisentraut} indicates actions to take after a message is recognized as probably spam \cite[pages 18--20]{eisentraut05}. The only acceptable one, for mail the \MTA\ is responsible for, is adding further or rewriting existent header lines. Thus all further work on the message is the same as for non-spam messages.
   1.238 +
   1.239 +Modern \MTA{}s use both techniques in combination. Checks during the \SMTP\ dialog tend to be implemented in the \mta\ to make it fast; checks after the message was queued are often done using external programs (\name{spamassassin} is a well known one). \person{Eisentraut} sees the checks during the \SMTP\ dialog to be essentiell: ``Ganz ohne Analyse während der SMTP-Phase kommt sowieso kein MTA aus, und es ist eine Frage der Einschätzung, wie weit man diese Phase belasten möchte.''\cite[page 25]{eisentraut05} (translated: ``No \MTA\ can go without analysis during the \SMTP\ dialog, anyway, and it is a question of estimation how much to stress this period.'')
   1.240 +
   1.241 +\NAME{DNS} blacklists (short: \NAME{DNSBL}) and \name{greylisting} are checks to be done before accepting the message. Invoking \name{spamassassin}, to add headers containing the estimated spam probability, is best to be invoked after the message is queued.
   1.242 +
   1.243 +
   1.244 +
   1.245 +
   1.246 +\subsubsection*{Virus checking}
   1.247 +
   1.248 +Related to spam is malicous content (short: \name{malware}) like viruses, worms, trojan horses. They, in contrast to spam, do not affect the \MTA\ itself, as they are in the mail body. The same situation in the real world is post offices opening letters to check if they contain something that could harm the recipient. This is not a mail transport concern. Apart of not being the right program to do the job, the \MTA\---the one which is responsible for the recipient---is at a good position to do this work.
   1.249 +
   1.250 +In any way should malware checking be done by external programs that may be invoked by the \mta. But using mail deliver and processing agents, like \name{procmail}, seem to be better suited locations to invoke content scanners.
   1.251 +
   1.252 +A popular email filter framework is \name{amavis} which integrates various spam and virus scanners. The common setup includes a receiving \MTA\ which sends it to \name{amavis} using \SMTP, \name{amavis} processes the mail and sends it then to a second \MTA\ that does the outgoing transfer. \postfix\ and \exim\ can be configured so that one instance can work as both, the \MTA\ for incoming and outgoing transfer. A setup with \sendmail\ needs two separate instances running. It must be quarateed that all mail flows through the scanner.
   1.253 +
   1.254 +A future \masqmail\ would do good to have a single point, where all traffic flows through, that is able to invoke external programs to do mail processing of any kind.
   1.255 +
   1.256 +
   1.257 +%AMaViS (amavisd-new): email filter framework to integrate spam and virus scanner
   1.258  %\begin{verbatim}
   1.259 -%	smtpd_use_tls = yes
   1.260 -%	smtpd_tls_received_header = no (does not log in received headers)
   1.261 +%internet -->25 MTA -->10024 amavis -->10025 MTA --> reciptient
   1.262 +                %|                            |
   1.263 +                %+----------------------------+
   1.264 +%\end{verbatim}
   1.265  %
   1.266 -%	smtpd_tls_key_file = /etc/postfix/key.pem
   1.267 -%	smtpd_tls_cert_file = /etc/postfix/cert.pem
   1.268 -%	smtpd_tls_CA_file = /etc/postfix/CAcert.pem
   1.269 +%postfix and exim can habe both mta servises in the same instance, sendmail needs two instances running.
   1.270  %
   1.271 -%	smtp_use_tls = yes  (use TLS for sending)
   1.272 -%	smtp_tls_key_file = /etc/postfix/key.pem
   1.273 -%	smtp_tls_cert_file = /etc/postfix/cert.pem
   1.274 -%	smtp_tls_CA_file = /etc/postfix/CAcert.pem
   1.275 -%\end{verbatim}
   1.276 +%MailScanner:
   1.277 +%incoming queue --> MailScanner --> outgoing queue
   1.278 +%
   1.279 +%postfix: with one instance possible, exim and sendmail need two instances running
   1.280  
   1.281  
   1.282 +%message body <-> envelope, header
   1.283 +%
   1.284 +%anti-virus: clamav
   1.285 +%postfix: via amavis
   1.286 +%exim: via content-scanning-feature called from acl
   1.287 +%sendmail: with milter
   1.288 +%procmail
   1.289 +%
   1.290 +%virus scanner work on file level
   1.291 +%amavis receives mail via smtp or pipe, splits it in its parts (MIME) and extracks archives, the come the virus scanners
   1.292 +%if the mail is okay, it goes via smtp to a second mta
   1.293  
   1.294 +%what amavis recognizes:
   1.295 +%- invalid headers
   1.296 +%- banned files
   1.297 +%- viruses
   1.298 +%- spam (using spam assassin)
   1.299 +%
   1.300 +%mimedefang: uses milter interface with sendmail
   1.301  
   1.302 -\subsection{Various bug fixes}
   1.303  
   1.304  
   1.305 +\subsubsection*{Archiving}
   1.306  
   1.307 +Mail archiving and auditability become more important as electronic mail becomes more important. Ability to archive verbatim copies of every mail coming into and every mail going out of the system, with relation between them, appears to be a goal to achieve.
   1.308  
   1.309 +\postfix\ for example has a \texttt{always\_bcc} feature, to send a copy of every mail to a definable reciptient. At least this funtionality should be given, although a more complete approach is preferable.
   1.310  
   1.311  
   1.312 -\section{Test and validation}
   1.313  
   1.314  
   1.315 -\section{Documentation}
   1.316  
   1.317  
   1.318 -\section{Release}
   1.319  
   1.320 -Upstream and Debian
   1.321 +
   1.322 +\subsection{The resulting architecture}
   1.323 +
   1.324 +The result is a symetric design, featuring the following parts: Any number of handlers for incoming connections to receive mail and pass it to the module that stores it into the incoming queue. A central scanning module take mail from the incoming queue, processes it in various ways and puts it afterwards into the outgoing queue. Another module takes it out there and passes it to a matching transport module that transfers it to the destination. In other words, three main modules (queue-in, scanning, queue-out) are connected by the two queues (incoming, outgoing); on each end are more modules to receive and send mail---for each protocol one. Figure \ref{fig:masqmail-arch-new} depicts the new designed architecture.
   1.325 +
   1.326 +\begin{figure}
   1.327 +	\begin{center}
   1.328 +		\includegraphics[width=\textwidth]{img/masqmail-arch-new.eps}
   1.329 +	\end{center}
   1.330 +	\caption{A new designed architecture for \masqmail}
   1.331 +	\label{fig:masqmail-arch-new}
   1.332 +\end{figure}
   1.333 +
   1.334 +This architecture is heavily influenced by the ones of \qmail\ and \postfix. Both have different incoming channels that merge in the module that puts mail into the queue; central is the queue (or more of them); and one module takes mail from the queue and passes it to one of the outgoing channels. Mail processing, in any way, is build in in a more explicit way than done in the other two. It is more similar to the \NAME{AR} module of \name{sendmail X}, which is the central point for spam checking.
   1.335 +
   1.336 +Special regard was put on addable support for further mail transfer protocols. This appears to be most similar to \qmail, which was designed to handle multiple protocols.
   1.337 +%fixme: do i need all this ``quesses''??
   1.338 +
   1.339 +
   1.340 +\subsubsection*{Modules and queues}
   1.341 +
   1.342 +The new architecture consists of several modules and two queues. They are defined in more detail now, and the jobs, identified above, are assigned to them. First the three main modules, then the queues, and afterwards the modules for incoming and outgoing transfer.
   1.343 +
   1.344 +
   1.345 +The \name{queue-in} module creates new spool files in the \name{incoming} queue for incoming messages. It is a process running in background, waiting for connections from one of the receiver modules. When one of them requests for a new spool file, the \name{queue-in} module opens one and returns a positive result. The receiver module then sends the envelope and message, which is written into the spool file by \name{queue-in}. If all went well, another positive result is returend.
   1.346 +%fixme: should be no daemon
   1.347 +
   1.348 +
   1.349 +The \name{scanning} module is the central part of the system. It takes spooled messages from the \name{incoming} queue, works on them, and writes them to the \name{outgoing} queue afterwards (the message is then removed from the \name{incoming} queue, of course). The main job is the processing done on the message. Headers are fixed and missing ones are added if necessary, aliasing is done, and external processing of any kind is triggered. The \name{scanning} module can run in background and look for new mail in regular intvals or signals may be sent to it by \name{queue-in}. Alternatively it can be called by \name{cron}, for example, to do single runs.
   1.350 +
   1.351 +
   1.352 +The \name{queue-out} module takes messages from the \name{outgoing} queue, queries information about the online connection, and then selects matching routes, creates envelopes for each recipient and passes the messages to the correct transport module. Successfully transfered messages are removed from the \name{outgoing} queue. This module includes some tasks specific to \masqmail.
   1.353 +
   1.354 +
   1.355 +The \name{incoming} queue stores messages received via one of the incoming channels. The messages are in unprocessed form; only envelope data is prepended.
   1.356 +
   1.357 +
   1.358 +The \name{outgoing} queue contains processed messages. The header and envelope information is complete and in valid form.
   1.359 +
   1.360 +\name{Receiver modules} are the communication interface between outside senders and the \name{queue-in} module. Each protocol needs a corresponding \name{receiver module} to be supported. Most popular are the \name{sendmail} module (which is a command to be called from the local host) and the \name{smtpd} module (which listens on port 25). Other modules to support other protocols may be added as needed.
   1.361 +
   1.362 +\name{Transport modules}, on the oppersite side of the system, are the modules to send outgoing mail; they are the interface between \name{queue-out} and remote hosts or local commands for further processing. The most popular ones are the \name{smtp} module (which acts as the \SMTP\ client) and the \name{pipe} module (to interface gateways to other systems or networks, like fax or uucp). A module for local delivery is not included, as it is in most other \MTA{}s; the reasons are described in FIXME.%fixme
   1.363 +Thus a \name{mail delivery agent} (like \name{procmail}) is to be used with the \name{pipe} module.
   1.364 +
   1.365 +
   1.366 +
   1.367 +\subsubsection*{Inter-module communication}
   1.368 +
   1.369 +Communication between modules is required to exchange data and status information. It is also called ``Inter-process communication'' (short: \NAME{IPC}), as modules are programs being part of a larger system, and processes are generally seen as programs in execution.
   1.370 +
   1.371 +The connections between \name{queue-in} and \name{scanning}, aswell as between \name{scanning} and \name{queue-out} is provided by the queues, only sending signals to trigger instant runs may be useful. Communication between receiving and transport modules and the outside world are done using the specific protocol they do handle.
   1.372 +
   1.373 +Left is only communication between the receiver modules and \name{queue-in}, and between \name{queue-out} and the transport modules. Data is exchanged done using \unix\ pipes and a simple protocol is used.
   1.374 +
   1.375 +\begin{figure}
   1.376 +	\begin{center}
   1.377 +		\input{input/ipc-protocol.tex}
   1.378 +	\end{center}
   1.379 +	\caption{State diagram of the protocol used for \NAME{IPC}}
   1.380 +	\label{fig:ipc-protocol}
   1.381 +\end{figure}
   1.382 +
   1.383 +% timing
   1.384 +One dialog consists of the four phases: connection attempt, acceptance reply, data transfer, success reply. The order is always the same. The connection attempt and data transfer are sent by the client process; replies are sent by the server process.
   1.385 +%fixme: split between header and data
   1.386 +
   1.387 +% semantics
   1.388 +The connection attempt is simply opening the connection. This starts the dialog. A positive reply by the server leads to the data transfer, but a negative reply refuses the connection and resets both client and server to the state before the connection attempt. If the connection attempt was accepted, the client sends the data ending with a terminator sequence. When this terminator appears, the server process knows the complete data was transfered. The server process takes responsibility of the data in sending a positive success reply. A negative success reply resets both client and server to the state before the connection attempt.
   1.389 +
   1.390 +The data transfered needs to be of specific format. Used is the same format in which messages are spooled in the mail queues. See the following section for details. %fixme: check if it is the following section
   1.391 +%fixme: split between header and data
   1.392 +
   1.393 +% syntax
   1.394 +Data transfer is done sending plain text data. %fixme: utf8 ?
   1.395 +The terminator sequence used to indicate the end of the data transfer is a single dot on a line on its own. Line separators are the combination of \name{Carriage Return} and \name{Line Feed}, as it is used in various Internet protocols like \SMTP. Replys are one-digit numbers with \texttt{0} meaning success and any other number (\texttt{1}--\texttt{9}) indicate failure. %fixme: What are the octal values?
   1.396 +%fixme: split between header and data
   1.397 +
   1.398 +Figure \ref{fig:ipc-protocol} is a state diagram for the protocol.
   1.399 +
   1.400 +
   1.401 +
   1.402 +\subsubsection*{Spool file format}
   1.403 +
   1.404 +The spool file format is basically the same as the one in current \masqmail: one file for the message body, the other for envelope and header information. The data file is stored in a separate data pool. It is written by \name{queue-in}, \name{scanning} can read it if necessary, \name{queue-out} reads it to generate the outgoing message, and deletes it after successful transfer. The header file (including the envelope) is written into the \name{incoming} queue. The \name{scanning} modules reads it, processes it, and writes a modified copy into the \name{outgoing} queue; the file in \name{incoming} is deleted then. \name{queue-out} finally takes the header file from \name{outgoing} to generate the resulting message. This data flow is shown in figure \ref{fig:queue-data-flow}.
   1.405 +
   1.406 +\begin{figure}
   1.407 +	\begin{center}
   1.408 +		\input{input/queue-data-flow.tex}
   1.409 +	\end{center}
   1.410 +	\caption{Data flow of messages in the queue}
   1.411 +	\label{fig:queue-data-flow}
   1.412 +\end{figure}
   1.413 +
   1.414 +The queue consists of three directories within the queue path. Two, named \name{incoming} and \name{outgoing}, for storing the header files; one, called \name{pool}, to store the message bodies. The files being part of one message share the same unique name. The header files internal structure can be the same as the one of current \masqmail.
   1.415 +
   1.416 +Messages in queues are a header file in \name{incoming} or \name{outgoing} and a data file in \name{pool}. The header file owner's executable bit indicates if the file is ready for further processing: the module that writes the file into the queue sets the bit as last action. Modules that read from the queue can process messages with the bit set.
   1.417 +
   1.418 +No spool files are modified after they are written to disk. Modifications to header files can be made by the \name{scanning} module in the ``move'' from \name{incoming} to \name{outgoing}---it is a create and remove, actually. Further rewriting can happen in \name{queue-out}, as well without altering the file.
   1.419 +
   1.420 +Data files do not change at all within the system. They are written in default local plain text format. Required translation is done in the receiver and transport modules.
   1.421 +
   1.422 +
   1.423 +\begin{tabular}[hbt]{ l l }
   1.424 +
   1.425 +\mbox{ queue-in:} & \mbox{
   1.426 +\begin{tabular}[hbt]{| c | c | c |}
   1.427 +	\hline
   1.428 + incoming & outgoing & pool \\
   1.429 +	\hline
   1.430 +	\hline
   1.431 + - & - & - \\
   1.432 +	\hline
   1.433 + 0600 & - & - \\
   1.434 +	\hline
   1.435 + 0600 & - & 0600 \\
   1.436 +	\hline
   1.437 + 0700 & - & 0600 \\
   1.438 +	\hline
   1.439 +\end{tabular}
   1.440 +} \\
   1.441 +
   1.442 +\quad & \\
   1.443 +
   1.444 +\mbox{scanning:} & \mbox{
   1.445 +\begin{tabular}[hbt]{| c | c | c |}
   1.446 +	\hline
   1.447 + incoming & outgoing & pool \\
   1.448 +	\hline
   1.449 +	\hline
   1.450 + 0700 & - & 0600 \\
   1.451 +	\hline
   1.452 + 0700 & 0600 & 0600 \\
   1.453 +	\hline
   1.454 + 0700 & 0700 & 0600 \\
   1.455 +	\hline
   1.456 + - & 0700 & 0600 \\
   1.457 +	\hline
   1.458 +\end{tabular}
   1.459 +} \\
   1.460 +
   1.461 +\quad & \\
   1.462 +
   1.463 +\mbox{queue-out:} & \mbox{
   1.464 +\begin{tabular}[hbt]{| c | c | c |}
   1.465 +	\hline
   1.466 + incoming & outgoing & pool \\
   1.467 +	\hline
   1.468 +	\hline
   1.469 + - & 0700 & 0600 \\
   1.470 +	\hline
   1.471 + - & 0700 & - \\
   1.472 +	\hline
   1.473 + - & - & - \\
   1.474 +	\hline
   1.475 +\end{tabular}
   1.476 +} \\
   1.477 +
   1.478 +\end{tabular}
   1.479 +
   1.480 +A sample header file.
   1.481 +\begin{verbatim}
   1.482 +1LGtYh-0ut-00                (backup copy of the file name)
   1.483 +MF:<meillo@dream>            (envelope: sender)
   1.484 +RT: <user@example.org>       (envelope: recipient)
   1.485 +PR:local                     (meta info: protocol)
   1.486 +ID:meillo                    (meta info: id/user/ip)
   1.487 +DS: 18                       (meta info: size)
   1.488 +TR: 1230462707               (meta info: timestamp)
   1.489 +                             (following: headers)
   1.490 +HD:Received: from meillo by dream with local (masqmail 0.2.21) id
   1.491 + 1LGtYh-0ut-00 for <user@example.org>; Sun, 28 Dec 2008 12:11:47 +0100
   1.492 +HD:To: user@example.org
   1.493 +HD:Subject: test mail
   1.494 +HD:From: <meillo@dream>
   1.495 +HD:Date: Sun, 28 Dec 2008 12:11:47 +0100
   1.496 +HD:Message-ID: <1LGtYh-0ut-00@dream>
   1.497 +\end{verbatim}
   1.498 +
   1.499 +
   1.500 +
   1.501 +
   1.502 +\subsubsection*{Rights and permission}
   1.503 +
   1.504 +The user set required for \qmail\ seems to be too complex. One special user, like \postfix\ uses, is more appropriate. \name{root} privilege and \name{setuid} permission is avoided as much as possible.
   1.505 +
   1.506 +Table \ref{tab:new-masqmail-permissions} shows the suggested ownership and permissions of the modules. Figure \ref{fig:new-masqmail-queue} shows the permissions and ownership used for the queue.
   1.507 +
   1.508 +\begin{table}
   1.509 +	\begin{center}
   1.510 +		\input{input/new-masqmail-permissions.tex}
   1.511 +	\end{center}
   1.512 +	\caption{Ownership and permissions of the modules}
   1.513 +	\label{tab:new-masqmail-permission}
   1.514 +\end{table}
   1.515 +
   1.516 +\begin{figure}
   1.517 +	\begin{center}
   1.518 +		\input{input/new-masqmail-queue.tex}
   1.519 +	\end{center}
   1.520 +	\caption{Ownership and permissions of the queue}
   1.521 +	\label{fig:new-masqmail-queue}
   1.522 +\end{figure}
   1.523 +
   1.524 +
   1.525 +
   1.526 +
   1.527 +
   1.528 +setuid/setgid or not?
   1.529 +
   1.530 +what can crash if an attacker succeeds?
   1.531 +
   1.532 +where to drop privelege?
   1.533 +
   1.534 +how is which process invoked?
   1.535 +
   1.536 +master process? needed, or wanted?
   1.537 +
   1.538 +which are the daemon processes?
   1.539 +
   1.540 +
   1.541 +
   1.542 +
   1.543 +
   1.544 +
   1.545 +
   1.546 +http://fanf.livejournal.com/50917.html %how not to design an mta - the sendmail command
   1.547 +http://fanf.livejournal.com/51349.html %how not to design an mta - partitioning for security
   1.548 +http://fanf.livejournal.com/61132.html %how not to design an mta - local delivery
   1.549 +http://fanf.livejournal.com/64941.html %how not to design an mta - spool file format
   1.550 +http://fanf.livejournal.com/65203.html %how not to design an mta - spool file logistics
   1.551 +http://fanf.livejournal.com/65911.html %how not to design an mta -   more about log-structured MTA queues
   1.552 +http://fanf.livejournal.com/67297.html %how not to design an mta -   more log-structured MTA queues
   1.553 +http://fanf.livejournal.com/70432.html %how not to design an mta - address verification
   1.554 +http://fanf.livejournal.com/72258.html %how not to design an mta - content scanning
   1.555 +
   1.556 +
   1.557 +
     2.1 --- a/thesis/tex/6-NewDesign.tex	Sun Jan 11 20:21:35 2009 +0100
     2.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.3 @@ -1,442 +0,0 @@
     2.4 -\chapter{A design from scratch}
     2.5 -
     2.6 -The last sections identified the jobs that need to be done by a modern \MTA; problems and prefered choices were mentioned too. Now the various jobs are assigned to modules, of which an architecture is created. It is inpired by existing ones and driven by the identified jobs and requirements.
     2.7 -
     2.8 -``Many times in life, getting off to the right start makes all the difference.'' \cite[page~32]{graff03}
     2.9 -
    2.10 -
    2.11 -
    2.12 -\section{Design decisions}
    2.13 -
    2.14 -One major design idea of the design were:
    2.15 -\begin{itemize}
    2.16 -	\item free the internal system from in and out channels
    2.17 -	\item arbitrary protocol handlers have to be addable afterwards
    2.18 -	\item a single facility for scanning (all mail goes through it)
    2.19 -	\item concentrate on mail transfer
    2.20 -\end{itemize}
    2.21 -
    2.22 -
    2.23 -\subsubsection*{Incoming channels}
    2.24 -
    2.25 -\sendmail-compatible \mta{}s must support at least two incoming channels: mail submitted using the \sendmail\ command, and mail received via the \SMTP\ daemon. It is therefor common to split the incoming channel into local and remote. This is done by \qmail\ and \postfix. The same way is \person{Hafiz}'s view.
    2.26 -
    2.27 -In contrast is \name{sendmail X}: Its locally submitted messages go to the \SMTP\ daemon, which is the only connection towards the mail queue. %fixme: is it a smtp dialog? or a second door?
    2.28 -\person{fanf} proposes a similar approach. He wants the \texttt{sendmail} command to be a simple \SMTP\ client that contacts the \SMTP\ daemon of the \MTA\ like it is done by connections from remote. The advantage here is one single module where all \SMTP\ dialog with submitters is done. Hence one single point to accept or refuse incoming mail. Additionally does the module to put mail into the queue not need to be \name{setuid} or \name{setgid} because it is only invoked from the \SMTP\ daemon. The \MTA's architecture would become simpler and common tasks are not duplicated in modules that do similar jobs.
    2.29 -
    2.30 -But merging the input channels in the \SMTP\ daemon makes the \MTA\ heavily dependent on \SMTP\ being the main mail transfer protocol. To \qmail\ and \postfix\ new modules to support other ways of message receival may be added without change of other parts of the system. Also is it better to have more independent modules if each one is simpler then.
    2.31 -
    2.32 -With the increasing need for new protocols in mind, it seems better to have single modules for each incoming channel, although this leads to duplicated acceptance checks.
    2.33 -
    2.34 -
    2.35 -\subsubsection*{Outgoing channels}
    2.36 -
    2.37 -Outgoing mail is commonly either sent using \SMTP, piped into local commands (for example \texttt{uucp}), or delivered locally by appending to a mailbox.
    2.38 -
    2.39 -Outgoing channels are similar for \qmail, \postfix, and \name{sendmail X}: All of them have a module to send mail using \SMTP, and one for writing into a local mailbox. Local mail delivery is a job that requires root priveledge to be able to switch to any user in order to write to his mailbox. Modular \MTA{}s do not need \name{setuid root}, but the local delivery process (or its parent) needs to run as root.
    2.40 -
    2.41 -As mail delivery to local users, is \emph{not} included in the basic job of an \MTA{}, why should it care about it? In order to keep the system simple and to have programs that do one job well, the local delivery job should be handed over to a specialist: the \name{mail delivery agent}. \NAME{MDA}s know about the various mailbox formats and are aware of the problems of concurrent write access and thelike. Hence handling the message and the responsiblity over to a \NAME{MDA}, like \name{procmail} or \name{maildrop}, seems to be the right way to go.
    2.42 -
    2.43 -This means an outgoing connection that pipes mail into local commands is required. Other outgoing channels, one for each supportet protocol, may be designed like it was done in other \MTA{}s.
    2.44 -
    2.45 -
    2.46 -
    2.47 -\subsubsection*{Mail queue}
    2.48 -
    2.49 -Mail queues are probably used in all \mta{}s, excluding the simple forwarders. A mail queue is a essential requirement for \masqmail, as it is to be used for non-permanent online connections. This means, mail must be queued until a online connection is available to send the message.
    2.50 -
    2.51 -The mail queue and the module to manage it are the central part of the whole system. This demands especially for robustness and reliability, as a failure here can lead to loosing mail. An \MTA\ takes over responsibility for mail in accepting it, hence loosing mail messages is absolutely to avoid. This covers any kind of crash situation too. The worst thing acceptable to happen is a mail to be sent twice.
    2.52 -
    2.53 -\sendmail, \exim, \qmail, \name{sendmail X}, and \masqmail\ feature one single mail queue. \postfix\ has more of them.
    2.54 -
    2.55 -\MTA\ setups that include content scanning tend to require two separate queues. To use \sendmail\ in such setups requires two independent instances, with two separate queues, running. \exim\ can handle it with special \name{router} and \name{transport} rules, but the data flow gets complicated. Hence an idea is to use two queues, \name{incoming} and \name{active} in \postfix's terminology, with the content scanning within the move from \name{incoming} to \name{active}.
    2.56 -
    2.57 -\sendmail, \exim, \qmail, and \masqmail\ all use at least two files to store one message in the queue: one file contains the message body, another the envelope and header information. The one containing the mail body is not modified at all. \postfix\ takes a different approach in storing queued messages in an internal format within one file. \person{Finch} takes yet another different approach in suggesting to store the whole queue in one single file with pointers to separating positions \cite{finchFIXME}.
    2.58 -%fixme: check, cite, and think about
    2.59 -
    2.60 -
    2.61 -
    2.62 -\subsubsection*{Sanitize mail}
    2.63 -
    2.64 -Mail coming into the system often lacks important header lines. At least the required ones must be added from the \MTA. A good example is the \texttt{Message-Id:} header.
    2.65 -
    2.66 -In \postfix, this is done by the \name{cleanup} module, which invokes \name{rewrite}. The position in the message flow is after coming from one of the several incoming channels and before the message is stored into the \name{incoming} queue. Modules that handle incoming channels may also add headers, for example the \texttt{From:} and \texttt{Date:} headers. \name{cleanup}, however, does a complete check to make the mail header complete and valid.
    2.67 -
    2.68 -Apart from deciding where to sanitize the mail header, is the question where to generate the envelope. The envelope specifies the actual recipient of the mail, no matter what the \texttt{To:}, \texttt{Cc:}, and \texttt{Bcc:} headers tell. Multiple reciptients lead to multiple different envelopes, containing all the same mail message.
    2.69 -
    2.70 -
    2.71 -
    2.72 -\subsubsection*{Aliasing}
    2.73 -
    2.74 -Where should aliases get expanded? They appear in different kind. Important are the ones available in the \path{aliases} file. Aliases can be:
    2.75 -\begin{itemize}
    2.76 -	\item a different local user (e.g.\ ``\texttt{bob: alice}'')
    2.77 -	\item a remote user (e.g.\ ``\texttt{bob: john@example.com}'')
    2.78 -	\item a list of users (e.g.\ ``\texttt{bob: alice, john@example.com}'')
    2.79 -	\item a command (e.g.\ ``\texttt{bob: |foo}'')
    2.80 -\end{itemize}
    2.81 -Addresses expanding to lists of users lead to more envelopes. Aliases changing the reciptients domain part may require a different route to use.
    2.82 -
    2.83 -Aliasing is often handled in expanding the alias and reinjecting the mail into the system. Unfortunately, the mail is processed twice then; additionally does the system have to handle more mail this way. If it is wanted to check the new recipient address for acceptance and do all processing again, then reinjecting it is the best choice.
    2.84 -
    2.85 -
    2.86 -
    2.87 -\subsubsection*{Choose route to use}
    2.88 -
    2.89 -One key feature of \masqmail\ is its ability to send mail out in different ways. The decision is based on the current online state and whether a route may be used for a message or not. The online state can be retrieved in tree ways, explained in \ref{sec:fixme}. A route to send is found by checking every available route for being able to transfer the current message, until one matches.
    2.90 -
    2.91 -This functionality should be implemented in the module that is responsible to invoke one of the outgoing channel modules (for example the one for \SMTP\ or the pipe module).
    2.92 -
    2.93 -\masqmail\ can rewrite the envelope's from address and the \texttt{From:} header, dependent on the outgoing route to use. This rewrite must be done \emph{after} it is clear which route a mail will take, of course, so this may be not the module where other header editing is done.
    2.94 -%fixme: see hafiz05 page 57: maybe put the rewriting into the sending module (like smx, exim, courier) (problem with archiving of all outgoing mail?)
    2.95 -
    2.96 -
    2.97 -
    2.98 -\subsubsection*{Authentication}
    2.99 -
   2.100 -One thing to avoid is being an \name{open relay}. Open relays allow to relay mail from everywhere to everywhere. This is a major source of spam. The solution is restricting relay\footnote{Relaying is passing mail, that is not from and not for the own system, through it.} access.
   2.101 -
   2.102 -Several ways to restrict access are available. The most simple one is restrictiction by the \NAME{IP} address. No extra complexity is added this way, but static \NAME{IP} addresses are mandatory. This kind of restriction may be enabled using the operating system's \path{hosts.allow} and \path{hosts.deny} files. To allow only connections to port 25 from localhost or the local network \texttt{192.168.100.0/24} insert the line ``\texttt{25: ALL}'' into \path{hosts.deny} and ``\texttt{25: 127.0.0.1, 192.168.100.}'' into \path{hosts.allow}.
   2.103 -
   2.104 -If static access restriction is not possible, for example if mail from locations with changing \NAME{IP} addresses wants to be accepted, some kind of authentication mechanism is required. Three common kinds exist:
   2.105 -\begin{enumerate}
   2.106 -	\item \SMTP-after-\NAME{POP}: uses authenication on the \NAME{POP} protocol to permit incoming \SMTP\ connections for a limited time afterwards.
   2.107 -	\item \SMTP authentication: is an extension to \SMTP. Authentication can be requested before mail is accepted.
   2.108 -	\item Certificates: confirm the identity of someone.
   2.109 -\end{enumerate}
   2.110 -
   2.111 -
   2.112 -
   2.113 -\subsubsection*{Encryption}
   2.114 -
   2.115 -Electronic mail is very weak to sniffing attacks, because all data transfer is unencrypted. This concerns the message's content, as well as the email addresses in header and envelope, but also authentication dialogs that may transfer plain text passwords (\NAME{PLAIN} and \NAME{LOGIN} are examples). Adding encryption is therefor wanted.
   2.116 -
   2.117 -The common way to encrypt \SMTP\ dialogs is using \name{Transport Layer Security} (short: \TLS, successor of \NAME{SSL}). \TLS\ encrypts the datagrams of the \name{transport layer}. This means it works below the application protocols and can be used by any of them\citeweb{wikipedia:tls}.
   2.118 -
   2.119 -\TLS\ allows to create secure tunnels through which arbitrary programs can communicate. Hence one can add secure communication afterwards to programs without changing them. \name{OpenSSL} for example---a free implementation---allows traffic to be piped into a command; a secure tunnel is created and the traffic is forwarded through it. Or a secure tunnel can be set up between a local and a remote port; this tunnel can then be used by any application.
   2.120 -
   2.121 -The \NAME{POP} protocol, for example, is good suited for such tunneling, but \SMTP\ is is not generally. Outgoing \SMTP\ client connections can be tunneled without problem---\masqmail\ already provides a configure option called \texttt{wrapper} to do so. Tunneling incomming connections to a server leads to problems with \SMTP. As data comes encrypted through the tunnel to the receiving host and gets then decrypted and forwarded on local to the port the application listens on. From the \MTA's view, this makes all connections appear to come from localhost, unfortunately. Figure \ref{fig:stunnel} depicts the data flow.
   2.122 -
   2.123 -For incoming connections, \NAME{STARTTLS}---defined in \RFC2487---is what \mta{}s implement.
   2.124 -
   2.125 -\masqmail\ is already able to encrypt outgoing connections, but encryption of incoming connections, using \NAME{STARTTLS} should be implemented. This only affects the \SMTP\ server module.
   2.126 -
   2.127 -
   2.128 -
   2.129 -
   2.130 -
   2.131 -\subsubsection*{Spam prevention}
   2.132 -
   2.133 ----
   2.134 -Spam is a major threat nowadays and the goal is to reduce it to a bearable level (see section \ref{sec:swot-analysis}). Spam fighting is a war are where the good guys tend to lose. Putting too much effort there will result in few gain. Real success will only be possible with new---better---protocols and abandonning the weak legacy technologies. Hence \masqmail\ should be able to provide state-of-the-art spam protection, but not more.
   2.135 ----
   2.136 -
   2.137 -Spam is a major threat to email, as described in section \ref{sec:swot-analysis}. The two main problems are forgable sender addresses and that it is cheap to send hundreds of thousands of messages. Hence, spam senders can operate in disguise and have minimal cost.
   2.138 -
   2.139 -As spam is not just a nuisance for end users, but also for the infrastructure---the \mta{}s---by increasing the amount of mail messages, \MTA{}s need to protect themself. Two approaches are used.
   2.140 -
   2.141 -First refusing spam during the \SMTP\ dialog. This is the way it was meant by the designers of the \SMTP\ protocol. They thought checking the sender and reciptient mail addresses would be enough, but as they are forgable it is not. More and more complex checks need to be done. Checking needs time, but \SMTP\ dialogs time out if it takes too long. Thus only limited time can be used, during the \SMTP\ dialog, for checking if a message seems to be spam. The advantage is that acceptance of bad messages can be simply refused---no responsibility for the message is takes and no further system load is added. See \RFC2505 (especially section 1.5) for detail.
   2.142 -
   2.143 -Second checking for spam after the mail was accepted and queued. Here more processing time can be invested, so more detailed checks can be done. But, as responsibility for messages was taken by accepting them, it is no choice to simply delete spam mail. Checks for spam do not lead to sure results, they just indicate the possibility the message is unwanted mail. \person{Eisentraut} indicates actions to take after a message is recognized as probably spam \cite[pages 18--20]{eisentraut05}. The only acceptable one, for mail the \MTA\ is responsible for, is adding further or rewriting existent header lines. Thus all further work on the message is the same as for non-spam messages.
   2.144 -
   2.145 -Modern \MTA{}s use both techniques in combination. Checks during the \SMTP\ dialog tend to be implemented in the \mta\ to make it fast; checks after the message was queued are often done using external programs (\name{spamassassin} is a well known one). \person{Eisentraut} sees the checks during the \SMTP\ dialog to be essentiell: ``Ganz ohne Analyse während der SMTP-Phase kommt sowieso kein MTA aus, und es ist eine Frage der Einschätzung, wie weit man diese Phase belasten möchte.''\cite[page 25]{eisentraut05} (translated: ``No \MTA\ can go without analysis during the \SMTP\ dialog, anyway, and it is a question of estimation how much to stress this period.'')
   2.146 -
   2.147 -\NAME{DNS} blacklists (short: \NAME{DNSBL}) and \name{greylisting} are checks to be done before accepting the message. Invoking \name{spamassassin}, to add headers containing the estimated spam probability, is best to be invoked after the message is queued.
   2.148 -
   2.149 -
   2.150 -
   2.151 -
   2.152 -\subsubsection*{Virus checking}
   2.153 -
   2.154 -Related to spam is malicous content (short: \name{malware}) like viruses, worms, trojan horses. They, in contrast to spam, do not affect the \MTA\ itself, as they are in the mail body. The same situation in the real world is post offices opening letters to check if they contain something that could harm the recipient. This is not a mail transport concern. Apart of not being the right program to do the job, the \MTA\---the one which is responsible for the recipient---is at a good position to do this work.
   2.155 -
   2.156 -In any way should malware checking be done by external programs that may be invoked by the \mta. But using mail deliver and processing agents, like \name{procmail}, seem to be better suited locations to invoke content scanners.
   2.157 -
   2.158 -A popular email filter framework is \name{amavis} which integrates various spam and virus scanners. The common setup includes a receiving \MTA\ which sends it to \name{amavis} using \SMTP, \name{amavis} processes the mail and sends it then to a second \MTA\ that does the outgoing transfer. \postfix\ and \exim\ can be configured so that one instance can work as both, the \MTA\ for incoming and outgoing transfer. A setup with \sendmail\ needs two separate instances running. It must be quarateed that all mail flows through the scanner.
   2.159 -
   2.160 -A future \masqmail\ would do good to have a single point, where all traffic flows through, that is able to invoke external programs to do mail processing of any kind.
   2.161 -
   2.162 -
   2.163 -%AMaViS (amavisd-new): email filter framework to integrate spam and virus scanner
   2.164 -%\begin{verbatim}
   2.165 -%internet -->25 MTA -->10024 amavis -->10025 MTA --> reciptient
   2.166 -                %|                            |
   2.167 -                %+----------------------------+
   2.168 -%\end{verbatim}
   2.169 -%
   2.170 -%postfix and exim can habe both mta servises in the same instance, sendmail needs two instances running.
   2.171 -%
   2.172 -%MailScanner:
   2.173 -%incoming queue --> MailScanner --> outgoing queue
   2.174 -%
   2.175 -%postfix: with one instance possible, exim and sendmail need two instances running
   2.176 -
   2.177 -
   2.178 -%message body <-> envelope, header
   2.179 -%
   2.180 -%anti-virus: clamav
   2.181 -%postfix: via amavis
   2.182 -%exim: via content-scanning-feature called from acl
   2.183 -%sendmail: with milter
   2.184 -%procmail
   2.185 -%
   2.186 -%virus scanner work on file level
   2.187 -%amavis receives mail via smtp or pipe, splits it in its parts (MIME) and extracks archives, the come the virus scanners
   2.188 -%if the mail is okay, it goes via smtp to a second mta
   2.189 -
   2.190 -%what amavis recognizes:
   2.191 -%- invalid headers
   2.192 -%- banned files
   2.193 -%- viruses
   2.194 -%- spam (using spam assassin)
   2.195 -%
   2.196 -%mimedefang: uses milter interface with sendmail
   2.197 -
   2.198 -
   2.199 -
   2.200 -\subsubsection*{Archiving}
   2.201 -
   2.202 -Mail archiving and auditability become more important as electronic mail becomes more important. Ability to archive verbatim copies of every mail coming into and every mail going out of the system, with relation between them, appears to be a goal to achieve.
   2.203 -
   2.204 -\postfix\ for example has a \texttt{always\_bcc} feature, to send a copy of every mail to a definable reciptient. At least this funtionality should be given, although a more complete approach is preferable.
   2.205 -
   2.206 -
   2.207 -
   2.208 -
   2.209 -
   2.210 -\section{The resulting architecture}
   2.211 -
   2.212 -The result is a symetric design, featuring the following parts: Any number of handlers for incoming connections to receive mail and pass it to the module that stores it into the incoming queue. A central scanning module take mail from the incoming queue, processes it in various ways and puts it afterwards into the outgoing queue. Another module takes it out there and passes it to a matching transport module that transfers it to the destination. In other words, three main modules (queue-in, scanning, queue-out) are connected by the two queues (incoming, outgoing); on each end are more modules to receive and send mail---for each protocol one. Figure \ref{fig:masqmail-arch-new} depicts the new designed architecture.
   2.213 -
   2.214 -\begin{figure}
   2.215 -	\begin{center}
   2.216 -		\includegraphics[width=\textwidth]{img/masqmail-arch-new.eps}
   2.217 -	\end{center}
   2.218 -	\caption{A new designed architecture for \masqmail}
   2.219 -	\label{fig:masqmail-arch-new}
   2.220 -\end{figure}
   2.221 -
   2.222 -This architecture is heavily influenced by the ones of \qmail\ and \postfix. Both have different incoming channels that merge in the module that puts mail into the queue; central is the queue (or more of them); and one module takes mail from the queue and passes it to one of the outgoing channels. Mail processing, in any way, is build in in a more explicit way than done in the other two. It is more similar to the \NAME{AR} module of \name{sendmail X}, which is the central point for spam checking.
   2.223 -
   2.224 -Special regard was put on addable support for further mail transfer protocols. This appears to be most similar to \qmail, which was designed to handle multiple protocols.
   2.225 -%fixme: do i need all this ``quesses''??
   2.226 -
   2.227 -
   2.228 -\subsection{Modules and queues}
   2.229 -
   2.230 -The new architecture consists of several modules and two queues. They are defined in more detail now, and the jobs, identified above, are assigned to them. First the three main modules, then the queues, and afterwards the modules for incoming and outgoing transfer.
   2.231 -
   2.232 -
   2.233 -The \name{queue-in} module creates new spool files in the \name{incoming} queue for incoming messages. It is a process running in background, waiting for connections from one of the receiver modules. When one of them requests for a new spool file, the \name{queue-in} module opens one and returns a positive result. The receiver module then sends the envelope and message, which is written into the spool file by \name{queue-in}. If all went well, another positive result is returend.
   2.234 -%fixme: should be no daemon
   2.235 -
   2.236 -
   2.237 -The \name{scanning} module is the central part of the system. It takes spooled messages from the \name{incoming} queue, works on them, and writes them to the \name{outgoing} queue afterwards (the message is then removed from the \name{incoming} queue, of course). The main job is the processing done on the message. Headers are fixed and missing ones are added if necessary, aliasing is done, and external processing of any kind is triggered. The \name{scanning} module can run in background and look for new mail in regular intvals or signals may be sent to it by \name{queue-in}. Alternatively it can be called by \name{cron}, for example, to do single runs.
   2.238 -
   2.239 -
   2.240 -The \name{queue-out} module takes messages from the \name{outgoing} queue, queries information about the online connection, and then selects matching routes, creates envelopes for each recipient and passes the messages to the correct transport module. Successfully transfered messages are removed from the \name{outgoing} queue. This module includes some tasks specific to \masqmail.
   2.241 -
   2.242 -
   2.243 -The \name{incoming} queue stores messages received via one of the incoming channels. The messages are in unprocessed form; only envelope data is prepended.
   2.244 -
   2.245 -
   2.246 -The \name{outgoing} queue contains processed messages. The header and envelope information is complete and in valid form.
   2.247 -
   2.248 -\name{Receiver modules} are the communication interface between outside senders and the \name{queue-in} module. Each protocol needs a corresponding \name{receiver module} to be supported. Most popular are the \name{sendmail} module (which is a command to be called from the local host) and the \name{smtpd} module (which listens on port 25). Other modules to support other protocols may be added as needed.
   2.249 -
   2.250 -\name{Transport modules}, on the oppersite side of the system, are the modules to send outgoing mail; they are the interface between \name{queue-out} and remote hosts or local commands for further processing. The most popular ones are the \name{smtp} module (which acts as the \SMTP\ client) and the \name{pipe} module (to interface gateways to other systems or networks, like fax or uucp). A module for local delivery is not included, as it is in most other \MTA{}s; the reasons are described in FIXME.%fixme
   2.251 -Thus a \name{mail delivery agent} (like \name{procmail}) is to be used with the \name{pipe} module.
   2.252 -
   2.253 -
   2.254 -
   2.255 -\subsection{Inter-module communication}
   2.256 -
   2.257 -Communication between modules is required to exchange data and status information. It is also called ``Inter-process communication'' (short: \NAME{IPC}), as modules are programs being part of a larger system, and processes are generally seen as programs in execution.
   2.258 -
   2.259 -The connections between \name{queue-in} and \name{scanning}, aswell as between \name{scanning} and \name{queue-out} is provided by the queues, only sending signals to trigger instant runs may be useful. Communication between receiving and transport modules and the outside world are done using the specific protocol they do handle.
   2.260 -
   2.261 -Left is only communication between the receiver modules and \name{queue-in}, and between \name{queue-out} and the transport modules. Data is exchanged done using \unix\ pipes and a simple protocol is used.
   2.262 -
   2.263 -\begin{figure}
   2.264 -	\begin{center}
   2.265 -		\input{input/ipc-protocol.tex}
   2.266 -	\end{center}
   2.267 -	\caption{State diagram of the protocol used for \NAME{IPC}}
   2.268 -	\label{fig:ipc-protocol}
   2.269 -\end{figure}
   2.270 -
   2.271 -% timing
   2.272 -One dialog consists of the four phases: connection attempt, acceptance reply, data transfer, success reply. The order is always the same. The connection attempt and data transfer are sent by the client process; replies are sent by the server process.
   2.273 -%fixme: split between header and data
   2.274 -
   2.275 -% semantics
   2.276 -The connection attempt is simply opening the connection. This starts the dialog. A positive reply by the server leads to the data transfer, but a negative reply refuses the connection and resets both client and server to the state before the connection attempt. If the connection attempt was accepted, the client sends the data ending with a terminator sequence. When this terminator appears, the server process knows the complete data was transfered. The server process takes responsibility of the data in sending a positive success reply. A negative success reply resets both client and server to the state before the connection attempt.
   2.277 -
   2.278 -The data transfered needs to be of specific format. Used is the same format in which messages are spooled in the mail queues. See the following section for details. %fixme: check if it is the following section
   2.279 -%fixme: split between header and data
   2.280 -
   2.281 -% syntax
   2.282 -Data transfer is done sending plain text data. %fixme: utf8 ?
   2.283 -The terminator sequence used to indicate the end of the data transfer is a single dot on a line on its own. Line separators are the combination of \name{Carriage Return} and \name{Line Feed}, as it is used in various Internet protocols like \SMTP. Replys are one-digit numbers with \texttt{0} meaning success and any other number (\texttt{1}--\texttt{9}) indicate failure. %fixme: What are the octal values?
   2.284 -%fixme: split between header and data
   2.285 -
   2.286 -Figure \ref{fig:ipc-protocol} is a state diagram for the protocol.
   2.287 -
   2.288 -
   2.289 -
   2.290 -\subsection{Spool file format}
   2.291 -
   2.292 -The spool file format is basically the same as the one in current \masqmail: one file for the message body, the other for envelope and header information. The data file is stored in a separate data pool. It is written by \name{queue-in}, \name{scanning} can read it if necessary, \name{queue-out} reads it to generate the outgoing message, and deletes it after successful transfer. The header file (including the envelope) is written into the \name{incoming} queue. The \name{scanning} modules reads it, processes it, and writes a modified copy into the \name{outgoing} queue; the file in \name{incoming} is deleted then. \name{queue-out} finally takes the header file from \name{outgoing} to generate the resulting message. This data flow is shown in figure \ref{fig:queue-data-flow}.
   2.293 -
   2.294 -\begin{figure}
   2.295 -	\begin{center}
   2.296 -		\input{input/queue-data-flow.tex}
   2.297 -	\end{center}
   2.298 -	\caption{Data flow of messages in the queue}
   2.299 -	\label{fig:queue-data-flow}
   2.300 -\end{figure}
   2.301 -
   2.302 -The queue consists of three directories within the queue path. Two, named \name{incoming} and \name{outgoing}, for storing the header files; one, called \name{pool}, to store the message bodies. The files being part of one message share the same unique name. The header files internal structure can be the same as the one of current \masqmail.
   2.303 -
   2.304 -Messages in queues are a header file in \name{incoming} or \name{outgoing} and a data file in \name{pool}. The header file owner's executable bit indicates if the file is ready for further processing: the module that writes the file into the queue sets the bit as last action. Modules that read from the queue can process messages with the bit set.
   2.305 -
   2.306 -No spool files are modified after they are written to disk. Modifications to header files can be made by the \name{scanning} module in the ``move'' from \name{incoming} to \name{outgoing}---it is a create and remove, actually. Further rewriting can happen in \name{queue-out}, as well without altering the file.
   2.307 -
   2.308 -Data files do not change at all within the system. They are written in default local plain text format. Required translation is done in the receiver and transport modules.
   2.309 -
   2.310 -
   2.311 -\begin{tabular}[hbt]{ l l }
   2.312 -
   2.313 -\mbox{ queue-in:} & \mbox{
   2.314 -\begin{tabular}[hbt]{| c | c | c |}
   2.315 -	\hline
   2.316 - incoming & outgoing & pool \\
   2.317 -	\hline
   2.318 -	\hline
   2.319 - - & - & - \\
   2.320 -	\hline
   2.321 - 0600 & - & - \\
   2.322 -	\hline
   2.323 - 0600 & - & 0600 \\
   2.324 -	\hline
   2.325 - 0700 & - & 0600 \\
   2.326 -	\hline
   2.327 -\end{tabular}
   2.328 -} \\
   2.329 -
   2.330 -\quad & \\
   2.331 -
   2.332 -\mbox{scanning:} & \mbox{
   2.333 -\begin{tabular}[hbt]{| c | c | c |}
   2.334 -	\hline
   2.335 - incoming & outgoing & pool \\
   2.336 -	\hline
   2.337 -	\hline
   2.338 - 0700 & - & 0600 \\
   2.339 -	\hline
   2.340 - 0700 & 0600 & 0600 \\
   2.341 -	\hline
   2.342 - 0700 & 0700 & 0600 \\
   2.343 -	\hline
   2.344 - - & 0700 & 0600 \\
   2.345 -	\hline
   2.346 -\end{tabular}
   2.347 -} \\
   2.348 -
   2.349 -\quad & \\
   2.350 -
   2.351 -\mbox{queue-out:} & \mbox{
   2.352 -\begin{tabular}[hbt]{| c | c | c |}
   2.353 -	\hline
   2.354 - incoming & outgoing & pool \\
   2.355 -	\hline
   2.356 -	\hline
   2.357 - - & 0700 & 0600 \\
   2.358 -	\hline
   2.359 - - & 0700 & - \\
   2.360 -	\hline
   2.361 - - & - & - \\
   2.362 -	\hline
   2.363 -\end{tabular}
   2.364 -} \\
   2.365 -
   2.366 -\end{tabular}
   2.367 -
   2.368 -A sample header file.
   2.369 -\begin{verbatim}
   2.370 -1LGtYh-0ut-00                (backup copy of the file name)
   2.371 -MF:<meillo@dream>            (envelope: sender)
   2.372 -RT: <user@example.org>       (envelope: recipient)
   2.373 -PR:local                     (meta info: protocol)
   2.374 -ID:meillo                    (meta info: id/user/ip)
   2.375 -DS: 18                       (meta info: size)
   2.376 -TR: 1230462707               (meta info: timestamp)
   2.377 -                             (following: headers)
   2.378 -HD:Received: from meillo by dream with local (masqmail 0.2.21) id
   2.379 - 1LGtYh-0ut-00 for <user@example.org>; Sun, 28 Dec 2008 12:11:47 +0100
   2.380 -HD:To: user@example.org
   2.381 -HD:Subject: test mail
   2.382 -HD:From: <meillo@dream>
   2.383 -HD:Date: Sun, 28 Dec 2008 12:11:47 +0100
   2.384 -HD:Message-ID: <1LGtYh-0ut-00@dream>
   2.385 -\end{verbatim}
   2.386 -
   2.387 -
   2.388 -
   2.389 -
   2.390 -\subsection{Rights and permission}
   2.391 -
   2.392 -The user set required for \qmail\ seems to be too complex. One special user, like \postfix\ uses, is more appropriate. \name{root} privilege and \name{setuid} permission is avoided as much as possible.
   2.393 -
   2.394 -Table \ref{tab:new-masqmail-permissions} shows the suggested ownership and permissions of the modules. Figure \ref{fig:new-masqmail-queue} shows the permissions and ownership used for the queue.
   2.395 -
   2.396 -\begin{table}
   2.397 -	\begin{center}
   2.398 -		\input{input/new-masqmail-permissions.tex}
   2.399 -	\end{center}
   2.400 -	\caption{Ownership and permissions of the modules}
   2.401 -	\label{tab:new-masqmail-permission}
   2.402 -\end{table}
   2.403 -
   2.404 -\begin{figure}
   2.405 -	\begin{center}
   2.406 -		\input{input/new-masqmail-queue.tex}
   2.407 -	\end{center}
   2.408 -	\caption{Ownership and permissions of the queue}
   2.409 -	\label{fig:new-masqmail-queue}
   2.410 -\end{figure}
   2.411 -
   2.412 -
   2.413 -
   2.414 -
   2.415 -
   2.416 -setuid/setgid or not?
   2.417 -
   2.418 -what can crash if an attacker succeeds?
   2.419 -
   2.420 -where to drop privelege?
   2.421 -
   2.422 -how is which process invoked?
   2.423 -
   2.424 -master process? needed, or wanted?
   2.425 -
   2.426 -which are the daemon processes?
   2.427 -
   2.428 -
   2.429 -
   2.430 -
   2.431 -
   2.432 -
   2.433 -
   2.434 -http://fanf.livejournal.com/50917.html %how not to design an mta - the sendmail command
   2.435 -http://fanf.livejournal.com/51349.html %how not to design an mta - partitioning for security
   2.436 -http://fanf.livejournal.com/61132.html %how not to design an mta - local delivery
   2.437 -http://fanf.livejournal.com/64941.html %how not to design an mta - spool file format
   2.438 -http://fanf.livejournal.com/65203.html %how not to design an mta - spool file logistics
   2.439 -http://fanf.livejournal.com/65911.html %how not to design an mta -   more about log-structured MTA queues
   2.440 -http://fanf.livejournal.com/67297.html %how not to design an mta -   more log-structured MTA queues
   2.441 -http://fanf.livejournal.com/70432.html %how not to design an mta - address verification
   2.442 -http://fanf.livejournal.com/72258.html %how not to design an mta - content scanning
   2.443 -
   2.444 -
   2.445 -
     3.1 --- a/thesis/thesis.tex	Sun Jan 11 20:21:35 2009 +0100
     3.2 +++ b/thesis/thesis.tex	Sun Jan 11 20:26:08 2009 +0100
     3.3 @@ -34,7 +34,6 @@
     3.4  \include{tex/3-MailTransferAgents}
     3.5  \include{tex/4-MasqmailsFuture}
     3.6  \include{tex/5-Improvements}
     3.7 -\include{tex/6-NewDesign}
     3.8  \include{tex/7-Summary}
     3.9  
    3.10  \cleardoublepage