RemoteHostValidator.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * @copyright 2022 Christoph Wurst <christoph@winzerhof-wurst.at>
  5. *
  6. * @author 2022 Christoph Wurst <christoph@winzerhof-wurst.at>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. namespace OC\Security;
  24. use OC\Net\HostnameClassifier;
  25. use OC\Net\IpAddressClassifier;
  26. use OCP\IConfig;
  27. use OCP\Security\IRemoteHostValidator;
  28. use Psr\Log\LoggerInterface;
  29. use function strtolower;
  30. use function substr;
  31. use function urldecode;
  32. /**
  33. * @internal
  34. */
  35. final class RemoteHostValidator implements IRemoteHostValidator {
  36. private IConfig $config;
  37. private HostnameClassifier $hostnameClassifier;
  38. private IpAddressClassifier $ipAddressClassifier;
  39. private LoggerInterface $logger;
  40. public function __construct(IConfig $config,
  41. HostnameClassifier $hostnameClassifier,
  42. IpAddressClassifier $ipAddressClassifier,
  43. LoggerInterface $logger) {
  44. $this->config = $config;
  45. $this->hostnameClassifier = $hostnameClassifier;
  46. $this->ipAddressClassifier = $ipAddressClassifier;
  47. $this->logger = $logger;
  48. }
  49. public function isValid(string $host): bool {
  50. if ($this->config->getSystemValueBool('allow_local_remote_servers', false)) {
  51. return true;
  52. }
  53. $host = idn_to_utf8(strtolower(urldecode($host)));
  54. // Remove brackets from IPv6 addresses
  55. if (str_starts_with($host, '[') && str_ends_with($host, ']')) {
  56. $host = substr($host, 1, -1);
  57. }
  58. if ($this->hostnameClassifier->isLocalHostname($host)
  59. || $this->ipAddressClassifier->isLocalAddress($host)) {
  60. $this->logger->warning("Host $host was not connected to because it violates local access rules");
  61. return false;
  62. }
  63. return true;
  64. }
  65. }