about summary refs log tree commit diff stats
path: root/kernel.soso/syscalls.c
blob: 8b72941f9f919d9e0e5304240a946c8b63d31165 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
#include "syscalls.h"
#include "fs.h"
#include "process.h"
#include "screen.h"
#include "alloc.h"
#include "pipe.h"
#include "debugprint.h"
#include "timer.h"
#include "sleep.h"
#include "ttydriver.h"
#include "spinlock.h"
#include "message.h"
#include "commonuser.h"
#include "syscalltable.h"
#include "isr.h"
#include "sharedmemory.h"


/**************
 * All of syscall entered with interrupts disabled!
 * A syscall can enable interrupts if it is needed.
 *
 **************/

static void handleSyscall(Registers* regs);

static void* gSyscallTable[SYSCALL_COUNT];


int syscall_open(const char *pathname, int flags);
int syscall_close(int fd);
int syscall_read(int fd, void *buf, int nbytes);
int syscall_write(int fd, void *buf, int nbytes);
int syscall_lseek(int fd, int offset, int whence);
int syscall_stat(const char *path, struct stat *buf);
int syscall_fstat(int fd, struct stat *buf);
int syscall_ioctl(int fd, int32 request, void *arg);
int syscall_exit(int status);
void* syscall_sbrk(uint32 increment);
int syscall_fork();
int syscall_getpid();
int syscall_execute(const char *path, char *const argv[], char *const envp[]);
int syscall_execve(const char *path, char *const argv[], char *const envp[]);
int syscall_wait(int *wstatus);
int syscall_kill(int pid, int sig);
int syscall_mount(const char *source, const char *target, const char *fsType, unsigned long flags, void *data);
int syscall_unmount(const char *target);
int syscall_mkdir(const char *path, uint32 mode);
int syscall_rmdir(const char *path);
int syscall_getdents(int fd, char *buf, int nbytes);
int syscall_getWorkingDirectory(char *buf, int size);
int syscall_setWorkingDirectory(const char *path);
int syscall_managePipe(const char *pipeName, int operation, int data);
int syscall_readDir(int fd, void *dirent, int index);
int syscall_getUptimeMilliseconds();
int syscall_sleepMilliseconds(int ms);
int syscall_executeOnTTY(const char *path, char *const argv[], char *const envp[], const char *ttyPath);
int syscall_manageMessage(int command, void* message);
void* syscall_mmap(void *addr, int length, int flags, int fd, int offset);
int syscall_munmap(void *addr, int length);
int syscall_shm_open(const char *name, int oflag, int mode);
int syscall_shm_unlink(const char *name);
int syscall_ftruncate(int fd, int size);
int syscall_posix_openpt(int flags);
int syscall_ptsname_r(int fd, char *buf, int buflen);


