123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475 |
- #include "types.h"
- #include "Process.h"
- #include "kmalloc.h"
- #include "StdLib.h"
- #include "i386.h"
- #include "system.h"
- #include <Kernel/FileDescriptor.h>
- #include <Kernel/FileSystem/VirtualFileSystem.h>
- #include <Kernel/Devices/NullDevice.h>
- #include <Kernel/ELF/ELFLoader.h>
- #include "MemoryManager.h"
- #include "i8253.h"
- #include "RTC.h"
- #include <AK/StdLibExtras.h>
- #include <LibC/signal_numbers.h>
- #include <LibC/errno_numbers.h>
- #include "Syscall.h"
- #include "Scheduler.h"
- #include "FIFO.h"
- #include "KSyms.h"
- #include <Kernel/Socket.h>
- #include <Kernel/TTY/MasterPTY.h>
- #include <Kernel/ELF/exec_elf.h>
- #include <AK/StringBuilder.h>
- //#define DEBUG_IO
- //#define TASK_DEBUG
- //#define FORK_DEBUG
- #define SIGNAL_DEBUG
- #define MAX_PROCESS_GIDS 32
- //#define SHARED_BUFFER_DEBUG
- static pid_t next_pid;
- InlineLinkedList<Process>* g_processes;
- static String* s_hostname;
- static Lock* s_hostname_lock;
- CoolGlobals* g_cool_globals;
- void Process::initialize()
- {
- #ifdef COOL_GLOBALS
- g_cool_globals = reinterpret_cast<CoolGlobals*>(0x1000);
- #endif
- next_pid = 0;
- g_processes = new InlineLinkedList<Process>;
- s_hostname = new String("courage");
- s_hostname_lock = new Lock;
- }
- Vector<pid_t> Process::all_pids()
- {
- Vector<pid_t> pids;
- InterruptDisabler disabler;
- for (auto* process = g_processes->head(); process; process = process->next())
- pids.append(process->pid());
- return pids;
- }
- Vector<Process*> Process::all_processes()
- {
- Vector<Process*> processes;
- InterruptDisabler disabler;
- for (auto* process = g_processes->head(); process; process = process->next())
- processes.append(process);
- return processes;
- }
- bool Process::in_group(gid_t gid) const
- {
- return m_gids.contains(gid);
- }
- Region* Process::allocate_region(LinearAddress laddr, size_t size, String&& name, bool is_readable, bool is_writable, bool commit)
- {
- size = PAGE_ROUND_UP(size);
- // FIXME: This needs sanity checks. What if this overlaps existing regions?
- if (laddr.is_null()) {
- laddr = m_next_region;
- m_next_region = m_next_region.offset(size).offset(PAGE_SIZE);
- }
- laddr.mask(0xfffff000);
- m_regions.append(adopt(*new Region(laddr, size, move(name), is_readable, is_writable)));
- MM.map_region(*this, *m_regions.last());
- if (commit)
- m_regions.last()->commit();
- return m_regions.last().ptr();
- }
- Region* Process::allocate_file_backed_region(LinearAddress laddr, size_t size, RetainPtr<Inode>&& inode, String&& name, bool is_readable, bool is_writable)
- {
- size = PAGE_ROUND_UP(size);
- // FIXME: This needs sanity checks. What if this overlaps existing regions?
- if (laddr.is_null()) {
- laddr = m_next_region;
- m_next_region = m_next_region.offset(size).offset(PAGE_SIZE);
- }
- laddr.mask(0xfffff000);
- m_regions.append(adopt(*new Region(laddr, size, move(inode), move(name), is_readable, is_writable)));
- MM.map_region(*this, *m_regions.last());
- return m_regions.last().ptr();
- }
- Region* Process::allocate_region_with_vmo(LinearAddress laddr, size_t size, Retained<VMObject>&& vmo, size_t offset_in_vmo, String&& name, bool is_readable, bool is_writable)
- {
- size = PAGE_ROUND_UP(size);
- // FIXME: This needs sanity checks. What if this overlaps existing regions?
- if (laddr.is_null()) {
- laddr = m_next_region;
- m_next_region = m_next_region.offset(size).offset(PAGE_SIZE);
- }
- laddr.mask(0xfffff000);
- offset_in_vmo &= PAGE_MASK;
- size = ceil_div(size, PAGE_SIZE) * PAGE_SIZE;
- m_regions.append(adopt(*new Region(laddr, size, move(vmo), offset_in_vmo, move(name), is_readable, is_writable)));
- MM.map_region(*this, *m_regions.last());
- return m_regions.last().ptr();
- }
- bool Process::deallocate_region(Region& region)
- {
- InterruptDisabler disabler;
- for (int i = 0; i < m_regions.size(); ++i) {
- if (m_regions[i].ptr() == ®ion) {
- MM.unmap_region(region);
- m_regions.remove(i);
- return true;
- }
- }
- return false;
- }
- Region* Process::region_from_range(LinearAddress laddr, size_t size)
- {
- size = PAGE_ROUND_UP(size);
- for (auto& region : m_regions) {
- if (region->laddr() == laddr && region->size() == size)
- return region.ptr();
- }
- return nullptr;
- }
- int Process::sys$set_mmap_name(void* addr, size_t size, const char* name)
- {
- if (!validate_read_str(name))
- return -EFAULT;
- auto* region = region_from_range(LinearAddress((dword)addr), size);
- if (!region)
- return -EINVAL;
- region->set_name(String(name));
- return 0;
- }
- void* Process::sys$mmap(const Syscall::SC_mmap_params* params)
- {
- if (!validate_read(params, sizeof(Syscall::SC_mmap_params)))
- return (void*)-EFAULT;
- void* addr = (void*)params->addr;
- size_t size = params->size;
- int prot = params->prot;
- int flags = params->flags;
- int fd = params->fd;
- off_t offset = params->offset;
- if (size == 0)
- return (void*)-EINVAL;
- if ((dword)addr & ~PAGE_MASK)
- return (void*)-EINVAL;
- if (flags & MAP_ANONYMOUS) {
- auto* region = allocate_region(LinearAddress((dword)addr), size, "mmap", prot & PROT_READ, prot & PROT_WRITE, false);
- if (!region)
- return (void*)-ENOMEM;
- if (flags & MAP_SHARED)
- region->set_shared(true);
- return region->laddr().as_ptr();
- }
- if (offset & ~PAGE_MASK)
- return (void*)-EINVAL;
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return (void*)-EBADF;
- if (!descriptor->supports_mmap())
- return (void*)-ENODEV;
- auto* region = descriptor->mmap(*this, LinearAddress((dword)addr), offset, size, prot);
- if (!region)
- return (void*)-ENOMEM;
- if (flags & MAP_SHARED)
- region->set_shared(true);
- return region->laddr().as_ptr();
- }
- int Process::sys$munmap(void* addr, size_t size)
- {
- auto* region = region_from_range(LinearAddress((dword)addr), size);
- if (!region)
- return -EINVAL;
- if (!deallocate_region(*region))
- return -EINVAL;
- return 0;
- }
- int Process::sys$gethostname(char* buffer, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_write(buffer, size))
- return -EFAULT;
- LOCKER(*s_hostname_lock);
- if (size < (s_hostname->length() + 1))
- return -ENAMETOOLONG;
- strcpy(buffer, s_hostname->characters());
- return 0;
- }
- Process* Process::fork(RegisterDump& regs)
- {
- auto* child = new Process(String(m_name), m_uid, m_gid, m_pid, m_ring, m_cwd.copy_ref(), m_executable.copy_ref(), m_tty, this);
- if (!child)
- return nullptr;
- #ifdef FORK_DEBUG
- dbgprintf("fork: child=%p\n", child);
- #endif
- for (auto& region : m_regions) {
- #ifdef FORK_DEBUG
- dbgprintf("fork: cloning Region{%p} \"%s\" L%x\n", region.ptr(), region->name().characters(), region->laddr().get());
- #endif
- auto cloned_region = region->clone();
- child->m_regions.append(move(cloned_region));
- MM.map_region(*child, *child->m_regions.last());
- }
- for (auto gid : m_gids)
- child->m_gids.set(gid);
- auto& child_tss = child->main_thread().m_tss;
- child_tss.eax = 0; // fork() returns 0 in the child :^)
- child_tss.ebx = regs.ebx;
- child_tss.ecx = regs.ecx;
- child_tss.edx = regs.edx;
- child_tss.ebp = regs.ebp;
- child_tss.esp = regs.esp_if_crossRing;
- child_tss.esi = regs.esi;
- child_tss.edi = regs.edi;
- child_tss.eflags = regs.eflags;
- child_tss.eip = regs.eip;
- child_tss.cs = regs.cs;
- child_tss.ds = regs.ds;
- child_tss.es = regs.es;
- child_tss.fs = regs.fs;
- child_tss.gs = regs.gs;
- child_tss.ss = regs.ss_if_crossRing;
- #ifdef FORK_DEBUG
- dbgprintf("fork: child will begin executing at %w:%x with stack %w:%x, kstack %w:%x\n", child_tss.cs, child_tss.eip, child_tss.ss, child_tss.esp, child_tss.ss0, child_tss.esp0);
- #endif
- {
- InterruptDisabler disabler;
- g_processes->prepend(child);
- }
- #ifdef TASK_DEBUG
- kprintf("Process %u (%s) forked from %u @ %p\n", child->pid(), child->name().characters(), m_pid, child_tss.eip);
- #endif
- child->main_thread().set_state(Thread::State::Skip1SchedulerPass);
- return child;
- }
- pid_t Process::sys$fork(RegisterDump& regs)
- {
- auto* child = fork(regs);
- ASSERT(child);
- return child->pid();
- }
- int Process::do_exec(String path, Vector<String> arguments, Vector<String> environment)
- {
- ASSERT(is_ring3());
- dbgprintf("%s(%d) do_exec: thread_count() = %d\n", m_name.characters(), m_pid, thread_count());
- // FIXME(Thread): Kill any threads the moment we commit to the exec().
- ASSERT(thread_count() == 1);
- auto parts = path.split('/');
- if (parts.is_empty())
- return -ENOENT;
- auto result = VFS::the().open(path, 0, 0, cwd_inode());
- if (result.is_error())
- return result.error();
- auto descriptor = result.value();
- if (!descriptor->metadata().may_execute(m_euid, m_gids))
- return -EACCES;
- if (!descriptor->metadata().size) {
- return -ENOTIMPL;
- }
- dword entry_eip = 0;
- // FIXME: Is there a race here?
- auto old_page_directory = move(m_page_directory);
- m_page_directory = PageDirectory::create();
- #ifdef MM_DEBUG
- dbgprintf("Process %u exec: PD=%x created\n", pid(), m_page_directory.ptr());
- #endif
- ProcessPagingScope paging_scope(*this);
- auto vmo = VMObject::create_file_backed(descriptor->inode());
- #if 0
- // FIXME: I would like to do this, but it would instantiate all the damn inodes.
- vmo->set_name(descriptor->absolute_path());
- #else
- vmo->set_name("ELF image");
- #endif
- RetainPtr<Region> region = allocate_region_with_vmo(LinearAddress(), descriptor->metadata().size, vmo.copy_ref(), 0, "executable", true, false);
- if (this != ¤t->process()) {
- // FIXME: Don't force-load the entire executable at once, let the on-demand pager take care of it.
- bool success = region->page_in();
- ASSERT(success);
- }
- {
- // Okay, here comes the sleight of hand, pay close attention..
- auto old_regions = move(m_regions);
- m_regions.append(*region);
- ELFLoader loader(region->laddr().as_ptr());
- loader.map_section_hook = [&] (LinearAddress laddr, size_t size, size_t alignment, size_t offset_in_image, bool is_readable, bool is_writable, const String& name) {
- ASSERT(size);
- ASSERT(alignment == PAGE_SIZE);
- size = ceil_div(size, PAGE_SIZE) * PAGE_SIZE;
- (void) allocate_region_with_vmo(laddr, size, vmo.copy_ref(), offset_in_image, String(name), is_readable, is_writable);
- return laddr.as_ptr();
- };
- loader.alloc_section_hook = [&] (LinearAddress laddr, size_t size, size_t alignment, bool is_readable, bool is_writable, const String& name) {
- ASSERT(size);
- ASSERT(alignment == PAGE_SIZE);
- size += laddr.get() & 0xfff;
- laddr.mask(0xffff000);
- size = ceil_div(size, PAGE_SIZE) * PAGE_SIZE;
- (void) allocate_region(laddr, size, String(name), is_readable, is_writable);
- return laddr.as_ptr();
- };
- bool success = loader.load();
- if (!success || !loader.entry().get()) {
- m_page_directory = move(old_page_directory);
- // FIXME: RAII this somehow instead.
- ASSERT(¤t->process() == this);
- MM.enter_process_paging_scope(*this);
- m_regions = move(old_regions);
- kprintf("do_exec: Failure loading %s\n", path.characters());
- return -ENOEXEC;
- }
- entry_eip = loader.entry().get();
- }
- kfree(current->m_kernel_stack_for_signal_handler);
- current->m_kernel_stack_for_signal_handler = nullptr;
- current->m_signal_stack_user_region = nullptr;
- current->set_default_signal_dispositions();
- current->m_signal_mask = 0;
- current->m_pending_signals = 0;
- for (int i = 0; i < m_fds.size(); ++i) {
- auto& daf = m_fds[i];
- if (daf.descriptor && daf.flags & FD_CLOEXEC) {
- daf.descriptor->close();
- daf = { };
- }
- }
- // We cli() manually here because we don't want to get interrupted between do_exec() and Schedule::yield().
- // The reason is that the task redirection we've set up above will be clobbered by the timer IRQ.
- // If we used an InterruptDisabler that sti()'d on exit, we might timer tick'd too soon in exec().
- if (¤t->process() == this)
- cli();
- Scheduler::prepare_to_modify_tss(main_thread());
- m_name = parts.take_last();
- // ss0 sp!!!!!!!!!
- dword old_esp0 = main_thread().m_tss.esp0;
- memset(&main_thread().m_tss, 0, sizeof(main_thread().m_tss));
- main_thread().m_tss.eflags = 0x0202;
- main_thread().m_tss.eip = entry_eip;
- main_thread().m_tss.cs = 0x1b;
- main_thread().m_tss.ds = 0x23;
- main_thread().m_tss.es = 0x23;
- main_thread().m_tss.fs = 0x23;
- main_thread().m_tss.gs = 0x23;
- main_thread().m_tss.ss = 0x23;
- main_thread().m_tss.cr3 = page_directory().cr3();
- main_thread().make_userspace_stack_for_main_thread(move(arguments), move(environment));
- main_thread().m_tss.ss0 = 0x10;
- main_thread().m_tss.esp0 = old_esp0;
- main_thread().m_tss.ss2 = m_pid;
- m_executable = descriptor->inode();
- if (descriptor->metadata().is_setuid())
- m_euid = descriptor->metadata().uid;
- if (descriptor->metadata().is_setgid())
- m_egid = descriptor->metadata().gid;
- #ifdef TASK_DEBUG
- kprintf("Process %u (%s) exec'd %s @ %p\n", pid(), name().characters(), path.characters(), main_thread().tss().eip);
- #endif
- main_thread().set_state(Thread::State::Skip1SchedulerPass);
- return 0;
- }
- int Process::exec(String path, Vector<String> arguments, Vector<String> environment)
- {
- // The bulk of exec() is done by do_exec(), which ensures that all locals
- // are cleaned up by the time we yield-teleport below.
- int rc = do_exec(move(path), move(arguments), move(environment));
- if (rc < 0)
- return rc;
- if (¤t->process() == this) {
- Scheduler::yield();
- ASSERT_NOT_REACHED();
- }
- return 0;
- }
- int Process::sys$execve(const char* filename, const char** argv, const char** envp)
- {
- // NOTE: Be extremely careful with allocating any kernel memory in exec().
- // On success, the kernel stack will be lost.
- if (!validate_read_str(filename))
- return -EFAULT;
- if (argv) {
- if (!validate_read_typed(argv))
- return -EFAULT;
- for (size_t i = 0; argv[i]; ++i) {
- if (!validate_read_str(argv[i]))
- return -EFAULT;
- }
- }
- if (envp) {
- if (!validate_read_typed(envp))
- return -EFAULT;
- for (size_t i = 0; envp[i]; ++i) {
- if (!validate_read_str(envp[i]))
- return -EFAULT;
- }
- }
- String path(filename);
- Vector<String> arguments;
- Vector<String> environment;
- {
- auto parts = path.split('/');
- if (argv) {
- for (size_t i = 0; argv[i]; ++i) {
- arguments.append(argv[i]);
- }
- } else {
- arguments.append(parts.last());
- }
- if (envp) {
- for (size_t i = 0; envp[i]; ++i)
- environment.append(envp[i]);
- }
- }
- int rc = exec(move(path), move(arguments), move(environment));
- ASSERT(rc < 0); // We should never continue after a successful exec!
- return rc;
- }
- Process* Process::create_user_process(const String& path, uid_t uid, gid_t gid, pid_t parent_pid, int& error, Vector<String>&& arguments, Vector<String>&& environment, TTY* tty)
- {
- // FIXME: Don't split() the path twice (sys$spawn also does it...)
- auto parts = path.split('/');
- if (arguments.is_empty()) {
- arguments.append(parts.last());
- }
- RetainPtr<Inode> cwd;
- {
- InterruptDisabler disabler;
- if (auto* parent = Process::from_pid(parent_pid))
- cwd = parent->m_cwd.copy_ref();
- }
- if (!cwd)
- cwd = VFS::the().root_inode();
- auto* process = new Process(parts.take_last(), uid, gid, parent_pid, Ring3, move(cwd), nullptr, tty);
- error = process->exec(path, move(arguments), move(environment));
- if (error != 0) {
- delete process;
- return nullptr;
- }
- {
- InterruptDisabler disabler;
- g_processes->prepend(process);
- }
- #ifdef TASK_DEBUG
- kprintf("Process %u (%s) spawned @ %p\n", process->pid(), process->name().characters(), process->main_thread().tss().eip);
- #endif
- error = 0;
- return process;
- }
- Process* Process::create_kernel_process(String&& name, void (*e)())
- {
- auto* process = new Process(move(name), (uid_t)0, (gid_t)0, (pid_t)0, Ring0);
- process->main_thread().tss().eip = (dword)e;
- if (process->pid() != 0) {
- InterruptDisabler disabler;
- g_processes->prepend(process);
- #ifdef TASK_DEBUG
- kprintf("Kernel process %u (%s) spawned @ %p\n", process->pid(), process->name().characters(), process->main_thread().tss().eip);
- #endif
- }
- process->main_thread().set_state(Thread::State::Runnable);
- return process;
- }
- Process::Process(String&& name, uid_t uid, gid_t gid, pid_t ppid, RingLevel ring, RetainPtr<Inode>&& cwd, RetainPtr<Inode>&& executable, TTY* tty, Process* fork_parent)
- : m_name(move(name))
- , m_pid(next_pid++) // FIXME: RACE: This variable looks racy!
- , m_uid(uid)
- , m_gid(gid)
- , m_euid(uid)
- , m_egid(gid)
- , m_ring(ring)
- , m_cwd(move(cwd))
- , m_executable(move(executable))
- , m_tty(tty)
- , m_ppid(ppid)
- , m_big_lock("Big Process Lock")
- {
- dbgprintf("Process: New process PID=%u with name=%s\n", m_pid, m_name.characters());
- m_page_directory = PageDirectory::create();
- #ifdef MM_DEBUG
- dbgprintf("Process %u ctor: PD=%x created\n", pid(), m_page_directory.ptr());
- #endif
- // NOTE: fork() doesn't clone all threads; the thread that called fork() becomes the main thread in the new process.
- if (fork_parent)
- m_main_thread = current->clone(*this);
- else
- m_main_thread = new Thread(*this);
- m_gids.set(m_gid);
- if (fork_parent) {
- m_sid = fork_parent->m_sid;
- m_pgid = fork_parent->m_pgid;
- } else {
- // FIXME: Use a ProcessHandle? Presumably we're executing *IN* the parent right now though..
- InterruptDisabler disabler;
- if (auto* parent = Process::from_pid(m_ppid)) {
- m_sid = parent->m_sid;
- m_pgid = parent->m_pgid;
- }
- }
- if (fork_parent) {
- m_fds.resize(fork_parent->m_fds.size());
- for (int i = 0; i < fork_parent->m_fds.size(); ++i) {
- if (!fork_parent->m_fds[i].descriptor)
- continue;
- #ifdef FORK_DEBUG
- dbgprintf("fork: cloning fd %u... (%p) istty? %u\n", i, fork_parent->m_fds[i].descriptor.ptr(), fork_parent->m_fds[i].descriptor->is_tty());
- #endif
- m_fds[i].descriptor = fork_parent->m_fds[i].descriptor->clone();
- m_fds[i].flags = fork_parent->m_fds[i].flags;
- }
- } else {
- m_fds.resize(m_max_open_file_descriptors);
- auto& device_to_use_as_tty = tty ? (CharacterDevice&)*tty : NullDevice::the();
- m_fds[0].set(*device_to_use_as_tty.open(O_RDONLY).value());
- m_fds[1].set(*device_to_use_as_tty.open(O_WRONLY).value());
- m_fds[2].set(*device_to_use_as_tty.open(O_WRONLY).value());
- }
- if (fork_parent)
- m_next_region = fork_parent->m_next_region;
- else
- m_next_region = LinearAddress(0x10000000);
- if (fork_parent) {
- m_sid = fork_parent->m_sid;
- m_pgid = fork_parent->m_pgid;
- m_umask = fork_parent->m_umask;
- }
- }
- Process::~Process()
- {
- dbgprintf("~Process{%p} name=%s pid=%d, m_fds=%d\n", this, m_name.characters(), pid(), m_fds.size());
- delete m_main_thread;
- m_main_thread = nullptr;
- }
- void Process::dump_regions()
- {
- kprintf("Process %s(%u) regions:\n", name().characters(), pid());
- kprintf("BEGIN END SIZE NAME\n");
- for (auto& region : m_regions) {
- kprintf("%x -- %x %x %s\n",
- region->laddr().get(),
- region->laddr().offset(region->size() - 1).get(),
- region->size(),
- region->name().characters());
- }
- }
- void Process::sys$exit(int status)
- {
- cli();
- #ifdef TASK_DEBUG
- kprintf("sys$exit: %s(%u) exit with status %d\n", name().characters(), pid(), status);
- #endif
- m_termination_status = status;
- m_termination_signal = 0;
- die();
- ASSERT_NOT_REACHED();
- }
- void Process::create_signal_trampolines_if_needed()
- {
- if (!m_return_to_ring3_from_signal_trampoline.is_null())
- return;
- // FIXME: This should be a global trampoline shared by all processes, not one created per process!
- // FIXME: Remap as read-only after setup.
- auto* region = allocate_region(LinearAddress(), PAGE_SIZE, "Signal trampolines", true, true);
- m_return_to_ring3_from_signal_trampoline = region->laddr();
- byte* code_ptr = m_return_to_ring3_from_signal_trampoline.as_ptr();
- *code_ptr++ = 0x58; // pop eax (Argument to signal handler (ignored here))
- *code_ptr++ = 0x5a; // pop edx (Original signal mask to restore)
- *code_ptr++ = 0xb8; // mov eax, <dword>
- *(dword*)code_ptr = Syscall::SC_restore_signal_mask;
- code_ptr += sizeof(dword);
- *code_ptr++ = 0xcd; // int 0x82
- *code_ptr++ = 0x82;
- *code_ptr++ = 0x83; // add esp, (stack alignment padding)
- *code_ptr++ = 0xc4;
- *code_ptr++ = sizeof(dword) * 3;
- *code_ptr++ = 0x61; // popa
- *code_ptr++ = 0x9d; // popf
- *code_ptr++ = 0xc3; // ret
- *code_ptr++ = 0x0f; // ud2
- *code_ptr++ = 0x0b;
- m_return_to_ring0_from_signal_trampoline = LinearAddress((dword)code_ptr);
- *code_ptr++ = 0x58; // pop eax (Argument to signal handler (ignored here))
- *code_ptr++ = 0x5a; // pop edx (Original signal mask to restore)
- *code_ptr++ = 0xb8; // mov eax, <dword>
- *(dword*)code_ptr = Syscall::SC_restore_signal_mask;
- code_ptr += sizeof(dword);
- *code_ptr++ = 0xcd; // int 0x82
- // NOTE: Stack alignment padding doesn't matter when returning to ring0.
- // Nothing matters really, as we're returning by replacing the entire TSS.
- *code_ptr++ = 0x82;
- *code_ptr++ = 0xb8; // mov eax, <dword>
- *(dword*)code_ptr = Syscall::SC_sigreturn;
- code_ptr += sizeof(dword);
- *code_ptr++ = 0xcd; // int 0x82
- *code_ptr++ = 0x82;
- *code_ptr++ = 0x0f; // ud2
- *code_ptr++ = 0x0b;
- }
- int Process::sys$restore_signal_mask(dword mask)
- {
- current->m_signal_mask = mask;
- return 0;
- }
- void Process::sys$sigreturn()
- {
- InterruptDisabler disabler;
- Scheduler::prepare_to_modify_tss(*current);
- current->m_tss = current->m_tss_to_resume_kernel;
- #ifdef SIGNAL_DEBUG
- kprintf("sys$sigreturn in %s(%u)\n", name().characters(), pid());
- auto& tss = current->tss();
- kprintf(" -> resuming execution at %w:%x stack %w:%x flags %x cr3 %x\n", tss.cs, tss.eip, tss.ss, tss.esp, tss.eflags, tss.cr3);
- #endif
- current->set_state(Thread::State::Skip1SchedulerPass);
- Scheduler::yield();
- kprintf("sys$sigreturn failed in %s(%u)\n", name().characters(), pid());
- ASSERT_NOT_REACHED();
- }
- void Process::crash()
- {
- ASSERT_INTERRUPTS_DISABLED();
- ASSERT(!is_dead());
- m_termination_signal = SIGSEGV;
- dump_regions();
- ASSERT(is_ring3());
- die();
- ASSERT_NOT_REACHED();
- }
- Process* Process::from_pid(pid_t pid)
- {
- ASSERT_INTERRUPTS_DISABLED();
- for (auto* process = g_processes->head(); process; process = process->next()) {
- if (process->pid() == pid)
- return process;
- }
- return nullptr;
- }
- FileDescriptor* Process::file_descriptor(int fd)
- {
- if (fd < 0)
- return nullptr;
- if (fd < m_fds.size())
- return m_fds[fd].descriptor.ptr();
- return nullptr;
- }
- const FileDescriptor* Process::file_descriptor(int fd) const
- {
- if (fd < 0)
- return nullptr;
- if (fd < m_fds.size())
- return m_fds[fd].descriptor.ptr();
- return nullptr;
- }
- ssize_t Process::sys$get_dir_entries(int fd, void* buffer, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_write(buffer, size))
- return -EFAULT;
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- return descriptor->get_dir_entries((byte*)buffer, size);
- }
- int Process::sys$lseek(int fd, off_t offset, int whence)
- {
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- return descriptor->seek(offset, whence);
- }
- int Process::sys$ttyname_r(int fd, char* buffer, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_write(buffer, size))
- return -EFAULT;
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_tty())
- return -ENOTTY;
- auto tty_name = descriptor->tty()->tty_name();
- if (size < tty_name.length() + 1)
- return -ERANGE;
- strcpy(buffer, tty_name.characters());
- return 0;
- }
- int Process::sys$ptsname_r(int fd, char* buffer, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_write(buffer, size))
- return -EFAULT;
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- auto* master_pty = descriptor->master_pty();
- if (!master_pty)
- return -ENOTTY;
- auto pts_name = master_pty->pts_name();
- if (size < pts_name.length() + 1)
- return -ERANGE;
- strcpy(buffer, pts_name.characters());
- return 0;
- }
- ssize_t Process::sys$write(int fd, const byte* data, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_read(data, size))
- return -EFAULT;
- #ifdef DEBUG_IO
- dbgprintf("%s(%u): sys$write(%d, %p, %u)\n", name().characters(), pid(), fd, data, size);
- #endif
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- ssize_t nwritten = 0;
- if (descriptor->is_blocking()) {
- while (nwritten < (ssize_t)size) {
- #ifdef IO_DEBUG
- dbgprintf("while %u < %u\n", nwritten, size);
- #endif
- if (!descriptor->can_write(*this)) {
- #ifdef IO_DEBUG
- dbgprintf("block write on %d\n", fd);
- #endif
- current->m_blocked_fd = fd;
- current->block(Thread::State::BlockedWrite);
- }
- ssize_t rc = descriptor->write(*this, (const byte*)data + nwritten, size - nwritten);
- #ifdef IO_DEBUG
- dbgprintf(" -> write returned %d\n", rc);
- #endif
- if (rc < 0) {
- // FIXME: Support returning partial nwritten with errno.
- ASSERT(nwritten == 0);
- return rc;
- }
- if (rc == 0)
- break;
- if (current->has_unmasked_pending_signals()) {
- current->block(Thread::State::BlockedSignal);
- if (nwritten == 0)
- return -EINTR;
- }
- nwritten += rc;
- }
- } else {
- nwritten = descriptor->write(*this, (const byte*)data, size);
- }
- if (current->has_unmasked_pending_signals()) {
- current->block(Thread::State::BlockedSignal);
- if (nwritten == 0)
- return -EINTR;
- }
- return nwritten;
- }
- ssize_t Process::sys$read(int fd, byte* buffer, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_write(buffer, size))
- return -EFAULT;
- #ifdef DEBUG_IO
- dbgprintf("%s(%u) sys$read(%d, %p, %u)\n", name().characters(), pid(), fd, buffer, size);
- #endif
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- if (descriptor->is_blocking()) {
- if (!descriptor->can_read(*this)) {
- current->m_blocked_fd = fd;
- current->block(Thread::State::BlockedRead);
- if (current->m_was_interrupted_while_blocked)
- return -EINTR;
- }
- }
- return descriptor->read(*this, buffer, size);
- }
- int Process::sys$close(int fd)
- {
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- int rc = descriptor->close();
- m_fds[fd] = { };
- return rc;
- }
- int Process::sys$utime(const char* pathname, const utimbuf* buf)
- {
- if (!validate_read_str(pathname))
- return -EFAULT;
- if (buf && !validate_read_typed(buf))
- return -EFAULT;
- time_t atime;
- time_t mtime;
- if (buf) {
- atime = buf->actime;
- mtime = buf->modtime;
- } else {
- struct timeval now;
- kgettimeofday(now);
- mtime = now.tv_sec;
- atime = now.tv_sec;
- }
- return VFS::the().utime(String(pathname), cwd_inode(), atime, mtime);
- }
- int Process::sys$access(const char* pathname, int mode)
- {
- if (!validate_read_str(pathname))
- return -EFAULT;
- return VFS::the().access(String(pathname), mode, cwd_inode());
- }
- int Process::sys$fcntl(int fd, int cmd, dword arg)
- {
- (void) cmd;
- (void) arg;
- dbgprintf("sys$fcntl: fd=%d, cmd=%d, arg=%u\n", fd, cmd, arg);
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- // NOTE: The FD flags are not shared between FileDescriptor objects.
- // This means that dup() doesn't copy the FD_CLOEXEC flag!
- switch (cmd) {
- case F_DUPFD: {
- int arg_fd = (int)arg;
- if (arg_fd < 0)
- return -EINVAL;
- int new_fd = -1;
- for (int i = arg_fd; i < (int)m_max_open_file_descriptors; ++i) {
- if (!m_fds[i]) {
- new_fd = i;
- break;
- }
- }
- if (new_fd == -1)
- return -EMFILE;
- m_fds[new_fd].set(*descriptor);
- break;
- }
- case F_GETFD:
- return m_fds[fd].flags;
- case F_SETFD:
- m_fds[fd].flags = arg;
- break;
- case F_GETFL:
- return descriptor->file_flags();
- case F_SETFL:
- // FIXME: Support changing O_NONBLOCK
- descriptor->set_file_flags(arg);
- break;
- default:
- ASSERT_NOT_REACHED();
- }
- return 0;
- }
- int Process::sys$fstat(int fd, stat* statbuf)
- {
- if (!validate_write_typed(statbuf))
- return -EFAULT;
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- return descriptor->fstat(*statbuf);
- }
- int Process::sys$lstat(const char* path, stat* statbuf)
- {
- if (!validate_write_typed(statbuf))
- return -EFAULT;
- return VFS::the().stat(String(path), O_NOFOLLOW_NOERROR, cwd_inode(), *statbuf);
- }
- int Process::sys$stat(const char* path, stat* statbuf)
- {
- if (!validate_write_typed(statbuf))
- return -EFAULT;
- return VFS::the().stat(String(path), O_NOFOLLOW_NOERROR, cwd_inode(), *statbuf);
- }
- int Process::sys$readlink(const char* path, char* buffer, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_read_str(path))
- return -EFAULT;
- if (!validate_write(buffer, size))
- return -EFAULT;
- auto result = VFS::the().open(path, O_RDONLY | O_NOFOLLOW_NOERROR, 0, cwd_inode());
- if (result.is_error())
- return result.error();
- auto descriptor = result.value();
- if (!descriptor->metadata().is_symlink())
- return -EINVAL;
- auto contents = descriptor->read_entire_file(*this);
- if (!contents)
- return -EIO; // FIXME: Get a more detailed error from VFS.
- memcpy(buffer, contents.pointer(), min(size, (ssize_t)contents.size()));
- if (contents.size() + 1 < size)
- buffer[contents.size()] = '\0';
- return 0;
- }
- int Process::sys$chdir(const char* path)
- {
- if (!validate_read_str(path))
- return -EFAULT;
- auto directory_or_error = VFS::the().open_directory(String(path), cwd_inode());
- if (directory_or_error.is_error())
- return directory_or_error.error();
- m_cwd = *directory_or_error.value();
- return 0;
- }
- int Process::sys$getcwd(char* buffer, ssize_t size)
- {
- if (size < 0)
- return -EINVAL;
- if (!validate_write(buffer, size))
- return -EFAULT;
- auto path_or_error = VFS::the().absolute_path(cwd_inode());
- if (path_or_error.is_error())
- return path_or_error.error();
- auto path = path_or_error.value();
- if (size < path.length() + 1)
- return -ERANGE;
- strcpy(buffer, path.characters());
- return 0;
- }
- int Process::number_of_open_file_descriptors() const
- {
- int count = 0;
- for (auto& descriptor : m_fds) {
- if (descriptor)
- ++count;
- }
- return count;
- }
- int Process::sys$open(const char* path, int options, mode_t mode)
- {
- #ifdef DEBUG_IO
- dbgprintf("%s(%u) sys$open(\"%s\")\n", name().characters(), pid(), path);
- #endif
- if (!validate_read_str(path))
- return -EFAULT;
- if (number_of_open_file_descriptors() >= m_max_open_file_descriptors)
- return -EMFILE;
- auto result = VFS::the().open(path, options, mode & ~umask(), cwd_inode());
- if (result.is_error())
- return result.error();
- auto descriptor = result.value();
- if (options & O_DIRECTORY && !descriptor->is_directory())
- return -ENOTDIR; // FIXME: This should be handled by VFS::open.
- if (options & O_NONBLOCK)
- descriptor->set_blocking(false);
- int fd = 0;
- for (; fd < (int)m_max_open_file_descriptors; ++fd) {
- if (!m_fds[fd])
- break;
- }
- dword flags = (options & O_CLOEXEC) ? FD_CLOEXEC : 0;
- m_fds[fd].set(move(descriptor), flags);
- return fd;
- }
- int Process::alloc_fd()
- {
- int fd = -1;
- for (int i = 0; i < (int)m_max_open_file_descriptors; ++i) {
- if (!m_fds[i]) {
- fd = i;
- break;
- }
- }
- return fd;
- }
- int Process::sys$pipe(int pipefd[2])
- {
- if (!validate_write_typed(pipefd))
- return -EFAULT;
- if (number_of_open_file_descriptors() + 2 > max_open_file_descriptors())
- return -EMFILE;
- auto fifo = FIFO::create();
- int reader_fd = alloc_fd();
- m_fds[reader_fd].set(FileDescriptor::create_pipe_reader(*fifo));
- pipefd[0] = reader_fd;
- int writer_fd = alloc_fd();
- m_fds[writer_fd].set(FileDescriptor::create_pipe_writer(*fifo));
- pipefd[1] = writer_fd;
- return 0;
- }
- int Process::sys$killpg(int pgrp, int signum)
- {
- if (signum < 1 || signum >= 32)
- return -EINVAL;
- (void) pgrp;
- ASSERT_NOT_REACHED();
- }
- int Process::sys$setuid(uid_t uid)
- {
- if (uid != m_uid && !is_superuser())
- return -EPERM;
- m_uid = uid;
- m_euid = uid;
- return 0;
- }
- int Process::sys$setgid(gid_t gid)
- {
- if (gid != m_gid && !is_superuser())
- return -EPERM;
- m_gid = gid;
- m_egid = gid;
- return 0;
- }
- unsigned Process::sys$alarm(unsigned seconds)
- {
- (void) seconds;
- ASSERT_NOT_REACHED();
- }
- int Process::sys$uname(utsname* buf)
- {
- if (!validate_write_typed(buf))
- return -EFAULT;
- strcpy(buf->sysname, "Serenity");
- strcpy(buf->release, "1.0-dev");
- strcpy(buf->version, "FIXME");
- strcpy(buf->machine, "i386");
- LOCKER(*s_hostname_lock);
- strncpy(buf->nodename, s_hostname->characters(), sizeof(utsname::nodename));
- return 0;
- }
- int Process::sys$isatty(int fd)
- {
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_tty())
- return -ENOTTY;
- return 1;
- }
- int Process::sys$kill(pid_t pid, int signal)
- {
- if (signal < 0 || signal >= 32)
- return -EINVAL;
- if (pid == 0) {
- // FIXME: Send to same-group processes.
- ASSERT(pid != 0);
- }
- if (pid == -1) {
- // FIXME: Send to all processes.
- ASSERT(pid != -1);
- }
- if (pid == m_pid) {
- current->send_signal(signal, this);
- Scheduler::yield();
- return 0;
- }
- InterruptDisabler disabler;
- auto* peer = Process::from_pid(pid);
- if (!peer)
- return -ESRCH;
- // FIXME: Allow sending SIGCONT to everyone in the process group.
- // FIXME: Should setuid processes have some special treatment here?
- if (!is_superuser() && m_euid != peer->m_uid && m_uid != peer->m_uid)
- return -EPERM;
- if (peer->is_ring0() && signal == SIGKILL) {
- kprintf("%s(%u) attempted to send SIGKILL to ring 0 process %s(%u)\n", name().characters(), m_pid, peer->name().characters(), peer->pid());
- return -EPERM;
- }
- peer->send_signal(signal, this);
- return 0;
- }
- int Process::sys$usleep(useconds_t usec)
- {
- if (!usec)
- return 0;
- current->sleep(usec / 1000);
- if (current->m_wakeup_time > system.uptime) {
- ASSERT(current->m_was_interrupted_while_blocked);
- dword ticks_left_until_original_wakeup_time = current->m_wakeup_time - system.uptime;
- return ticks_left_until_original_wakeup_time / TICKS_PER_SECOND;
- }
- return 0;
- }
- int Process::sys$sleep(unsigned seconds)
- {
- if (!seconds)
- return 0;
- current->sleep(seconds * TICKS_PER_SECOND);
- if (current->m_wakeup_time > system.uptime) {
- ASSERT(current->m_was_interrupted_while_blocked);
- dword ticks_left_until_original_wakeup_time = current->m_wakeup_time - system.uptime;
- return ticks_left_until_original_wakeup_time / TICKS_PER_SECOND;
- }
- return 0;
- }
- void kgettimeofday(timeval& tv)
- {
- tv.tv_sec = RTC::boot_time() + PIT::seconds_since_boot();
- tv.tv_usec = PIT::ticks_this_second() * 1000;
- }
- int Process::sys$gettimeofday(timeval* tv)
- {
- if (!validate_write_typed(tv))
- return -EFAULT;
- kgettimeofday(*tv);
- return 0;
- }
- uid_t Process::sys$getuid()
- {
- return m_uid;
- }
- gid_t Process::sys$getgid()
- {
- return m_gid;
- }
- uid_t Process::sys$geteuid()
- {
- return m_euid;
- }
- gid_t Process::sys$getegid()
- {
- return m_egid;
- }
- pid_t Process::sys$getpid()
- {
- return m_pid;
- }
- pid_t Process::sys$getppid()
- {
- return m_ppid;
- }
- mode_t Process::sys$umask(mode_t mask)
- {
- auto old_mask = m_umask;
- m_umask = mask & 0777;
- return old_mask;
- }
- int Process::reap(Process& process)
- {
- int exit_status;
- {
- InterruptDisabler disabler;
- exit_status = (process.m_termination_status << 8) | process.m_termination_signal;
- if (process.ppid()) {
- auto* parent = Process::from_pid(process.ppid());
- if (parent) {
- parent->m_ticks_in_user_for_dead_children += process.m_ticks_in_user + process.m_ticks_in_user_for_dead_children;
- parent->m_ticks_in_kernel_for_dead_children += process.m_ticks_in_kernel + process.m_ticks_in_kernel_for_dead_children;
- }
- }
- dbgprintf("reap: %s(%u) {%s}\n", process.name().characters(), process.pid(), to_string(process.state()));
- ASSERT(process.is_dead());
- g_processes->remove(&process);
- }
- delete &process;
- return exit_status;
- }
- pid_t Process::sys$waitpid(pid_t waitee, int* wstatus, int options)
- {
- dbgprintf("sys$waitpid(%d, %p, %d)\n", waitee, wstatus, options);
- // FIXME: Respect options
- (void) options;
- if (wstatus)
- if (!validate_write_typed(wstatus))
- return -EFAULT;
- int dummy_wstatus;
- int& exit_status = wstatus ? *wstatus : dummy_wstatus;
- {
- InterruptDisabler disabler;
- if (waitee != -1 && !Process::from_pid(waitee))
- return -ECHILD;
- }
- if (options & WNOHANG) {
- if (waitee == -1) {
- pid_t reaped_pid = 0;
- InterruptDisabler disabler;
- for_each_child([&reaped_pid, &exit_status] (Process& process) {
- if (process.is_dead()) {
- reaped_pid = process.pid();
- exit_status = reap(process);
- }
- return true;
- });
- return reaped_pid;
- } else {
- ASSERT(waitee > 0); // FIXME: Implement other PID specs.
- InterruptDisabler disabler;
- auto* waitee_process = Process::from_pid(waitee);
- if (!waitee_process)
- return -ECHILD;
- if (waitee_process->is_dead()) {
- exit_status = reap(*waitee_process);
- return waitee;
- }
- return 0;
- }
- }
- current->m_waitee_pid = waitee;
- current->block(Thread::State::BlockedWait);
- if (current->m_was_interrupted_while_blocked)
- return -EINTR;
- Process* waitee_process;
- {
- InterruptDisabler disabler;
- // NOTE: If waitee was -1, m_waitee will have been filled in by the scheduler.
- waitee_process = Process::from_pid(current->m_waitee_pid);
- }
- ASSERT(waitee_process);
- exit_status = reap(*waitee_process);
- return current->m_waitee_pid;
- }
- enum class KernelMemoryCheckResult {
- NotInsideKernelMemory,
- AccessGranted,
- AccessDenied
- };
- static KernelMemoryCheckResult check_kernel_memory_access(LinearAddress laddr, bool is_write)
- {
- auto* kernel_elf_header = (Elf32_Ehdr*)0xf000;
- auto* kernel_program_headers = (Elf32_Phdr*)(0xf000 + kernel_elf_header->e_phoff);
- for (unsigned i = 0; i < kernel_elf_header->e_phnum; ++i) {
- auto& segment = kernel_program_headers[i];
- if (segment.p_type != PT_LOAD || !segment.p_vaddr || !segment.p_memsz)
- continue;
- if (laddr.get() < segment.p_vaddr || laddr.get() > (segment.p_vaddr + segment.p_memsz))
- continue;
- if (is_write && !(kernel_program_headers[i].p_flags & PF_W))
- return KernelMemoryCheckResult::AccessDenied;
- if (!is_write && !(kernel_program_headers[i].p_flags & PF_R))
- return KernelMemoryCheckResult::AccessDenied;
- return KernelMemoryCheckResult::AccessGranted;
- }
- return KernelMemoryCheckResult::NotInsideKernelMemory;
- }
- bool Process::validate_read_from_kernel(LinearAddress laddr) const
- {
- // We check extra carefully here since the first 4MB of the address space is identity-mapped.
- // This code allows access outside of the known used address ranges to get caught.
- auto kmc_result = check_kernel_memory_access(laddr, false);
- if (kmc_result == KernelMemoryCheckResult::AccessGranted)
- return true;
- if (kmc_result == KernelMemoryCheckResult::AccessDenied)
- return false;
- if (is_kmalloc_address(laddr.as_ptr()))
- return true;
- return validate_read(laddr.as_ptr(), 1);
- }
- bool Process::validate_read_str(const char* str)
- {
- if (!validate_read(str, 1))
- return false;
- return validate_read(str, strlen(str) + 1);
- }
- bool Process::validate_read(const void* address, ssize_t size) const
- {
- ASSERT(size >= 0);
- LinearAddress first_address((dword)address);
- LinearAddress last_address = first_address.offset(size - 1);
- if (is_ring0()) {
- auto kmc_result = check_kernel_memory_access(first_address, false);
- if (kmc_result == KernelMemoryCheckResult::AccessGranted)
- return true;
- if (kmc_result == KernelMemoryCheckResult::AccessDenied)
- return false;
- if (is_kmalloc_address(address))
- return true;
- }
- ASSERT(size);
- if (!size)
- return false;
- if (first_address.page_base() != last_address.page_base()) {
- if (!MM.validate_user_read(*this, last_address))
- return false;
- }
- return MM.validate_user_read(*this, first_address);
- }
- bool Process::validate_write(void* address, ssize_t size) const
- {
- ASSERT(size >= 0);
- LinearAddress first_address((dword)address);
- LinearAddress last_address = first_address.offset(size - 1);
- if (is_ring0()) {
- if (is_kmalloc_address(address))
- return true;
- auto kmc_result = check_kernel_memory_access(first_address, true);
- if (kmc_result == KernelMemoryCheckResult::AccessGranted)
- return true;
- if (kmc_result == KernelMemoryCheckResult::AccessDenied)
- return false;
- }
- if (!size)
- return false;
- if (first_address.page_base() != last_address.page_base()) {
- if (!MM.validate_user_write(*this, last_address))
- return false;
- }
- return MM.validate_user_write(*this, last_address);
- }
- pid_t Process::sys$getsid(pid_t pid)
- {
- if (pid == 0)
- return m_sid;
- InterruptDisabler disabler;
- auto* process = Process::from_pid(pid);
- if (!process)
- return -ESRCH;
- if (m_sid != process->m_sid)
- return -EPERM;
- return process->m_sid;
- }
- pid_t Process::sys$setsid()
- {
- InterruptDisabler disabler;
- bool found_process_with_same_pgid_as_my_pid = false;
- Process::for_each_in_pgrp(pid(), [&] (auto&) {
- found_process_with_same_pgid_as_my_pid = true;
- return false;
- });
- if (found_process_with_same_pgid_as_my_pid)
- return -EPERM;
- m_sid = m_pid;
- m_pgid = m_pid;
- return m_sid;
- }
- pid_t Process::sys$getpgid(pid_t pid)
- {
- if (pid == 0)
- return m_pgid;
- InterruptDisabler disabler; // FIXME: Use a ProcessHandle
- auto* process = Process::from_pid(pid);
- if (!process)
- return -ESRCH;
- return process->m_pgid;
- }
- pid_t Process::sys$getpgrp()
- {
- return m_pgid;
- }
- static pid_t get_sid_from_pgid(pid_t pgid)
- {
- InterruptDisabler disabler;
- auto* group_leader = Process::from_pid(pgid);
- if (!group_leader)
- return -1;
- return group_leader->sid();
- }
- int Process::sys$setpgid(pid_t specified_pid, pid_t specified_pgid)
- {
- InterruptDisabler disabler; // FIXME: Use a ProcessHandle
- pid_t pid = specified_pid ? specified_pid : m_pid;
- if (specified_pgid < 0)
- return -EINVAL;
- auto* process = Process::from_pid(pid);
- if (!process)
- return -ESRCH;
- pid_t new_pgid = specified_pgid ? specified_pgid : process->m_pid;
- pid_t current_sid = get_sid_from_pgid(process->m_pgid);
- pid_t new_sid = get_sid_from_pgid(new_pgid);
- if (current_sid != new_sid) {
- // Can't move a process between sessions.
- return -EPERM;
- }
- // FIXME: There are more EPERM conditions to check for here..
- process->m_pgid = new_pgid;
- return 0;
- }
- int Process::sys$ioctl(int fd, unsigned request, unsigned arg)
- {
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_device())
- return -ENOTTY;
- return descriptor->device()->ioctl(*this, request, arg);
- }
- int Process::sys$getdtablesize()
- {
- return m_max_open_file_descriptors;
- }
- int Process::sys$dup(int old_fd)
- {
- auto* descriptor = file_descriptor(old_fd);
- if (!descriptor)
- return -EBADF;
- if (number_of_open_file_descriptors() == m_max_open_file_descriptors)
- return -EMFILE;
- int new_fd = 0;
- for (; new_fd < (int)m_max_open_file_descriptors; ++new_fd) {
- if (!m_fds[new_fd])
- break;
- }
- m_fds[new_fd].set(*descriptor);
- return new_fd;
- }
- int Process::sys$dup2(int old_fd, int new_fd)
- {
- auto* descriptor = file_descriptor(old_fd);
- if (!descriptor)
- return -EBADF;
- if (number_of_open_file_descriptors() == m_max_open_file_descriptors)
- return -EMFILE;
- m_fds[new_fd].set(*descriptor);
- return new_fd;
- }
- int Process::sys$sigprocmask(int how, const sigset_t* set, sigset_t* old_set)
- {
- if (old_set) {
- if (!validate_write_typed(old_set))
- return -EFAULT;
- *old_set = current->m_signal_mask;
- }
- if (set) {
- if (!validate_read_typed(set))
- return -EFAULT;
- switch (how) {
- case SIG_BLOCK:
- current->m_signal_mask &= ~(*set);
- break;
- case SIG_UNBLOCK:
- current->m_signal_mask |= *set;
- break;
- case SIG_SETMASK:
- current->m_signal_mask = *set;
- break;
- default:
- return -EINVAL;
- }
- }
- return 0;
- }
- int Process::sys$sigpending(sigset_t* set)
- {
- if (!validate_write_typed(set))
- return -EFAULT;
- *set = current->m_pending_signals;
- return 0;
- }
- int Process::sys$sigaction(int signum, const sigaction* act, sigaction* old_act)
- {
- if (signum < 1 || signum >= 32 || signum == SIGKILL || signum == SIGSTOP)
- return -EINVAL;
- if (!validate_read_typed(act))
- return -EFAULT;
- InterruptDisabler disabler; // FIXME: This should use a narrower lock. Maybe a way to ignore signals temporarily?
- auto& action = current->m_signal_action_data[signum];
- if (old_act) {
- if (!validate_write_typed(old_act))
- return -EFAULT;
- old_act->sa_flags = action.flags;
- old_act->sa_restorer = (decltype(old_act->sa_restorer))action.restorer.get();
- old_act->sa_sigaction = (decltype(old_act->sa_sigaction))action.handler_or_sigaction.get();
- }
- action.restorer = LinearAddress((dword)act->sa_restorer);
- action.flags = act->sa_flags;
- action.handler_or_sigaction = LinearAddress((dword)act->sa_sigaction);
- return 0;
- }
- int Process::sys$getgroups(ssize_t count, gid_t* gids)
- {
- if (count < 0)
- return -EINVAL;
- ASSERT(m_gids.size() < MAX_PROCESS_GIDS);
- if (!count)
- return m_gids.size();
- if (count != (int)m_gids.size())
- return -EINVAL;
- if (!validate_write_typed(gids, m_gids.size()))
- return -EFAULT;
- size_t i = 0;
- for (auto gid : m_gids)
- gids[i++] = gid;
- return 0;
- }
- int Process::sys$setgroups(ssize_t count, const gid_t* gids)
- {
- if (count < 0)
- return -EINVAL;
- if (!is_superuser())
- return -EPERM;
- if (count >= MAX_PROCESS_GIDS)
- return -EINVAL;
- if (!validate_read(gids, count))
- return -EFAULT;
- m_gids.clear();
- m_gids.set(m_gid);
- for (int i = 0; i < count; ++i)
- m_gids.set(gids[i]);
- return 0;
- }
- int Process::sys$mkdir(const char* pathname, mode_t mode)
- {
- if (!validate_read_str(pathname))
- return -EFAULT;
- size_t pathname_length = strlen(pathname);
- if (pathname_length == 0)
- return -EINVAL;
- if (pathname_length >= 255)
- return -ENAMETOOLONG;
- return VFS::the().mkdir(String(pathname, pathname_length), mode & ~umask(), cwd_inode());
- }
- clock_t Process::sys$times(tms* times)
- {
- if (!validate_write_typed(times))
- return -EFAULT;
- times->tms_utime = m_ticks_in_user;
- times->tms_stime = m_ticks_in_kernel;
- times->tms_cutime = m_ticks_in_user_for_dead_children;
- times->tms_cstime = m_ticks_in_kernel_for_dead_children;
- return 0;
- }
- int Process::sys$select(const Syscall::SC_select_params* params)
- {
- if (!validate_read_typed(params))
- return -EFAULT;
- if (params->writefds && !validate_read_typed(params->writefds))
- return -EFAULT;
- if (params->readfds && !validate_read_typed(params->readfds))
- return -EFAULT;
- if (params->exceptfds && !validate_read_typed(params->exceptfds))
- return -EFAULT;
- if (params->timeout && !validate_read_typed(params->timeout))
- return -EFAULT;
- int nfds = params->nfds;
- fd_set* writefds = params->writefds;
- fd_set* readfds = params->readfds;
- fd_set* exceptfds = params->exceptfds;
- auto* timeout = params->timeout;
- // FIXME: Implement exceptfds support.
- (void)exceptfds;
- if (timeout) {
- current->m_select_timeout = *timeout;
- current->m_select_has_timeout = true;
- } else {
- current->m_select_has_timeout = false;
- }
- if (nfds < 0)
- return -EINVAL;
- // FIXME: Return -EINTR if a signal is caught.
- // FIXME: Return -EINVAL if timeout is invalid.
- auto transfer_fds = [this, nfds] (fd_set* set, auto& vector) -> int {
- if (!set)
- return 0;
- vector.clear_with_capacity();
- auto bitmap = Bitmap::wrap((byte*)set, FD_SETSIZE);
- for (int i = 0; i < nfds; ++i) {
- if (bitmap.get(i)) {
- if (!file_descriptor(i))
- return -EBADF;
- vector.append(i);
- }
- }
- return 0;
- };
- int error = 0;
- error = transfer_fds(writefds, current->m_select_write_fds);
- if (error)
- return error;
- error = transfer_fds(readfds, current->m_select_read_fds);
- if (error)
- return error;
- error = transfer_fds(readfds, current->m_select_exceptional_fds);
- if (error)
- return error;
- #ifdef DEBUG_IO
- dbgprintf("%s<%u> selecting on (read:%u, write:%u), timeout=%p\n", name().characters(), pid(), current->m_select_read_fds.size(), current->m_select_write_fds.size(), timeout);
- #endif
- if (!timeout || (timeout->tv_sec || timeout->tv_usec))
- current->block(Thread::State::BlockedSelect);
- int markedfds = 0;
- if (readfds) {
- memset(readfds, 0, sizeof(fd_set));
- auto bitmap = Bitmap::wrap((byte*)readfds, FD_SETSIZE);
- for (int fd : current->m_select_read_fds) {
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- continue;
- if (descriptor->can_read(*this)) {
- bitmap.set(fd, true);
- ++markedfds;
- }
- }
- }
- if (writefds) {
- memset(writefds, 0, sizeof(fd_set));
- auto bitmap = Bitmap::wrap((byte*)writefds, FD_SETSIZE);
- for (int fd : current->m_select_write_fds) {
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- continue;
- if (descriptor->can_write(*this)) {
- bitmap.set(fd, true);
- ++markedfds;
- }
- }
- }
- // FIXME: Check for exceptional conditions.
- return markedfds;
- }
- int Process::sys$poll(pollfd* fds, int nfds, int timeout)
- {
- if (!validate_read_typed(fds))
- return -EFAULT;
- current->m_select_write_fds.clear_with_capacity();
- current->m_select_read_fds.clear_with_capacity();
- for (int i = 0; i < nfds; ++i) {
- if (fds[i].events & POLLIN)
- current->m_select_read_fds.append(fds[i].fd);
- if (fds[i].events & POLLOUT)
- current->m_select_write_fds.append(fds[i].fd);
- }
- if (timeout < 0)
- current->block(Thread::State::BlockedSelect);
- int fds_with_revents = 0;
- for (int i = 0; i < nfds; ++i) {
- auto* descriptor = file_descriptor(fds[i].fd);
- if (!descriptor) {
- fds[i].revents = POLLNVAL;
- continue;
- }
- fds[i].revents = 0;
- if (fds[i].events & POLLIN && descriptor->can_read(*this))
- fds[i].revents |= POLLIN;
- if (fds[i].events & POLLOUT && descriptor->can_write(*this))
- fds[i].revents |= POLLOUT;
- if (fds[i].revents)
- ++fds_with_revents;
- }
- return fds_with_revents;
- }
- Inode& Process::cwd_inode()
- {
- // FIXME: This is retarded factoring.
- if (!m_cwd)
- m_cwd = VFS::the().root_inode();
- return *m_cwd;
- }
- int Process::sys$link(const char* old_path, const char* new_path)
- {
- if (!validate_read_str(old_path))
- return -EFAULT;
- if (!validate_read_str(new_path))
- return -EFAULT;
- return VFS::the().link(String(old_path), String(new_path), cwd_inode());
- }
- int Process::sys$unlink(const char* pathname)
- {
- if (!validate_read_str(pathname))
- return -EFAULT;
- return VFS::the().unlink(String(pathname), cwd_inode());
- }
- int Process::sys$symlink(const char* target, const char* linkpath)
- {
- if (!validate_read_str(target))
- return -EFAULT;
- if (!validate_read_str(linkpath))
- return -EFAULT;
- return VFS::the().symlink(String(target), String(linkpath), cwd_inode());
- }
- int Process::sys$rmdir(const char* pathname)
- {
- if (!validate_read_str(pathname))
- return -EFAULT;
- return VFS::the().rmdir(String(pathname), cwd_inode());
- }
- int Process::sys$read_tsc(dword* lsw, dword* msw)
- {
- if (!validate_write_typed(lsw))
- return -EFAULT;
- if (!validate_write_typed(msw))
- return -EFAULT;
- read_tsc(*lsw, *msw);
- return 0;
- }
- int Process::sys$chmod(const char* pathname, mode_t mode)
- {
- if (!validate_read_str(pathname))
- return -EFAULT;
- return VFS::the().chmod(String(pathname), mode, cwd_inode());
- }
- int Process::sys$fchmod(int fd, mode_t mode)
- {
- auto* descriptor = file_descriptor(fd);
- if (!descriptor)
- return -EBADF;
- return descriptor->fchmod(mode);
- }
- int Process::sys$chown(const char* pathname, uid_t uid, gid_t gid)
- {
- if (!validate_read_str(pathname))
- return -EFAULT;
- return VFS::the().chown(String(pathname), uid, gid, cwd_inode());
- }
- void Process::finalize()
- {
- ASSERT(current == g_finalizer);
- dbgprintf("Finalizing Process %s(%u)\n", m_name.characters(), m_pid);
- m_fds.clear();
- m_tty = nullptr;
- disown_all_shared_buffers();
- {
- InterruptDisabler disabler;
- if (auto* parent_process = Process::from_pid(m_ppid)) {
- // FIXME(Thread): What should we do here? Should we look at all threads' signal actions?
- if (parent_process->main_thread().m_signal_action_data[SIGCHLD].flags & SA_NOCLDWAIT) {
- // NOTE: If the parent doesn't care about this process, let it go.
- m_ppid = 0;
- } else {
- parent_process->send_signal(SIGCHLD, this);
- }
- }
- }
- m_dead = true;
- }
- void Process::die()
- {
- {
- InterruptDisabler disabler;
- for_each_thread([] (Thread& thread) {
- if (thread.state() != Thread::State::Dead)
- thread.set_state(Thread::State::Dying);
- return IterationDecision::Continue;
- });
- }
- if (!Scheduler::is_active())
- Scheduler::pick_next_and_switch_now();
- }
- size_t Process::amount_virtual() const
- {
- size_t amount = 0;
- for (auto& region : m_regions) {
- amount += region->size();
- }
- return amount;
- }
- size_t Process::amount_resident() const
- {
- // FIXME: This will double count if multiple regions use the same physical page.
- size_t amount = 0;
- for (auto& region : m_regions) {
- amount += region->amount_resident();
- }
- return amount;
- }
- size_t Process::amount_shared() const
- {
- // FIXME: This will double count if multiple regions use the same physical page.
- // FIXME: It doesn't work at the moment, since it relies on PhysicalPage retain counts,
- // and each PhysicalPage is only retained by its VMObject. This needs to be refactored
- // so that every Region contributes +1 retain to each of its PhysicalPages.
- size_t amount = 0;
- for (auto& region : m_regions) {
- amount += region->amount_shared();
- }
- return amount;
- }
- int Process::sys$socket(int domain, int type, int protocol)
- {
- if (number_of_open_file_descriptors() >= m_max_open_file_descriptors)
- return -EMFILE;
- int fd = 0;
- for (; fd < (int)m_max_open_file_descriptors; ++fd) {
- if (!m_fds[fd])
- break;
- }
- auto result = Socket::create(domain, type, protocol);
- if (result.is_error())
- return result.error();
- auto descriptor = FileDescriptor::create(*result.value());
- unsigned flags = 0;
- if (type & SOCK_CLOEXEC)
- flags |= FD_CLOEXEC;
- if (type & SOCK_NONBLOCK)
- descriptor->set_blocking(false);
- m_fds[fd].set(move(descriptor), flags);
- return fd;
- }
- int Process::sys$bind(int sockfd, const sockaddr* address, socklen_t address_length)
- {
- if (!validate_read(address, address_length))
- return -EFAULT;
- auto* descriptor = file_descriptor(sockfd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_socket())
- return -ENOTSOCK;
- auto& socket = *descriptor->socket();
- return socket.bind(address, address_length);
- }
- int Process::sys$listen(int sockfd, int backlog)
- {
- auto* descriptor = file_descriptor(sockfd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_socket())
- return -ENOTSOCK;
- auto& socket = *descriptor->socket();
- auto result = socket.listen(backlog);
- if (result.is_error())
- return result;
- descriptor->set_socket_role(SocketRole::Listener);
- return 0;
- }
- int Process::sys$accept(int accepting_socket_fd, sockaddr* address, socklen_t* address_size)
- {
- if (!validate_write_typed(address_size))
- return -EFAULT;
- if (!validate_write(address, *address_size))
- return -EFAULT;
- if (number_of_open_file_descriptors() >= m_max_open_file_descriptors)
- return -EMFILE;
- int accepted_socket_fd = 0;
- for (; accepted_socket_fd < (int)m_max_open_file_descriptors; ++accepted_socket_fd) {
- if (!m_fds[accepted_socket_fd])
- break;
- }
- auto* accepting_socket_descriptor = file_descriptor(accepting_socket_fd);
- if (!accepting_socket_descriptor)
- return -EBADF;
- if (!accepting_socket_descriptor->is_socket())
- return -ENOTSOCK;
- auto& socket = *accepting_socket_descriptor->socket();
- if (!socket.can_accept()) {
- ASSERT(!accepting_socket_descriptor->is_blocking());
- return -EAGAIN;
- }
- auto accepted_socket = socket.accept();
- ASSERT(accepted_socket);
- bool success = accepted_socket->get_address(address, address_size);
- ASSERT(success);
- auto accepted_socket_descriptor = FileDescriptor::create(move(accepted_socket), SocketRole::Accepted);
- // NOTE: The accepted socket inherits fd flags from the accepting socket.
- // I'm not sure if this matches other systems but it makes sense to me.
- accepted_socket_descriptor->set_blocking(accepting_socket_descriptor->is_blocking());
- m_fds[accepted_socket_fd].set(move(accepted_socket_descriptor), m_fds[accepting_socket_fd].flags);
- return accepted_socket_fd;
- }
- int Process::sys$connect(int sockfd, const sockaddr* address, socklen_t address_size)
- {
- if (!validate_read(address, address_size))
- return -EFAULT;
- if (number_of_open_file_descriptors() >= m_max_open_file_descriptors)
- return -EMFILE;
- int fd = 0;
- for (; fd < (int)m_max_open_file_descriptors; ++fd) {
- if (!m_fds[fd])
- break;
- }
- auto* descriptor = file_descriptor(sockfd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_socket())
- return -ENOTSOCK;
- if (descriptor->socket_role() == SocketRole::Connected)
- return -EISCONN;
- auto& socket = *descriptor->socket();
- descriptor->set_socket_role(SocketRole::Connecting);
- auto result = socket.connect(address, address_size);
- if (result.is_error()) {
- descriptor->set_socket_role(SocketRole::None);
- return result;
- }
- descriptor->set_socket_role(SocketRole::Connected);
- return 0;
- }
- ssize_t Process::sys$sendto(const Syscall::SC_sendto_params* params)
- {
- if (!validate_read_typed(params))
- return -EFAULT;
- int sockfd = params->sockfd;
- const void* data = params->data;
- size_t data_length = params->data_length;
- int flags = params->flags;
- auto* addr = (const sockaddr*)params->addr;
- auto addr_length = (socklen_t)params->addr_length;
- if (!validate_read(data, data_length))
- return -EFAULT;
- if (addr && !validate_read(addr, addr_length))
- return -EFAULT;
- auto* descriptor = file_descriptor(sockfd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_socket())
- return -ENOTSOCK;
- auto& socket = *descriptor->socket();
- kprintf("sendto %p (%u), flags=%u, addr: %p (%u)\n", data, data_length, flags, addr, addr_length);
- return socket.sendto(data, data_length, flags, addr, addr_length);
- }
- ssize_t Process::sys$recvfrom(const Syscall::SC_recvfrom_params* params)
- {
- if (!validate_read_typed(params))
- return -EFAULT;
- int sockfd = params->sockfd;
- void* buffer = params->buffer;
- size_t buffer_length = params->buffer_length;
- int flags = params->flags;
- auto* addr = (sockaddr*)params->addr;
- auto* addr_length = (socklen_t*)params->addr_length;
- if (!validate_write(buffer, buffer_length))
- return -EFAULT;
- if (addr_length) {
- if (!validate_read_typed(addr_length))
- return -EFAULT;
- if (!validate_read(addr, *addr_length))
- return -EFAULT;
- } else if (addr) {
- return -EINVAL;
- }
- auto* descriptor = file_descriptor(sockfd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_socket())
- return -ENOTSOCK;
- auto& socket = *descriptor->socket();
- kprintf("recvfrom %p (%u), flags=%u, addr: %p (%p)\n", buffer, buffer_length, flags, addr, addr_length);
- return socket.recvfrom(buffer, buffer_length, flags, addr, addr_length);
- }
- int Process::sys$getsockopt(const Syscall::SC_getsockopt_params* params)
- {
- if (!validate_read_typed(params))
- return -EFAULT;
- int sockfd = params->sockfd;
- int level = params->level;
- int option = params->option;
- auto* value = params->value;
- auto* value_size = (socklen_t*)params->value_size;
- if (!validate_write_typed(value_size))
- return -EFAULT;
- if (!validate_write(value, *value_size))
- return -EFAULT;
- auto* descriptor = file_descriptor(sockfd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_socket())
- return -ENOTSOCK;
- auto& socket = *descriptor->socket();
- return socket.getsockopt(level, option, value, value_size);
- }
- int Process::sys$setsockopt(const Syscall::SC_setsockopt_params* params)
- {
- if (!validate_read_typed(params))
- return -EFAULT;
- int sockfd = params->sockfd;
- int level = params->level;
- int option = params->option;
- auto* value = params->value;
- auto value_size = (socklen_t)params->value_size;
- if (!validate_read(value, value_size))
- return -EFAULT;
- auto* descriptor = file_descriptor(sockfd);
- if (!descriptor)
- return -EBADF;
- if (!descriptor->is_socket())
- return -ENOTSOCK;
- auto& socket = *descriptor->socket();
- return socket.setsockopt(level, option, value, value_size);
- }
- struct SharedBuffer {
- SharedBuffer(pid_t pid1, pid_t pid2, int size)
- : m_pid1(pid1)
- , m_pid2(pid2)
- , m_vmo(VMObject::create_anonymous(size))
- {
- ASSERT(pid1 != pid2);
- }
- void* retain(Process& process)
- {
- if (m_pid1 == process.pid()) {
- ++m_pid1_retain_count;
- if (!m_pid1_region) {
- m_pid1_region = process.allocate_region_with_vmo(LinearAddress(), size(), m_vmo.copy_ref(), 0, "SharedBuffer", true, m_pid1_writable);
- m_pid1_region->set_shared(true);
- }
- return m_pid1_region->laddr().as_ptr();
- } else if (m_pid2 == process.pid()) {
- ++m_pid2_retain_count;
- if (!m_pid2_region) {
- m_pid2_region = process.allocate_region_with_vmo(LinearAddress(), size(), m_vmo.copy_ref(), 0, "SharedBuffer", true, m_pid2_writable);
- m_pid2_region->set_shared(true);
- }
- return m_pid2_region->laddr().as_ptr();
- }
- return nullptr;
- }
- void release(Process& process)
- {
- if (m_pid1 == process.pid()) {
- ASSERT(m_pid1_retain_count);
- --m_pid1_retain_count;
- if (!m_pid1_retain_count) {
- if (m_pid1_region)
- process.deallocate_region(*m_pid1_region);
- m_pid1_region = nullptr;
- }
- destroy_if_unused();
- } else if (m_pid2 == process.pid()) {
- ASSERT(m_pid2_retain_count);
- --m_pid2_retain_count;
- if (!m_pid2_retain_count) {
- if (m_pid2_region)
- process.deallocate_region(*m_pid2_region);
- m_pid2_region = nullptr;
- }
- destroy_if_unused();
- }
- }
- void disown(pid_t pid)
- {
- if (m_pid1 == pid) {
- m_pid1 = 0;
- m_pid1_retain_count = 0;
- destroy_if_unused();
- } else if (m_pid2 == pid) {
- m_pid2 = 0;
- m_pid2_retain_count = 0;
- destroy_if_unused();
- }
- }
- pid_t pid1() const { return m_pid1; }
- pid_t pid2() const { return m_pid2; }
- unsigned pid1_retain_count() const { return m_pid1_retain_count; }
- unsigned pid2_retain_count() const { return m_pid2_retain_count; }
- size_t size() const { return m_vmo->size(); }
- void destroy_if_unused();
- void seal()
- {
- m_pid1_writable = false;
- m_pid2_writable = false;
- if (m_pid1_region) {
- m_pid1_region->set_writable(false);
- MM.remap_region(*m_pid1_region->page_directory(), *m_pid1_region);
- }
- if (m_pid2_region) {
- m_pid2_region->set_writable(false);
- MM.remap_region(*m_pid2_region->page_directory(), *m_pid2_region);
- }
- }
- int m_shared_buffer_id { -1 };
- pid_t m_pid1;
- pid_t m_pid2;
- unsigned m_pid1_retain_count { 1 };
- unsigned m_pid2_retain_count { 0 };
- Region* m_pid1_region { nullptr };
- Region* m_pid2_region { nullptr };
- bool m_pid1_writable { false };
- bool m_pid2_writable { false };
- Retained<VMObject> m_vmo;
- };
- static int s_next_shared_buffer_id;
- Lockable<HashMap<int, OwnPtr<SharedBuffer>>>& shared_buffers()
- {
- static Lockable<HashMap<int, OwnPtr<SharedBuffer>>>* map;
- if (!map)
- map = new Lockable<HashMap<int, OwnPtr<SharedBuffer>>>;
- return *map;
- }
- void SharedBuffer::destroy_if_unused()
- {
- if (!m_pid1_retain_count && !m_pid2_retain_count) {
- LOCKER(shared_buffers().lock());
- #ifdef SHARED_BUFFER_DEBUG
- kprintf("Destroying unused SharedBuffer{%p} id: %d (pid1: %d, pid2: %d)\n", this, m_shared_buffer_id, m_pid1, m_pid2);
- #endif
- size_t count_before = shared_buffers().resource().size();
- shared_buffers().resource().remove(m_shared_buffer_id);
- ASSERT(count_before != shared_buffers().resource().size());
- }
- }
- void Process::disown_all_shared_buffers()
- {
- LOCKER(shared_buffers().lock());
- Vector<SharedBuffer*> buffers_to_disown;
- for (auto& it : shared_buffers().resource())
- buffers_to_disown.append(it.value.ptr());
- for (auto* shared_buffer : buffers_to_disown)
- shared_buffer->disown(m_pid);
- }
- int Process::sys$create_shared_buffer(pid_t peer_pid, int size, void** buffer)
- {
- if (!size || size < 0)
- return -EINVAL;
- size = PAGE_ROUND_UP(size);
- if (!peer_pid || peer_pid < 0 || peer_pid == m_pid)
- return -EINVAL;
- if (!validate_write_typed(buffer))
- return -EFAULT;
- {
- InterruptDisabler disabler;
- auto* peer = Process::from_pid(peer_pid);
- if (!peer)
- return -ESRCH;
- }
- LOCKER(shared_buffers().lock());
- int shared_buffer_id = ++s_next_shared_buffer_id;
- auto shared_buffer = make<SharedBuffer>(m_pid, peer_pid, size);
- shared_buffer->m_shared_buffer_id = shared_buffer_id;
- ASSERT(shared_buffer->size() >= size);
- shared_buffer->m_pid1_region = allocate_region_with_vmo(LinearAddress(), shared_buffer->size(), shared_buffer->m_vmo.copy_ref(), 0, "SharedBuffer", true, true);
- shared_buffer->m_pid1_region->set_shared(true);
- *buffer = shared_buffer->m_pid1_region->laddr().as_ptr();
- #ifdef SHARED_BUFFER_DEBUG
- kprintf("%s(%u): Created shared buffer %d (%u bytes, vmo is %u) for sharing with %d\n", name().characters(), pid(),shared_buffer_id, size, shared_buffer->size(), peer_pid);
- #endif
- shared_buffers().resource().set(shared_buffer_id, move(shared_buffer));
- return shared_buffer_id;
- }
- int Process::sys$release_shared_buffer(int shared_buffer_id)
- {
- LOCKER(shared_buffers().lock());
- auto it = shared_buffers().resource().find(shared_buffer_id);
- if (it == shared_buffers().resource().end())
- return -EINVAL;
- auto& shared_buffer = *(*it).value;
- #ifdef SHARED_BUFFER_DEBUG
- kprintf("%s(%u): Releasing shared buffer %d, buffer count: %u\n", name().characters(), pid(), shared_buffer_id, shared_buffers().resource().size());
- #endif
- shared_buffer.release(*this);
- return 0;
- }
- void* Process::sys$get_shared_buffer(int shared_buffer_id)
- {
- LOCKER(shared_buffers().lock());
- auto it = shared_buffers().resource().find(shared_buffer_id);
- if (it == shared_buffers().resource().end())
- return (void*)-EINVAL;
- auto& shared_buffer = *(*it).value;
- if (shared_buffer.pid1() != m_pid && shared_buffer.pid2() != m_pid)
- return (void*)-EINVAL;
- #ifdef SHARED_BUFFER_DEBUG
- kprintf("%s(%u): Retaining shared buffer %d, buffer count: %u\n", name().characters(), pid(), shared_buffer_id, shared_buffers().resource().size());
- #endif
- return shared_buffer.retain(*this);
- }
- int Process::sys$seal_shared_buffer(int shared_buffer_id)
- {
- LOCKER(shared_buffers().lock());
- auto it = shared_buffers().resource().find(shared_buffer_id);
- if (it == shared_buffers().resource().end())
- return -EINVAL;
- auto& shared_buffer = *(*it).value;
- if (shared_buffer.pid1() != m_pid && shared_buffer.pid2() != m_pid)
- return -EINVAL;
- #ifdef SHARED_BUFFER_DEBUG
- kprintf("%s(%u): Sealing shared buffer %d\n", name().characters(), pid(), shared_buffer_id);
- #endif
- shared_buffer.seal();
- return 0;
- }
- int Process::sys$get_shared_buffer_size(int shared_buffer_id)
- {
- LOCKER(shared_buffers().lock());
- auto it = shared_buffers().resource().find(shared_buffer_id);
- if (it == shared_buffers().resource().end())
- return -EINVAL;
- auto& shared_buffer = *(*it).value;
- if (shared_buffer.pid1() != m_pid && shared_buffer.pid2() != m_pid)
- return -EINVAL;
- #ifdef SHARED_BUFFER_DEBUG
- kprintf("%s(%u): Get shared buffer %d size: %u\n", name().characters(), pid(), shared_buffer_id, shared_buffers().resource().size());
- #endif
- return shared_buffer.size();
- }
- const char* to_string(Process::Priority priority)
- {
- switch (priority) {
- case Process::LowPriority: return "Low";
- case Process::NormalPriority: return "Normal";
- case Process::HighPriority: return "High";
- }
- kprintf("to_string(Process::Priority): Invalid priority: %u\n", priority);
- ASSERT_NOT_REACHED();
- return nullptr;
- }
- void Process::terminate_due_to_signal(byte signal)
- {
- ASSERT_INTERRUPTS_DISABLED();
- ASSERT(signal < 32);
- dbgprintf("terminate_due_to_signal %s(%u) <- %u\n", name().characters(), pid(), signal);
- m_termination_status = 0;
- m_termination_signal = signal;
- die();
- }
- void Process::send_signal(byte signal, Process* sender)
- {
- // FIXME(Thread): Find the appropriate thread to deliver the signal to.
- main_thread().send_signal(signal, sender);
- }
- int Process::thread_count() const
- {
- int count = 0;
- for_each_thread([&count] (auto&) {
- ++count;
- return IterationDecision::Continue;
- });
- return count;
- }
- int Process::sys$create_thread(int(*entry)(void*), void* argument)
- {
- if (!validate_read((const void*)entry, sizeof(void*)))
- return -EFAULT;
- auto* thread = new Thread(*this);
- auto& tss = thread->tss();
- tss.eip = (dword)entry;
- tss.eflags = 0x0202;
- tss.cr3 = page_directory().cr3();
- thread->make_userspace_stack_for_secondary_thread(argument);
- thread->set_state(Thread::State::Runnable);
- return 0;
- }
- int Process::sys$gettid()
- {
- return current->tid();
- }
- int Process::sys$donate(int tid)
- {
- if (tid < 0)
- return -EINVAL;
- InterruptDisabler disabler;
- Thread* beneficiary = nullptr;
- for_each_thread([&] (Thread& thread) {
- if (thread.tid() == tid) {
- beneficiary = &thread;
- return IterationDecision::Abort;
- }
- return IterationDecision::Continue;
- });
- if (!beneficiary)
- return -ENOTHREAD;
- Scheduler::donate_to(beneficiary, "sys$donate");
- return 0;
- }
|