2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-03 03:06:45 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 18:06:14 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 18:06:14 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-03 03:06:45 +01:00
|
|
|
#include "Permission.hxx"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigData.hxx"
|
|
|
|
#include "ConfigGlobal.hxx"
|
|
|
|
#include "ConfigOption.hxx"
|
2013-09-05 18:20:52 +02:00
|
|
|
#include "system/FatalError.hxx"
|
2013-01-03 03:06:45 +01:00
|
|
|
|
2013-01-03 03:06:35 +01:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
#include <glib.h>
|
2008-12-29 17:28:32 +01:00
|
|
|
|
2013-10-19 16:40:40 +02:00
|
|
|
#include <assert.h>
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <string.h>
|
2008-11-01 14:33:25 +01:00
|
|
|
|
2013-10-19 16:39:45 +02:00
|
|
|
static constexpr char PERMISSION_PASSWORD_CHAR = '@';
|
2004-02-24 00:41:20 +01:00
|
|
|
#define PERMISSION_SEPERATOR ","
|
|
|
|
|
|
|
|
#define PERMISSION_READ_STRING "read"
|
|
|
|
#define PERMISSION_ADD_STRING "add"
|
|
|
|
#define PERMISSION_CONTROL_STRING "control"
|
|
|
|
#define PERMISSION_ADMIN_STRING "admin"
|
|
|
|
|
2013-01-03 03:06:35 +01:00
|
|
|
static std::map<std::string, unsigned> permission_passwords;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-10-17 23:53:28 +02:00
|
|
|
static unsigned permission_default;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-03 13:20:10 +01:00
|
|
|
static unsigned parsePermissions(const char *string)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-10-19 16:40:40 +02:00
|
|
|
assert(string != nullptr);
|
|
|
|
|
2008-10-17 23:53:28 +02:00
|
|
|
unsigned permission = 0;
|
2009-01-03 13:20:10 +01:00
|
|
|
gchar **tokens;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-03 13:20:10 +01:00
|
|
|
tokens = g_strsplit(string, PERMISSION_SEPERATOR, 0);
|
|
|
|
for (unsigned i = 0; tokens[i] != NULL; ++i) {
|
|
|
|
char *temp = tokens[i];
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (strcmp(temp, PERMISSION_READ_STRING) == 0) {
|
2004-02-24 00:41:20 +01:00
|
|
|
permission |= PERMISSION_READ;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (strcmp(temp, PERMISSION_ADD_STRING) == 0) {
|
2004-02-24 00:41:20 +01:00
|
|
|
permission |= PERMISSION_ADD;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (strcmp(temp, PERMISSION_CONTROL_STRING) == 0) {
|
2004-02-24 00:41:20 +01:00
|
|
|
permission |= PERMISSION_CONTROL;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else if (strcmp(temp, PERMISSION_ADMIN_STRING) == 0) {
|
2004-02-24 00:41:20 +01:00
|
|
|
permission |= PERMISSION_ADMIN;
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2013-09-05 18:20:52 +02:00
|
|
|
FormatFatalError("unknown permission \"%s\"", temp);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-03 13:20:10 +01:00
|
|
|
g_strfreev(tokens);
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
return permission;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void initPermissions(void)
|
|
|
|
{
|
2008-11-01 14:33:25 +01:00
|
|
|
unsigned permission;
|
2009-01-25 16:03:49 +01:00
|
|
|
const struct config_param *param;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
permission_default = PERMISSION_READ | PERMISSION_ADD |
|
|
|
|
PERMISSION_CONTROL | PERMISSION_ADMIN;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-17 20:23:27 +01:00
|
|
|
param = config_get_next_param(CONF_PASSWORD, NULL);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (param) {
|
|
|
|
permission_default = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-14 22:14:06 +02:00
|
|
|
do {
|
2009-01-03 13:20:10 +01:00
|
|
|
const char *separator =
|
2013-10-15 22:32:39 +02:00
|
|
|
strchr(param->value.c_str(),
|
|
|
|
PERMISSION_PASSWORD_CHAR);
|
2009-01-03 13:20:06 +01:00
|
|
|
|
|
|
|
if (separator == NULL)
|
2013-09-05 18:20:52 +02:00
|
|
|
FormatFatalError("\"%c\" not found in password string "
|
|
|
|
"\"%s\", line %i",
|
|
|
|
PERMISSION_PASSWORD_CHAR,
|
2013-10-15 22:32:39 +02:00
|
|
|
param->value.c_str(),
|
|
|
|
param->line);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-10-15 22:32:39 +02:00
|
|
|
std::string password(param->value.c_str(), separator);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-03 13:20:06 +01:00
|
|
|
permission = parsePermissions(separator + 1);
|
2006-07-14 22:14:06 +02:00
|
|
|
|
2013-10-15 22:40:17 +02:00
|
|
|
permission_passwords.insert(std::make_pair(std::move(password),
|
2013-01-03 03:06:35 +01:00
|
|
|
permission));
|
2009-01-17 20:23:27 +01:00
|
|
|
} while ((param = config_get_next_param(CONF_PASSWORD, param)));
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2009-01-17 20:23:27 +01:00
|
|
|
param = config_get_param(CONF_DEFAULT_PERMS);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (param)
|
2013-10-15 22:32:39 +02:00
|
|
|
permission_default = parsePermissions(param->value.c_str());
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2009-10-22 15:10:01 +02:00
|
|
|
int getPermissionFromPassword(char const* password, unsigned* permission)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-01-03 03:06:35 +01:00
|
|
|
auto i = permission_passwords.find(password);
|
|
|
|
if (i == permission_passwords.end())
|
2008-11-01 14:33:25 +01:00
|
|
|
return -1;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-01-03 03:06:35 +01:00
|
|
|
*permission = i->second;
|
2008-11-01 14:33:25 +01:00
|
|
|
return 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2008-10-17 23:53:28 +02:00
|
|
|
unsigned getDefaultPermissions(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-02-24 00:41:20 +01:00
|
|
|
return permission_default;
|
|
|
|
}
|