FileReader.cxx 5.44 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * 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.
 */

#include "config.h"
#include "FileReader.hxx"
#include "Glue.hxx"
23
#include "Base.hxx"
24 25 26
#include "Connection.hxx"
#include "event/Call.hxx"
#include "IOThread.hxx"
27
#include "util/StringCompare.hxx"
28 29 30 31 32 33

#include <utility>

#include <assert.h>
#include <string.h>
#include <fcntl.h>
34
#include <sys/stat.h>
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

NfsFileReader::NfsFileReader()
	:DeferredMonitor(io_thread_get()), state(State::INITIAL)
{
}

NfsFileReader::~NfsFileReader()
{
	assert(state == State::INITIAL);
}

void
NfsFileReader::Close()
{
	if (state == State::INITIAL)
		return;

	if (state == State::DEFER) {
		state = State::INITIAL;
		DeferredMonitor::Cancel();
		return;
	}

58
	/* this cancels State::MOUNT */
59 60
	connection->RemoveLease(*this);

61 62 63 64 65 66 67 68 69
	CancelOrClose();
}

void
NfsFileReader::CancelOrClose()
{
	assert(state != State::INITIAL &&
	       state != State::DEFER);

70 71 72
	if (state == State::IDLE)
		/* no async operation in progress: can close
		   immediately */
73
		connection->Close(fh);
74 75 76 77 78 79 80 81
	else if (state > State::OPEN)
		/* one async operation in progress: cancel it and
		   defer the nfs_close_async() call */
		connection->CancelAndClose(fh, *this);
	else if (state > State::MOUNT)
		/* we don't have a file handle yet - just cancel the
		   async operation */
		connection->Cancel(*this);
82 83 84 85 86 87 88 89 90 91

	state = State::INITIAL;
}

void
NfsFileReader::DeferClose()
{
	BlockingCall(io_thread_get(), [this](){ Close(); });
}

92 93
void
NfsFileReader::Open(const char *uri)
94 95 96
{
	assert(state == State::INITIAL);

97 98
	if (!StringStartsWith(uri, "nfs://"))
		throw std::runtime_error("Malformed nfs:// URI");
99 100 101 102

	uri += 6;

	const char *slash = strchr(uri, '/');
103 104
	if (slash == nullptr)
		throw std::runtime_error("Malformed nfs:// URI");
105 106 107 108 109

	server = std::string(uri, slash);

	uri = slash;

110 111 112 113 114 115 116 117
	const char *new_path = nfs_check_base(server.c_str(), uri);
	if (new_path != nullptr) {
		export_name = std::string(uri, new_path);
		if (*new_path == 0)
			new_path = "/";
		path = new_path;
	} else {
		slash = strrchr(uri + 1, '/');
118 119
		if (slash == nullptr || slash[1] == 0)
			throw std::runtime_error("Malformed nfs:// URI");
120 121 122 123

		export_name = std::string(uri, slash);
		path = slash;
	}
124 125 126 127 128

	state = State::DEFER;
	DeferredMonitor::Schedule();
}

129 130
void
NfsFileReader::Read(uint64_t offset, size_t size)
131 132 133
{
	assert(state == State::IDLE);

134
	connection->Read(fh, offset, size, *this);
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
	state = State::READ;
}

void
NfsFileReader::CancelRead()
{
	if (state == State::READ) {
		connection->Cancel(*this);
		state = State::IDLE;
	}
}

void
NfsFileReader::OnNfsConnectionReady()
{
	assert(state == State::MOUNT);

152 153 154 155
	try {
		connection->Open(path, O_RDONLY, *this);
	} catch (...) {
		OnNfsFileError(std::current_exception());
156 157 158 159 160 161 162
		return;
	}

	state = State::OPEN;
}

void
163
NfsFileReader::OnNfsConnectionFailed(std::exception_ptr e)
164 165 166
{
	assert(state == State::MOUNT);

167 168
	state = State::INITIAL;

169
	OnNfsFileError(std::move(e));
170 171 172
}

void
173
NfsFileReader::OnNfsConnectionDisconnected(std::exception_ptr e)
174 175 176
{
	assert(state > State::MOUNT);

177
	CancelOrClose();
178

179
	OnNfsFileError(std::move(e));
180 181 182 183 184 185 186 187 188 189 190
}

inline void
NfsFileReader::OpenCallback(nfsfh *_fh)
{
	assert(state == State::OPEN);
	assert(connection != nullptr);
	assert(_fh != nullptr);

	fh = _fh;

191 192 193 194
	try {
		connection->Stat(fh, *this);
	} catch (...) {
		OnNfsFileError(std::current_exception());
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
		return;
	}

	state = State::STAT;
}

inline void
NfsFileReader::StatCallback(const struct stat *st)
{
	assert(state == State::STAT);
	assert(connection != nullptr);
	assert(fh != nullptr);
	assert(st != nullptr);

	if (!S_ISREG(st->st_mode)) {
210
		OnNfsFileError(std::make_exception_ptr(std::runtime_error("Not a regular file")));
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
		return;
	}

	state = State::IDLE;

	OnNfsFileOpen(st->st_size);
}

void
NfsFileReader::OnNfsCallback(unsigned status, void *data)
{
	switch (state) {
	case State::INITIAL:
	case State::DEFER:
	case State::MOUNT:
	case State::IDLE:
		assert(false);
		gcc_unreachable();

	case State::OPEN:
		OpenCallback((struct nfsfh *)data);
		break;

	case State::STAT:
		StatCallback((const struct stat *)data);
		break;

	case State::READ:
		state = State::IDLE;
		OnNfsFileRead(data, status);
		break;
	}
}

void
246
NfsFileReader::OnNfsError(std::exception_ptr &&e)
247
{
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
	switch (state) {
	case State::INITIAL:
	case State::DEFER:
	case State::MOUNT:
	case State::IDLE:
		assert(false);
		gcc_unreachable();

	case State::OPEN:
		connection->RemoveLease(*this);
		state = State::INITIAL;
		break;

	case State::STAT:
		connection->RemoveLease(*this);
		connection->Close(fh);
		state = State::INITIAL;
		break;

	case State::READ:
		state = State::IDLE;
		break;
	}

272
	OnNfsFileError(std::move(e));
273 274 275 276 277 278 279 280 281 282 283 284
}

void
NfsFileReader::RunDeferred()
{
	assert(state == State::DEFER);

	state = State::MOUNT;

	connection = &nfs_get_connection(server.c_str(), export_name.c_str());
	connection->AddLease(*this);
}