Connection.cxx 13.6 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 20 21 22 23 24
 * 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 "Connection.hxx"
#include "Lease.hxx"
#include "Domain.hxx"
#include "Callback.hxx"
25
#include "event/Loop.hxx"
26 27 28 29 30 31 32 33 34
#include "system/fd_util.h"
#include "util/Error.hxx"

extern "C" {
#include <nfsc/libnfs.h>
}

#include <utility>

35 36
#include <poll.h> /* for POLLIN, POLLOUT */

37 38
static constexpr unsigned NFS_MOUNT_TIMEOUT = 60;

39 40 41 42 43
inline bool
NfsConnection::CancellableCallback::Stat(nfs_context *ctx,
					 const char *path,
					 Error &error)
{
44 45
	assert(connection.GetEventLoop().IsInside());

46 47 48 49 50 51 52 53 54 55
	int result = nfs_stat_async(ctx, path, Callback, this);
	if (result < 0) {
		error.Format(nfs_domain, "nfs_stat_async() failed: %s",
			     nfs_get_error(ctx));
		return false;
	}

	return true;
}

56 57 58 59 60
inline bool
NfsConnection::CancellableCallback::OpenDirectory(nfs_context *ctx,
						  const char *path,
						  Error &error)
{
61 62
	assert(connection.GetEventLoop().IsInside());

63 64 65 66 67 68 69 70 71 72
	int result = nfs_opendir_async(ctx, path, Callback, this);
	if (result < 0) {
		error.Format(nfs_domain, "nfs_opendir_async() failed: %s",
			     nfs_get_error(ctx));
		return false;
	}

	return true;
}

73 74 75 76 77
inline bool
NfsConnection::CancellableCallback::Open(nfs_context *ctx,
					 const char *path, int flags,
					 Error &error)
{
78 79
	assert(connection.GetEventLoop().IsInside());

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
	int result = nfs_open_async(ctx, path, flags,
				    Callback, this);
	if (result < 0) {
		error.Format(nfs_domain, "nfs_open_async() failed: %s",
			     nfs_get_error(ctx));
		return false;
	}

	return true;
}

inline bool
NfsConnection::CancellableCallback::Stat(nfs_context *ctx,
					 struct nfsfh *fh,
					 Error &error)
{
96 97
	assert(connection.GetEventLoop().IsInside());

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
	int result = nfs_fstat_async(ctx, fh, Callback, this);
	if (result < 0) {
		error.Format(nfs_domain, "nfs_fstat_async() failed: %s",
			     nfs_get_error(ctx));
		return false;
	}

	return true;
}

inline bool
NfsConnection::CancellableCallback::Read(nfs_context *ctx, struct nfsfh *fh,
					 uint64_t offset, size_t size,
					 Error &error)
{
113 114
	assert(connection.GetEventLoop().IsInside());

115 116 117 118 119 120 121 122 123 124
	int result = nfs_pread_async(ctx, fh, offset, size, Callback, this);
	if (result < 0) {
		error.Format(nfs_domain, "nfs_pread_async() failed: %s",
			     nfs_get_error(ctx));
		return false;
	}

	return true;
}

125 126 127
inline void
NfsConnection::CancellableCallback::CancelAndScheduleClose(struct nfsfh *fh)
{
128
	assert(connection.GetEventLoop().IsInside());
129 130 131 132 133 134 135 136
	assert(!open);
	assert(close_fh == nullptr);
	assert(fh != nullptr);

	close_fh = fh;
	Cancel();
}

137 138 139 140 141 142 143 144 145 146 147
inline void
NfsConnection::CancellableCallback::PrepareDestroyContext()
{
	assert(IsCancelled());

	if (close_fh != nullptr) {
		connection.InternalClose(close_fh);
		close_fh = nullptr;
	}
}

148 149 150
inline void
NfsConnection::CancellableCallback::Callback(int err, void *data)
{
151 152
	assert(connection.GetEventLoop().IsInside());

153
	if (!IsCancelled()) {
154 155
		assert(close_fh == nullptr);

156 157 158 159 160 161 162 163 164 165
		NfsCallback &cb = Get();

		connection.callbacks.Remove(*this);

		if (err >= 0)
			cb.OnNfsCallback((unsigned)err, data);
		else
			cb.OnNfsError(Error(nfs_domain, err,
					    (const char *)data));
	} else {
166 167 168 169
		if (open) {
			/* a nfs_open_async() call was cancelled - to
			   avoid a memory leak, close the newly
			   allocated file handle immediately */
170 171
			assert(close_fh == nullptr);

172 173 174 175
			if (err >= 0) {
				struct nfsfh *fh = (struct nfsfh *)data;
				connection.Close(fh);
			}
176 177
		} else if (close_fh != nullptr)
			connection.DeferClose(close_fh);
178

179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
		connection.callbacks.Remove(*this);
	}
}

