StorageCommands.cxx 7.64 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2015 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

20 21
#define __STDC_FORMAT_MACROS /* for PRIu64 */

22 23 24 25
#include "config.h"
#include "StorageCommands.hxx"
#include "CommandError.hxx"
#include "protocol/Result.hxx"
26
#include "util/UriUtil.hxx"
27
#include "util/Error.hxx"
28
#include "util/ConstBuffer.hxx"
29
#include "fs/Traits.hxx"
30 31 32 33 34
#include "client/Client.hxx"
#include "Partition.hxx"
#include "Instance.hxx"
#include "storage/Registry.hxx"
#include "storage/CompositeStorage.hxx"
35
#include "storage/FileInfo.hxx"
Max Kellermann's avatar
Max Kellermann committed
36 37
#include "db/plugins/simple/SimpleDatabasePlugin.hxx"
#include "db/update/Service.hxx"
38
#include "TimePrint.hxx"
39
#include "IOThread.hxx"
40
#include "Idle.hxx"
41

42 43 44 45 46 47 48 49 50
#include <inttypes.h> /* for PRIu64 */

gcc_pure
static bool
skip_path(const char *name_utf8)
{
	return strchr(name_utf8, '\n') != nullptr;
}

51 52 53 54 55 56 57
#if defined(WIN32) && GCC_CHECK_VERSION(4,6)
/* PRIu64 causes bogus compiler warning */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat"
#pragma GCC diagnostic ignored "-Wformat-extra-args"
#endif

58 59 60 61 62 63 64 65 66
static bool
handle_listfiles_storage(Client &client, StorageDirectoryReader &reader,
			 Error &error)
{
	const char *name_utf8;
	while ((name_utf8 = reader.Read()) != nullptr) {
		if (skip_path(name_utf8))
			continue;

67
		StorageFileInfo info;
68 69 70 71
		if (!reader.GetInfo(false, info, error))
			continue;

		switch (info.type) {
72
		case StorageFileInfo::Type::OTHER:
73 74 75
			/* ignore */
			continue;

76
		case StorageFileInfo::Type::REGULAR:
77 78 79 80 81 82
			client_printf(client, "file: %s\n"
				      "size: %" PRIu64 "\n",
				      name_utf8,
				      info.size);
			break;

83
		case StorageFileInfo::Type::DIRECTORY:
84 85 86 87 88 89 90 91 92 93 94
			client_printf(client, "directory: %s\n", name_utf8);
			break;
		}

		if (info.mtime != 0)
			time_print(client, "Last-Modified", info.mtime);
	}

	return true;
}

95 96 97 98
#if defined(WIN32) && GCC_CHECK_VERSION(4,6)
#pragma GCC diagnostic pop
#endif

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
static bool
handle_listfiles_storage(Client &client, Storage &storage, const char *uri,
			 Error &error)
{
	auto reader = storage.OpenDirectory(uri, error);
	if (reader == nullptr)
		return false;

	bool success = handle_listfiles_storage(client, *reader, error);
	delete reader;
	return success;
}

CommandResult
handle_listfiles_storage(Client &client, Storage &storage, const char *uri)
{
	Error error;
	if (!handle_listfiles_storage(client, storage, uri, error))
		return print_error(client, error);

	return CommandResult::OK;
}

CommandResult
handle_listfiles_storage(Client &client, const char *uri)
{
	Error error;
126
	Storage *storage = CreateStorageURI(io_thread_get(), uri, error);
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
	if (storage == nullptr) {
		if (error.IsDefined())
			return print_error(client, error);

		command_error(client, ACK_ERROR_ARG,
			      "Unrecognized storage URI");
		return CommandResult::ERROR;
	}

	bool success = handle_listfiles_storage(client, *storage, "", error);
	delete storage;
	if (!success)
		return print_error(client, error);

	return CommandResult::OK;
}

144 145 146 147 148 149 150
static void
print_storage_uri(Client &client, const Storage &storage)
{
	std::string uri = storage.MapUTF8("");
	if (uri.empty())
		return;

151
	if (PathTraitsUTF8::IsAbsolute(uri.c_str())) {
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
		/* storage points to local directory */

		if (!client.IsLocal())
			/* only "local" clients may see local paths
			   (same policy as with the "config"
			   command) */
			return;
	} else {
		/* hide username/passwords from client */

		std::string allocated = uri_remove_auth(uri.c_str());
		if (!allocated.empty())
			uri = std::move(allocated);
	}

	client_printf(client, "storage: %s\n", uri.c_str());
}

