2010-02-08 18:10:07 +00:00
|
|
|
/* $Id: cfg.c,v 1.25 2010-02-08 18:10:07 tcunha Exp $ */
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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 MIND, 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2009-05-21 19:38:51 +00:00
|
|
|
#include <sys/stat.h>
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Config file parser. Pretty quick and simple, each line is parsed into a
|
|
|
|
* argv array and executed as a command.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void printflike2 cfg_print(struct cmd_ctx *, const char *, ...);
|
|
|
|
void printflike2 cfg_error(struct cmd_ctx *, const char *, ...);
|
|
|
|
|
2008-06-02 18:55:53 +00:00
|
|
|
char *cfg_cause;
|
2010-02-08 18:10:07 +00:00
|
|
|
int cfg_finished;
|
|
|
|
char **cfg_causes;
|
|
|
|
u_int cfg_ncauses;
|
2008-06-02 18:55:53 +00:00
|
|
|
|
2009-11-28 14:50:37 +00:00
|
|
|
/* ARGSUSED */
|
2008-06-02 18:08:17 +00:00
|
|
|
void printflike2
|
|
|
|
cfg_print(unused struct cmd_ctx *ctx, unused const char *fmt, ...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-11-28 14:50:37 +00:00
|
|
|
/* ARGSUSED */
|
2008-06-02 18:08:17 +00:00
|
|
|
void printflike2
|
2008-06-02 18:55:53 +00:00
|
|
|
cfg_error(unused struct cmd_ctx *ctx, const char *fmt, ...)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2008-06-02 18:55:53 +00:00
|
|
|
xvasprintf(&cfg_cause, fmt, ap);
|
2008-06-02 18:08:17 +00:00
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2010-02-08 18:10:07 +00:00
|
|
|
void printflike3
|
|
|
|
cfg_add_cause(u_int *ncauses, char ***causes, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char *cause;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
xvasprintf(&cause, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
*causes = xrealloc(*causes, *ncauses + 1, sizeof **causes);
|
|
|
|
(*causes)[(*ncauses)++] = cause;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load configuration file. Returns -1 for an error with a list of messages in
|
|
|
|
* causes. Note that causes and ncauses must be initialised by the caller!
|
|
|
|
*/
|
2008-06-02 18:08:17 +00:00
|
|
|
int
|
2010-02-08 18:10:07 +00:00
|
|
|
load_cfg(
|
|
|
|
const char *path, struct cmd_ctx *ctxin, u_int *ncauses, char ***causes)
|
2008-06-02 18:08:17 +00:00
|
|
|
{
|
2009-10-28 23:12:38 +00:00
|
|
|
FILE *f;
|
2009-01-18 14:40:48 +00:00
|
|
|
u_int n;
|
2010-02-08 18:10:07 +00:00
|
|
|
char *buf, *line, *cause;
|
2009-01-18 14:40:48 +00:00
|
|
|
size_t len;
|
|
|
|
struct cmd_list *cmdlist;
|
|
|
|
struct cmd_ctx ctx;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
|
|
|
if ((f = fopen(path, "rb")) == NULL) {
|
2010-02-08 18:10:07 +00:00
|
|
|
cfg_add_cause(ncauses, causes, "%s: %s", path, strerror(errno));
|
|
|
|
return (-1);
|
2008-06-02 18:08:17 +00:00
|
|
|
}
|
2008-06-19 21:13:56 +00:00
|
|
|
n = 0;
|
|
|
|
|
|
|
|
line = NULL;
|
|
|
|
while ((buf = fgetln(f, &len))) {
|
|
|
|
if (buf[len - 1] == '\n')
|
|
|
|
buf[len - 1] = '\0';
|
|
|
|
else {
|
|
|
|
line = xrealloc(line, 1, len + 1);
|
|
|
|
memcpy(line, buf, len);
|
|
|
|
line[len] = '\0';
|
|
|
|
buf = line;
|
2008-06-02 18:08:17 +00:00
|
|
|
}
|
2008-06-19 21:13:56 +00:00
|
|
|
n++;
|
|
|
|
|
2010-02-08 18:10:07 +00:00
|
|
|
if (cmd_string_parse(buf, &cmdlist, &cause) != 0) {
|
|
|
|
if (cause == NULL)
|
2008-06-19 21:20:27 +00:00
|
|
|
continue;
|
2010-02-08 18:10:07 +00:00
|
|
|
cfg_add_cause(
|
|
|
|
ncauses, causes, "%s: %u: %s", path, n, cause);
|
|
|
|
xfree(cause);
|
|
|
|
continue;
|
2008-06-19 21:20:27 +00:00
|
|
|
}
|
2009-01-18 14:40:48 +00:00
|
|
|
if (cmdlist == NULL)
|
2008-07-25 17:20:40 +00:00
|
|
|
continue;
|
2008-06-19 21:13:56 +00:00
|
|
|
cfg_cause = NULL;
|
2008-06-02 18:55:53 +00:00
|
|
|
|
2009-08-24 16:27:03 +00:00
|
|
|
if (ctxin == NULL) {
|
|
|
|
ctx.msgdata = NULL;
|
|
|
|
ctx.curclient = NULL;
|
|
|
|
ctx.cmdclient = NULL;
|
|
|
|
} else {
|
|
|
|
ctx.msgdata = ctxin->msgdata;
|
|
|
|
ctx.curclient = ctxin->curclient;
|
|
|
|
ctx.cmdclient = ctxin->cmdclient;
|
|
|
|
}
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-19 21:13:56 +00:00
|
|
|
ctx.error = cfg_error;
|
|
|
|
ctx.print = cfg_print;
|
|
|
|
ctx.info = cfg_print;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-19 21:13:56 +00:00
|
|
|
cfg_cause = NULL;
|
2009-01-18 14:40:48 +00:00
|
|
|
cmd_list_exec(cmdlist, &ctx);
|
|
|
|
cmd_list_free(cmdlist);
|
2008-06-19 21:13:56 +00:00
|
|
|
if (cfg_cause != NULL) {
|
2010-02-08 18:10:07 +00:00
|
|
|
cfg_add_cause(
|
|
|
|
ncauses, causes, "%s: %d: %s", path, n, cfg_cause);
|
|
|
|
xfree(cfg_cause);
|
|
|
|
continue;
|
2008-06-19 21:13:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (line != NULL)
|
|
|
|
xfree(line);
|
2009-03-31 22:23:43 +00:00
|
|
|
fclose(f);
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2010-02-08 18:10:07 +00:00
|
|
|
if (*ncauses != 0)
|
|
|
|
return (-1);
|
2008-06-19 21:13:56 +00:00
|
|
|
return (0);
|
2008-06-02 18:08:17 +00:00
|
|
|
}
|