/* vim: set expandtab ts=4 sw=4: */ /* * You may redistribute this program and/or modify it under the terms of * the GNU General Public License as published by the Free Software Foundation, * either version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "util/log/FileWriterLog.h" #include "memory/Allocator.h" #include "memory/MallocAllocator.h" #include "util/Seccomp.h" #include "util/events/EventBase.h" #include "util/events/Process.h" #include "util/events/Pipe.h" #include "util/events/Timeout.h" #include "util/CString.h" #include "crypto/random/Random.h" static void childComplete(void* vEventBase) { EventBase_endLoop((struct EventBase*)vEventBase); } static void onConnectionChild(struct Pipe* p, int status) { // hax struct Allocator* alloc = (struct Allocator*) p->iface.receiverContext; struct Log* logger = p->logger; Seccomp_dropPermissions(alloc, logger, NULL); Assert_true(Seccomp_isWorking()); struct Message* ok = Message_new(0, 512, alloc); Message_push(ok, "OK", 3, NULL); Interface_sendMessage(&p->iface, ok); // just set a timeout long enough that we're pretty sure the parent will get the message // before we quit. Timeout_setInterval(childComplete, p->base, 10, p->base, alloc); } static void timeout(void* vNULL) { Assert_true(!"timed out"); } static int child(char* pipeName, struct Allocator* alloc, struct Log* logger) { struct EventBase* eb = EventBase_new(alloc); struct Pipe* pipe = Pipe_named(pipeName, eb, NULL, alloc); pipe->onConnection = onConnectionChild; pipe->logger = logger; pipe->iface.receiverContext = alloc; Timeout_setTimeout(timeout, eb, 2000, eb, alloc); EventBase_beginLoop(eb); return 0; } static uint8_t receiveMessageParent(struct Message* msg, struct Interface* iface) { Assert_true(msg->length == 3); Assert_true(!Bits_memcmp(msg->bytes, "OK", 3)); EventBase_endLoop(iface->receiverContext); return 0; } int main(int argc, char** argv) { struct Allocator* alloc = MallocAllocator_new(20000); struct Log* logger = FileWriterLog_new(stdout, alloc); if (!Seccomp_exists()) { Log_debug(logger, "Seccomp not supported on this system"); return 0; } if (argc > 3 && !CString_strcmp("Seccomp_test", argv[1]) && !CString_strcmp("child", argv[2])) { child(argv[3], alloc, logger); Allocator_free(alloc); return 0; } struct EventBase* eb = EventBase_new(alloc); struct Random* rand = Random_new(alloc, logger, NULL); char name[32] = {0}; Random_base32(rand, (uint8_t*)name, 31); struct Pipe* pipe = Pipe_named(name, eb, NULL, alloc); pipe->logger = logger; pipe->iface.receiveMessage = receiveMessageParent; pipe->iface.receiverContext = eb; char* path = Process_getPath(alloc); char* args[] = { "Seccomp_test", "child", name, NULL }; Assert_true(!Process_spawn(path, args, eb, alloc)); Timeout_setTimeout(timeout, NULL, 2000, eb, alloc); EventBase_beginLoop(eb); return 0; }