| 
									
										
										
										
											1998-08-10 19:42:37 +00:00
										 |  |  | \section{\module{fcntl} --- | 
					
						
							| 
									
										
										
										
											1999-03-02 16:37:17 +00:00
										 |  |  |          The \function{fcntl()} and \function{ioctl()} system calls} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-02 16:37:17 +00:00
										 |  |  | \declaremodule{builtin}{fcntl} | 
					
						
							| 
									
										
										
										
											1999-03-02 17:03:42 +00:00
										 |  |  |   \platform{Unix} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | \modulesynopsis{The \function{fcntl()} and \function{ioctl()} system calls.} | 
					
						
							| 
									
										
										
										
											2000-04-03 20:13:55 +00:00
										 |  |  | \sectionauthor{Jaap Vermeulen}{} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-09 20:16:18 +00:00
										 |  |  | \indexii{UNIX@\UNIX{}}{file control} | 
					
						
							|  |  |  | \indexii{UNIX@\UNIX{}}{I/O control} | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-03-13 10:03:32 +00:00
										 |  |  | This module performs file control and I/O control on file descriptors. | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | It is an interface to the \cfunction{fcntl()} and \cfunction{ioctl()} | 
					
						
							|  |  |  | \UNIX{} routines.  File descriptors can be obtained with the | 
					
						
							|  |  |  | \method{fileno()} method of a file or socket object. | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | The module defines the following functions: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | \begin{funcdesc}{fcntl}{fd, op\optional{, arg}} | 
					
						
							|  |  |  |   Perform the requested operation on file descriptor \var{fd}. | 
					
						
							|  |  |  |   The operation is defined by \var{op} and is operating system | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  |   dependent.  Typically these codes can be retrieved from the library | 
					
						
							| 
									
										
										
										
											1998-04-03 06:54:27 +00:00
										 |  |  |   module \module{FCNTL}\refstmodindex{FCNTL}. The argument \var{arg} | 
					
						
							|  |  |  |   is optional, and defaults to the integer value \code{0}.  When | 
					
						
							|  |  |  |   present, it can either be an integer value, or a string.  With | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  |   the argument missing or an integer value, the return value of this | 
					
						
							| 
									
										
										
										
											1999-03-02 16:37:17 +00:00
										 |  |  |   function is the integer return value of the C \cfunction{fcntl()} | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  |   call.  When the argument is a string it represents a binary | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  |   structure, e.g.\ created by \function{struct.pack()}. The binary | 
					
						
							| 
									
										
										
										
											1999-03-02 16:37:17 +00:00
										 |  |  |   data is copied to a buffer whose address is passed to the C | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  |   \cfunction{fcntl()} call.  The return value after a successful call | 
					
						
							| 
									
										
										
										
											2000-08-02 20:53:51 +00:00
										 |  |  |   is the contents of the buffer, converted to a string object.  The length | 
					
						
							|  |  |  |   of the returned string will be the same as the length of the \var{arg}  | 
					
						
							|  |  |  |   argument.  This is limited to 1024 bytes.  If the information returned | 
					
						
							|  |  |  |   in the buffer by the operating system is larger than 1024 bytes,  | 
					
						
							|  |  |  |   this is most likely to result in a segmentation violation or a more | 
					
						
							|  |  |  |   subtle data corruption. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   If the \cfunction{fcntl()} fails, an \exception{IOError} is | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  |   raised. | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | \begin{funcdesc}{ioctl}{fd, op, arg} | 
					
						
							|  |  |  |   This function is identical to the \function{fcntl()} function, except | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  |   that the operations are typically defined in the library module | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  |   \module{IOCTL}. | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | \begin{funcdesc}{flock}{fd, op} | 
					
						
							| 
									
										
										
										
											1996-06-26 19:20:33 +00:00
										 |  |  | Perform the lock operation \var{op} on file descriptor \var{fd}. | 
					
						
							| 
									
										
										
										
											1998-04-03 06:54:27 +00:00
										 |  |  | See the \UNIX{} manual \manpage{flock}{3} for details.  (On some | 
					
						
							|  |  |  | systems, this function is emulated using \cfunction{fcntl()}.) | 
					
						
							| 
									
										
										
										
											1996-06-26 19:20:33 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | \begin{funcdesc}{lockf}{fd, code, \optional{len, \optional{start, \optional{whence}}}} | 
					
						
							|  |  |  | This is a wrapper around the \constant{FCNTL.F_SETLK} and | 
					
						
							|  |  |  | \constant{FCNTL.F_SETLKW} \function{fcntl()} calls.  See the \UNIX{} | 
					
						
							|  |  |  | manual for details. | 
					
						
							| 
									
										
										
										
											1996-10-11 17:43:34 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | If the library modules \module{FCNTL}\refstmodindex{FCNTL} or | 
					
						
							|  |  |  | \module{IOCTL}\refstmodindex{IOCTL} are missing, you can find the | 
					
						
							| 
									
										
										
										
											1999-03-02 16:37:17 +00:00
										 |  |  | opcodes in the C include files \code{<sys/fcntl.h>} and | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | \code{<sys/ioctl.h>}.  You can create the modules yourself with the | 
					
						
							|  |  |  | \program{h2py} script, found in the \file{Tools/scripts/} directory. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Examples (all on a SVR4 compliant system): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-13 06:58:54 +00:00
										 |  |  | \begin{verbatim} | 
					
						
							| 
									
										
										
										
											1999-06-24 17:58:44 +00:00
										 |  |  | import struct, fcntl, FCNTL | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | file = open(...) | 
					
						
							|  |  |  | rv = fcntl(file.fileno(), FCNTL.O_NDELAY, 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | lockdata = struct.pack('hhllhh', FCNTL.F_WRLCK, 0, 0, 0, 0, 0) | 
					
						
							| 
									
										
										
										
											1999-06-24 17:58:44 +00:00
										 |  |  | rv = fcntl.fcntl(file.fileno(), FCNTL.F_SETLKW, lockdata) | 
					
						
							| 
									
										
										
										
											1998-02-13 06:58:54 +00:00
										 |  |  | \end{verbatim} | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-05-19 09:09:50 +00:00
										 |  |  | Note that in the first example the return value variable \code{rv} will | 
					
						
							|  |  |  | hold an integer value; in the second example it will hold a string | 
					
						
							| 
									
										
										
										
											1998-04-03 06:54:27 +00:00
										 |  |  | value.  The structure lay-out for the \var{lockdata} variable is | 
					
						
							| 
									
										
										
										
											1998-03-12 05:33:40 +00:00
										 |  |  | system dependent --- therefore using the \function{flock()} call may be | 
					
						
							| 
									
										
										
										
											1996-06-26 19:20:33 +00:00
										 |  |  | better. |