Parcourir la source

修改,解决系统调用错误问题、递归调用问题

longjin il y a 2 ans
Parent
commit
a7ed382437
2 fichiers modifiés avec 36 ajouts et 45 suppressions
  1. 23 38
      src/c/malloc.c
  2. 13 7
      src/platform/allocator/malloc.rs

+ 23 - 38
src/c/malloc.c

@@ -1,7 +1,20 @@
-// #include <stdlib.h>
-//#include <libsystem/syscall.h>
+// Copyright (C) DragonOS Community  longjin
+
+// This program 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; either version 2
+// 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, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+// Or you can visit https://www.gnu.org/licenses/gpl-2.0.html
 
-// #include <stddef.h>
 #include <unistd.h>
 #include <errno.h>
 #include <stdio.h>
@@ -12,35 +25,7 @@
 #define PAGE_1G_SHIFT 30
 #define PAGE_GDT_SHIFT 39
 
-/**** for temporary use ****/
-//typedef unsigned long long uint64_t;
-//typedef long long int64_t;
 
-#define SYS_BRK 9
-#define SYS_SBRK 10
-
-long syscall_invoke(uint64_t syscall_id, uint64_t arg0, uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4, uint64_t arg5, uint64_t arg6, uint64_t arg7)
-{
-    uint64_t __err_code;
-    __asm__ __volatile__(
-        "movq %2, %%r8 \n\t"
-        "movq %3, %%r9 \n\t"
-        "movq %4, %%r10 \n\t"
-        "movq %5, %%r11 \n\t"
-        "movq %6, %%r12 \n\t"
-        "movq %7, %%r13 \n\t"
-        "movq %8, %%r14 \n\t"
-        "movq %9, %%r15 \n\t"
-        "int $0x80   \n\t"
-        "movq %%rax, %0 \n\t"
-        :"=a"(__err_code)
-        : "a"(syscall_id), "m"(arg0), "m"(arg1), "m"(arg2), "m"(arg3), "m"(arg4), "m"(arg5), "m"(arg6), "m"(arg7)
-        : "memory", "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", "rcx", "rdx");
-    // printf("errcode = %#018lx\n", __err_code);
-    errno = __err_code;
-
-    return __err_code;
-}
 
 /***************************/
 
@@ -165,10 +150,10 @@ static int malloc_enlarge(int64_t size)
 {
     if (brk_base_addr == 0) // 第一次调用,需要初始化
     {
-        brk_base_addr = brk(-1);
+        brk_base_addr = sbrk(0);
         // printf("brk_base_addr=%#018lx\n", brk_base_addr);
         brk_managed_addr = brk_base_addr;
-        brk_max_addr = brk(-2);
+        brk_max_addr = sbrk(0);
     }
 
     int64_t free_space = brk_max_addr - brk_managed_addr;
@@ -176,7 +161,7 @@ static int malloc_enlarge(int64_t size)
     if (free_space < size) // 现有堆空间不足
     {
         if (sbrk(size - free_space) != (void *)(-1))
-            brk_max_addr = brk((-2));
+            brk_max_addr = sbrk((0));
         else
         {
             //put_string("malloc_enlarge(): no_mem\n", COLOR_YELLOW, COLOR_BLACK);
@@ -302,8 +287,8 @@ static void malloc_insert_free_list(malloc_mem_chunk_t *ck)
  *
  * 分配内存的时候,结点的prev next指针所占用的空间被当做空闲空间分配出去
  */
-void *malloc(ssize_t size)
-{   put_string("malloc_enlarge(): no_mem\n",1,3);
+void *_dragonos_malloc(ssize_t size)
+{
     
     // 计算需要分配的块的大小
     if (size + sizeof(uint64_t) <= sizeof(malloc_mem_chunk_t))
@@ -396,7 +381,7 @@ static void release_brk()
         if (delta <= 0) // 不用释放内存
             return;
         sbrk(-delta);
-        brk_max_addr = brk(-2);
+        brk_max_addr = sbrk(0);
         brk_managed_addr = brk_max_addr;
 
         malloc_free_list_end->length = brk_max_addr - (uint64_t)malloc_free_list_end;
@@ -407,7 +392,7 @@ static void release_brk()
  *
  * @param ptr 堆内存的指针
  */
-void mfree(void *ptr)
+void _dragonos_free(void *ptr)
 {
     // 找到结点(此时prev和next都处于未初始化的状态)
     malloc_mem_chunk_t *ck = (malloc_mem_chunk_t *)((uint64_t)ptr - sizeof(uint64_t));

+ 13 - 7
src/platform/allocator/malloc.rs

@@ -7,8 +7,8 @@ use core::{
 use super::types::*;
 
 extern "C" {
-    fn mfree(ptr:*mut c_void)->*mut c_void;
-    fn malloc(size:usize)->*mut c_void;
+    fn _dragonos_free(ptr:*mut c_void)->*mut c_void;
+    fn _dragonos_malloc(size:usize)->*mut c_void;
 }
 
 pub struct Allocator {
@@ -33,22 +33,25 @@ impl Allocator {
 
 unsafe impl<'a> GlobalAlloc for Allocator {
     unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
-        malloc(layout.size()) as *mut u8
+        alloc(layout.size()) as *mut u8
         //alloc_align(layout.size(), layout.align()) as *mut u8
     }
 
     unsafe fn dealloc(&self, ptr: *mut u8, _layout: Layout) {
-        mfree(ptr as *mut c_void);
+        free(ptr as *mut c_void);
     }
 }
 
 pub unsafe fn alloc(size: usize) -> *mut c_void {
-    malloc(size)
+    println!("alloc size: {}", size);
+    _dragonos_malloc(size)
     //mspace_malloc(ALLOCATOR.get_book_keeper(), size)
 }
 
 pub unsafe fn alloc_align(size: usize, alignment: usize) -> *mut c_void {
-    malloc(size)
+    println!("alloc align size: {}, alignment: {}", size, alignment);
+    // TODO: 实现对齐分配
+    _dragonos_malloc(size)
     //mspace_memalign(ALLOCATOR.get_book_keeper(), alignment, size)
 }
 
@@ -59,7 +62,8 @@ pub unsafe fn realloc(ptr: *mut c_void, size: size_t) -> *mut c_void {
 }
 
 pub unsafe fn free(ptr: *mut c_void) {
-    mfree(ptr);
+    println!("free ptr: {:#018x}", ptr as usize);
+    _dragonos_free(ptr);
     //mspace_free(ALLOCATOR.get_book_keeper(), ptr)
 }
 
@@ -70,6 +74,8 @@ pub fn new_mspace() -> usize {
 
 #[cfg(target_os = "dragonos")]
 pub fn new_mspace() -> usize {
+
+    dbg!("new_mspace");
     // use core::sync::atomic::AtomicU8;
 
     // static mut space: [[u8; 128 * 16]; 2] = [[0; 128 * 16]; 2];