From a86d89f5ca8d71febd764b20e939010901be4974 Mon Sep 17 00:00:00 2001
From: Frank Karlitschek
Date: Sat, 21 Apr 2012 22:47:56 +0200
Subject: [PATCH 01/17] Add a static code checker for evil patterns in apps.
Disabled by default for now. We will check for private api calls here later
once the public api is in place
---
config/config.sample.php | 1 +
lib/installer.php | 59 ++++++++++++++++++++++++++++++++++++++--
2 files changed, 57 insertions(+), 3 deletions(-)
diff --git a/config/config.sample.php b/config/config.sample.php
index 9f6d674fc0e..0900937c690 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -24,6 +24,7 @@ $CONFIG = array(
"mail_smtpauth" => "false",
"mail_smtpname" => "",
"mail_smtppassword" => "",
+"appcodechecker" => "",
// "datadirectory" => ""
);
?>
diff --git a/lib/installer.php b/lib/installer.php
index 6edf4ce1b74..d5592273815 100644
--- a/lib/installer.php
+++ b/lib/installer.php
@@ -47,6 +47,7 @@ class OC_Installer{
* This function works as follows
* -# fetching the file
* -# unzipping it
+ * -# check the code
* -# installing the database at appinfo/database.xml
* -# including appinfo/install.php
* -# setting the installed version
@@ -91,6 +92,7 @@ class OC_Installer{
//extract the archive in a temporary folder
$extractDir=OC_Helper::tmpFolder();
+ OC_Helper::rmdirr($extractDir);
mkdir($extractDir);
if($archive=OC_Archive::open($path)){
$archive->extract($extractDir);
@@ -102,7 +104,7 @@ class OC_Installer{
}
return false;
}
-
+
//load the info.xml file of the app
if(!is_file($extractDir.'/appinfo/info.xml')){
//try to find it in a subdir
@@ -125,6 +127,12 @@ class OC_Installer{
}
$info=OC_App::getAppInfo($extractDir.'/appinfo/info.xml',true);
$basedir=OC::$APPSROOT.'/apps/'.$info['id'];
+
+ // check the code for not allowed calls
+ if(!OC_Installer::checkCode($info['id'],$extractDir)){
+ OC_Helper::rmdirr($extractDir);
+ return false;
+ }
//check if an app with the same id is already installed
if(self::isInstalled( $info['id'] )){
@@ -151,8 +159,8 @@ class OC_Installer{
}
//copy the app to the correct place
- if(!mkdir($basedir)){
- OC_Log::write('core','Can\'t create app folder ('.$basedir.')',OC_Log::ERROR);
+ if(@!mkdir($basedir)){
+ OC_Log::write('core','Can\'t create app folder. Please fix permissions. ('.$basedir.')',OC_Log::ERROR);
OC_Helper::rmdirr($extractDir);
if($data['source']=='http'){
unlink($path);
@@ -300,4 +308,49 @@ class OC_Installer{
OC_Appconfig::setValue($app,'installed_version',OC_App::getAppVersion($app));
return $info;
}
+
+
+ /**
+ * check the code of an app with some static code checks
+ * @param string $folder the folder of the app to check
+ * @returns true for app is o.k. and false for app is not o.k.
+ */
+ public static function checkCode($appname,$folder){
+
+ $blacklist=array(
+ 'fopen(',
+ 'eval('
+ // more evil pattern will go here later
+ // will will also check if an app is using private api once the public api is in place
+
+ );
+
+ // is the code checker enabled?
+ if(OC_Config::getValue('appcodechecker', false)){
+
+ // check if grep is installed
+ $grep = exec('which grep');
+ if($grep=='') {
+ OC_Log::write('core','grep not installed. So checking the code of the app "'.$appname.'" was not possible',OC_Log::ERROR);
+ return true;
+ }
+
+ // iterate the bad patterns
+ foreach($blacklist as $bl) {
+ $cmd = 'grep -ri '.escapeshellarg($bl).' '.$folder.'';
+ $result = exec($cmd);
+ // bad pattern found
+ if($result<>'') {
+ OC_Log::write('core','App "'.$appname.'" is using a not allowed call "'.$bl.'". Installation refused.',OC_Log::ERROR);
+ return false;
+ }
+ }
+ return true;
+
+ }else{
+ return true;
+ }
+ }
+
+
}
From 1a494978997a455806db2c48e32fc8e0f724b0ad Mon Sep 17 00:00:00 2001
From: Frank Karlitschek
Date: Sat, 21 Apr 2012 22:55:18 +0200
Subject: [PATCH 02/17] structure the information a bit more so that is easier
readable
---
apps/contacts/templates/settings.php | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/apps/contacts/templates/settings.php b/apps/contacts/templates/settings.php
index 5627a15c50a..ff1cab0c8de 100644
--- a/apps/contacts/templates/settings.php
+++ b/apps/contacts/templates/settings.php
@@ -3,10 +3,10 @@
t('Contacts'); ?>
t('CardDAV syncing addresses:'); ?>
-
t('Primary address (Kontact et al)'); ?>
-
/
-
t('iOS/OS X'); ?>
-
/principals//
+
t('Primary address (Kontact et al)'); ?>
+
/
+
t('iOS/OS X'); ?>
+
/principals//
Powered by geonames.org webservice
From ff3b199cc8712f46ef004e3666dd277ab583d0a2 Mon Sep 17 00:00:00 2001
From: Frank Karlitschek
Date: Sat, 21 Apr 2012 23:08:52 +0200
Subject: [PATCH 03/17] use less space
---
apps/admin_migrate/templates/settings.php | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/apps/admin_migrate/templates/settings.php b/apps/admin_migrate/templates/settings.php
index 91e305074e4..f81c9199ece 100644
--- a/apps/admin_migrate/templates/settings.php
+++ b/apps/admin_migrate/templates/settings.php
@@ -6,9 +6,9 @@
What would you like to export?
- ownCloud instance (suitable for import )
- ownCloud system files
- Just user files
+ ownCloud instance (suitable for import )
+ ownCloud system files
+ Just user files
From 80950f2e1c6a1ca2814d33167f7db4d8e3b9c21b Mon Sep 17 00:00:00 2001
From: Frank Karlitschek
Date: Sat, 21 Apr 2012 23:10:35 +0200
Subject: [PATCH 04/17] make field completely visible
---
apps/user_migrate/templates/admin.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/user_migrate/templates/admin.php b/apps/user_migrate/templates/admin.php
index b01e5c7579a..60fc74f6660 100644
--- a/apps/user_migrate/templates/admin.php
+++ b/apps/user_migrate/templates/admin.php
@@ -6,7 +6,7 @@
-
+
From 260c48c29a9167446862bf38775274e07685f6e3 Mon Sep 17 00:00:00 2001
From: Frank Karlitschek
Date: Sat, 21 Apr 2012 23:23:02 +0200
Subject: [PATCH 05/17] cleanup the admin page layout mess a bit. Still a lot
to improve in the future :-)
---
apps/user_migrate/templates/admin.php | 2 +-
files/templates/admin.php | 10 +++++++---
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/apps/user_migrate/templates/admin.php b/apps/user_migrate/templates/admin.php
index 60fc74f6660..ff51f43ffde 100644
--- a/apps/user_migrate/templates/admin.php
+++ b/apps/user_migrate/templates/admin.php
@@ -6,7 +6,7 @@
-