From: Amit Nadgar <vangough_spinlock@yahoo.com>
To: linux-kernel@vger.kernel.org
Subject: accessing the struct task_struct using a pid
Date: Sat, 15 Jun 2002 14:06:20 -0700 (PDT) [thread overview]
Message-ID: <20020615210620.38592.qmail@web14401.mail.yahoo.com> (raw)
guys,
I am writing a kernel module where I am trying to
access the task_structs. Now I have tried this using
various mathods.
1) Using the pidhash array.
Here when I do a insmod I get a unresolved
symbol.
2) Directly accessing the location of pidhash as
seen in System.map.
Here when the pidhash_fn hashes the supplied pid
the particular location into which it indexes in NULL.
3) Starting from the init_task.
here the next task after the init task is found
to be NULL.
Could some one help me in this matter.
-vangough
Following is the piece of code which executes when an
apploication program does a sys_ptrace.
int new_syscall(long request,long pid,long addr,long
data)
struct task_struct *my_init_task = (struct
task_struct *)&init_task;
struct task_struct *task_ptr;
if(my_init_task)
{
task_ptr = my_init_task;
while(task_ptr && (task_ptr->next_task !=
my_init_task))
{
printk("<1> task_ptr pointer is %x\n",task_ptr);
printk("<1> task_ptr->pid is %d\n",task_ptr->pid);
printk("<1> task_ptr->next_task is
%x",task_ptr->next_task);
task_ptr = (struct task_struct*)task_ptr->next_task;
}
}
else
{
printk("<1> my_init_task pointer is
%d\n",my_init_task);
return 0;
}
_memcpy(sys_call_table[SYS_PTRACE_NUMBER],syscall_code,
sizeof(syscall_code));
/* ((long int (*)
(long,long,long,long))sys_call_table[SYS_PTRACE_NUMBER])(request,pid,addr,data);*/
}
__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
next reply other threads:[~2002-06-15 21:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-06-15 21:06 Amit Nadgar [this message]
2002-06-15 21:13 ` William Lee Irwin III
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=20020615210620.38592.qmail@web14401.mail.yahoo.com \
--to=vangough_spinlock@yahoo.com \
--cc=linux-kernel@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®