nsjail/sandbox.c

73 lines
1.9 KiB
C
Raw Normal View History

2015-05-15 05:44:48 +08:00
/*
nsjail - seccomp-bpf sandboxing
-----------------------------------------
Copyright 2014 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "sandbox.h"
2016-10-12 09:15:33 +08:00
#include <linux/filter.h>
#include <linux/seccomp.h>
2015-05-15 05:44:48 +08:00
#include <sys/prctl.h>
#include "common.h"
2016-10-12 09:15:33 +08:00
#include "kafel.h"
2017-05-09 00:33:52 +08:00
#include "log.h"
2015-05-15 05:44:48 +08:00
2017-10-09 05:00:45 +08:00
#ifndef PR_SET_NO_NEW_PRIVS /* in prctl.h since Linux 3.5 */
2016-10-12 09:15:33 +08:00
#define PR_SET_NO_NEW_PRIVS 38
2017-10-09 05:00:45 +08:00
#endif /* PR_SET_NO_NEW_PRIVS */
2016-10-12 09:15:33 +08:00
2017-10-09 05:00:45 +08:00
static bool sandboxPrepareAndCommit(struct nsjconf_t* nsjconf)
2015-05-15 05:44:48 +08:00
{
2016-10-12 09:52:08 +08:00
if (nsjconf->kafel_file == NULL && nsjconf->kafel_string == NULL) {
2016-10-12 09:15:33 +08:00
return true;
}
struct sock_fprog seccomp_fprog;
2016-10-12 09:52:08 +08:00
2016-10-12 09:15:33 +08:00
kafel_ctxt_t ctxt = kafel_ctxt_create();
2016-10-12 09:52:08 +08:00
if (nsjconf->kafel_file != NULL) {
kafel_set_input_file(ctxt, nsjconf->kafel_file);
} else {
kafel_set_input_string(ctxt, nsjconf->kafel_string);
}
2016-10-12 09:15:33 +08:00
if (kafel_compile(ctxt, &seccomp_fprog) != 0) {
LOG_E("Could not compile policy: %s", kafel_error_msg(ctxt));
kafel_ctxt_destroy(&ctxt);
return false;
}
kafel_ctxt_destroy(&ctxt);
2015-05-15 05:44:48 +08:00
2016-10-12 09:15:33 +08:00
if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
PLOG_W("prctl(PR_SET_NO_NEW_PRIVS, 1) failed");
return false;
2015-05-15 05:44:48 +08:00
}
2016-10-12 09:15:33 +08:00
if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &seccomp_fprog, 0, 0)) {
PLOG_W("prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER) failed");
return false;
2015-05-15 05:44:48 +08:00
}
return true;
}
2017-10-09 05:00:45 +08:00
bool sandboxApply(struct nsjconf_t* nsjconf)
2015-05-15 05:44:48 +08:00
{
2017-10-08 08:57:49 +08:00
return sandboxPrepareAndCommit(nsjconf);
2015-05-15 05:44:48 +08:00
}