2 LibreSSL - CAcert web application
3 Copyright (C) 2004-2008 CAcert Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; version 2 of the License.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 require_once(dirname(__FILE__
)."/lib/general.php");
21 session_name("cacert");
24 // session_register("_config");
25 // session_register("profile");
26 // session_register("signup");
27 // session_register("lostpw");
28 // if($_SESSION['profile']['id'] > 0)
29 // session_regenerate_id();
31 $pageLoadTime_Start = microtime(true
);
33 $junk = array(_("Face to Face Meeting"), _("Trusted Third Parties"), _("Thawte Points Transfer"), _("Administrative Increase"),
34 _("CT Magazine - Germany"), _("Temporary Increase"), _("Unknown"));
36 $_SESSION['_config']['errmsg']="";
38 $id = 0; if(array_key_exists("id",$_REQUEST)) $id=intval($_REQUEST['id']);
39 $oldid = 0; if(array_key_exists("oldid",$_REQUEST)) $oldid=intval($_REQUEST['oldid']);
41 $_SESSION['_config']['filepath'] = "/www";
43 require_once($_SESSION['_config']['filepath']."/includes/mysql.php");
44 require_once($_SESSION['_config']['filepath'].'/includes/lib/account.php');
45 require_once($_SESSION['_config']['filepath'].'/includes/lib/l10n.php');
47 if(array_key_exists('HTTP_HOST',$_SERVER) &&
48 $_SERVER['HTTP_HOST'] != $_SESSION['_config']['normalhostname'] &&
49 $_SERVER['HTTP_HOST'] != $_SESSION['_config']['securehostname'] &&
50 $_SERVER['HTTP_HOST'] != $_SESSION['_config']['tverify'] &&
51 $_SERVER['HTTP_HOST'] != "stamp.cacert.org")
53 if(array_key_exists('HTTPS',$_SERVER) && $_SERVER['HTTPS'] == "on")
54 header("location: https://".$_SESSION['_config']['normalhostname']);
56 header("location: http://".$_SESSION['_config']['normalhostname']);
60 if(array_key_exists('HTTP_HOST',$_SERVER) &&
61 ($_SERVER['HTTP_HOST'] == $_SESSION['_config']['securehostname'] ||
62 $_SERVER['HTTP_HOST'] == $_SESSION['_config']['tverify']))
64 if(array_key_exists('HTTPS',$_SERVER) && $_SERVER['HTTPS'] == "on")
69 if($_SERVER['HTTP_HOST'] == $_SESSION['_config']['securehostname'])
70 header("location: https://". $_SESSION['_config']['securehostname']);
71 if($_SERVER['HTTP_HOST'] == $_SESSION['_config']['tverify'])
72 header("location: https://".$_SESSION['_config']['tverify']);
77 L10n
::detect_language();
80 if(array_key_exists('profile',$_SESSION) && is_array($_SESSION['profile']) && array_key_exists('id',$_SESSION['profile']) && $_SESSION['profile']['id'] > 0)
82 $locked = mysql_fetch_assoc(mysql_query("select `locked` from `users` where `id`='".intval($_SESSION['profile']['id'])."'"));
83 if($locked['locked'] == 0)
85 $query = "select sum(`points`) as `total` from `notary` where `to`='".intval($_SESSION['profile']['id'])."' and `deleted` = 0 group by `to`";
86 $res = mysql_query($query);
87 $row = mysql_fetch_assoc($res);
88 $_SESSION['profile']['points'] = $row['total'];
90 $_SESSION['profile'] = "";
91 unset($_SESSION['profile']);
95 function loadem($section = "index")
97 if($section != "index" && $section != "account" && $section != "tverify")
102 if($section == "account")
103 include_once($_SESSION['_config']['filepath']."/includes/account_stuff.php");
105 if($section == "index")
106 include_once($_SESSION['_config']['filepath']."/includes/general_stuff.php");
108 if($section == "tverify")
109 include_once($_SESSION['_config']['filepath']."/includes/tverify_stuff.php");
112 function includeit($id = "0", $section = "index")
115 if($section != "index" && $section != "account" && $section != "wot" && $section != "help" && $section != "gpg" && $section != "disputes" && $section != "tverify" && $section != "advertising")
120 if($section == "tverify" && file_exists($_SESSION['_config']['filepath']."/tverify/index/$id.php"))
121 include_once($_SESSION['_config']['filepath']."/tverify/index/$id.php");
122 else if(file_exists($_SESSION['_config']['filepath']."/pages/$section/$id.php"))
123 include_once($_SESSION['_config']['filepath']."/pages/$section/$id.php");
127 if(file_exists($_SESSION['_config']['filepath']."/pages/$section/$id.php"))
128 include_once($_SESSION['_config']['filepath']."/pages/$section/$id.php");
134 if(file_exists($_SESSION['_config']['filepath']."/pages/$section/$id.php"))
135 include_once($_SESSION['_config']['filepath']."/pages/$section/$id.php");
137 include_once($_SESSION['_config']['filepath']."/www/error404.php");
142 function checkpwlight($pwd) {
145 if(strlen($pwd) > 15)
147 if(strlen($pwd) > 20)
149 if(strlen($pwd) > 25)
151 if(strlen($pwd) > 30)
154 //echo "Points due to length: $points<br/>";
156 if(preg_match("/\d/", $pwd))
159 if(preg_match("/[a-z]/", $pwd))
162 if(preg_match("/[A-Z]/", $pwd))
165 if(preg_match("/\W/", $pwd))
168 if(preg_match("/\s/", $pwd))
171 //echo "Points due to length and charset: $points<br/>";
173 // check for historical password proposal
174 if ($pwd === "Fr3d Sm|7h") {
181 function checkpw($pwd, $email, $fname, $mname, $lname, $suffix)
183 $points = checkpwlight($pwd);
185 if(@strstr
(strtolower($pwd), strtolower($email)))
188 if(@strstr
(strtolower($email), strtolower($pwd)))
191 if(@strstr
(strtolower($pwd), strtolower($fname)))
194 if(@strstr
(strtolower($fname), strtolower($pwd)))
198 if(@strstr
(strtolower($pwd), strtolower($mname)))
202 if(@strstr
(strtolower($mname), strtolower($pwd)))
205 if(@strstr
(strtolower($pwd), strtolower($lname)))
208 if(@strstr
(strtolower($lname), strtolower($pwd)))
212 if(@strstr
(strtolower($pwd), strtolower($suffix)))
216 if(@strstr
(strtolower($suffix), strtolower($pwd)))
219 //echo "Points due to name matches: $points<br/>";
221 $shellpwd = escapeshellarg($pwd);
222 $do = shell_exec("grep -F -- $shellpwd /usr/share/dict/american-english");
226 //echo "Points due to wordlist: $points<br/>";
233 $bits = explode(": ", $_SESSION['_config']['subject'], 2);
234 $bits = str_replace(", ", "|", str_replace("/", "|", array_key_exists('1',$bits)?
$bits['1']:""));
235 $bits = explode("|", $bits);
237 $_SESSION['_config']['cnc'] = $_SESSION['_config']['subaltc'] = 0;
238 $_SESSION['_config']['OU'] = "";
241 foreach($bits as $val)
243 if(!strstr($val, "="))
246 $split = explode("=", $val);
249 $split['1'] = trim($split['1']);
250 if($k == "CN" && $split['1'])
252 $k = $_SESSION['_config']['cnc'].".".$k;
253 $_SESSION['_config']['cnc']++
;
254 $_SESSION['_config'][$k] = $split['1'];
256 if($k == "OU" && $split['1'] && $_SESSION['_config']['OU'] == "")
258 $_SESSION['_config']['OU'] = $split['1'];
260 if($k == "subjectAltName" && $split['1'])
262 $k = $_SESSION['_config']['subaltc'].".".$k;
263 $_SESSION['_config']['subaltc']++
;
264 $_SESSION['_config'][$k] = $split['1'];
271 unset($_SESSION['_config']['rows']);
272 unset($_SESSION['_config']['rowid']);
273 unset($_SESSION['_config']['rejected']);
276 for($cnc = 0; $cnc < $_SESSION['_config']['cnc']; $cnc++
)
278 $CN = $_SESSION['_config']["$cnc.CN"];
279 $bits = explode(".", $CN);
282 for($i = count($bits) - 1; $i >= 0; $i--)
285 $dom = $bits[$i].".".$dom;
288 $_SESSION['_config']['row'] = "";
289 $dom = mysql_real_escape_string($dom);
290 $query = "select * from domains where `memid`='".intval($_SESSION['profile']['id'])."' and `domain` like '$dom' and `deleted`=0 and `hash`=''";
291 $res = mysql_query($query);
292 if(mysql_num_rows($res) > 0)
295 $_SESSION['_config']['row'] = mysql_fetch_assoc($res);
296 $rowid[] = $_SESSION['_config']['row']['id'];
302 $_SESSION['_config']['rejected'][] = $CN;
304 if($_SESSION['_config']['row'] != "")
307 // if(count($rows) <= 0)
309 // echo _("There were no valid CommonName fields on the CSR, or I was unable to match any of these against your account. Please review your CSR, or add and verify domains contained in it to your account before trying again.");
313 $_SESSION['_config']['rows'] = $rows;
314 $_SESSION['_config']['rowid'] = $rowid;
319 unset($_SESSION['_config']['altrows']);
320 unset($_SESSION['_config']['altid']);
323 for($altc = 0; $altc < $_SESSION['_config']['subaltc']; $altc++
)
325 $subalt = $_SESSION['_config']["$altc.subjectAltName"];
326 if(substr($subalt, 0, 4) == "DNS:")
327 $alt = substr($subalt, 4);
331 $bits = explode(".", $alt);
334 for($i = count($bits) - 1; $i >= 0; $i--)
337 $dom = $bits[$i].".".$dom;
340 $_SESSION['_config']['altrow'] = "";
341 $dom = mysql_real_escape_string($dom);
342 $query = "select * from domains where `memid`='".intval($_SESSION['profile']['id'])."' and `domain` like '$dom' and `deleted`=0 and `hash`=''";
343 $res = mysql_query($query);
344 if(mysql_num_rows($res) > 0)
347 $_SESSION['_config']['altrow'] = mysql_fetch_assoc($res);
348 $altid[] = $_SESSION['_config']['altrow']['id'];
354 $_SESSION['_config']['rejected'][] = $alt;
356 if($_SESSION['_config']['altrow'] != "")
357 $altrows[] = $subalt;
359 $_SESSION['_config']['altrows'] = $altrows;
360 $_SESSION['_config']['altid'] = $altid;
367 for($cnc = 0; $cnc < $_SESSION['_config']['cnc']; $cnc++
)
369 $CN = $_SESSION['_config']["$cnc.CN"];
370 $bits = explode(".", $CN);
372 for($i = count($bits) - 1; $i >= 0; $i--)
375 $dom = $bits[$i].".".$dom;
378 $_SESSION['_config']['row'] = "";
379 $dom = mysql_real_escape_string($dom);
380 $query = "select *, `orginfo`.`id` as `id` from `orginfo`,`orgdomains`,`org` where
381 `org`.`memid`='".intval($_SESSION['profile']['id'])."' and
382 `org`.`orgid`=`orginfo`.`id` and
383 `orgdomains`.`orgid`=`orginfo`.`id` and
384 `orgdomains`.`domain`='$dom'";
385 $res = mysql_query($query);
386 if(mysql_num_rows($res) > 0)
388 $_SESSION['_config']['row'] = mysql_fetch_assoc($res);
389 $rowid[] = $_SESSION['_config']['row']['id'];
394 if($_SESSION['_config']['row'] != "")
397 // if(count($rows) <= 0)
399 // echo _("There were no valid CommonName fields on the CSR, or I was unable to match any of these against your account. Please review your CSR, or add and verify domains contained in it to your account before trying again.");
402 $_SESSION['_config']['rows'] = $rows;
403 $_SESSION['_config']['rowid'] = $rowid;
410 for($altc = 0; $altc < $_SESSION['_config']['subaltc']; $altc++
)
412 $subalt = $_SESSION['_config']["$altc.subjectAltName"];
413 if(substr($subalt, 0, 4) == "DNS:")
414 $alt = substr($subalt, 4);
418 $bits = explode(".", $alt);
420 for($i = count($bits) - 1; $i >= 0; $i--)
423 $dom = $bits[$i].".".$dom;
426 $_SESSION['_config']['altrow'] = "";
427 $dom = mysql_real_escape_string($dom);
428 $query = "select * from `orginfo`,`orgdomains`,`org` where
429 `org`.`memid`='".intval($_SESSION['profile']['id'])."' and
430 `org`.`orgid`=`orginfo`.`id` and
431 `orgdomains`.`orgid`=`orginfo`.`id` and
432 `orgdomains`.`domain`='$dom'";
433 $res = mysql_query($query);
434 if(mysql_num_rows($res) > 0)
436 $_SESSION['_config']['altrow'] = mysql_fetch_assoc($res);
437 $altid[] = $_SESSION['_config']['altrow']['id'];
442 if($_SESSION['_config']['altrow'] != "")
443 $altrows[] = $subalt;
445 $_SESSION['_config']['altrows'] = $altrows;
446 $_SESSION['_config']['altid'] = $altid;
449 function checkownership($hostname)
451 $bits = explode(".", $hostname);
453 for($i = count($bits) - 1; $i >= 0; $i--)
456 $dom = $bits[$i].".".$dom;
459 $dom = mysql_real_escape_string($dom);
460 $query = "select * from `org`,`orgdomains`,`orginfo`
461 where `org`.`memid`='".intval($_SESSION['profile']['id'])."'
462 and `orgdomains`.`orgid`=`org`.`orgid`
463 and `orginfo`.`id`=`org`.`orgid`
464 and `orgdomains`.`domain`='$dom'";
465 $res = mysql_query($query);
466 if(mysql_num_rows($res) > 0)
468 $_SESSION['_config']['row'] = mysql_fetch_assoc($res);
475 function maxpoints($id = 0)
478 $id = $_SESSION['profile']['id'];
480 $query = "select sum(`points`) as `points` from `notary` where `to`='$id' and `deleted` = 0 group by `to`";
481 $row = mysql_fetch_assoc(mysql_query($query));
482 $points = $row['points'];
484 $dob = date("Y-m-d", mktime(0,0,0,date("m"),date("d"),date("Y")-18));
485 $query = "select * from `users` where `id`='".intval($_SESSION['profile']['id'])."' and `dob` < '$dob'";
486 if(mysql_num_rows(mysql_query($query)) < 1)
509 function gpg_hex2bin($data)
511 while(strstr($data, "\\x"))
513 $pos = strlen($data) - strlen(strstr($data, "\\x"));
514 $before = substr($data, 0, $pos);
515 $char = chr(hexdec(substr($data, $pos +
2, 2)));
516 $after = substr($data, $pos +
4);
517 $data = $before.$char.$after;
519 return(utf8_decode($data));
522 function signmail($to, $subject, $message, $from, $replyto = "")
526 $tmpfname = tempnam("/tmp", "CSR");
527 $fp = fopen($tmpfname, "w");
528 fputs($fp, $message);
530 $to_esc = escapeshellarg($to);
531 $do = shell_exec("/usr/bin/gpg --homedir /home/gpg --clearsign \"$tmpfname\"|/usr/sbin/sendmail ".$to_esc);
535 function checkEmail($email)
537 $myemail = mysql_real_escape_string($email);
538 if(preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\+\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/" , $email))
540 list($username,$domain)=explode('@',$email,2);
543 if( !getmxrr($domain, $mxhostrr, $mxweight) ) {
544 $mxhostrr = array($domain);
545 $mxweight = array(0);
546 } else if ( empty($mxhostrr) ) {
547 $mxhostrr = array($domain);
548 $mxweight = array(0);
551 $mxhostprio = array();
552 for($i = 0; $i < count($mxhostrr); $i++
) {
553 $mx_host = trim($mxhostrr[$i], '.');
554 $mx_prio = $mxweight[$i];
555 if(empty($mxhostprio[$mx_prio])) {
556 $mxhostprio[$mx_prio] = array();
558 $mxhostprio[$mx_prio][] = $mx_host;
561 array_walk($mxhostprio, function(&$mx) { shuffle($mx); } );
565 foreach($mxhostprio as $mx_prio => $mxhostnames) {
566 foreach($mxhostnames as $mx_host) {
567 $mxhosts[] = $mx_host;
571 foreach($mxhosts as $key => $domain)
575 'verify_peer' => false
, // Opportunistic Encryption
578 $fp_ctx = stream_context_create($fp_opt);
579 $fp = @stream_socket_client
("tcp://$domain:25",$errno,$errstr,5,STREAM_CLIENT_CONNECT
,$fp_ctx);
582 stream_set_blocking($fp, true
);
584 $has_starttls = false
;
587 $line = fgets($fp, 4096);
588 } while(substr($line, 0, 4) == "220-");
589 if(substr($line, 0, 3) != "220") {
594 fputs($fp, "EHLO www.cacert.org\r\n");
596 $line = fgets($fp, 4096);
597 $has_starttls |
= substr(trim($line),4) == "STARTTLS";
598 } while(substr($line, 0, 4) == "250-");
599 if(substr($line, 0, 3) != "250") {
605 fputs($fp, "STARTTLS\r\n");
607 $line = fgets($fp, 4096);
608 } while(substr($line, 0, 4) == "220-");
609 if(substr($line, 0, 3) != "220") {
614 stream_socket_enable_crypto($fp, true
, STREAM_CRYPTO_METHOD_TLS_CLIENT
);
616 fputs($fp, "EHLO www.cacert.org\r\n");
618 $line = fgets($fp, 4096);
619 } while(substr($line, 0, 4) == "250-");
620 if(substr($line, 0, 3) != "250") {
626 fputs($fp, "MAIL FROM:<returns@cacert.org>\r\n");
628 $line = fgets($fp, 4096);
629 } while(substr($line, 0, 4) == "250-");
630 if(substr($line, 0, 3) != "250") {
635 fputs($fp, "RCPT TO:<$email>\r\n");
637 $line = fgets($fp, 4096);
638 } while(substr($line, 0, 4) == "250-");
639 if(substr($line, 0, 3) != "250") {
644 fputs($fp, "QUIT\r\n");
647 $line = mysql_real_escape_string(trim(strip_tags($line)));
648 $query = "insert into `pinglog` set `when`=NOW(), `email`='$myemail', `result`='$line'";
649 if(is_array($_SESSION['profile'])) $query.=", `uid`='".intval($_SESSION['profile']['id'])."'";
652 if(substr($line, 0, 3) != "250")
659 $query = "insert into `pinglog` set `when`=NOW(), `uid`='".intval($_SESSION['profile']['id'])."',
660 `email`='$myemail', `result`='Failed to make a connection to the mail server'";
662 return _("Failed to make a connection to the mail server");
665 function waitForResult($table, $certid, $id = 0, $show = 1)
667 $found = $trycount = 0;
670 if($show) showheader(_("My CAcert.org Account!"));
671 echo _("ERROR: The new Certificate ID is wrong. Please contact support.\n");
672 if($show) showfooter();
676 while($trycount++
<= 40)
679 $query = "select * from `$table` where `id`='".intval($certid)."' and `crt` != ''";
681 $query = "select * from `$table` where `id`='".intval($certid)."' and `crt_name` != ''";
682 $res = mysql_query($query);
683 if(mysql_num_rows($res) > 0)
693 if($show) showheader(_("My CAcert.org Account!"));
694 $query = "select * from `$table` where `id`='".intval($certid)."' ";
695 $res = mysql_query($query);
698 if(mysql_num_rows($res) > 0)
700 printf(_("Your certificate request is still queued and hasn't been processed yet. Please wait, and go to Certificates -> View to see it's status."));
701 $subject="[CAcert.org] Certificate TIMEOUT";
702 $body = "A certificate has timed out!\n\n";
706 printf(_("Your certificate request has failed to be processed correctly, see %sthe WIKI page%s for reasons and solutions.")." certid:$table:".intval($certid), "<a href='http://wiki.cacert.org/wiki/FAQ/CertificateRenewal'>", "</a>");
707 $subject="[CAcert.org] Certificate FAILURE";
708 $body = "A certificate has failed: $table $certid $id $show\n\n";
711 $body .= _("Best regards")."\n"._("CAcert.org Support!");
713 sendmail("philipp@cacert.org", $subject, $body, "returns@cacert.org", "", "", "CAcert Support");
715 if($show) showfooter();
722 function generateTicket()
724 $query = "insert into tickets (timestamp) values (now()) ";
726 $ticket = mysql_insert_id();
730 function sanitizeHTML($input)
732 return htmlentities(strip_tags($input), ENT_QUOTES
, 'ISO-8859-1');
733 //In case of problems, please use the following line again:
734 //return htmlentities(strip_tags(utf8_decode($input)), ENT_QUOTES);
735 //return htmlspecialchars(strip_tags($input));
740 if(function_exists("dio_open"))
742 $rnd = dio_open("/dev/urandom",O_RDONLY
);
743 $hash = md5(dio_read($rnd,64));
746 $rnd = fopen("/dev/urandom", "r");
747 $hash = md5(fgets($rnd, 64));
753 function csrf_check($nam, $show=1)
755 if(!array_key_exists('csrf',$_REQUEST) ||
!array_key_exists('csrf_'.$nam,$_SESSION))
757 showheader(_("My CAcert.org Account!"));
758 echo _("CSRF Hash is missing. Please try again.")."\n";
762 if(strlen($_REQUEST['csrf'])!=32)
764 showheader(_("My CAcert.org Account!"));
765 echo _("CSRF Hash is wrong. Please try again.")."\n";
769 if(!array_key_exists($_REQUEST['csrf'],$_SESSION['csrf_'.$nam]))
771 showheader(_("My CAcert.org Account!"));
772 echo _("CSRF Hash is wrong. Please try again.")."\n";
777 function make_csrf($nam)
780 $_SESSION['csrf_'.$nam][$hash]=1;
784 function clean_csr($CSR)
786 $newcsr = str_replace("\r\n","\n",trim($CSR));
787 $newcsr = str_replace("\n\n","\n",$newcsr);
788 return(preg_replace("/[^A-Za-z0-9\n\r\-\:\=\+\/ ]/","",$newcsr));
790 function clean_gpgcsr($CSR)
792 return(preg_replace("/[^A-Za-z0-9\n\r\-\:\=\+\/ ]/","",trim($CSR)));
795 function sanitizeFilename($text)
797 $text=preg_replace("/[^\w-.@]/","",$text);
802 // returns text message to be shown to the user given the result of is_no_assurer
803 function no_assurer_text($Status)
806 $Result = _("You have passed the Assurer Challenge and collected at least 100 Assurance Points, you are an Assurer.");
807 } elseif ($Status == 3) {
808 $Result = _("You have passed the Assurer Challenge, but to become an Assurer you still have to reach 100 Assurance Points!");
809 } elseif ($Status == 5) {
810 $Result = _("You have at least 100 Assurance Points, if you want to become an assurer try the").' <a href="https://cats.cacert.org/">'._("Assurer Challenge").'</a>!';
811 } elseif ($Status == 7) {
812 $Result = _("To become an Assurer you have to collect 100 Assurance Points and pass the").' <a href="https://cats.cacert.org/">'._("Assurer Challenge").'</a>!';
813 } elseif ($Status & 8 > 0) {
814 $Result = _("Sorry, you are not allowed to be an Assurer. Please contact").' <a href="mailto:cacert-support@lists.cacert.org">cacert-support@lists.cacert.org</a>'._(" if you feel that this is not corect.");
816 $Result = _("You are not an Assurer, but the reason is not stored in the database. Please contact").' <a href="mailto:cacert-support@lists.cacert.org">cacert-support@lists.cacert.org</a>.';
821 function is_assurer($userID)
823 if (get_assurer_status($userID))
829 function get_assurer_reason($userID)
831 return no_assurer_text(get_assurer_status($userID));
834 function generatecertpath($type,$kind,$id)
836 $name="../$type/$kind-".intval($id).".$type";
840 $name="../$type/$kind/".intval($id/1000)."/$kind-".intval($id).".$type";
841 if (!is_dir("../csr")) { mkdir("../csr",0777); }
842 if (!is_dir("../crt")) { mkdir("../crt",0777); }
844 if (!is_dir("../csr/$kind")) { mkdir("../csr/$kind",0777); }
845 if (!is_dir("../crt/$kind")) { mkdir("../crt/$kind",0777); }
846 if (!is_dir("../csr/$kind/".intval($id/1000))) { mkdir("../csr/$kind/".intval($id/1000)); }
847 if (!is_dir("../crt/$kind/".intval($id/1000))) { mkdir("../crt/$kind/".intval($id/1000)); }
853 * Run the sql query given in $sql.
854 * The resource returned by mysql_query is
855 * returned by this function.
857 * It should be safe to replace every mysql_query
858 * call by a mysql_extended_query call.
860 function mysql_timed_query($sql)
862 global $sql_data_log;
863 $query_start = microtime(true
);
864 $res = mysql_query($sql);
865 $query_end = microtime(true
);
866 $sql_data_log[] = array("sql" => $sql, "duration" => $query_end - $query_start);