aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--doc/ext_ffi_semantics.html2
-rw-r--r--doc/extensions.html2
-rw-r--r--doc/faq.html40
3 files changed, 34 insertions, 10 deletions
diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html
index 3444b8fb..5415787d 100644
--- a/doc/ext_ffi_semantics.html
+++ b/doc/ext_ffi_semantics.html
@@ -1219,7 +1219,7 @@ suboptimal performance, especially when used in inner loops:
1219<li>Table initializers.</li> 1219<li>Table initializers.</li>
1220<li>Initialization of nested <tt>struct</tt>/<tt>union</tt> types.</li> 1220<li>Initialization of nested <tt>struct</tt>/<tt>union</tt> types.</li>
1221<li>Non-default initialization of VLA/VLS or large C&nbsp;types 1221<li>Non-default initialization of VLA/VLS or large C&nbsp;types
1222(&gt; 128&nbsp;bytes or &gt; 16 array elements.</li> 1222(&gt; 128&nbsp;bytes or &gt; 16 array elements).</li>
1223<li>Bitfield initializations.</li> 1223<li>Bitfield initializations.</li>
1224<li>Pointer differences for element sizes that are not a power of 1224<li>Pointer differences for element sizes that are not a power of
1225two.</li> 1225two.</li>
diff --git a/doc/extensions.html b/doc/extensions.html
index cf57e0e8..68193187 100644
--- a/doc/extensions.html
+++ b/doc/extensions.html
@@ -408,7 +408,7 @@ the toolchain used to compile LuaJIT:
408</tr> 408</tr>
409<tr class="even"> 409<tr class="even">
410<td class="excplatform">Windows/x64</td> 410<td class="excplatform">Windows/x64</td>
411<td class="exccompiler">MSVC or WinSDK</td> 411<td class="exccompiler">MSVC</td>
412<td class="excinterop"><b style="color: #00a000;">Full</b></td> 412<td class="excinterop"><b style="color: #00a000;">Full</b></td>
413</tr> 413</tr>
414<tr class="odd"> 414<tr class="odd">
diff --git a/doc/faq.html b/doc/faq.html
index 31d91e2b..5c4ce533 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -57,7 +57,7 @@ dd { margin-left: 1.5em; }
57</li></ul> 57</li></ul>
58</div> 58</div>
59<div id="main"> 59<div id="main">
60<dl> 60<dl id="info">
61<dt>Q: Where can I learn more about LuaJIT and Lua?</dt> 61<dt>Q: Where can I learn more about LuaJIT and Lua?</dt>
62<dd> 62<dd>
63<ul style="padding: 0;"> 63<ul style="padding: 0;">
@@ -77,7 +77,7 @@ has information about diverse topics.</li>
77</ul> 77</ul>
78</dl> 78</dl>
79 79
80<dl> 80<dl id="tech">
81<dt>Q: Where can I learn more about the compiler technology used by LuaJIT?</dt> 81<dt>Q: Where can I learn more about the compiler technology used by LuaJIT?</dt>
82<dd> 82<dd>
83I'm planning to write more documentation about the internals of LuaJIT. 83I'm planning to write more documentation about the internals of LuaJIT.
@@ -93,7 +93,7 @@ And, you know, reading the source is of course the only way to enlightenment. :-
93</dd> 93</dd>
94</dl> 94</dl>
95 95
96<dl> 96<dl id="arg">
97<dt>Q: Why do I get this error: "attempt to index global 'arg' (a nil value)"?<br> 97<dt>Q: Why do I get this error: "attempt to index global 'arg' (a nil value)"?<br>
98Q: My vararg functions fail after switching to LuaJIT!</dt> 98Q: My vararg functions fail after switching to LuaJIT!</dt>
99<dd>LuaJIT is compatible to the Lua 5.1 language standard. It doesn't 99<dd>LuaJIT is compatible to the Lua 5.1 language standard. It doesn't
@@ -103,7 +103,7 @@ functions from Lua 5.0.<br>Please convert your code to the
103vararg syntax</a>.</dd> 103vararg syntax</a>.</dd>
104</dl> 104</dl>
105 105
106<dl> 106<dl id="x87">
107<dt>Q: Why do I get this error: "bad FPU precision"?<br> 107<dt>Q: Why do I get this error: "bad FPU precision"?<br>
108<dt>Q: I get weird behavior after initializing Direct3D.<br> 108<dt>Q: I get weird behavior after initializing Direct3D.<br>
109<dt>Q: Some FPU operations crash after I load a Delphi DLL.<br> 109<dt>Q: Some FPU operations crash after I load a Delphi DLL.<br>
@@ -125,7 +125,7 @@ Please check the Delphi docs for the Set8087CW method.
125 125
126</dl> 126</dl>
127 127
128<dl> 128<dl id="ctrlc">
129<dt>Q: Sometimes Ctrl-C fails to stop my Lua program. Why?</dt> 129<dt>Q: Sometimes Ctrl-C fails to stop my Lua program. Why?</dt>
130<dd>The interrupt signal handler sets a Lua debug hook. But this is 130<dd>The interrupt signal handler sets a Lua debug hook. But this is
131currently ignored by compiled code (this will eventually be fixed). If 131currently ignored by compiled code (this will eventually be fixed). If
@@ -136,7 +136,31 @@ twice to get stop your program. That's similar to when it's stuck
136running inside a C function under the Lua interpreter.</dd> 136running inside a C function under the Lua interpreter.</dd>
137</dl> 137</dl>
138 138
139<dl> 139<dl id="sandbox">
140<dt>Q: Can Lua code be safely sandboxed?</dt>
141<dd>
142Maybe for an extremly restricted subset of Lua and if you relentlessly
143scrutinize every single interface function you offer to the untrusted code.<br>
144
145Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks),
146it's very hard to get this right even for the Lua core libraries. Of course,
147you'll need to inspect any extension library, too. And there are libraries
148that are inherently unsafe, e.g. the <a href="ext_ffi.html">FFI library</a>.<br>
149
150Relatedly, <b>loading untrusted bytecode is not safe!</b> It's trivial
151to crash the Lua or LuaJIT VM with maliciously crafted bytecode. This is
152well known and there's no bytecode verification on purpose, so please
153don't report a bug about it. Check the <tt>mode</tt> parameter for the
154<tt>load*()</tt> functions to disable loading of bytecode.<br>
155
156In general, the only promising approach is to sandbox Lua code at the
157process level and not the VM level.<br>
158
159More reading material at the <a href="http://lua-users.org/wiki/SandBoxes"><span class="ext">&raquo;</span>&nbsp;Lua Wiki</a> and <a href="https://en.wikipedia.org/wiki/Sandbox_(computer_security)">Wikipedia</a>.
160</dd>
161</dl>
162
163<dl id="patches">
140<dt>Q: Why doesn't my favorite power-patch for Lua apply against LuaJIT?</dt> 164<dt>Q: Why doesn't my favorite power-patch for Lua apply against LuaJIT?</dt>
141<dd>Because it's a completely redesigned VM and has very little code 165<dd>Because it's a completely redesigned VM and has very little code
142in common with Lua anymore. Also, if the patch introduces changes to 166in common with Lua anymore. Also, if the patch introduces changes to
@@ -147,7 +171,7 @@ can use source transformations or use wrapper or proxy functions.
147The compiler will happily optimize away such indirections.</dd> 171The compiler will happily optimize away such indirections.</dd>
148</dl> 172</dl>
149 173
150<dl> 174<dl id="arch">
151<dt>Q: Lua runs everywhere. Why doesn't LuaJIT support my CPU?</dt> 175<dt>Q: Lua runs everywhere. Why doesn't LuaJIT support my CPU?</dt>
152<dd>Because it's a compiler &mdash; it needs to generate native 176<dd>Because it's a compiler &mdash; it needs to generate native
153machine code. This means the code generator must be ported to each 177machine code. This means the code generator must be ported to each
@@ -158,7 +182,7 @@ architectures. Other architectures will follow based on sufficient user
158demand and/or sponsoring.</dd> 182demand and/or sponsoring.</dd>
159</dl> 183</dl>
160 184
161<dl> 185<dl id="when">
162<dt>Q: When will feature X be added? When will the next version be released?</dt> 186<dt>Q: When will feature X be added? When will the next version be released?</dt>
163<dd>When it's ready.<br> 187<dd>When it's ready.<br>
164C'mon, it's open source &mdash; I'm doing it on my own time and you're 188C'mon, it's open source &mdash; I'm doing it on my own time and you're