2010-08-15 17:53:21 +08:00
|
|
|
--- a/include/applets.src.h
|
|
|
|
+++ b/include/applets.src.h
|
2014-05-26 01:42:09 +08:00
|
|
|
@@ -212,6 +212,7 @@ IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN,
|
2011-10-22 07:08:45 +08:00
|
|
|
IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
|
|
IF_LOADFONT(APPLET(loadfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
|
|
IF_LOADKMAP(APPLET(loadkmap, BB_DIR_SBIN, BB_SUID_DROP))
|
|
|
|
+IF_LOCK(APPLET(lock, BB_DIR_BIN, BB_SUID_DROP))
|
|
|
|
IF_LOGGER(APPLET(logger, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
|
|
/* Needs to be run by root or be suid root - needs to change uid and gid: */
|
|
|
|
IF_LOGIN(APPLET(login, BB_DIR_BIN, BB_SUID_REQUIRE))
|
2010-08-15 17:53:21 +08:00
|
|
|
--- a/miscutils/Config.src
|
|
|
|
+++ b/miscutils/Config.src
|
2014-01-31 21:50:16 +08:00
|
|
|
@@ -419,6 +419,12 @@ config FEATURE_HDPARM_HDIO_GETSET_DMA
|
2009-09-28 20:38:46 +08:00
|
|
|
help
|
2006-04-05 10:09:22 +08:00
|
|
|
Enables the 'hdparm -d' option to get/set using_dma flag.
|
|
|
|
|
2006-12-31 03:35:58 +08:00
|
|
|
+config LOCK
|
2006-04-05 10:09:22 +08:00
|
|
|
+ bool "lock"
|
2014-01-31 21:50:16 +08:00
|
|
|
+ default n
|
2006-04-05 10:09:22 +08:00
|
|
|
+ help
|
|
|
|
+ Small utility for using locks in scripts
|
|
|
|
+
|
2006-12-31 03:35:58 +08:00
|
|
|
config MAKEDEVS
|
2006-04-05 10:09:22 +08:00
|
|
|
bool "makedevs"
|
2010-08-15 18:06:58 +08:00
|
|
|
default y
|
2010-08-15 17:53:21 +08:00
|
|
|
--- a/miscutils/Kbuild.src
|
|
|
|
+++ b/miscutils/Kbuild.src
|
2010-08-15 18:06:58 +08:00
|
|
|
@@ -29,6 +29,7 @@ lib-$(CONFIG_INOTIFYD) += inotifyd.o
|
2008-08-20 22:00:34 +08:00
|
|
|
lib-$(CONFIG_FEATURE_LAST_SMALL)+= last.o
|
|
|
|
lib-$(CONFIG_FEATURE_LAST_FANCY)+= last_fancy.o
|
2006-12-31 03:35:58 +08:00
|
|
|
lib-$(CONFIG_LESS) += less.o
|
|
|
|
+lib-$(CONFIG_LOCK) += lock.o
|
|
|
|
lib-$(CONFIG_MAKEDEVS) += makedevs.o
|
2008-08-20 22:00:34 +08:00
|
|
|
lib-$(CONFIG_MAN) += man.o
|
2007-11-11 00:51:11 +08:00
|
|
|
lib-$(CONFIG_MICROCOM) += microcom.o
|
2008-08-20 22:00:34 +08:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/miscutils/lock.c
|
2011-10-22 07:08:45 +08:00
|
|
|
@@ -0,0 +1,135 @@
|
2006-06-27 08:51:59 +08:00
|
|
|
+/*
|
|
|
|
+ * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
+ *
|
|
|
|
+ * This is free software, licensed under the GNU General Public License v2.
|
|
|
|
+ */
|
2006-04-05 10:09:22 +08:00
|
|
|
+#include <sys/types.h>
|
|
|
|
+#include <sys/file.h>
|
|
|
|
+#include <sys/stat.h>
|
|
|
|
+#include <signal.h>
|
|
|
|
+#include <fcntl.h>
|
|
|
|
+#include <unistd.h>
|
|
|
|
+#include <stdio.h>
|
2007-11-11 00:51:11 +08:00
|
|
|
+#include "busybox.h"
|
2006-04-05 10:09:22 +08:00
|
|
|
+
|
2011-10-22 07:08:45 +08:00
|
|
|
+//usage:#define lock_trivial_usage NOUSAGE_STR
|
|
|
|
+//usage:#define lock_full_usage ""
|
|
|
|
+
|
2006-04-05 10:09:22 +08:00
|
|
|
+static int unlock = 0;
|
|
|
|
+static int shared = 0;
|
|
|
|
+static int waitonly = 0;
|
|
|
|
+static int fd;
|
|
|
|
+static char *file;
|
|
|
|
+
|
|
|
|
+static void usage(char *name)
|
|
|
|
+{
|
|
|
|
+ fprintf(stderr, "Usage: %s [-suw] <filename>\n"
|
|
|
|
+ " -s Use shared locking\n"
|
|
|
|
+ " -u Unlock\n"
|
|
|
|
+ " -w Wait for the lock to become free, don't acquire lock\n"
|
|
|
|
+ "\n", name);
|
|
|
|
+ exit(1);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void exit_unlock(int sig)
|
|
|
|
+{
|
|
|
|
+ flock(fd, LOCK_UN);
|
|
|
|
+ exit(0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int do_unlock(void)
|
|
|
|
+{
|
|
|
|
+ FILE *f;
|
|
|
|
+ int i;
|
2007-11-11 00:51:11 +08:00
|
|
|
+
|
2006-04-11 21:54:43 +08:00
|
|
|
+ if ((f = fopen(file, "r")) == NULL)
|
|
|
|
+ return 0;
|
2007-11-11 00:51:11 +08:00
|
|
|
+
|
2006-04-05 10:09:22 +08:00
|
|
|
+ fscanf(f, "%d", &i);
|
|
|
|
+ if (i > 0)
|
|
|
|
+ kill(i, SIGTERM);
|
2007-11-11 00:51:11 +08:00
|
|
|
+
|
2006-04-05 10:09:22 +08:00
|
|
|
+ fclose(f);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
2007-11-11 00:51:11 +08:00
|
|
|
+
|
2006-04-05 10:09:22 +08:00
|
|
|
+static int do_lock(void)
|
|
|
|
+{
|
|
|
|
+ int pid;
|
|
|
|
+ char pidstr[8];
|
|
|
|
+
|
2006-10-26 09:32:49 +08:00
|
|
|
+ if ((fd = open(file, O_RDWR | O_CREAT | O_EXCL, 0700)) < 0) {
|
|
|
|
+ if ((fd = open(file, O_RDWR)) < 0) {
|
|
|
|
+ fprintf(stderr, "Can't open %s\n", file);
|
|
|
|
+ return 1;
|
|
|
|
+ }
|
2006-04-05 10:09:22 +08:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (flock(fd, (shared ? LOCK_SH : LOCK_EX)) < 0) {
|
|
|
|
+ fprintf(stderr, "Can't lock %s\n", file);
|
|
|
|
+ return 1;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ pid = fork();
|
|
|
|
+
|
|
|
|
+ if (pid < 0)
|
|
|
|
+ return -1;
|
2007-11-11 00:51:11 +08:00
|
|
|
+
|
2006-04-05 10:09:22 +08:00
|
|
|
+ if (pid == 0) {
|
|
|
|
+ signal(SIGKILL, exit_unlock);
|
|
|
|
+ signal(SIGTERM, exit_unlock);
|
|
|
|
+ signal(SIGINT, exit_unlock);
|
|
|
|
+ if (waitonly)
|
|
|
|
+ exit_unlock(0);
|
|
|
|
+ else
|
|
|
|
+ while (1)
|
|
|
|
+ sleep(1);
|
|
|
|
+ } else {
|
|
|
|
+ if (!waitonly) {
|
|
|
|
+ lseek(fd, 0, SEEK_SET);
|
|
|
|
+ ftruncate(fd, 0);
|
|
|
|
+ sprintf(pidstr, "%d\n", pid);
|
|
|
|
+ write(fd, pidstr, strlen(pidstr));
|
|
|
|
+ close(fd);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
2006-12-31 23:40:13 +08:00
|
|
|
+ return 0;
|
2006-04-05 10:09:22 +08:00
|
|
|
+}
|
|
|
|
+
|
2007-11-11 00:51:11 +08:00
|
|
|
+int lock_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-04-05 10:09:22 +08:00
|
|
|
+int lock_main(int argc, char **argv)
|
|
|
|
+{
|
|
|
|
+ char **args = &argv[1];
|
|
|
|
+ int c = argc - 1;
|
|
|
|
+
|
|
|
|
+ while ((*args != NULL) && (*args)[0] == '-') {
|
|
|
|
+ char *ch = *args;
|
|
|
|
+ while (*(++ch) > 0) {
|
|
|
|
+ switch(*ch) {
|
|
|
|
+ case 'w':
|
|
|
|
+ waitonly = 1;
|
|
|
|
+ break;
|
|
|
|
+ case 's':
|
|
|
|
+ shared = 1;
|
|
|
|
+ break;
|
|
|
|
+ case 'u':
|
|
|
|
+ unlock = 1;
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ c--;
|
|
|
|
+ args++;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (c != 1)
|
|
|
|
+ usage(argv[0]);
|
|
|
|
+
|
|
|
|
+ file = *args;
|
|
|
|
+ if (unlock)
|
|
|
|
+ return do_unlock();
|
|
|
|
+ else
|
|
|
|
+ return do_lock();
|
|
|
|
+}
|