SimpleOS

LXR

Navigation



Site hébergé par : enix

The LXR Cross Referencer for SOS

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Article:1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 6.5 ] [ 7 ] [ 7.5 ] [ 8 ] [ 9 ] [ 9.5 ]

001 /* Copyright (C) 2005  David Decotigny
002 
003    This program is free software; you can redistribute it and/or
004    modify it under the terms of the GNU General Public License
005    as published by the Free Software Foundation; either version 2
006    of the License, or (at your option) any later version.
007    
008    This program is distributed in the hope that it will be useful,
009    but WITHOUT ANY WARRANTY; without even the implied warranty of
010    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
011    GNU General Public License for more details.
012    
013    You should have received a copy of the GNU General Public License
014    along with this program; if not, write to the Free Software
015    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
016    USA. 
017 */
018 #ifndef _SOS_UACCESS_H_
019 #define _SOS_UACCESS_H_
020 
021 
022 /**
023  * @file uaccess.h
024  *
025  * Routines to access user-space data from inside the kernel space.
026  */
027 
028 #include <sos/types.h>
029 #include <sos/errno.h>
030 
031 
032 /**
033  * Retrieve a bunch of data from the user space of the
034  * current_thread->process
035  *
036  * @return <0 on error ! Return the number of bytes successfully copied
037  * otherwise.
038  */
039 sos_ret_t sos_memcpy_from_user(sos_vaddr_t kernel_to,
040                                sos_uaddr_t user_from,
041                                sos_size_t size);
042 
043 
044 /**
045  * Transfer a bunch of data to the user space of the
046  * current_thread->process
047  *
048  * @return <0 n error ! Return the number of bytes successfully copied
049  * otherwise.
050  */
051 sos_ret_t sos_memcpy_to_user(sos_uaddr_t user_to,
052                              sos_vaddr_t kernel_from,
053                              sos_size_t size);
054 
055 
056 /**
057  * @return the length of the given user space string user_str
058  * (excluding the trailing \0), up to max_len bytes. <0 on error
059  * (unresolved page fault, etc.)
060  */
061 sos_ret_t sos_strnlen_from_user(sos_uaddr_t user_str, sos_size_t max_len);
062 
063 
064 /**
065  * Copy the given user space string to kernel space, up to max_len
066  * bytes (including trailing \0)
067  *
068  * @return SOS_OK on success, <0 otherwise (unresolved page fault, etc.)
069  */
070 sos_ret_t sos_strzcpy_from_user(char *kernel_to, sos_uaddr_t user_from,
071                                 sos_size_t max_len);
072 
073 
074 /**
075  * Copy the given kernel string to user space, up to max_len bytes
076  * (including trailing \0)
077  *
078  * @return SOS_OK on success, <0 otherwise (unresolved page fault, etc.)
079  */
080 sos_ret_t sos_strzcpy_to_user(sos_uaddr_t user_to, const char *kernel_from,
081                               sos_size_t max_len);
082 
083 
084 /**
085  * Copy the given user space string into a new allocated kernel space
086  * area of the correct size, up to max_len bytes (including trailing
087  * \0)
088  *
089  * @return SOS_OK on success + *kernel_to is set to the freshly
090  * allocated kernel string, <0 otherwise (unresolved page fault, etc.)
091  */
092 sos_ret_t sos_strndup_from_user(char ** kernel_to, sos_uaddr_t from_user,
093                                 sos_size_t max_len,
094                                 sos_ui32_t kmalloc_flags);
095 
096 #endif /* _SOS_UACCESS_H_ */

source navigation ] diff markup ] identifier search ] general search ]