All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arvid Brodin <arvid.brodin@enea.com>
To: "linux-os (Dick Johnson)" <linux-os@analogic.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Print long messages to console from kernel module
Date: Tue, 26 Feb 2008 13:58:55 +0100	[thread overview]
Message-ID: <47C40D0F.9080708@enea.com> (raw)
In-Reply-To: <Pine.LNX.4.61.0802251722400.2031@chaos.analogic.com>

On 2008-02-25 23:27, linux-os (Dick Johnson) wrote:
> On Mon, 25 Feb 2008, Arvid Brodin wrote:
> 
>> I need to write messages > 1023 characters long to the console from a module*. printk() is limited to 1023 characters, and splitting the message over several printk()'s results in a line break and "Month hh:mm:ss host kernel:" being inserted in my text.
>>
>> I tried including <linux/console.h> and using the console_drivers declared there, but get
>> "WARNING: "console_drivers" [<path>/log.ko] undefined!" when compiling and
>> "insmod: error inserting 'log.ko': -1 Unknown symbol in module" when insmodding.
>>
>> I guess this is because non EXPORT_SYMBOL'd symbols are only accessible to statically linked code, and not to modules? I see in printk.c that console_drivers is set up there, and I haven't been able to find any other interface to console_drivers.
>>
>> In short: is there any way to print messages to the console from a kernel module, except printk()? Is opening /dev/tty and writing to it the way to go?
>>
>>
>> * I'm writing an in-memory logger to be included in a module. The log can be several megabytes. The idea is to use SysRq to print the contents of the log to console after a kernel panic or otherwise when writing to disk might not work.
>>
> 
> Write the data to a kernel buffer. Impliment read() or ioctl() and
> poll(). Have a user-mode task sleep in poll, waiting for data to
> become available. That user-mode task can do anything it wants,
> unrestricted, with the data including writing it to files or any
> tty it wants to open.

Thank you for your answer. However, I don't see how a user-mode task will help me print my log after a kernel panic, through SysRq? Please clarify.

What we want is essentially a replacement for printk(), where the messages are instead logged in a big ring buffer, and can be printed with Alt-SysRq-l when need be. And the problem is the actual printing of the buffer to the console, since printk() inserts its timestamp after every linebreak or 1023 characters, whichever comes first.

-- 
Arvid Brodin
Enea LCC


  reply	other threads:[~2008-02-26 12:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-25 17:30 Print long messages to console from kernel module Arvid Brodin
2008-02-25 22:27 ` linux-os (Dick Johnson)
2008-02-26 12:58   ` Arvid Brodin [this message]
2008-02-29 14:58 ` Arvid Brodin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=47C40D0F.9080708@enea.com \
    --to=arvid.brodin@enea.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-os@analogic.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.