123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- #include "xs.h"
- #include "snac.h"
- #include <unistd.h>
- #if defined (__linux__)
- #define LL_PRINTERR(fmt, ...) srv_debug(0, xs_fmt(fmt, __VA_ARGS__))
- #include "landloc.h"
- #define LL_R LANDLOCK_ACCESS_FS_READ_FILE
- #define LL_X LANDLOCK_ACCESS_FS_EXECUTE
- #define LL_RWCF (LL_R | LANDLOCK_ACCESS_FS_WRITE_FILE | LANDLOCK_ACCESS_FS_MAKE_REG | LANDLOCK_ACCESS_FS_TRUNCATE | LANDLOCK_ACCESS_FS_REMOVE_FILE | LANDLOCK_ACCESS_FS_REFER)
- #define LL_RWCD (LL_RWCF | LANDLOCK_ACCESS_FS_MAKE_DIR | LANDLOCK_ACCESS_FS_REMOVE_DIR)
- #define LL_UNIX (LL_R | LANDLOCK_ACCESS_FS_WRITE_FILE | LANDLOCK_ACCESS_FS_MAKE_SOCK)
- #define LL_CONN LANDLOCK_ACCESS_NET_CONNECT_TCP
- #define LL_BIND LANDLOCK_ACCESS_NET_BIND_TCP
- static
- LL_BEGIN(sbox_enter_linux_, const char* basedir, const char *address, int smail) {
- LL_PATH(basedir, LL_RWCD);
- LL_PATH("/tmp", LL_RWCD);
- #ifndef WITHOUT_SHM
- LL_PATH("/dev/shm", LL_RWCF);
- #endif
- LL_PATH("/etc/resolv.conf", LL_R );
- LL_PATH("/etc/hosts", LL_R );
- LL_PATH("/etc/ssl/openssl.cnf", LL_R );
- LL_PATH("/etc/ssl/cert.pem", LL_R );
- LL_PATH("/usr/share/zoneinfo", LL_R );
- if (*address == '/')
- LL_PATH(address, LL_UNIX);
- if (smail)
- LL_PATH("/usr/sbin/sendmail", LL_X);
- if (*address != '/') {
- LL_PORT(
- (unsigned short)xs_number_get(xs_dict_get(srv_config, "port")), LL_BIND);
- }
- LL_PORT(80, LL_CONN);
- LL_PORT(443, LL_CONN);
- } LL_END
- #endif
- void sbox_enter(const char *basedir)
- {
- if (xs_is_true(xs_dict_get(srv_config, "disable_openbsd_security"))) {
- srv_log(xs_dup("disable_openbsd_security is deprecated. Use disable_sandbox instead."));
- return;
- }
- if (xs_is_true(xs_dict_get(srv_config, "disable_sandbox"))) {
- srv_debug(0, xs_dup("Sandbox disabled by admin"));
- return;
- }
- const char *address = xs_dict_get(srv_config, "address");
- int smail = !xs_is_true(xs_dict_get(srv_config, "disable_email_notifications"));
- #if defined (__OpenBSD__)
- srv_debug(1, xs_fmt("Calling unveil()"));
- unveil(basedir, "rwc");
- unveil("/tmp", "rwc");
- unveil("/etc/resolv.conf", "r");
- unveil("/etc/hosts", "r");
- unveil("/etc/ssl/openssl.cnf", "r");
- unveil("/etc/ssl/cert.pem", "r");
- unveil("/usr/share/zoneinfo", "r");
- if (smail)
- unveil("/usr/sbin/sendmail", "x");
- if (*address == '/')
- unveil(address, "rwc");
- unveil(NULL, NULL);
- srv_debug(1, xs_fmt("Calling pledge()"));
- xs *p = xs_str_new("stdio rpath wpath cpath flock inet proc dns fattr");
- if (smail)
- p = xs_str_cat(p, " exec");
- if (*address == '/')
- p = xs_str_cat(p, " unix");
- pledge(p, NULL);
- xs_free(p);
- #elif defined (__linux__)
-
- sbox_enter_linux_(basedir, address, smail);
- srv_log(xs_dup("landlocked"));
- #endif
- }
|