lua/lundump.c

220 lines
5.2 KiB
C
Raw Normal View History

1998-01-14 18:49:01 +03:00
/*
2000-03-03 17:58:26 +03:00
** $Id: lundump.c,v 1.26 2000/02/17 19:17:44 lhf Exp lhf $
1998-01-14 18:49:01 +03:00
** load bytecodes from files
** See Copyright Notice in lua.h
*/
#include <stdio.h>
1999-03-31 00:29:34 +04:00
#include <string.h>
1999-12-02 22:11:51 +03:00
#define LUA_REENTRANT
1998-01-14 18:49:01 +03:00
#include "lauxlib.h"
#include "lfunc.h"
#include "lmem.h"
1999-03-31 00:29:34 +04:00
#include "lopcodes.h"
1998-01-14 18:49:01 +03:00
#include "lstring.h"
#include "lundump.h"
1999-12-02 22:11:51 +03:00
#define LoadBlock(L,b,size,Z) ezread(L,Z,b,size)
1998-03-26 17:50:19 +03:00
1999-12-02 22:11:51 +03:00
static void unexpectedEOZ (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
luaL_verror(L,"unexpected end of file in %.255s",zname(Z));
1998-01-14 18:49:01 +03:00
}
1999-12-02 22:11:51 +03:00
static int ezgetc (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
int c=zgetc(Z);
1999-12-02 22:11:51 +03:00
if (c==EOZ) unexpectedEOZ(L,Z);
1998-01-14 18:49:01 +03:00
return c;
}
1999-12-02 22:11:51 +03:00
static void ezread (lua_State* L, ZIO* Z, void* b, int n)
1998-01-14 18:49:01 +03:00
{
int r=zread(Z,b,n);
1999-12-02 22:11:51 +03:00
if (r!=0) unexpectedEOZ(L,Z);
1998-01-14 18:49:01 +03:00
}
1999-12-02 22:11:51 +03:00
static unsigned int LoadWord (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
unsigned int hi=ezgetc(L,Z);
unsigned int lo=ezgetc(L,Z);
1998-01-14 18:49:01 +03:00
return (hi<<8)|lo;
}
1999-12-02 22:11:51 +03:00
static unsigned long LoadLong (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
unsigned long hi=LoadWord(L,Z);
unsigned long lo=LoadWord(L,Z);
1998-03-26 17:50:19 +03:00
return (hi<<16)|lo;
1998-01-14 18:49:01 +03:00
}
2000-03-03 17:58:26 +03:00
static real LoadNumber (lua_State* L, ZIO* Z)
{
2000-03-03 17:58:26 +03:00
char b[256];
int size=ezgetc(L,Z);
LoadBlock(L,b,size,Z);
b[size]=0;
return luaU_str2d(L,b,zname(Z));
1998-01-14 18:49:01 +03:00
}
1999-12-02 22:11:51 +03:00
static int LoadInt (lua_State* L, ZIO* Z, const char* message)
1999-03-31 00:29:34 +04:00
{
1999-12-02 22:11:51 +03:00
unsigned long l=LoadLong(L,Z);
1999-03-31 00:29:34 +04:00
unsigned int i=l;
1999-12-02 22:11:51 +03:00
if (i!=l) luaL_verror(L,message,l,zname(Z));
1999-03-31 00:29:34 +04:00
return i;
}
2000-03-03 17:58:26 +03:00
static void LoadCode (lua_State* L, TProtoFunc* tf, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
int size=LoadInt(L,Z,"code too long (%lu bytes) in %.255s");
2000-03-03 17:58:26 +03:00
tf->code=luaM_newvector(L,size,Instruction);
LoadBlock(L,tf->code,size*sizeof(tf->code[0]),Z);
if (tf->code[size-1]!=ENDCODE) luaL_verror(L,"bad code in %.255s",zname(Z));
1998-01-14 18:49:01 +03:00
}
2000-03-03 17:58:26 +03:00
static TaggedString* LoadString (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
long size=LoadLong(L,Z);
1998-03-26 17:50:19 +03:00
if (size==0)
return NULL;
1998-01-14 18:49:01 +03:00
else
{
1999-12-02 22:11:51 +03:00
char* s=luaL_openspace(L,size);
LoadBlock(L,s,size,Z);
2000-03-03 17:58:26 +03:00
return luaS_newlstr(L,s,size-1); /* remove trailing '\0' */
1998-01-14 18:49:01 +03:00
}
}
1999-12-02 22:11:51 +03:00
static void LoadLocals (lua_State* L, TProtoFunc* tf, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
int i,n=LoadInt(L,Z,"too many locals (%lu) in %.255s");
1998-01-14 18:49:01 +03:00
if (n==0) return;
1999-12-02 22:11:51 +03:00
tf->locvars=luaM_newvector(L,n+1,LocVar);
1998-01-14 18:49:01 +03:00
for (i=0; i<n; i++)
{
1999-12-02 22:11:51 +03:00
tf->locvars[i].line=LoadInt(L,Z,"too many lines (%lu) in %.255s");
2000-03-03 17:58:26 +03:00
tf->locvars[i].varname=LoadString(L,Z);
1998-01-14 18:49:01 +03:00
}
tf->locvars[i].line=-1; /* flag end of vector */
tf->locvars[i].varname=NULL;
}
1999-12-02 22:11:51 +03:00
static TProtoFunc* LoadFunction (lua_State* L, ZIO* Z, int native);
1998-03-26 17:50:19 +03:00
1999-12-02 22:11:51 +03:00
static void LoadConstants (lua_State* L, TProtoFunc* tf, ZIO* Z, int native)
1998-01-14 18:49:01 +03:00
{
2000-03-03 17:58:26 +03:00
int i,n;
tf->nkstr=n=LoadInt(L,Z,"too many strings (%lu) in %.255s");
if (n>0)
1998-01-14 18:49:01 +03:00
{
2000-03-03 17:58:26 +03:00
tf->kstr=luaM_newvector(L,n,TaggedString*);
for (i=0; i<n; i++) tf->kstr[i]=LoadString(L,Z);
}
tf->nknum=n=LoadInt(L,Z,"too many numbers (%lu) in %.255s");
if (n>0)
{
tf->knum=luaM_newvector(L,n,real);
if (native)
LoadBlock(L,tf->knum,n*sizeof(tf->knum[0]),Z);
else
for (i=0; i<n; i++) tf->knum[i]=LoadNumber(L,Z);
}
tf->nkproto=n=LoadInt(L,Z,"too many functions (%lu) in %.255s");
if (n>0)
{
tf->kproto=luaM_newvector(L,n,TProtoFunc*);
for (i=0; i<n; i++) tf->kproto[i]=LoadFunction(L,Z,native);
1998-01-14 18:49:01 +03:00
}
}
1999-12-02 22:11:51 +03:00
static TProtoFunc* LoadFunction (lua_State* L, ZIO* Z, int native)
1998-01-14 18:49:01 +03:00
{
TProtoFunc* tf=luaF_newproto(L);
1999-12-02 22:11:51 +03:00
tf->lineDefined=LoadInt(L,Z,"lineDefined too large (%lu) in %.255s");
2000-03-03 17:58:26 +03:00
tf->source=LoadString(L,Z);
1999-12-02 22:11:51 +03:00
if (tf->source==NULL) tf->source=luaS_new(L,zname(Z));
2000-03-03 17:58:26 +03:00
tf->numparams=LoadInt(L,Z,"numparams too large (%lu) in %.255s");
tf->is_vararg=LoadInt(L,Z,"is_vararg too large (%lu) in %.255s");
tf->maxstacksize=LoadInt(L,Z,"maxstacksize too large (%lu) in %.255s");
LoadCode(L,tf,Z);
1999-12-02 22:11:51 +03:00
LoadLocals(L,tf,Z);
LoadConstants(L,tf,Z,native);
1998-01-14 18:49:01 +03:00
return tf;
}
1999-12-02 22:11:51 +03:00
static void LoadSignature (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-08-17 00:52:00 +04:00
const char* s=SIGNATURE;
1999-12-02 22:11:51 +03:00
while (*s!=0 && ezgetc(L,Z)==*s)
1998-01-14 18:49:01 +03:00
++s;
1999-12-02 22:11:51 +03:00
if (*s!=0) luaL_verror(L,"bad signature in %.255s",zname(Z));
1998-01-14 18:49:01 +03:00
}
2000-03-03 17:58:26 +03:00
#define V(v) v/16,v%16
1999-12-02 22:11:51 +03:00
static int LoadHeader (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
int version,sizeofR,native;
LoadSignature(L,Z);
version=ezgetc(L,Z);
1998-01-14 18:49:01 +03:00
if (version>VERSION)
1999-12-02 22:11:51 +03:00
luaL_verror(L,
2000-03-03 17:58:26 +03:00
"%.255s too new: its version is %d.%d; expected at most %d.%d",
zname(Z),V(version),V(VERSION));
1998-06-25 20:48:44 +04:00
if (version<VERSION0) /* check last major change */
1999-12-02 22:11:51 +03:00
luaL_verror(L,
2000-03-03 17:58:26 +03:00
"%.255s too old: its version is %d.%d; expected at least %d.%d",
zname(Z),V(version),V(VERSION));
1999-12-02 22:11:51 +03:00
sizeofR=ezgetc(L,Z);
native=(sizeofR!=0);
if (native) /* test number representation */
{
if (sizeofR!=sizeof(real))
1999-12-02 22:11:51 +03:00
luaL_verror(L,"unknown number size in %.255s: read %d; expected %d",
zname(Z),sizeofR,(int)sizeof(real));
else
{
2000-03-03 17:58:26 +03:00
real f=0,tf=TEST_NUMBER;
LoadBlock(L,&f,sizeof(f),Z);
if ((long)f!=(long)tf) /* disregard errors in last bit of fraction */
1999-12-02 22:11:51 +03:00
luaL_verror(L,"unknown number format in %.255s: "
"read " NUMBER_FMT "; expected " NUMBER_FMT,
zname(Z),f,tf);
}
}
return native;
1998-01-14 18:49:01 +03:00
}
1999-12-02 22:11:51 +03:00
static TProtoFunc* LoadChunk (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1999-12-02 22:11:51 +03:00
return LoadFunction(L,Z,LoadHeader(L,Z));
1998-01-14 18:49:01 +03:00
}
/*
** load one chunk from a file or buffer
** return main if ok and NULL at EOF
*/
1999-12-02 22:11:51 +03:00
TProtoFunc* luaU_undump1 (lua_State* L, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
int c=zgetc(Z);
if (c==ID_CHUNK)
1999-12-02 22:11:51 +03:00
return LoadChunk(L,Z);
1998-01-14 18:49:01 +03:00
else if (c!=EOZ)
1999-12-02 22:11:51 +03:00
luaL_verror(L,"%.255s is not a Lua binary file",zname(Z));
1998-01-14 18:49:01 +03:00
return NULL;
}
1999-03-31 00:29:34 +04:00
1999-12-02 22:11:51 +03:00
/*
* convert number from text
*/
double luaU_str2d (lua_State* L, const char* b, const char* where)
{
double x;
if (!luaO_str2d(b,&x))
luaL_verror(L,"cannot convert number '%.255s' in %.255s",b,where);
return x;
1999-03-31 00:29:34 +04:00
}