sandbox.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2016, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file sandbox.c
  8. * \brief Code to enable sandboxing.
  9. **/
  10. #include "orconfig.h"
  11. #ifndef _LARGEFILE64_SOURCE
  12. /**
  13. * Temporarily required for O_LARGEFILE flag. Needs to be removed
  14. * with the libevent fix.
  15. */
  16. #define _LARGEFILE64_SOURCE
  17. #endif
  18. /** Malloc mprotect limit in bytes. */
  19. #define MALLOC_MP_LIM 1048576
  20. #include <stdio.h>
  21. #include <string.h>
  22. #include <stdlib.h>
  23. #include "sandbox.h"
  24. #include "container.h"
  25. #include "torlog.h"
  26. #include "torint.h"
  27. #include "util.h"
  28. #include "tor_queue.h"
  29. #include "ht.h"
  30. #define DEBUGGING_CLOSE
  31. #if defined(USE_LIBSECCOMP)
  32. #include <sys/mman.h>
  33. #include <sys/syscall.h>
  34. #include <sys/types.h>
  35. #include <sys/stat.h>
  36. #include <sys/epoll.h>
  37. #include <sys/prctl.h>
  38. #include <linux/futex.h>
  39. #include <sys/file.h>
  40. #include <stdarg.h>
  41. #include <seccomp.h>
  42. #include <signal.h>
  43. #include <unistd.h>
  44. #include <fcntl.h>
  45. #include <time.h>
  46. #include <poll.h>
  47. #ifdef HAVE_LINUX_NETFILTER_IPV4_H
  48. #include <linux/netfilter_ipv4.h>
  49. #endif
  50. #ifdef HAVE_LINUX_IF_H
  51. #include <linux/if.h>
  52. #endif
  53. #ifdef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H
  54. #include <linux/netfilter_ipv6/ip6_tables.h>
  55. #endif
  56. #if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE) && \
  57. defined(HAVE_BACKTRACE_SYMBOLS_FD) && defined(HAVE_SIGACTION)
  58. #define USE_BACKTRACE
  59. #define EXPOSE_CLEAN_BACKTRACE
  60. #include "backtrace.h"
  61. #endif
  62. #ifdef USE_BACKTRACE
  63. #include <execinfo.h>
  64. #endif
  65. /**
  66. * Linux 32 bit definitions
  67. */
  68. #if defined(__i386__)
  69. #define REG_SYSCALL REG_EAX
  70. #define M_SYSCALL gregs[REG_SYSCALL]
  71. /**
  72. * Linux 64 bit definitions
  73. */
  74. #elif defined(__x86_64__)
  75. #define REG_SYSCALL REG_RAX
  76. #define M_SYSCALL gregs[REG_SYSCALL]
  77. #elif defined(__arm__)
  78. #define M_SYSCALL arm_r7
  79. #endif
  80. /**Determines if at least one sandbox is active.*/
  81. static int sandbox_active = 0;
  82. /** Holds the parameter list configuration for the sandbox.*/
  83. static sandbox_cfg_t *filter_dynamic = NULL;
  84. #undef SCMP_CMP
  85. #define SCMP_CMP(a,b,c) ((struct scmp_arg_cmp){(a),(b),(c),0})
  86. #define SCMP_CMP_STR(a,b,c) \
  87. ((struct scmp_arg_cmp) {(a),(b),(intptr_t)(void*)(c),0})
  88. #define SCMP_CMP4(a,b,c,d) ((struct scmp_arg_cmp){(a),(b),(c),(d)})
  89. /* We use a wrapper here because these masked comparisons seem to be pretty
  90. * verbose. Also, it's important to cast to scmp_datum_t before negating the
  91. * mask, since otherwise the negation might get applied to a 32 bit value, and
  92. * the high bits of the value might get masked out improperly. */
  93. #define SCMP_CMP_MASKED(a,b,c) \
  94. SCMP_CMP4((a), SCMP_CMP_MASKED_EQ, ~(scmp_datum_t)(b), (c))
  95. /** Variable used for storing all syscall numbers that will be allowed with the
  96. * stage 1 general Tor sandbox.
  97. */
  98. static int filter_nopar_gen[] = {
  99. SCMP_SYS(access),
  100. SCMP_SYS(brk),
  101. SCMP_SYS(clock_gettime),
  102. SCMP_SYS(close),
  103. SCMP_SYS(clone),
  104. SCMP_SYS(epoll_create),
  105. SCMP_SYS(epoll_wait),
  106. #ifdef HAVE_EVENTFD
  107. SCMP_SYS(eventfd2),
  108. #endif
  109. #ifdef HAVE_PIPE2
  110. SCMP_SYS(pipe2),
  111. #endif
  112. #ifdef HAVE_PIPE
  113. SCMP_SYS(pipe),
  114. #endif
  115. SCMP_SYS(fcntl),
  116. SCMP_SYS(fstat),
  117. #ifdef __NR_fstat64
  118. SCMP_SYS(fstat64),
  119. #endif
  120. SCMP_SYS(futex),
  121. SCMP_SYS(getdents64),
  122. SCMP_SYS(getegid),
  123. #ifdef __NR_getegid32
  124. SCMP_SYS(getegid32),
  125. #endif
  126. SCMP_SYS(geteuid),
  127. #ifdef __NR_geteuid32
  128. SCMP_SYS(geteuid32),
  129. #endif
  130. SCMP_SYS(getgid),
  131. #ifdef __NR_getgid32
  132. SCMP_SYS(getgid32),
  133. #endif
  134. #ifdef __NR_getrlimit
  135. SCMP_SYS(getrlimit),
  136. #endif
  137. SCMP_SYS(gettimeofday),
  138. SCMP_SYS(gettid),
  139. SCMP_SYS(getuid),
  140. #ifdef __NR_getuid32
  141. SCMP_SYS(getuid32),
  142. #endif
  143. SCMP_SYS(lseek),
  144. #ifdef __NR__llseek
  145. SCMP_SYS(_llseek),
  146. #endif
  147. SCMP_SYS(mkdir),
  148. SCMP_SYS(mlockall),
  149. #ifdef __NR_mmap
  150. /* XXXX restrict this in the same ways as mmap2 */
  151. SCMP_SYS(mmap),
  152. #endif
  153. SCMP_SYS(munmap),
  154. #ifdef __NR_prlimit
  155. SCMP_SYS(prlimit),
  156. #endif
  157. #ifdef __NR_prlimit64
  158. SCMP_SYS(prlimit64),
  159. #endif
  160. SCMP_SYS(read),
  161. SCMP_SYS(rt_sigreturn),
  162. SCMP_SYS(sched_getaffinity),
  163. SCMP_SYS(sendmsg),
  164. SCMP_SYS(set_robust_list),
  165. #ifdef __NR_setrlimit
  166. SCMP_SYS(setrlimit),
  167. #endif
  168. #ifdef __NR_sigreturn
  169. SCMP_SYS(sigreturn),
  170. #endif
  171. SCMP_SYS(stat),
  172. SCMP_SYS(uname),
  173. SCMP_SYS(wait4),
  174. SCMP_SYS(write),
  175. SCMP_SYS(writev),
  176. SCMP_SYS(exit_group),
  177. SCMP_SYS(exit),
  178. SCMP_SYS(madvise),
  179. #ifdef __NR_stat64
  180. // getaddrinfo uses this..
  181. SCMP_SYS(stat64),
  182. #endif
  183. #ifdef __NR_getrandom
  184. SCMP_SYS(getrandom),
  185. #endif
  186. /*
  187. * These socket syscalls are not required on x86_64 and not supported with
  188. * some libseccomp versions (eg: 1.0.1)
  189. */
  190. #if defined(__i386)
  191. SCMP_SYS(recv),
  192. SCMP_SYS(send),
  193. #endif
  194. // socket syscalls
  195. SCMP_SYS(bind),
  196. SCMP_SYS(listen),
  197. SCMP_SYS(connect),
  198. SCMP_SYS(getsockname),
  199. SCMP_SYS(recvmsg),
  200. SCMP_SYS(recvfrom),
  201. SCMP_SYS(sendto),
  202. SCMP_SYS(unlink)
  203. };
  204. /* These macros help avoid the error where the number of filters we add on a
  205. * single rule don't match the arg_cnt param. */
  206. #define seccomp_rule_add_0(ctx,act,call) \
  207. seccomp_rule_add((ctx),(act),(call),0)
  208. #define seccomp_rule_add_1(ctx,act,call,f1) \
  209. seccomp_rule_add((ctx),(act),(call),1,(f1))
  210. #define seccomp_rule_add_2(ctx,act,call,f1,f2) \
  211. seccomp_rule_add((ctx),(act),(call),2,(f1),(f2))
  212. #define seccomp_rule_add_3(ctx,act,call,f1,f2,f3) \
  213. seccomp_rule_add((ctx),(act),(call),3,(f1),(f2),(f3))
  214. #define seccomp_rule_add_4(ctx,act,call,f1,f2,f3,f4) \
  215. seccomp_rule_add((ctx),(act),(call),4,(f1),(f2),(f3),(f4))
  216. /**
  217. * Function responsible for setting up the rt_sigaction syscall for
  218. * the seccomp filter sandbox.
  219. */
  220. static int
  221. sb_rt_sigaction(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  222. {
  223. unsigned i;
  224. int rc;
  225. int param[] = { SIGINT, SIGTERM, SIGPIPE, SIGUSR1, SIGUSR2, SIGHUP, SIGCHLD,
  226. #ifdef SIGXFSZ
  227. SIGXFSZ
  228. #endif
  229. };
  230. (void) filter;
  231. for (i = 0; i < ARRAY_LENGTH(param); i++) {
  232. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rt_sigaction),
  233. SCMP_CMP(0, SCMP_CMP_EQ, param[i]));
  234. if (rc)
  235. break;
  236. }
  237. return rc;
  238. }
  239. #if 0
  240. /**
  241. * Function responsible for setting up the execve syscall for
  242. * the seccomp filter sandbox.
  243. */
  244. static int
  245. sb_execve(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  246. {
  247. int rc;
  248. sandbox_cfg_t *elem = NULL;
  249. // for each dynamic parameter filters
  250. for (elem = filter; elem != NULL; elem = elem->next) {
  251. smp_param_t *param = elem->param;
  252. if (param != NULL && param->prot == 1 && param->syscall
  253. == SCMP_SYS(execve)) {
  254. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(execve),
  255. SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value));
  256. if (rc != 0) {
  257. log_err(LD_BUG,"(Sandbox) failed to add execve syscall, received "
  258. "libseccomp error %d", rc);
  259. return rc;
  260. }
  261. }
  262. }
  263. return 0;
  264. }
  265. #endif
  266. /**
  267. * Function responsible for setting up the time syscall for
  268. * the seccomp filter sandbox.
  269. */
  270. static int
  271. sb_time(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  272. {
  273. (void) filter;
  274. #ifdef __NR_time
  275. return seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(time),
  276. SCMP_CMP(0, SCMP_CMP_EQ, 0));
  277. #else
  278. return 0;
  279. #endif
  280. }
  281. /**
  282. * Function responsible for setting up the accept4 syscall for
  283. * the seccomp filter sandbox.
  284. */
  285. static int
  286. sb_accept4(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  287. {
  288. int rc = 0;
  289. (void)filter;
  290. #ifdef __i386__
  291. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketcall),
  292. SCMP_CMP(0, SCMP_CMP_EQ, 18));
  293. if (rc) {
  294. return rc;
  295. }
  296. #endif
  297. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(accept4),
  298. SCMP_CMP_MASKED(3, SOCK_CLOEXEC|SOCK_NONBLOCK, 0));
  299. if (rc) {
  300. return rc;
  301. }
  302. return 0;
  303. }
  304. #ifdef __NR_mmap2
  305. /**
  306. * Function responsible for setting up the mmap2 syscall for
  307. * the seccomp filter sandbox.
  308. */
  309. static int
  310. sb_mmap2(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  311. {
  312. int rc = 0;
  313. (void)filter;
  314. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2),
  315. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ),
  316. SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE));
  317. if (rc) {
  318. return rc;
  319. }
  320. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2),
  321. SCMP_CMP(2, SCMP_CMP_EQ, PROT_NONE),
  322. SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE));
  323. if (rc) {
  324. return rc;
  325. }
  326. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2),
  327. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE),
  328. SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_ANONYMOUS));
  329. if (rc) {
  330. return rc;
  331. }
  332. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2),
  333. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE),
  334. SCMP_CMP(3, SCMP_CMP_EQ,MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK));
  335. if (rc) {
  336. return rc;
  337. }
  338. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2),
  339. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE),
  340. SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE));
  341. if (rc) {
  342. return rc;
  343. }
  344. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2),
  345. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE),
  346. SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS));
  347. if (rc) {
  348. return rc;
  349. }
  350. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2),
  351. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_EXEC),
  352. SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_DENYWRITE));
  353. if (rc) {
  354. return rc;
  355. }
  356. return 0;
  357. }
  358. #endif
  359. /**
  360. * Function responsible for setting up the open syscall for
  361. * the seccomp filter sandbox.
  362. */
  363. static int
  364. sb_open(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  365. {
  366. int rc;
  367. sandbox_cfg_t *elem = NULL;
  368. // for each dynamic parameter filters
  369. for (elem = filter; elem != NULL; elem = elem->next) {
  370. smp_param_t *param = elem->param;
  371. if (param != NULL && param->prot == 1 && param->syscall
  372. == SCMP_SYS(open)) {
  373. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(open),
  374. SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value));
  375. if (rc != 0) {
  376. log_err(LD_BUG,"(Sandbox) failed to add open syscall, received "
  377. "libseccomp error %d", rc);
  378. return rc;
  379. }
  380. }
  381. }
  382. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ERRNO(EACCES), SCMP_SYS(open),
  383. SCMP_CMP_MASKED(1, O_CLOEXEC|O_NONBLOCK|O_NOCTTY|O_NOFOLLOW,
  384. O_RDONLY));
  385. if (rc != 0) {
  386. log_err(LD_BUG,"(Sandbox) failed to add open syscall, received libseccomp "
  387. "error %d", rc);
  388. return rc;
  389. }
  390. return 0;
  391. }
  392. static int
  393. sb_chmod(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  394. {
  395. int rc;
  396. sandbox_cfg_t *elem = NULL;
  397. // for each dynamic parameter filters
  398. for (elem = filter; elem != NULL; elem = elem->next) {
  399. smp_param_t *param = elem->param;
  400. if (param != NULL && param->prot == 1 && param->syscall
  401. == SCMP_SYS(chmod)) {
  402. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(chmod),
  403. SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value));
  404. if (rc != 0) {
  405. log_err(LD_BUG,"(Sandbox) failed to add open syscall, received "
  406. "libseccomp error %d", rc);
  407. return rc;
  408. }
  409. }
  410. }
  411. return 0;
  412. }
  413. static int
  414. sb_chown(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  415. {
  416. int rc;
  417. sandbox_cfg_t *elem = NULL;
  418. // for each dynamic parameter filters
  419. for (elem = filter; elem != NULL; elem = elem->next) {
  420. smp_param_t *param = elem->param;
  421. if (param != NULL && param->prot == 1 && param->syscall
  422. == SCMP_SYS(chown)) {
  423. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(chown),
  424. SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value));
  425. if (rc != 0) {
  426. log_err(LD_BUG,"(Sandbox) failed to add open syscall, received "
  427. "libseccomp error %d", rc);
  428. return rc;
  429. }
  430. }
  431. }
  432. return 0;
  433. }
  434. static int
  435. sb__sysctl(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  436. {
  437. int rc;
  438. (void) filter;
  439. (void) ctx;
  440. rc = seccomp_rule_add_0(ctx, SCMP_ACT_ERRNO(EPERM), SCMP_SYS(_sysctl));
  441. if (rc != 0) {
  442. log_err(LD_BUG,"(Sandbox) failed to add _sysctl syscall, "
  443. "received libseccomp error %d", rc);
  444. return rc;
  445. }
  446. return 0;
  447. }
  448. /**
  449. * Function responsible for setting up the rename syscall for
  450. * the seccomp filter sandbox.
  451. */
  452. static int
  453. sb_rename(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  454. {
  455. int rc;
  456. sandbox_cfg_t *elem = NULL;
  457. // for each dynamic parameter filters
  458. for (elem = filter; elem != NULL; elem = elem->next) {
  459. smp_param_t *param = elem->param;
  460. if (param != NULL && param->prot == 1 &&
  461. param->syscall == SCMP_SYS(rename)) {
  462. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rename),
  463. SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value),
  464. SCMP_CMP_STR(1, SCMP_CMP_EQ, param->value2));
  465. if (rc != 0) {
  466. log_err(LD_BUG,"(Sandbox) failed to add rename syscall, received "
  467. "libseccomp error %d", rc);
  468. return rc;
  469. }
  470. }
  471. }
  472. return 0;
  473. }
  474. /**
  475. * Function responsible for setting up the openat syscall for
  476. * the seccomp filter sandbox.
  477. */
  478. static int
  479. sb_openat(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  480. {
  481. int rc;
  482. sandbox_cfg_t *elem = NULL;
  483. // for each dynamic parameter filters
  484. for (elem = filter; elem != NULL; elem = elem->next) {
  485. smp_param_t *param = elem->param;
  486. if (param != NULL && param->prot == 1 && param->syscall
  487. == SCMP_SYS(openat)) {
  488. rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(openat),
  489. SCMP_CMP(0, SCMP_CMP_EQ, AT_FDCWD),
  490. SCMP_CMP_STR(1, SCMP_CMP_EQ, param->value),
  491. SCMP_CMP(2, SCMP_CMP_EQ, O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|
  492. O_CLOEXEC));
  493. if (rc != 0) {
  494. log_err(LD_BUG,"(Sandbox) failed to add openat syscall, received "
  495. "libseccomp error %d", rc);
  496. return rc;
  497. }
  498. }
  499. }
  500. return 0;
  501. }
  502. /**
  503. * Function responsible for setting up the socket syscall for
  504. * the seccomp filter sandbox.
  505. */
  506. static int
  507. sb_socket(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  508. {
  509. int rc = 0;
  510. int i;
  511. (void) filter;
  512. #ifdef __i386__
  513. rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket));
  514. if (rc)
  515. return rc;
  516. #endif
  517. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket),
  518. SCMP_CMP(0, SCMP_CMP_EQ, PF_FILE),
  519. SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_STREAM));
  520. if (rc)
  521. return rc;
  522. for (i = 0; i < 2; ++i) {
  523. const int pf = i ? PF_INET : PF_INET6;
  524. rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket),
  525. SCMP_CMP(0, SCMP_CMP_EQ, pf),
  526. SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_STREAM),
  527. SCMP_CMP(2, SCMP_CMP_EQ, IPPROTO_TCP));
  528. if (rc)
  529. return rc;
  530. rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket),
  531. SCMP_CMP(0, SCMP_CMP_EQ, pf),
  532. SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_DGRAM),
  533. SCMP_CMP(2, SCMP_CMP_EQ, IPPROTO_IP));
  534. if (rc)
  535. return rc;
  536. }
  537. rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket),
  538. SCMP_CMP(0, SCMP_CMP_EQ, PF_UNIX),
  539. SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_STREAM),
  540. SCMP_CMP(2, SCMP_CMP_EQ, 0));
  541. if (rc)
  542. return rc;
  543. rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket),
  544. SCMP_CMP(0, SCMP_CMP_EQ, PF_UNIX),
  545. SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_DGRAM),
  546. SCMP_CMP(2, SCMP_CMP_EQ, 0));
  547. if (rc)
  548. return rc;
  549. rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket),
  550. SCMP_CMP(0, SCMP_CMP_EQ, PF_NETLINK),
  551. SCMP_CMP(1, SCMP_CMP_EQ, SOCK_RAW),
  552. SCMP_CMP(2, SCMP_CMP_EQ, 0));
  553. if (rc)
  554. return rc;
  555. return 0;
  556. }
  557. /**
  558. * Function responsible for setting up the socketpair syscall for
  559. * the seccomp filter sandbox.
  560. */
  561. static int
  562. sb_socketpair(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  563. {
  564. int rc = 0;
  565. (void) filter;
  566. #ifdef __i386__
  567. rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketpair));
  568. if (rc)
  569. return rc;
  570. #endif
  571. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketpair),
  572. SCMP_CMP(0, SCMP_CMP_EQ, PF_FILE),
  573. SCMP_CMP(1, SCMP_CMP_EQ, SOCK_STREAM|SOCK_CLOEXEC));
  574. if (rc)
  575. return rc;
  576. return 0;
  577. }
  578. /**
  579. * Function responsible for setting up the setsockopt syscall for
  580. * the seccomp filter sandbox.
  581. */
  582. static int
  583. sb_setsockopt(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  584. {
  585. int rc = 0;
  586. (void) filter;
  587. #ifdef __i386__
  588. rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt));
  589. if (rc)
  590. return rc;
  591. #endif
  592. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt),
  593. SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET),
  594. SCMP_CMP(2, SCMP_CMP_EQ, SO_REUSEADDR));
  595. if (rc)
  596. return rc;
  597. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt),
  598. SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET),
  599. SCMP_CMP(2, SCMP_CMP_EQ, SO_SNDBUF));
  600. if (rc)
  601. return rc;
  602. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt),
  603. SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET),
  604. SCMP_CMP(2, SCMP_CMP_EQ, SO_RCVBUF));
  605. if (rc)
  606. return rc;
  607. #ifdef IP_TRANSPARENT
  608. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt),
  609. SCMP_CMP(1, SCMP_CMP_EQ, SOL_IP),
  610. SCMP_CMP(2, SCMP_CMP_EQ, IP_TRANSPARENT));
  611. if (rc)
  612. return rc;
  613. #endif
  614. return 0;
  615. }
  616. /**
  617. * Function responsible for setting up the getsockopt syscall for
  618. * the seccomp filter sandbox.
  619. */
  620. static int
  621. sb_getsockopt(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  622. {
  623. int rc = 0;
  624. (void) filter;
  625. #ifdef __i386__
  626. rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt));
  627. if (rc)
  628. return rc;
  629. #endif
  630. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt),
  631. SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET),
  632. SCMP_CMP(2, SCMP_CMP_EQ, SO_ERROR));
  633. if (rc)
  634. return rc;
  635. #ifdef HAVE_LINUX_NETFILTER_IPV4_H
  636. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt),
  637. SCMP_CMP(1, SCMP_CMP_EQ, SOL_IP),
  638. SCMP_CMP(2, SCMP_CMP_EQ, SO_ORIGINAL_DST));
  639. if (rc)
  640. return rc;
  641. #endif
  642. #ifdef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H
  643. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt),
  644. SCMP_CMP(1, SCMP_CMP_EQ, SOL_IPV6),
  645. SCMP_CMP(2, SCMP_CMP_EQ, IP6T_SO_ORIGINAL_DST));
  646. if (rc)
  647. return rc;
  648. #endif
  649. return 0;
  650. }
  651. #ifdef __NR_fcntl64
  652. /**
  653. * Function responsible for setting up the fcntl64 syscall for
  654. * the seccomp filter sandbox.
  655. */
  656. static int
  657. sb_fcntl64(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  658. {
  659. int rc = 0;
  660. (void) filter;
  661. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64),
  662. SCMP_CMP(1, SCMP_CMP_EQ, F_GETFL));
  663. if (rc)
  664. return rc;
  665. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64),
  666. SCMP_CMP(1, SCMP_CMP_EQ, F_SETFL),
  667. SCMP_CMP(2, SCMP_CMP_EQ, O_RDWR|O_NONBLOCK));
  668. if (rc)
  669. return rc;
  670. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64),
  671. SCMP_CMP(1, SCMP_CMP_EQ, F_GETFD));
  672. if (rc)
  673. return rc;
  674. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64),
  675. SCMP_CMP(1, SCMP_CMP_EQ, F_SETFD),
  676. SCMP_CMP(2, SCMP_CMP_EQ, FD_CLOEXEC));
  677. if (rc)
  678. return rc;
  679. return 0;
  680. }
  681. #endif
  682. /**
  683. * Function responsible for setting up the epoll_ctl syscall for
  684. * the seccomp filter sandbox.
  685. *
  686. * Note: basically allows everything but will keep for now..
  687. */
  688. static int
  689. sb_epoll_ctl(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  690. {
  691. int rc = 0;
  692. (void) filter;
  693. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(epoll_ctl),
  694. SCMP_CMP(1, SCMP_CMP_EQ, EPOLL_CTL_ADD));
  695. if (rc)
  696. return rc;
  697. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(epoll_ctl),
  698. SCMP_CMP(1, SCMP_CMP_EQ, EPOLL_CTL_MOD));
  699. if (rc)
  700. return rc;
  701. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(epoll_ctl),
  702. SCMP_CMP(1, SCMP_CMP_EQ, EPOLL_CTL_DEL));
  703. if (rc)
  704. return rc;
  705. return 0;
  706. }
  707. /**
  708. * Function responsible for setting up the fcntl64 syscall for
  709. * the seccomp filter sandbox.
  710. *
  711. * NOTE: if multiple filters need to be added, the PR_SECCOMP parameter needs
  712. * to be whitelisted in this function.
  713. */
  714. static int
  715. sb_prctl(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  716. {
  717. int rc = 0;
  718. (void) filter;
  719. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(prctl),
  720. SCMP_CMP(0, SCMP_CMP_EQ, PR_SET_DUMPABLE));
  721. if (rc)
  722. return rc;
  723. return 0;
  724. }
  725. /**
  726. * Function responsible for setting up the fcntl64 syscall for
  727. * the seccomp filter sandbox.
  728. *
  729. * NOTE: does not NEED to be here.. currently only occurs before filter; will
  730. * keep just in case for the future.
  731. */
  732. static int
  733. sb_mprotect(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  734. {
  735. int rc = 0;
  736. (void) filter;
  737. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect),
  738. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ));
  739. if (rc)
  740. return rc;
  741. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect),
  742. SCMP_CMP(2, SCMP_CMP_EQ, PROT_NONE));
  743. if (rc)
  744. return rc;
  745. return 0;
  746. }
  747. /**
  748. * Function responsible for setting up the rt_sigprocmask syscall for
  749. * the seccomp filter sandbox.
  750. */
  751. static int
  752. sb_rt_sigprocmask(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  753. {
  754. int rc = 0;
  755. (void) filter;
  756. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rt_sigprocmask),
  757. SCMP_CMP(0, SCMP_CMP_EQ, SIG_UNBLOCK));
  758. if (rc)
  759. return rc;
  760. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rt_sigprocmask),
  761. SCMP_CMP(0, SCMP_CMP_EQ, SIG_SETMASK));
  762. if (rc)
  763. return rc;
  764. return 0;
  765. }
  766. /**
  767. * Function responsible for setting up the flock syscall for
  768. * the seccomp filter sandbox.
  769. *
  770. * NOTE: does not need to be here, occurs before filter is applied.
  771. */
  772. static int
  773. sb_flock(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  774. {
  775. int rc = 0;
  776. (void) filter;
  777. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(flock),
  778. SCMP_CMP(1, SCMP_CMP_EQ, LOCK_EX|LOCK_NB));
  779. if (rc)
  780. return rc;
  781. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(flock),
  782. SCMP_CMP(1, SCMP_CMP_EQ, LOCK_UN));
  783. if (rc)
  784. return rc;
  785. return 0;
  786. }
  787. /**
  788. * Function responsible for setting up the futex syscall for
  789. * the seccomp filter sandbox.
  790. */
  791. static int
  792. sb_futex(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  793. {
  794. int rc = 0;
  795. (void) filter;
  796. // can remove
  797. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(futex),
  798. SCMP_CMP(1, SCMP_CMP_EQ,
  799. FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME));
  800. if (rc)
  801. return rc;
  802. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(futex),
  803. SCMP_CMP(1, SCMP_CMP_EQ, FUTEX_WAKE_PRIVATE));
  804. if (rc)
  805. return rc;
  806. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(futex),
  807. SCMP_CMP(1, SCMP_CMP_EQ, FUTEX_WAIT_PRIVATE));
  808. if (rc)
  809. return rc;
  810. return 0;
  811. }
  812. /**
  813. * Function responsible for setting up the mremap syscall for
  814. * the seccomp filter sandbox.
  815. *
  816. * NOTE: so far only occurs before filter is applied.
  817. */
  818. static int
  819. sb_mremap(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  820. {
  821. int rc = 0;
  822. (void) filter;
  823. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mremap),
  824. SCMP_CMP(3, SCMP_CMP_EQ, MREMAP_MAYMOVE));
  825. if (rc)
  826. return rc;
  827. return 0;
  828. }
  829. /**
  830. * Function responsible for setting up the poll syscall for
  831. * the seccomp filter sandbox.
  832. */
  833. static int
  834. sb_poll(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  835. {
  836. int rc = 0;
  837. (void) filter;
  838. rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(poll),
  839. SCMP_CMP(1, SCMP_CMP_EQ, 1),
  840. SCMP_CMP(2, SCMP_CMP_EQ, 10));
  841. if (rc)
  842. return rc;
  843. return 0;
  844. }
  845. #ifdef __NR_stat64
  846. /**
  847. * Function responsible for setting up the stat64 syscall for
  848. * the seccomp filter sandbox.
  849. */
  850. static int
  851. sb_stat64(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
  852. {
  853. int rc = 0;
  854. sandbox_cfg_t *elem = NULL;
  855. // for each dynamic parameter filters
  856. for (elem = filter; elem != NULL; elem = elem->next) {
  857. smp_param_t *param = elem->param;
  858. if (param != NULL && param->prot == 1 && (param->syscall == SCMP_SYS(open)
  859. || param->syscall == SCMP_SYS(stat64))) {
  860. rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(stat64),
  861. SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value));
  862. if (rc != 0) {
  863. log_err(LD_BUG,"(Sandbox) failed to add open syscall, received "
  864. "libseccomp error %d", rc);
  865. return rc;
  866. }
  867. }
  868. }
  869. return 0;
  870. }
  871. #endif
  872. /**
  873. * Array of function pointers responsible for filtering different syscalls at
  874. * a parameter level.
  875. */
  876. static sandbox_filter_func_t filter_func[] = {
  877. sb_rt_sigaction,
  878. sb_rt_sigprocmask,
  879. #if 0
  880. sb_execve,
  881. #endif
  882. sb_time,
  883. sb_accept4,
  884. #ifdef __NR_mmap2
  885. sb_mmap2,
  886. #endif
  887. sb_chown,
  888. sb_chmod,
  889. sb_open,
  890. sb_openat,
  891. sb__sysctl,
  892. sb_rename,
  893. #ifdef __NR_fcntl64
  894. sb_fcntl64,
  895. #endif
  896. sb_epoll_ctl,
  897. sb_prctl,
  898. sb_mprotect,
  899. sb_flock,
  900. sb_futex,
  901. sb_mremap,
  902. sb_poll,
  903. #ifdef __NR_stat64
  904. sb_stat64,
  905. #endif
  906. sb_socket,
  907. sb_setsockopt,
  908. sb_getsockopt,
  909. sb_socketpair
  910. };
  911. const char *
  912. sandbox_intern_string(const char *str)
  913. {
  914. sandbox_cfg_t *elem;
  915. if (str == NULL)
  916. return NULL;
  917. for (elem = filter_dynamic; elem != NULL; elem = elem->next) {
  918. smp_param_t *param = elem->param;
  919. if (param->prot) {
  920. if (!strcmp(str, (char*)(param->value))) {
  921. return (char*)param->value;
  922. }
  923. if (param->value2 && !strcmp(str, (char*)param->value2)) {
  924. return (char*)param->value2;
  925. }
  926. }
  927. }
  928. if (sandbox_active)
  929. log_warn(LD_BUG, "No interned sandbox parameter found for %s", str);
  930. return str;
  931. }
  932. /* DOCDOC */
  933. static int
  934. prot_strings_helper(strmap_t *locations,
  935. char **pr_mem_next_p,
  936. size_t *pr_mem_left_p,
  937. char **value_p)
  938. {
  939. char *param_val;
  940. size_t param_size;
  941. void *location;
  942. if (*value_p == 0)
  943. return 0;
  944. param_val = (char*) *value_p;
  945. param_size = strlen(param_val) + 1;
  946. location = strmap_get(locations, param_val);
  947. if (location) {
  948. // We already interned this string.
  949. tor_free(param_val);
  950. *value_p = location;
  951. return 0;
  952. } else if (*pr_mem_left_p >= param_size) {
  953. // copy to protected
  954. location = *pr_mem_next_p;
  955. memcpy(location, param_val, param_size);
  956. // re-point el parameter to protected
  957. tor_free(param_val);
  958. *value_p = location;
  959. strmap_set(locations, location, location); /* good real estate advice */
  960. // move next available protected memory
  961. *pr_mem_next_p += param_size;
  962. *pr_mem_left_p -= param_size;
  963. return 0;
  964. } else {
  965. log_err(LD_BUG,"(Sandbox) insufficient protected memory!");
  966. return -1;
  967. }
  968. }
  969. /**
  970. * Protects all the strings in the sandbox's parameter list configuration. It
  971. * works by calculating the total amount of memory required by the parameter
  972. * list, allocating the memory using mmap, and protecting it from writes with
  973. * mprotect().
  974. */
  975. static int
  976. prot_strings(scmp_filter_ctx ctx, sandbox_cfg_t* cfg)
  977. {
  978. int ret = 0;
  979. size_t pr_mem_size = 0, pr_mem_left = 0;
  980. char *pr_mem_next = NULL, *pr_mem_base;
  981. sandbox_cfg_t *el = NULL;
  982. strmap_t *locations = NULL;
  983. // get total number of bytes required to mmap. (Overestimate.)
  984. for (el = cfg; el != NULL; el = el->next) {
  985. pr_mem_size += strlen((char*) el->param->value) + 1;
  986. if (el->param->value2)
  987. pr_mem_size += strlen((char*) el->param->value2) + 1;
  988. }
  989. // allocate protected memory with MALLOC_MP_LIM canary
  990. pr_mem_base = (char*) mmap(NULL, MALLOC_MP_LIM + pr_mem_size,
  991. PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
  992. if (pr_mem_base == MAP_FAILED) {
  993. log_err(LD_BUG,"(Sandbox) failed allocate protected memory! mmap: %s",
  994. strerror(errno));
  995. ret = -1;
  996. goto out;
  997. }
  998. pr_mem_next = pr_mem_base + MALLOC_MP_LIM;
  999. pr_mem_left = pr_mem_size;
  1000. locations = strmap_new();
  1001. // change el value pointer to protected
  1002. for (el = cfg; el != NULL; el = el->next) {
  1003. if (prot_strings_helper(locations, &pr_mem_next, &pr_mem_left,
  1004. &el->param->value) < 0) {
  1005. ret = -2;
  1006. goto out;
  1007. }
  1008. if (prot_strings_helper(locations, &pr_mem_next, &pr_mem_left,
  1009. &el->param->value2) < 0) {
  1010. ret = -2;
  1011. goto out;
  1012. }
  1013. el->param->prot = 1;
  1014. }
  1015. // protecting from writes
  1016. if (mprotect(pr_mem_base, MALLOC_MP_LIM + pr_mem_size, PROT_READ)) {
  1017. log_err(LD_BUG,"(Sandbox) failed to protect memory! mprotect: %s",
  1018. strerror(errno));
  1019. ret = -3;
  1020. goto out;
  1021. }
  1022. /*
  1023. * Setting sandbox restrictions so the string memory cannot be tampered with
  1024. */
  1025. // no mremap of the protected base address
  1026. ret = seccomp_rule_add_1(ctx, SCMP_ACT_KILL, SCMP_SYS(mremap),
  1027. SCMP_CMP(0, SCMP_CMP_EQ, (intptr_t) pr_mem_base));
  1028. if (ret) {
  1029. log_err(LD_BUG,"(Sandbox) mremap protected memory filter fail!");
  1030. goto out;
  1031. }
  1032. // no munmap of the protected base address
  1033. ret = seccomp_rule_add_1(ctx, SCMP_ACT_KILL, SCMP_SYS(munmap),
  1034. SCMP_CMP(0, SCMP_CMP_EQ, (intptr_t) pr_mem_base));
  1035. if (ret) {
  1036. log_err(LD_BUG,"(Sandbox) munmap protected memory filter fail!");
  1037. goto out;
  1038. }
  1039. /*
  1040. * Allow mprotect with PROT_READ|PROT_WRITE because openssl uses it, but
  1041. * never over the memory region used by the protected strings.
  1042. *
  1043. * PROT_READ|PROT_WRITE was originally fully allowed in sb_mprotect(), but
  1044. * had to be removed due to limitation of libseccomp regarding intervals.
  1045. *
  1046. * There is a restriction on how much you can mprotect with R|W up to the
  1047. * size of the canary.
  1048. */
  1049. ret = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect),
  1050. SCMP_CMP(0, SCMP_CMP_LT, (intptr_t) pr_mem_base),
  1051. SCMP_CMP(1, SCMP_CMP_LE, MALLOC_MP_LIM),
  1052. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE));
  1053. if (ret) {
  1054. log_err(LD_BUG,"(Sandbox) mprotect protected memory filter fail (LT)!");
  1055. goto out;
  1056. }
  1057. ret = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect),
  1058. SCMP_CMP(0, SCMP_CMP_GT, (intptr_t) pr_mem_base + pr_mem_size +
  1059. MALLOC_MP_LIM),
  1060. SCMP_CMP(1, SCMP_CMP_LE, MALLOC_MP_LIM),
  1061. SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE));
  1062. if (ret) {
  1063. log_err(LD_BUG,"(Sandbox) mprotect protected memory filter fail (GT)!");
  1064. goto out;
  1065. }
  1066. out:
  1067. strmap_free(locations, NULL);
  1068. return ret;
  1069. }
  1070. /**
  1071. * Auxiliary function used in order to allocate a sandbox_cfg_t element and set
  1072. * it's values according the the parameter list. All elements are initialised
  1073. * with the 'prot' field set to false, as the pointer is not protected at this
  1074. * point.
  1075. */
  1076. static sandbox_cfg_t*
  1077. new_element2(int syscall, char *value, char *value2)
  1078. {
  1079. smp_param_t *param = NULL;
  1080. sandbox_cfg_t *elem = tor_malloc_zero(sizeof(sandbox_cfg_t));
  1081. param = elem->param = tor_malloc_zero(sizeof(smp_param_t));
  1082. param->syscall = syscall;
  1083. param->value = value;
  1084. param->value2 = value2;
  1085. param->prot = 0;
  1086. return elem;
  1087. }
  1088. static sandbox_cfg_t*
  1089. new_element(int syscall, char *value)
  1090. {
  1091. return new_element2(syscall, value, NULL);
  1092. }
  1093. #ifdef __NR_stat64
  1094. #define SCMP_stat SCMP_SYS(stat64)
  1095. #else
  1096. #define SCMP_stat SCMP_SYS(stat)
  1097. #endif
  1098. int
  1099. sandbox_cfg_allow_stat_filename(sandbox_cfg_t **cfg, char *file)
  1100. {
  1101. sandbox_cfg_t *elem = NULL;
  1102. elem = new_element(SCMP_stat, file);
  1103. if (!elem) {
  1104. log_err(LD_BUG,"(Sandbox) failed to register parameter!");
  1105. return -1;
  1106. }
  1107. elem->next = *cfg;
  1108. *cfg = elem;
  1109. return 0;
  1110. }
  1111. int
  1112. sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file)
  1113. {
  1114. sandbox_cfg_t *elem = NULL;
  1115. elem = new_element(SCMP_SYS(open), file);
  1116. if (!elem) {
  1117. log_err(LD_BUG,"(Sandbox) failed to register parameter!");
  1118. return -1;
  1119. }
  1120. elem->next = *cfg;
  1121. *cfg = elem;
  1122. return 0;
  1123. }
  1124. int
  1125. sandbox_cfg_allow_chmod_filename(sandbox_cfg_t **cfg, char *file)
  1126. {
  1127. sandbox_cfg_t *elem = NULL;
  1128. elem = new_element(SCMP_SYS(chmod), file);
  1129. if (!elem) {
  1130. log_err(LD_BUG,"(Sandbox) failed to register parameter!");
  1131. return -1;
  1132. }
  1133. elem->next = *cfg;
  1134. *cfg = elem;
  1135. return 0;
  1136. }
  1137. int
  1138. sandbox_cfg_allow_chown_filename(sandbox_cfg_t **cfg, char *file)
  1139. {
  1140. sandbox_cfg_t *elem = NULL;
  1141. elem = new_element(SCMP_SYS(chown), file);
  1142. if (!elem) {
  1143. log_err(LD_BUG,"(Sandbox) failed to register parameter!");
  1144. return -1;
  1145. }
  1146. elem->next = *cfg;
  1147. *cfg = elem;
  1148. return 0;
  1149. }
  1150. int
  1151. sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2)
  1152. {
  1153. sandbox_cfg_t *elem = NULL;
  1154. elem = new_element2(SCMP_SYS(rename), file1, file2);
  1155. if (!elem) {
  1156. log_err(LD_BUG,"(Sandbox) failed to register parameter!");
  1157. return -1;
  1158. }
  1159. elem->next = *cfg;
  1160. *cfg = elem;
  1161. return 0;
  1162. }
  1163. int
  1164. sandbox_cfg_allow_openat_filename(sandbox_cfg_t **cfg, char *file)
  1165. {
  1166. sandbox_cfg_t *elem = NULL;
  1167. elem = new_element(SCMP_SYS(openat), file);
  1168. if (!elem) {
  1169. log_err(LD_BUG,"(Sandbox) failed to register parameter!");
  1170. return -1;
  1171. }
  1172. elem->next = *cfg;
  1173. *cfg = elem;
  1174. return 0;
  1175. }
  1176. #if 0
  1177. int
  1178. sandbox_cfg_allow_execve(sandbox_cfg_t **cfg, const char *com)
  1179. {
  1180. sandbox_cfg_t *elem = NULL;
  1181. elem = new_element(SCMP_SYS(execve), com);
  1182. if (!elem) {
  1183. log_err(LD_BUG,"(Sandbox) failed to register parameter!");
  1184. return -1;
  1185. }
  1186. elem->next = *cfg;
  1187. *cfg = elem;
  1188. return 0;
  1189. }
  1190. #endif
  1191. /** Cache entry for getaddrinfo results; used when sandboxing is implemented
  1192. * so that we can consult the cache when the sandbox prevents us from doing
  1193. * getaddrinfo.
  1194. *
  1195. * We support only a limited range of getaddrinfo calls, where servname is null
  1196. * and hints contains only socktype=SOCK_STREAM, family in INET,INET6,UNSPEC.
  1197. */
  1198. typedef struct cached_getaddrinfo_item_t {
  1199. HT_ENTRY(cached_getaddrinfo_item_t) node;
  1200. char *name;
  1201. int family;
  1202. /** set if no error; otherwise NULL */
  1203. struct addrinfo *res;
  1204. /** 0 for no error; otherwise an EAI_* value */
  1205. int err;
  1206. } cached_getaddrinfo_item_t;
  1207. static unsigned
  1208. cached_getaddrinfo_item_hash(const cached_getaddrinfo_item_t *item)
  1209. {
  1210. return (unsigned)siphash24g(item->name, strlen(item->name)) + item->family;
  1211. }
  1212. static unsigned
  1213. cached_getaddrinfo_items_eq(const cached_getaddrinfo_item_t *a,
  1214. const cached_getaddrinfo_item_t *b)
  1215. {
  1216. return (a->family == b->family) && 0 == strcmp(a->name, b->name);
  1217. }
  1218. static void
  1219. cached_getaddrinfo_item_free(cached_getaddrinfo_item_t *item)
  1220. {
  1221. if (item == NULL)
  1222. return;
  1223. tor_free(item->name);
  1224. if (item->res)
  1225. freeaddrinfo(item->res);
  1226. tor_free(item);
  1227. }
  1228. static HT_HEAD(getaddrinfo_cache, cached_getaddrinfo_item_t)
  1229. getaddrinfo_cache = HT_INITIALIZER();
  1230. HT_PROTOTYPE(getaddrinfo_cache, cached_getaddrinfo_item_t, node,
  1231. cached_getaddrinfo_item_hash,
  1232. cached_getaddrinfo_items_eq)
  1233. HT_GENERATE2(getaddrinfo_cache, cached_getaddrinfo_item_t, node,
  1234. cached_getaddrinfo_item_hash,
  1235. cached_getaddrinfo_items_eq,
  1236. 0.6, tor_reallocarray_, tor_free_)
  1237. /** If true, don't try to cache getaddrinfo results. */
  1238. static int sandbox_getaddrinfo_cache_disabled = 0;
  1239. /** Tell the sandbox layer not to try to cache getaddrinfo results. Used as in
  1240. * tor-resolve, when we have no intention of initializing crypto or of
  1241. * installing the sandbox.*/
  1242. void
  1243. sandbox_disable_getaddrinfo_cache(void)
  1244. {
  1245. sandbox_getaddrinfo_cache_disabled = 1;
  1246. }
  1247. void
  1248. sandbox_freeaddrinfo(struct addrinfo *ai)
  1249. {
  1250. if (sandbox_getaddrinfo_cache_disabled)
  1251. freeaddrinfo(ai);
  1252. }
  1253. int
  1254. sandbox_getaddrinfo(const char *name, const char *servname,
  1255. const struct addrinfo *hints,
  1256. struct addrinfo **res)
  1257. {
  1258. int err;
  1259. struct cached_getaddrinfo_item_t search, *item;
  1260. if (sandbox_getaddrinfo_cache_disabled) {
  1261. return getaddrinfo(name, NULL, hints, res);
  1262. }
  1263. if (servname != NULL) {
  1264. log_warn(LD_BUG, "called with non-NULL servname");
  1265. return EAI_NONAME;
  1266. }
  1267. if (name == NULL) {
  1268. log_warn(LD_BUG, "called with NULL name");
  1269. return EAI_NONAME;
  1270. }
  1271. *res = NULL;
  1272. memset(&search, 0, sizeof(search));
  1273. search.name = (char *) name;
  1274. search.family = hints ? hints->ai_family : AF_UNSPEC;
  1275. item = HT_FIND(getaddrinfo_cache, &getaddrinfo_cache, &search);
  1276. if (! sandbox_is_active()) {
  1277. /* If the sandbox is not turned on yet, then getaddrinfo and store the
  1278. result. */
  1279. err = getaddrinfo(name, NULL, hints, res);
  1280. log_info(LD_NET,"(Sandbox) getaddrinfo %s.", err ? "failed" : "succeeded");
  1281. if (! item) {
  1282. item = tor_malloc_zero(sizeof(*item));
  1283. item->name = tor_strdup(name);
  1284. item->family = hints ? hints->ai_family : AF_UNSPEC;
  1285. HT_INSERT(getaddrinfo_cache, &getaddrinfo_cache, item);
  1286. }
  1287. if (item->res) {
  1288. freeaddrinfo(item->res);
  1289. item->res = NULL;
  1290. }
  1291. item->res = *res;
  1292. item->err = err;
  1293. return err;
  1294. }
  1295. /* Otherwise, the sanbox is on. If we have an item, yield its cached
  1296. result. */
  1297. if (item) {
  1298. *res = item->res;
  1299. return item->err;
  1300. }
  1301. /* getting here means something went wrong */
  1302. log_err(LD_BUG,"(Sandbox) failed to get address %s!", name);
  1303. return EAI_NONAME;
  1304. }
  1305. int
  1306. sandbox_add_addrinfo(const char *name)
  1307. {
  1308. struct addrinfo *res;
  1309. struct addrinfo hints;
  1310. int i;
  1311. static const int families[] = { AF_INET, AF_INET6, AF_UNSPEC };
  1312. memset(&hints, 0, sizeof(hints));
  1313. hints.ai_socktype = SOCK_STREAM;
  1314. for (i = 0; i < 3; ++i) {
  1315. hints.ai_family = families[i];
  1316. res = NULL;
  1317. (void) sandbox_getaddrinfo(name, NULL, &hints, &res);
  1318. if (res)
  1319. sandbox_freeaddrinfo(res);
  1320. }
  1321. return 0;
  1322. }
  1323. void
  1324. sandbox_free_getaddrinfo_cache(void)
  1325. {
  1326. cached_getaddrinfo_item_t **next, **item;
  1327. for (item = HT_START(getaddrinfo_cache, &getaddrinfo_cache);
  1328. item;
  1329. item = next) {
  1330. next = HT_NEXT_RMV(getaddrinfo_cache, &getaddrinfo_cache, item);
  1331. cached_getaddrinfo_item_free(*item);
  1332. }
  1333. HT_CLEAR(getaddrinfo_cache, &getaddrinfo_cache);
  1334. }
  1335. /**
  1336. * Function responsible for going through the parameter syscall filters and
  1337. * call each function pointer in the list.
  1338. */
  1339. static int
  1340. add_param_filter(scmp_filter_ctx ctx, sandbox_cfg_t* cfg)
  1341. {
  1342. unsigned i;
  1343. int rc = 0;
  1344. // function pointer
  1345. for (i = 0; i < ARRAY_LENGTH(filter_func); i++) {
  1346. if ((filter_func[i])(ctx, cfg)) {
  1347. log_err(LD_BUG,"(Sandbox) failed to add syscall %d, received libseccomp "
  1348. "error %d", i, rc);
  1349. return rc;
  1350. }
  1351. }
  1352. return 0;
  1353. }
  1354. /**
  1355. * Function responsible of loading the libseccomp syscall filters which do not
  1356. * have parameter filtering.
  1357. */
  1358. static int
  1359. add_noparam_filter(scmp_filter_ctx ctx)
  1360. {
  1361. unsigned i;
  1362. int rc = 0;
  1363. // add general filters
  1364. for (i = 0; i < ARRAY_LENGTH(filter_nopar_gen); i++) {
  1365. rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, filter_nopar_gen[i]);
  1366. if (rc != 0) {
  1367. log_err(LD_BUG,"(Sandbox) failed to add syscall index %d (NR=%d), "
  1368. "received libseccomp error %d", i, filter_nopar_gen[i], rc);
  1369. return rc;
  1370. }
  1371. }
  1372. return 0;
  1373. }
  1374. /**
  1375. * Function responsible for setting up and enabling a global syscall filter.
  1376. * The function is a prototype developed for stage 1 of sandboxing Tor.
  1377. * Returns 0 on success.
  1378. */
  1379. static int
  1380. install_syscall_filter(sandbox_cfg_t* cfg)
  1381. {
  1382. int rc = 0;
  1383. scmp_filter_ctx ctx;
  1384. ctx = seccomp_init(SCMP_ACT_TRAP);
  1385. if (ctx == NULL) {
  1386. log_err(LD_BUG,"(Sandbox) failed to initialise libseccomp context");
  1387. rc = -1;
  1388. goto end;
  1389. }
  1390. // protectign sandbox parameter strings
  1391. if ((rc = prot_strings(ctx, cfg))) {
  1392. goto end;
  1393. }
  1394. // add parameter filters
  1395. if ((rc = add_param_filter(ctx, cfg))) {
  1396. log_err(LD_BUG, "(Sandbox) failed to add param filters!");
  1397. goto end;
  1398. }
  1399. // adding filters with no parameters
  1400. if ((rc = add_noparam_filter(ctx))) {
  1401. log_err(LD_BUG, "(Sandbox) failed to add param filters!");
  1402. goto end;
  1403. }
  1404. // loading the seccomp2 filter
  1405. if ((rc = seccomp_load(ctx))) {
  1406. log_err(LD_BUG, "(Sandbox) failed to load: %d (%s)!", rc,
  1407. strerror(-rc));
  1408. goto end;
  1409. }
  1410. // marking the sandbox as active
  1411. sandbox_active = 1;
  1412. end:
  1413. seccomp_release(ctx);
  1414. return (rc < 0 ? -rc : rc);
  1415. }
  1416. #include "linux_syscalls.inc"
  1417. static const char *
  1418. get_syscall_name(int syscall_num)
  1419. {
  1420. int i;
  1421. for (i = 0; SYSCALLS_BY_NUMBER[i].syscall_name; ++i) {
  1422. if (SYSCALLS_BY_NUMBER[i].syscall_num == syscall_num)
  1423. return SYSCALLS_BY_NUMBER[i].syscall_name;
  1424. }
  1425. {
  1426. static char syscall_name_buf[64];
  1427. format_dec_number_sigsafe(syscall_num,
  1428. syscall_name_buf, sizeof(syscall_name_buf));
  1429. return syscall_name_buf;
  1430. }
  1431. }
  1432. #ifdef USE_BACKTRACE
  1433. #define MAX_DEPTH 256
  1434. static void *syscall_cb_buf[MAX_DEPTH];
  1435. #endif
  1436. /**
  1437. * Function called when a SIGSYS is caught by the application. It notifies the
  1438. * user that an error has occurred and either terminates or allows the
  1439. * application to continue execution, based on the DEBUGGING_CLOSE symbol.
  1440. */
  1441. static void
  1442. sigsys_debugging(int nr, siginfo_t *info, void *void_context)
  1443. {
  1444. ucontext_t *ctx = (ucontext_t *) (void_context);
  1445. const char *syscall_name;
  1446. int syscall;
  1447. #ifdef USE_BACKTRACE
  1448. size_t depth;
  1449. int n_fds, i;
  1450. const int *fds = NULL;
  1451. #endif
  1452. (void) nr;
  1453. if (info->si_code != SYS_SECCOMP)
  1454. return;
  1455. if (!ctx)
  1456. return;
  1457. syscall = (int) ctx->uc_mcontext.M_SYSCALL;
  1458. #ifdef USE_BACKTRACE
  1459. depth = backtrace(syscall_cb_buf, MAX_DEPTH);
  1460. /* Clean up the top stack frame so we get the real function
  1461. * name for the most recently failing function. */
  1462. clean_backtrace(syscall_cb_buf, depth, ctx);
  1463. #endif
  1464. syscall_name = get_syscall_name(syscall);
  1465. tor_log_err_sigsafe("(Sandbox) Caught a bad syscall attempt (syscall ",
  1466. syscall_name,
  1467. ")\n",
  1468. NULL);
  1469. #ifdef USE_BACKTRACE
  1470. n_fds = tor_log_get_sigsafe_err_fds(&fds);
  1471. for (i=0; i < n_fds; ++i)
  1472. backtrace_symbols_fd(syscall_cb_buf, (int)depth, fds[i]);
  1473. #endif
  1474. #if defined(DEBUGGING_CLOSE)
  1475. _exit(1);
  1476. #endif // DEBUGGING_CLOSE
  1477. }
  1478. /**
  1479. * Function that adds a handler for SIGSYS, which is the signal thrown
  1480. * when the application is issuing a syscall which is not allowed. The
  1481. * main purpose of this function is to help with debugging by identifying
  1482. * filtered syscalls.
  1483. */
  1484. static int
  1485. install_sigsys_debugging(void)
  1486. {
  1487. struct sigaction act;
  1488. sigset_t mask;
  1489. memset(&act, 0, sizeof(act));
  1490. sigemptyset(&mask);
  1491. sigaddset(&mask, SIGSYS);
  1492. act.sa_sigaction = &sigsys_debugging;
  1493. act.sa_flags = SA_SIGINFO;
  1494. if (sigaction(SIGSYS, &act, NULL) < 0) {
  1495. log_err(LD_BUG,"(Sandbox) Failed to register SIGSYS signal handler");
  1496. return -1;
  1497. }
  1498. if (sigprocmask(SIG_UNBLOCK, &mask, NULL)) {
  1499. log_err(LD_BUG,"(Sandbox) Failed call to sigprocmask()");
  1500. return -2;
  1501. }
  1502. return 0;
  1503. }
  1504. /**
  1505. * Function responsible of registering the sandbox_cfg_t list of parameter
  1506. * syscall filters to the existing parameter list. This is used for incipient
  1507. * multiple-sandbox support.
  1508. */
  1509. static int
  1510. register_cfg(sandbox_cfg_t* cfg)
  1511. {
  1512. sandbox_cfg_t *elem = NULL;
  1513. if (filter_dynamic == NULL) {
  1514. filter_dynamic = cfg;
  1515. return 0;
  1516. }
  1517. for (elem = filter_dynamic; elem->next != NULL; elem = elem->next)
  1518. ;
  1519. elem->next = cfg;
  1520. return 0;
  1521. }
  1522. #endif // USE_LIBSECCOMP
  1523. #ifdef USE_LIBSECCOMP
  1524. /**
  1525. * Initialises the syscall sandbox filter for any linux architecture, taking
  1526. * into account various available features for different linux flavours.
  1527. */
  1528. static int
  1529. initialise_libseccomp_sandbox(sandbox_cfg_t* cfg)
  1530. {
  1531. /* Prevent glibc from trying to open /dev/tty on fatal error */
  1532. setenv("LIBC_FATAL_STDERR_", "1", 1);
  1533. if (install_sigsys_debugging())
  1534. return -1;
  1535. if (install_syscall_filter(cfg))
  1536. return -2;
  1537. if (register_cfg(cfg))
  1538. return -3;
  1539. return 0;
  1540. }
  1541. int
  1542. sandbox_is_active(void)
  1543. {
  1544. return sandbox_active != 0;
  1545. }
  1546. #endif // USE_LIBSECCOMP
  1547. sandbox_cfg_t*
  1548. sandbox_cfg_new(void)
  1549. {
  1550. return NULL;
  1551. }
  1552. int
  1553. sandbox_init(sandbox_cfg_t *cfg)
  1554. {
  1555. #if defined(USE_LIBSECCOMP)
  1556. return initialise_libseccomp_sandbox(cfg);
  1557. #elif defined(__linux__)
  1558. (void)cfg;
  1559. log_warn(LD_GENERAL,
  1560. "This version of Tor was built without support for sandboxing. To "
  1561. "build with support for sandboxing on Linux, you must have "
  1562. "libseccomp and its necessary header files (e.g. seccomp.h).");
  1563. return 0;
  1564. #else
  1565. (void)cfg;
  1566. log_warn(LD_GENERAL,
  1567. "Currently, sandboxing is only implemented on Linux. The feature "
  1568. "is disabled on your platform.");
  1569. return 0;
  1570. #endif
  1571. }
  1572. #ifndef USE_LIBSECCOMP
  1573. int
  1574. sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file)
  1575. {
  1576. (void)cfg; (void)file;
  1577. return 0;
  1578. }
  1579. int
  1580. sandbox_cfg_allow_openat_filename(sandbox_cfg_t **cfg, char *file)
  1581. {
  1582. (void)cfg; (void)file;
  1583. return 0;
  1584. }
  1585. #if 0
  1586. int
  1587. sandbox_cfg_allow_execve(sandbox_cfg_t **cfg, const char *com)
  1588. {
  1589. (void)cfg; (void)com;
  1590. return 0;
  1591. }
  1592. #endif
  1593. int
  1594. sandbox_cfg_allow_stat_filename(sandbox_cfg_t **cfg, char *file)
  1595. {
  1596. (void)cfg; (void)file;
  1597. return 0;
  1598. }
  1599. int
  1600. sandbox_cfg_allow_chown_filename(sandbox_cfg_t **cfg, char *file)
  1601. {
  1602. (void)cfg; (void)file;
  1603. return 0;
  1604. }
  1605. int
  1606. sandbox_cfg_allow_chmod_filename(sandbox_cfg_t **cfg, char *file)
  1607. {
  1608. (void)cfg; (void)file;
  1609. return 0;
  1610. }
  1611. int
  1612. sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2)
  1613. {
  1614. (void)cfg; (void)file1; (void)file2;
  1615. return 0;
  1616. }
  1617. int
  1618. sandbox_is_active(void)
  1619. {
  1620. return 0;
  1621. }
  1622. void
  1623. sandbox_disable_getaddrinfo_cache(void)
  1624. {
  1625. }
  1626. #endif