2004-02-24 18:06:14 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-02-24 18:06:14 +01:00
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#include "permission.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "log.h"
|
2006-08-26 08:25:57 +02:00
|
|
|
#include "utils.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
|
|
|
|
2008-10-17 23:53:28 +02:00
|
|
|
static unsigned parsePermissions(char *string)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-10-17 23:53:28 +02:00
|
|
|
unsigned permission = 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *temp;
|
|
|
|
char *tok;
|
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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
temp = strtok_r(string, PERMISSION_SEPERATOR, &tok);
|
|
|
|
while (temp) {
|
|
|
|
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 {
|
2007-05-26 20:15:54 +02:00
|
|
|
FATAL("unknown permission \"%s\"\n", temp);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
temp = strtok_r(NULL, PERMISSION_SEPERATOR, &tok);
|
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;
|
2006-07-20 18:02:40 +02:00
|
|
|
ConfigParam *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
|
|
|
|
2006-07-14 22:14:06 +02:00
|
|
|
param = getNextConfigParam(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:06 +01:00
|
|
|
char *separator =
|
|
|
|
strchr(param->value, PERMISSION_PASSWORD_CHAR);
|
|
|
|
|
|
|
|
if (separator == NULL)
|
|
|
|
FATAL("\"%c\" not found in password string "
|
2006-07-20 18:02:40 +02:00
|
|
|
"\"%s\", line %i\n",
|
|
|
|
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));
|
2006-07-20 18:02:40 +02:00
|
|
|
} while ((param = getNextConfigParam(CONF_PASSWORD, param)));
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2006-07-14 22:14:06 +02:00
|
|
|
param = getConfigParam(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
|
|
|
}
|
|
|
|
|
2008-10-17 23:53:28 +02:00
|
|
|
int getPermissionFromPassword(char *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;
|
|
|
|
}
|