2004-02-24 00:41:20 +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 00:41:20 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void my_usleep(long usec)
|
|
|
|
{
|
2008-12-30 19:10:08 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
Sleep(usec / 1000);
|
|
|
|
#else
|
2004-04-01 05:48:51 +02:00
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = usec;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
select(0, NULL, NULL, NULL, &tv);
|
2008-12-30 19:10:08 +01:00
|
|
|
#endif
|
2004-04-01 05:48:51 +02:00
|
|
|
}
|
2004-05-15 23:19:43 +02:00
|
|
|
|
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') {
|
2008-12-29 17:42:46 +01:00
|
|
|
ConfigParam *param = getConfigParam(CONF_USER);
|
2007-06-13 17:27:09 +02:00
|
|
|
if (param && param->value) {
|
2008-12-29 17:42:46 +01:00
|
|
|
struct passwd *passwd = getpwnam(param->value);
|
2007-06-13 17:27:09 +02:00
|
|
|
if (!passwd) {
|
2008-12-29 17:29:01 +01:00
|
|
|
g_warning("no such user %s",
|
|
|
|
param->value);
|
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;
|
|
|
|
}
|