Your message dated Mon, 09 Mar 2026 10:31:17 +0000
with message-id <[email protected]>
and subject line Bug#1126676: Removed package(s) from unstable
has caused the Debian Bug report #763430,
regarding bidentd: Conntrack support broken, /proc/net/ip_conntrack uses "tcp" 
instead of "TCP"
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
763430: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=763430
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: bidentd
Version: 1.1.4-1.1
Severity: important
Tags: upstream patch

Dear Maintainer,

it seems that the conntrack support in bidentd is broken. It reads from
/proc/net/ip_conntrack, checking that the protocol field of each line is
"TCP". However, on my system, these lines contain "tcp" instead. I
presume this changed in some past kernel version.

I've attached a patch that simply makes comparison case insensitive, so
old and new systems should both work.

I'll also send this report to upstream, but given the upcoming freeze
for Jessie, it might be good to include the patch into the Debian
version first?


On a related note: It seems there is a new upstream version available,
that integrated the single patch currently in the debian version.

Gr.

Matthijs
Description: Fix conntrack parsing for kernels using lowercase protocol names
Author: Matthijs Kooijman <[email protected]>
Forwarded: yes

--- a/main.cc
+++ b/main.cc
@@ -169,7 +169,7 @@ static int Resolve(void)
             in_addr masqaddr = { byteswap(masqhost) };
             msyslog(ll_debug, " (masq parse) proto = %s, masqhost = %s, l = %u, r = %u, masqport = %u",
                     proto, inet_ntoa(masqaddr), l, r, masqport);
-            if(strcmp(proto, "TCP"))continue;
+            if(strcasecmp(proto, "TCP"))continue;
             if(r == remoteport && masqport == localport)
                 return Forward(masqhost, r, l);
         }

--- End Message ---
--- Begin Message ---
Version: 1.1.4-1.5+rm

Dear submitter,

as the package bidentd has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1126676

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Thorsten Alteholz (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to