1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
|
<?php
// IPplan v4.92a
// Aug 24, 2001
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
require_once("../ipplanlib.php");
//include('../adodb/adodb-errorhandler.inc.php');
require_once("../adodb/adodb.inc.php");
require_once("../class.dbflib.php");
require_once("../layout/class.layout");
require_once("../auth.php");
require_once("../class.xptlib.php");
require_once("../class.templib.php");
// display the telephone number (TRUE) or mac address (FALSE) in the output table
define("TELNO", TRUE);
// display "Reserved" for network and broadcast addresses
define("SHOWRESERVED", TRUE);
// maximum time per record to allow for DNS queries
define("DNS_DELTA_TIME", "2");
$auth = new SQLAuthenticator(REALM, REALMERROR);
// And now perform the authentication
$grps=$auth->authenticate();
// set language
isset($_COOKIE["ipplanLanguage"]) && myLanguage($_COOKIE['ipplanLanguage']);
//setdefault("window",array("bgcolor"=>"white"));
//setdefault("table",array("cellpadding"=>"0"));
//setdefault("text",array("size"=>"2"));
$title=my_("Results of your search");
newhtml($p);
list($close) = myRegister("I:close"); // from modifyipform - close the popup?
$w=myheading($p, $title, $close ? false : true);
// explicitly cast variables as security measure against SQL injection
list($baseindex, $block, $showactive, $showdns, $action) = myRegister("I:baseindex I:block I:showactive I:showdns S:action");
list($userfld) = myRegister("A:userfld"); // from modifyipform - need to add rest flds
list($hname) = myRegister("S:hname"); // from modifyipformmul - need to add rest flds
list($search, $expr) = myRegister("S:search S:expr"); // search fields
list($user, $location, $descrip, $telno, $macaddr) = myRegister("S:user S:location S:descrip S:telno S:macaddr");
list($request) = myRegister("I:request"); // from modifyipform - dummy variable entered
// from displayrequestip.php
$formerror="";
// $ip can be array or string or undefined!
if (!isset($ip)) $ip=0;
if (is_array($ip)) {
foreach($ip as $key => $value) {
$ip[$key]=floor($value);
}
}
else {
$ip=floor($ip);
}
if (!$_GET and !$_POST) {
myError($w,$p, my_("You cannot reload or bookmark this page!"));
}
$ds=new IPplanDbf() or myError($w,$p, "Could not connect to database");
// get info from base table - do this first as safety check and because
// we need this info later
$result=$ds->GetBaseFromIndex($baseindex);
if (!$row = $result->FetchRow()) {
myError($w,$p, my_("Subnet cannot be found!"));
}
$maxcnt=$row["subnetsize"];
$baseaddr=$row["baseaddr"];
$netdescrip=$row["descrip"];
$cust=$row["customer"];
// script gets called back from modifyipform script so that user does
// not need to press back button
if ($_POST) {
if ($grp=$ds->GetBaseGrp($baseindex)) {
if (in_array($grp, $grps) or
$ds->TestCustomerGrp($baseindex, getAuthUsername())) {
// ---------------- are first x IP addresses of subnet blocked? ---------------
// ---------------- check that addresses are within subnet ---------------
// get lowest number of addresses in subnet that user is not allowed to
// modify - normally zero. If user belongs to multiple groups, takes lowest value
$limit = $ds->ds->GetOne("SELECT min(resaddr) AS cnt FROM grp WHERE grp ".$ds->grpSQL($grps));
foreach((array)$ip as $iptemp) { // cast ip to array
if ($iptemp-$baseaddr < $limit) {
myError($w,$p, sprintf("You may not modify the first %s subnet addresses", $limit));
}
if ($iptemp-$baseaddr < 0 or $iptemp-$baseaddr >= $maxcnt) {
myError($w,$p, "An address you are attempting to modify is outside of the subnet");
}
}
// ---------------- end check ---------------
// --------- test if ip addresses to update are within bounds ----------
foreach ($grps as $value) {
foreach ((array)$ip as $ipvalue) {
if ($extst = $ds->TestBounds($ipvalue, 1, $value)) {
// got an overlap, allowed to create
break 2;
}
}
}
// could not find address within any of the defined bounds
// so do not update
if (!$extst) {
if (is_array($ip)) {
myError($w,$p, my_("IP addresses not updated - out of defined authority boundary")."\n");
}
else {
myError($w,$p, sprintf(my_("IP address %s not updated - out of defined authority boundary"), inet_ntoa($ip))."\n");
}
}
// ---------------- end check ---------------
if ($md5str!=$ds->GetMD5($ip, $baseindex))
myError($w,$p,my_("Another user modified the information before you saved - restart"));
$ds->DbfTransactionStart();
// additional information will arrive as assoc array called template
// this is serialized into the info blob field of the database
// need to start class and verify data before inserting
if ($action=="delete") {
// loop through array returned from modifyipmulform.php
foreach((array)$ip as $iptemp) { // cast to array if not array already
// remove all attached files
RemoveAllFiles($ds, $baseindex, $iptemp);
// are there auto A records to delete?
$formerror .= DeleteDNS($ds, $w, $cust, $iptemp);
$ds->DeleteIP($iptemp, $baseindex);
}
$ds->DbfTransactionEnd();
insert($w,text(my_("IP address records deleted")));
}
else {
$err=FALSE;
$email="";
// if a specific network template exists, use that, else use generic template
$template=new IPplanIPTemplate("iptemplate", $cust, !TestBaseAddr($ip, $maxcnt));
// info field passed to ModifyIP must be "" if record is
// to be deleted from ipaddradd table automatically to
// conserve space - NB!
$info="";
if ($template->is_error() == FALSE) {
// PROBLEM HERE: if template create suddenly returns error (template file
// permissions, xml error etc), then each submit thereafter will erase
// previous contents - this is not good
$template->Merge($userfld);
$err=$template->Verify($w);
if ($template->is_blank() == FALSE) {
// grab email address from template for later use if this is an
// ip address request
if ($request and isset($template->userfld["email"]["value"]) and
preg_match('/^[\w-\.]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{2,3}$/',
$template->userfld["email"]["value"])) {
$email=$template->userfld["email"]["value"];
}
$info=$template->encode();
}
}
// ----- verify template and insert data into tables ----------
// ----- only insert if template verifies ok ------------------
if (!empty($hname)) {
$formerror .= UpdateDNS($ds, $w, $cust, $hname, $ip);
}
// is an address linked to another address - used for NAT?
if (!empty($lnk)) {
if (!testIP($lnk)) {
// substr required to strip space added with each submit if user is empty
// and also to ensure field does not overflow 80 characters
$user = substr(trim("LNK$lnk $user"), 0, 79);
$formerror .= UpdateLnk($ds, $w, $cust, $baseindex, $lnk, $ip);
}
else {
$formerror .= sprintf(my_("Invalid link address: %s"), $lnk)."\n";
}
}
// check if mac address is valid - all or nothing!
if (!empty($macaddr)) {
$oldmacaddr=$macaddr;
$macaddr=str_replace(array(":", "-", ".", " "), "", $macaddr);
if (strlen($macaddr)==12 and
preg_match("/^[a-f0-9A-F]*$/", $macaddr)) {
// check for duplicate mac address - only when subnet is marked as DHCP
if ($ds->ds->GetOne("SELECT ipaddr.macaddr
FROM base, ipaddr
WHERE base.customer=$cust AND
base.baseindex=ipaddr.baseindex AND
ipaddr.ipaddr!=$ip AND
ipaddr.macaddr=".$ds->ds->qstr($macaddr))) {
$formerror .= sprintf(my_("Duplicate MAC address: %s"), $oldmacaddr)."\n";
insert($w,anchor("searchall.php?cust=".$cust."&field=macaddr&search=".$macaddr,
my_("Show duplicate MAC addresses")));
insert($w, textbr());
}
}
else {
$formerror .= sprintf(my_("Invalid MAC address: %s"), $oldmacaddr)."\n";
}
}
if ($err==FALSE and $ds->ModifyIP($ip, $baseindex, $user, $location,
$telno, $macaddr, $descrip, $hname, $info) == 0) {
// ----- handle alerts if subnet gets low ----------
// count recs without network and broadcast addr
$recs=$ds->ds->GetOne("SELECT count(*) FROM ipaddr
WHERE baseindex=$baseindex AND
ipaddr!=$baseaddr AND
ipaddr!=$baseaddr+$maxcnt-1");
$utilization=($recs+2)/$maxcnt*100;
// send en e-mail if threshold is exceeded
if (SUBNETTHRESHOLD != 0 and $utilization>SUBNETTHRESHOLD) {
// Get e-mail of all admins of the subnet
$adminemails=$ds->ds->GetCol("SELECT DISTINCT(useremail) FROM base,usergrp,users
WHERE baseindex=$baseindex AND
usergrp.grp=base.admingrp AND
users.userid=usergrp.userid");
// Test if there is really someone to send a mail
foreach($adminemails as $emailtmp) {
if (!empty($emailtmp)) {
$sendwarningmail=TRUE;
}
}
if ($sendwarningmail) {
require_once("../class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SetLanguage("en", "../");
$mail->Host = EMAILSERVER; // SMTP server
$mail->From = HELPDESKEMAIL;
$mail->IsHTML(false);
$mail->FromName = "IP Plan";
foreach($adminemails as $emailtmp) {
if (!empty($emailtmp)) {
$mail->AddAddress($emailtmp);
}
}
$mail->Subject = "[IPplan] Subnet ".inet_ntoa($baseaddr)."/".inet_bits($maxcnt)." gets low";
$mail->Body="Subnet ".inet_ntoa($baseaddr)."/".inet_bits($maxcnt)." exdeeded ".SUBNETTHRESHOLD."% of utilization.\n";
$mail->Body.="Total addresses: $maxcnt\n";
$mail->Body.="Used addresses: ".($recs+2)." (including network and broadcast)\n";
$mail->Body.="Free addresses: ".($maxcnt-$recs-2)."\n";
$mail->Body.="Utilization: $utilization%\n";
if(!@$mail->Send()) {
$formerror .= my_("E-mail message was not sent")."\n";
$formerror .= my_("Mailer Error: ") . $mail->ErrorInfo;
}
else {
insert($w,textbr(my_("Warning E-mail message sent (utilization threshold exceeded)")));
}
}
}
// ----- handle email requests back to user ----------
// ok, we actioned an ip address request - delete the request record
if ($request) {
// email request details back to user - cannot automate this as do
// not know all details like gateway etc, so popup a mailto field
if (!empty($email)) {
$requestdesc=$ds->ds->GetOne("SELECT requestdesc FROM requestip
WHERE requestindex=$request");
$gw=$ds->ds->GetOne("SELECT ipaddr FROM ipaddr
WHERE baseindex=$baseindex AND
descrip LIKE ".$ds->ds->qstr("GW%"));
$body="?Subject=IP address request actioned&body=";
$body2="The request details submitted: $requestdesc\n\n";
$body2.="The IP address details allocated are as follows:\n\n";
$body2.="IP address: ".inet_ntoa($ip)."\n";
$body2.="Subnet mask: ".inet_ntoa(inet_aton(ALLNETS)+1 -
$maxcnt)."/".inet_bits($maxcnt)."\n";
if ($gw) {
$body2.="Default gateway: ".inet_ntoa($gw)."\n";
}
else {
$body2.="Default gateway: x.x.x.x\n";
}
$body2.="User information: $user\n";
$body2.="Location: $location\n";
$body2.="Description: $descrip\n";
$body2.="Telephone number: $telno\n";
$body2.="Host Name: $hname\n";
$body2.="MAC Address: $macaddr\n\n";
// fetch and add DNS servers
function dnsquery($ds, $cust) {
$body="";
if ($result=$ds->GetCustomerDNSInfo($cust)) {
while ($row = $result->FetchRow()) {
$body.="DNS server: ".$row[ipaddr]."\n";
}
}
if (!empty($body))
$body.="\n";
return $body;
}
$body2.=dnsquery($ds, $cust);
if (REQUESTREPLYBLIND==FALSE) {
insert($w, $con=container("div", array("class"=>"email")));
insert($con, textbr(my_("Send an email to the IP address requester with details of the allocated address")));
insert($con, anchor("mailto:$email$body".rawurlencode($body2),
my_("Email IP address requester")));
}
else {
//Send email notification that IP Request was entered
require_once("../class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SetLanguage("en", "../");
$mail->Host = EMAILSERVER; // SMTP server
$mail->From = HELPDESKEMAIL;
$mail->IsHTML(false);
$mail->FromName = "IP Plan";
$mail->AddAddress($email);
$mail->Subject = "IP address request actioned";
$mail->Body=$body2;
if(!@$mail->Send()) {
$formerror .= my_("E-mail message was not sent")."\n";
$formerror .= my_("Mailer Error: ") . $mail->ErrorInfo;
}
else {
insert($w,textbr(my_("IP request E-mail message sent")));
}
}
// ----- end handle email requests back to user ----------
}
$ds->ds->Execute("DELETE FROM requestip
WHERE requestindex=$request") and
$ds->AuditLog(sprintf(my_("User %s actioned request %s"),
getAuthUsername(), $request));
}
$ds->DbfTransactionEnd();
insert($w,textbr(my_("IP address details modified")));
}
else {
$formerror .= my_("IP address details could not be modified")."\n";
}
}
}
else {
$formerror .= my_("You are not the owner of the subnet")."\n";
}
}
else {
$formerror .= my_("Could not find the owner of the subnet - subnet possibly deleted by another user")."\n";
// this error is rare, but fatal. Do not bother trying to recover. SQL below will
// generate errors due to missing subnet.
myError($w,$p, $formerror);
}
}
myError($w,$p, $formerror, FALSE);
// this was a popup, display and add submit button
if ($close) {
insert($w,block("<p>"));
insert($w, submit(array("value"=>my_("Close"), "onclick"=>'window.close(); return false;')));
// insert($w, anchor(".", my_("Close"), array(onclick=>'window.close(); return false;')));
printhtml($p);
exit;
}
// what is the additional search SQL?
$sql=$ds->mySearchSql("descrip", $expr, $search);
// get detail from ipaddr table - could be nothing!
$result=$ds->GetSubnetDetails($baseindex, $sql);
// need number of rows - if none due to search, display message
// emulate for databases that do not have RecordCount
if (empty($search)) {
// no search, count recs without network and broadcast addr
// $recs may have already been computed
if (!isset($recs)) {
$recs=$ds->ds->GetOne("SELECT count(*) AS cnt
FROM ipaddr
WHERE baseindex=$baseindex AND
ipaddr!=$baseaddr AND
ipaddr!=$baseaddr+$maxcnt-1");
}
}
else {
$recs=$result->PO_RecordCount("ipaddr", "baseindex=$baseindex $sql");
}
if (!$recs) {
if ($search) { // only display error if searching and no records
myError($w,$p, my_("Search found no matching entries"));
}
}
// sanity check if MAXTABLESIZE in config.php is modified on the fly
// and person has maybe bookmarked paged
if ($baseaddr+$block*MAXTABLESIZE >= $baseaddr+$maxcnt) {
myError($w,$p, my_("This page was bookmarked and contains invalid information which cannot be displayed anymore - restart from main menu"));
}
insert($w,block("<h3>"));
insert($w,textbr(my_("Customer/autonomous system description:")." ".$ds->GetCustomerDescrip($cust)));
insert($w,text(my_("Subnet:")." ".
inet_ntoa($baseaddr)." ".my_("Mask:")." ".
inet_ntoa(inet_aton(ALLNETS)+1 -
$maxcnt)."/".inet_bits($maxcnt)));
insert($w,textbr());
insert($w,text(my_("Description:")." ".$netdescrip));
insert($w,block("<small>"));
insert($w,anchor("modifybase.php?cust=$cust&descrip=".urlencode($netdescrip),my_("Delete/Edit/Modify/Split/Join Subnet")));
insert($w,block("</small>"));
/* not all vars available for link
insert($w,anchor("modifysubnet.php?baseindex=".$row["baseindex"].
"&areaindex=".$areaindex."&rangeindex=".$rangeindex.
"&cust=".$cust."&descrip=".urlencode($row["descrip"]).
"&ipaddr=".urlencode($ipaddr)."&search=".urlencode($descrip).
"&grp=".urlencode($row["admingrp"]),
my_("Modify")));
// modifysubnet.php?baseindex=4336&areaindex=0&rangeindex=0&cust=25&descrip=Loopback&ipaddr=127&search=&grp=abcadm
*/
insert($w,block("</h3>"));
if ($showactive) {
// increase time limit for scans - will have no effect if safe mode is on
@set_time_limit(90);
}
else {
insert($w,anchor($_SERVER["PHP_SELF"]."?baseindex=".$baseindex."&showactive=1&block=".$block,
my_("Show used addresses")));
insert($w,textbr(my_(" This can take a while as each address is polled. Green is active, Red is inactive")));
}
if ($showdns) {
// increase time limit for dns query - will have no effect in safe mode is on
@set_time_limit(90);
}
else {
insert($w,anchor($_SERVER["PHP_SELF"]."?baseindex=".$baseindex."&showdns=1&block=".$block,
my_("Show DNS changes")));
insert($w,textbr(my_(" Show descriptions that do not match DNS reverse entries. Red is new DNS value")));
}
insert($w,block("<p>"));
// only display stats for networks with more than 1 host
if ($maxcnt > 1) {
insert($w,$tbig = table(array("cols"=>"3")));
insert($tbig,$c = cell());
// start form for drop down list
insert($c, $f = form(array("name"=>"MODIFYMULTIPLE",
"method"=>"post",
"action"=>"modifyipformmul.php")));
insert($f, $con=container("fieldset",array("class"=>"fieldset")));
insert($con, $legend=container("legend",array("class"=>"legend")));
insert($legend,textbr(my_("Select multiple addresses to do a bulk change")));
insert($con,textbr(my_("Ideal for reserving DHCP ranges")));
// placeholder for select box
insert($con, $consel=container("div"));
insert($con,hidden(array("name"=>"baseindex",
"value"=>$baseindex)));
insert($con,hidden(array("name"=>"block",
"value"=>$block)));
insert($con,hidden(array("name"=>"search",
"value"=>$search)));
insert($con,hidden(array("name"=>"expr",
"value"=>$expr)));
insert($con,textbr());
insert($con,submit(array("value"=>my_("Submit"))));
insert($con,freset(array("value"=>my_("Clear"))));
// draw the search box
$srch = new mySearch($w, array("baseindex"=>$baseindex, "block"=>$block, "showactive"=>$showactive), $search, "search");
$srch->legend=my_("Refine Search on Description");
$srch->expr=$expr;
$srch->expr_disp=TRUE;
$srch->Search(); // draw the sucker!
// placeholder for pager blocks
insert($w, $cblk = container("div"));
// start form for "Use next address" button
insert($w,text("| "));
insert($w,anchor("modifyipform.php?baseindex=$baseindex&baseaddr=$baseaddr&block=$block&expr=$expr&search=".urlencode($search),
my_("Use next available address")));
insert($w,text(" | "));
insert($w,anchor("modifyipform.php?baseindex=$baseindex&baseaddr=$baseaddr&block=$block&probe=1&expr=$expr&search=".urlencode($search),
my_("Use next available address and probe network if active")));
insert($w,textbr(" |"));
// three cells for better spacing
insert($tbig,$c = cell(array("width"=>"5%")));
// create stats cell for later use
insert($tbig,$cstats = cell(array("valign"=>"top")));
}
// create a table
insert($w,$t = table(array("cols"=>"8",
"class"=>"outputtable")));
// draw heading
setdefault("cell",array("class"=>"heading"));
insert($t,$ck1 = cell());
// display preceding cell later
insert($t,$c = cell());
insert($c,text(my_("User")));
insert($t,$c = cell());
insert($c,text(my_("Location")));
insert($t,$c = cell());
insert($c,text(my_("Device description")));
if (TELNO) {
insert($t,$c = cell());
insert($c,text(my_("Telephone Number")));
}
else {
insert($t,$c = cell());
insert($c,text(my_("MAC address")));
}
insert($t,$c = cell());
insert($c,textbr(my_("P")));
insert($c,textbr(my_("o")));
insert($c,text(my_("l")));
insert($t,$c = cell());
insert($c,text(my_("Last modified")));
insert($t,$ck2 = cell());
insert($ck2,text(my_("Changed by")));
$rr=new myFetchRow($result, $baseaddr, $maxcnt, empty($search) ? FALSE : TRUE);
$totcnt=0;
$vars=""; $anc="";
// fastforward till first record if not first block of data
while ($block and $totcnt < $block*MAXTABLESIZE and
$row = $rr->FetchRow()) {
if ($totcnt % MAXTABLESIZE == 0) {
$anc=inet_ntoa($row["ipaddr"])." - ";
}
else if ($totcnt % MAXTABLESIZE == MAXTABLESIZE-1) {
$vars=$_SERVER["PHP_SELF"]."?baseindex=".$baseindex."&block=".floor($totcnt/MAXTABLESIZE)."&showactive=".$showactive."&expr=$expr&search=".urlencode($search);
insert($cblk,block(" | "));
insert($cblk,anchor($vars, $anc.inet_ntoa($row["ipaddr"])));
}
$totcnt++;
}
$ipscan=array();
if ($showactive and NMAP != "") {
$nmapstart=inet_ntoa($baseaddr+($block*MAXTABLESIZE));
if ($maxcnt > MAXTABLESIZE) {
$nmapend=inet_ntoa($baseaddr+($block*MAXTABLESIZE)+MAXTABLESIZE-1);
}
else {
$nmapend=inet_ntoa($baseaddr+$maxcnt-1);
}
$ipscan = NmapScan(NmapRange($nmapstart, $nmapend));
// nmap had error due to safe mode?
if ($ipscan === FALSE) {
$showactive=0;
}
}
//capture data for the export view functionality
$export = new exportForm();
$export->addRow(array("ip_addr", "user", "location", "description", "hostname", (TELNO? "telephone":"mac_address"), "last_polled", "last_modified", "changed_by"));
$export->saveRow();
$pollcnt=array("d"=>0, "w"=>0, "m"=>0, "y"=>0);
// note for translations to work here, the next field should have exactly 4x elements
$pollflag=split(":", my_("D:W:M:Y"));
$pollflag["d"]=$pollflag[0];
$pollflag["w"]=$pollflag[1];
$pollflag["m"]=$pollflag[2];
$pollflag["y"]=$pollflag[3];
$cnt=0;
$lst=array();
while($row = $rr->FetchRow()) {
$export->addRow(NULL);
setdefault("cell",array("class"=>color_flip_flop()));
// work out inet_ntoa once as it is slow!
$ip=inet_ntoa($row["ipaddr"]);
$polled=0;
// did user select to scan if address is active?
if ($showactive) {
if (NMAP=="") {
if (ScanHost($ip, 1)) {
insert($t,$c = cell(array("class"=>"greencell")));
// should be transaction here!
$ds->UpdateIPPoll($baseindex, $row["ipaddr"]);
$polled=1;
}
else {
insert($t,$c = cell(array("class"=>"redcell")));
}
}
else {
if (isset($ipscan[$ip])) {
insert($t,$c = cell(array("class"=>"greencell")));
// should be transaction here!
$ds->UpdateIPPoll($baseindex, $row["ipaddr"]);
$polled=1;
}
else {
insert($t,$c = cell(array("class"=>"redcell")));
}
}
}
else {
insert($t,$c = cell());
}
// strange! brackets must be there in php 4.0.4p1, else code wrong!
$lnk="modifyipform.php?ip=".($row["ipaddr"]).
"&baseindex=".$baseindex."&block=".$block."&expr=$expr&search=".urlencode($search);
insert($c,anchor($lnk, $ip));
// insert($c,block(sprintf(' <A HREF="." ONCLICK="window.open(\'%s&close=1\', \'Name\', \'width=1000,height=600,toolbar=yes,scrollbars=yes\'); return false;">⇒</A>', $lnk)));
insert($c,block(sprintf(' <A HREF="." ONCLICK="window.open(\'%s&close=1\', \'Name\', \'width=1000,height=600,toolbar=yes,scrollbars=yes\'); return false;">↺</A>', $lnk)));
$export->addCell($ip);
insert($t,$c = cell());
// network address
if (SHOWRESERVED and $maxcnt > 2 and $row["ipaddr"] == $baseaddr) {
insert($c,text(my_("Reserved - network address"),
array("color"=>"#FF0000")));
insert($c,textbr());
$export->addCell(my_("Reserved - network address"));
}
// broadcast address
else if (SHOWRESERVED and $maxcnt > 2 and $row["ipaddr"] == $baseaddr+$maxcnt-1) {
insert($c,text(my_("Reserved - broadcast address"),
array("color"=>"#FF0000")));
insert($c,textbr());
$export->addCell(my_("Reserved - broadcast address"));
}
else {
// add to select drop down list
$col=$row["ipaddr"];
$lst["$col"]=$ip;
}
// check if userinf field has an encoded linked address in format of LNKx.x.x.x
// where x.x.x.x is an ip address
$lnk="";
$userinf=$row["userinf"];
if (preg_match("/^LNK[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}/", $userinf)) {
list($lnk, $userinf) = preg_split("/[\s]+/", $userinf, 2);
$lnk=substr($lnk, 3);
}
insert($c,textbr($userinf));
$export->addCell($userinf);
if (!empty($lnk)) {
insert($c,block("<small><i>"));
insert($c,anchor("displaybase.php?ipaddr=$lnk&cust=$cust&searchin=1&jump=1",
my_(sprintf("Follow link to %s", $lnk))));
insert($c,block("</i></small>"));
}
insert($t,$c = cell());
insert($c,text($row["location"]));
$export->addCell($row["location"]);
insert($t,$c = cell());
insert($c,block(linkURL(htmlspecialchars($row["descrip"]))));
$export->addCell($row["descrip"]);
if ($showdns) {
// gethostbyaddr returns ip address back if no DNS entry
// this will probably fail on windows!
$tmp=time();
$dnsdescrip=gethostbyaddr($ip);
// are DNS queries taking too long?
if (time()-$tmp > DNS_DELTA_TIME) {
$showdns=0; // stop doing DNS queries
myError($w,$p,
sprintf(my_("DNS queries taking too long - stopped doing queries at %s, time taken for last query was %s seconds"), $ip, time()-$tmp), FALSE);
}
if ($dnsdescrip != $ip and $dnsdescrip != $row["hname"]) {
if (!empty($row["descrip"])) {
insert($c,textbr());
}
insert($c,text($dnsdescrip, array("color"=>"#FF0000")));
}
else if ($dnsdescrip == $ip and !empty($row["hname"])) {
if (!empty($row["descrip"])) {
insert($c,textbr());
}
insert($c,text(my_("No DNS entry defined"), array("color"=>"#FF0000")));
}
}
if (!empty($row["hname"])) {
insert($c,textbr());
insert($c,block("<small><i>"));
insert($c,text($row["hname"]));
insert($c,block("</i></small>"));
}
$export->addCell($row["hname"]);
if (TELNO) {
insert($t,$c = cell());
insert($c,text($row["telno"]));
$export->addCell($row["telno"]);
}
else {
insert($t,$c = cell());
insert($c,text(substr(chunk_split($row["macaddr"], 2, ':'), 0, -1)));
$export->addCell(substr(chunk_split($row["macaddr"], 2, ':'), 0, -1));
}
// display info about when last device was polled
insert($t,$c = cell());
if ($polled or $result->UnixDate($row["lastpol"]) > time()-(3600*24)) {
insert($c,text($pollflag["d"]));
$pollcnt["d"]++;
}
else if ($result->UnixDate($row["lastpol"]) > time()-(3600*24*7)) {
insert($c,text($pollflag["w"]));
$pollcnt["w"]++;
}
else if ($result->UnixDate($row["lastpol"]) > time()-(3600*24*30)) {
insert($c,text($pollflag["m"]));
$pollcnt["m"]++;
}
else if ($result->UnixDate($row["lastpol"]) > time()-(3600*24*365)) {
insert($c,text($pollflag["y"]));
$pollcnt["y"]++;
}
$export->addCell($row["lastpol"]);
insert($t,$c = cell());
insert($c,block("<small>"));
insert($c,block($result->UserTimeStamp($row["lastmod"], "M d Y H:i:s")));
insert($c,block("</small>"));
$export->addCell($row["lastmod"]);
insert($t,$c = cell());
insert($c,text($row["userid"]));
$export->addCell($row["userid"]);
$export->saveRow();
if ($totcnt % MAXTABLESIZE == MAXTABLESIZE-1)
break;
$cnt++;
$totcnt++;
}
insert($w,block("<p>"));
// only display stats for networks with more than 2 host
if ($maxcnt > 2 and empty($search)) {
// display stats
insert($cstats,textb(my_("Subnet Summary")));
insert($cstats,block("<p>"));
insert($cstats,textbr(my_("Total addresses:")." ".$maxcnt));
insert($cstats,textbr(my_("Used addresses:")." ".($recs+2).my_(" (Including network and broadcast)")));
insert($cstats,textbr(my_("Free addresses:")." ".($maxcnt-$recs-2)));
insert($cstats,textbr(my_("Active polled (D/W/M/Y):")." ".
sprintf("%d/%d/%d/%d", $pollcnt["d"],$pollcnt["w"],$pollcnt["m"],$pollcnt["y"])));
insert($cstats,textbr(my_("Utilization:")." ".(round(($recs+2)/$maxcnt*100,2))."%"));
insert($cstats,textbr(my_("Efficiency:")." ".(round(($recs)/$maxcnt*100,2))."%"));
}
// display various blocks of subnet
$vars="";
$printed=0;
while ($row = $rr->FetchRow()) {
$totcnt++;
if ($totcnt % MAXTABLESIZE == 0) {
$vars=$_SERVER["PHP_SELF"]."?baseindex=".$baseindex."&block=".floor($totcnt/MAXTABLESIZE)."&showactive=".$showactive."&expr=$expr&search=".urlencode($search);
insert($cblk,block(" | "));
insert($cblk,anchor($vars,
inet_ntoa($row["ipaddr"])." - ".inet_ntoa($baseaddr+$totcnt+MAXTABLESIZE-1)));
}
if (!empty($vars) and !$printed) {
insert($ck2,anchor($vars, ">>"));
$printed=1;
}
}
// $cblk will not exist if only a host - stats area not drawn
if ($maxcnt > 1) {
//if ($maxcnt > MAXTABLESIZE) {
if ($printed or $totcnt/MAXTABLESIZE > 1) {
insert($cblk,block(" |"));
}
insert($cblk,block("<p>"));
// draw select box
insert($consel,selectbox($lst,
array("name"=>"ip[]",
"multiple size"=>"5")));
}
if ($block > 0) {
$vars=$_SERVER["PHP_SELF"]."?baseindex=".$baseindex."&block=".($block-1)."&showactive=".$showactive."&expr=$expr&search=".urlencode($search);
insert($ck1,anchor($vars, "<<"));
}
insert($ck1,textb(my_("IP address")));
$result->Close();
// create the export view form
$expression = $export->translateExpr($expr);
$export->setInfo(array(array("customer_ID", "customer_description", "subnet_ID", "search_criterion", "search_expression", "total_addresses", "used_addresses", "free_addresses", "active_polled(D_W_M_Y)", "utilization", "efficiency"),
array($cust, $ds->getCustomerDescrip($cust), $baseindex, $expression, $descrip, $maxcnt, ($recs+2)."(including network and broadcast)", ($maxcnt-$recs-2), ($pollcnt["d"]."_".$pollcnt["w"]."_".$pollcnt["m"]."_".$pollcnt["y"]), round(($recs+2)/$maxcnt*100,2), round(($recs)/$maxcnt*100,2))));
$export->createExportForm($w, NULL);
printhtml($p);
// myFetchRow class - special FetchRow to fill in missing records from subnet
// required for pager to work as records are expected in sequence - this just completes
// sequence
class myFetchRow {
var $result;
var $baseaddr;
var $subnetsize;
var $pointer=-1;
var $saverow;
var $search;
function myFetchRow(&$result, $baseaddr, $subnetsize, $search=FALSE) {
$this->result=$result;
$this->baseaddr=$baseaddr;
$this->subnetsize=$subnetsize;
$this->search=$search;
}
function FetchRow() {
if ($this->search) return $this->__MoveNext();
if ($this->pointer==-1) { // get first row
$this->__MoveNext();
$this->pointer++;
}
// row just read matches current expected record, so return it
// saverow will be FALSE if eof
if ($this->saverow AND $this->saverow["ipaddr"]==$this->baseaddr+$this->pointer) {
$this->pointer++;
$tmp=$this->saverow;
$this->__MoveNext();
return $tmp;
}
// row just read is much bigger than expected row, so return blank row
else {
if ($this->baseaddr+$this->pointer > $this->baseaddr+$this->subnetsize-1) {
return FALSE;
}
$this->pointer++;
return array("userinf"=>"", "location"=>"", "telno"=>"", "descrip"=>"",
"hname"=>"", "ipaddr"=>$this->baseaddr+$this->pointer-1,
"lastmod"=>NULL, "userid"=>"", "lastpol"=>NULL);
}
}
function __MoveNext() {
// get row using adodb class
$this->saverow=$this->result->FetchRow();
return $this->saverow;
}
}
// delete associated auto A records, only if there is exactly one record
// marked with A in the error_message field
function DeleteDNS($ds, $w, $cust, $ip) {
$formerror = "";
if (DNSAUTOCREATE === TRUE) {
// check if there are A records for this customers domains?
$result = &$ds->ds->Execute("SELECT fwdzone.domain, fwdzone.data_id, fwdzonerec.host,
fwdzonerec.ip_hostname, fwdzonerec.recidx
FROM fwdzone, fwdzonerec
WHERE fwdzone.data_id=fwdzonerec.data_id AND
fwdzone.customer=$cust AND
fwdzonerec.recordtype=".$ds->ds->qstr("A")." AND
fwdzonerec.error_message=".$ds->ds->qstr("A")." AND
fwdzonerec.ip_hostname=".$ds->ds->qstr(inet_ntoa($ip)));
$recs=$result->PO_RecordCount("fwdzone, fwdzonerec",
"fwdzone.data_id=fwdzonerec.data_id AND fwdzone.customer=$cust AND
fwdzonerec.recordtype=".$ds->ds->qstr("A")." AND
fwdzonerec.error_message=".$ds->ds->qstr("A")." AND
fwdzonerec.ip_hostname=".$ds->ds->qstr(inet_ntoa($ip)));
// must be exactly one A record on one domain else cannot delete
if($recs == 1) {
$row=$result->FetchRow();
$recidx=$row["recidx"];
$dom_id=$row["data_id"];
$domain=$row["domain"];
$hnametmp=$row["host"];
$result = &$ds->ds->Execute("DELETE FROM fwdzonerec
WHERE customer=$cust AND recidx=$recidx") and
$ds->ds->Execute("UPDATE fwdzone SET error_message=".$ds->ds->qstr("E").
" WHERE customer=$cust AND data_id=".$dom_id) and
$ds->AuditLog(array("event"=>120, "action"=>"delete zone record", "cust"=>$cust,
"user"=>getAuthUsername(), "id"=>$recidx));
insert($w,textbr(my_("A record deleted in DNS forward zone")));
insert($w,textbr(sprintf(my_("Domain: %s, Hostname: %s, IP address: %s\n"),
$domain, $hnametmp, inet_ntoa($ip))));
}
}
return $formerror;
}
// check to see if hostname field is valid, then try to update existing, unique
// DNS A record, else optionally create a new A record in a unique zone matching
// the domain name portion of the hostname
function UpdateDNS($ds, $w, $cust, $hname, $ip) {
$formerror = "";
if (!preg_match('/^(([\w][\w\-\.]*)\.)?([\w][\w\-]+)(\.([\w][\w\.]*))?$/', $hname)) {
$formerror .= sprintf(my_("Invalid hostname: %s %s"), inet_ntoa($ip),
$hname)."\n";
}
else if (DNSAUTOCREATE === TRUE) {
// check if there are A records for this customers domains?
$result = &$ds->ds->Execute("SELECT fwdzone.data_id, fwdzone.domain, fwdzonerec.host,
fwdzonerec.ip_hostname
FROM fwdzone, fwdzonerec
WHERE fwdzone.data_id=fwdzonerec.data_id AND
fwdzone.customer=$cust AND
fwdzonerec.recordtype=".$ds->ds->qstr("A")." AND
fwdzonerec.ip_hostname=".$ds->ds->qstr(inet_ntoa($ip)));
$recs=$result->PO_RecordCount("fwdzone, fwdzonerec",
"fwdzone.data_id=fwdzonerec.data_id AND fwdzone.customer=$cust AND
fwdzonerec.recordtype=".$ds->ds->qstr("A")." AND
fwdzonerec.ip_hostname=".$ds->ds->qstr(inet_ntoa($ip)));
// must be exactly one A record on one domain else cannot update
if($recs == 1) {
// does domain name of record match ip records hostname?
$row=$result->FetchRow();
$domain=$row["domain"];
$dataid=$row["data_id"];
$cnt=0;
$hnametmp=$hname;
// does ip record domain name match zone name?
if (preg_match("/\.$domain$/i", $hnametmp)) {
// cant use php5.1's count parameter on preg_replace!
$hnametmp=preg_replace("/\.$domain$/i", "", $hnametmp, 1);
}
else {
$hnametmp.="."; // no matching domain, so make FQDN
}
insert($w,textbr(my_("IP hostname field in DNS forward zone modified")));
$ds->ds->Execute("UPDATE fwdzonerec SET host=".$ds->ds->qstr($hnametmp).",
lastmod=".$ds->ds->DBTimeStamp(time()).",
userid=".$ds->ds->qstr(getAuthUsername())."
WHERE customer=$cust AND
recordtype=".$ds->ds->qstr("A")." AND
ip_hostname=".$ds->ds->qstr(inet_ntoa($ip))) and
$ds->ds->Execute("UPDATE fwdzone SET error_message=".$ds->ds->qstr("E").
" WHERE customer=$cust AND data_id=".$dataid) and
$ds->AuditLog(array("event"=>122, "action"=>"modified zone record", "cust"=>$cust,
"user"=>getAuthUsername(), "domain"=>$domain, "host"=>$hnametmp,
"recordtype"=>"A", "iphostname"=>inet_ntoa($ip)));
}
else if($recs > 1) {
$formerror .= my_("DNS forward A record not updated - multiple A records for this customer")."\n";
while($row = $result->FetchRow()) {
$formerror .= sprintf(my_("Domain: %s, Hostname: %s, IP address: %s\n"),
$row["domain"],
$row["host"],
$row["ip_hostname"]);
}
}
// no matching A records to update, now look for a zone to create a
// new A record in - only supported on MySQL and Postgres (databases that support
// regex searches
else if ((DBF_TYPE=="mysql" or DBF_TYPE=="maxsql" or DBF_TYPE=="postgres7") and
$recs==0) {
$regex = "RLIKE";
if (DBF_TYPE=="postgres7") {
$regex = "~";
}
$result = &$ds->ds->Execute("SELECT length(domain) AS domainlen, data_id, domain
FROM fwdzone
WHERE customer=$cust AND
".$ds->ds->qstr($hname."$")." $regex domain
ORDER BY domainlen DESC");
$recs=$result->PO_RecordCount("fwdzone",
"customer=$cust AND
".$ds->ds->qstr($hname."$")." $regex domain");
// must be exactly one matching zone only, or more than one zone
// sorted DESC. If second case, use first record for longest match
if ($recs>=1) {
$row=$result->FetchRow();
$domain=$row["domain"];
$dataid=$row["data_id"];
$hnametmp=preg_replace("/\.$domain$/i", "", $hname, 1);
// auto created records have A in error_message field
$result = $ds->ds->Execute("INSERT into fwdzonerec
(customer, data_id, sortorder, lastmod, host,
recordtype, error_message, userid, ip_hostname) ".
"VALUES ($cust, $dataid, 9999,".
$ds->ds->DBTimeStamp(time()).",".
$ds->ds->qstr($hnametmp).",".
$ds->ds->qstr("A").",".
$ds->ds->qstr("A").",".
$ds->ds->qstr(getAuthUsername()).",".
$ds->ds->qstr(inet_ntoa($ip)).")" ) and
$ds->ds->Execute("UPDATE fwdzone SET error_message=".$ds->ds->qstr("E").
" WHERE customer=$cust AND data_id=".$dataid) and
$ds->AuditLog(array("event"=>121, "action"=>"add zone record", "cust"=>$cust,
"user"=>getAuthUsername(), "domain"=>$domain, "host"=>$hnametmp,
"recordtype"=>"A", "iphostname"=>inet_ntoa($ip)));
insert($w,textbr(my_("A record created in DNS forward zone")));
insert($w,textbr(sprintf(my_("Domain: %s, Hostname: %s, IP address: %s\n"),
$domain, $hnametmp, inet_ntoa($ip))));
}
else {
$formerror .= my_("DNS forward A record not created - could not find matching zone to create record in")."\n";
}
}
}
return $formerror;
}
// check to see if there is a detination linked address and subnet, if not
// create the destination address record
function UpdateLnk($ds, $w, $cust, $baseindex, $lnk, $ip) {
/*
// got link address, see if there is a subnet for this link
// if no subnet found, do nothing
$result=$ds->GetBaseFromIndex($baseindex);
$row = $result->FetchRow();
$cust=$row["customer"];
*/
$result=$ds->GetBaseFromIP(inet_aton($lnk), $cust);
// yep found one, now see if a record exists
if ($row=$result->FetchRow()) {
$lnkidx=$row["baseindex"];
if (!$ds->TestCustomerGrp($lnkidx, getAuthUsername())) {
return sprintf(my_("Destination linked address %s IP record not created as you are not a member of the customers admin group"), $lnk)."\n";
}
if(!$result=$ds->GetIPDetails($lnkidx, inet_aton($lnk))) {
// no row in subnet, then add one
// NEED TO CHECK DESTINATION OWNERSHIP BEFORE ADDING RECORD
$ds->ModifyIP(inet_aton($lnk), $lnkidx, "", "",
"", "", "Linked address from ".inet_ntoa($ip), "", "");
insert($w,textbr(sprintf(my_("Destination linked address %s IP record created"), $lnk)));
}
}
}
// delete all attached file on an ip record
function RemoveAllFiles($ds, $baseindex, $iptemp) {
// remove all attached files
$result=&$ds->ds->Execute("SELECT infobin
FROM ipaddradd
WHERE ipaddr=$iptemp AND baseindex=$baseindex");
if ($result) { // guard against SQL error
$rowadd = $result->FetchRow();
if (!empty($rowadd["infobin"])) {
$files=unserialize($rowadd["infobin"]);
// if dbf field is empty, unserialize returns FALSE
if ($files!=FALSE) {
foreach($files as $key => $value) {
is_file(UPLOADDIRECTORY."/".basename($files[$key]["tmp_name"])) &&
unlink(UPLOADDIRECTORY."/".basename($files[$key]["tmp_name"]));
}
}
}
}
else {
return FALSE; // some error, maybe table does not exist?
}
return TRUE;
}
?>
|