간단한 프로그램을 만들다 Oops가 발생했습니다.

study의 이미지

오랫만에 Kernel thread를 만들어보다가, Kernel Oops가 발생했습니다.
아래 코드는 첨부했는데요,
Oops가 발생한 이유를 혹시 조언해주실 분 있으면 감사하겠습니다.

일단 코드는..

#include <linux/module.h>
#include <linux/kmod.h>
#include <linux/kthread.h>
#include <linux/time.h>
#include <linux/timer.h>
#include <linux/delay.h>
 
int monitor_main(void)
{
   int i = 0;
   daemonize("monitor_main");
 
   for(;;)
   {
      if (i == 10)
      {
         break;
      }
      printk("in monitor_main\n");
      mdelay(1000);
      i++;
   }
   return 0;
}
 
static int __init init_activity_monitor(void)
{
   printk("Hello - init_activity_monitor\n");
   monitor_main();
 
   return 0;
}
module_init(init_activity_monitor);
 
static void __exit exit_activity_monitor(void)
{
   printk("Bye - exit_activity_monitor\n");
}
module_exit(exit_activity_monitor);

에러메시지는요..아래와 같았습니다.

Feb 10 12:50:26 server kernel: Hello - init_activity_monitor
Feb 10 12:50:26 server kernel: in monitor_main
Feb 10 12:50:35 server last message repeated 9 times
Feb 10 12:50:36 server kernel: monitor_main[14835]: segfault at 0000003c2dccda8a rip 0000003c2dccda8a rsp 00007fff8f454cf8 error 4
Feb 10 12:50:36 server kernel: Unable to handle kernel NULL pointer dereference at 000000000000006c RIP:
Feb 10 12:50:36 server kernel:  [<ffffffff802076e9>] _raw_spin_lock+0xd/0xf2
Feb 10 12:50:36 server kernel: PGD 0
Feb 10 12:50:36 server kernel: Oops: 0000 [1] SMP
Feb 10 12:50:36 server kernel: CPU 0
Feb 10 12:50:36 server kernel: Modules linked in: activity_monitor(P) autofs4 hidp rfcomm l2cap bluetooth sunrpc bridge ipv6 joydev dm_multipath video sbs i2c_ec button battery asus_acpi ac parport_pc lp parport snd_hda_intel snd_hda_codec snd_seq_dummy snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device snd_pcm_oss snd_mixer_oss snd_pcm pcspkr i2c_i801 snd_timer snd soundcore snd_page_alloc i2c_core shpchp sky2 8139cp 8139too mii serio_raw dm_snapshot dm_zero dm_mirror dm_mod ext3 jbd ehci_hcd ohci_hcd uhci_hcd
Feb 10 12:50:36 server kernel: Pid: 14835, comm: monitor_main Tain
ted: P      2.6.19 #9
Feb 10 12:50:36 server kernel: RIP: 0010:[<ffffffff802076e9>]  [<f
fffffff802076e9>] _raw_spin_lock+0xd/0xf2
Feb 10 12:50:36 server kernel: RSP: 0000:ffff81001ba03c68  EFLAGS: 00010092
Feb 10 12:50:36 server kernel: RAX: 0000000000000000 RBX: 0000000000000068 RCX: 000000000000000a
Feb 10 12:50:36 server kernel: RDX: ffff81001ba03fd8 RSI: 0000000000000000 RDI: 0000000000000068
Feb 10 12:50:36 server kernel: RBP: 0000000000000060 R08: ffff810037f85040 R09: 0000000000000004
Feb 10 12:50:36 server kernel: R10: 0000000000000004 R11: 0000000000000000 R12: 000000000000000b
Feb 10 12:50:36 server kernel: R13: 000000000000000b R14: 0000000000000000 R15: ffffffff80574b40
Feb 10 12:50:36 server kernel: FS:  00002ba71b66c230(0000) GS:ffffffff80618000(0000) knlGS:0000000000000000
Feb 10 12:50:36 server kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
Feb 10 12:50:36 server kernel: CR2: 000000000000006c CR3: 0000000000201000 CR4: 00000000000006e0
Feb 10 12:50:36 server kernel: Process monitor_main (pid: 14835, threadinfo ffff81001ba02000, task ffff810037f85040)

익명 사용자의 이미지

커널에서 daemonize() 함수가 있나요? 첨보는 함수인데...

커널에서 thread 만들 땐 kthread_create 등의 함수를 사용합니다. pthread_create 등의 함수와 비슷한데...

개인적으로 kernel 에서 thread 만드는건 이유가 있지 않으면 신중하는게...

study의 이미지

kernel thread의 body 함수를 kernel_thread()를 써서 호출해줘야 하는건데, 그걸 빼 먹었네요.
아래와 같이 하니까 이젠 Oops가 없어졌습니다.

그리고 daemonize()은 Kernel 2.6에는 존재했지만, 3.10 이후인가에서 부터 없어진 것 같네요.
지금 좀 예전 Kernel을 보는 중이라 ~ ^^

#include <linux/module.h>
#include <linux/kmod.h>
#include <linux/kthread.h>
#include <linux/time.h>
#include <linux/timer.h>
#include <linux/delay.h>
 
int monitor_main(void)
{
   int i = 0;
   daemonize("monitor_main");
 
   for(;;)
   {
      if (i == 10)
      {
         break;
      }
      printk("in monitor_main\n");
      udelay(5);
      i++;
   }
   return 0;
}
 
static int __init init_activity_monitor(void)
{
   int ret;
   printk("Hello - init_activity_monitor\n");
 
   ret = kernel_thread(monitor_main, NULL, CLONE_FS | CLONE_FILES | CLONE_SIGHAND | SIGCHLD);
   if (ret < 0)
   {
      printk("failed to start kernel thread\n");
   }
 
   return 0;
}
module_init(init_activity_monitor);
 
static void __exit exit_activity_monitor(void)
{
   printk("Bye - exit_activity_monitor\n");
}
module_exit(exit_activity_monitor);

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.