File Locking with fcntl on Darwin Mac OSX


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting File Locking with fcntl on Darwin Mac OSX
# 1  
Old 11-30-2011
File Locking with fcntl on Darwin Mac OSX

Hello

I have a Perl script that works on non-darwin Mac OS X environments and I think I have narrowed down the issue to a file locking problem.

In other linux environments, the flock struct is defined differently. I have adjusted this via the reference for Mac OS X fcntl(2) man page. The struct is defined as:
Code:
struct flock {
                 off_t       l_start;    /* starting offset */
                 off_t       l_len;      /* len = 0 means until end of file */
                 pid_t       l_pid;      /* lock owner */
                 short       l_type;     /* lock type: read/write, etc. */
                 short       l_whence;   /* type of l_start */
             };

I am using the flock as the following:

Code:
my $msg = fcntl( $LOCKF, F_SETLK, pack("lliss",0,0,0,F_WRLCK,0) ) or die "Something wrong: $!";

The adjustment works on a separate test script that I extracted parts of the script out for testing. However when I deploy it to the real script, it doesnt work anymore. I then did a trial-error sequence and found that after certain 'additions' to the code, anything I add, such as a simple print "hello" statement, would result in the fcntl line not working. (The error outputted is Invalid Argument supplied).

Is it because the offset, len, l_whence are not defined correctly?

Please help. Thanks for your help.
# 2  
Old 11-30-2011
You shouldn't be using ioctl in perl. If your structure and C's disagree even slightly, then weird things can happen. If your structure and perl's completely agree, weird things can still happen. There may be memory alignment considerations and the like which rearrange or misalign the members from the arrangement you expected, only the C compiler's judgement should be trusted on that.

I seem to remember 'struct flock''s arrangement does seem to be different in OSX than in Linux, too. Something about one of the types involved not actually being an integer anymore.

Fortunately, perl has a built-in flock function so you don't need to call ioctl yourself. It's not even a module, it comes with standard perl.

Code:
$ perldoc -f flock
       flock FILEHANDLE,OPERATION
               Calls flock(2), or an emulation of it, on FILEHANDLE.  Returns
               true for success, false on failure.  Produces a fatal error if
               used on a machine that doesn't implement flock(2), fcntl(2)
               locking, or lockf(3).  "flock" is Perl's portable file locking
               interface, although it locks only entire files, not records.

               Two potentially non-obvious but traditional "flock" semantics
               are that it waits indefinitely until the lock is granted, and
               that its locks merely advisory.  Such discretionary locks are
               more flexible, but offer fewer guarantees.  This means that
               programs that do not also use "flock" may modify files locked
               with "flock".  See perlport, your port's specific documenta-
               tion, or your system-specific local manpages for details.  It's
               best to assume traditional behavior if you're writing portable
               programs.  (But if you're not, you should as always feel per-
               fectly free to write for your own system's idiosyncrasies
               (sometimes called "features").  Slavish adherence to portabil-
               ity concerns shouldn't get in the way of your getting your job
               done.)

               OPERATION is one of LOCK_SH, LOCK_EX, or LOCK_UN, possibly com-
               bined with LOCK_NB.  These constants are traditionally valued
               1, 2, 8 and 4, but you can use the symbolic names if you import
               them from the Fcntl module, either individually, or as a group
               using the ':flock' tag.  LOCK_SH requests a shared lock,
               LOCK_EX requests an exclusive lock, and LOCK_UN releases a pre-
               viously requested lock.  If LOCK_NB is bitwise-or'ed with
               LOCK_SH or LOCK_EX then "flock" will return immediately rather
               than blocking waiting for the lock (check the return status to
               see if you got it).

               To avoid the possibility of miscoordination, Perl now flushes
               FILEHANDLE before locking or unlocking it.

               Note that the emulation built with lockf(3) doesn't provide
               shared locks, and it requires that FILEHANDLE be open with
               write intent.  These are the semantics that lockf(3) imple-
               ments.  Most if not all systems implement lockf(3) in terms of
               fcntl(2) locking, though, so the differing semantics shouldn't
               bite too many people.