void initialiseSyscalls() {
    memset((uint8*)gSyscallTable, 0, sizeof(void*) * SYSCALL_COUNT);

    gSyscallTable[SYS_open] = syscall_open;
    gSyscallTable[SYS_close] = syscall_close;
    gSyscallTable[SYS_read] = syscall_read;
    gSyscallTable[SYS_write] = syscall_write;
    gSyscallTable[SYS_lseek] = syscall_lseek;
    gSyscallTable[SYS_stat] = syscall_stat;
    gSyscallTable[SYS_fstat] = syscall_fstat;
    gSyscallTable[SYS_ioctl] = syscall_ioctl;
    gSyscallTable[SYS_exit] = syscall_exit;
    gSyscallTable[SYS_sbrk] = syscall_sbrk;
    gSyscallTable[SYS_fork] = syscall_fork;
    gSyscallTable[SYS_getpid] = syscall_getpid;

    gSyscallTable[SYS_execute] = syscall_execute;
    gSyscallTable[SYS_execve] = syscall_execve;
    gSyscallTable[SYS_wait] = syscall_wait;
    gSyscallTable[SYS_kill] = syscall_kill;
    gSyscallTable[SYS_mount] = syscall_mount;
    gSyscallTable[SYS_unmount] = syscall_unmount;
    gSyscallTable[SYS_mkdir] = syscall_mkdir;
    gSyscallTable[SYS_rmdir] = syscall_rmdir;
    gSyscallTable[SYS_getdents] = syscall_getdents;
    gSyscallTable[SYS_getWorkingDirectory] = syscall_getWorkingDirectory;
    gSyscallTable[SYS_setWorkingDirectory] = syscall_setWorkingDirectory;
    gSyscallTable[SYS_managePipe] = syscall_managePipe;
    gSyscallTable[SYS_readDir] = syscall_readDir;
    gSyscallTable[SYS_getUptimeMilliseconds] = syscall_getUptimeMilliseconds;
    gSyscallTable[SYS_sleepMilliseconds] = syscall_sleepMilliseconds;
    gSyscallTable[SYS_executeOnTTY] = syscall_executeOnTTY;
    gSyscallTable[SYS_manageMessage] = syscall_manageMessage;
    gSyscallTable[SYS_UNUSED] = NULL;
    gSyscallTable[SYS_mmap] = syscall_mmap;
    gSyscallTable[SYS_munmap] = syscall_munmap;
    gSyscallTable[SYS_shm_open] = syscall_shm_open;
    gSyscallTable[SYS_shm_unlink] = syscall_shm_unlink;
    gSyscallTable[SYS_ftruncate] = syscall_ftruncate;
    gSyscallTable[SYS_posix_openpt] = syscall_posix_openpt;
    gSyscallTable[SYS_ptsname_r] = syscall_ptsname_r;

    // Register our syscall handler.
    registerInterruptHandler (0x80, &handleSyscall);
}

static void handleSyscall(Registers* regs) {
    if (regs->eax >= SYSCALL_COUNT) {
        return;
    }

    void *location = gSyscallTable[regs->eax];

    if (NULL == location) {
        regs->eax = -1;
        return;
    }

    //printkf("We are in syscall_handler\n");
    //Screen_PrintInterruptsEnabled();

    //I think it is better to enable interrupts in syscall implementations if it is needed.

    int ret;
    asm volatile (" \
      pushl %1; \
      pushl %2; \
      pushl %3; \
      pushl %4; \
      pushl %5; \
      call *%6; \
      popl %%ebx; \
      popl %%ebx; \
      popl %%ebx; \
      popl %%ebx; \
      popl %%ebx; \
    " : "=a" (ret) : "r" (regs->edi), "r" (regs->esi), "r" (regs->edx), "r" (regs->ecx), "r" (regs->ebx), "r" (location));
    regs->eax = ret;
}

int syscall_open(const char *pathname, int flags) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        //printkf("open():[%s]\n", pathname);
        FileSystemNode* node = getFileSystemNodeAbsoluteOrRelative(pathname, process);
        if (node) {
            //printkf("open():node:[%s]\n", node->name);
            File* file = open_fs(node, flags);

            if (file) {
                return file->fd;
            }
        }
    }

    return -1;
}

