Pretendo lançar o serviço online de compilação LuaTeX.
Instalei o LuaTeX usando TexLive 2015 no CentOS 7. Por questões de segurança, quero restringir a abertura de arquivos. Portanto, eu configurei openin_any=p
. Mas também restringe a abertura de arquivos de modelo instalados em texmf-dist
. Outros compiladores podem ler arquivos de modelo.
Tentei compilar este arquivo:
\documentclass{ltjsarticle}
\usepackage{graphicx}
\title{title}
\author{auth}
\date{\today}
\begin{document}
\maketitle
\section{section}
This is sample.
\end{document}
Compilei este arquivo lualatex sample.tex
e recebi a seguinte mensagem:
This is LuaTeX, Version beta-0.80.0 (TeX Live 2015) (rev 5238)
restricted \write18 enabled.
(./sample.tex
LaTeX2e <2016/02/01>
Babel <3.9o> and hyphenation patterns for 1 language(s) loaded.
lualatex: Not reading from /usr/local/texlive/2015/texmf-dist/tex/luatex/luatexja/ltjsarticle.cls (openin_any = p).
! LaTeX Error: File `ltjsarticle.cls' not found.
Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: cls)
Como posso consertar isso?
Responder1
Sobre o TeX como serviço online: [http://cseweb.ucsd.edu/~hovav/dist/texhack.pdf
Sobre Lua: os formatos podem redefinir Lua como quiserem, então
local myopen = function(...) print("ERROR: open is not permitted") return false end
local _std = {}
_std.oldopen = io.open
io.open = myopen
for k,v in pairs(_std) do print(k,v) end
assert(io.open("foo"), 'Error on io.open' )
io.open é seguro (até que _std esteja oculto)
Se alguém não se importa com io.open:
local myopen = function(...) print("ERROR: open is not permitted") return false end
io.open = myopen
assert(io.open("foo"), 'Error on io.open' )