GithubHelp home page GithubHelp logo

austanss / skylight Goto Github PK

View Code? Open in Web Editor NEW
72.0 72.0 3.0 6.57 MB

A clean, readable, minimalist operating system designed to be used as an educational material for operating system development and design.

License: MIT License

Makefile 1.50% JavaScript 0.32% Assembly 6.05% C 91.83% Shell 0.30%
osdev systems

skylight's People

Contributors

austanss avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

skylight's Issues

About syscalls

Ii'm trying to use skylight as a base for my os,but i was wondering how could i implement a fopen syscall, trying to read a pointer from userspace to kernel space (path string) obviously makes the kernel crash, so how can i read/translate user memory addresses to kernel?
here's my code:

void fopen(vfs_handle_t* out, char* path, vfs_open_flags_t flags) {
    task_context_t* ctx = ((gs_kernel_base_t*)(rdmsr(IA32_GS_BASE)))->ctx;
    uint64_t pid = ((gs_kernel_base_t*)(rdmsr(IA32_GS_BASE)))->pid;
    paging_table_t* kpml4 = paging_get_pml4();
    paging_load_pml4((paging_table_t *)ctx->cr3);

    serial_print_quiet(path);

    paging_load_pml4(kpml4);
}

when trying to print the path in serial the kernel just goes into unknown exception (obviously it can't find the value referred by the pointer).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.