Hi Mosta,<br><br>I am using klogd and its running and also at boot time. I also search my printk message in these files  /var/log/kern.log /var/log/boot, /var/log/dmesg, /var/log/messages, but no luck, anything else i need to look for?<br>
<br>Regards<br><br><div class="gmail_quote">On Fri, May 20, 2011 at 2:51 PM, mosta <span dir="ltr">&lt;<a href="http://mosta.me">mosta.me</a>@<a href="http://googlemail.com">googlemail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
This depends on your kernel logger. Do you use klogd/ sysklogd or<br>
another one?<br>
<div class="im"><br>
On 05/20/11 08:40, toqeer ali wrote:<br>
&gt; Hi Mosta,<br>
&gt;<br>
&gt; Thanks for the prompt reply, I added the same printk message in the<br>
&gt; other kernel files like here /usr/src/linux-2.6.33.3/init/calibrate.c<br>
&gt;<br>
&gt;        int lps_precision = LPS_PREC;<br>
&gt;        printk(&quot;*** Just testing prinkt to work ***\n&quot;);<br>
&gt;        static bool printed;<br>
&gt;<br>
&gt; and recompiled the kernel and its showing in the dmesg. Is this means<br>
&gt; kernel logger is fine?<br>
&gt;<br>
&gt; also can please verify the steps i made to make lsm module just for<br>
&gt; pirnkt message.<br>
&gt;<br>
&gt; Regards<br>
&gt;<br>
&gt; On Fri, May 20, 2011 at 1:56 PM, mosta &lt;<a href="http://mosta.me" target="_blank">mosta.me</a><br>
</div><div><div></div><div class="h5">&gt; &lt;<a href="http://mosta.me" target="_blank">http://mosta.me</a>&gt;@<a href="http://googlemail.com" target="_blank">googlemail.com</a> &lt;<a href="http://googlemail.com" target="_blank">http://googlemail.com</a>&gt;&gt; wrote:<br>

