2023-03-12 14:32:09 +00:00
|
|
|
#include "Log.h"
|
|
|
|
#include "fs/VFS.h"
|
|
|
|
#include "memory/MemoryManager.h"
|
|
|
|
#include "sys/Syscall.h"
|
|
|
|
|
|
|
|
Result<u64> sys_mkdir(Registers*, SyscallArgs args)
|
|
|
|
{
|
2023-03-12 15:30:36 +00:00
|
|
|
auto path = TRY(MemoryManager::strdup_from_user(args[0]));
|
2023-03-12 15:55:46 +00:00
|
|
|
mode_t mode = (mode_t)args[1];
|
2023-03-12 14:32:09 +00:00
|
|
|
|
2023-03-12 15:30:36 +00:00
|
|
|
kinfoln("mkdir: attempting to create %s", path.chars());
|
2023-03-12 14:32:09 +00:00
|
|
|
|
2023-03-12 15:55:46 +00:00
|
|
|
auto inode = TRY(VFS::create_directory(path.chars()));
|
|
|
|
inode->chmod(mode);
|
2023-03-12 14:32:09 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|