int syscall_close(int fd) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                close_fs(file);

                return 0;
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_read(int fd, void *buf, int nbytes) {
    //printkf("syscall_read: begin - nbytes:%d\n", nbytes);

    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                //Debug_PrintF("syscall_read(%d): %s\n", process->pid, buf);

                //enableInterrupts();

                //Each handler is free to enable interrupts.
                //We don't enable them here.

                return read_fs(file, nbytes, buf);
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_write(int fd, void *buf, int nbytes) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        //printkf("syscall_write() called from process: %d. fd:%d\n", process->pid, fd);

        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                /*
                for (int i = 0; i < nbytes; ++i) {
                    Debug_PrintF("pid:%d syscall_write:buf[%d]=%c\n", process->pid, i, ((char*)buf)[i]);
                }
                */

                uint32 writeResult = write_fs(file, nbytes, buf);

                return writeResult;
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_lseek(int fd, int offset, int whence) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        //printkf("syscall_lseek() called from process: %d. fd:%d\n", process->pid, fd);

        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                return lseek_fs(file, offset, whence);
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_stat(const char *path, struct stat *buf) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        //printkf("syscall_stat() called from process: %d. path:%s\n", process->pid, path);

        FileSystemNode* node = getFileSystemNodeAbsoluteOrRelative(path, process);

        if (node) {
            return stat_fs(node, buf);
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_fstat(int fd, struct stat *buf) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                return stat_fs(file->node, buf);
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_ioctl(int fd, int32 request, void *arg) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                return ioctl_fs(file, request, arg);
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_exit(int status) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        printkf("syscall_exit(%d)\n", status);
        printkf("process pid: %d\n", process->pid);
        if (process->parent) {
                printkf("process parent pid: %d\n", process->parent->pid);
                printkf("writing %d to %p\n", 1, &process->parent->childExitStatusPresent);
                process->parent->childExitStatusPresent = 1;
                printkf("writing %d to %x\n", status, &process->parent->childExitStatus);
                process->parent->childExitStatus = status;
        }

        destroyProcess(process);

        waitForSchedule();
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

void* syscall_sbrk(uint32 increment) {
    //printkf("syscall_sbrk() !!! inc:%d\n", increment);

    Process* process = getCurrentThread()->owner;
    if (process) {
        return sbrk(process, increment);
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return (void*)-1;
}

int syscall_fork() {
    //Not implemented

    return -1;
}

int syscall_getpid() {
    Process* process = getCurrentThread()->owner;
    if (process) {
        return process->pid;
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

//NON-posix
int syscall_execute(const char *path, char *const argv[], char *const envp[]) {
    int result = -1;

    printkf("syscall_execute: %s\n", path);
    Process* process = getCurrentThread()->owner;
    if (process) {
        printkf("found current process\n");
        FileSystemNode* node = getFileSystemNodeAbsoluteOrRelative(path, process);
        if (node) {
            File* f = open_fs(node, 0);
            if (f) {
                printkf("file found\n");
                void* image = kmalloc(node->length);

                //printkf("executing %s and its %d bytes\n", filename, node->length);

                int32 bytesRead = read_fs(f, node->length, image);

                //printkf("syscall_execute: read_fs returned %d bytes\n", bytesRead);

                if (bytesRead > 0) {
                    printkf("creating user process from ELF data\n");
                    Process* newProcess = createUserProcessFromElfData("userProcess", image, argv, envp, process, NULL);

                    if (newProcess) {
                        result = newProcess->pid;
                    }
                }
                close_fs(f);

                kfree(image);
            }

        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return result;
}

int syscall_executeOnTTY(const char *path, char *const argv[], char *const envp[], const char *ttyPath) {
    int result = -1;

    Process* process = getCurrentThread()->owner;
    if (process) {
        FileSystemNode* node = getFileSystemNodeAbsoluteOrRelative(path, process);
        FileSystemNode* ttyNode = getFileSystemNodeAbsoluteOrRelative(ttyPath, process);
        if (node && ttyNode) {
            File* f = open_fs(node, 0);
            if (f) {
                void* image = kmalloc(node->length);

                //printkf("executing %s and its %d bytes\n", filename, node->length);

                int32 bytesRead = read_fs(f, node->length, image);

                //printkf("syscall_execute: read_fs returned %d bytes\n", bytesRead);

                if (bytesRead > 0) {
                    Process* newProcess = createUserProcessFromElfData("userProcess", image, argv, envp, process, ttyNode);

                    if (newProcess) {
                        result = newProcess->pid;
                    }
                }
                close_fs(f);

                kfree(image);
            }

        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return result;
}

int syscall_execve(const char *path, char *const argv[], char *const envp[]) {
    Process* callingProcess = getCurrentThread()->owner;

    FileSystemNode* node = getFileSystemNode(path);
    if (node) {
        File* f = open_fs(node, 0);
        if (f) {
            void* image = kmalloc(node->length);

            if (read_fs(f, node->length, image) > 0) {
                disableInterrupts(); //just in case if a file operation left interrupts enabled.

                Process* newProcess = createUserProcessEx("fromExecve", callingProcess->pid, 0, NULL, image, argv, envp, NULL, callingProcess->tty);

                close_fs(f);

                kfree(image);

                if (newProcess) {
                    destroyProcess(callingProcess);

                    waitForSchedule();

                    //unreachable
                }
            }

            close_fs(f);

            kfree(image);
        }
    }


    //if it all goes well, this line is unreachable
    return 0;
}

int syscall_wait(int *wstatus) {
    //TODO: return pid of exited child. implement with sendsignal
    Thread* currentThread = getCurrentThread();

    Process* process = currentThread->owner;
    if (process) {
        printkf("wait: I am %d at %x\n", process->pid, process);
        Thread* thread = getMainKernelThread();
        while (thread) {
            printkf("wait: checking %d at %x\n", thread->owner->pid, thread->owner);
            printkf("wait: parent is %d at %x\n", thread->owner->parent->pid, thread->owner->parent);
            if (process == thread->owner->parent) {
                //We have a child process
                printkf("wait: d\n");

                currentThread->state = TS_WAITCHILD;

                enableInterrupts();
                while (currentThread->state == TS_WAITCHILD);

                if (process->childExitStatusPresent) {
                        printkf("wait: reading from %x: %d\n", &process->childExitStatus, process->childExitStatus);
                        return process->childExitStatus;
                }
                break;
            }

            thread = thread->next;
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_kill(int pid, int sig) {
    Process* selfProcess = getCurrentThread()->owner;

    Thread* thread = getMainKernelThread();
    while (thread) {
        if (pid == thread->owner->pid) {
            //We have found the process

            //TODO if (sig==KILL)
            {
                destroyProcess(thread->owner);

                if (thread->owner == selfProcess) {
                    waitForSchedule();
                }
                else {
                    return 0;
                }
            }
            break;
        }

        thread = thread->next;
    }

    return -1;
}

int syscall_mount(const char *source, const char *target, const char *fsType, unsigned long flags, void *data) {  // non-posix
    BOOL result = mountFileSystem(source, target, fsType, flags, data);

    if (TRUE == result) {
        return 0;//on success
    }

    return -1;//on error
}

int syscall_unmount(const char *target) {  // non-posix
    FileSystemNode* targetNode = getFileSystemNode(target);

    if (targetNode) {
        if (targetNode->nodeType == FT_MountPoint) {
            targetNode->nodeType = FT_Directory;

            targetNode->mountPoint = NULL;

            //TODO: check conditions, maybe busy. make clean up.

            return 0;//on success
        }
    }

    return -1;//on error
}

int syscall_mkdir(const char *path, uint32 mode) {
    char parentPath[128];
    const char* name = NULL;
    int length = strlen(path);
    for (int i = length - 1; i >= 0; --i) {
        if (path[i] == '/') {
            name = path + i + 1;
            strncpy(parentPath, path, i);
            parentPath[i] = '\0';
            break;
        }
    }

    if (strlen(parentPath) == 0) {
        parentPath[0] = '/';
        parentPath[1] = '\0';
    }

    if (strlen(name) == 0) {
        return -1;
    }

    //printkf("mkdir: parent:[%s] name:[%s]\n", parentPath, name);

    FileSystemNode* targetNode = getFileSystemNode(parentPath);

    if (targetNode) {
        BOOL success = mkdir_fs(targetNode, name, mode);
        if (success) {
            return 0;//on success
        }
    }

    return -1;//on error
}

int syscall_rmdir(const char *path) {
    //TODO:
    //return 0;//on success

    return -1;//on error
}

int syscall_getdents(int fd, char *buf, int nbytes) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                //printkf("syscall_getdents(%d): %s\n", process->pid, buf);

                int byteCounter = 0;

                int index = 0;
                FileSystemDirent* dirent = readdir_fs(file->node, index);

                while (NULL != dirent && (byteCounter + sizeof(FileSystemDirent) <= nbytes)) {
                    memcpy((uint8*)buf + byteCounter, (uint8*)dirent, sizeof(FileSystemDirent));

                    byteCounter += sizeof(FileSystemDirent);

                    index += 1;
                    dirent = readdir_fs(file->node, index);
                }

                return byteCounter;
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;//on error
}

int syscall_readDir(int fd, void *dirent, int index) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                FileSystemDirent* direntFs = readdir_fs(file->node, index);

                if (direntFs) {
                    memcpy((uint8*)dirent, (uint8*)direntFs, sizeof(FileSystemDirent));

                    return 1;
                }
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;//on error
}

int syscall_getWorkingDirectory(char *buf, int size) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (process->workingDirectory) {
            return getFileSystemNodePath(process->workingDirectory, buf, size);
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;//on error
}

int syscall_setWorkingDirectory(const char *path) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        FileSystemNode* node = getFileSystemNodeAbsoluteOrRelative(path, process);

        if (node) {
            process->workingDirectory = node;

            return 0; //success
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;//on error
}

int syscall_managePipe(const char *pipeName, int operation, int data) {
    int result = -1;

    switch (operation) {
    case 0:
        result = existsPipe(pipeName);
        break;
    case 1:
        result = createPipe(pipeName, data);
        break;
    case 2:
        result = destroyPipe(pipeName);
        break;
    }

    return result;
}

int syscall_getUptimeMilliseconds() {
    return getUptimeMilliseconds();
}

int syscall_sleepMilliseconds(int ms) {
    Thread* thread = getCurrentThread();

    sleepMilliseconds(thread, (uint32)ms);

    return 0;
}

int syscall_manageMessage(int command, void* message) {
    Thread* thread = getCurrentThread();

    int result = -1;

    switch (command) {
    case 0:
        result = getMessageQueueCount(thread);
        break;
    case 1:
        sendMesage(thread, (SosoMessage*)message);
        result = 0;
        break;
    case 2:
        //make blocking
        result = getNextMessage(thread, (SosoMessage*)message);
        break;
    default:
        break;
    }

    return result;
}

void* syscall_mmap(void *addr, int length, int flags, int fd, int offset) {
    if (addr) {
        //Mapping to a specified address is not implemented

        return (void*)-1;
    }

    Process* process = getCurrentThread()->owner;

    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                void* ret = mmap_fs(file, length, offset, flags);

                if (ret) {
                    return ret;
                }
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return (void*)-1;
}

int syscall_munmap(void *addr, int length) {
    //TODO: fd

    /*
    Process* process = getCurrentThread()->owner;

    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                if (munmap_fs(file, addr, length)) {
                    return 0;//on success
                }
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }
    */

    return -1;
}

#define O_CREAT 0x200

int syscall_shm_open(const char *name, int oflag, int mode) {
    FileSystemNode* node = NULL;

    if ((oflag & O_CREAT) == O_CREAT) {
        node = createSharedMemory(name);
    }
    else {
        node = getSharedMemoryNode(name);
    }

    if (node) {
        File* file = open_fs(node, oflag);

        if (file) {
            return file->fd;
        }
    }

    return -1;
}

int syscall_shm_unlink(const char *name) {
    return -1;
}

int syscall_ftruncate(int fd, int size) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                return ftruncate_fs(file, size);
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_posix_openpt(int flags) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        FileSystemNode* node = createPseudoTerminal();
        if (node) {
            File* file = open_fs(node, flags);

            if (file) {
                return file->fd;
            }
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;
}

int syscall_ptsname_r(int fd, char *buf, int buflen) {
    Process* process = getCurrentThread()->owner;
    if (process) {
        if (fd < MAX_OPENED_FILES) {
            File* file = process->fd[fd];

            if (file) {
                /*
                int result = getSlavePath(file->node, buf, buflen);

                if (result > 0) {
                    return 0; //return 0 on success
                }
                */
            }
            else {
                //TODO: error invalid fd
            }
        }
        else {
            //TODO: error invalid fd
        }
    }
    else {
        PANIC("Process is NULL!\n");
    }

    return -1;//on error
}