6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 * This contains the functions necessary to detect and decode MIME
15 require_once('../functions/imap.php');
16 require_once('../functions/attachment_common.php');
18 /* --------------------------------------------------------------------------------- */
20 /* --------------------------------------------------------------------------------- */
22 /* This function gets the structure of a message and stores it in the "message" class.
23 * It will return this object for use with all relevant header information and
24 * fully parsed into the standard "message" object format.
27 function mime_structure ($bodystructure, $flags=array()) {
29 // isolate the body structure and remove beginning and end parenthesis
30 $read = trim(substr ($bodystructure, strpos(strtolower($bodystructure), 'bodystructure') +
13));
31 $msg = &new message();
32 $read = trim(substr ($read, 0, -1));
33 $res = $msg->parseStructure($read);
37 foreach ($flags as $flag) {
38 $char = strtoupper($flag{1});
41 if (strtolower($flag) == '\\seen') {
46 if (strtolower($flag) == '\\answered') {
47 $msg->is_answered
= true;
51 if (strtolower($flag) == '\\deleted') {
52 $msg->is_deleted
= true;
56 if (strtolower($flag) == '\\flagged') {
57 $msg->is_flagged
= true;
61 if (strtolower($flag) == '$mdnsent') {
62 $msg->is_mdnsent
= true;
70 // listEntities($msg);
74 /* this starts the parsing of a particular structure. It is called recursively,
75 * so it can be passed different structures. It returns an object of type
77 * First, it checks to see if it is a multipart message. If it is, then it
78 * handles that as it sees is necessary. If it is just a regular entity,
79 * then it parses it and adds the necessary header information (by calling out
80 * to mime_get_elements()
83 function mime_fetch_body($imap_stream, $id, $ent_id) {
86 * do a bit of error correction. If we couldn't find the entity id, just guess
87 * that it is the first one. That is usually the case anyway.
92 $cmd = "FETCH $id BODY[$ent_id]";
94 $data = sqimap_run_command ($imap_stream, $cmd, true, $response, $message, $uid_support);
96 $topline = trim(array_shift( $data ));
97 } while( $topline && $topline[0] == '*' && !preg_match( '/\* [0-9]+ FETCH.*/i', $topline )) ;
99 $wholemessage = implode('', $data);
100 if (ereg('\\{([^\\}]*)\\}', $topline, $regs)) {
102 $ret = substr( $wholemessage, 0, $regs[1] );
104 There is some information in the content info header that could be important
105 in order to parse html messages. Let's get them here.
107 if ( $ret{0} == '<' ) {
108 $data = sqimap_run_command ($imap_stream, "FETCH $id BODY[$ent_id.MIME]", true, $response, $message, $uid_support);
110 } else if (ereg('"([^"]*)"', $topline, $regs)) {
113 global $where, $what, $mailbox, $passed_id, $startMessage;
114 $par = 'mailbox=' . urlencode($mailbox) . "&passed_id=$passed_id";
115 if (isset($where) && isset($what)) {
116 $par .= '&where='. urlencode($where) . "&what=" . urlencode($what);
118 $par .= "&startMessage=$startMessage&show_more=0";
120 $par .= '&response=' . urlencode($response) .
121 '&message=' . urlencode($message).
122 '&topline=' . urlencode($topline);
125 '<table width="80%"><tr>' .
126 '<tr><td colspan=2>' .
127 _("Body retrieval error. The reason for this is most probably that the message is malformed. Please help us making future versions better by submitting this message to the developers knowledgebase!") .
128 " <A HREF=\"../src/retrievalerror.php?$par\"><br>" .
129 _("Submit message") . '</A><BR> ' .
131 '<td><b>' . _("Command:") . "</td><td>$cmd</td></tr>" .
132 '<td><b>' . _("Response:") . "</td><td>$response</td></tr>" .
133 '<td><b>' . _("Message:") . "</td><td>$message</td></tr>" .
134 '<td><b>' . _("FETCH line:") . "</td><td>$topline</td></tr>" .
135 "</table><BR></tt></font><hr>";
137 $data = sqimap_run_command ($imap_stream, "FETCH $passed_id BODY[]", true, $response, $message, $uid_support);
139 $wholemessage = implode('', $data);
141 $ret = $wholemessage;
146 function mime_print_body_lines ($imap_stream, $id, $ent_id, $encoding) {
148 // do a bit of error correction. If we couldn't find the entity id, just guess
149 // that it is the first one. That is usually the case anyway.
153 $sid = sqimap_session_id($uid_support);
154 // Don't kill the connection if the browser is over a dialup
155 // and it would take over 30 seconds to download it.
157 // don“t call set_time_limit in safe mode.
158 if (!ini_get("safe_mode")) {
162 $sid_s = substr($sid,0,strpos($sid, ' '));
167 $body = mime_fetch_body ($imap_stream, $id, $ent_id);
168 echo decodeBody($body, $encoding);
171 fputs ($imap_stream, "$sid FETCH $id BODY[$ent_id]\r\n");
174 $read = fgets ($imap_stream,8192);
177 // This could be bad -- if the section has sqimap_session_id() . ' OK'
178 // or similar, it will kill the download.
179 while (!ereg("^".$sid_s." (OK|BAD|NO)(.*)$", $read, $regs)) {
180 if (trim($read) == ')==') {
182 $read = fgets ($imap_stream,4096);
183 if (ereg("^".$sid." (OK|BAD|NO)(.*)$", $read, $regs)) {
186 echo decodeBody($read1, $encoding) .
187 decodeBody($read, $encoding);
190 echo decodeBody($read, $encoding);
192 $read = fgets ($imap_stream,4096);
199 /* -[ END MIME DECODING ]----------------------------------------------------------- */
202 * Checks to see if $message contains content of type $type0/$type1
203 * returns the first entity number it finds of that type, or NULL if
204 * none is found. Takes optional argument $start to allow the caller
205 * to continue where they left off
207 function findDisplayEntity($message, $type0, $type1, $start=0) {
209 for ($i = $start;isset($message->entities
[$i]); $i++
) {
210 $entity = $message->entities
[$i];
211 if ($entity->type0
== $type0 && $entity->type1
== $type1) {
219 // This is here for debugging purposese. It will print out a list
220 // of all the entity IDs that are in the $message object.
222 function listEntities ($message) {
224 echo "<tt>" . $message->entity_id
. ' : ' . $message->type0
. '/' . $message->type1
. ' parent = '. $message->parent
->entity_id
. '<br>';
225 for ($i = 0;isset($message->entities
[$i]); $i++
) {
227 $msg = listEntities($message->entities
[$i]);
237 function getPriorityStr($priority) {
238 $priority_level = substr($priority,0,1);
240 switch($priority_level) {
241 /* check for a higher then normal priority. */
244 $priority_string = _("High");
247 /* check for a lower then normal priority. */
250 $priority_string = _("Low");
253 /* check for a normal priority. */
256 $priority_level = '3';
257 $priority_string = _("Normal");
261 return $priority_string;
264 /* returns a $message object for a particular entity id */
265 function getEntity ($message, $ent_id) {
266 return $message->getEntity($ent_id);
271 * Extracted from strings.php 23/03/2002
274 function translateText(&$body, $wrap_at, $charset) {
275 global $where, $what; /* from searching */
276 global $color; /* color theme */
278 require_once('../functions/url_parser.php');
280 $body_ary = explode("\n", $body);
282 for ($i=0; $i < count($body_ary); $i++
) {
283 $line = $body_ary[$i];
284 if (strlen($line) - 2 >= $wrap_at) {
285 sqWordWrap($line, $wrap_at);
287 $line = charset_decode($charset, $line);
288 $line = str_replace("\t", ' ', $line);
294 $j = strlen( $line );
296 while ( $pos < $j ) {
297 if ($line[$pos] == ' ') {
299 } else if (strpos($line, '>', $pos) === $pos) {
308 if (! isset($color[14])) {
309 $color[14] = '#FF0000';
311 $line = '<FONT COLOR="' . $color[14] . '">' . $line . '</FONT>';
313 if (! isset($color[13])) {
314 $color[13] = '#800000';
316 $line = '<FONT COLOR="' . $color[13] . '">' . $line . '</FONT>';
319 $body_ary[$i] = $line;
321 $body = '<pre>' . implode("\n", $body_ary) . '</pre>';
325 /* This returns a parsed string called $body. That string can then
326 be displayed as the actual message in the HTML. It contains
327 everything needed, including HTML Tags, Attachments at the
330 function formatBody($imap_stream, $message, $color, $wrap_at, $ent_num, $id, $mailbox='INBOX') {
331 // this if statement checks for the entity to show as the
332 // primary message. To add more of them, just put them in the
333 // order that is their priority.
334 global $startMessage, $username, $key, $imapServerAddress, $imapPort,
335 $show_html_default, $has_unsafe_images, $view_unsafe_images, $sort;
337 $has_unsafe_images= 0;
339 $urlmailbox = urlencode($mailbox);
340 $body_message = getEntity($message, $ent_num);
341 if (($body_message->header
->type0
== 'text') ||
342 ($body_message->header
->type0
== 'rfc822')) {
343 $body = mime_fetch_body ($imap_stream, $id, $ent_num);
344 $body = decodeBody($body, $body_message->header
->encoding
);
345 $hookResults = do_hook("message_body", $body);
346 $body = $hookResults[1];
348 // If there are other types that shouldn't be formatted, add
350 if ($body_message->header
->type1
== 'html') {
351 if ( $show_html_default <> 1 ) {
352 $entity_conv = array(' ' => ' ',
355 $body = strip_tags( $body );
356 $body = strtr($body, $entity_conv);
358 translateText($body, $wrap_at,
359 $body_message->header
->getParameter
['charset']);
361 $body = magicHTML( $body, $id, $message, $mailbox );
364 translateText($body, $wrap_at,
365 $body_message->header
->getParameter('charset'));
368 if ($has_unsafe_images) {
369 if ($view_unsafe_images) {
370 $body .= "<CENTER><SMALL><A HREF=\"read_body.php?passed_id=$id&passed_ent_id=".$message->entity_id
."&mailbox=$urlmailbox&sort=$sort&startMessage=$startMessage&show_more=0\">". _("Hide Unsafe Images") ."</A></SMALL></CENTER><BR>\n";
372 $body .= "<CENTER><SMALL><A HREF=\"read_body.php?passed_id=$id&passed_ent_id=".$message->entity_id
."&mailbox=$urlmailbox&sort=$sort&startMessage=$startMessage&show_more=0&view_unsafe_images=1\">". _("View Unsafe Images") ."</A></SMALL></CENTER><BR>\n";
380 function formatAttachments($message, $exclude_id, $mailbox, $id) {
381 global $where, $what;
382 global $startMessage, $color;
383 static $ShownHTML = 0;
385 $att_ar = $message->getAttachments($exclude_id);
387 if (!count($att_ar)) return '';
391 $urlMailbox = urlencode($mailbox);
393 foreach ($att_ar as $att) {
394 $ent = urldecode($att->entity_id
);
395 $header = $att->header
;
396 $type0 = strtolower($header->type0
);
397 $type1 = strtolower($header->type1
);
399 $Links['download link']['text'] = _("download");
400 $Links['download link']['href'] =
401 "../src/download.php?absolute_dl=true&passed_id=$id&mailbox=$urlMailbox&ent_id=$ent";
403 if ($type0 =='message' && $type1 == 'rfc822') {
404 $default_page = '../src/read_body.php';
405 $rfc822_header = $att->rfc822_header
;
406 $filename = decodeHeader($rfc822_header->subject
);
408 $from_o = $rfc822_header->from
;
409 if (is_object($from_o)) {
410 $from_name = $from_o->getAddress(false);
412 $from_name = _("Unknown sender");
414 $from_name = decodeHeader(htmlspecialchars($from_name));
415 $description = $from_name;
417 $default_page = '../src/download.php';
418 if (is_object($header->disposition
)) {
419 $filename = decodeHeader($header->disposition
->getProperty('filename'));
420 if (trim($filename) == '') {
421 $name = decodeHeader($header->disposition
->getProperty('name'));
422 if (trim($name) == '') {
423 if ( trim( $header->id
) == '' )
424 $filename = 'untitled-[' . $ent . ']' ;
426 $filename = 'cid: ' . $header->id
;
432 if ( trim( $header->id
) == '' )
433 $filename = 'untitled-[' . $ent . ']' ;
435 $filename = 'cid: ' . $header->id
;
438 if ($header->description
) {
439 $description = htmlspecialchars($header->description
);
445 $display_filename = $filename;
446 if (isset($passed_ent_id)) {
447 $passed_ent_id_link = '&passed_ent_id='.$passed_ent_id;
449 $passed_ent_id_link = '';
451 $DefaultLink = $default_page . "?startMessage=$startMessage"
452 . "&passed_id=$id&mailbox=$urlMailbox"
453 . '&ent_id='.$ent.$passed_ent_id_link;
454 if ($where && $what) {
455 $DefaultLink = '&where='. urlencode($where).'&what='.urlencode($what);
457 /* this executes the attachment hook with a specific MIME-type.
458 * if that doens't have results, it tries if there's a rule
459 * for a more generic type. */
460 $HookResults = do_hook("attachment $type0/$type1", $Links,
461 $startMessage, $id, $urlMailbox, $ent, $DefaultLink,
462 $display_filename, $where, $what);
463 if(count($HookResults[1]) <= 1) {
464 $HookResults = do_hook("attachment $type0/*", $Links,
465 $startMessage, $id, $urlMailbox, $ent, $DefaultLink,
466 $display_filename, $where, $what);
469 $Links = $HookResults[1];
470 $DefaultLink = $HookResults[6];
472 $attachments .= '<TR><TD>' .
473 "<A HREF=\"$DefaultLink\">$display_filename</A> </TD>" .
474 '<TD><SMALL><b>' . show_readable_size($header->size
) .
475 '</b> </small></TD>' .
476 "<TD><SMALL>[ $type0/$type1 ] </SMALL></TD>" .
478 $attachments .= '<b>' . $description . '</b>';
479 $attachments .= '</SMALL></TD><TD><SMALL> ';
482 foreach ($Links as $Val) {
486 $attachments .= ' | ';
488 $attachments .= '<a href="' . $Val['href'] . '">' . $Val['text'] . '</a>';
491 $attachments .= "</TD></TR>\n";
496 /** this function decodes the body depending on the encoding type. **/
497 function decodeBody($body, $encoding) {
498 global $languages, $squirrelmail_language;
500 $body = str_replace("\r\n", "\n", $body);
501 $encoding = strtolower($encoding);
503 global $show_html_default;
505 if ($encoding == 'quoted-printable' ||
506 $encoding == 'quoted_printable') {
507 $body = quoted_printable_decode($body);
509 while (ereg("=\n", $body))
510 $body = ereg_replace ("=\n", "", $body);
512 } else if ($encoding == 'base64') {
513 $body = base64_decode($body);
516 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
517 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
518 $body = $languages[$squirrelmail_language]['XTRA_CODE']('decode', $body);
521 // All other encodings are returned raw.
526 * This functions decode strings that is encoded according to
527 * RFC1522 (MIME Part Two: Message Header Extensions for Non-ASCII Text).
528 * Patched by Christian Schmidt <christian@ostenfeld.dk> 23/03/2002
530 function decodeHeader ($string, $utfencode=true) {
531 global $languages, $squirrelmail_language;
532 if (is_array($string)) {
533 $string = implode("\n", $string);
536 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
537 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
538 $string = $languages[$squirrelmail_language]['XTRA_CODE']('decodeheader', $string);
542 while (preg_match('/^(.{' . $i . '})(.*)=\?([^?]*)\?(Q|B)\?([^?]*)\?=/Ui',
545 // Ignore white-space between consecutive encoded-words
546 if (strspn($res[2], " \t") != strlen($res[2])) {
550 if (ucfirst($res[4]) == 'B') {
551 $replace = base64_decode($res[5]);
553 $replace = str_replace('_', ' ', $res[5]);
554 $replace = preg_replace('/=([0-9a-f]{2})/ie', 'chr(hexdec("\1"))',
556 /* Only encode into entities by default. Some places
557 don't need the encoding, like the compose form. */
559 $replace = charset_decode($res[3], $replace);
562 $string = $prefix . $replace . substr($string, strlen($res[0]));
563 $i = strlen($prefix) +
strlen($replace);
569 * Encode a string according to RFC 1522 for use in headers if it
570 * contains 8-bit characters or anything that looks like it should
573 function encodeHeader ($string) {
574 global $default_charset, $languages, $squirrelmail_language;
576 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
577 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
578 return $languages[$squirrelmail_language]['XTRA_CODE']('encodeheader', $string);
581 // Encode only if the string contains 8-bit characters or =?
582 $j = strlen( $string );
583 $l = strstr($string, '=?'); // Must be encoded ?
585 for( $i=0; $i < $j; ++
$i) {
586 switch( $string{$i} ) {
600 $k = ord( $string{$i} );
602 $ret .= sprintf("=%02X", $k);
610 $string = "=?$default_charset?Q?$ret?=";
616 /* This function trys to locate the entity_id of a specific mime element */
618 function find_ent_id( $id, $message ) {
620 for ($i=0; $ret == '' && $i < count($message->entities
); $i++
) {
621 if ( $message->entities
[$i]->header
->type0
== 'multipart') {
622 $ret = find_ent_id( $id, $message->entities
[$i] );
624 if ( strcasecmp( $message->entities
[$i]->header
->id
, $id ) == 0 )
625 $ret = $message->entities
[$i]->entity_id
;
632 ** HTMLFILTER ROUTINES
636 * This function returns the final tag out of the tag name, an array
637 * of attributes, and the type of the tag. This function is called by
638 * sq_sanitize internally.
640 * @param $tagname the name of the tag.
641 * @param $attary the array of attributes and their values
642 * @param $tagtype The type of the tag (see in comments).
643 * @return a string with the final tag representation.
645 function sq_tagprint($tagname, $attary, $tagtype){
648 $fulltag = '</' . $tagname . '>';
650 $fulltag = '<' . $tagname;
651 if (is_array($attary) && sizeof($attary)){
653 while (list($attname, $attvalue) = each($attary)){
654 array_push($atts, "$attname=$attvalue");
656 $fulltag .= ' ' . join(" ", $atts);
667 * A small helper function to use with array_walk. Modifies a by-ref
668 * value and makes it lowercase.
670 * @param $val a value passed by-ref.
671 * @return void since it modifies a by-ref value.
673 function sq_casenormalize(&$val){
674 $val = strtolower($val);
678 * This function skips any whitespace from the current position within
679 * a string and to the next non-whitespace value.
681 * @param $body the string
682 * @param $offset the offset within the string where we should start
683 * looking for the next non-whitespace character.
684 * @return the location within the $body where the next
685 * non-whitespace char is located.
687 function sq_skipspace($body, $offset){
688 $me = "sq_skipspace";
689 preg_match("/^(\s*)/s", substr($body, $offset), $matches);
690 if (sizeof($matches{1})){
691 $count = strlen($matches{1});
698 * This function looks for the next character within a string. It's
699 * really just a glorified "strpos", except it catches if failures
702 * @param $body The string to look for needle in.
703 * @param $offset Start looking from this position.
704 * @param $needle The character/string to look for.
705 * @return location of the next occurance of the needle, or
706 * strlen($body) if needle wasn't found.
708 function sq_findnxstr($body, $offset, $needle){
709 $me = "sq_findnxstr";
710 $pos = strpos($body, $needle, $offset);
712 $pos = strlen($body);
718 * This function takes a PCRE-style regexp and tries to match it
721 * @param $body The string to look for needle in.
722 * @param $offset Start looking from here.
723 * @param $reg A PCRE-style regex to match.
724 * @return Returns a false if no matches found, or an array
725 * with the following members:
726 * - integer with the location of the match within $body
727 * - string with whatever content between offset and the match
728 * - string with whatever it is we matched
730 function sq_findnxreg($body, $offset, $reg){
731 $me = "sq_findnxreg";
734 preg_match("%^(.*?)($reg)%s", substr($body, $offset), $matches);
738 $retarr{0} = $offset +
strlen($matches{1});
739 $retarr{1} = $matches{1};
740 $retarr{2} = $matches{2};
746 * This function looks for the next tag.
748 * @param $body String where to look for the next tag.
749 * @param $offset Start looking from here.
750 * @return false if no more tags exist in the body, or
751 * an array with the following members:
752 * - string with the name of the tag
753 * - array with attributes and their values
754 * - integer with tag type (1, 2, or 3)
755 * - integer where the tag starts (starting "<")
756 * - integer where the tag ends (ending ">")
757 * first three members will be false, if the tag is invalid.
759 function sq_getnxtag($body, $offset){
761 if ($offset > strlen($body)){
764 $lt = sq_findnxstr($body, $offset, "<");
765 if ($lt == strlen($body)){
770 * blah blah <tag attribute="value">
773 $pos = sq_skipspace($body, $lt+
1);
774 if ($pos >= strlen($body)){
775 return Array(false, false, false, $lt, strlen($body));
778 * There are 3 kinds of tags:
779 * 1. Opening tag, e.g.:
781 * 2. Closing tag, e.g.:
783 * 3. XHTML-style content-less tag, e.g.:
787 switch (substr($body, $pos, 1)){
794 * A comment or an SGML declaration.
796 if (substr($body, $pos+
1, 2) == "--"){
797 $gt = strpos($body, "-->", $pos);
803 return Array(false, false, false, $lt, $gt);
805 $gt = sq_findnxstr($body, $pos, ">");
806 return Array(false, false, false, $lt, $gt);
811 * Assume tagtype 1 for now. If it's type 3, we'll switch values
821 * Look for next [\W-_], which will indicate the end of the tag name.
823 $regary = sq_findnxreg($body, $pos, "[^\w\-_]");
824 if ($regary == false){
825 return Array(false, false, false, $lt, strlen($body));
827 list($pos, $tagname, $match) = $regary;
828 $tagname = strtolower($tagname);
831 * $match can be either of these:
832 * '>' indicating the end of the tag entirely.
833 * '\s' indicating the end of the tag name.
834 * '/' indicating that this is type-3 xhtml tag.
836 * Whatever else we find there indicates an invalid tag.
841 * This is an xhtml-style tag with a closing / at the
842 * end, like so: <img src="blah"/>. Check if it's followed
843 * by the closing bracket. If not, then this tag is invalid
845 if (substr($body, $pos, 2) == "/>"){
849 $gt = sq_findnxstr($body, $pos, ">");
850 $retary = Array(false, false, false, $lt, $gt);
854 return Array($tagname, false, $tagtype, $lt, $pos);
858 * Check if it's whitespace
860 if (preg_match("/\s/", $match)){
863 * This is an invalid tag! Look for the next closing ">".
865 $gt = sq_findnxstr($body, $offset, ">");
866 return Array(false, false, false, $lt, $gt);
871 * At this point we're here:
872 * <tagname attribute='blah'>
875 * At this point we loop in order to find all attributes.
881 while ($pos <= strlen($body)){
882 $pos = sq_skipspace($body, $pos);
883 if ($pos == strlen($body)){
887 return Array(false, false, false, $lt, $pos);
890 * See if we arrived at a ">" or "/>", which means that we reached
891 * the end of the tag.
894 if (preg_match("%^(\s*)(>|/>)%s", substr($body, $pos), $matches)) {
898 $pos +
= strlen($matches{1});
899 if ($matches{2} == "/>"){
903 return Array($tagname, $attary, $tagtype, $lt, $pos);
907 * There are several types of attributes, with optional
908 * [:space:] between members.
910 * attrname[:space:]=[:space:]'CDATA'
912 * attrname[:space:]=[:space:]"CDATA"
914 * attr[:space:]=[:space:]CDATA
918 * We leave types 1 and 2 the same, type 3 we check for
919 * '"' and convert to """ if needed, then wrap in
920 * double quotes. Type 4 we convert into:
923 $regary = sq_findnxreg($body, $pos, "[^\w\-_]");
924 if ($regary == false){
926 * Looks like body ended before the end of tag.
928 return Array(false, false, false, $lt, strlen($body));
930 list($pos, $attname, $match) = $regary;
931 $attname = strtolower($attname);
933 * We arrived at the end of attribute name. Several things possible
935 * '>' means the end of the tag and this is attribute type 4
936 * '/' if followed by '>' means the same thing as above
937 * '\s' means a lot of things -- look what it's followed by.
938 * anything else means the attribute is invalid.
943 * This is an xhtml-style tag with a closing / at the
944 * end, like so: <img src="blah"/>. Check if it's followed
945 * by the closing bracket. If not, then this tag is invalid
947 if (substr($body, $pos, 2) == "/>"){
951 $gt = sq_findnxstr($body, $pos, ">");
952 $retary = Array(false, false, false, $lt, $gt);
956 $attary{$attname} = '"yes"';
957 return Array($tagname, $attary, $tagtype, $lt, $pos);
961 * Skip whitespace and see what we arrive at.
963 $pos = sq_skipspace($body, $pos);
964 $char = substr($body, $pos, 1);
966 * Two things are valid here:
967 * '=' means this is attribute type 1 2 or 3.
968 * \w means this was attribute type 4.
969 * anything else we ignore and re-loop. End of tag and
970 * invalid stuff will be caught by our checks at the beginning
975 $pos = sq_skipspace($body, $pos);
977 * Here are 3 possibilities:
978 * "'" attribute type 1
979 * '"' attribute type 2
980 * everything else is the content of tag type 3
982 $quot = substr($body, $pos, 1);
984 $regary = sq_findnxreg($body, $pos+
1, "\'");
985 if ($regary == false){
986 return Array(false, false, false, $lt, strlen($body));
988 list($pos, $attval, $match) = $regary;
990 $attary{$attname} = "'" . $attval . "'";
991 } else if ($quot == '"'){
992 $regary = sq_findnxreg($body, $pos+
1, '\"');
993 if ($regary == false){
994 return Array(false, false, false, $lt, strlen($body));
996 list($pos, $attval, $match) = $regary;
998 $attary{$attname} = '"' . $attval . '"';
1001 * These are hateful. Look for \s, or >.
1003 $regary = sq_findnxreg($body, $pos, "[\s>]");
1004 if ($regary == false){
1005 return Array(false, false, false, $lt, strlen($body));
1007 list($pos, $attval, $match) = $regary;
1009 * If it's ">" it will be caught at the top.
1011 $attval = preg_replace("/\"/s", """, $attval);
1012 $attary{$attname} = '"' . $attval . '"';
1014 } else if (preg_match("|[\w/>]|", $char)) {
1016 * That was attribute type 4.
1018 $attary{$attname} = '"yes"';
1021 * An illegal character. Find next '>' and return.
1023 $gt = sq_findnxstr($body, $pos, ">");
1024 return Array(false, false, false, $lt, $gt);
1029 * The fact that we got here indicates that the tag end was never
1030 * found. Return invalid tag indication so it gets stripped.
1032 return Array(false, false, false, $lt, strlen($body));
1036 * This function checks attribute values for entity-encoded values
1037 * and returns them translated into 8-bit strings so we can run
1040 * @param $attvalue A string to run entity check against.
1041 * @return Translated value.
1043 function sq_deent($attvalue){
1046 * See if we have to run the checks first. All entities must start
1049 if (strpos($attvalue, "&") === false){
1053 * Check named entities first.
1055 $trans = get_html_translation_table(HTML_ENTITIES
);
1057 * Leave " in, as it can mess us up.
1059 $trans = array_flip($trans);
1060 unset($trans{"""});
1061 while (list($ent, $val) = each($trans)){
1062 $attvalue = preg_replace("/$ent*(\W)/si", "$val\\1", $attvalue);
1065 * Now translate numbered entities from 1 to 255 if needed.
1067 if (strpos($attvalue, "#") !== false){
1068 $omit = Array(34, 39);
1069 for ($asc=1; $asc<256; $asc++
){
1070 if (!in_array($asc, $omit)){
1072 $attvalue = preg_replace("/\�*$asc;*(\D)/si", "$chr\\1",
1074 $attvalue = preg_replace("/\�*".dechex($asc).";*(\W)/si",
1075 "$chr\\1", $attvalue);
1083 * This function runs various checks against the attributes.
1085 * @param $tagname String with the name of the tag.
1086 * @param $attary Array with all tag attributes.
1087 * @param $rm_attnames See description for sq_sanitize
1088 * @param $bad_attvals See description for sq_sanitize
1089 * @param $add_attr_to_tag See description for sq_sanitize
1090 * @param $message message object
1091 * @param $id message id
1092 * @return Array with modified attributes.
1094 function sq_fixatts($tagname,
1104 while (list($attname, $attvalue) = each($attary)){
1106 * See if this attribute should be removed.
1108 foreach ($rm_attnames as $matchtag=>$matchattrs){
1109 if (preg_match($matchtag, $tagname)){
1110 foreach ($matchattrs as $matchattr){
1111 if (preg_match($matchattr, $attname)){
1112 unset($attary{$attname});
1119 * Remove any entities.
1121 $attvalue = sq_deent($attvalue);
1124 * Now let's run checks on the attvalues.
1125 * I don't expect anyone to comprehend this. If you do,
1126 * get in touch with me so I can drive to where you live and
1127 * shake your hand personally. :)
1129 foreach ($bad_attvals as $matchtag=>$matchattrs){
1130 if (preg_match($matchtag, $tagname)){
1131 foreach ($matchattrs as $matchattr=>$valary){
1132 if (preg_match($matchattr, $attname)){
1134 * There are two arrays in valary.
1136 * Second one is replacements
1138 list($valmatch, $valrepl) = $valary;
1140 preg_replace($valmatch, $valrepl, $attvalue);
1141 if ($newvalue != $attvalue){
1142 $attary{$attname} = $newvalue;
1149 * Turn cid: urls into http-friendly ones.
1151 if (preg_match("/^[\'\"]\s*cid:/si", $attvalue)){
1152 $attary{$attname} = sq_cid2http($message, $id, $attvalue, $mailbox);
1156 * See if we need to append any attributes to this tag.
1158 foreach ($add_attr_to_tag as $matchtag=>$addattary){
1159 if (preg_match($matchtag, $tagname)){
1160 $attary = array_merge($attary, $addattary);
1167 * This function edits the style definition to make them friendly and
1168 * usable in squirrelmail.
1170 * @param $message the message object
1171 * @param $id the message id
1172 * @param $content a string with whatever is between <style> and </style>
1173 * @return a string with edited content.
1175 function sq_fixstyle($message, $id, $content){
1176 global $view_unsafe_images;
1177 $me = "sq_fixstyle";
1179 * First look for general BODY style declaration, which would be
1181 * body {background: blah-blah}
1182 * and change it to .bodyclass so we can just assign it to a <div>
1184 $content = preg_replace("|body(\s*\{.*?\})|si", ".bodyclass\\1", $content);
1185 $secremoveimg = "../images/" . _("sec_remove_eng.png");
1187 * Fix url('blah') declarations.
1189 $content = preg_replace("|url\(([\'\"])\s*\S+script\s*:.*?([\'\"])\)|si",
1190 "url(\\1$secremoveimg\\2)", $content);
1192 * Fix url('https*://.*) declarations but only if $view_unsafe_images
1195 if (!$view_unsafe_images){
1196 $content = preg_replace("|url\(([\'\"])\s*https*:.*?([\'\"])\)|si",
1197 "url(\\1$secremoveimg\\2)", $content);
1201 * Fix urls that refer to cid:
1203 while (preg_match("|url\(([\'\"]\s*cid:.*?[\'\"])\)|si", $content,
1205 $cidurl = $matches{1};
1206 $httpurl = sq_cid2http($message, $id, $cidurl);
1207 $content = preg_replace("|url\($cidurl\)|si",
1208 "url($httpurl)", $content);
1212 * Fix stupid css declarations which lead to vulnerabilities
1215 $match = Array('/expression/si',
1218 $replace = Array('idiocy', 'idiocy', 'idiocy');
1219 $content = preg_replace($match, $replace, $content);
1224 * This function converts cid: url's into the ones that can be viewed in
1227 * @param $message the message object
1228 * @param $id the message id
1229 * @param $cidurl the cid: url.
1230 * @return a string with a http-friendly url
1232 function sq_cid2http($message, $id, $cidurl, $mailbox){
1234 * Get rid of quotes.
1236 $quotchar = substr($cidurl, 0, 1);
1237 $cidurl = str_replace($quotchar, "", $cidurl);
1238 $cidurl = substr(trim($cidurl), 4);
1239 $httpurl = $quotchar . "../src/download.php?absolute_dl=true&" .
1240 "passed_id=$id&mailbox=" . urlencode($mailbox) .
1241 "&ent_id=" . find_ent_id($cidurl, $message) . $quotchar;
1246 * This function changes the <body> tag into a <div> tag since we
1247 * can't really have a body-within-body.
1249 * @param $attary an array of attributes and values of <body>
1250 * @return a modified array of attributes to be set for <div>
1252 function sq_body2div($attary){
1253 $me = "sq_body2div";
1254 $divattary = Array("class"=>"'bodyclass'");
1258 if (is_array($attary) && sizeof($attary) > 0){
1259 foreach ($attary as $attname=>$attvalue){
1260 $quotchar = substr($attvalue, 0, 1);
1261 $attvalue = str_replace($quotchar, "", $attvalue);
1264 $styledef .= "background-image: url('$attvalue'); ";
1267 $styledef .= "background-color: $attvalue; ";
1270 $styledef .= "color: $attvalue; ";
1273 if (strlen($styledef) > 0){
1274 $divattary{"style"} = "\"$styledef\"";
1281 * This is the main function and the one you should actually be calling.
1282 * There are several variables you should be aware of an which need
1283 * special description.
1285 * Since the description is quite lengthy, see it here:
1286 * http://www.mricon.com/html/phpfilter.html
1288 * @param $body the string with HTML you wish to filter
1289 * @param $tag_list see description above
1290 * @param $rm_tags_with_content see description above
1291 * @param $self_closing_tags see description above
1292 * @param $force_tag_closing see description above
1293 * @param $rm_attnames see description above
1294 * @param $bad_attvals see description above
1295 * @param $add_attr_to_tag see description above
1296 * @param $message message object
1297 * @param $id message id
1298 * @return sanitized html safe to show on your pages.
1300 function sq_sanitize($body,
1302 $rm_tags_with_content,
1312 $me = "sq_sanitize";
1314 * Normalize rm_tags and rm_tags_with_content.
1316 @array_walk
($rm_tags, 'sq_casenormalize');
1317 @array_walk
($rm_tags_with_content, 'sq_casenormalize');
1318 @array_walk
($self_closing_tags, 'sq_casenormalize');
1320 * See if tag_list is of tags to remove or tags to allow.
1321 * false means remove these tags
1322 * true means allow these tags
1324 $rm_tags = array_shift($tag_list);
1326 $open_tags = Array();
1327 $trusted = "<!-- begin sanitized html -->\n";
1328 $skip_content = false;
1330 * Take care of netscape's stupid javascript entities like
1333 $body = preg_replace("/&(\{.*?\};)/si", "&\\1", $body);
1335 while (($curtag=sq_getnxtag($body, $curpos)) != FALSE){
1336 list($tagname, $attary, $tagtype, $lt, $gt) = $curtag;
1337 $free_content = substr($body, $curpos, $lt-$curpos);
1339 * Take care of <style>
1341 if ($tagname == "style" && $tagtype == 2){
1343 * This is a closing </style>. Edit the
1344 * content before we apply it.
1346 $free_content = sq_fixstyle($message, $id, $free_content);
1348 if ($skip_content == false){
1349 $trusted .= $free_content;
1352 if ($tagname != FALSE){
1354 if ($skip_content == $tagname){
1356 * Got to the end of tag we needed to remove.
1359 $skip_content = false;
1361 if ($skip_content == false){
1362 if ($tagname == "body"){
1365 if (isset($open_tags{$tagname}) &&
1366 $open_tags{$tagname} > 0){
1367 $open_tags{$tagname}--;
1377 * $rm_tags_with_content
1379 if ($skip_content == false){
1381 * See if this is a self-closing type and change
1382 * tagtype appropriately.
1385 && in_array($tagname, $self_closing_tags)){
1389 * See if we should skip this tag and any content
1392 if ($tagtype == 1 &&
1393 in_array($tagname, $rm_tags_with_content)){
1394 $skip_content = $tagname;
1396 if (($rm_tags == false
1397 && in_array($tagname, $tag_list)) ||
1398 ($rm_tags == true &&
1399 !in_array($tagname, $tag_list))){
1403 if (isset($open_tags{$tagname})){
1404 $open_tags{$tagname}++
;
1406 $open_tags{$tagname}=1;
1410 * This is where we run other checks.
1412 if (is_array($attary) && sizeof($attary) > 0){
1413 $attary = sq_fixatts($tagname,
1424 * Convert body into div.
1426 if ($tagname == "body"){
1428 $attary = sq_body2div($attary, $message, $id);
1435 if ($tagname != false && $skip_content == false){
1436 $trusted .= sq_tagprint($tagname, $attary, $tagtype);
1442 $trusted .= substr($body, $curpos, strlen($body)-$curpos);
1443 if ($force_tag_closing == true){
1444 foreach ($open_tags as $tagname=>$opentimes){
1445 while ($opentimes > 0){
1446 $trusted .= '</' . $tagname . '>';
1452 $trusted .= "<!-- end sanitized html -->\n";
1457 * This is a wrapper function to call html sanitizing routines.
1459 * @param $body the body of the message
1460 * @param $id the id of the message
1461 * @return a string with html safe to display in the browser.
1463 function magicHTML($body, $id, $message, $mailbox = 'INBOX'){
1464 global $attachment_common_show_images, $view_unsafe_images,
1467 * Don't display attached images in HTML mode.
1469 $attachment_common_show_images = false;
1480 $rm_tags_with_content = Array(
1487 $self_closing_tags = Array(
1494 $force_tag_closing = false;
1496 $rm_attnames = Array(
1506 $secremoveimg = "../images/" . _("sec_remove_eng.png");
1507 $bad_attvals = Array(
1510 "/^src|background/i" =>
1513 "|^([\'\"])\s*\.\./.*([\'\"])|si",
1514 "/^([\'\"])\s*\S+script\s*:.*([\'\"])/si",
1515 "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si",
1516 "/^([\'\"])\s*about\s*:.*([\'\"])/si"
1519 "\\1$secremoveimg\\2",
1520 "\\1$secremoveimg\\2",
1521 "\\1$secremoveimg\\2",
1522 "\\1$secremoveimg\\2"
1525 "/^href|action/i" =>
1528 "|^([\'\"])\s*\.\./.*([\'\"])|si",
1529 "/^([\'\"])\s*\S+script\s*:.*([\'\"])/si",
1530 "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si",
1531 "/^([\'\"])\s*about\s*:.*([\'\"])/si"
1546 "|url\(([\'\"])\s*\.\./.*([\'\"])\)|si",
1547 "/url\(([\'\"])\s*\S+script\s*:.*([\'\"])\)/si",
1548 "/url\(([\'\"])\s*mocha\s*:.*([\'\"])\)/si",
1549 "/url\(([\'\"])\s*about\s*:.*([\'\"])\)/si"
1563 if (!$view_unsafe_images){
1565 * Remove any references to http/https if view_unsafe_images set
1568 array_push($bad_attvals{'/.*/'}{'/^src|background/i'}[0],
1569 '/^([\'\"])\s*https*:.*([\'\"])/si');
1570 array_push($bad_attvals{'/.*/'}{'/^src|background/i'}[1],
1571 "\\1$secremoveimg\\2");
1572 array_push($bad_attvals{'/.*/'}{'/^style/si'}[0],
1573 '/url\(([\'\"])\s*https*:.*([\'\"])\)/si');
1574 array_push($bad_attvals{'/.*/'}{'/^style/si'}[1],
1575 "url(\\1$secremoveimg\\2)");
1578 $add_attr_to_tag = Array(
1579 "/^a$/si" => Array('target'=>'"_new"')
1581 $trusted = sq_sanitize($body,
1583 $rm_tags_with_content,
1593 if (preg_match("|$secremoveimg|si", $trusted)){
1594 $has_unsafe_images = true;