> I ran into an interesting problem in the process of modifying
> "netstat" to understand the PF_NETGRAPH protocol family. "netstat"
> uses kvm_read(), etc. to read kernel symbols. However, this doesn't
> work when the symbols you're looking for are in an KLD module (eg,
> ng_socket.ko) -- the symbol will not be found.
> 
> So I added some code/hackery to look for any loaded modules and if
> on named "ng_socket.ko" was found, try finding the symbol in there.
> 
> My question is, should kvm_read() and friends be "enhanced" with
> this ability to find a symbol by searching through the loaded
> KLD modules? Seems a bit hackish, but then again so is the whole
> kvm() idea.

No; you should be using sysctl to get at the information.

> I'd be willing to add this code if so.. it's not much.
> 
> Unrelated question: SYSINIT() doesn't work from KLD modules.
> Is this problem being addressed?

It does; it's critical to the functioning of KLD modules in general.

-- 
\\  Sometimes you're ahead,       \\  Mike Smith
\\  sometimes you're behind.      \\  m...@smith.net.au
\\  The race is long, and in the  \\  msm...@freebsd.org
\\  end it's only with yourself.  \\  msm...@cdrom.com



To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-current" in the body of the message

Reply via email to