2009-03-13 18:43:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "utils.h"
|
2007-06-13 17:27:09 +02:00
|
|
|
#include "conf.h"
|
2009-01-08 21:37:02 +01:00
|
|
|
#include "config.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
|
|
|
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
|
2008-12-30 19:10:08 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2007-06-13 17:27:09 +02:00
|
|
|
char *parsePath(char *path)
|
|
|
|
{
|
2008-12-29 17:42:54 +01:00
|
|
|
#ifndef WIN32
|
2007-06-13 17:27:09 +02:00
|
|
|
if (path[0] != '/' && path[0] != '~') {
|
2008-12-29 17:29:01 +01:00
|
|
|
g_warning("\"%s\" is not an absolute path", path);
|
2007-06-13 17:27:09 +02:00
|
|
|
return NULL;
|
|
|
|
} else if (path[0] == '~') {
|
2008-12-29 17:42:46 +01:00
|
|
|
size_t pos = 1;
|
|
|
|
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) {
|
2009-01-25 16:00:51 +01:00
|
|
|
g_warning("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) {
|
|
|
|
g_warning("problems getting home "
|
|
|
|
"for current user");
|
2007-06-13 17:27:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2008-12-29 17:42:46 +01:00
|
|
|
bool foundSlash = false;
|
|
|
|
struct passwd *passwd;
|
|
|
|
char *c;
|
|
|
|
|
2007-06-13 17:27:09 +02:00
|
|
|
for (c = path + 1; *c != '\0' && *c != '/'; c++);
|
|
|
|
if (*c == '/') {
|
2008-12-29 17:42:46 +01:00
|
|
|
foundSlash = true;
|
2007-06-13 17:27:09 +02:00
|
|
|
*c = '\0';
|
|
|
|
}
|
|
|
|
pos = c - path;
|
|
|
|
|
|
|
|
passwd = getpwnam(path + 1);
|
|
|
|
if (!passwd) {
|
2008-12-29 17:29:01 +01:00
|
|
|
g_warning("user \"%s\" not found", path + 1);
|
2007-06-13 17:27:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (foundSlash)
|
|
|
|
*c = '/';
|
2008-12-29 17:42:46 +01:00
|
|
|
|
|
|
|
home = passwd->pw_dir;
|
2007-06-13 17:27:09 +02:00
|
|
|
}
|
|
|
|
|
2009-01-03 14:53:42 +01:00
|
|
|
return g_strconcat(home, path + pos, 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
|
|
|
}
|
2008-03-26 11:39:03 +01:00
|
|
|
|
|
|
|
int set_nonblocking(int fd)
|
|
|
|
{
|
2008-12-30 19:17:20 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
u_long val = 0;
|
|
|
|
|
|
|
|
return ioctlsocket(fd, FIONBIO, &val) == 0 ? 0 : -1;
|
|
|
|
#else
|
2008-03-26 11:39:03 +01:00
|
|
|
int ret, flags;
|
|
|
|
|
|
|
|
assert(fd >= 0);
|
|
|
|
|
|
|
|
while ((flags = fcntl(fd, F_GETFL)) < 0 && errno == EINTR) ;
|
|
|
|
if (flags < 0)
|
|
|
|
return flags;
|
|
|
|
|
|
|
|
flags |= O_NONBLOCK;
|
|
|
|
while ((ret = fcntl(fd, F_SETFL, flags)) < 0 && errno == EINTR) ;
|
|
|
|
return ret;
|
2008-12-30 19:17:20 +01:00
|
|
|
#endif
|
2008-03-26 11:39:03 +01:00
|
|
|
}
|
2008-06-30 04:43:04 +02:00
|
|
|
|
2008-12-09 17:36:10 +01:00
|
|
|
int stringFoundInStringArray(const char *const*array, const char *suffix)
|
|
|
|
{
|
|
|
|
while (array && *array) {
|
|
|
|
if (strcasecmp(*array, suffix) == 0)
|
|
|
|
return 1;
|
|
|
|
array++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|