1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
/*
* MOC - music on console
* Copyright (C) 2004 - 2005 Damian Pietras <daper@daper.net>
*
* 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.
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
# undef malloc
#endif
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include <assert.h>
#include <unistd.h>
#include <time.h>
#include <sys/types.h>
#include <pwd.h>
#include <pthread.h>
#include <signal.h>
#include <errno.h>
#ifdef HAVE_SYSLOG
#include <syslog.h>
#endif
#include "common.h"
#include "server.h"
#include "interface.h"
#include "interface_elements.h"
#include "log.h"
#include "options.h"
static int im_server = 0; /* Am I the server? */
void internal_error (const char *file, int line, const char *function,
const char *format, ...)
{
int saved_errno = errno;
va_list va;
char *msg;
va_start (va, format);
msg = format_msg_va (format, va);
va_end (va);
if (im_server)
server_error (file, line, function, msg);
else
interface_error (msg);
free (msg);
errno = saved_errno;
}
/* End program with a message. Use when an error occurs and we can't recover.
* If we're the server, then also log the message to the system log. */
void internal_fatal (const char *file LOGIT_ONLY, int line LOGIT_ONLY,
const char *function LOGIT_ONLY, const char *format, ...)
{
va_list va;
char *msg;
windows_reset ();
va_start (va, format);
msg = format_msg_va (format, va);
fprintf (stderr, "\nFATAL_ERROR: %s\n\n", msg);
#ifndef NDEBUG
internal_logit (file, line, function, "FATAL ERROR: %s", msg);
#endif
va_end (va);
log_close ();
#ifdef HAVE_SYSLOG
if (im_server)
syslog (LOG_USER|LOG_ERR, "%s", msg);
#endif
free (msg);
exit (EXIT_FATAL);
}
void *xmalloc (size_t size)
{
void *p;
#ifndef HAVE_MALLOC
size = MAX(1, size);
#endif
if ((p = malloc(size)) == NULL)
fatal ("Can't allocate memory!");
return p;
}
void *xcalloc (size_t nmemb, size_t size)
{
void *p;
if ((p = calloc(nmemb, size)) == NULL)
fatal ("Can't allocate memory!");
return p;
}
void *xrealloc (void *ptr, const size_t size)
{
void *p;
p = realloc (ptr, size);
if (!p && size != 0)
fatal ("Can't allocate memory!");
return p;
}
char *xstrdup (const char *s)
{
char *n;
if (s && (n = strdup(s)) == NULL)
fatal ("Can't allocate memory!");
return s ? n : NULL;
}
/* Sleep for the specified number of 'ticks'. */
void xsleep (size_t ticks, size_t ticks_per_sec)
{
assert(ticks_per_sec > 0);
if (ticks > 0) {
int rc;
struct timespec delay = {.tv_sec = ticks};
if (ticks_per_sec > 1) {
uint64_t nsecs;
delay.tv_sec /= ticks_per_sec;
nsecs = ticks % ticks_per_sec;
if (nsecs > 0) {
assert (nsecs < UINT64_MAX / UINT64_C(1000000000));
delay.tv_nsec = nsecs * UINT64_C(1000000000);
delay.tv_nsec /= ticks_per_sec;
}
}
do {
rc = nanosleep (&delay, &delay);
if (rc == -1 && errno != EINTR)
fatal ("nanosleep() failed: %s", xstrerror (errno));
} while (rc != 0);
}
}
#if !HAVE_DECL_STRERROR_R
static pthread_mutex_t xstrerror_mtx = PTHREAD_MUTEX_INITIALIZER;
#endif
#if !HAVE_DECL_STRERROR_R
/* Return error message in malloc() buffer (for strerror(3)). */
char *xstrerror (int errnum)
{
char *result;
/* The client is not threaded. */
if (!im_server)
return xstrdup (strerror (errnum));
LOCK (xstrerror_mtx);
result = xstrdup (strerror (errnum));
UNLOCK (xstrerror_mtx);
return result;
}
#endif
#if HAVE_DECL_STRERROR_R
/* Return error message in malloc() buffer (for strerror_r(3)). */
char *xstrerror (int errnum)
{
int saved_errno = errno;
char *err_str, err_buf[256];
#ifdef STRERROR_R_CHAR_P
/* strerror_r(3) is GNU variant. */
err_str = strerror_r (errnum, err_buf, sizeof (err_buf));
#else
/* strerror_r(3) is XSI variant. */
if (strerror_r (errnum, err_buf, sizeof (err_buf)) < 0) {
logit ("Error %d occurred obtaining error description for %d",
errno, errnum);
strcpy (err_buf, "Error occurred obtaining error description");
}
err_str = err_buf;
#endif
errno = saved_errno;
return xstrdup (err_str);
}
#endif
/* A signal(2) which is both thread safe and POSIXly well defined. */
void xsignal (int signum, void (*func)(int))
{
struct sigaction act;
act.sa_handler = func;
act.sa_flags = 0;
sigemptyset (&act.sa_mask);
if (sigaction(signum, &act, 0) == -1)
fatal ("sigaction() failed: %s", xstrerror (errno));
}
void set_me_server ()
{
im_server = 1;
}
char *str_repl (char *target, const char *oldstr, const char *newstr)
{
size_t oldstr_len = strlen(oldstr);
size_t newstr_len = strlen(newstr);
size_t target_len = strlen(target);
size_t target_max = target_len;
size_t s, p;
char *needle;
for (s = 0; (needle = strstr(target + s, oldstr)) != NULL;
s = p + newstr_len) {
target_len += newstr_len - oldstr_len;
p = needle - target;
if (target_len + 1 > target_max) {
target_max = MAX(target_len + 1, target_max * 2);
target = xrealloc(target, target_max);
}
memmove(target + p + newstr_len, target + p + oldstr_len,
target_len - p - newstr_len + 1);
memcpy(target + p, newstr, newstr_len);
}
target = xrealloc(target, target_len + 1);
return target;
}
/* Extract a substring starting at 'src' for length 'len' and remove
* any leading and trailing whitespace. Return NULL if unable. */
char *trim (const char *src, size_t len)
{
char *result;
const char *first, *last;
for (last = &src[len - 1]; last >= src; last -= 1) {
if (!isspace (*last))
break;
}
if (last < src)
return NULL;
for (first = src; first <= last; first += 1) {
if (!isspace (*first))
break;
}
if (first > last)
return NULL;
last += 1;
result = xcalloc (last - first + 1, sizeof (char));
strncpy (result, first, last - first);
result[last - first] = 0x00;
return result;
}
/* Format argument values according to 'format' and return it as a
* malloc()ed string. */
char *format_msg (const char *format, ...)
{
char *result;
va_list va;
va_start (va, format);
result = format_msg_va (format, va);
va_end (va);
return result;
}
/* Format a vararg list according to 'format' and return it as a
* malloc()ed string. */
char *format_msg_va (const char *format, va_list va)
{
int len;
char *result;
va_list va_copy;
va_copy (va_copy, va);
len = vsnprintf (NULL, 0, format, va_copy) + 1;
va_end (va_copy);
result = xmalloc (len);
vsnprintf (result, len, format, va);
return result;
}
/* Return true iff the argument would be a syntactically valid symbol.
* (Note that the so-called "peculiar indentifiers" are disallowed here.) */
bool is_valid_symbol (const char *candidate)
{
size_t len;
bool result;
const char *first = "+-.0123456789@";
const char *valid = "abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789"
"@?!.+-*/<=>:$%^&_~";
result = false;
len = strlen (candidate);
if (len > 0 && len == strspn (candidate, valid) &&
strchr (first, candidate[0]) == NULL)
result = true;
return result;
}
/* Return path to a file in MOC config directory. NOT THREAD SAFE */
char *create_file_name (const char *file)
{
int rc;
static char fname[PATH_MAX];
char *moc_dir = options_get_str ("MOCDir");
if (moc_dir[0] == '~')
rc = snprintf(fname, sizeof(fname), "%s/%s/%s", get_home (),
(moc_dir[1] == '/') ? moc_dir + 2 : moc_dir + 1,
file);
else
rc = snprintf(fname, sizeof(fname), "%s/%s", moc_dir, file);
if (rc >= ssizeof(fname))
fatal ("Path too long!");
return fname;
}
int get_realtime (struct timespec *ts)
{
int result;
#ifdef HAVE_CLOCK_GETTIME
result = clock_gettime (CLOCK_REALTIME, ts);
#else
struct timeval tv;
result = gettimeofday (&tv, NULL);
if (result == 0) {
ts->tv_sec = tv.tv_sec;
ts->tv_nsec = tv.tv_usec * 1000L;
}
#endif
return result;
}
/* Convert time in second to min:sec text format.
'buff' must be at least 32 chars long. */
void sec_to_min (char *buff, const int seconds)
{
assert (seconds >= 0);
if (seconds < 6000) {
/* the time is less than 99:59 */
int min, sec;
min = seconds / 60;
sec = seconds % 60;
snprintf (buff, 32, "%02d:%02d", min, sec);
}
else if (seconds < 10000 * 60)
/* the time is less than 9999 minutes */
snprintf (buff, 32, "%4dm", seconds/60);
else
strcpy (buff, "!!!!!");
}
/* Determine and return the path of the user's home directory. */
const char *get_home ()
{
static const char *home = NULL;
struct passwd *passwd;
if (home == NULL) {
home = xstrdup (getenv ("HOME"));
if (home == NULL) {
errno = 0;
passwd = getpwuid (geteuid ());
if (passwd)
home = xstrdup (passwd->pw_dir);
else
if (errno != 0) {
char *err = xstrerror (errno);
logit ("getpwuid(%d): %s", geteuid (), err);
free (err);
}
}
}
return home;
}
void common_cleanup ()
{
#if !HAVE_DECL_STRERROR_R
int rc;
if (im_server)
return;
rc = pthread_mutex_destroy (&xstrerror_mtx);
if (rc != 0)
logit ("Can't destroy xstrerror_mtx: %s", strerror (rc));
#endif
}
|