void
NfsConnection::CancellableCallback::Callback(int err,
					     gcc_unused struct nfs_context *nfs,
					     void *data, void *private_data)
{
	CancellableCallback &c = *(CancellableCallback *)private_data;
	c.Callback(err, data);
}

static constexpr unsigned
libnfs_to_events(int i)
{
	return ((i & POLLIN) ? SocketMonitor::READ : 0) |
		((i & POLLOUT) ? SocketMonitor::WRITE : 0);
}

static constexpr int
events_to_libnfs(unsigned i)
{
	return ((i & SocketMonitor::READ) ? POLLIN : 0) |
		((i & SocketMonitor::WRITE) ? POLLOUT : 0);
}

NfsConnection::~NfsConnection()
{
208
	assert(GetEventLoop().IsInside());
209 210 211
	assert(new_leases.empty());
	assert(active_leases.empty());
	assert(callbacks.IsEmpty());
212
	assert(deferred_close.empty());
213 214

	if (context != nullptr)
215
		DestroyContext();
216 217 218 219 220
}

void
NfsConnection::AddLease(NfsLease &lease)
{
221 222 223
	assert(GetEventLoop().IsInside());

	new_leases.push_back(&lease);
224 225 226 227 228 229 230

	DeferredMonitor::Schedule();
}

void
NfsConnection::RemoveLease(NfsLease &lease)
{
231
	assert(GetEventLoop().IsInside());
232 233 234 235 236

	new_leases.remove(&lease);
	active_leases.remove(&lease);
}

237 238 239
bool
NfsConnection::Stat(const char *path, NfsCallback &callback, Error &error)
{
240
	assert(GetEventLoop().IsInside());
241 242 243 244 245 246 247 248 249 250 251 252
	assert(!callbacks.Contains(callback));

	auto &c = callbacks.Add(callback, *this, false);
	if (!c.Stat(context, path, error)) {
		callbacks.Remove(c);
		return false;
	}

	ScheduleSocket();
	return true;
}

253 254 255 256
bool
NfsConnection::OpenDirectory(const char *path, NfsCallback &callback,
			     Error &error)
{
257
	assert(GetEventLoop().IsInside());
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
	assert(!callbacks.Contains(callback));

	auto &c = callbacks.Add(callback, *this, true);
	if (!c.OpenDirectory(context, path, error)) {
		callbacks.Remove(c);
		return false;
	}

	ScheduleSocket();
	return true;
}

const struct nfsdirent *
NfsConnection::ReadDirectory(struct nfsdir *dir)
{
273 274
	assert(GetEventLoop().IsInside());

275 276 277 278 279 280
	return nfs_readdir(context, dir);
}

void
NfsConnection::CloseDirectory(struct nfsdir *dir)
{
281 282
	assert(GetEventLoop().IsInside());

283 284 285
	return nfs_closedir(context, dir);
}

286 287 288 289
bool
NfsConnection::Open(const char *path, int flags, NfsCallback &callback,
		    Error &error)
{
290
	assert(GetEventLoop().IsInside());
291 292
	assert(!callbacks.Contains(callback));

293
	auto &c = callbacks.Add(callback, *this, true);
294
	if (!c.Open(context, path, flags, error)) {
295
		callbacks.Remove(c);
296 297 298 299 300 301 302 303 304 305
		return false;
	}

	ScheduleSocket();
	return true;
}

bool
NfsConnection::Stat(struct nfsfh *fh, NfsCallback &callback, Error &error)
{
306
	assert(GetEventLoop().IsInside());
307 308
	assert(!callbacks.Contains(callback));

309
	auto &c = callbacks.Add(callback, *this, false);
310
	if (!c.Stat(context, fh, error)) {
311
		callbacks.Remove(c);
312 313 314 315 316 317 318 319 320 321 322
		return false;
	}

	ScheduleSocket();
	return true;
}

bool
NfsConnection::Read(struct nfsfh *fh, uint64_t offset, size_t size,
		    NfsCallback &callback, Error &error)
{
323
	assert(GetEventLoop().IsInside());
324 325
	assert(!callbacks.Contains(callback));

326
	auto &c = callbacks.Add(callback, *this, false);
327
	if (!c.Read(context, fh, offset, size, error)) {
328
		callbacks.Remove(c);
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
		return false;
	}

	ScheduleSocket();
	return true;
}

