From: Arseny Maslennikov <ar@cs.msu.ru>
To: Alex Gladkov <legion@altlinux.ru>, devel@lists.altlinux.org
Cc: ldv@altlinux.org
Subject: Re: [devel] [PATCH hasher-priv v1 1/3] Makefile
Date: Thu, 17 Sep 2020 16:12:36 +0300
Message-ID: <20200917131236.GK286846@cello> (raw)
In-Reply-To: <9bca7626b593f896de4283cba2d6290ec99eb4f2.1576183643.git.legion@altlinux.org>
[-- Attachment #1: Type: text/plain, Size: 4193 bytes --]
On Fri, Dec 13, 2019 at 12:42:03PM +0100, Alex Gladkov wrote:
> diff --git a/hasher-priv/Makefile b/hasher-priv/Makefile
> index a815e9e..82aa385 100644
> --- a/hasher-priv/Makefile
> +++ b/hasher-priv/Makefile
> @@ -11,7 +11,7 @@ VERSION = $(shell sed '/^Version: */!d;s///;q' hasher-priv.spec)
> HELPERS = getconf.sh getugid1.sh chrootuid1.sh getugid2.sh chrootuid2.sh
> MAN5PAGES = $(PROJECT).conf.5
> MAN8PAGES = $(PROJECT).8 hasher-useradd.8
> -TARGETS = $(PROJECT) hasher-useradd $(HELPERS) $(MAN5PAGES) $(MAN8PAGES)
> +TARGETS = $(PROJECT) hasher-privd hasher-useradd $(HELPERS) $(MAN5PAGES) $(MAN8PAGES)
To everyone: While the name "hasher-privd" minimises the amount of
renaming we have to do, it is too long a name, given that /proc/%d/comm
for each task is up to 16 bytes long on Linux, and is too easy to
confuse with hasher-priv, the client invoker program.
How about hasherd? hshd is too easily confused with sshd.
hasher-priv can then be mnemonised as "hasher-request-priv-operation",
hsh is the user frontend, and hasherd is the daemon.
>
> sysconfdir = /etc
> libexecdir = /usr/lib
> @@ -21,6 +21,7 @@ man5dir = $(mandir)/man5
> man8dir = $(mandir)/man8
> configdir = $(sysconfdir)/$(PROJECT)
> helperdir = $(libexecdir)/$(PROJECT)
> +socketdir = /var/run
Why /var/run and not /run, especially in a new project?
Even further, I would suggest that we store the socket in
/run/hasher-priv or something, setgid hashman, with 0710 rights. The
major service managers can create the directory on startup for us:
there's mkdir(1), there's RuntimeDirectory= and RuntimeDirectoryMode=.
> DESTDIR =
>
> MKDIR_P = mkdir -p
> @@ -33,17 +34,25 @@ WARNINGS = -Wall -W -Wshadow -Wpointer-arith -Wwrite-strings \
> -Wmissing-prototypes -Wmissing-declarations -Wmissing-noreturn \
> -Wmissing-format-attribute -Wredundant-decls -Wdisabled-optimization
> CPPFLAGS = -std=gnu99 -D_GNU_SOURCE $(CHDIRUID_FLAGS) \
> - $(LFS_CFLAGS) -DPROJECT_VERSION=\"$(VERSION)\"
> + $(LFS_CFLAGS) -DPROJECT_VERSION=\"$(VERSION)\" \
> + -DSOCKETDIR=\"$(socketdir)\" -DPROJECT=\"$(PROJECT)\"
> CFLAGS = -pipe -O2
> override CFLAGS += $(WARNINGS)
> LDLIBS =
>
> -SRC = caller.c chdir.c chdiruid.c chid.c child.c chrootuid.c cmdline.c \
> +SRC = hasher-priv.c cmdline.c fds.c sockets.c logging.c communication.c xmalloc.c pass.c
> +OBJ = $(SRC:.c=.o)
> +
> +server_SRC = hasher-privd.c \
> + communication.c epoll.c pidfile.c logging.c sockets.c \
> + caller.c caller_server.c caller_task.c \
> + chdir.c chdiruid.c chid.c child.c chrootuid.c cmdline.c \
> config.c fds.c getconf.c getugid.c ipc.c killuid.c io_log.c io_x11.c \
> - main.c makedev.c mount.c net.c parent.c pass.c pty.c signal.c tty.c \
> + makedev.c mount.c net.c parent.c pass.c pty.c signal.c tty.c \
> unshare.c xmalloc.c x11.c
> -OBJ = $(SRC:.c=.o)
> -DEP = $(SRC:.c=.d)
> +server_OBJ = $(server_SRC:.c=.o)
> +
> +DEP = $(SRC:.c=.d) $(server_SRC:.c=.d)
>
> .PHONY: all install clean indent
>
> @@ -52,14 +61,19 @@ all: $(TARGETS)
> $(PROJECT): $(OBJ)
> $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
>
> +hasher-privd: $(server_OBJ)
> + $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
> +
> install: all
> $(MKDIR_P) -m710 $(DESTDIR)$(configdir)/user.d
> $(INSTALL) -p -m640 fstab $(DESTDIR)$(configdir)/fstab
> $(INSTALL) -p -m640 system.conf $(DESTDIR)$(configdir)/system
> + $(INSTALL) -p -m640 server.conf $(DESTDIR)$(configdir)/server
> $(MKDIR_P) -m750 $(DESTDIR)$(helperdir)
> $(INSTALL) -p -m700 $(PROJECT) $(DESTDIR)$(helperdir)/
> $(INSTALL) -p -m755 $(HELPERS) $(DESTDIR)$(helperdir)/
> $(MKDIR_P) -m755 $(DESTDIR)$(sbindir)
> + $(INSTALL) -p -m755 hasher-privd $(DESTDIR)$(sbindir)/
> $(INSTALL) -p -m755 hasher-useradd $(DESTDIR)$(sbindir)/
> $(MKDIR_P) -m755 $(DESTDIR)$(man5dir)
> $(INSTALL) -p -m644 $(MAN5PAGES) $(DESTDIR)$(man5dir)/
> @@ -67,7 +81,7 @@ install: all
> $(INSTALL) -p -m644 $(MAN8PAGES) $(DESTDIR)$(man8dir)/
>
> clean:
> - $(RM) $(TARGETS) $(DEP) $(OBJ) core *~
> + $(RM) $(TARGETS) $(DEP) $(OBJ) $(server_OBJ) core *~
>
> indent:
> indent *.h *.c
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2020-09-17 13:12 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-13 11:42 [devel] [PATCH hasher-priv v1 0/3] Make a daemon from the hasher-priv Alex Gladkov
2019-12-13 11:42 ` [devel] [PATCH hasher-priv v1 1/3] " Alex Gladkov
2020-09-17 13:10 ` Arseny Maslennikov
2020-10-01 19:43 ` Alexey Gladkov
2020-10-01 21:24 ` Arseny Maslennikov
2020-10-01 23:38 ` Alexey Gladkov
2020-09-17 13:10 ` [devel] [PATCH hasher-priv v1 1/3] *literacy* Arseny Maslennikov
2020-09-17 13:11 ` [devel] [PATCH hasher-priv v1 1/3] caller.c Arseny Maslennikov
2020-09-17 13:55 ` Arseny Maslennikov
2020-09-17 13:11 ` [devel] [PATCH hasher-priv v1 1/3] caller_server.c, caller_task.c Arseny Maslennikov
2020-10-01 19:47 ` Alexey Gladkov
2020-09-17 13:11 ` [devel] [PATCH hasher-priv v1 1/3] config.c Arseny Maslennikov
2020-09-18 10:42 ` Dmitry V. Levin
2020-09-17 13:12 ` [devel] [PATCH hasher-priv v1 1/3] hasher-privd.c Arseny Maslennikov
2020-09-17 13:12 ` [devel] [PATCH hasher-priv v1 1/3] logging.c Arseny Maslennikov
2020-09-17 13:12 ` Arseny Maslennikov [this message]
2020-09-17 15:09 ` [devel] [PATCH hasher-priv v1 1/3] Makefile Vladimir D. Seleznev
2020-09-18 10:48 ` Dmitry V. Levin
2020-09-18 10:54 ` Andrey Savchenko
2020-09-18 11:33 ` Dmitry V. Levin
2020-09-18 12:24 ` Arseny Maslennikov
2020-09-17 13:12 ` [devel] [PATCH hasher-priv v1 1/3] server.conf Arseny Maslennikov
2020-09-18 10:50 ` Dmitry V. Levin
2020-09-18 10:57 ` Arseny Maslennikov
2019-12-13 11:42 ` [devel] [PATCH hasher-priv v1 2/3] Add systemd and sysvinit service files Alex Gladkov
2020-06-17 22:31 ` Mikhail Novosyolov
2020-06-17 22:38 ` Mikhail Novosyolov
2020-06-17 22:50 ` Alexey Gladkov
2020-06-17 22:43 ` Alexey Gladkov
2020-06-17 22:53 ` Mikhail Novosyolov
2020-09-17 13:10 ` Arseny Maslennikov
2020-10-01 17:25 ` Alexey Gladkov
2020-10-01 17:50 ` Arseny Maslennikov
2019-12-13 11:42 ` [devel] [PATCH hasher-priv v1 3/3] Add cgroup support Alex Gladkov
2020-09-17 13:11 ` Arseny Maslennikov
2020-10-01 19:17 ` Alexey Gladkov
2020-10-01 20:23 ` Arseny Maslennikov
2020-10-02 0:42 ` Alexey Gladkov
2020-10-02 11:46 ` Arseny Maslennikov
2020-10-02 12:58 ` Alexey Gladkov
2019-12-15 8:50 ` [devel] [PATCH hasher-priv v1 0/3] Make a daemon from the hasher-priv Alexey Tourbin
2019-12-15 23:33 ` Andrey Savchenko
2019-12-16 9:35 ` Dmitry V. Levin
2019-12-29 11:03 ` Alexey Tourbin
2020-03-16 10:34 ` Alexey Gladkov
2020-06-17 22:01 ` Alexey Gladkov
2020-09-17 13:09 ` Arseny Maslennikov
2020-10-01 17:21 ` Alexey Gladkov
2020-10-01 17:44 ` Arseny Maslennikov
2020-10-01 20:01 ` Alexey Gladkov
2020-10-01 21:53 ` Arseny Maslennikov
2020-10-01 23:55 ` Alexey Gladkov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200917131236.GK286846@cello \
--to=ar@cs.msu.ru \
--cc=devel@lists.altlinux.org \
--cc=ldv@altlinux.org \
--cc=legion@altlinux.ru \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git