| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:10:35 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | 
					
						
							|  |  |  | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
					
						
							|  |  |  | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | 
					
						
							|  |  |  | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
					
						
							|  |  |  | PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* fcntl module */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-05 23:43:35 +00:00
										 |  |  | #ifdef HAVE_UNISTD_H
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_SYS_FILE_H
 | 
					
						
							|  |  |  | #include <sys/file.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-09 18:49:14 +00:00
										 |  |  | #include <sys/ioctl.h>
 | 
					
						
							| 
									
										
										
										
											1996-06-11 15:11:34 +00:00
										 |  |  | #include <fcntl.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* fcntl(fd, opt, [arg]) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | fcntl_fcntl(self, args) | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	PyObject *self; /* Not used */ | 
					
						
							|  |  |  | 	PyObject *args; | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int fd; | 
					
						
							|  |  |  | 	int code; | 
					
						
							|  |  |  | 	int arg; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 	char *str; | 
					
						
							|  |  |  | 	int len; | 
					
						
							|  |  |  | 	char buf[1024]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	if (PyArg_Parse(args, "(iis#)", &fd, &code, &str, &len)) { | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 		if (len > sizeof buf) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 			PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 					"fcntl string arg too long"); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		memcpy(buf, str, len); | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1995-10-07 19:18:22 +00:00
										 |  |  | 		ret = fcntl(fd, code, buf); | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1995-10-07 19:18:22 +00:00
										 |  |  | 		if (ret < 0) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 			PyErr_SetFromErrno(PyExc_IOError); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		return PyString_FromStringAndSize(buf, len); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	PyErr_Clear(); | 
					
						
							|  |  |  | 	if (PyArg_Parse(args, "(ii)", &fd, &code)) | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 		arg = 0; | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							|  |  |  | 		if (!PyArg_Parse(args, "(iii)", &fd, &code, &arg)) | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 	ret = fcntl(fd, code, arg); | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 	if (ret < 0) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		PyErr_SetFromErrno(PyExc_IOError); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	return PyInt_FromLong((long)ret); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-23 15:32:55 +00:00
										 |  |  | static char fcntl_doc [] = | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "fcntl(fd, opt, [arg])\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Perform the requested operation on file descriptor fd.  The operation\n\ | 
					
						
							|  |  |  | is defined by op and is operating system dependent.  Typically these\n\ | 
					
						
							|  |  |  | codes can be retrieved from the library module FCNTL.  The argument arg\n\ | 
					
						
							|  |  |  | is optional, and defaults to 0; it may be an int or a string."; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ioctl(fd, opt, [arg]) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | fcntl_ioctl(self, args) | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	PyObject *self; /* Not used */ | 
					
						
							|  |  |  | 	PyObject *args; | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int fd; | 
					
						
							|  |  |  | 	int code; | 
					
						
							|  |  |  | 	int arg; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 	char *str; | 
					
						
							|  |  |  | 	int len; | 
					
						
							|  |  |  | 	char buf[1024]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	if (PyArg_Parse(args, "(iis#)", &fd, &code, &str, &len)) { | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 		if (len > sizeof buf) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 			PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 					"ioctl string arg too long"); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		memcpy(buf, str, len); | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1995-10-07 19:18:22 +00:00
										 |  |  | 		ret = ioctl(fd, code, buf); | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1995-10-07 19:18:22 +00:00
										 |  |  | 		if (ret < 0) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 			PyErr_SetFromErrno(PyExc_IOError); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		return PyString_FromStringAndSize(buf, len); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	PyErr_Clear(); | 
					
						
							|  |  |  | 	if (PyArg_Parse(args, "(ii)", &fd, &code)) | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 		arg = 0; | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							|  |  |  | 		if (!PyArg_Parse(args, "(iii)", &fd, &code, &arg)) | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 	ret = ioctl(fd, code, arg); | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 	if (ret < 0) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		PyErr_SetFromErrno(PyExc_IOError); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	return PyInt_FromLong((long)ret); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-23 15:32:55 +00:00
										 |  |  | static char ioctl_doc [] = | 
					
						
							|  |  |  | "ioctl(fd, opt, [arg])\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Perform the requested operation on file descriptor fd.  The operation\n\ | 
					
						
							|  |  |  | is defined by op and is operating system dependent.  Typically these\n\ | 
					
						
							|  |  |  | codes can be retrieved from the library module IOCTL.  The argument arg\n\ | 
					
						
							|  |  |  | is optional, and defaults to 0; it may be an int or a string."; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | /* flock(fd, operation) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | fcntl_flock(self, args) | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	PyObject *self; /* Not used */ | 
					
						
							|  |  |  | 	PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int fd; | 
					
						
							|  |  |  | 	int code; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "(ii)", &fd, &code)) | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-06-11 15:11:34 +00:00
										 |  |  | #ifdef HAVE_FLOCK
 | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 	Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | 	ret = flock(fd, code); | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 	Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1996-06-11 15:11:34 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef LOCK_SH
 | 
					
						
							|  |  |  | #define LOCK_SH		1	/* shared lock */
 | 
					
						
							|  |  |  | #define LOCK_EX		2	/* exclusive lock */
 | 
					
						
							|  |  |  | #define LOCK_NB		4	/* don't block when locking */
 | 
					
						
							|  |  |  | #define LOCK_UN		8	/* unlock */
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		struct flock l; | 
					
						
							|  |  |  | 		if (code == LOCK_UN) | 
					
						
							|  |  |  | 			l.l_type = F_UNLCK; | 
					
						
							|  |  |  | 		else if (code & LOCK_SH) | 
					
						
							|  |  |  | 			l.l_type = F_RDLCK; | 
					
						
							|  |  |  | 		else if (code & LOCK_EX) | 
					
						
							|  |  |  | 			l.l_type = F_WRLCK; | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 			PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 					"unrecognized flock argument"); | 
					
						
							| 
									
										
										
										
											1996-06-11 15:11:34 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		l.l_whence = l.l_start = l.l_len = 0; | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 		Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1996-06-11 15:11:34 +00:00
										 |  |  | 		ret = fcntl(fd, (code & LOCK_NB) ? F_SETLK : F_SETLKW, &l); | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 		Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1996-06-11 15:11:34 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | #endif /* HAVE_FLOCK */
 | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | 	if (ret < 0) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		PyErr_SetFromErrno(PyExc_IOError); | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-23 15:32:55 +00:00
										 |  |  | static char flock_doc [] = | 
					
						
							|  |  |  | "flock(fd, operation)\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Perform the lock operation op on file descriptor fd.  See the Unix \n\ | 
					
						
							|  |  |  | manual flock(3) for details.  (On some systems, this function is\n\ | 
					
						
							|  |  |  | emulated using fcntl().)"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | /* lockf(fd, operation) */ | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | fcntl_lockf(self, args) | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	PyObject *self; /* Not used */ | 
					
						
							|  |  |  | 	PyObject *args; | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 	int fd, code, ret, whence = 0; | 
					
						
							|  |  |  | 	PyObject *lenobj = NULL, *startobj = NULL; | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 	if (!PyArg_ParseTuple(args, "ii|OOi", &fd, &code, | 
					
						
							|  |  |  | 			      &lenobj, &startobj, &whence)) | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | 	    return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef LOCK_SH
 | 
					
						
							|  |  |  | #define LOCK_SH		1	/* shared lock */
 | 
					
						
							|  |  |  | #define LOCK_EX		2	/* exclusive lock */
 | 
					
						
							|  |  |  | #define LOCK_NB		4	/* don't block when locking */
 | 
					
						
							|  |  |  | #define LOCK_UN		8	/* unlock */
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		struct flock l; | 
					
						
							|  |  |  | 		if (code == LOCK_UN) | 
					
						
							|  |  |  | 			l.l_type = F_UNLCK; | 
					
						
							|  |  |  | 		else if (code & LOCK_SH) | 
					
						
							|  |  |  | 			l.l_type = F_RDLCK; | 
					
						
							|  |  |  | 		else if (code & LOCK_EX) | 
					
						
							|  |  |  | 			l.l_type = F_WRLCK; | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 			PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 					"unrecognized flock argument"); | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 		l.l_start = l.l_len = 0; | 
					
						
							|  |  |  | 		if (startobj != NULL) { | 
					
						
							|  |  |  | #if !defined(HAVE_LARGEFILE_SUPPORT)
 | 
					
						
							|  |  |  | 			l.l_start = PyInt_AsLong(startobj); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 			l.l_start = PyLong_Check(startobj) ? | 
					
						
							|  |  |  | 					PyLong_AsLongLong(startobj) : | 
					
						
							|  |  |  | 					PyInt_AsLong(startobj); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 			if (PyErr_Occurred()) | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (lenobj != NULL) { | 
					
						
							|  |  |  | #if !defined(HAVE_LARGEFILE_SUPPORT)
 | 
					
						
							|  |  |  | 			l.l_len = PyInt_AsLong(lenobj); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 			l.l_len = PyLong_Check(lenobj) ? | 
					
						
							|  |  |  | 					PyLong_AsLongLong(lenobj) : | 
					
						
							|  |  |  | 					PyInt_AsLong(lenobj); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 			if (PyErr_Occurred()) | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | 		l.l_whence = whence; | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 		Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | 		ret = fcntl(fd, (code & LOCK_NB) ? F_SETLK : F_SETLKW, &l); | 
					
						
							| 
									
										
										
										
											1999-01-06 18:44:23 +00:00
										 |  |  | 		Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (ret < 0) { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 		PyErr_SetFromErrno(PyExc_IOError); | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1996-09-11 23:17:20 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1996-05-23 22:56:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-23 15:32:55 +00:00
										 |  |  | static char lockf_doc [] = | 
					
						
							|  |  |  | "lockf (fd, operation)\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | This is a wrapper around the FCNTL.F_SETLK and FCNTL.F_SETLKW fcntl()\n\ | 
					
						
							|  |  |  | calls.  See the Unix manual for details."; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | /* List of functions */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | static PyMethodDef fcntl_methods[] = { | 
					
						
							| 
									
										
										
										
											1998-11-23 15:32:55 +00:00
										 |  |  | 	{"fcntl",	fcntl_fcntl, 0, fcntl_doc}, | 
					
						
							|  |  |  | 	{"ioctl",	fcntl_ioctl, 0, ioctl_doc}, | 
					
						
							|  |  |  | 	{"flock",	fcntl_flock, 0, flock_doc}, | 
					
						
							|  |  |  | 	{"lockf",       fcntl_lockf, 1, lockf_doc}, | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-23 15:32:55 +00:00
										 |  |  | static char module_doc [] = | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "This module performs file control and I/O control on file \n\
 | 
					
						
							|  |  |  | descriptors.  It is an interface to the fcntl() and ioctl() Unix\n\ | 
					
						
							|  |  |  | routines.  File descriptors can be obtained with the fileno() method of\n\ | 
					
						
							|  |  |  | a file or socket object."; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | /* Module initialisation */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-07-31 19:39:54 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | ins(d, symbol, value) | 
					
						
							|  |  |  |         PyObject* d; | 
					
						
							|  |  |  |         char* symbol; | 
					
						
							|  |  |  |         long value; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         PyObject* v = PyInt_FromLong(value); | 
					
						
							|  |  |  |         if (!v || PyDict_SetItemString(d, symbol, v) < 0) | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Py_DECREF(v); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | all_ins(d) | 
					
						
							|  |  |  |         PyObject* d; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         if (ins(d, "LOCK_SH", (long)LOCK_SH)) return -1; | 
					
						
							|  |  |  |         if (ins(d, "LOCK_EX", (long)LOCK_EX)) return -1; | 
					
						
							|  |  |  |         if (ins(d, "LOCK_NB", (long)LOCK_NB)) return -1; | 
					
						
							|  |  |  |         if (ins(d, "LOCK_UN", (long)LOCK_UN)) return -1; | 
					
						
							| 
									
										
										
										
											1997-08-15 02:52:08 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1997-07-31 19:39:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:50:17 +00:00
										 |  |  | DL_EXPORT(void) | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | initfcntl() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	PyObject *m, *d; | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-23 15:32:55 +00:00
										 |  |  | 	/* Create the module and add the functions and documentation */ | 
					
						
							|  |  |  | 	m = Py_InitModule3("fcntl", fcntl_methods, module_doc); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Add some symbolic constants to the module */ | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	d = PyModule_GetDict(m); | 
					
						
							| 
									
										
										
										
											1997-07-31 19:39:54 +00:00
										 |  |  | 	all_ins(d); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Check for errors */ | 
					
						
							| 
									
										
										
										
											1996-12-17 17:42:22 +00:00
										 |  |  | 	if (PyErr_Occurred()) | 
					
						
							|  |  |  | 		Py_FatalError("can't initialize module fcntl"); | 
					
						
							| 
									
										
										
										
											1992-08-17 08:55:12 +00:00
										 |  |  | } |