Skip to content
Snippets Groups Projects
Commit 16e57463 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Sieve extprograms plugin: Fixed fd leak and handling of output shutdown.

Output stream remained open, including the flush io, causing a second assert failure.
Whether this fixes the problem entirely remains to be seen.
parent e556155c
No related branches found
No related tags found
No related merge requests found
...@@ -139,7 +139,6 @@ static int script_client_local_close_output(struct script_client *sclient) ...@@ -139,7 +139,6 @@ static int script_client_local_close_output(struct script_client *sclient)
i_error("shutdown(%s, SHUT_WR) failed: %m", sclient->path); i_error("shutdown(%s, SHUT_WR) failed: %m", sclient->path);
return -1; return -1;
} }
sclient->fd_out = -1;
return 1; return 1;
} }
......
...@@ -39,6 +39,20 @@ static int script_client_connect(struct script_client *sclient) ...@@ -39,6 +39,20 @@ static int script_client_connect(struct script_client *sclient)
return 1; return 1;
} }
static int script_client_close_output(struct script_client *sclient)
{
int ret;
if ( (ret=sclient->close_output(sclient)) < 0 )
return -1;
if ( sclient->script_output != NULL )
o_stream_destroy(&sclient->script_output);
sclient->script_output = NULL;
sclient->fd_out = -1;
return ret;
}
static void script_client_disconnect static void script_client_disconnect
(struct script_client *sclient, bool force) (struct script_client *sclient, bool force)
{ {
...@@ -50,7 +64,7 @@ static void script_client_disconnect ...@@ -50,7 +64,7 @@ static void script_client_disconnect
if ( sclient->disconnected ) if ( sclient->disconnected )
return; return;
if ( (ret=sclient->close_output(sclient)) < 0 ) if ( (ret=script_client_close_output(sclient)) < 0 )
error = TRUE; error = TRUE;
if ( (ret=sclient->disconnect(sclient, force)) < 0 ) if ( (ret=sclient->disconnect(sclient, force)) < 0 )
...@@ -68,7 +82,8 @@ static void script_client_disconnect ...@@ -68,7 +82,8 @@ static void script_client_disconnect
if (sclient->fd_in != -1 && close(sclient->fd_in) < 0) if (sclient->fd_in != -1 && close(sclient->fd_in) < 0)
i_error("close(%s) failed: %m", sclient->path); i_error("close(%s) failed: %m", sclient->path);
if (sclient->fd_out != -1 && sclient->fd_out != sclient->fd_out) if (sclient->fd_out != -1 && sclient->fd_out != sclient->fd_in
&& close(sclient->fd_out) < 0)
i_error("close(%s/out) failed: %m", sclient->path); i_error("close(%s/out) failed: %m", sclient->path);
sclient->fd_in = sclient->fd_out = -1; sclient->fd_in = sclient->fd_out = -1;
...@@ -147,8 +162,8 @@ static int script_client_script_output(struct script_client *sclient) ...@@ -147,8 +162,8 @@ static int script_client_script_output(struct script_client *sclient)
if ( sclient->script_input == NULL ) { if ( sclient->script_input == NULL ) {
script_client_disconnect(sclient, FALSE); script_client_disconnect(sclient, FALSE);
} else { } else if (script_client_close_output(sclient) < 0) {
sclient->close_output(sclient); return -1;
} }
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.