1 /* ----------------------------------------------------------------------- *
3 * Copyright 2003-2005 H. Peter Anvin - All Rights Reserved
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without
8 * restriction, including without limitation the rights to use,
9 * copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom
11 * the Software is furnished to do so, subject to the following
14 * The above copyright notice and this permission notice shall
15 * be included in all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
26 * ----------------------------------------------------------------------- */
38 #include <sys/types.h>
43 #define PACKAGE_STRING "util-linux-ng 2.18"
46 static const struct option long_options
[] = {
47 { "shared", 0, NULL
, 's' },
48 { "exclusive", 0, NULL
, 'x' },
49 { "unlock", 0, NULL
, 'u' },
50 { "nonblocking", 0, NULL
, 'n' },
51 { "nb", 0, NULL
, 'n' },
52 { "timeout", 1, NULL
, 'w' },
53 { "wait", 1, NULL
, 'w' },
54 { "close", 0, NULL
, 'o' },
55 { "help", 0, NULL
, 'h' },
56 { "version", 0, NULL
, 'V' },
62 static void usage(int ex
)
64 fputs("flock (" PACKAGE_STRING
")\n", stderr
);
66 _("Usage: %1$s [-sxun][-w #] fd#\n"
67 " %1$s [-sxon][-w #] file [-c] command...\n"
68 " %1$s [-sxon][-w #] directory [-c] command...\n"
69 " -s --shared Get a shared lock\n"
70 " -x --exclusive Get an exclusive lock\n"
71 " -u --unlock Remove a lock\n"
72 " -n --nonblock Fail rather than wait\n"
73 " -w --timeout Wait for a limited amount of time\n"
74 " -o --close Close file descriptor before running command\n"
75 " -c --command Run a single command string through the shell\n"
76 " -h --help Display this text\n"
77 " -V --version Display version\n"),
83 static sig_atomic_t timeout_expired
= 0;
85 static void timeout_handler(int sig
)
93 static char * strtotimeval(const char *str
, struct timeval
*tv
)
96 long fs
; /* Fractional seconds */
99 tv
->tv_sec
= strtol(str
, &s
, 10);
105 for ( i
= 0 ; i
< 6 ; i
++ ) {
116 while ( isdigit(*s
) )
124 int main(int argc
, char *argv
[])
126 struct itimerval timeout
, old_timer
;
127 int have_timeout
= 0;
136 char **cmd_argv
= NULL
, *sh_c_argv
[4];
137 const char *filename
= NULL
;
138 struct sigaction sa
, old_sa
;
145 memset(&timeout
, 0, sizeof timeout
);
148 while ( (opt
= getopt_long(argc
, argv
, "+sexnouw:hV?", long_options
, &ix
)) != EOF
) {
168 eon
= strtotimeval(optarg
, &timeout
.it_value
);
173 printf("flock (%s)\n", PACKAGE_STRING
);
176 /* optopt will be set if this was an unrecognized option, i.e. *not* 'h' or '?' */
177 usage(optopt
? EX_USAGE
: 0);
182 if ( argc
> optind
+1 ) {
185 if ( !strcmp(argv
[optind
+1], "-c") ||
186 !strcmp(argv
[optind
+1], "--command") ) {
188 if ( argc
!= optind
+3 ) {
189 fprintf(stderr
, _("%s: %s requires exactly one command argument\n"),
190 program
, argv
[optind
+1]);
194 cmd_argv
= sh_c_argv
;
196 cmd_argv
[0] = getenv("SHELL");
197 if ( !cmd_argv
[0] || !*cmd_argv
[0] )
198 cmd_argv
[0] = _PATH_BSHELL
;
201 cmd_argv
[2] = argv
[optind
+2];
204 cmd_argv
= &argv
[optind
+1];
207 filename
= argv
[optind
];
208 fd
= open(filename
, O_RDONLY
|O_NOCTTY
|O_CREAT
, 0666);
209 /* Linux doesn't like O_CREAT on a directory, even though it should be a
211 if (fd
< 0 && errno
== EISDIR
)
212 fd
= open(filename
, O_RDONLY
|O_NOCTTY
);
216 fprintf(stderr
, _("%s: cannot open lock file %s: %s\n"),
217 program
, argv
[optind
], strerror(err
));
218 exit((err
== ENOMEM
||err
== EMFILE
||err
== ENFILE
) ? EX_OSERR
:
219 (err
== EROFS
||err
== ENOSPC
) ? EX_CANTCREAT
:
223 } else if (optind
< argc
) {
224 /* Use provided file descriptor */
226 fd
= (int)strtol(argv
[optind
], &eon
, 10);
227 if ( *eon
|| !argv
[optind
] ) {
228 fprintf(stderr
, _("%s: bad number: %s\n"), program
, argv
[optind
]);
235 fprintf(stderr
, _("%s: requires file descriptor, file or directory\n"),
241 if ( have_timeout
) {
242 if ( timeout
.it_value
.tv_sec
== 0 &&
243 timeout
.it_value
.tv_usec
== 0 ) {
244 /* -w 0 is equivalent to -n; this has to be special-cased
245 because setting an itimer to zero means disabled! */
250 memset(&sa
, 0, sizeof sa
);
252 sa
.sa_handler
= timeout_handler
;
253 sa
.sa_flags
= SA_RESETHAND
;
254 sigaction(SIGALRM
, &sa
, &old_sa
);
256 setitimer(ITIMER_REAL
, &timeout
, &old_timer
);
260 while ( flock(fd
, type
|block
) ) {
261 switch( (err
= errno
) ) {
262 case EWOULDBLOCK
: /* -n option set and failed to lock */
264 case EINTR
: /* Signal received */
265 if ( timeout_expired
)
266 exit(1); /* -w option set and failed to lock */
267 continue; /* otherwise try again */
268 default: /* Other errors */
270 fprintf(stderr
, "%s: %s: %s\n", program
, filename
, strerror(err
));
272 fprintf(stderr
, "%s: %d: %s\n", program
, fd
, strerror(err
));
273 exit((err
== ENOLCK
||err
== ENOMEM
) ? EX_OSERR
: EX_DATAERR
);
277 if ( have_timeout
) {
278 setitimer(ITIMER_REAL
, &old_timer
, NULL
); /* Cancel itimer */
279 sigaction(SIGALRM
, &old_sa
, NULL
); /* Cancel signal handler */
287 /* Clear any inherited settings */
288 signal(SIGCHLD
, SIG_DFL
);
293 fprintf(stderr
, _("%s: fork failed: %s\n"), program
, strerror(err
));
295 } else if ( f
== 0 ) {
299 execvp(cmd_argv
[0], cmd_argv
);
300 /* execvp() failed */
301 fprintf(stderr
, "%s: %s: %s\n", program
, cmd_argv
[0], strerror(err
));
302 _exit((err
== ENOMEM
) ? EX_OSERR
: EX_UNAVAILABLE
);
305 w
= waitpid(f
, &status
, 0);
306 if (w
== -1 && errno
!= EINTR
)
312 status
= EXIT_FAILURE
;
313 fprintf(stderr
, "%s: waitpid failed: %s\n", program
, strerror(err
));
314 } else if ( WIFEXITED(status
) )
315 status
= WEXITSTATUS(status
);
316 else if ( WIFSIGNALED(status
) )
317 status
= WTERMSIG(status
) + 128;
319 status
= EX_OSERR
; /* WTF? */
This page took 0.058027 seconds and 5 git commands to generate.