&gt;<br>
&gt;     you have to check at what level you&#39;re kernel logger is and set it to<br>
&gt;     the according level.<br>
&gt;<br>
&gt;<br>
&gt;     greetings mosta<br>
&gt;<br>
&gt;     On 05/20/11 06:29, toqeer ali wrote:<br>
&gt;     &gt; Hi All,<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; I am writing a skeleton LSM module to only print the message at boot<br>
&gt;     &gt; time, but I could not see any printk message in the dmesg.<br>
&gt;     &gt;<br>
&gt;     &gt; Below are steps i did to enable the printk messages in the LSM<br>
&gt;     module.<br>
&gt;     &gt;<br>
&gt;     &gt;  What i did is download linux kernel 2.6.33.3.<br>
&gt;     &gt;<br>
&gt;     &gt; 1) added  the line source security/lsmcustommod/Kconfig        in<br>
&gt;     &gt; linuxsrc/security/Kconfig near ima/Kconfig.<br>
&gt;     &gt; 2) added &quot;subdir-$(CONFIG_SECURITY_LSMCUSTOMMOD)         +=<br>
&gt;     &gt; lsmcustommod&quot; line at linuxsrc/security/Makefile<br>
&gt;     &gt; 3) created a directory in linuxsrc/security/lsmcustommod and putted<br>
&gt;     &gt; three files<br>
&gt;     &gt;<br>
&gt;     &gt;             i) lsmcustommod.c<br>
&gt;     &gt;            ii) Kconfig<br>
&gt;     &gt;            iii) Makefile<br>
&gt;     &gt;<br>
&gt;     &gt; *Kconfig file contents*<br>
&gt;     &gt;<br>
&gt;     &gt; config SECURITY_LSMCUSTOMMOD<br>
&gt;     &gt;         bool &quot;LSMCUSTOMMOD Support&quot;<br>
&gt;     &gt;         depends on SECURITY<br>
&gt;     &gt;         select NETWORK_SECMARK<br>
&gt;     &gt;         default n<br>
&gt;     &gt;         help<br>
&gt;     &gt;<br>
&gt;     &gt; *Makefile Contents*<br>
&gt;     &gt;<br>
&gt;     &gt; obj-$(CONFIG_SECURITY_LSMCUSTOMMOD) := lsmcustommod.o<br>
&gt;     &gt;<br>
&gt;     &gt; *lsmcustommod.c* contents<br>
&gt;     &gt;<br>
&gt;     &gt; static __init lsmcustommod_init(void){<br>
&gt;     &gt;         /* register the hooks */<br>
&gt;     &gt;<br>
&gt;     &gt;         if (register_security(&amp;lsmcustommod_ops))<br>
&gt;     &gt;                 panic(&quot;lsmcustommod: Unable to register lsmcustommod<br>
&gt;     &gt; with kernel.\n&quot;);<br>
&gt;     &gt;         else<br>
&gt;     &gt;                 printk(&quot;lsmcustommod: registered with the<br>
&gt;     kernel\n&quot;);<br>
&gt;     &gt;<br>
&gt;     &gt;         return 0;<br>
&gt;     &gt; }<br>
&gt;     &gt;<br>
&gt;     &gt; static void __exit lsmcustommod_exit (void)<br>
&gt;     &gt; {<br>
&gt;     &gt;         return;<br>
&gt;     &gt; }<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; module_init (lsmcustommod_init);<br>
&gt;     &gt; module_exit (lsmcustommod_exit);<br>
&gt;     &gt;<br>
&gt;     &gt; MODULE_DESCRIPTION(&quot;lsmcustommod&quot;);<br>
&gt;     &gt; MODULE_LICENSE(&quot;GPL&quot;);<br>
&gt;     &gt; #endif /* CONFIG_SECURITY_LSMCUSTOMMOD */<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; After that I also added some return 0 and printk statments in the<br>
&gt;     &gt; lsmcustommod_ops stucture.<br>
&gt;     &gt;<br>
&gt;     &gt; lastly  disabled all modules in make menuconfig and select<br>
&gt;     LSMCUTOMMOD<br>
&gt;     &gt; in security sections of the menufile and compile the kernel by the<br>
&gt;     &gt; following command.<br>
&gt;     &gt;<br>
&gt;     &gt; make &amp;&amp; make modules &amp;&amp; make modules_install &amp;&amp; make install<br>
&gt;     &gt; updategrub2<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; --<br>
&gt;     &gt; Toqeer Ali Syed<br>
&gt;     &gt;<br>
&gt;     &gt; Red Hat Certified Engineer<br>
&gt;     &gt;<br>
</div></div>&gt;     &gt; mob:     <a href="tel:%2B60166205504" value="+60166205504">+60166205504</a> &lt;tel:%2B60166205504&gt; &lt;tel:%2B60166205504&gt;<br>
<div class="im">&gt;     &gt; mob:     <a href="tel:%2B92%20321%209059916" value="+923219059916">+92 321 9059916</a> &lt;tel:%2B92%20321%209059916&gt;<br>
&gt;     &lt;tel:%2B92%20321%209059916&gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; _______________________________________________<br>
&gt;     &gt; Kernelnewbies mailing list<br>
&gt;     &gt; <a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
</div>&gt;     &lt;mailto:<a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a>&gt;<br>
<div><div></div><div class="h5">&gt;     &gt; <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Toqeer Ali Syed<br>
&gt;<br>
&gt; Red Hat Certified Engineer<br>
&gt;<br>
&gt; mob:     <a href="tel:%2B60166205504" value="+60166205504">+60166205504</a><br>
&gt; mob:     <a href="tel:%2B92%20321%209059916" value="+923219059916">+92 321 9059916</a><br>
<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Toqeer Ali Syed<br><br>Red Hat Certified Engineer<br><br>mob:     +60166205504<br>mob:     +92 321 9059916<br>