From: Jason Andryuk <jandryuk@gmail.com>
To: xen-devel@lists.xenproject.org
Cc: Ian Jackson <ian.jackson@eu.citrix.com>,
marmarek@invisiblethingslab.com, Wei Liu <wl@xen.org>,
Jason Andryuk <jandryuk@gmail.com>
Subject: [PATCH 4/8] vchan-socket-proxy: Use a struct to store state
Date: Sun, 24 May 2020 22:49:51 -0400 [thread overview]
Message-ID: <20200525024955.225415-5-jandryuk@gmail.com> (raw)
In-Reply-To: <20200525024955.225415-1-jandryuk@gmail.com>
Use a struct to group the vchan ctrl and FDs. This will facilite
tracking the state of open and closed FDs and ctrl in data_loop().
Signed-off-by: Jason Andryuk <jandryuk@gmail.com>
---
tools/libvchan/vchan-socket-proxy.c | 52 +++++++++++++++++------------
1 file changed, 30 insertions(+), 22 deletions(-)
diff --git a/tools/libvchan/vchan-socket-proxy.c b/tools/libvchan/vchan-socket-proxy.c
index d85e24ee93..39f4bb1452 100644
--- a/tools/libvchan/vchan-socket-proxy.c
+++ b/tools/libvchan/vchan-socket-proxy.c
@@ -89,6 +89,12 @@ int insiz = 0;
int outsiz = 0;
int verbose = 0;
+struct vchan_proxy_state {
+ struct libxenvchan *ctrl;
+ int output_fd;
+ int input_fd;
+};
+
static void vchan_wr(struct libxenvchan *ctrl) {
int ret;
@@ -374,8 +380,9 @@ int main(int argc, char **argv)
{
int is_server = 0;
int socket_fd = -1;
- int input_fd, output_fd;
- struct libxenvchan *ctrl = NULL;
+ struct vchan_proxy_state state = { .ctrl = NULL,
+ .input_fd = -1,
+ .output_fd = -1 };
const char *socket_path;
int domid;
const char *vchan_path;
@@ -415,15 +422,15 @@ int main(int argc, char **argv)
socket_path = argv[optind+2];
if (is_server) {
- ctrl = libxenvchan_server_init(NULL, domid, vchan_path, 0, 0);
- if (!ctrl) {
+ state.ctrl = libxenvchan_server_init(NULL, domid, vchan_path, 0, 0);
+ if (!state.ctrl) {
perror("libxenvchan_server_init");
exit(1);
}
} else {
if (strcmp(socket_path, "-") == 0) {
- input_fd = 0;
- output_fd = 1;
+ state.input_fd = 0;
+ state.output_fd = 1;
} else {
socket_fd = listen_socket(socket_path);
if (socket_fd == -1) {
@@ -453,21 +460,21 @@ int main(int argc, char **argv)
for (;;) {
if (is_server) {
/* wait for vchan connection */
- while (libxenvchan_is_open(ctrl) != 1)
- libxenvchan_wait(ctrl);
+ while (libxenvchan_is_open(state.ctrl) != 1)
+ libxenvchan_wait(state.ctrl);
/* vchan client connected, setup local FD if needed */
if (strcmp(socket_path, "-") == 0) {
- input_fd = 0;
- output_fd = 1;
+ state.input_fd = 0;
+ state.output_fd = 1;
} else {
- input_fd = output_fd = connect_socket(socket_path);
+ state.input_fd = state.output_fd = connect_socket(socket_path);
}
- if (input_fd == -1) {
+ if (state.input_fd == -1) {
perror("connect socket");
ret = 1;
break;
}
- if (data_loop(ctrl, input_fd, output_fd) != 0)
+ if (data_loop(state.ctrl, state.input_fd, state.output_fd) != 0)
break;
/* keep it running only when get UNIX socket path */
if (socket_path[0] != '/')
@@ -475,28 +482,29 @@ int main(int argc, char **argv)
} else {
/* wait for local socket connection */
if (strcmp(socket_path, "-") != 0)
- input_fd = output_fd = accept(socket_fd, NULL, NULL);
- if (input_fd == -1) {
+ state.input_fd = state.output_fd = accept(socket_fd,
+ NULL, NULL);
+ if (state.input_fd == -1) {
perror("accept");
ret = 1;
break;
}
- set_nonblocking(input_fd, 1);
- set_nonblocking(output_fd, 1);
- ctrl = connect_vchan(domid, vchan_path);
- if (!ctrl) {
+ set_nonblocking(state.input_fd, 1);
+ set_nonblocking(state.output_fd, 1);
+ state.ctrl = connect_vchan(domid, vchan_path);
+ if (!state.ctrl) {
perror("vchan client init");
ret = 1;
break;
}
- if (data_loop(ctrl, input_fd, output_fd) != 0)
+ if (data_loop(state.ctrl, state.input_fd, state.output_fd) != 0)
break;
/* don't reconnect if output was stdout */
if (strcmp(socket_path, "-") == 0)
break;
- libxenvchan_close(ctrl);
- ctrl = NULL;
+ libxenvchan_close(state.ctrl);
+ state.ctrl = NULL;
}
}
--
2.25.1
next prev parent reply other threads:[~2020-05-25 2:51 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-25 2:49 [PATCH 0/8] Coverity fixes for vchan-socket-proxy Jason Andryuk
2020-05-25 2:49 ` [PATCH 1/8] vchan-socket-proxy: Ensure UNIX path NUL terminated Jason Andryuk
2020-06-13 12:40 ` Marek Marczykowski-Górecki
2020-05-25 2:49 ` [PATCH 2/8] vchan-socket-proxy: Check xs_watch return value Jason Andryuk
2020-05-25 2:49 ` [PATCH 3/8] vchan-socket-proxy: Unify main " Jason Andryuk
2020-05-25 2:49 ` Jason Andryuk [this message]
2020-05-25 2:49 ` [PATCH 5/8] vchan-socket-proxy: Switch data_loop() to take state Jason Andryuk
2020-05-25 2:49 ` [PATCH 6/8] vchan-socket-proxy: Set closed FDs to -1 Jason Andryuk
2020-05-25 2:49 ` [PATCH 7/8] vchan-socket-proxy: Cleanup resources on exit Jason Andryuk
2020-05-25 2:49 ` [PATCH 8/8] vchan-socket-proxy: Handle closing shared input/output_fd Jason Andryuk
2020-05-25 22:36 ` [PATCH 0/8] Coverity fixes for vchan-socket-proxy Jason Andryuk
2020-05-28 2:59 ` Jason Andryuk
2020-06-13 12:40 ` Marek Marczykowski-Górecki
2020-06-14 14:05 ` Jason Andryuk
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=20200525024955.225415-5-jandryuk@gmail.com \
--to=jandryuk@gmail.com \
--cc=ian.jackson@eu.citrix.com \
--cc=marmarek@invisiblethingslab.com \
--cc=wl@xen.org \
--cc=xen-devel@lists.xenproject.org \
/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.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.