aboutsummaryrefslogtreecommitdiffstats
path: root/config/tftp2
diff options
context:
space:
mode:
authordoktornotor <notordoktor@gmail.com>2015-08-06 08:38:48 +0200
committerdoktornotor <notordoktor@gmail.com>2015-08-06 08:38:48 +0200
commit90a594d7e2cd1ed85df26b952ce3af73305b41b9 (patch)
tree815658dd09e00b805eed20b35adb114fb45d0fe5 /config/tftp2
parentcf7c10fa2dafb84bbd4f83efd67e8c6bae2ec50c (diff)
downloadpfsense-packages-90a594d7e2cd1ed85df26b952ce3af73305b41b9.tar.gz
pfsense-packages-90a594d7e2cd1ed85df26b952ce3af73305b41b9.tar.bz2
pfsense-packages-90a594d7e2cd1ed85df26b952ce3af73305b41b9.zip
tftp.inc - code improvements and cleanup
- Fix copyright header - Remove unused functions - Use safe_mkdir() - Improve the backup restore code - Indentation and code style fixes
Diffstat (limited to 'config/tftp2')
-rw-r--r--config/tftp2/tftp.inc118
1 files changed, 39 insertions, 79 deletions
diff --git a/config/tftp2/tftp.inc b/config/tftp2/tftp.inc
index ea75e0d2..a2b7d1e3 100644
--- a/config/tftp2/tftp.inc
+++ b/config/tftp2/tftp.inc
@@ -1,23 +1,21 @@
<?php
-/* $Id$ */
/*
-/* ========================================================================== */
-/*
- tftp_inc.php
+ tftp.inc
+ part of pfSense (https://www.pfSense.org/)
Copyright (C) 2008 Mark J Crane
+ Copyright (C) 2011 Jim Pingle
+ Copyright (C) 2015 ESF, LLC
All rights reserved.
-*/
-/* ========================================================================== */
-/*
+
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
+ this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
@@ -30,98 +28,60 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
-
-function tftp_guid() {
- if (function_exists('com_create_guid')){
- return com_create_guid();
- }else{
- mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up.
- $charid = strtoupper(md5(uniqid(rand(), true)));
- $hyphen = chr(45);// "-"
- $uuid = chr(123)// "{"
- .substr($charid, 0, 8).$hyphen
- .substr($charid, 8, 4).$hyphen
- .substr($charid,12, 4).$hyphen
- .substr($charid,16, 4).$hyphen
- .substr($charid,20,12)
- .chr(125);// "}"
- return $uuid;
- }
-}
-
-function tftp_pkg_is_service_running($servicename) {
- exec("/bin/ps ax | awk '{ print $5 }'", $psout);
- array_shift($psout);
- foreach($psout as $line) {
- $ps[] = trim(array_pop(explode(' ', array_pop(explode('/', $line)))));
- }
- if(is_service_running($servicename, $ps) or is_process_running($servicename) ) {
- return true;
- }
- else {
- return false;
- }
-}
-
-function tftp_byte_convert( $bytes ) {
-
- if ($bytes<=0)
+function tftp_byte_convert($bytes) {
+ if ($bytes <= 0) {
return '0 Byte';
-
- $convention=1000; //[1000->10^x|1024->2^x]
- $s=array('B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB');
- $e=floor(log($bytes,$convention));
- return round($bytes/pow($convention,$e),2).' '.$s[$e];
+ }
+ $convention = 1000;
+ $s = array('B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB');
+ $e = floor(log($bytes, $convention));
+ return round($bytes/pow($convention, $e), 2) . ' ' . $s[$e];
}
function tftp_install_command() {
global $config;
- conf_mount_rw();
-
- if (!is_dir('/tftpboot')) {
- // Create the directory
- exec("mkdir /tftpboot");
-
- //Set the directory permissions
- exec("chmod -R 777 /tftpboot");
- }
-
- if (!is_dir('/root/backup/')) {
- // Create the backup directory
- exec("mkdir /root/backup/");
- }
- // if backup file exists restore it
- $filename = 'tftp.bak.tgz';
+ $tftpdir = "/tftpboot";
+ $tftpbackup = "/root/backup/tftp.bak.tgz";
- //extract a specific directory to /usr/local/freeswitch
- if (file_exists('/root/backup/'.$filename)) {
- system('cd /; tar xvpfz /root/backup/tftp.bak.tgz');
- system('chmod -R 744 /tftpboot/*');
- unset($filename);
+ // Create the directories if required
+ conf_mount_rw();
+ safe_mkdir("{$tftpdir}", 0777);
+ safe_mkdir("/root/backup/");
+
+ // Restore backup if it exists
+ if (file_exists($tftpbackup)) {
+ system("/usr/bin/tar xvpfz {$tftpbackup} -C /");
+ system("/bin/chmod -R 0744 {$tftpdir}/*");
+ unset($tftpbackup);
}
+ conf_mount_ro();
}
function tftp_deinstall_command() {
-
- //exec("rm -R /tftpboot");
+ conf_mount_rw();
unlink_if_exists("/usr/local/etc/rc.d/tftp.sh");
unlink_if_exists("/tmp/pkg_mgr_tftp.log");
+ conf_mount_ro();
}
function tftp_generate_rules($type) {
global $config, $FilterIflist;
- if ($type != "nat")
+
+ if ($type != "nat") {
return;
+ }
+
// Open inetd.conf write handle
- $inetd_fd = fopen("/var/etc/inetd.conf","a+");
- /* add tftp daemon */
+ $inetd_fd = fopen("/var/etc/inetd.conf", "a+");
+ // Add tftp daemon
fwrite($inetd_fd, "tftp\t\tdgram\tudp\twait\t\troot\t/usr/libexec/tftpd\ttftpd /tftpboot\n");
- fclose($inetd_fd); // Close file handle
+ // Close file handle
+ fclose($inetd_fd);
if (!empty($config['installedpackages']['tftpd']['config'][0]['tftpdinterface'])) {
$tftpifs = explode(",", $config['installedpackages']['tftpd']['config'][0]['tftpdinterface']);
- foreach($tftpifs as $tftpif) {
+ foreach ($tftpifs as $tftpif) {
if ($FilterIflist[$tftpif]) {
log_error("Adding TFTP nat rules");
$natrules .= "rdr pass on {$FilterIflist[$tftpif]['if']} proto udp from any to {$FilterIflist[$tftpif]['ip']} port 69 -> 127.0.0.1 port 69\n";