ClientFile.cxx 1.68 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 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
#include "config.h"
Max Kellermann's avatar
Max Kellermann committed
21
#include "Client.hxx"
22
#include "protocol/Ack.hxx"
23 24
#include "fs/Path.hxx"
#include "fs/FileSystem.hxx"
25
#include "util/Error.hxx"
26 27 28 29 30

#include <sys/stat.h>
#include <unistd.h>

bool
31
Client::AllowFile(Path path_fs, Error &error) const
32 33 34 35
{
#ifdef WIN32
	(void)path_fs;

36
	error.Set(ack_domain, ACK_ERROR_PERMISSION, "Access denied");
37 38
	return false;
#else
39 40 41 42 43
	if (uid >= 0 && (uid_t)uid == geteuid())
		/* always allow access if user runs his own MPD
		   instance */
		return true;

44
	if (uid < 0) {
45
		/* unauthenticated client */
46
		error.Set(ack_domain, ACK_ERROR_PERMISSION, "Access denied");
47 48 49 50
		return false;
	}

	struct stat st;
51
	if (!StatFile(path_fs, st)) {
52
		error.SetErrno();
53 54 55 56 57
		return false;
	}

	if (st.st_uid != (uid_t)uid && (st.st_mode & 0444) != 0444) {
		/* client is not owner */
58
		error.Set(ack_domain, ACK_ERROR_PERMISSION, "Access denied");
59 60 61 62 63 64
		return false;
	}

	return true;
#endif
}