[50] | 1 | /* |
---|
| 2 | * sys_timeofday.c - Get current time |
---|
| 3 | * |
---|
[440] | 4 | * Author Alain Greiner (2016,2017,2018) |
---|
[50] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 7 | * |
---|
| 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
[457] | 24 | #include <hal_kernel_types.h> |
---|
[50] | 25 | #include <hal_uspace.h> |
---|
| 26 | #include <thread.h> |
---|
| 27 | #include <printk.h> |
---|
| 28 | #include <errno.h> |
---|
| 29 | #include <process.h> |
---|
| 30 | #include <vmm.h> |
---|
| 31 | #include <core.h> |
---|
[407] | 32 | #include <shared_syscalls.h> |
---|
[50] | 33 | |
---|
| 34 | //////////////////////////////////////// |
---|
| 35 | int sys_timeofday( struct timeval * tv, |
---|
| 36 | struct timezone * tz ) |
---|
| 37 | { |
---|
| 38 | error_t error; |
---|
[440] | 39 | vseg_t * vseg; |
---|
[50] | 40 | |
---|
| 41 | uint32_t tm_s; |
---|
| 42 | uint32_t tm_us; |
---|
| 43 | |
---|
| 44 | struct timeval k_tv; |
---|
| 45 | |
---|
| 46 | thread_t * this = CURRENT_THREAD; |
---|
| 47 | process_t * process = this->process; |
---|
| 48 | |
---|
| 49 | // check tz (non supported / must be null) |
---|
| 50 | if( tz ) |
---|
| 51 | { |
---|
[440] | 52 | |
---|
| 53 | #if DEBUG_SYSCALLS_ERROR |
---|
| 54 | printk("\n[ERROR] in %s for thread %x in process %x : tz argument must be NULL\n", |
---|
| 55 | __FUNCTION__ , this->trdid , process->pid ); |
---|
| 56 | #endif |
---|
[50] | 57 | this->errno = EINVAL; |
---|
| 58 | return -1; |
---|
| 59 | } |
---|
| 60 | |
---|
| 61 | // check tv |
---|
[440] | 62 | error = vmm_get_vseg( process , (intptr_t)tv , &vseg ); |
---|
[50] | 63 | |
---|
| 64 | if( error ) |
---|
| 65 | { |
---|
[440] | 66 | |
---|
| 67 | #if DEBUG_SYSCALLS_ERROR |
---|
| 68 | printk("\n[ERROR] in %s : user buffer tz unmapped / thread %x / process %x\n", |
---|
| 69 | __FUNCTION__ , (intptr_t)tz , this->trdid , process->pid ); |
---|
| 70 | vmm_display( process , false ); |
---|
| 71 | #endif |
---|
[50] | 72 | this->errno = EINVAL; |
---|
| 73 | return -1; |
---|
| 74 | } |
---|
| 75 | |
---|
| 76 | // get time from calling core descriptor |
---|
| 77 | core_get_time( this->core , &tm_s , &tm_us ); |
---|
| 78 | k_tv.tv_sec = tm_s; |
---|
| 79 | k_tv.tv_usec = tm_us; |
---|
| 80 | |
---|
| 81 | // copy values to user space |
---|
| 82 | hal_copy_to_uspace( tv , &k_tv , sizeof(struct timeval) ); |
---|
| 83 | |
---|
[124] | 84 | hal_fence(); |
---|
[50] | 85 | |
---|
| 86 | return 0; |
---|
| 87 | |
---|
| 88 | } // end sys_timeofday() |
---|