From: Erik Mouw <erik@harddisk-recovery.com>
To: chinmaya@innomedia.soft.net
Cc: Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: Gettin own IP address thorugh ioctl in kernel space.
Date: Wed, 19 Jul 2006 13:56:29 +0200 [thread overview]
Message-ID: <20060719115629.GB22306@harddisk-recovery.com> (raw)
In-Reply-To: <44BDFC64.607@innomedia.soft.net>
On Wed, Jul 19, 2006 at 03:03:24PM +0530, Chinmaya Mishra wrote:
> Can you provide an example how to invoke ioctl on
> device in kernel module.
>
> For example. I want to find out the IP address of
> my eth0 and I want to make SIOCSIFADDR on it from
> kernel module.
Sounds like a badly designed module. Do it from userspace.
> At user space i am doing it like this.....
>
> unsigned long *ip;
> char *iface;
> int sockfd;
> struct ifreq ifr;
> strcpy(ifr.ifr_name, iface); // interface name 'eth0'
> sockfd = socket(AF_INET,SOCK_DGRAM,0);
> ioctl(sockfd, SIOCGIFADDR, (char*)&ifr);
> memcpy(ip, &(ifr.ifr_addr.sa_data[2]),4); //Copy the ip addr
> close(sockfd);
>
> How to port this in keernel space.
Not. For the same reasons why you shouldn't read files from kernel
space.
Erik
--
+-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 370 12 90 --
| Lab address: Delftechpark 26, 2628 XH, Delft, The Netherlands
next prev parent reply other threads:[~2006-07-19 11:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-19 9:33 Chinmaya Mishra
2006-07-19 9:52 ` Parag N(पराग़)
2006-07-19 11:56 ` Erik Mouw [this message]
2006-07-19 15:07 ` Jan Engelhardt
2006-07-19 15:23 ` Valdis.Kletnieks
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=20060719115629.GB22306@harddisk-recovery.com \
--to=erik@harddisk-recovery.com \
--cc=chinmaya@innomedia.soft.net \
--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®