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 00:41:20 +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 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
#include "utils.h"
|
2007-06-13 17:27:09 +02:00
|
|
|
#include "conf.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-12-29 17:42:54 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
2009-01-03 14:53:42 +01:00
|
|
|
#include <errno.h>
|
2008-12-29 17:42:54 +01:00
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
#include <pwd.h>
|
|
|
|
#endif
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2011-12-11 03:37:45 +01:00
|
|
|
#if HAVE_IPV6 && WIN32
|
|
|
|
#include <winsock2.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_IPV6 && ! WIN32
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
|
2008-12-30 19:10:08 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2011-09-09 22:35:15 +02:00
|
|
|
G_GNUC_CONST
|
|
|
|
static inline GQuark
|
|
|
|
parse_path_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("path");
|
|
|
|
}
|
|
|
|
|
2011-09-09 22:17:35 +02:00
|
|
|
char *
|
2011-09-09 22:35:15 +02:00
|
|
|
parsePath(const char *path, G_GNUC_UNUSED GError **error_r)
|
2007-06-13 17:27:09 +02:00
|
|
|
{
|
2011-09-09 22:35:15 +02:00
|
|
|
assert(path != NULL);
|
|
|
|
assert(error_r == NULL || *error_r == NULL);
|
|
|
|
|
2008-12-29 17:42:54 +01:00
|
|
|
#ifndef WIN32
|
2009-10-20 21:01:55 +02:00
|
|
|
if (!g_path_is_absolute(path) && path[0] != '~') {
|
2011-09-09 22:35:15 +02:00
|
|
|
g_set_error(error_r, parse_path_quark(), 0,
|
|
|
|
"not an absolute path: %s", path);
|
2007-06-13 17:27:09 +02:00
|
|
|
return NULL;
|
|
|
|
} else if (path[0] == '~') {
|
2008-12-29 17:42:46 +01:00
|
|
|
const char *home;
|
|
|
|
|
2007-06-13 17:27:09 +02:00
|
|
|
if (path[1] == '/' || path[1] == '\0') {
|
2009-01-25 16:00:51 +01:00
|
|
|
const char *user = config_get_string(CONF_USER, NULL);
|
|
|
|
if (user != NULL) {
|
|
|
|
struct passwd *passwd = getpwnam(user);
|
2007-06-13 17:27:09 +02:00
|
|
|
if (!passwd) {
|
2011-09-09 22:35:15 +02:00
|
|
|
g_set_error(error_r, parse_path_quark(), 0,
|
|
|
|
"no such user: %s", user);
|
2007-06-13 17:27:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-12-29 17:42:46 +01:00
|
|
|
|
|
|
|
home = passwd->pw_dir;
|
2007-06-13 17:27:09 +02:00
|
|
|
} else {
|
2008-12-29 17:42:49 +01:00
|
|
|
home = g_get_home_dir();
|
|
|
|
if (home == NULL) {
|
2011-09-09 22:35:15 +02:00
|
|
|
g_set_error_literal(error_r, parse_path_quark(), 0,
|
|
|
|
"problems getting home "
|
|
|
|
"for current user");
|
2007-06-13 17:27:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2011-09-09 22:22:56 +02:00
|
|
|
|
|
|
|
++path;
|
2007-06-13 17:27:09 +02:00
|
|
|
} else {
|
2011-09-09 22:17:35 +02:00
|
|
|
++path;
|
2008-12-29 17:42:46 +01:00
|
|
|
|
2011-09-09 22:17:35 +02:00
|
|
|
const char *slash = strchr(path, '/');
|
|
|
|
char *user = slash != NULL
|
|
|
|
? g_strndup(path, slash - path)
|
|
|
|
: g_strdup(path);
|
2007-06-13 17:27:09 +02:00
|
|
|
|
2011-09-09 22:17:35 +02:00
|
|
|
struct passwd *passwd = getpwnam(user);
|
2007-06-13 17:27:09 +02:00
|
|
|
if (!passwd) {
|
2011-09-09 22:35:15 +02:00
|
|
|
g_set_error(error_r, parse_path_quark(), 0,
|
|
|
|
"no such user: %s", user);
|
2011-09-09 22:17:35 +02:00
|
|
|
g_free(user);
|
2007-06-13 17:27:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-09 22:17:35 +02:00
|
|
|
g_free(user);
|
2008-12-29 17:42:46 +01:00
|
|
|
|
|
|
|
home = passwd->pw_dir;
|
2011-09-09 22:17:35 +02:00
|
|
|
path = slash;
|
2007-06-13 17:27:09 +02:00
|
|
|
}
|
|
|
|
|
2011-09-09 22:22:56 +02:00
|
|
|
return g_strconcat(home, path, NULL);
|
2007-06-13 17:27:09 +02:00
|
|
|
} else {
|
2008-12-29 17:42:54 +01:00
|
|
|
#endif
|
2009-01-03 14:53:42 +01:00
|
|
|
return g_strdup(path);
|
2008-12-29 17:42:54 +01:00
|
|
|
#ifndef WIN32
|
2007-06-13 17:27:09 +02:00
|
|
|
}
|
2008-12-29 17:42:54 +01:00
|
|
|
#endif
|
2007-06-13 17:27:09 +02:00
|
|
|
}
|