/* * This file is part of Jehanne. * * Copyright (C) 2015-2017 Giacomo Tesio * * Jehanne is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2 of the License. * * Jehanne 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 Jehanne. If not, see . */ #include #include void* jehanne_segattach(int attr, const char *class, void *va, unsigned long len) { int fd; long tmp; char msg[256]; fd = sys_open("#0/segments", OWRITE); if(fd < 0) return (void*)-1; tmp = jehanne_snprint(msg, sizeof(msg), "attach 0x%ux %#p %ulld %s", attr, va, len, class); tmp = jehanne_write(fd, msg, tmp); sys_close(fd); return (void*)tmp; } int jehanne_segdetach(void *addr) { int fd, tmp; char msg[256]; fd = sys_open("#0/segments", OWRITE); if(fd < 0) return -1; tmp = jehanne_snprint(msg, sizeof(msg), "detach %#p", addr); tmp = jehanne_write(fd, msg, tmp); sys_close(fd); return tmp; } int jehanne_segfree(void *addr, unsigned long len) { int fd, tmp; char msg[256]; fd = sys_open("#0/segments", OWRITE); if(fd < 0) return -1; tmp = jehanne_snprint(msg, sizeof(msg), "free %#p %ulld", addr, len); tmp = jehanne_write(fd, msg, tmp); sys_close(fd); return tmp; }