net/ipv6/ila/ila_common.c
Source file repositories/reference/linux-study-clean/net/ipv6/ila/ila_common.c
File Facts
- System
- Linux kernel
- Corpus path
net/ipv6/ila/ila_common.c- Extension
.c- Size
- 3970 bytes
- Lines
- 157
- Domain
- Networking Core
- Bucket
- Sockets, Protocols, Packet Path, And Network Policy
- Inferred role
- Networking Core: implementation source
- Status
- source implementation candidate
Why This File Exists
Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.
- Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/errno.hlinux/ip.hlinux/kernel.hlinux/module.hlinux/skbuff.hlinux/socket.hlinux/types.hnet/checksum.hnet/ip.hnet/ip6_fib.hnet/lwtunnel.hnet/protocol.huapi/linux/ila.hila.h
Detected Declarations
function ila_init_saved_csumfunction get_csum_diff_iaddrfunction get_csum_difffunction ila_csum_do_neutral_fmtfunction ila_csum_do_neutral_nofmtfunction ila_csum_adjust_transportfunction ila_update_ipv6_locator
Annotated Snippet
if (likely(pskb_may_pull(skb, nhoff + sizeof(struct tcphdr)))) {
struct tcphdr *th = (struct tcphdr *)
(skb_network_header(skb) + nhoff);
diff = get_csum_diff(ip6h, p);
inet_proto_csum_replace_by_diff(&th->check, skb,
diff, true, true);
}
break;
case NEXTHDR_UDP:
if (likely(pskb_may_pull(skb, nhoff + sizeof(struct udphdr)))) {
struct udphdr *uh = (struct udphdr *)
(skb_network_header(skb) + nhoff);
if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
diff = get_csum_diff(ip6h, p);
inet_proto_csum_replace_by_diff(&uh->check, skb,
diff, true, true);
if (!uh->check)
uh->check = CSUM_MANGLED_0;
}
}
break;
case NEXTHDR_ICMP:
if (likely(pskb_may_pull(skb,
nhoff + sizeof(struct icmp6hdr)))) {
struct icmp6hdr *ih = (struct icmp6hdr *)
(skb_network_header(skb) + nhoff);
diff = get_csum_diff(ip6h, p);
inet_proto_csum_replace_by_diff(&ih->icmp6_cksum, skb,
diff, true, true);
}
break;
}
}
void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p,
bool sir2ila)
{
struct ipv6hdr *ip6h = ipv6_hdr(skb);
struct ila_addr *iaddr = ila_a2i(&ip6h->daddr);
switch (p->csum_mode) {
case ILA_CSUM_ADJUST_TRANSPORT:
ila_csum_adjust_transport(skb, p);
break;
case ILA_CSUM_NEUTRAL_MAP:
if (sir2ila) {
if (WARN_ON(ila_csum_neutral_set(iaddr->ident))) {
/* Checksum flag should never be
* set in a formatted SIR address.
*/
break;
}
} else if (!ila_csum_neutral_set(iaddr->ident)) {
/* ILA to SIR translation and C-bit isn't
* set so we're good.
*/
break;
}
ila_csum_do_neutral_fmt(iaddr, p);
break;
case ILA_CSUM_NEUTRAL_MAP_AUTO:
ila_csum_do_neutral_nofmt(iaddr, p);
break;
case ILA_CSUM_NO_ACTION:
break;
}
/* Now change destination address */
iaddr->loc = p->locator;
}
Annotation
- Immediate include surface: `linux/errno.h`, `linux/ip.h`, `linux/kernel.h`, `linux/module.h`, `linux/skbuff.h`, `linux/socket.h`, `linux/types.h`, `net/checksum.h`.
- Detected declarations: `function ila_init_saved_csum`, `function get_csum_diff_iaddr`, `function get_csum_diff`, `function ila_csum_do_neutral_fmt`, `function ila_csum_do_neutral_nofmt`, `function ila_csum_adjust_transport`, `function ila_update_ipv6_locator`.
- Atlas domain: Networking Core / Sockets, Protocols, Packet Path, And Network Policy.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.