Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
dd204de8
Commit
dd204de8
authored
Jan 19, 2016
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pipecmd: fix fd leak.
Signed-off-by:
Rusty Russell
<
rusty@rustcorp.com.au
>
parent
aae40e49
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
ccan/pipecmd/pipecmd.c
ccan/pipecmd/pipecmd.c
+2
-0
ccan/pipecmd/test/run-fdleak.c
ccan/pipecmd/test/run-fdleak.c
+44
-0
No files found.
ccan/pipecmd/pipecmd.c
View file @
dd204de8
...
...
@@ -101,10 +101,12 @@ pid_t pipecmdarr(int *fd_fromchild, int *fd_tochild, char *const *arr)
close
(
execfail
[
1
]);
/* Child will close this without writing on successful exec. */
if
(
read
(
execfail
[
0
],
&
err
,
sizeof
(
err
))
==
sizeof
(
err
))
{
close
(
execfail
[
0
]);
waitpid
(
childpid
,
NULL
,
0
);
errno
=
err
;
return
-
1
;
}
close
(
execfail
[
0
]);
if
(
fd_tochild
)
*
fd_tochild
=
tochild
[
1
];
if
(
fd_fromchild
)
...
...
ccan/pipecmd/test/run-fdleak.c
0 → 100644
View file @
dd204de8
#include <ccan/pipecmd/pipecmd.h>
/* Include the C files directly. */
#include <ccan/pipecmd/pipecmd.c>
#include <ccan/tap/tap.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
int
main
(
int
argc
,
char
*
argv
[])
{
pid_t
child
;
int
outfd
,
status
;
char
buf
[
5
]
=
"test"
;
/* We call ourselves, to test pipe. */
if
(
argc
==
2
)
{
if
(
write
(
STDOUT_FILENO
,
buf
,
sizeof
(
buf
))
!=
sizeof
(
buf
))
exit
(
1
);
exit
(
0
);
}
/* This is how many tests you plan to run */
plan_tests
(
13
);
child
=
pipecmd
(
&
outfd
,
NULL
,
argv
[
0
],
"out"
,
NULL
);
if
(
!
ok1
(
child
>
0
))
exit
(
1
);
ok1
(
read
(
outfd
,
buf
,
sizeof
(
buf
))
==
sizeof
(
buf
));
ok1
(
memcmp
(
buf
,
"test"
,
sizeof
(
buf
))
==
0
);
ok1
(
waitpid
(
child
,
&
status
,
0
)
==
child
);
ok1
(
WIFEXITED
(
status
));
ok1
(
WEXITSTATUS
(
status
)
==
0
);
/* No leaks! */
ok1
(
close
(
outfd
)
==
0
);
ok1
(
close
(
outfd
)
==
-
1
&&
errno
==
EBADF
);
ok1
(
close
(
++
outfd
)
==
-
1
&&
errno
==
EBADF
);
ok1
(
close
(
++
outfd
)
==
-
1
&&
errno
==
EBADF
);
ok1
(
close
(
++
outfd
)
==
-
1
&&
errno
==
EBADF
);
ok1
(
close
(
++
outfd
)
==
-
1
&&
errno
==
EBADF
);
ok1
(
close
(
++
outfd
)
==
-
1
&&
errno
==
EBADF
);
/* This exits depending on whether all tests passed */
return
exit_status
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment