/[docman2]/docman.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /docman.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by dpavlin, Sat Jul 27 19:27:22 2002 UTC revision 1.21 by dpavlin, Sun Jul 28 18:27:18 2002 UTC
# Line 20  Line 20 
20  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
21  // CONFIGURATION OPTIONS  // CONFIGURATION OPTIONS
22    
23  //      error_reporting(4) ;            // how verbose ?          error_reporting(E_ALL) ;                // how verbose ?
24    
25          // from where to include auth_*.php modules?          // from where to include auth_*.php modules?
26          $gblIncDir = "/data/docman2";          $gblIncDir = "/data/docman2";
# Line 84  Line 84 
84          LoadLanguage($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"]);          LoadLanguage($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"]);
85    
86          // for security and configuration          // for security and configuration
87          $realm=$HTTP_SERVER_VARS[HTTP_HOST];          $realm=$HTTP_SERVER_VARS["HTTP_HOST"];
88    
89          $fsDocumentRoot = dirname($HTTP_SERVER_VARS[SCRIPT_FILENAME]);          $fsDocumentRoot = dirname($HTTP_SERVER_VARS["SCRIPT_FILENAME"]);
90          if ($fsDocumentRoot == "") Error("Configuration error","Can't get SCRIPT_FILENAME from your web server. Please set <tt>\$fsDocumentRoot</tt> in <tt>\$</tt>",1);          if ($fsDocumentRoot == "") Error("Configuration error","Can't get SCRIPT_FILENAME from your web server. Please set <tt>\$fsDocumentRoot</tt> in <tt>\$</tt>",1);
91    
92          // globals for later          // globals for later
93          $gblLogin = $HTTP_SERVER_VARS[PHP_AUTH_USER];          $gblLogin = $HTTP_SERVER_VARS["PHP_AUTH_USER"];
94          $gblPasswd = $HTTP_SERVER_VARS[PHP_AUTH_PW];          $gblPasswd = $HTTP_SERVER_VARS["PHP_AUTH_PW"];
95    
96  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
97    
# Line 109  function LoadLanguage($lang) { Line 109  function LoadLanguage($lang) {
109    
110  function StartHTML($title,$text="") {  function StartHTML($title,$text="") {
111    
112          global $html,$fsDocumentRoot,$HTTP_SERVER_VARS;          global $html,$fsDocumentRoot,$gblTitle,$HTTP_SERVER_VARS;
113    
         $title = $gblTitle." ".$title ;  
114          $host  = $HTTP_SERVER_VARS["HTTP_HOST"] ;          $host  = $HTTP_SERVER_VARS["HTTP_HOST"] ;
115          $self  = $HTTP_SERVER_VARS["PHP_SELF"] ;          $self  = $HTTP_SERVER_VARS["PHP_SELF"] ;
116    
117          if (file_exists("$fsDocumentRoot/docman.css")) {          if (file_exists("$fsDocumentRoot/docman.css")) {
118                  $css=dirname($self)."/docman.css";                  $css=dirname($self)."/docman.css";
119          } else {          } else {
120                  $css=$self."?STYLE=get&css=$css";                  $css=$self."?STYLE=get";
121          }          }
122    
123          include("$html/head.html");          include("$html/head.html");
# Line 138  function EndHTML() { Line 137  function EndHTML() {
137          } else {          } else {
138                  $url .= md5($gblLogin.$gblPasswd);                  $url .= md5($gblLogin.$gblPasswd);
139          }          }
140          if (isset($gblLogin) && $gblLogin != "" && ($gblPasswd == "" || !isset($gblPasswd))) {          if ( (  (isset($gblLogin) && $gblLogin != "") ||
141                    (!isset($gblLogin) || $gblLogin == "")
142                 ) && ($gblPasswd == "" || !isset($gblPasswd))) {
143                  $url_title="login";                  $url_title="login";
144                  $url .= "&force_login=1";                  $url .= "&force_login=1";
145          } else {          } else {
146                  $url_title="relogin";                  $url_title="relogin";
147          }          }
148          include("$html/footer.html");          include("$html/footer.html");
149    
150            global $debug;
151            if ($debug) print $debug;
152  } // end function EndHTML  } // end function EndHTML
153    
154  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
# Line 160  function DetailPage($fsRoot,$relDir,$fn) Line 164  function DetailPage($fsRoot,$relDir,$fn)
164    
165          $exists   = file_exists($fsPath) ;          $exists   = file_exists($fsPath) ;
166          $ext      = strtolower(strrchr($relPath,".")) ;          $ext      = strtolower(strrchr($relPath,".")) ;
167          $editable = ( $ext=="" || strstr(join(" ",$gblEditable),$ext)) ;          $editable = ( $ext=="" || strstr(join(" ",$gblEditable),$ext)) &&
168          $writable = is_writeable($fsPath) ;                  check_perm($relPath,trperm_w);
169            $writable = is_writeable($fsPath) && check_perm($relPath,trperm_w) ;
170            $writable_dir = is_writeable($fsDir) && check_perm($relDir,trperm_w) ;
171          $file_lock = CheckLock($fsPath);          $file_lock = CheckLock($fsPath);
172    
173          if (!$editable && !$exists)          if (!$editable && !$exists)
174                  Error("Creation unsupported for type",$relPath) ;                  Error("Creation denied","Can't create <tt>$relPath</tt>") ;
175          if (!exists && !is_writeable($fsDir) )          if (!$exists && !$writable_dir )
176                  Error("Creation denied",$relDir) ;                  Error("Creation denied","Can't write in directory <tt>$relDir</tt> while creating <tt>$relPath</tt>for which user has permissions.",1);
177    
178          $text  = _("Use this page to view, modify or ") ;          $text  = _("Use this page to view, modify or ") ;
179          if (is_dir($fsPath)) {          if (is_dir($fsPath)) {
# Line 200  function DetailPage($fsRoot,$relDir,$fn) Line 206  function DetailPage($fsRoot,$relDir,$fn)
206                  $fstr = htmlentities( $fstr ) ;                  $fstr = htmlentities( $fstr ) ;
207  ?>  ?>
208    
209  <FORM ACTION="<?= $self ; ?>" METHOD="POST">  <FORM ACTION="<?= $self ?>" METHOD="POST">
210  <SPAN TITLE="Click [SAVE] to store updated contents.">  <SPAN TITLE="Click [SAVE] to store updated contents.">
211          <B>DOCUMENT CONTENTS</B>          <B>DOCUMENT CONTENTS</B>
212  </SPAN><BR>  </SPAN><BR>
# Line 571  function GifIcon($txt) { Line 577  function GifIcon($txt) {
577  function Navigate($fsRoot,$relDir) {  function Navigate($fsRoot,$relDir) {
578    
579          global $gblEditable, $gblIcon, $gblModDays, $webRoot, $gblHide,          global $gblEditable, $gblIcon, $gblModDays, $webRoot, $gblHide,
580                  $gblIgnoreUnknownFileType,                  $gblIgnoreUnknownFileType, $gblRepositoryDir,
581                  $HTTP_GET_VARS, $html, $realm_config;                  $gblLogin,
582                    $fsRealmDir, $realm, $realm_sep,
583                    $html, $realm_config,
584                    $HTTP_GET_VARS, $HTTP_SERVER_VARS;
585            
586          $self     = $HTTP_SERVER_VARS["PHP_SELF"] ;          $self     = $HTTP_SERVER_VARS["PHP_SELF"] ;
587    
588          if ($relDir == "") $relDir = "/";          $relDir = chopsl($relDir)."/";
589            $fsDir = $fsRoot.$relDir;       // current directory
590    
591            if (!is_dir($fsDir)) Error("Dir not found","Directory <tt>$relDir<tt> not found on filesystem at <tt>$fsDir</tt>",1) ;
592    
593          $fsDir = $fsRoot.$relDir."/";   // current directory          global $debug;
594            $debug .= "[$gblLogin|$relDir] before >";
595    
596          if (!is_dir($fsDir)) Error("Dir not found",$relDir) ;          if (! check_perm($relDir,trperm_b))
597                    Error("Access denied","User <tt>$gblLogin</tt> tried to access <tt>$relDir</tt> without valid trustee.",1);
598            $debug .= "< afeter";
599    
600          $hide_items=",$gblHide,";          $hide_items=",$gblHide,";
601    
602            $dirList = array();
603            $fileList = array();
604    
605          // read directory contents          // read directory contents
606          if ( !($dir = @opendir($fsDir)) )          if ( !($dir = @opendir($fsDir)) )
607                  Error("Read Access denied",$relDir,1) ;                  Error("Read Access denied",$relDir,1) ;
# Line 608  function Navigate($fsRoot,$relDir) { Line 626  function Navigate($fsRoot,$relDir) {
626          closedir($dir) ;          closedir($dir) ;
627    
628          // scan deleted files          // scan deleted files
629          if ( $HTTP_GET_VARS["show_deleted"] == 1 && ($dir = @opendir("$fsDir/.del")) ) {          if ( HTTP_GET_VAR("show_deleted") == 1 && ($dir = @opendir("$fsDir/.del")) ) {
630                  while ($item = readdir($dir)) {                  while ($item = readdir($dir)) {
631                          if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") || !check_perm($relDir.$item,trperm_w) ) continue ;                          if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") || !check_perm($relDir.$item,trperm_w) ) continue ;
632                          $fileList[$item] = ".del/$item" ;                                        $fileList[$item] = ".del/$item" ;              
# Line 623  function Navigate($fsRoot,$relDir) { Line 641  function Navigate($fsRoot,$relDir) {
641    
642          // start navigation page          // start navigation page
643          $text  = "Use this page to add, delete";          $text  = "Use this page to add, delete";
644          if (! isset($HTTP_GET_VARS[show_deleted])) {          if (! isset($HTTP_GET_VARS["show_deleted"])) {
645                  $text .= ", <a href=$self?D=".urlencode($relDir)."&show_deleted=1>undelete</a>";                  $text .= ", <a href=$self?D=".urlencode($relDir)."&show_deleted=1>undelete</a>";
646          }          }
647          $text .= " or revise files on this web site." ;          $text .= " or revise files on this web site." ;
# Line 633  function Navigate($fsRoot,$relDir) { Line 651  function Navigate($fsRoot,$relDir) {
651          echo "<TABLE BORDER=0 CELLPADDING=2          echo "<TABLE BORDER=0 CELLPADDING=2
652                  CELLSPACING=3 WIDTH=\"100%\">" ;                  CELLSPACING=3 WIDTH=\"100%\">" ;
653    
654          // updir bar              // updir (parent) bar  
655          if (chopsl($fsDir) != chopsl($fsRoot)) {          if (chopsl($fsDir) != chopsl($fsRoot)) {
656                  $parent = dirname($relDir) ;                  $parent = dirname($relDir) ;
657                  if ($parent == "") $parent = "/" ;                  if ($parent == "") $parent = "/" ;
# Line 649  function Navigate($fsRoot,$relDir) { Line 667  function Navigate($fsRoot,$relDir) {
667                  return $out;                  return $out;
668          }          }
669    
670          $dsort = $HTTP_GET_VARS[dsort];          if (! HTTP_GET_VAR("dsort")) $dsort = "name"; // default directory sort
         if (! isset($dsort)) $dsort = "name";   // default directory sort  
671    
672          $dsort_arr = array(          $dsort_arr = array(
673                  "name" => array ("rname", "note"),                  "name" => array ("rname", "note"),
# Line 659  function Navigate($fsRoot,$relDir) { Line 676  function Navigate($fsRoot,$relDir) {
676                  "rnote" => array ("name", "note")                  "rnote" => array ("name", "note")
677                  );                  );
678    
679          $fsort = $HTTP_GET_VARS[fsort];          if (! HTTP_GET_VAR("fsort")) $fsort = "name"; // default directory sort
         if (! isset($fsort)) $fsort = "name";   // default directory sort  
680    
681          $fsort_arr = array(          $fsort_arr = array(
682                  "name" => array ("rname", "note", "date", "size"),                  "name" => array ("rname", "note", "date", "size"),
# Line 676  function Navigate($fsRoot,$relDir) { Line 692  function Navigate($fsRoot,$relDir) {
692          $D="D=".urlencode($relDir);          $D="D=".urlencode($relDir);
693    
694          function self_args($arr = array()) {          function self_args($arr = array()) {
695                    global $self;
696                  $arg = implode("&",$arr);                  $arg = implode("&",$arr);
697                  if ($arg) {                  if ($arg) {
698                          return $self."?".$arg;                          return $self."?".$arg;
# Line 713  function Navigate($fsRoot,$relDir) { Line 730  function Navigate($fsRoot,$relDir) {
730                          $dir = $dirList[$key];                          $dir = $dirList[$key];
731    
732                          $info_url=self_args(array("A"=>"A=E", "F"=>"F=".urlencode($dir), "D"=>$D));                          $info_url=self_args(array("A"=>"A=E", "F"=>"F=".urlencode($dir), "D"=>$D));
733                          $dir_url=$self."?D=".urlencode($relDir."/".$dir);                          $dir_url=$self."?D=".urlencode(chopsl($relDir)."/".$dir);
734                          include("$html/Navigate-dirEntry.html");                          include("$html/Navigate-dirEntry.html");
735    
736                  }  // iterate over dirs                  }  // iterate over dirs
# Line 859  function Navigate($fsRoot,$relDir) { Line 876  function Navigate($fsRoot,$relDir) {
876  <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>  <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>
877    
878  <?  <?
879  if (file_exists(".info.inc")) {  
880    if (file_exists("$fsRealmDir/$realm".$realm_sep."info.inc")) {
881          print "<TR><TD></TD><TD COLSPAN=5>";          print "<TR><TD></TD><TD COLSPAN=5>";
882          include(".info.inc");          include("$fsRealmDir/$realm".$realm_sep."info.inc");
883          print "</TD></TR>          print "</TD></TR><TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";
884          <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";  } elseif (file_exists("$gblRepositoryDir/.info.inc")) {
885            print "<TR><TD></TD><TD COLSPAN=5>";
886            include("$gblRepositoryDir/.info.inc");
887            print "</TD></TR><TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";
888  }  }
889    
890    
891  ?>  ?>
892    
893  <FORM METHOD="POST" ACTION="<?= $self ?>">  <FORM METHOD="POST" ACTION="<?= $self ?>">
# Line 892  function UploadPage($fsRoot, $relDir, $f Line 915  function UploadPage($fsRoot, $relDir, $f
915          global $html, $HTTP_SERVER_VARS;          global $html, $HTTP_SERVER_VARS;
916    
917          $self = $HTTP_SERVER_VARS["PHP_SELF"] ;          $self = $HTTP_SERVER_VARS["PHP_SELF"] ;
         if ($relDir == "") $relDir = "/" ;  
   
918          include("$html/UploadPage.html");          include("$html/UploadPage.html");
919    
920  } // end function UploadPage  } // end function UploadPage
# Line 903  function UploadPage($fsRoot, $relDir, $f Line 924  function UploadPage($fsRoot, $relDir, $f
924  // Error with sysadmin flag are reported to error_log or hidden from  // Error with sysadmin flag are reported to error_log or hidden from
925  // users  // users
926    
927  function Error($title,$text="",$sysadmin=0) {  function Error($title,$text="",$sysadmin=0,$no_404=0) {
928          global $gblSeparateAdminMessages,          global $gblSeparateAdminMessages,
929                  $gblMailAdminMessages,$realm,                  $gblMailAdminMessages,$realm,
930                  $HTTP_SERVER_VARS;                  $HTTP_SERVER_VARS;
931          if (! headers_sent()) header("HTTP/1.0 404 Not Found");          if (! headers_sent() && ! $no_404) header("HTTP/1.0 404 Not Found");
932          if ($sysadmin) {          if ($sysadmin) {
933                  if ($gblSeparateAdminMessages) {                  if ($gblSeparateAdminMessages) {
934                          $user="Your administrator ";                          $user="Your administrator ";
# Line 1076  function safe_rename($fromdir,$fromfile, Line 1097  function safe_rename($fromdir,$fromfile,
1097          function try_rename($from,$to) {          function try_rename($from,$to) {
1098  #               print "$from -> $to\n";  #               print "$from -> $to\n";
1099                  if (file_exists($from) && is_writeable(dirname($to))) {                  if (file_exists($from) && is_writeable(dirname($to))) {
1100                          rename($from,$to);                          return rename($from,$to);
1101                    } else {
1102                            return 0;
1103                  }                  }
1104          }          }
1105    
1106          function try_dir($todir) {          function try_dir($todir) {
1107                  if (! file_exists($todir)) {                  if (! file_exists($todir)) {
1108                          mkdir($todir,0700);                          @mkdir($todir,0700);
1109                  }                  }
1110          }          }
1111    
# Line 1092  function safe_rename($fromdir,$fromfile, Line 1115  function safe_rename($fromdir,$fromfile,
1115    
1116  #       print "<pre>$fromdir / $fromfile -> $todir / $tofile\n\n";  #       print "<pre>$fromdir / $fromfile -> $todir / $tofile\n\n";
1117    
1118          try_rename("$fromdir/$fromfile","$todir/$tofile");          if (! try_rename("$fromdir/$fromfile","$todir/$tofile")) Error("Rename error","Can't rename file <tt>$fromfile</tt> to <tt>$tofile</tt>",1);
1119          try_dir("$todir/.log");          try_dir("$todir/.log");
1120          try_rename("$fromdir/.log/$fromfile","$todir/.log/$tofile");          try_rename("$fromdir/.log/$fromfile","$todir/.log/$tofile");
1121          try_dir("$todir/.note");          try_dir("$todir/.note");
# Line 1203  function Download($path,$force=0) { Line 1226  function Download($path,$force=0) {
1226  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1227    
1228  function chopsl($path) {  function chopsl($path) {
         if (substr($path,strlen($path)-1,1) == "/") $path=substr($path,0,strlen($path)-1);  
1229          $path=str_replace("//","/",$path);          $path=str_replace("//","/",$path);
1230            if (substr($path,strlen($path)-1,1) == "/") $path=substr($path,0,strlen($path)-1);
1231          return $path;          return $path;
1232  }  }
1233    
# Line 1218  function chopsl($path) { Line 1241  function chopsl($path) {
1241          by Vyacheslav Zavadsky <zavadsky@braysystems.com>          by Vyacheslav Zavadsky <zavadsky@braysystems.com>
1242  */  */
1243    
1244  define(trmask_not,1 << 0);  define('trmask_not',1 << 0);
1245  define(trmask_clear,1 << 1);  define('trmask_clear',1 << 1);
1246  define(trmask_deny,1 << 2);  define('trmask_deny',1 << 2);
1247  define(trmask_one_level,1 << 3);  define('trmask_one_level',1 << 3);
1248  define(trmask_group,1 << 4);  define('trmask_group',1 << 4);
1249    
1250  define(trperm_r,1 << 5);  define('trperm_r',1 << 5);
1251  define(trperm_w,1 << 6);  define('trperm_w',1 << 6);
1252  define(trperm_b,1 << 7);  define('trperm_b',1 << 7);
1253  define(trperm_n,1 << 8);  define('trperm_n',1 << 8);
1254    
1255  $trustee_a2n = array(  $trustee_a2n = array(
1256          '!' => trmask_not,          '!' => trmask_not,
# Line 1275  if (! file_exists($trustee_conf)) { Line 1298  if (! file_exists($trustee_conf)) {
1298          $error="<tt>".dirname($trustee_php)."</tt> must be writable by web server user";          $error="<tt>".dirname($trustee_php)."</tt> must be writable by web server user";
1299  } elseif (file_exists($trustee_php) && !is_writable($trustee_php)) {  } elseif (file_exists($trustee_php) && !is_writable($trustee_php)) {
1300          $error="trustees cache file <tt>$trustee_php</tt> exists, but is not writable by web server";          $error="trustees cache file <tt>$trustee_php</tt> exists, but is not writable by web server";
1301  } elseif (1 || filemtime($trustee_conf) >= filemtime($trustee_php)) {  } elseif (@filemtime($trustee_conf) >= @filemtime($trustee_php)) {
1302          $fp_php=@fopen($trustee_php,"w");          $fp_php=@fopen($trustee_php,"w");
1303          fputs($fp_php,"<?php // don't edit by hand!\n");          fputs($fp_php,"<?php // don't edit by hand!\n");
1304    
# Line 1311  if (! file_exists($trustee_conf)) { Line 1334  if (! file_exists($trustee_conf)) {
1334                                                  $error.="trustee error in line '$l' [Unknown modifier '$ch']<br>\n";                                                  $error.="trustee error in line '$l' [Unknown modifier '$ch']<br>\n";
1335                                          }                                          }
1336                                  }                                  }
1337                                  $tr_arr[$path][$user] |= $perm;                                  if (isset($tr_arr[$path][$user])) {
1338                                            $tr_arr[$path][$user] |= $perm;
1339                                    } else {
1340                                            $tr_arr[$path][$user] = $perm;
1341                                    }
1342                          }                          }
1343                  }                  }
1344          }          }
# Line 1350  if (! file_exists($trustee_conf)) { Line 1377  if (! file_exists($trustee_conf)) {
1377          fclose($fp_php);          fclose($fp_php);
1378  }  }
1379    
1380  if ($error) {  if (isset($error)) {
1381          Error("Trustee error",$error,1);          Error("Trustee error",$error,1);
1382  } else {  } else {
1383          include("$trustee_php");          include_once("$trustee_php");
1384  }  }
1385    
1386  return 1;  return 1;
# Line 1361  return 1; Line 1388  return 1;
1388  }//init_trustee  }//init_trustee
1389    
1390  function in_group($user,$group) {  function in_group($user,$group) {
1391          return in_array($groups[$group],$user);          global $groups;
1392            return in_array($user,$groups[$group]);
1393  }  }
1394    
1395  // helper function  // helper function
1396  function unroll_perm($u,$t,$user,$perm) {  function unroll_perm($u,$t,$user,$perm,$one_level) {
1397          // check user  
1398          if ($t & trmask_not && ($u==$user)) continue;          if ($t & trmask_one_level && !$one_level) return $perm;
1399          if (!($t & trmask_not) && ($u!=$user)) continue;  
1400            // user is user whose trustee is this
1401            if ($t & trmask_not && ($u==$user)) return $perm;
1402            if (!($t & trmask_not) && ($u!=$user)) return $perm;
1403    
1404          if ($t & trmask_deny) {          if ($t & trmask_deny) {
1405                  if ($t & trmask_clear) {                  if ($t & trmask_clear) {
1406                          $perm[deny] &= ~$t;                          $perm['deny'] &= ~$t;
1407                  } else {                  } else {
1408                          $perm[deny] |= $t;                          $perm['deny'] |= $t;
1409                  }                  }
1410          } elseif ($t & trmask_clear) {          } elseif ($t & trmask_clear) {
1411                  $perm[allow] &= ~$t;                  $perm['allow'] &= ~$t;
1412          } else {          } else {
1413                  $perm[allow] |= $t;                  $perm['allow'] |= $t;
1414          }          }
1415          return $perm;          return $perm;
1416  }// end of helper function  }// end of helper function
1417    
1418  function check_trustee($user,$path) {  function check_trustee($user,$path) {
1419          global $trustees;          global $trustees;
1420          $perm[allow] = 0;          $perm['allow'] = 0;
1421          $perm[deny] = 0;          $perm['deny'] = 0;
1422    
1423            if (! isset($trustees)) Error("Trustees not found","Can't find in-memory trustee structure \$trustees. Probably bug in code. Contact <tt>dpavlin@rot13.org</tt>",1);
1424    
1425    global $debug;
1426    $debug .= "<br>check_trustee $path ... ";
1427    
1428          $path_arr=explode("/",$path);          $path_arr=explode("/",$path);
1429          $path = "/";          $tmppath = "/";
1430          while (count($path_arr)) {          while (count($path_arr)) {
1431                  if (substr($path,strlen($path)-1,1) != "/") $path.="/";                  $tmppath.=array_shift($path_arr);
1432                  $path.=array_shift($path_arr);  $debug.= ">> $tmppath ";
1433                  $tr = $trustees[$path];  
1434                    if (! isset($trustees[$tmppath])) continue;
1435                    $tr = $trustees[$tmppath];
1436    
1437                    $one_level = (!count($path_arr));
1438    $debug.=" O($one_level) ";
1439    
1440                  if (isset($tr)) {                  if (isset($tr)) {
1441                          // first apply trustee for all                          // first apply trustee for all
1442                          if (isset($tr['*'])) {                          if (isset($tr['*'])) {
1443                                  $perm = unroll_perm($user,$tr['*'],$user, $perm);                                  $perm = unroll_perm($user,$tr['*'],'*', $perm, $one_level);
1444                                  unset($tr['*']);                                  unset($tr['*']);
1445                          }                          }
1446                          // then apply group policies                          // then apply group policies
1447                          foreach ($tr as $u=>$t) {                          foreach ($tr as $g=>$t) {
1448                                  if ($t & trmask_group && in_group($user,$u)) {                                  if ($t & trmask_group && in_group($user,$g)) {
1449                                          // resolv user                                          // resolv user
1450                                          $t = $t & ~trmask_group;                                          $t = $t & ~trmask_group;
1451                                          $u = $user;                                          $perm = unroll_perm($user,$t,$g, $perm, $one_level);
1452                                          $perm = unroll_perm($u,$t,$user, $perm);                                          unset($tr[$g]);
                                         unset($tr[$u]);  
1453                                  }                                  }
1454                          }                          }
1455                          // then apply use policy                          // then apply user policy
1456                          if (isset($tr[$user])) {                          if (isset($tr[$user])) {
1457                                  $perm = unroll_perm($user,$tr[$user],$user, $perm);                                  $perm = unroll_perm($user,$tr[$user],$user, $perm,$one_level);
1458                                  unset($tr[$user]);                                  unset($tr[$user]);
1459                          }                          }
   
1460                  }                  }
1461    $debug.="d(".display_trustee($perm['deny']).") a(".display_trustee($perm['allow']).") ";
1462    
1463          }          }
1464  #print "<br>user: $user path: $path perm: ";  $debug.="<br>check_trustee: user: $user path: $path==$tmppath perm: ";
1465  #print "d: $perm[deny] (".display_trustee($perm[deny]).") a: $perm[allow] (".display_trustee($perm[allow]).")<Br>\n";  $debug.="d: ".$perm['deny']." (".display_trustee($perm['deny']).") a: ".$perm['allow']." (".display_trustee($perm['allow']).")<Br>\n";
1466          return $perm;          return $perm;
1467  }  }
1468    
# Line 1429  function check_trustee($user,$path) { Line 1470  function check_trustee($user,$path) {
1470    
1471  function check_perm($path,$trperm) {  function check_perm($path,$trperm) {
1472          global $gblLogin,$HAVE_TRUSTEE;          global $gblLogin,$HAVE_TRUSTEE;
1473  print "<br>check_perm: <tt>$path</tt> test perm ".display_trustee($perm)."<br>\n";  
1474            global $debug;
1475    $debug.="<br>check_perm: on <tt>$path</tt> for perm ".display_trustee($trperm)."<br>\n";
1476    
1477          $return = ! $HAVE_TRUSTEE;          $return = ! $HAVE_TRUSTEE;
1478          if ($HAVE_TRUSTEE) {          if ($HAVE_TRUSTEE) {
1479                  $perm = check_trustee($gblLogin,$path);                  $perm = check_trustee($gblLogin,$path);
1480  print " d: $perm[deny] (".display_trustee($perm[deny]).") a: $perm[allow] (".display_trustee($perm[allow]).") perm: $trperm";  $debug.=" d: ".$perm['deny']." (".display_trustee($perm['deny']).") a: ".$perm['allow']." (".display_trustee($perm['allow']).") perm to have: $trperm (".display_trustee($trperm).")";
1481                  if ($perm[deny] & $trperm) $return=0;                  if ($perm['deny'] & $trperm) $return=0;
1482                  elseif ($perm[allow] & $trperm) $return=1;                  elseif (($perm['allow'] & $trperm) == $trperm) $return=1;
1483          }          }
1484  print " return: $return<br>\n";  $debug.=" return: $return<br>\n";
1485          return($return);          return($return);
1486  }  }
1487    
# Line 1467  function readMime() { Line 1511  function readMime() {
1511  }  }
1512    
1513  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1514    
1515    // check for invalid characters in filename and dirname (.. and /)
1516    
1517    function check_dirname($file) {
1518            if (strstr($file,"..")) Error("Security violation","No parent dir <tt>..</tt> allowed in directory name <tt>$file</tt>",1);
1519    }
1520    
1521    function check_filename($file) {
1522            if (strstr($file,"..")) Error("Security violation","No parent dir <tt>..</tt> allowed in file name <tt>$file</tt>",1);
1523            if (strstr($file,"/")) Error("Security violation","No slashes <tt>/</tt> allowed in file name <tt>$file</tt>",1);
1524    }
1525    
1526    //////////////////////////////////////////////////////////////////
1527    
1528    // functions to move HTTP server variables to global namespace
1529    // [replacement for register_globals in php.ini]
1530    
1531    function HTTP_GET_VAR($var) {
1532            global $HTTP_GET_VARS, $GLOBALS;
1533            if (isset($HTTP_GET_VARS[$var])) {
1534                    $GLOBALS[$var] = stripSlashes($HTTP_GET_VARS[$var]);
1535                    return $GLOBALS[$var];
1536            }
1537    }
1538    
1539    function HTTP_POST_VAR($var) {
1540            global $HTTP_GET_VARS, $GLOBALS;
1541            if (isset($HTTP_GET_VARS[$var])) {
1542                    $GLOBALS[$var] = stripSlashes($HTTP_GET_VARS[$var]);
1543                    return $GLOBALS[$var];
1544            }
1545    }
1546    
1547    //////////////////////////////////////////////////////////////////
1548    
1549    function Warn($text) {
1550    }
1551    
1552    //////////////////////////////////////////////////////////////////
1553  // MAIN PROGRAM  // MAIN PROGRAM
1554    
1555          $gblFilePerms = 0640 ;         // default for new files          $gblFilePerms = 0640 ;         // default for new files
1556          $gblDirPerms  = 0750 ;          // default for new dirs          $gblDirPerms  = 0750 ;          // default for new dirs
1557    
1558          if (isset($STYLE) && $STYLE == "get") {          if (isset($HTTP_GET_VARS["STYLE"]) && $HTTP_GET_VARS["STYLE"] == "get") {
1559                  include("$html/docman.css");                  include("$html/docman.css");
1560                  exit;                  exit;
1561          }          }
# Line 1490  function readMime() { Line 1573  function readMime() {
1573          if (! isset($fsRealmDir)) {          if (! isset($fsRealmDir)) {
1574                  $fsRealmDir = "$gblIncDir/realm";                  $fsRealmDir = "$gblIncDir/realm";
1575          }          }
1576          $realm_config = "$fsRealmDir/$realm.conf";  
1577            // try to add dir to script name to realm var
1578            if (is_dir("$fsRealmDir/$realm/".dirname($HTTP_SERVER_VARS["SCRIPT_NAME"]))) {
1579                    $realm .= dirname($HTTP_SERVER_VARS["SCRIPT_NAME"]);
1580                    $realm_sep = "/";
1581            } else {
1582                    $realm_sep = ".";
1583            }
1584    
1585            $realm_config = $fsRealmDir."/".$realm.$realm_sep."conf";
1586    
1587          // read user-defined configuration          // read user-defined configuration
1588          if (file_exists($realm_config)) {          if (file_exists($realm_config)) {
# Line 1508  function readMime() { Line 1600  function readMime() {
1600                  Error("Configuration error","Can't find user handling module at <tt>$gblIncDir/htusers/$gblUsers.php</tt> ! Please fix <tt>$realm_config</tt>");                  Error("Configuration error","Can't find user handling module at <tt>$gblIncDir/htusers/$gblUsers.php</tt> ! Please fix <tt>$realm_config</tt>");
1601          }          }
1602    
1603            // take additional login vars
1604            HTTP_GET_VAR("relogin");
1605            HTTP_GET_VAR("force_login");
1606    
1607          // if no password, or empty password logout          // if no password, or empty password logout
1608          if (          if (
1609                  isset($gblLogin) && (                  isset($gblLogin) && (
# Line 1526  function readMime() { Line 1622  function readMime() {
1622          if (!is_dir($gblRepositoryDir)) Error("Repository dir not found","Can't find repository directory <tt>$gblRepositoryDir</tt>. Please fix that in <tt>$realm_config</tt> variable <tt>\$gblRepositoryDir</tt>.",1);          if (!is_dir($gblRepositoryDir)) Error("Repository dir not found","Can't find repository directory <tt>$gblRepositoryDir</tt>. Please fix that in <tt>$realm_config</tt> variable <tt>\$gblRepositoryDir</tt>.",1);
1623    
1624          // trustee (ACL) file configuration          // trustee (ACL) file configuration
1625          $trustee_conf="$gblIncDir/realm/$realm.trustee";          $trustee_conf="$fsRealmDir/$realm".$realm_sep."trustee";
1626          // compiled version of trustee file          // compiled version of trustee file
1627          $trustee_php="$gblRepositoryDir/.trustee.php";          $trustee_php="$gblRepositoryDir/.trustee.php";
1628          // get ACL informations          // get ACL informations
1629          $HAVE_TRUSTEE = init_trustee();          $HAVE_TRUSTEE = init_trustee();
1630    
1631          if (strtolower($gblLogin) == "anonymous" || !isset($gblPasswd)) {          if (strtolower($gblLogin) == "anonymous" || !isset($gblLogin)) {
1632                  $perm = check_trustee($gblLogin,$path);                  $perm = check_trustee("anonymous","/");
1633                  // browsing must be explicitly allowed for root directory                  // browsing must be explicitly allowed for root directory
1634                  // of repository for anonymous user to work!                  // of repository for anonymous user to work!
1635                  if ($perm[allow] & trperm_b) {                  if ($perm['allow'] & trperm_b) {
1636                            $gblLogin = $gblPasswd = "anonymous";
1637                          $secHash = md5($gblLogin.$gblPasswd);                          $secHash = md5($gblLogin.$gblPasswd);
1638                          $gblUserName = "Anonymous user";                          $gblUserName = "Anonymous user";
1639                  }                  }
# Line 1547  function readMime() { Line 1644  function readMime() {
1644                  isset($relogin) && $secHash == $relogin) {                  isset($relogin) && $secHash == $relogin) {
1645                  header("WWW-authenticate: basic realm=\"$realm\"") ;                  header("WWW-authenticate: basic realm=\"$realm\"") ;
1646                  header("HTTP/1.0 401 Unauthorized") ;                  header("HTTP/1.0 401 Unauthorized") ;
1647                  Error("401 Unauthorized","No trespassing !");                  Error("401 Unauthorized","No trespassing !",0,1);
1648          }          }
1649    
1650    
1651          // read mime.types          // read mime.types
1652          readMime();          readMime();
1653    
1654          // get current directory relative to $gblFsRoot          if ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {
1655          $relDir = $DIR ;        // from POST                  // take variables from server
1656          if ($relDir == "") {    // not defined in POST ?                  if (HTTP_POST_VAR("FN")) check_filename($FN);
1657                  $relDir = urldecode($D) ;  // then use GET                  if (HTTP_POST_VAR("DIR")) {
1658          }                                check_dirname($DIR);
1659                            $relDir = $DIR;
1660          $relDir=stripSlashes($relDir);                  } else {
1661                            trigger_error("Can't get DIR",E_USER_WARNING);
1662          if ($relDir == "/") $relDir = "" ;                        }
1663          // default : website root = ""                  if (HTTP_POST_VAR("RELPATH")) check_dirname($RELPATH);
1664                    HTTP_POST_VAR("T");
1665          if (strstr($relDir,"..")) Error("No updirs allowed");                  HTTP_POST_VAR("CONFIRM");
1666    
1667          // full paths contain "fs" or "Fs". Paths realitve to root of          } else {
1668          // website contain "rel" or "Rel". The script won't let you                  // get
1669          // edit anything above directory equal to http://server.com                  HTTP_GET_VAR("A");
1670          // i.e. below $gblFsRoot.                  if (HTTP_GET_VAR("D")) {
1671                            check_dirname($D);
1672                            $D=urldecode($D);
1673                            $relDir = $D;
1674                    } else {
1675                            //trigger_error("Can't get D",E_USER_WARNING);
1676                            $relDir = "/";
1677                    }
1678                    if (HTTP_GET_VAR("F")) check_filename($F);
1679            }
1680    
1681          $relScriptDir = dirname($SCRIPT_NAME) ;                  $relScriptDir = dirname($HTTP_SERVER_VARS["SCRIPT_NAME"]) ;    
1682          // i.e. /docman          // i.e. /docman
1683    
1684          // start on server root          // start on server root
1685          $gblFsRoot = $gblRepositoryDir;          $gblFsRoot = $gblRepositoryDir;
1686          // i.e. /home/httpd/html          // i.e. /home/httpd/repository
1687    
1688          $fsDir = $gblFsRoot . $relDir ; // current directory          $fsDir = $gblFsRoot . $relDir ; // current directory
1689          if ( !is_dir($fsDir) ) Error("Dir not found",$relDir) ;          if ( !is_dir($fsDir) ) Error("Dir not found","Can't find <tt>$relDir</tt> which points to <tt>$fsDir</tt>",1) ;
1690    
1691            if ($relDir == "") $relDir="/";
1692    
1693          if (isset($HTTP_SERVER_VARS["HTTPS"]) && $HTTP_SERVER_VARS["HTTPS"] == "on") {          if (isset($HTTP_SERVER_VARS["HTTPS"]) && $HTTP_SERVER_VARS["HTTPS"] == "on") {
1694                  $webRoot  = "https://";                  $webRoot  = "https://";
# Line 1588  function readMime() { Line 1697  function readMime() {
1697          }          }
1698          $webRoot .= $HTTP_SERVER_VARS["HTTP_HOST"] . $relScriptDir;          $webRoot .= $HTTP_SERVER_VARS["HTTP_HOST"] . $relScriptDir;
1699    
1700          // take variables from server          if (HTTP_POST_VAR("POSTACTION")) switch ($POSTACTION) {
         $FN=stripSlashes($HTTP_POST_VARS["FN"]);  
         $DIR=stripSlashes($HTTP_POST_VARS["DIR"]);  
         $RELPATH=stripSlashes($HTTP_POST_VARS["RELPATH"]);  
         $T=stripSlashes($HTTP_POST_VARS["T"]);  
         $CONFIRM=stripSlashes($HTTP_POST_VARS["CONFIRM"]);  
   
         // get  
         $A=stripSlashes($HTTP_GET_VARS["A"]);  
         $D=stripSlashes($HTTP_GET_VARS["D"]);  
   
 //      if (isset($F)) Error("Document manager system error","variable $F shouldn't be set here (re-check old code)",1);  
 //      $F=stripSlashes($HTTP_SERVER_VARS["PATH_INFO"]);  
         $F=stripSlashes($HTTP_GET_VARS["F"]);  
   
         switch ($HTTP_POST_VARS["POSTACTION"]) {  
1701          case "UPLOAD" :          case "UPLOAD" :
1702                  $FN_name=stripSlashes($HTTP_POST_FILES["FN"]["tmp_name"]);                  $FN_name=stripSlashes($HTTP_POST_FILES["FN"]["tmp_name"]);
1703                    $FN=stripSlashes($HTTP_POST_FILES["FN"]["name"]);
1704                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;
1705                  if (strstr($FN_name,"/"))  
                         Error("Non-conforming filename") ;  
                 // TODO : should rather check for escapeshellcmds  
                 // but maybe RFC 18xx asserts safe filenames ....  
1706                  $source = $FN_name ;                  $source = $FN_name ;
1707                  if (! file_exists($source)) {                  if (! file_exists($source)) {
1708                          Error("You must select file with browse to upload it!");                          Error("You must select file with browse to upload it!");
1709                  }                  }
1710    
1711                  $FILENAME = $HTTP_POST_VARS["FILENAME"];                  $FILENAME = $HTTP_POST_VARS["FILENAME"];
1712                    check_filename($FILENAME);
1713    
1714                  if (! isset($FILENAME)) {       // from update file                  if (! isset($FILENAME)) {       // from update file
1715                          $target = "$fsDir/$FN_name" ;                          $target = "$fsDir/".basename($FN);
1716                  } else {                  } else {
1717                          $target = "$fsDir/$FILENAME";                          $target = "$fsDir/$FILENAME";
1718                  }                  }
# Line 1750  function readMime() { Line 1845  function readMime() {
1845          case "RENAME" :            case "RENAME" :  
1846                  if ( $CONFIRM != "on" ) break ;                  if ( $CONFIRM != "on" ) break ;
1847    
1848                    $NEWNAME=stripSlashes($HTTP_POST_VARS["NEWNAME"]);
1849                  LogIt("$fsDir/$FN","renamed $FN to $NEWNAME",trperm_r);                  LogIt("$fsDir/$FN","renamed $FN to $NEWNAME",trperm_r);
1850                  safe_rename($fsDir,$FN,$NEWNAME);                  safe_rename($fsDir,$FN,$NEWNAME);
1851                  break ;                  break ;
1852    
1853          case "NOTE" :            case "NOTE" :  
1854                    $NOTE=stripSlashes($HTTP_POST_VARS["NOTE"]);
1855                  WriteNote("$fsDir/$FN","$NOTE");                  WriteNote("$fsDir/$FN","$NOTE");
1856                  break ;                  break ;
1857    
# Line 1768  function readMime() { Line 1865  function readMime() {
1865          }          }
1866    
1867          // common to all POSTs : redirect to directory view ($relDir)          // common to all POSTs : redirect to directory view ($relDir)
1868          if ( $POSTACTION != "" ) {          if (isset($POSTACTION)) {
1869                  $tstr = $PHP_SELF . "?D=" . urlencode($relDir) ;                  $tstr = $PHP_SELF . "?D=" . urlencode($relDir) ;
1870                  header("Location: " . $tstr) ;                    header("Location: " . $tstr) ;  
1871                  exit ;                  exit ;
# Line 1781  function readMime() { Line 1878  function readMime() {
1878          // $A=Co : checkout file $D/$F          // $A=Co : checkout file $D/$F
1879          // $A=Ci : checkin file $D/$F          // $A=Ci : checkin file $D/$F
1880          // $A=V : view file (do nothing except log)          // $A=V : view file (do nothing except log)
1881          // $A=I : include file .$F.php from $gblFsRoot          // $A=I : include file .$F.php from [$gblIncDir|realm]/include_php
1882          // default : display directory $D          // default : display directory $D
1883    
1884          switch ($A) {          if (isset($A)) switch ($A) {
1885          case "U" :          case "U" :
1886                  // upload to $relDir                  // upload to $relDir
1887                    if (! check_perm($relDir, trperm_w))
1888                            Error("Write access denied","You don't have permission to write in <tt>$relDir</tt>");
1889                  if (!is_writeable($gblFsRoot . $relDir))                  if (!is_writeable($gblFsRoot . $relDir))
1890                          Error("Write access denied",$relDir) ;                          Error("Write access denied","User <tt>$gblLogin</tt> has permission on <tt>$relDir</tt>, but directory is not writable",1);
1891                  $text  = "Use this page to upload a single " ;                  $text  = "Use this page to upload a single " ;
1892                  $text .= "file to <B>$realm</B>." ;                  $text .= "file to <B>$realm</B>." ;
1893                  StartHTML("(Upload Page)", $text) ;                  StartHTML("(Upload Page)", $text) ;
# Line 1836  function readMime() { Line 1935  function readMime() {
1935                  EndHTML() ;                  EndHTML() ;
1936                  exit;                  exit;
1937          case "I" :          case "I" :
1938                  $F=stripSlashes($F);                  if (! isset($F) || $F == "")
1939                  $inc_file="${gblFsRoot}/.${F}.php";                          Error("Can't find file to include","Your request didn't specify file to include which should be in variable <tt>F</tt> like <tt>$HTTP_SERVER_VARS[REQUEST_URI]<b>&F=include_php_file</b></tt>",1);
1940                  if (!isset($F) || $F == "" || !file_exists($inc_file)) Error("Fatal error $inc_file"); // can't find file to include                  $inc_file="$fsRealmDir/$realm".$realm_sep.$F.".php";
1941                    if (! file_exists($inc_file)) {
1942                            Error("Can't find file to include","Can't find include file <tt>$F.php</tt> in <tt>$fsRealmDir/$realm/</tt>. Meybe you should copy <tt>$gblIncDir/include_php/$F.php</tt> to <tt>$inc_file<tt> ?",1);
1943                    }
1944                  if (!is_readable($inc_file))                  if (!is_readable($inc_file))
1945                          Error("Read access to include file denied",".${F}.php");                          Error("Read access to include file denied","Can't read PHP include file <tt>$inc_file</tt>. Fix permissions on it.",1);
1946                  $text  = "Your include file should define \$text variable which holds this text and \$title variable which is page title";                  $text  = "Your include file should define \$text variable which holds this text and \$title variable which is page title";
1947                  $title = "You should define \$title variable with page title";                  $title = "You should define \$title variable with page title";
1948                  include($inc_file);                  include($inc_file);

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.21

  ViewVC Help
Powered by ViewVC 1.1.26