2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 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"
|
2004-02-24 00:41:20 +01:00
|
|
|
#include "permission.h"
|
|
|
|
#include "conf.h"
|
2010-09-25 15:00:43 +02:00
|
|
|
#include "mpd_error.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
#include <glib.h>
|
2008-12-29 17:28:32 +01:00
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
#include <stdbool.h>
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <string.h>
|
2008-11-01 14:33:25 +01:00
|
|
|
|
2009-01-03 13:20:06 +01:00
|
|
|
#define 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"
|
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
static GHashTable *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
|
|
|
{
|
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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (!string)
|
|
|
|
return 0;
|
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 {
|
2010-09-25 15:00:43 +02:00
|
|
|
MPD_ERROR("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)
|
|
|
|
{
|
|
|
|
char *password;
|
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
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
permission_passwords = g_hash_table_new_full(g_str_hash, g_str_equal,
|
|
|
|
g_free, NULL);
|
2004-03-03 01:01:43 +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 =
|
2009-01-03 13:20:06 +01:00
|
|
|
strchr(param->value, PERMISSION_PASSWORD_CHAR);
|
|
|
|
|
|
|
|
if (separator == NULL)
|
2010-09-25 15:00:43 +02:00
|
|
|
MPD_ERROR("\"%c\" not found in password string "
|
2009-03-15 18:23:00 +01:00
|
|
|
"\"%s\", line %i",
|
|
|
|
PERMISSION_PASSWORD_CHAR,
|
|
|
|
param->value, param->line);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-03 13:20:06 +01:00
|
|
|
password = g_strndup(param->value,
|
|
|
|
separator - param->value);
|
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
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
g_hash_table_replace(permission_passwords,
|
2009-01-03 13:20:06 +01:00
|
|
|
password,
|
2008-11-01 14:33:25 +01:00
|
|
|
GINT_TO_POINTER(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)
|
|
|
|
permission_default = parsePermissions(param->value);
|
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
|
|
|
{
|
2008-11-01 14:33:25 +01:00
|
|
|
bool found;
|
|
|
|
gpointer key, value;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
found = g_hash_table_lookup_extended(permission_passwords,
|
|
|
|
password, &key, &value);
|
|
|
|
if (!found)
|
|
|
|
return -1;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-11-01 14:33:25 +01:00
|
|
|
*permission = GPOINTER_TO_INT(value);
|
|
|
|
return 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void finishPermissions(void)
|
|
|
|
{
|
2008-11-01 14:33:25 +01:00
|
|
|
g_hash_table_destroy(permission_passwords);
|
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;
|
|
|
|
}
|