2007-04-27 21:58:48 +04:00
|
|
|
/*
|
|
|
|
* calmwm - the calm window manager
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
2008-01-11 19:06:44 +03:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2007-04-27 21:58:48 +04:00
|
|
|
*
|
2011-05-11 17:53:51 +04:00
|
|
|
* $OpenBSD$
|
2007-04-27 21:58:48 +04:00
|
|
|
*/
|
|
|
|
|
2015-01-19 17:54:16 +03:00
|
|
|
#include <sys/types.h>
|
2009-12-15 07:10:42 +03:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2015-01-19 17:54:16 +03:00
|
|
|
#include <limits.h>
|
2019-02-13 18:43:24 +03:00
|
|
|
#include <stdarg.h>
|
2012-11-09 07:52:02 +04:00
|
|
|
#include <stdio.h>
|
2009-12-15 07:10:42 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-04-27 21:58:48 +04:00
|
|
|
#include "calmwm.h"
|
|
|
|
|
2018-02-02 16:40:55 +03:00
|
|
|
static void log_msg(const char *, va_list);
|
|
|
|
|
2011-06-24 09:40:09 +04:00
|
|
|
void
|
2007-04-27 21:58:48 +04:00
|
|
|
u_spawn(char *argstr)
|
|
|
|
{
|
|
|
|
switch (fork()) {
|
|
|
|
case 0:
|
2008-04-16 01:20:56 +04:00
|
|
|
u_exec(argstr);
|
2018-01-08 19:21:54 +03:00
|
|
|
exit(1);
|
2007-04-27 21:58:48 +04:00
|
|
|
case -1:
|
|
|
|
warn("fork");
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-28 19:35:52 +03:00
|
|
|
void
|
2008-04-16 01:20:56 +04:00
|
|
|
u_exec(char *argstr)
|
2007-11-28 19:35:52 +03:00
|
|
|
{
|
2015-09-16 20:58:25 +03:00
|
|
|
#define MAXARGLEN 20
|
2008-07-11 18:21:28 +04:00
|
|
|
char *args[MAXARGLEN], **ap = args;
|
|
|
|
char **end = &args[MAXARGLEN - 1], *tmp;
|
2015-09-16 20:58:25 +03:00
|
|
|
char *s = argstr;
|
2007-11-28 19:35:52 +03:00
|
|
|
|
2008-04-16 01:20:56 +04:00
|
|
|
while (ap < end && (*ap = strsep(&argstr, " \t")) != NULL) {
|
2008-05-16 02:18:00 +04:00
|
|
|
if (**ap == '\0')
|
2008-04-16 01:20:56 +04:00
|
|
|
continue;
|
2008-05-16 02:18:00 +04:00
|
|
|
ap++;
|
2008-04-16 01:20:56 +04:00
|
|
|
if (argstr != NULL) {
|
|
|
|
/* deal with quoted strings */
|
|
|
|
switch(argstr[0]) {
|
|
|
|
case '"':
|
|
|
|
case '\'':
|
|
|
|
if ((tmp = strchr(argstr + 1, argstr[0]))
|
|
|
|
!= NULL) {
|
|
|
|
*(tmp++) = '\0';
|
|
|
|
*(ap++) = ++argstr;
|
|
|
|
argstr = tmp;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-28 19:35:52 +03:00
|
|
|
*ap = NULL;
|
2015-09-16 20:58:25 +03:00
|
|
|
|
2011-07-25 19:10:24 +04:00
|
|
|
(void)setsid();
|
|
|
|
(void)execvp(args[0], args);
|
2017-12-29 23:09:19 +03:00
|
|
|
warn("%s", s);
|
2015-09-16 20:58:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
u_argv(char * const *argv)
|
|
|
|
{
|
|
|
|
size_t siz = 0;
|
|
|
|
int i;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (argv == 0)
|
2020-02-27 17:56:39 +03:00
|
|
|
return NULL;
|
2015-09-16 20:58:25 +03:00
|
|
|
|
|
|
|
for (i = 0; argv[i]; i++)
|
|
|
|
siz += strlen(argv[i]) + 1;
|
|
|
|
if (siz == 0)
|
2020-02-27 17:56:39 +03:00
|
|
|
return NULL;
|
2015-09-16 20:58:25 +03:00
|
|
|
|
|
|
|
p = xmalloc(siz);
|
|
|
|
strlcpy(p, argv[0], siz);
|
|
|
|
for (i = 1; argv[i]; i++) {
|
|
|
|
strlcat(p, " ", siz);
|
|
|
|
strlcat(p, argv[i], siz);
|
|
|
|
}
|
2020-02-27 17:56:39 +03:00
|
|
|
return p;
|
2007-11-28 19:35:52 +03:00
|
|
|
}
|
2018-02-02 16:40:55 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
log_msg(const char *msg, va_list ap)
|
|
|
|
{
|
|
|
|
char *fmt;
|
|
|
|
|
|
|
|
if (asprintf(&fmt, "%s\n", msg) == -1) {
|
|
|
|
vfprintf(stderr, msg, ap);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
} else {
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
free(fmt);
|
|
|
|
}
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-02-05 01:56:26 +03:00
|
|
|
log_debug(int level, const char *func, const char *msg, ...)
|
2018-02-02 16:40:55 +03:00
|
|
|
{
|
|
|
|
char *fmt;
|
|
|
|
va_list ap;
|
|
|
|
|
2018-02-05 01:56:26 +03:00
|
|
|
if (Conf.debug < level)
|
|
|
|
return;
|
|
|
|
|
2018-02-02 16:40:55 +03:00
|
|
|
va_start(ap, msg);
|
2018-02-05 01:56:26 +03:00
|
|
|
xasprintf(&fmt, "debug%d: %s: %s", level, func, msg);
|
2018-02-02 16:40:55 +03:00
|
|
|
log_msg(fmt, ap);
|
2019-04-29 22:03:20 +03:00
|
|
|
free(fmt);
|
2018-02-02 16:40:55 +03:00
|
|
|
va_end(ap);
|
|
|
|
}
|