void
NfsConnection::Cancel(NfsCallback &callback)
{
	callbacks.Cancel(callback);
}

static void
DummyCallback(int, struct nfs_context *, void *, void *)
{
}

347 348 349 350 351 352 353 354 355 356
inline void
NfsConnection::InternalClose(struct nfsfh *fh)
{
	assert(GetEventLoop().IsInside());
	assert(context != nullptr);
	assert(fh != nullptr);

	nfs_close_async(context, fh, DummyCallback, nullptr);
}

357 358 359
void
NfsConnection::Close(struct nfsfh *fh)
{
360 361
	assert(GetEventLoop().IsInside());

362
	InternalClose(fh);
363 364 365
	ScheduleSocket();
}

366 367 368 369 370 371 372
void
NfsConnection::CancelAndClose(struct nfsfh *fh, NfsCallback &callback)
{
	CancellableCallback &cancel = callbacks.Get(callback);
	cancel.CancelAndScheduleClose(fh);
}

373 374 375
void
NfsConnection::DestroyContext()
{
376
	assert(GetEventLoop().IsInside());
377 378
	assert(context != nullptr);

379 380 381 382 383
#ifndef NDEBUG
	assert(!in_destroy);
	in_destroy = true;
#endif

384 385 386 387 388
	if (!mount_finished) {
		assert(TimeoutMonitor::IsActive());
		TimeoutMonitor::Cancel();
	}

389 390 391 392
	/* cancel pending DeferredMonitor that was scheduled to notify
	   new leases */
	DeferredMonitor::Cancel();

393
	if (SocketMonitor::IsDefined())
394
		SocketMonitor::Steal();
395

396 397 398 399
	callbacks.ForEach([](CancellableCallback &c){
			c.PrepareDestroyContext();
		});

400 401 402 403
	nfs_destroy_context(context);
	context = nullptr;
}

404 405 406
inline void
NfsConnection::DeferClose(struct nfsfh *fh)
{
407
	assert(GetEventLoop().IsInside());
408 409
	assert(in_event);
	assert(in_service);
410 411
	assert(context != nullptr);
	assert(fh != nullptr);
412 413 414 415

	deferred_close.push_front(fh);
}

416 417 418
void
NfsConnection::ScheduleSocket()
{
419
	assert(GetEventLoop().IsInside());
420 421 422 423
	assert(context != nullptr);

	if (!SocketMonitor::IsDefined()) {
		int _fd = nfs_get_fd(context);
424 425 426
		if (_fd < 0)
			return;

427 428 429 430 431 432 433
		fd_set_cloexec(_fd, true);
		SocketMonitor::Open(_fd);
	}

	SocketMonitor::Schedule(libnfs_to_events(nfs_which_events(context)));
}

434 435
inline int
NfsConnection::Service(unsigned flags)
436
{
437
	assert(GetEventLoop().IsInside());
438
	assert(context != nullptr);
439

440
#ifndef NDEBUG
441 442 443 444 445
	assert(!in_event);
	in_event = true;

	assert(!in_service);
	in_service = true;
446
#endif
447 448 449

	int result = nfs_service(context, events_to_libnfs(flags));

450
#ifndef NDEBUG
451 452 453
	assert(context != nullptr);
	assert(in_service);
	in_service = false;
454
#endif
455

456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
	return result;
}

bool
NfsConnection::OnSocketReady(unsigned flags)
{
	assert(GetEventLoop().IsInside());
	assert(deferred_close.empty());

	bool closed = false;

	const bool was_mounted = mount_finished;
	if (!mount_finished)
		/* until the mount is finished, the NFS client may use
		   various sockets, therefore we unregister and
		   re-register it each time */
		SocketMonitor::Steal();

	const int result = Service(flags);

476
	while (!deferred_close.empty()) {
477
		InternalClose(deferred_close.front());
478 479 480
		deferred_close.pop_front();
	}

481
	if (!was_mounted && mount_finished) {
482 483 484 485 486 487 488 489 490 491 492 493
		if (postponed_mount_error.IsDefined()) {
			DestroyContext();
			closed = true;
			BroadcastMountError(std::move(postponed_mount_error));
		} else if (result == 0)
			BroadcastMountSuccess();
	} else if (result < 0) {
		/* the connection has failed */
		Error error;
		error.Format(nfs_domain, "NFS connection has failed: %s",
			     nfs_get_error(context));

494 495
		BroadcastError(std::move(error));

496 497
		DestroyContext();
		closed = true;
498
	} else if (nfs_get_fd(context) < 0) {
499
		/* this happens when rpc_reconnect_requeue() is called
500
		   after the connection broke, but autoreconnect was
501 502 503 504 505 506 507 508 509
		   disabled - nfs_service() returns 0 */
		Error error;
		const char *msg = nfs_get_error(context);
		if (msg == nullptr)
			error.Set(nfs_domain, "NFS socket disappeared");
		else
			error.Format(nfs_domain,
				     "NFS socket disappeared: %s", msg);

510 511
		BroadcastError(std::move(error));

512 513
		DestroyContext();
		closed = true;
514 515
	}

516 517
	assert(context == nullptr || nfs_get_fd(context) >= 0);

518
#ifndef NDEBUG
519 520
	assert(in_event);
	in_event = false;
521
#endif
522 523 524 525 526 527 528 529 530 531 532

	if (context != nullptr)
		ScheduleSocket();

	return !closed;
}

