hustOJ 添加 golang 支持
阿新 • • 發佈:2018-09-25
清華大學 cor apt compile put list 1.7 bbb 監控
hustOJ 支持Go1.7.1
是否為docker環境不重要,此處所有內容均為docker中執行,普通主機手動安裝則更加如此
建議在docker中執行,因為OJ為嚴控惡意權限,judge_client做了很多特殊指令
hustOJ 雖然有部分代碼涉及到了golang
但,實際還無法正常執行。
本次支持的是go 1.7.1
關鍵改動都在core組件裏面的judge_client
系統修改
- 配置apt使用清華大學鏡像下載golang
文件 /etc/apt/sources.list
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ jessie main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ jessie main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ jessie-updates main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ jessie-updates main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ jessie-backports main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ jessie-backports main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian-security jessie/updates main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security jessie/updates main contrib non-free
安裝 golang
apt-get install golang-1.7.1
改動點:
- okcalls64.h
在數組裏面增加 186 信號,baidu說,此信號實際對應值是:186 gettid
如果不增加,golang編譯的程序會被judge_client fork 出的parent監控並停止。
int LANG_GOV[256]={0,1,9,11,13,14,56,59,131,158,186,202,204,228,231,0};
judge_client.cc
在 copy_js_runtime
函數後,新增函數 copy_go_runtime
void copy_go_runtime(char *work_dir) { char envbuff[1024] = {0}; copy_shell_runtime(work_dir); execute_cmd("/bin/mkdir %s/usr", work_dir); execute_cmd("/bin/mkdir %s/usr/lib", work_dir); execute_cmd("/bin/mkdir %s/usr/bin", work_dir); // execute_cmd("/bin/cp /usr/lib/go-1.7/bin/go %s/usr/bin/", work_dir); putenv((char *)"GOROOT=/usr/lib/go-1.7"); sprintf(envbuff, "GOPATH=%s", work_dir); putenv(envbuff); }
- 修改
int compile(int lang, char *work_dir)
函數
// 此處為方便,直接寫死了go-1.7的絕對位置
// 主要judge_client在執行真正的程序前,會先執行很多環境準備
// 甚至包括chroot指令
// 最終導致環境混亂
const char *CP_GO[] = { "/usr/lib/go-1.7/bin/go", "build", "-o", "Main", "Main.go", NULL };
- 修改
main
函數
int main(int argc, char **argv) { // init_parameters // init mysql // get_solution_info // compile // 根據邏輯相關部分新增如下函數 // copy_go_runtime
- make it
cd /home/judge/src/core/judge_client/
make
- 單獨測試 golang 程序
可以用go源碼提交一份其它語言的程序到題目中,此程序會被存儲到數據庫,
並分配一個solution_id,假設其為1008.
登錄數據庫,修改其語言為go
mysql -udebian-sys-maint -paaabbb
> use jol;
> update solution set language=17 where solution_id = 1008;
> commit;
以上sql為手寫,假裝正確
然後手動執行 judge_client
/home/judge/src/core/judge_client/judge_client 1008 1 /home/judge/ debug
如果,最後輸出 result=4
則代表實際結果正確了。
hustOJ 添加 golang 支持