public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top,
	"'Richard W . M . Jones'" <rjones@redhat.com>,
	Minxi Hou <mhou@redhat.com>
Subject: Re: [PATCH 6/8] passt, util: Move opening of PID file to its own function
Date: Tue, 28 May 2024 17:04:51 +1000	[thread overview]
Message-ID: <ZlWCE7DahF1Qv-5q@zatzit> (raw)
In-Reply-To: <20240522205911.261325-7-sbrivio@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 2770 bytes --]

On Wed, May 22, 2024 at 10:59:09PM +0200, Stefano Brivio wrote:
> We won't call it from main() any longer: move it.
> 
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>

Reviewed-by: David Gibson <david@gibson.dropbear.id.au>

> ---
>  passt.c | 11 ++---------
>  util.c  | 22 ++++++++++++++++++++++
>  util.h  |  1 +
>  3 files changed, 25 insertions(+), 9 deletions(-)
> 
> diff --git a/passt.c b/passt.c
> index fb9773d..e2446fc 100644
> --- a/passt.c
> +++ b/passt.c
> @@ -199,7 +199,7 @@ void exit_handler(int signal)
>   */
>  int main(int argc, char **argv)
>  {
> -	int nfds, i, devnull_fd = -1, pidfile_fd = -1;
> +	int nfds, i, devnull_fd = -1, pidfile_fd;
>  	struct epoll_event events[EPOLL_EVENTS];
>  	char *log_name, argv0[PATH_MAX], *name;
>  	struct ctx c = { 0 };
> @@ -299,14 +299,7 @@ int main(int argc, char **argv)
>  		}
>  	}
>  
> -	if (*c.pid_file) {
> -		if ((pidfile_fd = open(c.pid_file,
> -				       O_CREAT | O_TRUNC | O_WRONLY | O_CLOEXEC,
> -				       S_IRUSR | S_IWUSR)) < 0) {
> -			perror("PID file open");
> -			exit(EXIT_FAILURE);
> -		}
> -	}
> +	pidfile_fd = pidfile_open(c.pid_file);
>  
>  	if (isolate_prefork(&c))
>  		die("Failed to sandbox process, exiting");
> diff --git a/util.c b/util.c
> index 18c04ba..cf5a62b 100644
> --- a/util.c
> +++ b/util.c
> @@ -402,6 +402,28 @@ void pidfile_write(int fd, pid_t pid)
>  	close(fd);
>  }
>  
> +/**
> + * pidfile_open() - Open PID file if needed
> + * @path:	Path for PID file, empty string if no PID file is requested
> + *
> + * Return: descriptor for PID file, -1 if path is NULL, won't return on failure
> + */
> +int pidfile_open(const char *path)
> +{
> +	int fd;
> +
> +	if (!*path)
> +		return -1;
> +
> +	if ((fd = open(path, O_CREAT | O_TRUNC | O_WRONLY | O_CLOEXEC,
> +			     S_IRUSR | S_IWUSR)) < 0) {
> +		perror("PID file open");
> +		exit(EXIT_FAILURE);
> +	}
> +
> +	return fd;
> +}
> +
>  /**
>   * __daemon() - daemon()-like function writing PID file before parent exits
>   * @pidfile_fd:	Open PID file descriptor
> diff --git a/util.h b/util.h
> index f811975..8a430ca 100644
> --- a/util.h
> +++ b/util.h
> @@ -156,6 +156,7 @@ char *line_read(char *buf, size_t len, int fd);
>  void ns_enter(const struct ctx *c);
>  bool ns_is_init(void);
>  int open_in_ns(const struct ctx *c, const char *path, int flags);
> +int pidfile_open(const char *path);
>  void pidfile_write(int fd, pid_t pid);
>  int __daemon(int pidfile_fd, int devnull_fd);
>  int fls(unsigned long x);

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  parent reply	other threads:[~2024-05-28  7:24 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-22 20:59 [PATCH 0/8] Open socket and PID files as root, before switching Stefano Brivio
2024-05-22 20:59 ` [PATCH 1/8] conf: Don't lecture user about starting us as root Stefano Brivio
2024-05-23  1:45   ` David Gibson
2024-05-23  9:52   ` Richard W.M. Jones
2024-05-22 20:59 ` [PATCH 2/8] tap: Move all-ones initialisation of mac_guest to tap_sock_init() Stefano Brivio
2024-05-23  1:46   ` David Gibson
2024-05-23  9:59   ` Richard W.M. Jones
2024-05-23 10:03     ` Richard W.M. Jones
2024-05-22 20:59 ` [PATCH 3/8] passt, tap: Don't use -1 as uninitialised value for fd_tap_listen Stefano Brivio
2024-05-23  1:48   ` David Gibson
2024-05-22 20:59 ` [PATCH 4/8] tap: Split tap_sock_unix_init() into opening and listening parts Stefano Brivio
2024-05-23 10:05   ` Richard W.M. Jones
2024-05-28  7:01   ` David Gibson
2024-05-22 20:59 ` [PATCH 5/8] util: Rename write_pidfile() to pidfile_write() Stefano Brivio
2024-05-23 10:06   ` Richard W.M. Jones
2024-05-22 20:59 ` [PATCH 6/8] passt, util: Move opening of PID file to its own function Stefano Brivio
2024-05-23 10:06   ` Richard W.M. Jones
2024-05-28  7:04   ` David Gibson [this message]
2024-05-22 20:59 ` [PATCH 7/8] conf, passt, tap: Open socket and PID files before switching UID/GID Stefano Brivio
2024-05-23 10:10   ` Richard W.M. Jones
2024-05-29  2:35   ` David Gibson
2024-06-20 11:30     ` Richard W.M. Jones
2024-06-20 12:12       ` Stefano Brivio
2024-06-20 12:47         ` Richard W.M. Jones
2024-06-20 14:22           ` Stefano Brivio
2024-06-21  1:02             ` David Gibson
2024-05-22 20:59 ` [PATCH 8/8] conf, passt.h: Rename pid_file in struct ctx to pidfile Stefano Brivio
2024-05-23 10:11   ` Richard W.M. Jones
2024-05-28  7:07   ` David Gibson

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=ZlWCE7DahF1Qv-5q@zatzit \
    --to=david@gibson.dropbear.id.au \
    --cc=mhou@redhat.com \
    --cc=passt-dev@passt.top \
    --cc=rjones@redhat.com \
    --cc=sbrivio@redhat.com \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).