inline void
NfsConnection::MountCallback(int status, gcc_unused nfs_context *nfs,
			     gcc_unused void *data)
{
533
	assert(GetEventLoop().IsInside());
534 535 536 537
	assert(context == nfs);

	mount_finished = true;

538 539 540
	assert(TimeoutMonitor::IsActive() || in_destroy);
	TimeoutMonitor::Cancel();

541
	if (status < 0) {
542 543 544
		postponed_mount_error.Format(nfs_domain, status,
					     "nfs_mount_async() failed: %s",
					     nfs_get_error(context));
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
		return;
	}
}

void
NfsConnection::MountCallback(int status, nfs_context *nfs, void *data,
			     void *private_data)
{
	NfsConnection *c = (NfsConnection *)private_data;

	c->MountCallback(status, nfs, data);
}

inline bool
NfsConnection::MountInternal(Error &error)
{
561
	assert(GetEventLoop().IsInside());
562
	assert(context == nullptr);
563 564 565 566 567 568 569 570 571

	context = nfs_init_context();
	if (context == nullptr) {
		error.Set(nfs_domain, "nfs_init_context() failed");
		return false;
	}

	postponed_mount_error.Clear();
	mount_finished = false;
572

573 574
	TimeoutMonitor::ScheduleSeconds(NFS_MOUNT_TIMEOUT);

575
#ifndef NDEBUG
576 577
	in_service = false;
	in_event = false;
578
	in_destroy = false;
579
#endif
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597

	if (nfs_mount_async(context, server.c_str(), export_name.c_str(),
			    MountCallback, this) != 0) {
		error.Format(nfs_domain,
			     "nfs_mount_async() failed: %s",
			     nfs_get_error(context));
		nfs_destroy_context(context);
		context = nullptr;
		return false;
	}

	ScheduleSocket();
	return true;
}

void
NfsConnection::BroadcastMountSuccess()
{
598 599
	assert(GetEventLoop().IsInside());

600 601 602 603 604 605 606 607 608 609
	while (!new_leases.empty()) {
		auto i = new_leases.begin();
		active_leases.splice(active_leases.end(), new_leases, i);
		(*i)->OnNfsConnectionReady();
	}
}

void
NfsConnection::BroadcastMountError(Error &&error)
{
610 611
	assert(GetEventLoop().IsInside());

612 613 614 615 616 617 618 619 620 621 622 623
	while (!new_leases.empty()) {
		auto l = new_leases.front();
		new_leases.pop_front();
		l->OnNfsConnectionFailed(error);
	}

	OnNfsConnectionError(std::move(error));
}

void
NfsConnection::BroadcastError(Error &&error)
{
624 625
	assert(GetEventLoop().IsInside());

626 627 628 629 630 631 632 633 634
	while (!active_leases.empty()) {
		auto l = active_leases.front();
		active_leases.pop_front();
		l->OnNfsConnectionDisconnected(error);
	}

	BroadcastMountError(std::move(error));
}

635 636 637 638 639 640 641 642 643 644 645 646
void
NfsConnection::OnTimeout()
{
	assert(GetEventLoop().IsInside());
	assert(!mount_finished);

	mount_finished = true;
	DestroyContext();

	BroadcastMountError(Error(nfs_domain, "Mount timeout"));
}

647 648 649
void
NfsConnection::RunDeferred()
{
650 651
	assert(GetEventLoop().IsInside());

652
	if (context == nullptr) {
653 654 655 656 657 658 659
		Error error;
		if (!MountInternal(error)) {
			BroadcastMountError(std::move(error));
			return;
		}
	}

660
	if (mount_finished)
661 662
		BroadcastMountSuccess();
}