mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- Added asctime_r(), ctime_r(), gmtime_r(), localtime_r() and strtok_r(). - Added stubs for the Rexx Variables Interface code that used to be part of amiga.lib. While comparable functionality is available in rexxsyslib.library V45, the new stubs might be helpful during porting. Care must be taken since these functions don't work exactly like the originals. - Integrated strlcpy() and strlcat() which are intended to be safer replacements for strncpy() and strncat(). - The program's task priority is now configurable through an external variable '__priority'. - The process name to be used when detaching can be configured through the new '__process_name' variable. - The minimum required operating system version can be configured through the new '__minimum_os_lib_version' variable; a matching error message can be provided through the new '__minimum_os_lib_error' variable. - The default console window specification can be overriden through the new '__stdio_window_specification' variable. - The socket initialization code did not set up a reference to the 'h_errno' variable correctly. This had the effect of making name and address resolution errors trash the 'errno' variable instead and leaving 'h_errno' always set to 0. Fixed. - For sockets, ioctl() and fcntl() now interact on the FIONBIO/FIOASYNC requests (ioctl) and the O_NOBLOCK/O_ASYNC flags (fcntl). - popen() now accepts "rb" and "wb" as mode parameters. However, "r+", "w+" and variants thereof are still unsupported due to the unidirectional pipe support in the standard "PIPE:" device. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14777 87f5fb63-7c3d-0410-a384-fd976d0f7a62
276 lines
5.9 KiB
C
276 lines
5.9 KiB
C
/*
|
|
* $Id: fcntl_fcntl.c,v 1.4 2004-11-28 10:01:26 obarthel Exp $
|
|
*
|
|
* :ts=4
|
|
*
|
|
* Portable ISO 'C' (1994) runtime library for the Amiga computer
|
|
* Copyright (c) 2002-2004 by Olaf Barthel <olsen@sourcery.han.de>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* - Neither the name of Olaf Barthel nor the names of contributors
|
|
* may be used to endorse or promote products derived from this
|
|
* software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef _FCNTL_HEADERS_H
|
|
#include "fcntl_headers.h"
|
|
#endif /* _FCNTL_HEADERS_H */
|
|
|
|
/****************************************************************************/
|
|
|
|
/* The following is not part of the ISO 'C' (1994) standard. */
|
|
|
|
/****************************************************************************/
|
|
|
|
int
|
|
fcntl(int file_descriptor, int cmd, ... /* int arg */ )
|
|
{
|
|
DECLARE_UTILITYBASE();
|
|
struct file_hook_message message;
|
|
struct flock * l;
|
|
int result = -1;
|
|
struct fd * fd;
|
|
va_list arg;
|
|
int flags;
|
|
int fdbase;
|
|
int i;
|
|
|
|
ENTER();
|
|
|
|
SHOWVALUE(file_descriptor);
|
|
SHOWVALUE(cmd);
|
|
|
|
assert( UtilityBase != NULL );
|
|
|
|
assert( file_descriptor >= 0 && file_descriptor < __num_fd );
|
|
assert( __fd[file_descriptor] != NULL );
|
|
assert( FLAG_IS_SET(__fd[file_descriptor]->fd_Flags,FDF_IN_USE) );
|
|
|
|
if(__check_abort_enabled)
|
|
__check_abort();
|
|
|
|
fd = __get_file_descriptor(file_descriptor);
|
|
if(fd == NULL)
|
|
{
|
|
errno = EBADF;
|
|
goto out;
|
|
}
|
|
|
|
switch(cmd)
|
|
{
|
|
case F_GETLK:
|
|
case F_SETLK:
|
|
case F_SETLKW:
|
|
|
|
SHOWMSG("cmd=F_GETLK/F_SETLK/F_SETLKW");
|
|
|
|
va_start(arg,cmd);
|
|
|
|
l = va_arg(arg,struct flock *);
|
|
|
|
assert( l != NULL );
|
|
|
|
if(l->l_type < F_RDLCK || l->l_type > F_WRLCK)
|
|
{
|
|
SHOWMSG("invalid flock type");
|
|
va_end(arg);
|
|
|
|
errno = EINVAL;
|
|
break;
|
|
}
|
|
|
|
if(l->l_whence < SEEK_SET || l->l_whence > SEEK_END)
|
|
{
|
|
SHOWMSG("invalid flock offset");
|
|
va_end(arg);
|
|
|
|
errno = EINVAL;
|
|
break;
|
|
}
|
|
|
|
message.action = file_hook_action_lock_record;
|
|
message.lock = l;
|
|
message.command = cmd;
|
|
|
|
assert( fd->fd_Hook != NULL );
|
|
|
|
CallHookPkt(fd->fd_Hook,fd,&message);
|
|
|
|
result = message.result;
|
|
errno = message.error;
|
|
|
|
va_end(arg);
|
|
|
|
break;
|
|
|
|
case F_GETFL:
|
|
|
|
SHOWMSG("cmd=F_GETFL");
|
|
|
|
result = 0;
|
|
|
|
if(FLAG_IS_SET(fd->fd_Flags,FDF_NON_BLOCKING))
|
|
SET_FLAG(result,O_NONBLOCK);
|
|
|
|
if(FLAG_IS_SET(fd->fd_Flags,FDF_ASYNC_IO))
|
|
SET_FLAG(result,O_ASYNC);
|
|
|
|
break;
|
|
|
|
case F_SETFL:
|
|
|
|
SHOWMSG("cmd=F_SETFL");
|
|
|
|
result = 0;
|
|
|
|
va_start(arg,cmd);
|
|
|
|
flags = va_arg(arg,int);
|
|
|
|
if((FLAG_IS_SET(flags,O_NONBLOCK) && FLAG_IS_CLEAR(fd->fd_Flags,FDF_NON_BLOCKING)) ||
|
|
(FLAG_IS_CLEAR(flags,O_NONBLOCK) && FLAG_IS_SET(fd->fd_Flags,FDF_NON_BLOCKING)))
|
|
{
|
|
message.action = file_hook_action_set_blocking;
|
|
message.arg = FLAG_IS_CLEAR(flags,O_NONBLOCK);
|
|
|
|
assert( fd->fd_Hook != NULL );
|
|
|
|
CallHookPkt(fd->fd_Hook,fd,&message);
|
|
|
|
result = message.result;
|
|
if(result < 0)
|
|
{
|
|
errno = message.error;
|
|
|
|
va_end(arg);
|
|
goto out;
|
|
}
|
|
|
|
if(FLAG_IS_SET(flags,O_NONBLOCK))
|
|
SET_FLAG(fd->fd_Flags,FDF_NON_BLOCKING);
|
|
else
|
|
CLEAR_FLAG(fd->fd_Flags,FDF_NON_BLOCKING);
|
|
}
|
|
|
|
if((FLAG_IS_SET(flags,O_ASYNC) && FLAG_IS_CLEAR(fd->fd_Flags,FDF_ASYNC_IO)) ||
|
|
(FLAG_IS_CLEAR(flags,O_ASYNC) && FLAG_IS_SET(fd->fd_Flags,FDF_ASYNC_IO)))
|
|
{
|
|
message.action = file_hook_action_set_async;
|
|
message.arg = FLAG_IS_SET(flags,O_ASYNC);
|
|
|
|
assert( fd->fd_Hook != NULL );
|
|
|
|
CallHookPkt(fd->fd_Hook,fd,&message);
|
|
|
|
result = message.result;
|
|
if(result < 0)
|
|
{
|
|
errno = message.error;
|
|
|
|
va_end(arg);
|
|
goto out;
|
|
}
|
|
|
|
if(FLAG_IS_SET(flags,O_ASYNC))
|
|
SET_FLAG(fd->fd_Flags,FDF_ASYNC_IO);
|
|
else
|
|
CLEAR_FLAG(fd->fd_Flags,FDF_ASYNC_IO);
|
|
}
|
|
|
|
va_end(arg);
|
|
|
|
break;
|
|
|
|
case F_DUPFD:
|
|
|
|
SHOWMSG("cmd=F_DUPFD");
|
|
|
|
va_start(arg, cmd);
|
|
fdbase = va_arg(arg, int);
|
|
va_end(arg);
|
|
|
|
if(fdbase < 0)
|
|
{
|
|
errno = EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
/* Check if we have that many fd's already */
|
|
while(fdbase >= __num_fd)
|
|
{
|
|
if(__check_abort_enabled)
|
|
__check_abort();
|
|
|
|
/* No; enlarge it */
|
|
if(__grow_fd_table() < 0)
|
|
goto out;
|
|
}
|
|
|
|
/* Guaranteed to have enough here */
|
|
while(TRUE)
|
|
{
|
|
if(__check_abort_enabled)
|
|
__check_abort();
|
|
|
|
for(i = fdbase ; i < __num_fd ; i++)
|
|
{
|
|
if(FLAG_IS_CLEAR(__fd[i]->fd_Flags,FDF_IN_USE))
|
|
{
|
|
/* Got a file descriptor, duplicate it */
|
|
message.action = file_hook_action_duplicate_fd;
|
|
message.duplicate_fd = __fd[i];
|
|
|
|
assert( fd->fd_Hook != NULL );
|
|
|
|
CallHookPkt(fd->fd_Hook,fd,&message);
|
|
|
|
/* If it worked, leave */
|
|
if (message.result == 0)
|
|
{
|
|
result = i;
|
|
goto out;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Didn't really find any, grow the table further */
|
|
if (__grow_fd_table() < 0)
|
|
goto out;
|
|
}
|
|
|
|
errno = EMFILE;
|
|
break;
|
|
|
|
default:
|
|
|
|
SHOWMSG("something else");
|
|
|
|
errno = ENOSYS;
|
|
break;
|
|
}
|
|
|
|
out:
|
|
|
|
RETURN(result);
|
|
return(result);
|
|
}
|