]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Eliminate double close of file descriptor in manager.c
authorJonathan Rose <jrose@digium.com>
Mon, 5 Mar 2012 18:49:58 +0000 (18:49 +0000)
committerJonathan Rose <jrose@digium.com>
Mon, 5 Mar 2012 18:49:58 +0000 (18:49 +0000)
The process_output function in manager.c attempted to call fclose and close immediately
afterwards. Since fclose implies close, this resulted in a potential double free on file
descriptors. This patch changes that behavior and also adds error checking to fclose and
close depending on which was deemed necessary. Also error messages. Thanks to Rosen
Iliev for pointing out the location of the problem.

(closes issue ASTERISK-18453)
Reported By: Jaco Kroon
Review: https://reviewboard.asterisk.org/r/1793/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@358214 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/manager.c

index 77ed06f1fa0718fd3391d06269e35d3b611a2235..d830a6e83469b805dea7aad912f5113fce3a8df8 100644 (file)
@@ -5698,10 +5698,20 @@ static void process_output(struct mansession *s, struct ast_str **out, struct as
                xml_translate(out, "", params, format);
        }
 
-       fclose(s->f);
-       s->f = NULL;
-       close(s->fd);
-       s->fd = -1;
+       if (s->f) {
+               if (fclose(s->f)) {
+                       ast_log(LOG_ERROR, "fclose() failed: %s\n", strerror(errno));
+               }
+               s->f = NULL;
+               s->fd = -1;
+       } else if (s->fd != -1) {
+               if (close(s->fd)) {
+                       ast_log(LOG_ERROR, "close() failed: %s\n", strerror(errno));
+               }
+               s->fd = -1;
+       } else {
+               ast_log(LOG_ERROR, "process output attempted to close file/file descriptor on mansession without a valid file or file descriptor.\n");
+       }
 }
 
 static int generic_http_callback(struct ast_tcptls_session_instance *ser,