CommandResult
171
handle_listmounts(Client &client, gcc_unused ConstBuffer<const char *> args)
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
{
	Storage *_composite = client.partition.instance.storage;
	if (_composite == nullptr) {
		command_error(client, ACK_ERROR_NO_EXIST, "No database");
		return CommandResult::ERROR;
	}

	CompositeStorage &composite = *(CompositeStorage *)_composite;

	const auto visitor = [&client](const char *mount_uri,
				       const Storage &storage){
		client_printf(client, "mount: %s\n", mount_uri);
		print_storage_uri(client, storage);
	};

	composite.VisitMounts(visitor);

	return CommandResult::OK;
}

192
CommandResult
193
handle_mount(Client &client, ConstBuffer<const char *> args)
194 195 196 197 198 199 200 201 202
{
	Storage *_composite = client.partition.instance.storage;
	if (_composite == nullptr) {
		command_error(client, ACK_ERROR_NO_EXIST, "No database");
		return CommandResult::ERROR;
	}

	CompositeStorage &composite = *(CompositeStorage *)_composite;

203 204
	const char *const local_uri = args[0];
	const char *const remote_uri = args[1];
205 206 207 208 209 210

	if (*local_uri == 0) {
		command_error(client, ACK_ERROR_ARG, "Bad mount point");
		return CommandResult::ERROR;
	}

Max Kellermann's avatar
Max Kellermann committed
211 212 213 214 215 216 217 218 219 220
	if (strchr(local_uri, '/') != nullptr) {
		/* allow only top-level mounts for now */
		/* TODO: eliminate this limitation after ensuring that
		   UpdateQueue::Erase() really gets called for every
		   unmount, and no Directory disappears recursively
		   during database update */
		command_error(client, ACK_ERROR_ARG, "Bad mount point");
		return CommandResult::ERROR;
	}

221
	Error error;
222 223
	Storage *storage = CreateStorageURI(io_thread_get(), remote_uri,
					    error);
224 225 226 227 228 229 230 231 232 233
	if (storage == nullptr) {
		if (error.IsDefined())
			return print_error(client, error);

		command_error(client, ACK_ERROR_ARG,
			      "Unrecognized storage URI");
		return CommandResult::ERROR;
	}

	composite.Mount(local_uri, storage);
234
	idle_add(IDLE_MOUNT);
Max Kellermann's avatar
Max Kellermann committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251

#ifdef ENABLE_DATABASE
	Database *_db = client.partition.instance.database;
	if (_db != nullptr && _db->IsPlugin(simple_db_plugin)) {
		SimpleDatabase &db = *(SimpleDatabase *)_db;

		if (!db.Mount(local_uri, remote_uri, error)) {
			composite.Unmount(local_uri);
			return print_error(client, error);
		}

		// TODO: call Instance::OnDatabaseModified()?
		// TODO: trigger database update?
		idle_add(IDLE_DATABASE);
	}
#endif

252 253
	return CommandResult::OK;
}
254 255

CommandResult
256
handle_unmount(Client &client, ConstBuffer<const char *> args)
257 258 259 260 261 262 263 264 265
{
	Storage *_composite = client.partition.instance.storage;
	if (_composite == nullptr) {
		command_error(client, ACK_ERROR_NO_EXIST, "No database");
		return CommandResult::ERROR;
	}

	CompositeStorage &composite = *(CompositeStorage *)_composite;

266
	const char *const local_uri = args.front();
267 268 269 270 271 272

	if (*local_uri == 0) {
		command_error(client, ACK_ERROR_ARG, "Bad mount point");
		return CommandResult::ERROR;
	}

Max Kellermann's avatar
Max Kellermann committed
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
#ifdef ENABLE_DATABASE
	if (client.partition.instance.update != nullptr)
		/* ensure that no database update will attempt to work
		   with the database/storage instances we're about to
		   destroy here */
		client.partition.instance.update->CancelMount(local_uri);

	Database *_db = client.partition.instance.database;
	if (_db != nullptr && _db->IsPlugin(simple_db_plugin)) {
		SimpleDatabase &db = *(SimpleDatabase *)_db;

		if (db.Unmount(local_uri))
			// TODO: call Instance::OnDatabaseModified()?
			idle_add(IDLE_DATABASE);
	}
#endif

290 291 292 293 294 295
	if (!composite.Unmount(local_uri)) {
		command_error(client, ACK_ERROR_ARG, "Not a mount point");
		return CommandResult::ERROR;
	}

	idle_add(IDLE_MOUNT);
Max Kellermann's avatar
Max Kellermann committed
296

297 298
	return CommandResult::OK;
}