[완료]리눅스 커널 프로그래밍 패킷뷰어 를 공부하는데

minsu9101의 이미지

환경은 우분투입니다
커널 버전은 2.6 이상이구요 ㅎ
아래는 공부하던 소스에서 에러가 난 부분의 함수를 복사해온 것입니다.

IP헤더라고 주석이 쓰여져 있는 곳에
struct iphdr *iph = (struct iphdr*)(*pskb)->nh.iph;
이부분 nh라는 멤버가 없다고 하네요
그래서 sk_buff 헤더파일을 찾아봤는데
nh가 없더라구요
혹시 우분투는 뭔가 다른건지 (다른 리눅스와 다른 부분이 여러가지 있더라구요 ㅋㅋ)
아 그리고 sk_buff.h 의 위치가 /usr/src/커널버전/include/linux 아래에 있는게 맞는건가요??
부탁드립니다 고수님들 ㅋㅋ

#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/netfilter.h>
#include <linux/netfilter_ipv4.h>
#include <linux/ip.h>			// iphdr
#include <linux/tcp.h>			// tcphdr
#include <linux/netdevice.h> 		// net_device
 
unsigned int hook_simple( unsigned int hook_no,
    struct sk_buff **pskb,
    const struct net_device *dev_in,
    const struct net_device *dev_out,
    int (*handler)( struct sk_buff * ) )
{
  // IP 헤더
	struct iphdr *iph = (struct iphdr*)(*pskb)->nh.iph;//--------nh라는 멤버가 없데요ㅜㅜ---------
  // IP 부분을 건너뛴 곳에서부터 TCP 헤더의 시작
	struct tcphdr *th = (struct tcphdr*)( (*pskb)->data + ( iph->ihl * 4 ) );
 
  char *data = NULL;
  int length = 0;
 
  unsigned long saddr = 0;
  unsigned long daddr = 0;
  unsigned short sport = 0;
  unsigned short dport = 0;
 
  int ctr = 0;
 
  length = (*pskb)->len - iph->ihl * 4 - th->doff * 4;
 
  data = kmalloc( length, GFP_KERNEL );
  memset( data, 0, length );
 
  // 데이터 영역만 복사
  memcpy( data, (unsigned char *)th + th->doff * 4, length );
 
  saddr = ntohl( iph->saddr );
  daddr = ntohl( iph->daddr );
  sport = th->source;
  dport = th->dest;
 
  printk( "%lu.%lu.%lu.%lu:%5u -> %lu.%lu.%lu.%lu:%5u\n",
      ( saddr & 0xFF000000 ) >> 24,
      ( saddr & 0x00FF0000 ) >> 16,
      ( saddr & 0x0000FF00 ) >> 8,
      ( saddr & 0x000000FF ),
      sport,
      ( daddr & 0xFF000000 ) >> 24,
      ( daddr & 0x00FF0000 ) >> 16,
      ( daddr & 0x0000FF00 ) >> 8,
      ( daddr & 0x000000FF ),
      dport );
 
  /*
  for( ctr = 0; ctr < length; ctr++ )
  {
    printk( "%02x\n", *(data + ctr ) );
  }
  */
 
  kfree( data );
  return NF_ACCEPT;
}

mithrandir의 이미지

이름이 바뀌었댑니다.

http://forum.falinux.com/zbxe/?mid=question&document_srl=530905

언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net

언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net

minsu9101의 이미지

감ㄴ사합니닼ㅋㅋㅋㅋ

아 드디어 ㅋㅋ

그런데 sk_buff헤더파일이 제가 말한곳에 있는건가요??

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.