diff --git a/Zutil.jar b/Zutil.jar index 91440bc6..698715af 100644 Binary files a/Zutil.jar and b/Zutil.jar differ diff --git a/src/zutil/Timer.java b/src/zutil/Timer.java new file mode 100644 index 00000000..15b628e1 --- /dev/null +++ b/src/zutil/Timer.java @@ -0,0 +1,56 @@ +/* + * Copyright (c) 2015 ezivkoc + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +package zutil; + +/** + * This class is a timer, it will track time and + * timeout after a specific amount of time. + * + * Created by Ziver on 2015-07-15. + */ +public class Timer { + /** The timeout period **/ + private long period; + /** The timestamp when the timer was started, -1 if timer has not been started or has been reset **/ + private long timestamp; + + + public Timer(long milisec){ + this.period = milisec; + reset(); + } + + public void start(){ + timestamp = System.currentTimeMillis(); + } + public void reset(){ + timestamp = -1; + } + + /** + * @return true if the timer has timed out or has been reset, false if timer is running + */ + public boolean hasTimedOut(){ + return timestamp + period < System.currentTimeMillis(); + } +} diff --git a/src/zutil/net/http/pages/HttpFilePage.java b/src/zutil/net/http/pages/HttpFilePage.java index cefd234b..a3bf3107 100644 --- a/src/zutil/net/http/pages/HttpFilePage.java +++ b/src/zutil/net/http/pages/HttpFilePage.java @@ -71,7 +71,7 @@ public class HttpFilePage implements HttpPage{ else { // Resource root is a folder File file = new File(resource_root, client_info.getRequestURL()); - if(file.getAbsolutePath().startsWith(resource_root.getAbsolutePath())){ + if(file.getCanonicalPath().startsWith(resource_root.getCanonicalPath())){ if(file.isDirectory() && showFolders){ File indexFile = new File(file, "index.html"); // Redirect to index.html @@ -90,6 +90,9 @@ public class HttpFilePage implements HttpPage{ } out.println("
"); } + else { + throw new SecurityException("User not allowed to view folder: root=" + resource_root.getAbsolutePath()); + } } else { deliverFile(file, out); diff --git a/src/zutil/osal/app/linux/AptGet.java b/src/zutil/osal/app/linux/AptGet.java index 634bf672..73877b61 100644 --- a/src/zutil/osal/app/linux/AptGet.java +++ b/src/zutil/osal/app/linux/AptGet.java @@ -22,9 +22,11 @@ package zutil.osal.app.linux; +import zutil.Timer; import zutil.log.LogUtil; import zutil.osal.OSAbstractionLayer; +import java.util.HashMap; import java.util.logging.Logger; /** @@ -33,21 +35,129 @@ import java.util.logging.Logger; public class AptGet { public static final Logger log = LogUtil.getLogger(); - private static long updateTimestamp; + private static Timer updateTimer = new Timer(1000*60*5); // 5min timer + private static Timer packageTimer = new Timer(1000*60*5); // 5min timer + private static HashMap packages = new HashMap<>(); + + + public static synchronized void update(){ + // Only run every 5 min + if(updateTimer.hasTimedOut()){ + OSAbstractionLayer.runCommand("apt-get update"); + updateTimer.start(); + } + } public static void install(String pkg) { update(); OSAbstractionLayer.runCommand("apt-get install " + pkg); - } - - public static void update(){ - // Only run every 5 min - if(updateTimestamp + 1000*60*5 >System.currentTimeMillis()){ - OSAbstractionLayer.runCommand("apt-get update"); - } + packageTimer.reset(); } public static void purge(String pkg) { OSAbstractionLayer.runCommand("apt-get --purge remove " + pkg); + packageTimer.reset(); + } + + + public static Package getPackage(String pkg){ + updatePackages(); + return packages.get(pkg); + } + public static synchronized void updatePackages(){ + // Only run every 5 min + if(packageTimer.hasTimedOut()){ + String[] output = OSAbstractionLayer.runCommand("dpkg --list"); + for(int i=5; i