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

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

bool
35
client_allow_file(const Client &client, Path path_fs, Error &error)
36 37 38 39 40
{
#ifdef WIN32
	(void)client;
	(void)path_fs;

41
	error.Set(ack_domain, ACK_ERROR_PERMISSION, "Access denied");
42 43
	return false;
#else
44
	const int uid = client.GetUID();
45 46 47 48 49
	if (uid >= 0 && (uid_t)uid == geteuid())
		/* always allow access if user runs his own MPD
		   instance */
		return true;

50 51
	if (uid <= 0) {
		/* unauthenticated client */
52
		error.Set(ack_domain, ACK_ERROR_PERMISSION, "Access denied");
53 54 55 56
		return false;
	}

	struct stat st;
57
	if (!StatFile(path_fs, st)) {
58
		error.SetErrno();
59 60 61 62 63
		return false;
	}

	if (st.st_uid != (uid_t)uid && (st.st_mode & 0444) != 0444) {
		/* client is not owner */
64
		error.Set(ack_domain, ACK_ERROR_PERMISSION, "Access denied");
65 66 67 68 69 70
		return false;
	}

	return true;
#endif
}