sk_buff 와 ipv6확장헤더에 대한 질문입니다..

jhyn0의 이미지

struct sk_buff {

.......

union
{
struct tcphdr *th;
struct udphdr *uh;
struct icmphdr *icmph;
struct igmphdr *igmph;
struct iphdr *ipiph;
struct spxhdr *spxh;
unsigned char *raw;
} h;

/* Network layer header */
union
{
struct iphdr *iph;
struct ipv6hdr *ipv6h;
struct arphdr *arph;
struct ipxhdr *ipxh;
unsigned char *raw;
} nh;

/* Link layer header */
union
{
struct ethhdr *ethernet;
unsigned char *raw;
} mac;

......
};

ipv6의 확장헤더 목록에 여러가지가 있던데 ipv6소스에서 보니 어떠한 확장헤더들은 ipv6_parse_exthdrs

함수가 호출되어 해당 코드들을 처리하며, 몇몇 확장헤더들은 확장헤더 처리 핸들러가 등록되어서 그 부분에서

처리가 되던데 이렇게 나누어서 처리하는 이유가 있는 것입니까?

그리고 ipv6_parse_exthdrs에서 처리되는 확장헤더는 시작 포인터를 알기위하여 앞헤더의 길이 정보등을 이

용하여 시작포인트를 알아내는데, 핸들러를 이용하여 처리하는 메세지는 transeport layer의 raw값을 이용하

여 바로 시작포인트를 알아내고 있었습니다. 그래서 raw값이 이용하는 것이 무엇인지 알아보려고 했는데, 잘 모

르겠습니다. 제가 여러 정확상 유추해 보건데 해당 계층의 시작 포인터 값을 가지고 있는 것 같습니다. 이것이 맞

는 것인지 모르겠고, 그렇다면 왜 다음 계층의 raw값을 가지고 확장헤더의 시작위치를 알게하도록 되어 있는

것인지 이유나 원인을 알려주시면 매우 감사하겠습니다.^^;

lovejin0309의 이미지

ㅎㅎㅎ. 어렵네요.

swunk의 이미지

답변이 될지 모르겠습니다만...(질문을 정확하게 이해하지 못하겠습니다.)

제가 아는것만 말씀을 드리면 ipv6 extension header 처리는 hop-by-hop option 헤더는 ip6_rcv()에서 처리하고 나머지 extension 헤더에 대한 내용은(다음헤더가 tcp혹은 udp가 아닐경우에는..) ipv6_input_finish()함수에서 님께서 말씀하신것 같이 ipv6_parse_exthdrs() 함수를 호출하여 처리합니다.
ipv6_parse_exthdrs()함수에서는 존재하는 extension 헤더의 갯수만큼 for 루프를 돌면서 확장헤더 마다 등록되어 핸들러들을 호출하여 처리를 하고 있고요, 마지막 처리가 다 끝이 나면 nh의 오프셋 값을 넘겨 줍니다. 나중에 이값은 tcp/udp 헤더를 처리하는데 사용하겠죠...

도움이 될런지 모르겠지만 어려움을 겪고 있는 부분에 대해서 명확히 질문을 주시면 답변을 드리도록 노력 하겠습니다.

댓글 달기

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