You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

521 lines
14 KiB
C

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <windows.h>
#include <io.h>
#include <fcntl.h>
#include <sys/locking.h>
#include "spawn.h"
/* Generally useful function -- what luaL_checkudata() should do */
extern void *checkuserdata(lua_State *L, int idx, const char *tname)
{
void *ud;
luaL_argcheck(L, ud = luaL_checkudata(L, idx, tname), idx, tname);
return ud;
}
/* return HANDLE from a FILE */
extern HANDLE get_handle(FILE *f)
{
return (HANDLE)_get_osfhandle(fileno(f));
}
/* -- nil error */
extern int push_error(lua_State *L)
{
DWORD error = GetLastError();
char buffer[1024];
size_t len = sprintf(buffer, "%lu (0x%lX): ", error, error);
size_t res = FormatMessage(
FORMAT_MESSAGE_IGNORE_INSERTS | FORMAT_MESSAGE_FROM_SYSTEM,
0, error, 0, buffer + len, sizeof buffer - len, 0);
if (res) /* trim spaces */
for (len += res; len > 0 && isspace(buffer[len - 1]); len--) ;
else
len += sprintf(buffer + len, "<error string not available>");
lua_pushnil(L);
lua_pushlstring(L, buffer, len);
return 2;
}
/* name -- value/nil */
static int ex_getenv(lua_State *L)
{
const char *nam = luaL_checkstring(L, 1);
char sval[256], *val = sval;
size_t len = GetEnvironmentVariable(nam, val, sizeof val);
if (sizeof sval < len) {
val = malloc(len);
len = GetEnvironmentVariable(nam, val, sizeof val);
}
if (len == 0 && GetLastError() == ERROR_ENVVAR_NOT_FOUND)
return push_error(L);
lua_pushlstring(L, val, len);
if (val != sval) free(val);
return 1;
}
/* name value -- true/nil error */
static int ex_setenv(lua_State *L)
{
const char *nam = luaL_checkstring(L, 1);
const char *val = luaL_checkstring(L, 2);
if (!SetEnvironmentVariable(nam, val))
return push_error(L);
lua_pushboolean(L, 1);
return 1;
}
/* name -- true/nil error */
static int ex_unsetenv(lua_State *L)
{
const char *nam = luaL_checkstring(L, 1);
if (!SetEnvironmentVariable(nam, 0))
return push_error(L);
lua_pushboolean(L, 1);
return 1;
}
/* -- environment-table */
static int ex_environ(lua_State *L)
{
const char *nam, *val, *end;
const char *envs = GetEnvironmentStrings();
if (!envs) return push_error(L);
lua_newtable(L);
for (nam = envs; *nam; nam = end + 1) {
end = strchr(val = strchr(nam, '=') + 1, '\0');
lua_pushlstring(L, nam, val - nam - 1);
lua_pushlstring(L, val, end - val);
lua_settable(L, -3);
}
return 1;
}
/* seconds -- */
static int ex_sleep(lua_State *L)
{
lua_Number seconds = luaL_checknumber(L, 1);
Sleep(1e3 * seconds);
return 0;
}
/* pathname -- true/nil error */
static int ex_chdir(lua_State *L)
{
const char *pathname = luaL_checkstring(L, 1);
if (!SetCurrentDirectory(pathname))
return push_error(L);
lua_pushboolean(L, 1);
return 1;
}
/* pathname -- true/nil error */
static int ex_mkdir(lua_State *L)
{
const char *pathname = luaL_checkstring(L, 1);
if (!CreateDirectory(pathname, 0))
return push_error(L);
lua_pushboolean(L, 1);
return 1;
}
/* -- pathname/nil error */
static int ex_currentdir(lua_State *L)
{
char pathname[MAX_PATH + 1];
size_t len = GetCurrentDirectory(sizeof pathname, pathname);
if (len == 0) return push_error(L);
lua_pushlstring(L, pathname, len);
return 1;
}
static FILE *check_file(lua_State *L, int idx)
{
FILE **pf = checkuserdata(L, idx, LUA_FILEHANDLE);
if (!*pf) return luaL_error(L, "attempt to use a closed file"), NULL;
return *pf;
}
static uint64_t get_size(const char *name)
{
HANDLE h = CreateFile(name, GENERIC_READ, FILE_SHARE_READ, 0, OPEN_EXISTING, 0, 0);
DWORD lo, hi;
uint64_t size;
if (h == INVALID_HANDLE_VALUE)
size = 0;
else {
lo = GetFileSize(h, &hi);
if (lo == INVALID_FILE_SIZE && GetLastError() != NO_ERROR)
size = 0;
else
size = hi; size <<= 32; size += lo;
CloseHandle(h);
}
return size;
}
/* pathname/file -- entry */
static int ex_dirent(lua_State *L)
{
DWORD attr;
uint64_t size;
switch (lua_type(L, 1)) {
default: return luaL_argerror(L, 1, "expected file or pathname");
case LUA_TSTRING: {
const char *name = lua_tostring(L, 1);
attr = GetFileAttributes(name);
if (attr == (DWORD)-1)
return push_error(L);
if (attr & FILE_ATTRIBUTE_DIRECTORY)
size = 0;
else
size = get_size(name);
} break;
case LUA_TUSERDATA: {
FILE *f = check_file(L, 1);
BY_HANDLE_FILE_INFORMATION info;
if (!GetFileInformationByHandle(get_handle(f), &info))
return push_error(L);
attr = info.dwFileAttributes;
size = info.nFileSizeHigh; size <<= 32; size += info.nFileSizeLow;
} break;
}
if (lua_type(L, 2) != LUA_TTABLE) {
lua_newtable(L);
lua_replace(L, 2);
}
lua_pushliteral(L, "type");
if (attr & FILE_ATTRIBUTE_DIRECTORY)
lua_pushliteral(L, "directory");
else
lua_pushliteral(L, "file");
lua_settable(L, 2);
lua_pushliteral(L, "size");
lua_pushnumber(L, size);
lua_settable(L, 2);
lua_settop(L, 2);
return 1;
}
#define DIR_HANDLE "WIN32_FIND_DATA"
struct diriter {
HANDLE hf;
WIN32_FIND_DATA fd;
};
/* ...diriter... -- ...diriter... pathname */
static int diriter_getpathname(lua_State *L, int index)
{
lua_pushvalue(L, index);
lua_gettable(L, LUA_REGISTRYINDEX);
return 1;
}
/* ...diriter... pathname -- ...diriter... */
static int diriter_setpathname(lua_State *L, int index)
{
size_t len;
const char *path = lua_tolstring(L, -1, &len);
if (path[len - 1] != *LUA_DIRSEP) {
lua_pushliteral(L, LUA_DIRSEP);
lua_concat(L, 2);
}
lua_pushvalue(L, index); /* ... pathname diriter */
lua_insert(L, -2); /* ... diriter pathname */
lua_settable(L, LUA_REGISTRYINDEX); /* ... */
return 0;
}
/* diriter -- diriter */
static int diriter_close(lua_State *L)
{
struct diriter *pi = lua_touserdata(L, 1);
if (pi->hf != INVALID_HANDLE_VALUE) {
FindClose(pi->hf);
pi->hf = INVALID_HANDLE_VALUE;
lua_pushnil(L);
diriter_setpathname(L, 1);
}
return 0;
}
/* pathname -- iter state nil */
/* diriter ... -- entry */
static int ex_dir(lua_State *L)
{
const char *pathname;
struct diriter *pi;
switch (lua_type(L, 1)) {
default: return luaL_argerror(L, 1, "expected pathname");
case LUA_TSTRING:
lua_pushvalue(L, 1); /* pathname ... pathname */
lua_pushliteral(L, "\\*"); /* pathname ... pathname "\\*" */
lua_concat(L, 2); /* pathname ... pattern */
pathname = lua_tostring(L, -1);
lua_pushcfunction(L, ex_dir); /* pathname ... pat iter */
pi = lua_newuserdata(L, sizeof *pi); /* pathname ... pat iter state */
pi->hf = FindFirstFile(pathname, &pi->fd);
if (pi->hf == INVALID_HANDLE_VALUE)
return push_error(L);
luaL_getmetatable(L, DIR_HANDLE); /* pathname ... pat iter state M */
lua_setmetatable(L, -2); /* pathname ... pat iter state */
lua_pushvalue(L, 1); /* pathname ... pat iter state pathname */
diriter_setpathname(L, -2); /* pathname ... pat iter state */
return 2;
case LUA_TUSERDATA:
pi = checkuserdata(L, 1, DIR_HANDLE);
if (pi->hf == INVALID_HANDLE_VALUE)
return 0;
lua_newtable(L); /* diriter ... entry */
diriter_getpathname(L, 1); /* diriter ... entry dirpath */
lua_pushstring(L, pi->fd.cFileName); /* diriter ... entry dirpath name */
lua_pushliteral(L, "name"); /* diriter ... entry dirpath name "name" */
lua_pushvalue(L, -2); /* diriter ... entry dirpath name "name" name */
lua_settable(L, -5); /* diriter ... entry dirpath name */
lua_concat(L, 2); /* diriter ... entry fullpath */
if (!FindNextFile(pi->hf, &pi->fd)) {
FindClose(pi->hf);
pi->hf = INVALID_HANDLE_VALUE;
}
lua_replace(L, 1); /* fullpath ... entry */
lua_replace(L, 2); /* fullpath entry ... */
return ex_dirent(L);
}
/*NOTREACHED*/
}
static int file_lock(lua_State *L, FILE *f, const char *mode, long offset, long length)
{
HANDLE h = get_handle(f);
DWORD flags;
LARGE_INTEGER len = {0};
OVERLAPPED ov = {0};
BOOL ret;
if (length) len.LowPart = length;
else len.LowPart = GetFileSize(h, &len.HighPart);
ov.Offset = offset;
switch (*mode) {
case 'w': flags = LOCKFILE_EXCLUSIVE_LOCK; /*FALLTHRU*/
case 'r': flags |= LOCKFILE_FAIL_IMMEDIATELY; break;
case 'u': flags = 0; break;
default: return luaL_error(L, "invalid mode");
}
ret = flags ? LockFileEx(h, flags, 0, len.LowPart, len.HighPart, &ov)
: UnlockFileEx(h, 0, len.LowPart, len.HighPart, &ov);
if (!ret)
return push_error(L);
lua_pushboolean(L, 1);
return 1;
}
/* file mode [offset [length]] -- true/nil error */
static int ex_lock(lua_State *L)
{
FILE *f = check_file(L, 1);
const char *mode = luaL_checkstring(L, 2);
long offset = luaL_optnumber(L, 3, 0);
long length = luaL_optnumber(L, 4, 0);
return file_lock(L, f, mode, offset, length);
}
/* file [offset [length]] -- true/nil error */
static int ex_unlock(lua_State *L)
{
lua_pushliteral(L, "u");
lua_insert(L, 2);
return ex_lock(L);
}
/* -- LUA_FILEHANDLE file file */
static int make_pipe(FILE **i, FILE **o)
{
HANDLE ph[2];
if (0 == CreatePipe(ph+0, ph+1, 0, 0))
return 0;
SetHandleInformation(ph[0], HANDLE_FLAG_INHERIT, 0);
SetHandleInformation(ph[1], HANDLE_FLAG_INHERIT, 0);
*i = _fdopen(_open_osfhandle((long)ph[0], _O_RDONLY), "r");
*o = _fdopen(_open_osfhandle((long)ph[1], _O_WRONLY), "w");
return 1;
}
/* -- in out/nil error */
static int ex_pipe(lua_State *L)
{
FILE *i, *o, **pf;
if (!make_pipe(&i, &o))
return push_error(L);
luaL_getmetatable(L, LUA_FILEHANDLE);
*(pf = lua_newuserdata(L, sizeof *pf)) = i;
lua_pushvalue(L, -2);
lua_setmetatable(L, -2);
*(pf = lua_newuserdata(L, sizeof *pf)) = o;
lua_pushvalue(L, -3);
lua_setmetatable(L, -2);
return 2;
}
/* filename [args-opts] -- true/nil error */
/* args-opts -- true/nil error */
static int ex_spawn(lua_State *L)
{
struct spawn_params params = {L};
struct process *proc;
if (lua_type(L, 1) == LUA_TTABLE) {
lua_getfield(L, 1, "command"); /* opts ... cmd */
if (!lua_isnil(L, -1)) {
/* convert {command=command,arg1,...} to command {arg1,...} */
lua_insert(L, 1); /* cmd opts ... */
}
else {
/* convert {arg0,arg1,...} to arg0 {arg1,...} */
size_t i, n = lua_objlen(L, 1);
lua_rawgeti(L, 1, 1); /* opts ... nil cmd */
if (lua_isnil(L, -1))
return luaL_error(L, "no command specified");
/* XXX check LUA_TSTRING */
lua_insert(L, 1); /* cmd opts ... nil */
for (i = 2; i <= n; i++) {
lua_rawgeti(L, 2, i); /* cmd opts ... nil argi */
lua_rawseti(L, 2, i - 1); /* cmd opts ... nil */
}
lua_rawseti(L, 2, n); /* cmd opts ... */
}
}
/* get filename to execute */
spawn_param_filename(&params);
/* get arguments, environment, and redirections */
switch (lua_type(L, 2)) {
default: return luaL_argerror(L, 2, "expected options table");
case LUA_TNONE:
spawn_param_defaults(&params); /* cmd opts ... */
break;
case LUA_TTABLE:
lua_getfield(L, 2, "args"); /* cmd opts ... argtab */
switch (lua_type(L, -1)) {
default: return luaL_error(L, "args option must be an array");
case LUA_TNIL:
lua_pop(L, 1); /* cmd opts ... */
lua_pushvalue(L, 2); /* cmd opts ... opts */
if (0) /*FALLTHRU*/
case LUA_TTABLE:
if (lua_objlen(L, 2) > 0)
return luaL_error(L, "cannot specify both the args option and array values");
spawn_param_args(&params); /* cmd opts ... */
break;
}
lua_getfield(L, 2, "env"); /* cmd opts ... envtab */
switch (lua_type(L, -1)) {
default: return luaL_error(L, "env option must be a table");
case LUA_TNIL:
case LUA_TTABLE:
spawn_param_env(&params); /* cmd opts ... */
break;
}
spawn_param_redirects(&params); /* cmd opts ... */
break;
}
proc = lua_newuserdata(L, sizeof *proc); /* cmd opts ... proc */
luaL_getmetatable(L, PROCESS_HANDLE); /* cmd opts ... proc M */
lua_setmetatable(L, -2); /* cmd opts ... proc */
if (!spawn_param_execute(&params, proc))
return push_error(L);
return 1; /* ... proc */
}
static const luaL_reg ex_iolib[] = {
{"pipe", ex_pipe},
{0,0}
};
static const luaL_reg ex_iofile_methods[] = {
{"lock", ex_lock},
{"unlock", ex_unlock},
{0,0}
};
static const luaL_reg ex_oslib[] = {
{"getenv", ex_getenv},
{"setenv", ex_setenv},
{"unsetenv", ex_unsetenv},
{"environ", ex_environ},
{"sleep", ex_sleep},
{"chdir", ex_chdir},
{"mkdir", ex_mkdir},
{"currentdir", ex_currentdir},
{"dir", ex_dir},
{"dirent", ex_dirent},
{"spawn", ex_spawn},
{0,0}
};
static const luaL_reg ex_diriter_methods[] = {
{"__gc", diriter_close},
{0,0}
};
static const luaL_reg ex_process_methods[] = {
{"wait", process_wait},
{"__tostring", process_tostring},
{0,0}
};
int luaopen_ex(lua_State *L)
{
/* extend the io table */
lua_getglobal(L, "io");
if (lua_isnil(L, -1)) return luaL_error(L, "io not loaded");
luaL_openlib(L, 0, ex_iolib, 0);
/* extend the os table */
lua_getglobal(L, "os");
if (lua_isnil(L, -1)) return luaL_error(L, "os not loaded");
luaL_openlib(L, "os", ex_oslib, 0);
/* extend the io.file metatable */
luaL_getmetatable(L, LUA_FILEHANDLE);
if (lua_isnil(L, -1)) return luaL_error(L, "can't find FILE* metatable");
luaL_openlib(L, 0, ex_iofile_methods, 0);
/* diriter metatable */
luaL_newmetatable(L, DIR_HANDLE);
luaL_openlib(L, 0, ex_diriter_methods, 0);
/* proc metatable */
luaL_newmetatable(L, PROCESS_HANDLE); /* proc */
luaL_openlib(L, 0, ex_process_methods, 0); /* proc */
lua_pushliteral(L, "__index"); /* proc __index */
lua_pushvalue(L, -2); /* proc __index proc */
lua_settable(L, -3); /* proc */
/* Make all functions available via ex. namespace */
luaL_openlib(L, "ex", ex_iolib, 0);
luaL_openlib(L, 0, ex_oslib, 0);
luaL_openlib(L, 0, ex_iofile_methods, 0);
luaL_openlib(L, 0, ex_process_methods, 0);
return 1;
}