lua/ldebug.c

572 lines
14 KiB
C
Raw Normal View History

/*
2002-07-08 22:21:33 +04:00
** $Id: ldebug.c,v 1.123 2002/06/24 15:07:21 roberto Exp roberto $
** Debug Interface
** See Copyright Notice in lua.h
*/
2000-02-17 21:30:36 +03:00
#include <stdlib.h>
2002-06-18 19:19:27 +04:00
#include <string.h>
2000-02-17 21:30:36 +03:00
#include "lua.h"
#include "lapi.h"
2000-06-29 00:21:06 +04:00
#include "lcode.h"
#include "ldebug.h"
2000-01-19 15:00:45 +03:00
#include "ldo.h"
#include "lfunc.h"
#include "lobject.h"
2000-06-29 00:21:06 +04:00
#include "lopcodes.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "luadebug.h"
#include "lvm.h"
2000-10-05 16:14:08 +04:00
2002-01-26 01:14:54 +03:00
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
2000-08-11 20:17:28 +04:00
2000-01-19 15:00:45 +03:00
2000-10-05 16:14:08 +04:00
static int isLmark (CallInfo *ci) {
2001-12-18 23:52:30 +03:00
return (ttype(ci->base - 1) == LUA_TFUNCTION && !ci_func(ci)->c.isC);
}
static int currentpc (lua_State *L, CallInfo *ci) {
if (ci->pc == NULL) return -1; /* function is not an active Lua function */
if (ci == L->ci || ci->pc != (ci+1)->pc) /* no other function using `pc'? */
ci->savedpc = *ci->pc; /* may not be saved; save it */
/* function's pc is saved */
return pcRel(ci->savedpc, ci_func(ci)->l.p);
}
static int currentline (lua_State *L, CallInfo *ci) {
int pc = currentpc(L, ci);
if (pc < 0)
return -1; /* only active lua functions have current-line information */
else
return getline(ci_func(ci)->l.p, pc);
}
2002-07-08 22:21:33 +04:00
LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask) {
CallInfo *ci;
2002-07-08 22:21:33 +04:00
int allow;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2002-07-08 22:21:33 +04:00
allow = allowhook(L);
if (func == NULL) mask = 0;
else if (mask == 0) func = NULL;
L->hook = func;
L->hookmask = mask;
setallowhook(L, allow);
resethookcount(L);
for (ci = L->base_ci; ci <= L->ci; ci++)
currentpc(L, ci); /* update `savedpc' */
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2002-07-08 22:21:33 +04:00
return 1;
}
LUA_API lua_Hook lua_gethook (lua_State *L) {
return L->hook;
}
LUA_API int lua_gethookmask (lua_State *L) {
return L->hookmask;
}
2000-10-20 20:39:03 +04:00
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
int status;
2001-03-02 20:27:50 +03:00
lua_lock(L);
2001-12-18 23:52:30 +03:00
if (L->ci - L->base_ci <= level) status = 0; /* there is no such level */
2000-01-19 15:00:45 +03:00
else {
2002-03-11 15:45:00 +03:00
ar->i_ci = (L->ci - L->base_ci) - level;
status = 1;
2000-01-19 15:00:45 +03:00
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return status;
}
static Proto *getluaproto (CallInfo *ci) {
2001-10-02 20:45:03 +04:00
return (isLmark(ci) ? ci_func(ci)->l.p : NULL);
}
LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) {
const char *name;
CallInfo *ci;
Proto *fp;
2001-03-02 20:27:50 +03:00
lua_lock(L);
name = NULL;
2002-03-11 15:45:00 +03:00
ci = L->base_ci + ar->i_ci;
fp = getluaproto(ci);
if (fp) { /* is a Lua function? */
2002-01-26 01:14:54 +03:00
name = luaF_getlocalname(fp, n, currentpc(L, ci));
if (name)
luaA_pushobject(L, ci->base+(n-1)); /* push value */
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
return name;
}
LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) {
const char *name;
CallInfo *ci;
Proto *fp;
2001-03-02 20:27:50 +03:00
lua_lock(L);
name = NULL;
2002-03-11 15:45:00 +03:00
ci = L->base_ci + ar->i_ci;
fp = getluaproto(ci);
L->top--; /* pop new value */
if (fp) { /* is a Lua function? */
2002-01-26 01:14:54 +03:00
name = luaF_getlocalname(fp, n, currentpc(L, ci));
if (!name || name[0] == '(') /* `(' starts private locals */
name = NULL;
else
setobj(ci->base+(n-1), L->top);
}
2001-03-02 20:27:50 +03:00
lua_unlock(L);
2000-08-28 21:57:04 +04:00
return name;
2000-01-19 15:00:45 +03:00
}
static void infoLproto (lua_Debug *ar, Proto *f) {
ar->source = getstr(f->source);
ar->linedefined = f->lineDefined;
ar->what = "Lua";
}
2000-10-20 20:39:03 +04:00
static void funcinfo (lua_State *L, lua_Debug *ar, StkId func) {
Closure *cl;
if (ttype(func) == LUA_TFUNCTION)
cl = clvalue(func);
else {
2002-05-15 22:57:44 +04:00
luaG_runerror(L, "value for `lua_getinfo' is not a function");
cl = NULL; /* to avoid warnings */
}
2001-10-02 20:45:03 +04:00
if (cl->c.isC) {
2002-05-15 22:57:44 +04:00
ar->source = "=[C]";
2000-10-05 16:14:08 +04:00
ar->linedefined = -1;
ar->what = "C";
2000-10-05 16:14:08 +04:00
}
else
2001-10-02 20:45:03 +04:00
infoLproto(ar, cl->l.p);
luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE);
2000-01-19 15:00:45 +03:00
if (ar->linedefined == 0)
ar->what = "main";
}
static const char *travglobals (lua_State *L, const TObject *o) {
2001-12-05 23:15:18 +03:00
Table *g = hvalue(gt(L));
2001-10-25 23:14:14 +04:00
int i = sizenode(g);
while (i--) {
Node *n = node(g, i);
2002-06-13 17:39:55 +04:00
if (luaO_rawequalObj(o, val(n)) && ttype(key(n)) == LUA_TSTRING)
2001-10-25 23:14:14 +04:00
return getstr(tsvalue(key(n)));
}
return NULL;
}
static void getname (lua_State *L, const TObject *f, lua_Debug *ar) {
/* try to find a name for given function */
if ((ar->name = travglobals(L, f)) != NULL)
ar->namewhat = "global";
2001-12-05 23:15:18 +03:00
else ar->namewhat = ""; /* not found */
2000-01-19 15:00:45 +03:00
}
LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
StkId f;
CallInfo *ci;
int status = 1;
2001-03-02 20:27:50 +03:00
lua_lock(L);
if (*what != '>') { /* function is active? */
2002-03-11 15:45:00 +03:00
ci = L->base_ci + ar->i_ci;
f = ci->base - 1;
}
else {
2001-02-22 21:59:59 +03:00
what++; /* skip the `>' */
ci = NULL;
f = L->top - 1;
}
2000-03-03 17:58:26 +03:00
for (; *what; what++) {
2000-01-19 15:00:45 +03:00
switch (*what) {
case 'S': {
funcinfo(L, ar, f);
2000-01-19 15:00:45 +03:00
break;
2000-08-11 20:17:28 +04:00
}
case 'l': {
2002-01-26 01:14:54 +03:00
ar->currentline = (ci) ? currentline(L, ci) : -1;
2000-01-19 15:00:45 +03:00
break;
2000-08-11 20:17:28 +04:00
}
case 'u': {
2001-10-02 20:45:03 +04:00
ar->nups = (ttype(f) == LUA_TFUNCTION) ? clvalue(f)->c.nupvalues : 0;
2000-01-19 15:00:45 +03:00
break;
2000-08-11 20:17:28 +04:00
}
case 'n': {
ar->namewhat = (ci) ? getfuncname(L, ci, &ar->name) : NULL;
2000-08-11 20:17:28 +04:00
if (ar->namewhat == NULL)
getname(L, f, ar);
2000-01-19 15:00:45 +03:00
break;
2000-08-11 20:17:28 +04:00
}
case 'f': {
setobj(L->top, f);
2002-01-26 01:14:54 +03:00
status = 2;
2000-01-19 15:00:45 +03:00
break;
2000-08-11 20:17:28 +04:00
}
case 'c': {
ar->isprotected = (ci && luaD_isprotected(L, ci));
break;
}
default: status = 0; /* invalid option */
2000-01-19 15:00:45 +03:00
}
}
if (!ci) L->top--; /* pop function */
2002-01-26 01:14:54 +03:00
if (status == 2) incr_top(L);
2001-03-02 20:27:50 +03:00
lua_unlock(L);
return status;
}
2000-01-19 15:00:45 +03:00
2000-06-29 00:21:06 +04:00
/*
** {======================================================
** Symbolic Execution and code checker
2000-06-29 00:21:06 +04:00
** =======================================================
*/
2001-02-16 20:58:27 +03:00
#define check(x) if (!(x)) return 0;
2000-08-10 23:50:47 +04:00
#define checkjump(pt,pc) check(0 <= pc && pc < pt->sizecode)
#define checkreg(pt,reg) check((reg) < (pt)->maxstacksize)
static int precheck (const Proto *pt) {
check(pt->maxstacksize <= MAXSTACK);
2002-02-06 01:39:12 +03:00
lua_assert(pt->numparams+pt->is_vararg <= pt->maxstacksize);
check(GET_OPCODE(pt->code[pt->sizecode-1]) == OP_RETURN);
return 1;
}
static int checkopenop (const Proto *pt, int pc) {
Instruction i = pt->code[pc+1];
switch (GET_OPCODE(i)) {
case OP_CALL:
case OP_TAILCALL:
case OP_RETURN: {
2002-01-10 01:02:47 +03:00
check(GETARG_B(i) == 0);
return 1;
}
case OP_SETLISTO: return 1;
default: return 0; /* invalid instruction after an open call */
}
2001-02-16 20:58:27 +03:00
}
2001-02-16 20:58:27 +03:00
static Instruction luaG_symbexec (const Proto *pt, int lastpc, int reg) {
2001-02-16 20:58:27 +03:00
int pc;
int last; /* stores position of last instruction that changed `reg' */
last = pt->sizecode-1; /* points to final return (a `neutral' instruction) */
check(precheck(pt));
for (pc = 0; pc < lastpc; pc++) {
const Instruction i = pt->code[pc];
2001-02-09 21:37:33 +03:00
OpCode op = GET_OPCODE(i);
int a = GETARG_A(i);
int b = 0;
int c = 0;
2001-06-11 18:56:42 +04:00
checkreg(pt, a);
switch (getOpMode(op)) {
case iABC: {
b = GETARG_B(i);
c = GETARG_C(i);
2001-07-03 21:01:34 +04:00
if (testOpMode(op, OpModeBreg))
checkreg(pt, b);
2001-07-03 21:01:34 +04:00
if (testOpMode(op, OpModeCreg))
check(c < pt->maxstacksize ||
(c >= MAXSTACK && c-MAXSTACK < pt->sizek));
2000-08-14 21:46:27 +04:00
break;
}
case iABx: {
b = GETARG_Bx(i);
if (testOpMode(op, OpModeK)) check(b < pt->sizek);
2000-08-14 21:46:27 +04:00
break;
}
case iAsBx: {
b = GETARG_sBx(i);
2000-06-29 00:21:06 +04:00
break;
}
}
if (testOpMode(op, OpModesetA)) {
if (a == reg) last = pc; /* change register `a' */
}
if (testOpMode(op, OpModeT)) {
check(pc+2 < pt->sizecode); /* check skip */
check(GET_OPCODE(pt->code[pc+1]) == OP_JMP);
}
switch (op) {
2001-12-12 01:48:44 +03:00
case OP_LOADBOOL: {
check(c == 0 || pc+2 < pt->sizecode); /* check its jump */
break;
}
case OP_LOADNIL: {
if (a <= reg && reg <= b)
last = pc; /* set registers from `a' to `b' */
2001-02-09 21:37:33 +03:00
break;
}
case OP_GETUPVAL:
case OP_SETUPVAL: {
check(b < pt->nupvalues);
2001-02-09 21:37:33 +03:00
break;
}
case OP_GETGLOBAL:
case OP_SETGLOBAL: {
check(ttype(&pt->k[b]) == LUA_TSTRING);
2001-02-09 21:37:33 +03:00
break;
}
case OP_SELF: {
checkreg(pt, a+1);
if (reg == a+1) last = pc;
2001-02-09 21:37:33 +03:00
break;
}
case OP_CONCAT: {
2001-07-03 21:01:34 +04:00
/* `c' is a register, and at least two operands */
check(c < MAXSTACK && b < c);
2001-02-09 21:37:33 +03:00
break;
}
case OP_TFORLOOP:
checkreg(pt, a+2+c);
/* go through */
2002-02-06 01:39:12 +03:00
case OP_FORLOOP:
checkreg(pt, a+2);
/* go through */
case OP_JMP: {
int dest = pc+1+b;
check(0 <= dest && dest < pt->sizecode);
/* not full check and jump is forward and do not skip `lastpc'? */
if (reg != NO_REG && pc < dest && dest <= lastpc)
pc += b; /* do the jump */
2000-06-29 00:21:06 +04:00
break;
}
case OP_CALL: {
2002-01-10 01:02:47 +03:00
if (b != 0) {
checkreg(pt, a+b-1);
2001-06-11 18:56:42 +04:00
}
2002-01-10 01:02:47 +03:00
c--; /* c = num. returns */
if (c == LUA_MULTRET) {
check(checkopenop(pt, pc));
}
2001-06-11 18:56:42 +04:00
else if (c != 0)
checkreg(pt, a+c-1);
if (reg >= a) last = pc; /* affect all registers above base */
2000-06-29 00:21:06 +04:00
break;
}
case OP_TAILCALL:
case OP_RETURN: {
2002-01-10 01:02:47 +03:00
b--; /* b = num. returns */
if (b > 0) checkreg(pt, a+b-1);
2001-02-09 21:37:33 +03:00
break;
}
case OP_SETLIST: {
checkreg(pt, a + (b&(LFIELDS_PER_FLUSH-1)) + 1);
2001-02-09 21:37:33 +03:00
break;
}
case OP_CLOSURE: {
int nup;
2001-06-28 18:57:17 +04:00
check(b < pt->sizep);
nup = pt->p[b]->nupvalues;
check(pc + nup < pt->sizecode);
for (; nup>0; nup--) {
OpCode op1 = GET_OPCODE(pt->code[pc+nup]);
check(op1 == OP_GETUPVAL || op1 == OP_MOVE);
}
2001-02-09 21:37:33 +03:00
break;
2000-06-29 00:21:06 +04:00
}
default: break;
2000-06-29 00:21:06 +04:00
}
}
return pt->code[last];
2001-02-09 21:37:33 +03:00
}
2002-07-08 22:21:33 +04:00
#undef check
#undef checkjump
#undef checkreg
2001-02-16 20:58:27 +03:00
/* }====================================================== */
2001-02-09 21:37:33 +03:00
int luaG_checkcode (const Proto *pt) {
return luaG_symbexec(pt, pt->sizecode, NO_REG);
2000-06-29 00:21:06 +04:00
}
static const char *kname (Proto *p, int c) {
c = c - MAXSTACK;
if (c >= 0 && ttype(&p->k[c]) == LUA_TSTRING)
return svalue(&p->k[c]);
else
return "?";
}
2002-02-06 01:39:12 +03:00
static const char *getobjname (lua_State *L, CallInfo *ci, int stackpos,
const char **name) {
if (isLmark(ci)) { /* an active Lua function? */
2001-10-02 20:45:03 +04:00
Proto *p = ci_func(ci)->l.p;
2002-01-26 01:14:54 +03:00
int pc = currentpc(L, ci);
Instruction i;
*name = luaF_getlocalname(p, stackpos+1, pc);
if (*name) /* is a local? */
return "local";
i = luaG_symbexec(p, pc, stackpos); /* try symbolic execution */
lua_assert(pc != -1);
2000-06-29 00:21:06 +04:00
switch (GET_OPCODE(i)) {
case OP_GETGLOBAL: {
lua_assert(ttype(&p->k[GETARG_Bx(i)]) == LUA_TSTRING);
*name = svalue(&p->k[GETARG_Bx(i)]);
return "global";
2000-06-29 00:21:06 +04:00
}
case OP_MOVE: {
int a = GETARG_A(i);
int b = GETARG_B(i); /* move from `b' to `a' */
if (b < a)
2002-02-06 01:39:12 +03:00
return getobjname(L, ci, b, name); /* get name for `b' */
break;
2000-06-29 00:21:06 +04:00
}
case OP_GETTABLE: {
*name = kname(p, GETARG_C(i));
return "field";
}
case OP_SELF: {
*name = kname(p, GETARG_C(i));
return "method";
2000-06-29 00:21:06 +04:00
}
default: break;
2000-06-29 00:21:06 +04:00
}
}
return NULL; /* no useful name found */
2000-06-29 00:21:06 +04:00
}
static Instruction getcurrentinstr (lua_State *L, CallInfo *ci) {
if (ci == L->base_ci || !isLmark(ci))
return (Instruction)(-1); /* not an active Lua function */
else
return ci_func(ci)->l.p->code[currentpc(L, ci)];
}
2002-01-26 01:14:54 +03:00
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) {
Instruction i;
2001-12-18 23:52:30 +03:00
ci--; /* calling function */
i = getcurrentinstr(L, ci);
return (GET_OPCODE(i) == OP_CALL ? getobjname(L, ci, GETARG_A(i), name)
: NULL); /* no useful name found */
}
/* only ANSI way to check whether a pointer points to an array */
static int isinstack (CallInfo *ci, const TObject *o) {
StkId p;
for (p = ci->base; p < ci->top; p++)
if (o == p) return 1;
return 0;
2000-08-11 20:17:28 +04:00
}
void luaG_typeerror (lua_State *L, const TObject *o, const char *op) {
2002-06-06 22:17:33 +04:00
const char *name = NULL;
2001-12-05 23:15:18 +03:00
const char *t = luaT_typenames[ttype(o)];
2002-06-06 22:17:33 +04:00
const char *kind = (isinstack(L->ci, o)) ?
getobjname(L, L->ci, o - L->ci->base, &name) : NULL;
2000-06-29 00:21:06 +04:00
if (kind)
2002-05-15 22:57:44 +04:00
luaG_runerror(L, "attempt to %s %s `%s' (a %s value)",
2000-08-10 23:50:47 +04:00
op, kind, name, t);
2000-06-29 00:21:06 +04:00
else
2002-05-15 22:57:44 +04:00
luaG_runerror(L, "attempt to %s a %s value", op, t);
}
void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
if (ttype(p1) == LUA_TSTRING) p1 = p2;
lua_assert(ttype(p1) != LUA_TSTRING);
luaG_typeerror(L, p1, "concat");
}
void luaG_aritherror (lua_State *L, StkId p1, const TObject *p2) {
TObject temp;
if (luaV_tonumber(p1, &temp) == NULL)
p2 = p1; /* first operand is wrong */
luaG_typeerror(L, p2, "perform arithmetic on");
}
2000-08-11 20:17:28 +04:00
2002-06-24 19:07:21 +04:00
int luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2) {
2001-12-05 23:15:18 +03:00
const char *t1 = luaT_typenames[ttype(p1)];
const char *t2 = luaT_typenames[ttype(p2)];
2000-08-11 20:17:28 +04:00
if (t1[2] == t2[2])
2002-05-15 22:57:44 +04:00
luaG_runerror(L, "attempt to compare two %s values", t1);
2000-08-11 20:17:28 +04:00
else
2002-05-15 22:57:44 +04:00
luaG_runerror(L, "attempt to compare %s with %s", t1, t2);
2002-06-24 19:07:21 +04:00
return 0;
2002-05-15 22:57:44 +04:00
}
2002-06-18 19:19:27 +04:00
static void addinfo (lua_State *L, int internal) {
const char *msg = svalue(L->top - 1);
2002-06-21 00:39:44 +04:00
CallInfo *ci = L->ci;
if (!internal && ci > L->base_ci) ci--;
2002-06-18 19:19:27 +04:00
if (strchr(msg, '\n')) return; /* message already `formatted' */
if (!isLmark(ci)) { /* no Lua code? */
luaO_pushfstring(L, "%s\n", msg); /* no extra info */
}
else { /* add file:line information */
char buff[LUA_IDSIZE];
int line = currentline(L, ci);
luaO_chunkid(buff, getstr(getluaproto(ci)->source), LUA_IDSIZE);
luaO_pushfstring(L, "%s:%d: %s\n", buff, line, msg);
}
}
void luaG_errormsg (lua_State *L, int internal) {
const TObject *errfunc;
if (ttype(L->top - 1) == LUA_TSTRING)
addinfo(L, internal);
errfunc = luaH_getstr(hvalue(registry(L)), luaS_new(L, LUA_TRACEBACK));
if (ttype(errfunc) != LUA_TNIL) { /* is there an error function? */
setobj(L->top, errfunc); /* push function */
setobj(L->top + 1, L->top - 1); /* push error message */
L->top += 2;
luaD_call(L, L->top - 2, 1); /* call error function? */
}
2002-06-21 00:39:44 +04:00
else {
setnilvalue(L->top++);
}
2002-06-18 19:19:27 +04:00
luaD_throw(L, LUA_ERRRUN);
}
2002-05-15 22:57:44 +04:00
void luaG_runerror (lua_State *L, const char *fmt, ...) {
va_list argp;
va_start(argp, fmt);
2002-06-18 19:19:27 +04:00
luaO_pushvfstring(L, fmt, argp);
2002-05-15 22:57:44 +04:00
va_end(argp);
2002-06-18 19:19:27 +04:00
luaG_errormsg(L, 1);
2000-08-11 20:17:28 +04:00
}