...


Last edited by Corona688; 11-30-2011 at 03:29 PM..
# 3  
Old 11-30-2011
do you mean not use fcntl? you typed ioctl...?
# 4  
Old 11-30-2011
fcntl, ioctl, same difference -- they're both raw system calls which need C data structures. You shouldn't be using them in perl, especially for programs you want to be portable. This might fail in different CPU architectures of the same Linux kernel, let alone a foreign OS.

perl's flock function exists because they're not the same everywhere.
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 11-30-2011
thanks for your help. its interesting that i was able to get it to partially work but i guess it makes sense that the behavior is unpredictable at best. i never had an issue where adding debug print statements can break a script.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

UML on MAC OSX

Hey guyz, Is it possible to build user-mode linux kernel on MAC OSX? Please I need a reply asap as I have an assignment that I need to do. Thanks! Adel (1 Reply)
Discussion started by: aje02
1 Replies

2. Programming

fcntl works in linux but not in mac os x

Hi, Unless I am missing some serious differences in Mac and linux in terms of C programming, I dont know why this would happen. Please take a look at the following piece of code fragment: bool add_input_to_db(Cons *new_data) { // Set the attributes of the lock struct flock fl =... (3 Replies)
Discussion started by: newhere
3 Replies

3. OS X (Apple)

Mac OSX kernel

is there anyway of looking at, and if possible, modifying it? (2 Replies)
Discussion started by: cleansing_flame
2 Replies

4. Filesystems, Disks and Memory

unix executable file problem on MAC OSX ??? please help

I've got this problem. My computers and external hard drives are converting many of my files to a Unix Executable File which has a grey terminal looking icon. I don't understand what is causing this to happen. It is happening to a large number of my image file of different formats and also... (1 Reply)
Discussion started by: chadb
1 Replies

5. UNIX for Dummies Questions & Answers

Upgrading bash on Darwin (osx)

Hi, I have installed bash 3.2 via darwin ports, however when I try and change the shell i.e. chsh -s /opt/local/bin/bash is says its a non-standard shell? but if i run ./bash i get a new bash prompt with version 3.2? Thanks (3 Replies)
Discussion started by: c19h28O2
3 Replies

6. Programming

Problem with curses library on Mac OS 10.2 darwin

Hello, I am trying to write a simple program with functions in the ncurses library, on a Mac running OSX 10.2.8, with the compiler and libraries that were included in the Dec 2002 Developer's tools release (the last one that runs on Jaguar, as far as I know). When I try to compile, I get... (2 Replies)
Discussion started by: marks
2 Replies

7. Windows & DOS: Issues & Discussions

win-xp/mac-osx

I'm currently looking for an emulation program that would allow me to open and run osx app.s and programs on a windows xp based system. if not is there a unix/linux/lindows program that may do the same? (3 Replies)
Discussion started by: area51nstk
3 Replies

8. UNIX for Dummies Questions & Answers

Make for Mac OS X (Darwin)

Can anyone tell me where to find "make". I have performed an exhaustive search of my system using find - to no avail. (2 Replies)
Discussion started by: garb
2 Replies

9. UNIX Desktop Questions & Answers

Mac Osx.2

I finally broke down and decided to buy a new piece of hardware. I think I made the right decision when I chose an Apple iBook - OSX is incredible! I haven't used a Mac since System7.5, and 10.2 is just blowing me away! Best of all, it's easy to use for people who are not used to Mac, but if I... (5 Replies)
Discussion started by: LivinFree
5 Replies

10. Cybersecurity

ssh and Mac OSX

Please help if you are familiar with Mac OSX. I downloaded OpenSSH for a newer version of SSH than what comes with OS 10.1. What a mistake! Now every time I try to make a connection to my remote server I get an message that ssh was built against version such and such and I have version such and... (2 Replies)
Discussion started by: glfisfn
2 Replies
Login or Register to Ask a Question