net/netfilter/nf_conntrack_h323_main.c
Source file repositories/reference/linux-study-clean/net/netfilter/nf_conntrack_h323_main.c
File Facts
- System
- Linux kernel
- Corpus path
net/netfilter/nf_conntrack_h323_main.c- Extension
.c- Size
- 50143 bytes
- Lines
- 1800
- Domain
- Networking Core
- Bucket
- Sockets, Protocols, Packet Path, And Network Policy
- Inferred role
- Networking Core: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/module.hlinux/moduleparam.hlinux/ctype.hlinux/inet.hlinux/in.hlinux/ip.hlinux/slab.hlinux/udp.hlinux/tcp.hlinux/skbuff.hnet/route.hnet/ip6_route.hlinux/netfilter_ipv4.hlinux/netfilter_ipv6.hnet/netfilter/nf_conntrack.hnet/netfilter/nf_conntrack_core.hnet/netfilter/nf_conntrack_tuple.hnet/netfilter/nf_conntrack_expect.hnet/netfilter/nf_conntrack_ecache.hnet/netfilter/nf_conntrack_helper.hnet/netfilter/nf_conntrack_zones.hlinux/netfilter/nf_conntrack_h323.h
Detected Declarations
function get_tpkt_datafunction get_h245_addrfunction expect_rtp_rtcpfunction expect_t120function process_h245_channelfunction process_olcfunction process_olcafunction process_h245function h245_helpfunction get_h225_addrfunction expect_h245function callforward_do_filterfunction expect_callforwardingfunction callforward_do_filterfunction process_setupfunction get_h225_addrfunction process_callproceedingfunction process_connectfunction process_alertingfunction process_facilityfunction process_progressfunction process_q931function q931_helpfunction expect_q931function process_grqfunction process_gcffunction process_rrqfunction process_rcffunction process_urqfunction process_arqfunction process_acffunction process_lrqfunction process_lcffunction process_irrfunction process_rasfunction ras_helpfunction h323_helper_initfunction h323_helper_exitfunction nf_conntrack_h323_finifunction nf_conntrack_h323_initmodule init nf_conntrack_h323_initexport nfct_h323_nat_hookexport get_h225_addr
Annotated Snippet
module_init(nf_conntrack_h323_init);
module_exit(nf_conntrack_h323_fini);
MODULE_AUTHOR("Jing Min Zhao <zhaojingmin@users.sourceforge.net>");
MODULE_DESCRIPTION("H.323 connection tracking helper");
MODULE_LICENSE("GPL");
MODULE_ALIAS("ip_conntrack_h323");
MODULE_ALIAS_NFCT_HELPER("RAS");
MODULE_ALIAS_NFCT_HELPER("Q.931");
MODULE_ALIAS_NFCT_HELPER("H.245");
Annotation
- Immediate include surface: `linux/module.h`, `linux/moduleparam.h`, `linux/ctype.h`, `linux/inet.h`, `linux/in.h`, `linux/ip.h`, `linux/slab.h`, `linux/udp.h`.
- Detected declarations: `function get_tpkt_data`, `function get_h245_addr`, `function expect_rtp_rtcp`, `function expect_t120`, `function process_h245_channel`, `function process_olc`, `function process_olca`, `function process_h245`, `function h245_help`, `function get_h225_addr`.
- Atlas domain: Networking Core / Sockets, Protocols, Packet Path, And Network Policy.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.