source: trunk/kernel/syscalls/sys_timeofday.c @ 686

Last change on this file since 686 was 683, checked in by alain, 3 years ago

All modifications required to support the <tcp_chat> application
including error recovery in case of packet loss.A

File size: 3.2 KB
RevLine 
[50]1/*
2 * sys_timeofday.c - Get current time
3 *
[683]4 * Author    Alain Greiner      (2016,2017,2018,2019,2020)
[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>
[624]26#include <hal_vmm.h>
[50]27#include <thread.h>
28#include <printk.h>
29#include <errno.h>
30#include <process.h>
31#include <vmm.h>
32#include <core.h>
[407]33#include <shared_syscalls.h>
[506]34#include <syscalls.h>
35
[50]36////////////////////////////////////////
37int sys_timeofday( struct timeval  * tv,
38                   struct timezone * tz )
39{
40        error_t        error;
[440]41    vseg_t       * vseg;
[50]42
43        uint32_t       tm_s;
44    uint32_t       tm_us;
45
46        struct timeval k_tv;
47
48        thread_t  *    this    = CURRENT_THREAD;
49        process_t *    process = this->process;
50
[683]51#if DEBUG_SYS_TIMEOFDAY || DEBUG_SYSCALLS_ERROR || CONFIG_INSTRUMENTATION_SYSCALLS
[637]52uint64_t     tm_start = hal_get_cycles();
53#endif
54
55#if DEBUG_SYS_TIMEOFDAY
[683]56if( DEBUG_SYS_TIMEOFDAY < (uint32_t)tm_start )
[637]57printk("\n[%s] thread[%x,%x] enter / cycle %d\n",
58__FUNCTION__, process->pid, this->trdid, (uint32_t)tm_start );
59#endif
60 
[50]61    // check tz (non supported / must be null)
62    if( tz )
63    {
[440]64
65#if DEBUG_SYSCALLS_ERROR
[683]66if( DEBUG_SYSCALLS_ERROR < (uint32_t)tm_start )
67printk("\n[ERROR] in %s : thread[%x,%x] / tz argument must be NULL\n",
[440]68__FUNCTION__ , this->trdid , process->pid );
69#endif
[50]70        this->errno = EINVAL;
71        return -1;
72    }
73 
74    // check tv
[440]75    error = vmm_get_vseg( process , (intptr_t)tv , &vseg );
[50]76
77    if( error )
78    {
[440]79
80#if DEBUG_SYSCALLS_ERROR
[683]81if( DEBUG_SYSCALLS_ERROR < (uint32_t)tm_start )
82printk("\n[ERROR] in %s : thread[%x,%x] / user buffer tv unmapped\n",
83__FUNCTION__ , this->trdid , process->pid , (intptr_t)tz );
[440]84#endif
[50]85        this->errno = EINVAL;
86        return -1;
87    }
88
89    // get time from calling core descriptor
90    core_get_time( this->core , &tm_s , &tm_us );
91        k_tv.tv_sec  = tm_s;
92        k_tv.tv_usec = tm_us;
93
94    // copy values to user space
[637]95        hal_copy_to_uspace( tv,
96                        XPTR( local_cxy , &k_tv ),
[626]97                        sizeof(struct timeval) );
[50]98
[124]99    hal_fence();
[50]100
[637]101#if (DEBUG_SYS_TIMEOFDAY || CONFIG_INSTRUMENTATION_SYSCALLS)
102uint64_t     tm_end = hal_get_cycles();
103#endif
104
105#if DEBUG_SYS_TIMEOFDAY
106if( DEBUG_SYS_TIMEOFDAY < tm_end )
107printk("\n[%s] thread[%x,%x] exit / cycle %d\n",
108__FUNCTION__, process->pid, this->trdid, (uint32_t)tm_end );
109#endif
110 
111#if CONFIG_INSTRUMENTATION_SYSCALLS
112hal_atomic_add( &syscalls_cumul_cost[SYS_TIMEOFDAY] , tm_end - tm_start );
113hal_atomic_add( &syscalls_occurences[SYS_TIMEOFDAY] , 1 );
114#endif
115
[50]116        return 0; 
117
118}  // end sys_timeofday()
Note: See TracBrowser for help on using the repository browser.