549 lines
12 KiB
C
549 lines
12 KiB
C
/*-
|
|
* Copyright (c) 1993
|
|
* The Regents of the University of California. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by the University of
|
|
* California, Berkeley and its contributors.
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef lint
|
|
/* from: static char sccsid[] = "@(#)options_f.c 8.25 (Berkeley) 12/20/93"; */
|
|
static char *rcsid = "$Id: options_f.c,v 1.2 1994/01/24 06:39:06 cgd Exp $";
|
|
#endif /* not lint */
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "vi.h"
|
|
#include "tag.h"
|
|
|
|
static int opt_putenv __P((char *));
|
|
|
|
#define DECL(f) \
|
|
int \
|
|
f(sp, op, str, val) \
|
|
SCR *sp; \
|
|
OPTION *op; \
|
|
char *str; \
|
|
u_long val;
|
|
#define CALL(f) \
|
|
f(sp, op, str, val)
|
|
|
|
#define turnoff val
|
|
|
|
DECL(f_altwerase)
|
|
{
|
|
if (turnoff)
|
|
O_CLR(sp, O_ALTWERASE);
|
|
else {
|
|
O_SET(sp, O_ALTWERASE);
|
|
O_CLR(sp, O_TTYWERASE);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_ttywerase)
|
|
{
|
|
if (turnoff)
|
|
O_CLR(sp, O_TTYWERASE);
|
|
else {
|
|
O_SET(sp, O_TTYWERASE);
|
|
O_CLR(sp, O_ALTWERASE);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_columns)
|
|
{
|
|
char buf[25];
|
|
|
|
/* Validate the number. */
|
|
if (val < MINIMUM_SCREEN_COLS) {
|
|
msgq(sp, M_ERR, "Screen columns too small, less than %d.",
|
|
MINIMUM_SCREEN_COLS);
|
|
return (1);
|
|
}
|
|
if (val < O_VAL(sp, O_SHIFTWIDTH)) {
|
|
msgq(sp, M_ERR,
|
|
"Screen columns too small, less than shiftwidth.");
|
|
return (1);
|
|
}
|
|
if (val < O_VAL(sp, O_SIDESCROLL)) {
|
|
msgq(sp, M_ERR,
|
|
"Screen columns too small, less than sidescroll.");
|
|
return (1);
|
|
}
|
|
if (val < O_VAL(sp, O_TABSTOP)) {
|
|
msgq(sp, M_ERR,
|
|
"Screen columns too small, less than tabstop.");
|
|
return (1);
|
|
}
|
|
if (val < O_VAL(sp, O_WRAPMARGIN)) {
|
|
msgq(sp, M_ERR,
|
|
"Screen columns too small, less than wrapmargin.");
|
|
return (1);
|
|
}
|
|
#ifdef XXX_NOT_RIGHT
|
|
/*
|
|
* This has to be checked by reaching down into the screen code.
|
|
*/
|
|
if (val < O_NUMBER_LENGTH) {
|
|
msgq(sp, M_ERR,
|
|
"Screen columns too small, less than number option.");
|
|
return (1);
|
|
}
|
|
#endif
|
|
/* Set the columns value in the environment for curses. */
|
|
(void)snprintf(buf, sizeof(buf), "COLUMNS=%lu", val);
|
|
if (opt_putenv(buf))
|
|
return (1);
|
|
|
|
/* This is expensive, don't do it unless it's necessary. */
|
|
if (O_VAL(sp, O_COLUMNS) == val)
|
|
return (0);
|
|
|
|
/* Set the value. */
|
|
O_VAL(sp, O_COLUMNS) = val;
|
|
|
|
F_SET(sp, S_RESIZE);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_keytime)
|
|
{
|
|
O_VAL(sp, O_KEYTIME) = val;
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_leftright)
|
|
{
|
|
if (turnoff)
|
|
O_CLR(sp, O_LEFTRIGHT);
|
|
else
|
|
O_SET(sp, O_LEFTRIGHT);
|
|
F_SET(sp, S_REFORMAT | S_REDRAW);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_lines)
|
|
{
|
|
char buf[25];
|
|
|
|
/* Validate the number. */
|
|
if (val < MINIMUM_SCREEN_ROWS) {
|
|
msgq(sp, M_ERR, "Screen lines too small, less than %d.",
|
|
MINIMUM_SCREEN_ROWS);
|
|
return (1);
|
|
}
|
|
|
|
/* Set the rows value in the environment for curses. */
|
|
(void)snprintf(buf, sizeof(buf), "ROWS=%lu", val);
|
|
if (opt_putenv(buf))
|
|
return (1);
|
|
|
|
/* This is expensive, don't do it unless it's necessary. */
|
|
if (O_VAL(sp, O_LINES) == val)
|
|
return (0);
|
|
|
|
/* Set the value. */
|
|
O_VAL(sp, O_LINES) = val;
|
|
|
|
/*
|
|
* If no window value set, set a new default window and,
|
|
* optionally, a new scroll value.
|
|
*/
|
|
if (!F_ISSET(&sp->opts[O_WINDOW], OPT_SET)) {
|
|
O_VAL(sp, O_WINDOW) = val - 1;
|
|
if (!F_ISSET(&sp->opts[O_SCROLL], OPT_SET))
|
|
O_VAL(sp, O_SCROLL) = val / 2;
|
|
}
|
|
|
|
F_SET(sp, S_RESIZE);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_lisp)
|
|
{
|
|
msgq(sp, M_ERR, "The lisp option is not implemented.");
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_list)
|
|
{
|
|
if (turnoff)
|
|
O_CLR(sp, O_LIST);
|
|
else
|
|
O_SET(sp, O_LIST);
|
|
|
|
F_SET(sp, S_REFORMAT | S_REDRAW);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_matchtime)
|
|
{
|
|
O_VAL(sp, O_MATCHTIME) = val;
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_mesg)
|
|
{
|
|
struct stat sb;
|
|
char *tty;
|
|
|
|
/* Find the tty. */
|
|
if ((tty = ttyname(STDERR_FILENO)) == NULL) {
|
|
msgq(sp, M_ERR, "ttyname: %s.", strerror(errno));
|
|
return (1);
|
|
}
|
|
|
|
/* Save the tty mode for later; only save it once. */
|
|
if (!F_ISSET(sp->gp, G_SETMODE)) {
|
|
F_SET(sp->gp, G_SETMODE);
|
|
if (stat(tty, &sb) < 0) {
|
|
msgq(sp, M_ERR, "%s: %s.", tty, strerror(errno));
|
|
return (1);
|
|
}
|
|
sp->gp->origmode = sb.st_mode;
|
|
}
|
|
|
|
if (turnoff) {
|
|
if (chmod(tty, sp->gp->origmode & ~S_IWGRP) < 0) {
|
|
msgq(sp, M_ERR, "messages not turned off: %s: %s.",
|
|
tty, strerror(errno));
|
|
return (1);
|
|
}
|
|
O_CLR(sp, O_MESG);
|
|
} else {
|
|
if (chmod(tty, sp->gp->origmode | S_IWGRP) < 0) {
|
|
msgq(sp, M_ERR, "messages not turned on: %s: %s.",
|
|
tty, strerror(errno));
|
|
return (1);
|
|
}
|
|
O_SET(sp, O_MESG);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* f_modeline --
|
|
* This has been documented in historical systems as both "modeline"
|
|
* and as "modelines". Regardless of the name, this option represents
|
|
* a security problem of mammoth proportions, not to mention a stunning
|
|
* example of what your intro CS professor referred to as the perils of
|
|
* mixing code and data. Don't add it, or I will kill you.
|
|
*/
|
|
DECL(f_modeline)
|
|
{
|
|
if (!turnoff)
|
|
msgq(sp, M_ERR, "The modeline(s) option may never be set.");
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_number)
|
|
{
|
|
if (turnoff)
|
|
O_CLR(sp, O_NUMBER);
|
|
else
|
|
O_SET(sp, O_NUMBER);
|
|
|
|
F_SET(sp, S_REFORMAT | S_REDRAW);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_optimize)
|
|
{
|
|
msgq(sp, M_ERR, "The optimize option is not implemented.");
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_paragraph)
|
|
{
|
|
if (strlen(str) & 1) {
|
|
msgq(sp, M_ERR,
|
|
"Paragraph options must be in sets of two characters.");
|
|
return (1);
|
|
}
|
|
|
|
if (F_ISSET(&sp->opts[O_PARAGRAPHS], OPT_ALLOCATED))
|
|
free(O_STR(sp, O_PARAGRAPHS));
|
|
if ((O_STR(sp, O_PARAGRAPHS) = strdup(str)) == NULL) {
|
|
msgq(sp, M_SYSERR, NULL);
|
|
return (1);
|
|
}
|
|
F_SET(&sp->opts[O_PARAGRAPHS], OPT_ALLOCATED | OPT_SET);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_readonly)
|
|
{
|
|
if (turnoff) {
|
|
O_CLR(sp, O_READONLY);
|
|
if (sp->frp != NULL)
|
|
F_CLR(sp->frp, FR_RDONLY);
|
|
} else {
|
|
O_SET(sp, O_READONLY);
|
|
if (sp->frp != NULL)
|
|
F_SET(sp->frp, FR_RDONLY);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_ruler)
|
|
{
|
|
if (turnoff)
|
|
O_CLR(sp, O_RULER);
|
|
else
|
|
O_SET(sp, O_RULER);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_section)
|
|
{
|
|
if (strlen(str) & 1) {
|
|
msgq(sp, M_ERR,
|
|
"Section options must be in sets of two characters.");
|
|
return (1);
|
|
}
|
|
|
|
if (F_ISSET(&sp->opts[O_SECTIONS], OPT_ALLOCATED))
|
|
free(O_STR(sp, O_SECTIONS));
|
|
if ((O_STR(sp, O_SECTIONS) = strdup(str)) == NULL) {
|
|
msgq(sp, M_SYSERR, NULL);
|
|
return (1);
|
|
}
|
|
F_SET(&sp->opts[O_SECTIONS], OPT_ALLOCATED | OPT_SET);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_shiftwidth)
|
|
{
|
|
if (val == 0) {
|
|
msgq(sp, M_ERR, "The shiftwidth can't be set to 0.");
|
|
return (1);
|
|
}
|
|
if (val > O_VAL(sp, O_COLUMNS)) {
|
|
msgq(sp, M_ERR,
|
|
"Shiftwidth can't be larger than screen size.");
|
|
return (1);
|
|
}
|
|
O_VAL(sp, O_SHIFTWIDTH) = val;
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_sidescroll)
|
|
{
|
|
if (val > O_VAL(sp, O_COLUMNS)) {
|
|
msgq(sp, M_ERR,
|
|
"Sidescroll can't be larger than screen size.");
|
|
return (1);
|
|
}
|
|
O_VAL(sp, O_SIDESCROLL) = val;
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* f_sourceany --
|
|
* Historic vi, on startup, source'd $HOME/.exrc and ./.exrc, if they
|
|
* were owned by the user. The sourceany option was an undocumented
|
|
* feature of historic vi which permitted the startup source'ing of
|
|
* .exrc files the user didn't own. This is an obvious security problem,
|
|
* and we ignore the option.
|
|
*/
|
|
DECL(f_sourceany)
|
|
{
|
|
if (!turnoff)
|
|
msgq(sp, M_ERR, "The sourceany option may never be set.");
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_tabstop)
|
|
{
|
|
if (val == 0) {
|
|
msgq(sp, M_ERR, "Tab stops can't be set to 0.");
|
|
return (1);
|
|
}
|
|
#define MAXTABSTOP 20
|
|
if (val > MAXTABSTOP) {
|
|
msgq(sp, M_ERR,
|
|
"Tab stops can't be larger than %d.", MAXTABSTOP);
|
|
return (1);
|
|
}
|
|
if (val > O_VAL(sp, O_COLUMNS)) {
|
|
msgq(sp, M_ERR,
|
|
"Tab stops can't be larger than screen size.",
|
|
MAXTABSTOP);
|
|
return (1);
|
|
}
|
|
O_VAL(sp, O_TABSTOP) = val;
|
|
|
|
F_SET(sp, S_REFORMAT | S_REDRAW);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_tags)
|
|
{
|
|
char *p;
|
|
|
|
/* Copy for user display. */
|
|
p = O_STR(sp, O_TAGS);
|
|
if ((O_STR(sp, O_TAGS) = strdup(str)) == NULL) {
|
|
O_STR(sp, O_TAGS) = p;
|
|
msgq(sp, M_SYSERR, NULL);
|
|
return (1);
|
|
}
|
|
if (F_ISSET(&sp->opts[O_TAGS], OPT_ALLOCATED))
|
|
FREE(p, strlen(p) + 1);
|
|
F_SET(&sp->opts[O_TAGS], OPT_ALLOCATED | OPT_SET);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_term)
|
|
{
|
|
char buf[256];
|
|
|
|
if (F_ISSET(&sp->opts[O_TERM], OPT_ALLOCATED))
|
|
free(O_STR(sp, O_TERM));
|
|
if ((O_STR(sp, O_TERM) = strdup(str)) == NULL) {
|
|
msgq(sp, M_SYSERR, NULL);
|
|
return (1);
|
|
}
|
|
F_SET(&sp->opts[O_TERM], OPT_ALLOCATED | OPT_SET);
|
|
|
|
/* Set the terminal value in the environment for curses. */
|
|
(void)snprintf(buf, sizeof(buf), "TERM=%s", str);
|
|
if (opt_putenv(buf))
|
|
return (1);
|
|
|
|
if (set_window_size(sp, 0, 0))
|
|
return (1);
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_w300)
|
|
{
|
|
/* Historical behavior for w300 was < 1200. */
|
|
if (baud_from_bval(sp) >= 1200)
|
|
return (0);
|
|
|
|
if (CALL(f_window))
|
|
return (1);
|
|
|
|
if (val > O_VAL(sp, O_LINES) - 1)
|
|
val = O_VAL(sp, O_LINES) - 1;
|
|
O_VAL(sp, O_W300) = val;
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_w1200)
|
|
{
|
|
u_long v;
|
|
|
|
/* Historical behavior for w1200 was == 1200. */
|
|
v = baud_from_bval(sp);
|
|
if (v < 1200 || v > 4800)
|
|
return (0);
|
|
|
|
if (CALL(f_window))
|
|
return (1);
|
|
|
|
if (val > O_VAL(sp, O_LINES) - 1)
|
|
val = O_VAL(sp, O_LINES) - 1;
|
|
O_VAL(sp, O_W1200) = val;
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_w9600)
|
|
{
|
|
speed_t v;
|
|
|
|
/* Historical behavior for w9600 was > 1200. */
|
|
v = baud_from_bval(sp);
|
|
if (v <= 4800)
|
|
return (0);
|
|
|
|
if (CALL(f_window))
|
|
return (1);
|
|
|
|
if (val > O_VAL(sp, O_LINES) - 1)
|
|
val = O_VAL(sp, O_LINES) - 1;
|
|
O_VAL(sp, O_W9600) = val;
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_window)
|
|
{
|
|
if (val < MINIMUM_SCREEN_ROWS) {
|
|
msgq(sp, M_ERR, "Window too small, less than %d.",
|
|
MINIMUM_SCREEN_ROWS);
|
|
return (1);
|
|
}
|
|
if (val > O_VAL(sp, O_LINES) - 1)
|
|
val = O_VAL(sp, O_LINES) - 1;
|
|
O_VAL(sp, O_WINDOW) = val;
|
|
O_VAL(sp, O_SCROLL) = val / 2;
|
|
|
|
return (0);
|
|
}
|
|
|
|
DECL(f_wrapmargin)
|
|
{
|
|
if (val > O_VAL(sp, O_COLUMNS)) {
|
|
msgq(sp, M_ERR,
|
|
"Wrapmargin value can't be larger than screen size.");
|
|
return (1);
|
|
}
|
|
O_VAL(sp, O_WRAPMARGIN) = val;
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* opt_putenv --
|
|
* Put a value into the environment. We use putenv(3) because it's
|
|
* more portable. The following hack is because some moron decided
|
|
* to keep a reference to the memory passed to putenv(3), instead of
|
|
* having it allocate its own. Someone clearly needs to get promoted
|
|
* into management.
|
|
*/
|
|
static int
|
|
opt_putenv(s)
|
|
char *s;
|
|
{
|
|
char *t;
|
|
|
|
/* Memory leak. */
|
|
if ((t = strdup(s)) == NULL)
|
|
return (1);
|
|
return (putenv(t));
|
|
}
|