Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

exiting (due to assertion failure)

3 views
Skip to first unread message

Turbo Fredriksson

unread,
Jul 13, 2007, 7:19:19 AM7/13/07
to
I get this when i try to start Bind9 v9.4.1:

----- s n i p -----
12-Jul-2007 18:54:14.278 zone 168.192.in-addr.arpa/IN: sending notifies (serial 2007071201)
12-Jul-2007 18:54:14.282 view.c:1161: REQUIRE(keyp != ((void *)0) && *keyp == ((void *)0)) failed
12-Jul-2007 18:54:14.284 exiting (due to assertion failure)
----- s n i p -----

Any idea where to start looking for the problem?


Turbo Fredriksson

unread,
Jul 13, 2007, 10:53:48 AM7/13/07
to
Quoting Paul Vixie <vi...@vix.com>:

> can you send your named.conf file?

I've sent this to you privatly, so I don't have to
clean it.

Any replies to this can continue to go to the list
(for others to benefit from).


Turbo Fredriksson

unread,
Jul 13, 2007, 11:25:29 AM7/13/07
to
Quoting Turbo Fredriksson <tu...@bayour.com>:

> Quoting Paul Vixie <vi...@vix.com>:
>
>> can you send your named.conf file?
>
> I've sent this to you privatly, so I don't have to
> clean it.

Well, that obviously didn't work. The address vi...@vix.com
don't exists (my mails bounces).
--
747 quiche Kennedy Peking Semtex radar Noriega domestic disruption
tritium nitrate strategic jihad AK-47 Ft. Meade Mossad
[See http://www.aclu.org/echelonwatch/index.html for more about this]
[Or http://www.europarl.eu.int/tempcom/echelon/pdf/rapport_echelon_en.pdf]
If neither of these works, try http://www.aclu.org and search for echelon.
Note. This is a real, not fiction.
http://www.theregister.co.uk/2001/09/06/eu_releases_echelon_spying_report/
http://www.aclu.org/safefree/nsaspying/23989res20060131.html#echelon


Mark Andrews

unread,
Jul 14, 2007, 12:32:58 AM7/14/07
to
Known issue.

2158. [bug] ns_client_isself() failed to initialise key
leading to a REQUIRE failure. [RT #16688]

--
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742 INTERNET: Mark_A...@isc.org


Turbo Fredriksson

unread,
Jul 14, 2007, 6:36:40 AM7/14/07
to
Quoting Mark Andrews <Mark_A...@isc.org>:

>> I get this when i try to start Bind9 v9.4.1:
>>
>> ----- s n i p -----
>> 12-Jul-2007 18:54:14.278 zone 168.192.in-addr.arpa/IN: sending notifies (seri
>> al 2007071201)
>> 12-Jul-2007 18:54:14.282 view.c:1161: REQUIRE(keyp != ((void *)0) && *keyp ==
>> ((void *)0)) failed
>> 12-Jul-2007 18:54:14.284 exiting (due to assertion failure)
>> ----- s n i p -----
>>
>> Any idea where to start looking for the problem?
>
> Known issue.
>
> 2158. [bug] ns_client_isself() failed to initialise key
> leading to a REQUIRE failure. [RT #16688]

Bummer. Is there a patch somewhere? Where can I find the issue tracker?


Mark Andrews

unread,
Jul 14, 2007, 6:53:29 AM7/14/07
to

Initialise key to NULL in bin/named/client.c:ns_client_isself().

Mark

Index: bind9/bin/named/client.c
diff -u bind9/bin/named/client.c:1.219.18.20 bind9/bin/named/client.c:1.219.18.26
--- bind9/bin/named/client.c:1.219.18.20 Sat Jul 22 01:02:36 2006
+++ bind9/bin/named/client.c Tue Jun 26 02:56:59 2007
@@ -1226,7 +1226,8 @@
dns_rdataclass_t rdclass, void *arg)
{
dns_view_t *view;
- dns_tsigkey_t *key;
+ dns_tsigkey_t *key = NULL;
+ dns_name_t *tsig = NULL;
isc_netaddr_t netsrc;
isc_netaddr_t netdst;

@@ -1241,7 +1242,6 @@
for (view = ISC_LIST_HEAD(ns_g_server->viewlist);
view != NULL;
view = ISC_LIST_NEXT(view, link)) {
- dns_name_t *tsig = NULL;

if (view->matchrecursiveonly)
continue;

0 new messages