1568b59b9SBrian Somers.\" 2568b59b9SBrian Somers.\" Copyright (c) 1996 Brian Somers <brian@awfulhak.demon.co.uk> 3568b59b9SBrian Somers.\" 4568b59b9SBrian Somers.\" All rights reserved. 5568b59b9SBrian Somers.\" 6568b59b9SBrian Somers.\" Redistribution and use in source and binary forms, with or without 7568b59b9SBrian Somers.\" modification, are permitted provided that the following conditions 8568b59b9SBrian Somers.\" are met: 9568b59b9SBrian Somers.\" 1. Redistributions of source code must retain the above copyright 10568b59b9SBrian Somers.\" notice, this list of conditions and the following disclaimer. 11568b59b9SBrian Somers.\" 2. Redistributions in binary form must reproduce the above copyright 12568b59b9SBrian Somers.\" notice, this list of conditions and the following disclaimer in the 13568b59b9SBrian Somers.\" documentation and/or other materials provided with the distribution. 14568b59b9SBrian Somers.\" 15568b59b9SBrian Somers.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR 16568b59b9SBrian Somers.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17568b59b9SBrian Somers.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18568b59b9SBrian Somers.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, 19568b59b9SBrian Somers.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20568b59b9SBrian Somers.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21568b59b9SBrian Somers.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22568b59b9SBrian Somers.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23568b59b9SBrian Somers.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24568b59b9SBrian Somers.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25568b59b9SBrian Somers.\" 2685b0d75dSBrian Somers.\" $Id: uucplock.3,v 1.6 1997/05/11 08:50:33 davidn Exp $ 27568b59b9SBrian Somers.\" " 28568b59b9SBrian Somers.Dd March 30, 1997 29568b59b9SBrian Somers.Os 30568b59b9SBrian Somers.Dt uucplock 3 31568b59b9SBrian Somers.Sh NAME 32568b59b9SBrian Somers.Nm uu_lock , 33b5ebf1f5SMike Pritchard.Nm uu_unlock , 34b5ebf1f5SMike Pritchard.Nm uu_lockerr 35568b59b9SBrian Somers.Nd acquire and release control of a serial device 36568b59b9SBrian Somers.Sh SYNOPSIS 37210793f7SDavid Nugent.Fd #include <sys/types.h> 38568b59b9SBrian Somers.Fd #include <libutil.h> 39568b59b9SBrian Somers.Ft int 4085b0d75dSBrian Somers.Fn uu_lock "const char *ttyname" 41568b59b9SBrian Somers.Ft int 4285b0d75dSBrian Somers.Fn uu_unlock "const char *ttyname" 4385b0d75dSBrian Somers.Ft const char * 44687d0cdeSBrian Somers.Fn uu_lockerr "int uu_lockresult" 45568b59b9SBrian Somers.Pp 46568b59b9SBrian SomersLink with 47568b59b9SBrian Somers.Va -lutil 48568b59b9SBrian Somerson the 49568b59b9SBrian Somers.Xr cc 1 50568b59b9SBrian Somerscommand line. 51568b59b9SBrian Somers.Sh DESCRIPTION 52568b59b9SBrian SomersThe 53568b59b9SBrian Somers.Fn uu_lock 54568b59b9SBrian Somersfunction attempts to create a lock file called 55b5ebf1f5SMike Pritchard.Pa /var/spool/lock/LCK.. 56568b59b9SBrian Somerswith a suffix given by the passed 57568b59b9SBrian Somers.Fa ttyname . 58568b59b9SBrian SomersIf the file already exists, it is expected to contain the process 59568b59b9SBrian Somersid of the locking program. 60568b59b9SBrian Somers.Pp 61568b59b9SBrian SomersIf the file does not already exist, or the owning process given by 62568b59b9SBrian Somersthe process id found in the lock file is no longer running, 63568b59b9SBrian Somers.Fn uu_lock 64568b59b9SBrian Somerswill write its own process id into the file and return success. 65568b59b9SBrian Somers.Pp 66568b59b9SBrian Somers.Fn uu_unlock 67568b59b9SBrian Somersremoves the lockfile created by 68568b59b9SBrian Somers.Fn uu_lock 69568b59b9SBrian Somersfor the given 70568b59b9SBrian Somers.Fa ttyname . 71568b59b9SBrian SomersCare should be taken that 72568b59b9SBrian Somers.Fn uu_lock 73568b59b9SBrian Somerswas successful before calling 74568b59b9SBrian Somers.Fn uu_unlock . 75687d0cdeSBrian Somers.Pp 76687d0cdeSBrian Somers.Fn uu_lockerr 77687d0cdeSBrian Somersreturns an error string representing the error 78687d0cdeSBrian Somers.Fa uu_lockresult , 79687d0cdeSBrian Somersas returned from 80687d0cdeSBrian Somers.Fn uu_lock . 81568b59b9SBrian Somers.Sh RETURN VALUES 82687d0cdeSBrian Somers.Fn uu_unlock 83687d0cdeSBrian Somersreturns 0 on success and -1 on failure. 84687d0cdeSBrian Somers.Pp 85687d0cdeSBrian Somers.Fn uu_lock 86687d0cdeSBrian Somersmay return any of the following values: 87687d0cdeSBrian Somers.Pp 88687d0cdeSBrian Somers.Dv UU_LOCK_INUSE: 89687d0cdeSBrian SomersThe lock is in use by another process. 90687d0cdeSBrian Somers.Pp 91687d0cdeSBrian Somers.Dv UU_LOCK_OK: 92687d0cdeSBrian SomersThe lock was successfully created. 93687d0cdeSBrian Somers.Pp 94687d0cdeSBrian Somers.Dv UU_LOCK_OPEN_ERR: 95687d0cdeSBrian SomersThe lock file could not be opened via 96687d0cdeSBrian Somers.Xr open 2 . 97687d0cdeSBrian Somers.Pp 98687d0cdeSBrian Somers.Dv UU_LOCK_READ_ERR: 99687d0cdeSBrian SomersThe lock file could not be read via 100687d0cdeSBrian Somers.Xr read 2 . 101687d0cdeSBrian Somers.Pp 102687d0cdeSBrian Somers.Dv UU_LOCK_SEEK_ERR: 103687d0cdeSBrian SomersThe lock file was 104687d0cdeSBrian Somers.Dq stale , 105687d0cdeSBrian Somersbut the call to 106687d0cdeSBrian Somers.Xr lseek 2 107687d0cdeSBrian Somersnecessary to write the current process id failed. 108687d0cdeSBrian Somers.Pp 109687d0cdeSBrian Somers.Dv UU_LOCK_WRITE_ERR: 110687d0cdeSBrian SomersThe current process id could not be written to the lock file via a call to 111687d0cdeSBrian Somers.Xr write 2 . 112687d0cdeSBrian Somers.Pp 113687d0cdeSBrian SomersIf a value of 114687d0cdeSBrian Somers.Dv UU_LOCK_OK 115687d0cdeSBrian Somersis passed to 116687d0cdeSBrian Somers.Fn uu_lockerr , 117134970f6SMike Pritchardan empty string is returned. 11828754192SAndrey A. ChernovOtherwise, a string specifying 119687d0cdeSBrian Somersthe reason for failure is returned. 120687d0cdeSBrian Somers.Fn uu_lockerr 121687d0cdeSBrian Somersuses the current value of 122b5ebf1f5SMike Pritchard.Va errno 123687d0cdeSBrian Somersto determine the exact error. Care should be made not to allow 124b5ebf1f5SMike Pritchard.Va errno 125687d0cdeSBrian Somersto be changed between calls to 126568b59b9SBrian Somers.Fn uu_lock 127568b59b9SBrian Somersand 128687d0cdeSBrian Somers.Fn uu_lockerr . 129568b59b9SBrian Somers.Sh ERRORS 130687d0cdeSBrian SomersIf 131568b59b9SBrian Somers.Fn uu_lock 132687d0cdeSBrian Somersreturns one of the four error values above, the global value 133b5ebf1f5SMike Pritchard.Va errno 134687d0cdeSBrian Somerscan be used to determine the cause. Refer to the respective manual pages 135687d0cdeSBrian Somersfor further details. 136568b59b9SBrian Somers.Pp 137568b59b9SBrian Somers.Fn uu_unlock 138568b59b9SBrian Somerswill set the global variable 139b5ebf1f5SMike Pritchard.Va errno 140568b59b9SBrian Somersto reflect the reason that the lock file could not be removed. 141568b59b9SBrian SomersRefer to the description of 142568b59b9SBrian Somers.Xr unlink 2 143568b59b9SBrian Somersfor further details. 144687d0cdeSBrian Somers.Sh SEE ALSO 145687d0cdeSBrian Somers.Xr open 2 , 146687d0cdeSBrian Somers.Xr read 2 , 147687d0cdeSBrian Somers.Xr lseek 2 , 148687d0cdeSBrian Somers.Xr write 2 149568b59b9SBrian Somers.Sh BUGS 150687d0cdeSBrian SomersLocking is not atomic. Should a race condition occur, it's 151687d0cdeSBrian Somerspossible that the 152687d0cdeSBrian Somers.Dq losing 153687d0cdeSBrian Somersprocess fails to identify the 154687d0cdeSBrian Somers.Dq winning 155687d0cdeSBrian Somersprocess. If this happens, 156687d0cdeSBrian Somers.Fn uu_lock 157687d0cdeSBrian Somersreturns 158687d0cdeSBrian Somers.Dv UU_LOCK_READ_ERR 159687d0cdeSBrian Somersand errno is set to 160b5ebf1f5SMike Pritchard.Er EINVAL . 161568b59b9SBrian Somers.Pp 162568b59b9SBrian SomersIt is possible that a stale lock is not recognised as such if a new 163568b59b9SBrian Somersprocesses is assigned the same processes id as the program that left 164568b59b9SBrian Somersthe stale lock. 165568b59b9SBrian Somers.Pp 166568b59b9SBrian SomersThe calling process must have write permissions to the 167b5ebf1f5SMike Pritchard.Pa /var/spool/lock 168568b59b9SBrian Somersdirectory. There is no mechanism in place to ensure that the 169568b59b9SBrian Somerspermissions of this directory are the same as those of the 170568b59b9SBrian Somersserial devices that might be locked. 171