loadlib.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:19k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /*
  2. ** $Id: loadlib.c,v 1.51 2005/12/29 15:32:11 roberto Exp $
  3. ** Dynamic library loader for Lua
  4. ** See Copyright Notice in lua.h
  5. **
  6. ** This module contains an implementation of loadlib for Unix systems
  7. ** that have dlfcn, an implementation for Darwin (Mac OS X), an
  8. ** implementation for Windows, and a stub for other systems.
  9. */
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #define loadlib_c
  13. #define LUA_LIB
  14. #include "lauxlib.h"
  15. #include "lobject.h"
  16. #include "lua.h"
  17. #include "lualib.h"
  18. /* environment variables that hold the search path for packages */
  19. #define LUA_PATH "LUA_PATH"
  20. #define LUA_CPATH "LUA_CPATH"
  21. /* prefix for open functions in C libraries */
  22. #define LUA_POF "luaopen_"
  23. /* separator for open functions in C libraries */
  24. #define LUA_OFSEP "_"
  25. #define LIBPREFIX "LOADLIB: "
  26. #define POF LUA_POF
  27. #define LIB_FAIL "open"
  28. /* error codes for ll_loadfunc */
  29. #define ERRLIB 1
  30. #define ERRFUNC 2
  31. #define setprogdir(L) ((void)0)
  32. static void ll_unloadlib (void *lib);
  33. static void *ll_load (lua_State *L, const char *path);
  34. static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym);
  35. #if defined(LUA_DL_DLOPEN)
  36. /*
  37. ** {========================================================================
  38. ** This is an implementation of loadlib based on the dlfcn interface.
  39. ** The dlfcn interface is available in Linux, SunOS, Solaris, IRIX, FreeBSD,
  40. ** NetBSD, AIX 4.2, HPUX 11, and  probably most other Unix flavors, at least
  41. ** as an emulation layer on top of native functions.
  42. ** =========================================================================
  43. */
  44. #include <dlfcn.h>
  45. static void ll_unloadlib (void *lib) {
  46.   dlclose(lib);
  47. }
  48. static void *ll_load (lua_State *L, const char *path) {
  49.   void *lib = dlopen(path, RTLD_NOW);
  50.   if (lib == NULL) lua_pushstring(L, dlerror());
  51.   return lib;
  52. }
  53. static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
  54.   lua_CFunction f = (lua_CFunction)dlsym(lib, sym);
  55.   if (f == NULL) lua_pushstring(L, dlerror());
  56.   return f;
  57. }
  58. /* }====================================================== */
  59. #elif defined(LUA_DL_DLL)
  60. /*
  61. ** {======================================================================
  62. ** This is an implementation of loadlib for Windows using native functions.
  63. ** =======================================================================
  64. */
  65. #include <windows.h>
  66. #undef setprogdir
  67. static void setprogdir (lua_State *L) {
  68.   char buff[MAX_PATH + 1];
  69.   char *lb;
  70.   DWORD nsize = sizeof(buff)/sizeof(char);
  71.   DWORD n = GetModuleFileName(NULL, buff, nsize);
  72.   if (n == 0 || n == nsize || (lb = strrchr(buff, '\')) == NULL)
  73.     luaL_error(L, "unable to get ModuleFileName");
  74.   else {
  75.     *lb = '';
  76.     luaL_gsub(L, lua_tostring(L, -1), LUA_EXECDIR, buff);
  77.     lua_remove(L, -2);  /* remove original string */
  78.   }
  79. }
  80. static void pusherror (lua_State *L) {
  81.   int error = GetLastError();
  82.   char buffer[128];
  83.   if (FormatMessage(FORMAT_MESSAGE_IGNORE_INSERTS | FORMAT_MESSAGE_FROM_SYSTEM,
  84.       NULL, error, 0, buffer, sizeof(buffer), NULL))
  85.     lua_pushstring(L, buffer);
  86.   else
  87.     lua_pushfstring(L, "system error %dn", error);
  88. }
  89. static void ll_unloadlib (void *lib) {
  90.   FreeLibrary((HINSTANCE)lib);
  91. }
  92. static void *ll_load (lua_State *L, const char *path) {
  93.   HINSTANCE lib = LoadLibrary(path);
  94.   if (lib == NULL) pusherror(L);
  95.   return lib;
  96. }
  97. static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
  98.   lua_CFunction f = (lua_CFunction)GetProcAddress((HINSTANCE)lib, sym);
  99.   if (f == NULL) pusherror(L);
  100.   return f;
  101. }
  102. /* }====================================================== */
  103. #elif defined(LUA_DL_DYLD)
  104. /*
  105. ** {======================================================================
  106. ** Native Mac OS X / Darwin Implementation
  107. ** =======================================================================
  108. */
  109. #include <mach-o/dyld.h>
  110. /* Mac appends a `_' before C function names */
  111. #undef POF
  112. #define POF "_" LUA_POF
  113. static void pusherror (lua_State *L) {
  114.   const char *err_str;
  115.   const char *err_file;
  116.   NSLinkEditErrors err;
  117.   int err_num;
  118.   NSLinkEditError(&err, &err_num, &err_file, &err_str);
  119.   lua_pushstring(L, err_str);
  120. }
  121. static const char *errorfromcode (NSObjectFileImageReturnCode ret) {
  122.   switch (ret) {
  123.     case NSObjectFileImageInappropriateFile:
  124.       return "file is not a bundle";
  125.     case NSObjectFileImageArch:
  126.       return "library is for wrong CPU type";
  127.     case NSObjectFileImageFormat:
  128.       return "bad format";
  129.     case NSObjectFileImageAccess:
  130.       return "cannot access file";
  131.     case NSObjectFileImageFailure:
  132.     default:
  133.       return "unable to load library";
  134.   }
  135. }
  136. static void ll_unloadlib (void *lib) {
  137.   NSUnLinkModule((NSModule)lib, NSUNLINKMODULE_OPTION_RESET_LAZY_REFERENCES);
  138. }
  139. static void *ll_load (lua_State *L, const char *path) {
  140.   NSObjectFileImage img;
  141.   NSObjectFileImageReturnCode ret;
  142.   /* this would be a rare case, but prevents crashing if it happens */
  143.   if(!_dyld_present()) {
  144.     lua_pushliteral(L, "dyld not present");
  145.     return NULL;
  146.   }
  147.   ret = NSCreateObjectFileImageFromFile(path, &img);
  148.   if (ret == NSObjectFileImageSuccess) {
  149.     NSModule mod = NSLinkModule(img, path, NSLINKMODULE_OPTION_PRIVATE |
  150.                        NSLINKMODULE_OPTION_RETURN_ON_ERROR);
  151.     NSDestroyObjectFileImage(img);
  152.     if (mod == NULL) pusherror(L);
  153.     return mod;
  154.   }
  155.   lua_pushstring(L, errorfromcode(ret));
  156.   return NULL;
  157. }
  158. static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
  159.   NSSymbol nss = NSLookupSymbolInModule((NSModule)lib, sym);
  160.   if (nss == NULL) {
  161.     lua_pushfstring(L, "symbol " LUA_QS " not found", sym);
  162.     return NULL;
  163.   }
  164.   return (lua_CFunction)NSAddressOfSymbol(nss);
  165. }
  166. /* }====================================================== */
  167. #else
  168. /*
  169. ** {======================================================
  170. ** Fallback for other systems
  171. ** =======================================================
  172. */
  173. #undef LIB_FAIL
  174. #define LIB_FAIL "absent"
  175. #define DLMSG "dynamic libraries not enabled; check your Lua installation"
  176. static void ll_unloadlib (void *lib) {
  177.   (void)lib;  /* to avoid warnings */
  178. }
  179. static void *ll_load (lua_State *L, const char *path) {
  180.   (void)path;  /* to avoid warnings */
  181.   lua_pushliteral(L, DLMSG);
  182.   return NULL;
  183. }
  184. static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
  185.   (void)lib; (void)sym;  /* to avoid warnings */
  186.   lua_pushliteral(L, DLMSG);
  187.   return NULL;
  188. }
  189. /* }====================================================== */
  190. #endif
  191. static void **ll_register (lua_State *L, const char *path) {
  192.   void **plib;
  193.   lua_pushfstring(L, "%s%s", LIBPREFIX, path);
  194.   lua_gettable(L, LUA_REGISTRYINDEX);  /* check library in registry? */
  195.   if (!lua_isnil(L, -1))  /* is there an entry? */
  196.     plib = (void **)lua_touserdata(L, -1);
  197.   else {  /* no entry yet; create one */
  198.     lua_pop(L, 1);
  199.     plib = (void **)lua_newuserdata(L, sizeof(const void *));
  200.     *plib = NULL;
  201.     luaL_getmetatable(L, "_LOADLIB");
  202.     lua_setmetatable(L, -2);
  203.     lua_pushfstring(L, "%s%s", LIBPREFIX, path);
  204.     lua_pushvalue(L, -2);
  205.     lua_settable(L, LUA_REGISTRYINDEX);
  206.   }
  207.   return plib;
  208. }
  209. /*
  210. ** __gc tag method: calls library's `ll_unloadlib' function with the lib
  211. ** handle
  212. */
  213. static int gctm (lua_State *L) {
  214.   void **lib = (void **)luaL_checkudata(L, 1, "_LOADLIB");
  215.   if (*lib) ll_unloadlib(*lib);
  216.   *lib = NULL;  /* mark library as closed */
  217.   return 0;
  218. }
  219. static int ll_loadfunc (lua_State *L, const char *path, const char *sym) {
  220.   void **reg = ll_register(L, path);
  221.   if (*reg == NULL) *reg = ll_load(L, path);
  222.   if (*reg == NULL)
  223.     return ERRLIB;  /* unable to load library */
  224.   else {
  225.     lua_CFunction f = ll_sym(L, *reg, sym);
  226.     if (f == NULL)
  227.       return ERRFUNC;  /* unable to find function */
  228.     lua_pushcfunction(L, f);
  229.     return 0;  /* return function */
  230.   }
  231. }
  232. static int ll_loadlib (lua_State *L) {
  233.   const char *path = luaL_checkstring(L, 1);
  234.   const char *init = luaL_checkstring(L, 2);
  235.   int stat = ll_loadfunc(L, path, init);
  236.   if (stat == 0)  /* no errors? */
  237.     return 1;  /* return the loaded function */
  238.   else {  /* error; error message is on stack top */
  239.     lua_pushnil(L);
  240.     lua_insert(L, -2);
  241.     lua_pushstring(L, (stat == ERRLIB) ?  LIB_FAIL : "init");
  242.     return 3;  /* return nil, error message, and where */
  243.   }
  244. }
  245. /*
  246. ** {======================================================
  247. ** 'require' function
  248. ** =======================================================
  249. */
  250. static int readable (const char *filename) {
  251.   FILE *f = fopen(filename, "r");  /* try to open file */
  252.   if (f == NULL) return 0;  /* open failed */
  253.   fclose(f);
  254.   return 1;
  255. }
  256. static const char *pushnexttemplate (lua_State *L, const char *path) {
  257.   const char *l;
  258.   while (*path == *LUA_PATHSEP) path++;  /* skip separators */
  259.   if (*path == '') return NULL;  /* no more templates */
  260.   l = strchr(path, *LUA_PATHSEP);  /* find next separator */
  261.   if (l == NULL) l = path + strlen(path);
  262.   lua_pushlstring(L, path, l - path);  /* template */
  263.   return l;
  264. }
  265. static const char *findfile (lua_State *L, const char *name,
  266.                                            const char *pname) {
  267.   const char *path;
  268.   name = luaL_gsub(L, name, ".", LUA_DIRSEP);
  269.   lua_getfield(L, LUA_ENVIRONINDEX, pname);
  270.   path = lua_tostring(L, -1);
  271.   if (path == NULL)
  272.     luaL_error(L, LUA_QL("package.%s") " must be a string", pname);
  273.   lua_pushstring(L, "");  /* error accumulator */
  274.   while ((path = pushnexttemplate(L, path)) != NULL) {
  275.     const char *filename;
  276.     filename = luaL_gsub(L, lua_tostring(L, -1), LUA_PATH_MARK, name);
  277.     if (readable(filename))  /* does file exist and is readable? */
  278.       return filename;  /* return that file name */
  279.     lua_pop(L, 2);  /* remove path template and file name */ 
  280.     luaO_pushfstring(L, "ntno file " LUA_QS, filename);
  281.     lua_concat(L, 2);
  282.   }
  283.   return NULL;  /* not found */
  284. }
  285. static void loaderror (lua_State *L, const char *filename) {
  286.   luaL_error(L, "error loading module " LUA_QS " from file " LUA_QS ":nt%s",
  287.                 lua_tostring(L, 1), filename, lua_tostring(L, -1));
  288. }
  289. static int loader_Lua (lua_State *L) {
  290.   const char *filename;
  291.   const char *name = luaL_checkstring(L, 1);
  292.   filename = findfile(L, name, "path");
  293.   if (filename == NULL) return 1;  /* library not found in this path */
  294.   if (luaL_loadfile(L, filename) != 0)
  295.     loaderror(L, filename);
  296.   return 1;  /* library loaded successfully */
  297. }
  298. static const char *mkfuncname (lua_State *L, const char *modname) {
  299.   const char *funcname;
  300.   const char *mark = strchr(modname, *LUA_IGMARK);
  301.   if (mark) modname = mark + 1;
  302.   funcname = luaL_gsub(L, modname, ".", LUA_OFSEP);
  303.   funcname = lua_pushfstring(L, POF"%s", funcname);
  304.   lua_remove(L, -2);  /* remove 'gsub' result */
  305.   return funcname;
  306. }
  307. static int loader_C (lua_State *L) {
  308.   const char *funcname;
  309.   const char *name = luaL_checkstring(L, 1);
  310.   const char *filename = findfile(L, name, "cpath");
  311.   if (filename == NULL) return 1;  /* library not found in this path */
  312.   funcname = mkfuncname(L, name);
  313.   if (ll_loadfunc(L, filename, funcname) != 0)
  314.     loaderror(L, filename);
  315.   return 1;  /* library loaded successfully */
  316. }
  317. static int loader_Croot (lua_State *L) {
  318.   const char *funcname;
  319.   const char *filename;
  320.   const char *name = luaL_checkstring(L, 1);
  321.   const char *p = strchr(name, '.');
  322.   int stat;
  323.   if (p == NULL) return 0;  /* is root */
  324.   lua_pushlstring(L, name, p - name);
  325.   filename = findfile(L, lua_tostring(L, -1), "cpath");
  326.   if (filename == NULL) return 1;  /* root not found */
  327.   funcname = mkfuncname(L, name);
  328.   if ((stat = ll_loadfunc(L, filename, funcname)) != 0) {
  329.     if (stat != ERRFUNC) loaderror(L, filename);  /* real error */
  330.     luaO_pushfstring(L, "ntno module " LUA_QS " in file " LUA_QS,
  331.                         name, filename);
  332.     return 1;  /* function not found */
  333.   }
  334.   return 1;
  335. }
  336. static int loader_preload (lua_State *L) {
  337.   const char *name = luaL_checkstring(L, 1);
  338.   lua_getfield(L, LUA_ENVIRONINDEX, "preload");
  339.   if (!lua_istable(L, -1))
  340.     luaL_error(L, LUA_QL("package.preload") " must be a table");
  341.   lua_getfield(L, -1, name);
  342.   if (lua_isnil(L, -1))  /* not found? */
  343.     luaO_pushfstring(L, "ntno field package.preload['%s']", name);
  344.   return 1;
  345. }
  346. static const int sentinel_ = 0;
  347. #define sentinel ((void *)&sentinel_)
  348. static int ll_require (lua_State *L) {
  349.   const char *name = luaL_checkstring(L, 1);
  350.   int i;
  351.   lua_settop(L, 1);  /* _LOADED table will be at index 2 */
  352.   lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED");
  353.   lua_getfield(L, 2, name);
  354.   if (lua_toboolean(L, -1)) {  /* is it there? */
  355.     if (lua_touserdata(L, -1) == sentinel)  /* check loops */
  356.       luaL_error(L, "loop or previous error loading module " LUA_QS, name);
  357.     return 1;  /* package is already loaded */
  358.   }
  359.   /* else must load it; iterate over available loaders */
  360.   lua_getfield(L, LUA_ENVIRONINDEX, "loaders");
  361.   if (!lua_istable(L, -1))
  362.     luaL_error(L, LUA_QL("package.loaders") " must be a table");
  363.   lua_pushstring(L, "");  /* error message accumulator */
  364.   for (i=1; ; i++) {
  365.     lua_rawgeti(L, -2, i);  /* get a loader */
  366.     if (lua_isnil(L, -1))
  367.       luaL_error(L, "module " LUA_QS " not found:%s",
  368.                     name, lua_tostring(L, -2));
  369.     lua_pushstring(L, name);
  370.     lua_call(L, 1, 1);  /* call it */
  371.     if (lua_isfunction(L, -1))  /* did it find module? */
  372.       break;  /* module loaded successfully */
  373.     else if (lua_isstring(L, -1))  /* loader returned error message? */
  374.       lua_concat(L, 2);  /* accumulate it */
  375.     else
  376.       lua_pop(L, 1);
  377.   }
  378.   lua_pushlightuserdata(L, sentinel);
  379.   lua_setfield(L, 2, name);  /* _LOADED[name] = sentinel */
  380.   lua_pushstring(L, name);  /* pass name as argument to module */
  381.   lua_call(L, 1, 1);  /* run loaded module */
  382.   if (!lua_isnil(L, -1))  /* non-nil return? */
  383.     lua_setfield(L, 2, name);  /* _LOADED[name] = returned value */
  384.   lua_getfield(L, 2, name);
  385.   if (lua_touserdata(L, -1) == sentinel) {   /* module did not set a value? */
  386.     lua_pushboolean(L, 1);  /* use true as result */
  387.     lua_pushvalue(L, -1);  /* extra copy to be returned */
  388.     lua_setfield(L, 2, name);  /* _LOADED[name] = true */
  389.   }
  390.   return 1;
  391. }
  392. /* }====================================================== */
  393. /*
  394. ** {======================================================
  395. ** 'module' function
  396. ** =======================================================
  397. */
  398.   
  399. static void setfenv (lua_State *L) {
  400.   lua_Debug ar;
  401.   lua_getstack(L, 1, &ar);
  402.   lua_getinfo(L, "f", &ar);
  403.   lua_pushvalue(L, -2);
  404.   lua_setfenv(L, -2);
  405.   lua_pop(L, 1);
  406. }
  407. static void dooptions (lua_State *L, int n) {
  408.   int i;
  409.   for (i = 2; i <= n; i++) {
  410.     lua_pushvalue(L, i);  /* get option (a function) */
  411.     lua_pushvalue(L, -2);  /* module */
  412.     lua_call(L, 1, 0);
  413.   }
  414. }
  415. static void modinit (lua_State *L, const char *modname) {
  416.   const char *dot;
  417.   lua_pushvalue(L, -1);
  418.   lua_setfield(L, -2, "_M");  /* module._M = module */
  419.   lua_pushstring(L, modname);
  420.   lua_setfield(L, -2, "_NAME");
  421.   dot = strrchr(modname, '.');  /* look for last dot in module name */
  422.   if (dot == NULL) dot = modname;
  423.   else dot++;
  424.   /* set _PACKAGE as package name (full module name minus last part) */
  425.   lua_pushlstring(L, modname, dot - modname);
  426.   lua_setfield(L, -2, "_PACKAGE");
  427. }
  428. static int ll_module (lua_State *L) {
  429.   const char *modname = luaL_checkstring(L, 1);
  430.   int loaded = lua_gettop(L) + 1;  /* index of _LOADED table */
  431.   lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED");
  432.   lua_getfield(L, loaded, modname);  /* get _LOADED[modname] */
  433.   if (!lua_istable(L, -1)) {  /* not found? */
  434.     lua_pop(L, 1);  /* remove previous result */
  435.     /* try global variable (and create one if it does not exist) */
  436.     if (luaL_findtable(L, LUA_GLOBALSINDEX, modname, 1) != NULL)
  437.       return luaL_error(L, "name conflict for module " LUA_QS, modname);
  438.     lua_pushvalue(L, -1);
  439.     lua_setfield(L, loaded, modname);  /* _LOADED[modname] = new table */
  440.   }
  441.   /* check whether table already has a _NAME field */
  442.   lua_getfield(L, -1, "_NAME");
  443.   if (!lua_isnil(L, -1))  /* is table an initialized module? */
  444.     lua_pop(L, 1);
  445.   else {  /* no; initialize it */
  446.     lua_pop(L, 1);
  447.     modinit(L, modname);
  448.   }
  449.   lua_pushvalue(L, -1);
  450.   setfenv(L);
  451.   dooptions(L, loaded - 1);
  452.   return 0;
  453. }
  454. static int ll_seeall (lua_State *L) {
  455.   luaL_checktype(L, 1, LUA_TTABLE);
  456.   if (!lua_getmetatable(L, 1)) {
  457.     lua_createtable(L, 0, 1); /* create new metatable */
  458.     lua_pushvalue(L, -1);
  459.     lua_setmetatable(L, 1);
  460.   }
  461.   lua_pushvalue(L, LUA_GLOBALSINDEX);
  462.   lua_setfield(L, -2, "__index");  /* mt.__index = _G */
  463.   return 0;
  464. }
  465. /* }====================================================== */
  466. /* auxiliary mark (for internal use) */
  467. #define AUXMARK "1"
  468. static void setpath (lua_State *L, const char *fieldname, const char *envname,
  469.                                    const char *def) {
  470.   const char *path = getenv(envname);
  471.   if (path == NULL)  /* no environment variable? */
  472.     lua_pushstring(L, def);  /* use default */
  473.   else {
  474.     /* replace ";;" by ";AUXMARK;" and then AUXMARK by default path */
  475.     path = luaL_gsub(L, path, LUA_PATHSEP LUA_PATHSEP,
  476.                               LUA_PATHSEP AUXMARK LUA_PATHSEP);
  477.     luaL_gsub(L, path, AUXMARK, def);
  478.     lua_remove(L, -2);
  479.   }
  480.   setprogdir(L);
  481.   lua_setfield(L, -2, fieldname);
  482. }
  483. static const luaL_Reg pk_funcs[] = {
  484.   {"loadlib", ll_loadlib},
  485.   {"seeall", ll_seeall},
  486.   {NULL, NULL}
  487. };
  488. static const luaL_Reg ll_funcs[] = {
  489.   {"module", ll_module},
  490.   {"require", ll_require},
  491.   {NULL, NULL}
  492. };
  493. static const lua_CFunction loaders[] =
  494.   {loader_preload, loader_Lua, loader_C, loader_Croot, NULL};
  495. LUALIB_API int luaopen_package (lua_State *L) {
  496.   int i;
  497.   /* create new type _LOADLIB */
  498.   luaL_newmetatable(L, "_LOADLIB");
  499.   lua_pushcfunction(L, gctm);
  500.   lua_setfield(L, -2, "__gc");
  501.   /* create `package' table */
  502.   luaL_register(L, LUA_LOADLIBNAME, pk_funcs);
  503. #if defined(LUA_COMPAT_LOADLIB) 
  504.   lua_getfield(L, -1, "loadlib");
  505.   lua_setfield(L, LUA_GLOBALSINDEX, "loadlib");
  506. #endif
  507.   lua_pushvalue(L, -1);
  508.   lua_replace(L, LUA_ENVIRONINDEX);
  509.   /* create `loaders' table */
  510.   lua_createtable(L, 0, sizeof(loaders)/sizeof(loaders[0]) - 1);
  511.   /* fill it with pre-defined loaders */
  512.   for (i=0; loaders[i] != NULL; i++) {
  513.     lua_pushcfunction(L, loaders[i]);
  514.     lua_rawseti(L, -2, i+1);
  515.   }
  516.   lua_setfield(L, -2, "loaders");  /* put it in field `loaders' */
  517.   setpath(L, "path", LUA_PATH, LUA_PATH_DEFAULT);  /* set field `path' */
  518.   setpath(L, "cpath", LUA_CPATH, LUA_CPATH_DEFAULT); /* set field `cpath' */
  519.   /* store config information */
  520.   lua_pushstring(L, LUA_DIRSEP "n" LUA_PATHSEP "n" LUA_PATH_MARK "n"
  521.                     LUA_EXECDIR "n" LUA_IGMARK);
  522.   lua_setfield(L, -2, "config");
  523.   /* set field `loaded' */
  524.   luaL_findtable(L, LUA_REGISTRYINDEX, "_LOADED", 2);
  525.   lua_setfield(L, -2, "loaded");
  526.   /* set field `preload' */
  527.   lua_newtable(L);
  528.   lua_setfield(L, -2, "preload");
  529.   lua_pushvalue(L, LUA_GLOBALSINDEX);
  530.   luaL_register(L, NULL, ll_funcs);  /* open lib into global table */
  531.   lua_pop(L, 1);
  532.   return 1;  /* return 'package' table */
  533. }