forked from security/hakurei
ldd: cancel on decoder error
This prevents blocking from failures caused by ldd(1) emitting output that is not anticipated by the decoder. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -68,6 +68,11 @@ func Exec(ctx context.Context, msg message.Msg, p string) ([]*Entry, error) {
|
||||
}
|
||||
|
||||
entries, decodeErr := d.Decode()
|
||||
if decodeErr != nil {
|
||||
// do not cancel on successful decode to avoid racing with ldd(1) termination
|
||||
cancel()
|
||||
}
|
||||
|
||||
if err := z.Wait(); err != nil {
|
||||
m := stderr.Bytes()
|
||||
if bytes.Contains(m, []byte(msgStaticSuffix)) || bytes.Contains(m, []byte(msgStaticGlibc)) {
|
||||
|
||||
Reference in New Issue
Block a user