Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-04-15 22:19:32 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-04-17 16:33:57 +0300
commit7cbba3e717a0bc51bb9e1f59822d6a6b9138833f (patch)
treea6e5846d293141b9300e87dce13e89c77680738b
parent22d54078fcab0619b6243ec371ba3c8ba6c7dd62 (diff)
Repair step for link shares
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
-rw-r--r--core/Application.php13
-rw-r--r--core/Notification/RemoveLinkSharesNotifier.php55
-rw-r--r--lib/composer/composer/autoload_classmap.php2
-rw-r--r--lib/composer/composer/autoload_static.php2
-rw-r--r--lib/private/Repair.php6
-rw-r--r--lib/private/Repair/RemoveLinkShares.php221
-rw-r--r--version.php2
7 files changed, 299 insertions, 2 deletions
diff --git a/core/Application.php b/core/Application.php
index a65f1f3fa60..f5e0bbbeea7 100644
--- a/core/Application.php
+++ b/core/Application.php
@@ -28,6 +28,7 @@
namespace OC\Core;
+use OC\Core\Notification\RemoveLinkSharesNotifier;
use OC\DB\MissingIndexInformation;
use OC\DB\SchemaWrapper;
use OCP\AppFramework\App;
@@ -54,6 +55,18 @@ class Application extends App {
$server = $container->getServer();
$eventDispatcher = $server->getEventDispatcher();
+ $notificationManager = $server->getNotificationManager();
+ $notificationManager->registerNotifier(function() use ($server) {
+ return new RemoveLinkSharesNotifier(
+ $server->getL10NFactory()
+ );
+ }, function() use ($server) {
+ return [
+ 'id' => 'core',
+ 'name' => 'core',
+ ];
+ });
+
$eventDispatcher->addListener(IDBConnection::CHECK_MISSING_INDEXES_EVENT,
function(GenericEvent $event) use ($container) {
/** @var MissingIndexInformation $subject */
diff --git a/core/Notification/RemoveLinkSharesNotifier.php b/core/Notification/RemoveLinkSharesNotifier.php
new file mode 100644
index 00000000000..b77846c847e
--- /dev/null
+++ b/core/Notification/RemoveLinkSharesNotifier.php
@@ -0,0 +1,55 @@
+<?php
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OC\Core\Notification;
+
+use OCP\L10N\IFactory;
+use OCP\Notification\INotification;
+use OCP\Notification\INotifier;
+
+class RemoveLinkSharesNotifier implements INotifier {
+ /** @var IFactory */
+ private $l10nFactory;
+
+ public function __construct(IFactory $factory) {
+ $this->l10nFactory = $factory;
+ }
+
+ public function prepare(INotification $notification, $languageCode): INotification {
+ if($notification->getApp() !== 'core') {
+ throw new \InvalidArgumentException();
+ }
+ $l = $this->l10nFactory->get('core', $languageCode);
+
+ if ($notification->getSubject() === 'repair_exposing_links') {
+ $notification->setParsedSubject($l->t('Some of your link shares have been removed'));
+ $notification->setParsedMessage($l->t('Due to a security bug we had to remove some of your link shares. Please see the link for more information.'));
+ $notification->setLink('https://nextcloud.com/security/advisory/?id=NC-SA-2019-003');
+ return $notification;
+ }
+
+ throw new \InvalidArgumentException('Invalid subject');
+ }
+
+}
diff --git a/lib/composer/composer/autoload_classmap.php b/lib/composer/composer/autoload_classmap.php
index 2076abebba1..f7dc4dba933 100644
--- a/lib/composer/composer/autoload_classmap.php
+++ b/lib/composer/composer/autoload_classmap.php
@@ -677,6 +677,7 @@ return array(
'OC\\Core\\Migrations\\Version15000Date20180926101451' => $baseDir . '/core/Migrations/Version15000Date20180926101451.php',
'OC\\Core\\Migrations\\Version15000Date20181015062942' => $baseDir . '/core/Migrations/Version15000Date20181015062942.php',
'OC\\Core\\Migrations\\Version15000Date20181029084625' => $baseDir . '/core/Migrations/Version15000Date20181029084625.php',
+ 'OC\\Core\\Notification\\RemoveLinkSharesNotifier' => $baseDir . '/core/Notification/RemoveLinkSharesNotifier.php',
'OC\\DB\\Adapter' => $baseDir . '/lib/private/DB/Adapter.php',
'OC\\DB\\AdapterMySQL' => $baseDir . '/lib/private/DB/AdapterMySQL.php',
'OC\\DB\\AdapterOCI8' => $baseDir . '/lib/private/DB/AdapterOCI8.php',
@@ -976,6 +977,7 @@ return array(
'OC\\Repair\\OldGroupMembershipShares' => $baseDir . '/lib/private/Repair/OldGroupMembershipShares.php',
'OC\\Repair\\Owncloud\\DropAccountTermsTable' => $baseDir . '/lib/private/Repair/Owncloud/DropAccountTermsTable.php',
'OC\\Repair\\Owncloud\\SaveAccountsTableData' => $baseDir . '/lib/private/Repair/Owncloud/SaveAccountsTableData.php',
+ 'OC\\Repair\\RemoveLinkShares' => $baseDir . '/lib/private/Repair/RemoveLinkShares.php',
'OC\\Repair\\RemoveRootShares' => $baseDir . '/lib/private/Repair/RemoveRootShares.php',
'OC\\Repair\\RepairInvalidShares' => $baseDir . '/lib/private/Repair/RepairInvalidShares.php',
'OC\\Repair\\RepairMimeTypes' => $baseDir . '/lib/private/Repair/RepairMimeTypes.php',
diff --git a/lib/composer/composer/autoload_static.php b/lib/composer/composer/autoload_static.php
index 3d8e03f1c56..bdc9c64c369 100644
--- a/lib/composer/composer/autoload_static.php
+++ b/lib/composer/composer/autoload_static.php
@@ -707,6 +707,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
'OC\\Core\\Migrations\\Version15000Date20180926101451' => __DIR__ . '/../../..' . '/core/Migrations/Version15000Date20180926101451.php',
'OC\\Core\\Migrations\\Version15000Date20181015062942' => __DIR__ . '/../../..' . '/core/Migrations/Version15000Date20181015062942.php',
'OC\\Core\\Migrations\\Version15000Date20181029084625' => __DIR__ . '/../../..' . '/core/Migrations/Version15000Date20181029084625.php',
+ 'OC\\Core\\Notification\\RemoveLinkSharesNotifier' => __DIR__ . '/../../..' . '/core/Notification/RemoveLinkSharesNotifier.php',
'OC\\DB\\Adapter' => __DIR__ . '/../../..' . '/lib/private/DB/Adapter.php',
'OC\\DB\\AdapterMySQL' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterMySQL.php',
'OC\\DB\\AdapterOCI8' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterOCI8.php',
@@ -1006,6 +1007,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
'OC\\Repair\\OldGroupMembershipShares' => __DIR__ . '/../../..' . '/lib/private/Repair/OldGroupMembershipShares.php',
'OC\\Repair\\Owncloud\\DropAccountTermsTable' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/DropAccountTermsTable.php',
'OC\\Repair\\Owncloud\\SaveAccountsTableData' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/SaveAccountsTableData.php',
+ 'OC\\Repair\\RemoveLinkShares' => __DIR__ . '/../../..' . '/lib/private/Repair/RemoveLinkShares.php',
'OC\\Repair\\RemoveRootShares' => __DIR__ . '/../../..' . '/lib/private/Repair/RemoveRootShares.php',
'OC\\Repair\\RepairInvalidShares' => __DIR__ . '/../../..' . '/lib/private/Repair/RepairInvalidShares.php',
'OC\\Repair\\RepairMimeTypes' => __DIR__ . '/../../..' . '/lib/private/Repair/RepairMimeTypes.php',
diff --git a/lib/private/Repair.php b/lib/private/Repair.php
index 8bb3d3327a6..b998153d3f8 100644
--- a/lib/private/Repair.php
+++ b/lib/private/Repair.php
@@ -49,6 +49,7 @@ use OC\Repair\NC15\SetVcardDatabaseUID;
use OC\Repair\OldGroupMembershipShares;
use OC\Repair\Owncloud\DropAccountTermsTable;
use OC\Repair\Owncloud\SaveAccountsTableData;
+use OC\Repair\RemoveLinkShares;
use OC\Repair\RemoveRootShares;
use OC\Repair\RepairInvalidShares;
use OC\Repair\RepairMimeTypes;
@@ -56,6 +57,8 @@ use OC\Repair\SqliteAutoincrement;
use OC\Template\JSCombiner;
use OC\Template\SCSSCacher;
use Symfony\Component\EventDispatcher\EventDispatcher;
+use OCP\AppFramework\Utility\ITimeFactory;
+use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
class Repair implements IOutput {
@@ -147,7 +150,8 @@ class Repair implements IOutput {
new AddPreviewBackgroundCleanupJob(\OC::$server->getJobList()),
new AddCleanupUpdaterBackupsJob(\OC::$server->getJobList()),
new RepairPendingCronJobs(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig()),
- new SetVcardDatabaseUID(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getLogger())
+ new SetVcardDatabaseUID(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getLogger()),
+ new RemoveLinkShares(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getGroupManager(), \OC::$server->getNotificationManager(), \OC::$server->query(ITimeFactory::class)),
];
}
diff --git a/lib/private/Repair/RemoveLinkShares.php b/lib/private/Repair/RemoveLinkShares.php
new file mode 100644
index 00000000000..084a65aa402
--- /dev/null
+++ b/lib/private/Repair/RemoveLinkShares.php
@@ -0,0 +1,221 @@
+<?php
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OC\Repair;
+
+use Doctrine\DBAL\Driver\Statement;
+use OCP\AppFramework\Utility\ITimeFactory;
+use OCP\IConfig;
+use OCP\IDBConnection;
+use OCP\IGroupManager;
+use OCP\Migration\IOutput;
+use OCP\Migration\IRepairStep;
+use OCP\Notification\IManager;
+
+class RemoveLinkShares implements IRepairStep {
+ /** @var IDBConnection */
+ private $connection;
+ /** @var IConfig */
+ private $config;
+ /** @var string[] */
+ private $userToNotify = [];
+ /** @var IGroupManager */
+ private $groupManager;
+ /** @var IManager */
+ private $notificationManager;
+ /** @var ITimeFactory */
+ private $timeFactory;
+
+ public function __construct(IDBConnection $connection,
+ IConfig $config,
+ IGroupManager $groupManager,
+ IManager $notificationManager,
+ ITimeFactory $timeFactory) {
+ $this->connection = $connection;
+ $this->config = $config;
+ $this->groupManager = $groupManager;
+ $this->notificationManager = $notificationManager;
+ $this->timeFactory = $timeFactory;
+ }
+
+
+ public function getName(): string {
+ return 'Remove potentially over exposing share links';
+ }
+
+ private function shouldRun(): bool {
+ $versionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0');
+
+ if (version_compare($versionFromBeforeUpdate, '14.0.11', '<')) {
+ return true;
+ }
+ if (version_compare($versionFromBeforeUpdate, '15.0.8', '<')) {
+ return true;
+ }
+ if (version_compare($versionFromBeforeUpdate, '16.0.0', '<=')) {
+ return true;
+ }
+
+ return false;
+ }
+
+ /**
+ * Delete the share
+ *
+ * @param int $id
+ */
+ private function deleteShare(int $id) {
+ $qb = $this->connection->getQueryBuilder();
+ $qb->delete('share')
+ ->where($qb->expr()->eq('id', $qb->createNamedParameter($id)));
+ $qb->execute();
+ }
+
+ /**
+ * Get the total of affected shares
+ *
+ * @return int
+ */
+ private function getTotal(): int {
+ $sql = 'SELECT COUNT(*) AS `total`
+ FROM `*PREFIX*share`
+ WHERE `id` IN (
+ SELECT `s1`.`id`
+ FROM (
+ SELECT *
+ FROM `*PREFIX*share`
+ WHERE `parent` IS NOT NULL
+ AND `share_type` = 3
+ ) AS s1
+ JOIN `*PREFIX*share` AS s2
+ ON `s1`.`parent` = `s2`.`id`
+ WHERE (`s2`.`share_type` = 1 OR `s2`.`share_type` = 2)
+ AND `s1`.`item_source` = `s2`.`item_source`
+ )';
+ $cursor = $this->connection->executeQuery($sql);
+ $data = $cursor->fetchAll();
+ $total = (int)$data[0]['total'];
+ $cursor->closeCursor();
+
+ return $total;
+ }
+
+ /**
+ * Get the cursor to fetch all the shares
+ *
+ * @return \Doctrine\DBAL\Driver\Statement
+ */
+ private function getShares(): Statement {
+ $sql = 'SELECT `s1`.`id`, `s1`.`uid_owner`, `s1`.`uid_initiator`
+ FROM (
+ SELECT *
+ FROM `*PREFIX*share`
+ WHERE `parent` IS NOT NULL
+ AND `share_type` = 3
+ ) AS s1
+ JOIN `*PREFIX*share` AS s2
+ ON `s1`.`parent` = `s2`.`id`
+ WHERE (`s2`.`share_type` = 1 OR `s2`.`share_type` = 2)
+ AND `s1`.`item_source` = `s2`.`item_source`';
+ $cursor = $this->connection->executeQuery($sql);
+ return $cursor;
+ }
+
+ /**
+ * Process a single share
+ *
+ * @param array $data
+ */
+ private function processShare(array $data) {
+ $id = $data['id'];
+
+ $this->addToNotify($data['uid_owner']);
+ $this->addToNotify($data['uid_initiator']);
+
+ $this->deleteShare((int)$id);
+ }
+
+ /**
+ * Update list of users to notify
+ *
+ * @param string $uid
+ */
+ private function addToNotify(string $uid) {
+ if (!isset($this->userToNotify[$uid])) {
+ $this->userToNotify[$uid] = true;
+ }
+ }
+
+ /**
+ * Send all notifications
+ */
+ private function sendNotification() {
+ $time = $this->timeFactory->getDateTime();
+
+ $notification = $this->notificationManager->createNotification();
+ $notification->setApp('core')
+ ->setDateTime($time)
+ ->setObject('repair', 'exposing_links')
+ ->setSubject('repair_exposing_links', []);
+
+ $users = array_keys($this->userToNotify);
+ foreach ($users as $user) {
+ $notification->setUser($user);
+ $this->notificationManager->notify($notification);
+ }
+ }
+
+ private function repair(IOutput $output) {
+ $total = $this->getTotal();
+ $output->startProgress($total);
+
+ $shareCursor = $this->getShares();
+ while($data = $shareCursor->fetch()) {
+ $this->processShare($data);
+ $output->advance();
+ }
+ $output->finishProgress();
+ $shareCursor->closeCursor();
+
+ // Notifiy all admins
+ $adminGroup = $this->groupManager->get('admin');
+ $adminUsers = $adminGroup->getUsers();
+ foreach ($adminUsers as $user) {
+ $this->addToNotify($user->getUID());
+ }
+
+ $output->info('Sending notifications to admins and affected users');
+ $this->sendNotification();
+ }
+
+ public function run(IOutput $output) {
+ if ($this->shouldRun()) {
+ $output->info('Removing potentially over exposing link shares');
+ $this->repair($output);
+ $output->info('Removed potentially over exposing link shares');
+ } else {
+ $output->info('No need to remove link shares.');
+ }
+ }
+}
diff --git a/version.php b/version.php
index f186f135e5c..c326675f93b 100644
--- a/version.php
+++ b/version.php
@@ -29,7 +29,7 @@
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
-$OC_Version = array(15, 0, 7, 0);
+$OC_Version = array(15, 0, 7, 1);
// The human readable string
$OC_VersionString = '15.0.7';