This repository was archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsrlua.c
198 lines (180 loc) · 4.52 KB
/
srlua.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
* srlua.c
* Lua interpreter for self-running programs
* Luiz Henrique de Figueiredo <[email protected]>
* 27 Apr 2012 09:24:34
* This code is hereby placed in the public domain.
*/
#if defined(_WIN32)
#include <windows.h>
#define _PATH_MAX MAX_PATH
#else
#define _PATH_MAX PATH_MAX
#endif
#if defined (__CYGWIN__)
#include <sys/cygwin.h>
#endif
#if defined(__linux__) || defined(__sun)
#include <unistd.h> /* readlink */
#endif
#if defined(__APPLE__)
#include <sys/param.h>
#include <mach-o/dyld.h>
#endif
#if defined(__FreeBSD__)
#include <sys/types.h>
#include <sys/sysctl.h>
#endif
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "glue.h"
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
typedef struct
{
FILE *f;
size_t size;
char buff[512];
} State;
static const char *myget(lua_State *L, void *data, size_t *size)
{
State* s=data;
size_t n;
(void)L;
n=(sizeof(s->buff)<=s->size)? sizeof(s->buff) : s->size;
n=fread(s->buff,1,n,s->f);
s->size-=n;
*size=n;
return (n>0) ? s->buff : NULL;
}
#define cannot(x) luaL_error(L,"cannot %s %s: %s",x,name,strerror(errno))
static void load(lua_State *L, const char *name)
{
Glue t;
State S;
FILE *f=fopen(name,"rb");
int c;
if (f==NULL) cannot("open");
if (fseek(f,-sizeof(t),SEEK_END)!=0) cannot("seek");
if (fread(&t,sizeof(t),1,f)!=1) cannot("read");
if (memcmp(t.sig,GLUESIG,GLUELEN)!=0) luaL_error(L,"no Lua program found in %s",name);
if (fseek(f,t.size1,SEEK_SET)!=0) cannot("seek");
S.f=f; S.size=t.size2;
c=getc(f);
if (c=='#')
while (--S.size>0 && c!='\n') c=getc(f);
else
ungetc(c,f);
#if LUA_VERSION_NUM <= 501
if (lua_load(L,myget,&S,"=")!=0) lua_error(L);
#else
if (lua_load(L,myget,&S,"=",NULL)!=0) lua_error(L);
#endif
fclose(f);
}
static int pmain(lua_State *L)
{
int argc=lua_tointeger(L,1);
char** argv=lua_touserdata(L,2);
int i;
lua_gc(L,LUA_GCSTOP,0);
luaL_openlibs(L);
lua_gc(L,LUA_GCRESTART,0);
load(L,argv[0]);
lua_createtable(L,argc,0);
for (i=0; i<argc; i++)
{
lua_pushstring(L,argv[i]);
lua_rawseti(L,-2,i);
}
lua_setglobal(L,"arg");
luaL_checkstack(L,argc-1,"too many arguments to script");
for (i=1; i<argc; i++)
{
lua_pushstring(L,argv[i]);
}
lua_call(L,argc-1,0);
return 0;
}
static void fatal(const char* progname, const char* message)
{
#ifdef _WIN32
MessageBox(NULL,message,progname,MB_ICONERROR | MB_OK);
#else
fprintf(stderr,"%s: %s\n",progname,message);
#endif
exit(EXIT_FAILURE);
}
char* getprog() {
int nsize = _PATH_MAX + 1;
char* progdir = malloc(nsize * sizeof(char));
char *lb;
int n = 0;
#if defined(__CYGWIN__)
char win_buff[_PATH_MAX + 1];
GetModuleFileNameA(NULL, win_buff, nsize);
cygwin_conv_path(CCP_WIN_A_TO_POSIX, win_buff, progdir, nsize);
n = strlen(progdir);
#elif defined(_WIN32)
n = GetModuleFileNameA(NULL, progdir, nsize);
#elif defined(__linux__)
n = readlink("/proc/self/exe", progdir, nsize);
if (n > 0) progdir[n] = 0;
#elif defined(__sun)
pid_t pid = getpid();
char linkname[256];
sprintf(linkname, "/proc/%d/path/a.out", pid);
n = readlink(linkname, progdir, nsize);
if (n > 0) progdir[n] = 0;
#elif defined(__FreeBSD__)
int mib[4];
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_PATHNAME;
mib[3] = -1;
size_t cb = nsize;
sysctl(mib, 4, progdir, &cb, NULL, 0);
n = cb;
#elif defined(__BSD__)
n = readlink("/proc/curproc/file", progdir, nsize);
if (n > 0) progdir[n] = 0;
#elif defined(__APPLE__)
uint32_t nsize_apple = nsize;
if (_NSGetExecutablePath(progdir, &nsize_apple) == 0)
n = strlen(progdir);
#else
// FALLBACK
// Use 'lsof' ... should work on most UNIX systems (incl. OSX)
// lsof will list open files, this captures the 1st file listed (usually the executable)
int pid;
FILE* fd;
char cmd[80];
pid = getpid();
sprintf(cmd, "lsof -p %d | awk '{if ($5==\"REG\") { print $9 ; exit}}' 2> /dev/null", pid);
fd = popen(cmd, "r");
n = fread(progdir, 1, nsize, fd);
pclose(fd);
// remove newline
if (n > 1) progdir[--n] = '\0';
#endif
if (n == 0 || n == nsize || (lb = strrchr(progdir, (int)LUA_DIRSEP[0])) == NULL)
return NULL;
return (progdir);
}
int main(int argc, char *argv[])
{
lua_State *L;
argv[0] = getprog();
if (argv[0]==NULL) fatal("srlua","cannot locate this executable");
L=luaL_newstate();
if (L==NULL) fatal(argv[0],"not enough memory for state");
lua_pushcfunction(L,&pmain);
lua_pushinteger(L,argc);
lua_pushlightuserdata(L,argv);
if (lua_pcall(L,2,0,0)!=0) fatal(argv[0],lua_tostring(L,-1));
lua_close(L);
return EXIT_SUCCESS;
}