84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
94 lines
2.3 KiB
C
94 lines
2.3 KiB
C
/* $NetBSD: ex_source.c,v 1.2 2013/11/22 15:52:05 christos Exp $ */
|
|
/*-
|
|
* Copyright (c) 1992, 1993, 1994
|
|
* The Regents of the University of California. All rights reserved.
|
|
* Copyright (c) 1992, 1993, 1994, 1995, 1996
|
|
* Keith Bostic. All rights reserved.
|
|
*
|
|
* See the LICENSE file for redistribution information.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef lint
|
|
static const char sccsid[] = "Id: ex_source.c,v 10.16 2001/08/18 21:49:58 skimo Exp (Berkeley) Date: 2001/08/18 21:49:58 ";
|
|
#endif /* not lint */
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <bitstring.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "../common/common.h"
|
|
|
|
/*
|
|
* ex_source -- :source file
|
|
* Execute ex commands from a file.
|
|
*
|
|
* PUBLIC: int ex_source __P((SCR *, EXCMD *));
|
|
*/
|
|
int
|
|
ex_source(SCR *sp, EXCMD *cmdp)
|
|
{
|
|
struct stat sb;
|
|
int fd, len;
|
|
char *bp;
|
|
const char *name;
|
|
size_t nlen;
|
|
const CHAR_T *wp;
|
|
CHAR_T *dp;
|
|
size_t wlen;
|
|
|
|
INT2CHAR(sp, cmdp->argv[0]->bp, cmdp->argv[0]->len + 1, name, nlen);
|
|
if ((fd = open(name, O_RDONLY, 0)) < 0 || fstat(fd, &sb))
|
|
goto err;
|
|
|
|
/*
|
|
* XXX
|
|
* I'd like to test to see if the file is too large to malloc. Since
|
|
* we don't know what size or type off_t's or size_t's are, what the
|
|
* largest unsigned integral type is, or what random insanity the local
|
|
* C compiler will perpetrate, doing the comparison in a portable way
|
|
* is flatly impossible. So, put an fairly unreasonable limit on it,
|
|
* I don't want to be dropping core here.
|
|
*/
|
|
#define MEGABYTE 1048576
|
|
if (sb.st_size > MEGABYTE) {
|
|
errno = ENOMEM;
|
|
goto err;
|
|
}
|
|
|
|
MALLOC(sp, bp, char *, (size_t)sb.st_size + 1);
|
|
if (bp == NULL) {
|
|
(void)close(fd);
|
|
return (1);
|
|
}
|
|
bp[sb.st_size] = '\0';
|
|
|
|
/* Read the file into memory. */
|
|
len = read(fd, bp, (int)sb.st_size);
|
|
(void)close(fd);
|
|
if (len == -1 || len != sb.st_size) {
|
|
if (len != sb.st_size)
|
|
errno = EIO;
|
|
free(bp);
|
|
err: msgq_str(sp, M_SYSERR, name, "%s");
|
|
return (1);
|
|
}
|
|
|
|
if (CHAR2INT(sp, bp, (size_t)sb.st_size + 1, wp, wlen))
|
|
msgq(sp, M_ERR, "323|Invalid input. Truncated.");
|
|
dp = v_wstrdup(sp, wp, wlen - 1);
|
|
free(bp);
|
|
/* Put it on the ex queue. */
|
|
INT2CHAR(sp, cmdp->argv[0]->bp, cmdp->argv[0]->len + 1, name, nlen);
|
|
return (ex_run_str(sp, name, dp, wlen - 1, 1, 1));
|
|
}
|