Home
last modified time | relevance | path

Searched refs:hook (Results 1 – 25 of 346) sorted by relevance

12345678910>>...14

/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dtc_bpf.c37 ret = bpf_tc_attach(hook, &opts); in test_tc_bpf_basic()
48 ret = bpf_tc_attach(hook, &opts); in test_tc_bpf_basic()
53 ret = bpf_tc_query(hook, &opts); in test_tc_bpf_basic()
64 ret = bpf_tc_detach(hook, &opts); in test_tc_bpf_basic()
246 ret = bpf_tc_query(hook, NULL); in test_tc_bpf_api()
368 hook.parent = 0; in tc_bpf_root()
369 bpf_tc_hook_destroy(&hook); in tc_bpf_root()
375 bpf_tc_hook_destroy(&hook); in tc_bpf_root()
382 bpf_tc_hook_destroy(&hook); in tc_bpf_root()
388 bpf_tc_hook_destroy(&hook); in tc_bpf_root()
[all …]
H A Dxfrm_info.c72 static int attach_tc_prog(struct bpf_tc_hook *hook, int igr_fd, int egr_fd) in attach_tc_prog() argument
80 ret = bpf_tc_hook_create(hook); in attach_tc_prog()
85 hook->attach_point = BPF_TC_INGRESS; in attach_tc_prog()
86 ret = bpf_tc_attach(hook, &opts1); in attach_tc_prog()
88 bpf_tc_hook_destroy(hook); in attach_tc_prog()
94 hook->attach_point = BPF_TC_EGRESS; in attach_tc_prog()
95 ret = bpf_tc_attach(hook, &opts2); in attach_tc_prog()
97 bpf_tc_hook_destroy(hook); in attach_tc_prog()
/openbmc/linux/net/netfilter/
H A Dnf_bpf_link.c43 if (!hook) { in get_proto_defrag_hook()
53 if (hook && try_module_get(hook->owner)) { in get_proto_defrag_hook()
55 hook = rcu_pointer_handoff(hook); in get_proto_defrag_hook()
62 if (!IS_ERR(hook)) { in get_proto_defrag_hook()
66 hook = ERR_PTR(err); in get_proto_defrag_hook()
70 return hook; in get_proto_defrag_hook()
82 if (IS_ERR(hook)) in bpf_nf_enable_defrag()
83 return PTR_ERR(hook); in bpf_nf_enable_defrag()
91 if (IS_ERR(hook)) in bpf_nf_enable_defrag()
92 return PTR_ERR(hook); in bpf_nf_enable_defrag()
[all …]
H A Dutils.c10 __sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook, in nf_ip_checksum() argument
18 if (hook != NF_INET_PRE_ROUTING && hook != NF_INET_LOCAL_IN) in nf_ip_checksum()
53 return nf_ip_checksum(skb, hook, dataoff, protocol); in nf_ip_checksum_partial()
72 if (hook != NF_INET_PRE_ROUTING && hook != NF_INET_LOCAL_IN) in nf_ip6_checksum()
108 return nf_ip6_checksum(skb, hook, dataoff, protocol); in nf_ip6_checksum_partial()
123 __sum16 nf_checksum(struct sk_buff *skb, unsigned int hook, in nf_checksum() argument
131 csum = nf_ip_checksum(skb, hook, dataoff, protocol); in nf_checksum()
134 csum = nf_ip6_checksum(skb, hook, dataoff, protocol); in nf_checksum()
150 csum = nf_ip_checksum_partial(skb, hook, dataoff, len, in nf_checksum_partial()
154 csum = nf_ip6_checksum_partial(skb, hook, dataoff, len, in nf_checksum_partial()
[all …]
H A Dnfnetlink_hook.c58 u8 hook; member
176 ret = snprintf(sym, sizeof(sym), "%ps", ops->hook); in nfnl_hook_dump_one()
250 if (hook >= ARRAY_SIZE(net->nf.hooks_ipv4)) in nfnl_hook_entries_head()
255 if (hook >= ARRAY_SIZE(net->nf.hooks_ipv6)) in nfnl_hook_entries_head()
261 if (hook >= ARRAY_SIZE(net->nf.hooks_arp)) in nfnl_hook_entries_head()
263 hook_head = rcu_dereference(net->nf.hooks_arp[hook]); in nfnl_hook_entries_head()
268 if (hook >= ARRAY_SIZE(net->nf.hooks_bridge)) in nfnl_hook_entries_head()
275 if (hook >= NF_NETDEV_NUMHOOKS) in nfnl_hook_entries_head()
286 if (hook == NF_NETDEV_INGRESS) in nfnl_hook_entries_head()
290 if (hook == NF_NETDEV_EGRESS) in nfnl_hook_entries_head()
[all …]
H A Dnft_reject_netdev.c30 int hook) in nft_reject_netdev_send_v4_tcp_reset() argument
34 nskb = nf_reject_skb_v4_tcp_reset(net, oldskb, dev, hook); in nft_reject_netdev_send_v4_tcp_reset()
44 int hook, u8 code) in nft_reject_netdev_send_v4_unreach() argument
48 nskb = nf_reject_skb_v4_unreach(net, oldskb, dev, hook, code); in nft_reject_netdev_send_v4_unreach()
58 int hook) in nft_reject_netdev_send_v6_tcp_reset() argument
62 nskb = nf_reject_skb_v6_tcp_reset(net, oldskb, dev, hook); in nft_reject_netdev_send_v6_tcp_reset()
73 int hook, u8 code) in nft_reject_netdev_send_v6_unreach() argument
77 nskb = nf_reject_skb_v6_unreach(net, oldskb, dev, hook, code); in nft_reject_netdev_send_v6_unreach()
H A Dnf_conntrack_pptp.c92 const struct nf_nat_pptp_hook *hook; in pptp_expectfn() local
103 hook = rcu_dereference(nf_nat_pptp_hook); in pptp_expectfn()
105 hook->expectfn(ct, exp); in pptp_expectfn()
190 const struct nf_nat_pptp_hook *hook; in exp_gre() local
220 hook = rcu_dereference(nf_nat_pptp_hook); in exp_gre()
221 if (hook && ct->status & IPS_NAT_MASK) in exp_gre()
222 hook->exp_gre(exp_orig, exp_reply); in exp_gre()
260 const struct nf_nat_pptp_hook *hook; in pptp_inbound_pkt() local
365 if (hook && ct->status & IPS_NAT_MASK) in pptp_inbound_pkt()
387 const struct nf_nat_pptp_hook *hook; in pptp_outbound_pkt() local
[all …]
/openbmc/linux/arch/arm64/kernel/
H A Ddebug-monitors.c186 unregister_debug_hook(&hook->node); in unregister_user_step_hook()
196 unregister_debug_hook(&hook->node); in unregister_kernel_step_hook()
207 struct step_hook *hook; in call_step_hook() local
217 list_for_each_entry_rcu(hook, list, node) { in call_step_hook()
218 retval = hook->fn(regs, esr); in call_step_hook()
289 unregister_debug_hook(&hook->node); in unregister_user_break_hook()
299 unregister_debug_hook(&hook->node); in unregister_kernel_break_hook()
304 struct break_hook *hook; in call_break_hook() local
314 list_for_each_entry_rcu(hook, list, node) { in call_break_hook()
317 if ((comment & ~hook->mask) == hook->imm) in call_break_hook()
[all …]
/openbmc/linux/include/linux/
H A Dnetfilter.h69 u8 hook; member
89 nf_hookfn *hook; member
100 nf_hookfn *hook; member
144 return entry->hook(entry->priv, skb, state); in nf_hook_entry_hookfn()
148 unsigned int hook, in nf_hook_state_init() argument
156 p->hook = hook; in nf_hook_state_init()
223 __builtin_constant_p(hook) && in nf_hook()
224 !static_key_false(&nf_hooks_needed[pf][hook])) in nf_hook()
256 nf_hook_state_init(&state, hook, pf, indev, outdev, in nf_hook()
317 __builtin_constant_p(hook) && in NF_HOOK_LIST()
[all …]
H A Dpci.h2220 class_shift, hook, __UNIQUE_ID(hook))
2233 hook, vendor, device, class, class_shift, hook)
2237 hook, vendor, device, class, class_shift, hook)
2241 hook, vendor, device, class, class_shift, hook)
2245 hook, vendor, device, class, class_shift, hook)
2265 hook, vendor, device, PCI_ANY_ID, 0, hook)
2268 hook, vendor, device, PCI_ANY_ID, 0, hook)
2271 hook, vendor, device, PCI_ANY_ID, 0, hook)
2274 hook, vendor, device, PCI_ANY_ID, 0, hook)
2277 resume##hook, vendor, device, PCI_ANY_ID, 0, hook)
[all …]
/openbmc/linux/net/ipv4/netfilter/
H A Dipt_REJECT.c34 int hook = xt_hooknum(par); in reject_tg() local
38 nf_send_unreach(skb, ICMP_NET_UNREACH, hook); in reject_tg()
41 nf_send_unreach(skb, ICMP_HOST_UNREACH, hook); in reject_tg()
44 nf_send_unreach(skb, ICMP_PROT_UNREACH, hook); in reject_tg()
47 nf_send_unreach(skb, ICMP_PORT_UNREACH, hook); in reject_tg()
50 nf_send_unreach(skb, ICMP_NET_ANO, hook); in reject_tg()
53 nf_send_unreach(skb, ICMP_HOST_ANO, hook); in reject_tg()
56 nf_send_unreach(skb, ICMP_PKT_FILTERED, hook); in reject_tg()
59 nf_send_reset(xt_net(par), par->state->sk, skb, hook); in reject_tg()
H A Dnf_reject_ipv4.c42 int hook) in nf_reject_skb_v4_tcp_reset() argument
52 oth = nf_reject_ip_tcphdr_get(oldskb, &_oth, hook); in nf_reject_skb_v4_tcp_reset()
77 int hook, u8 code) in nf_reject_skb_v4_unreach() argument
108 nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), proto)) in nf_reject_skb_v4_unreach()
140 struct tcphdr *_oth, int hook) in nf_reject_ip_tcphdr_get() argument
240 int hook) in nf_send_reset() argument
247 oth = nf_reject_ip_tcphdr_get(oldskb, &_oth, hook); in nf_send_reset()
251 if ((hook == NF_INET_PRE_ROUTING || hook == NF_INET_INGRESS) && in nf_send_reset()
317 void nf_send_unreach(struct sk_buff *skb_in, int code, int hook) in nf_send_unreach() argument
326 if ((hook == NF_INET_PRE_ROUTING || hook == NF_INET_INGRESS) && in nf_send_unreach()
[all …]
/openbmc/linux/arch/arm64/include/asm/
H A Ddebug-monitors.h70 void register_user_step_hook(struct step_hook *hook);
71 void unregister_user_step_hook(struct step_hook *hook);
73 void register_kernel_step_hook(struct step_hook *hook);
74 void unregister_kernel_step_hook(struct step_hook *hook);
83 void register_user_break_hook(struct break_hook *hook);
84 void unregister_user_break_hook(struct break_hook *hook);
86 void register_kernel_break_hook(struct break_hook *hook);
87 void unregister_kernel_break_hook(struct break_hook *hook);
/openbmc/linux/tools/lib/bpf/
H A Dnetlink.c549 if (OPTS_GET(hook, parent, 0)) in attach_point_to_config()
620 if (!hook || !OPTS_VALID(hook, bpf_tc_hook) || in bpf_tc_hook_create()
621 OPTS_GET(hook, ifindex, 0) <= 0) in bpf_tc_hook_create()
624 ret = tc_qdisc_create_excl(hook); in bpf_tc_hook_create()
634 if (!hook || !OPTS_VALID(hook, bpf_tc_hook) || in bpf_tc_hook_destroy()
635 OPTS_GET(hook, ifindex, 0) <= 0) in bpf_tc_hook_destroy()
726 if (!hook || !opts || in bpf_tc_attach()
727 !OPTS_VALID(hook, bpf_tc_hook) || in bpf_tc_attach()
800 if (!hook || in __bpf_tc_detach()
801 !OPTS_VALID(hook, bpf_tc_hook) || in __bpf_tc_detach()
[all …]
/openbmc/linux/security/integrity/ima/
H A Dima.h189 #define __ima_hooks(hook) \ argument
190 hook(NONE, none) \
191 hook(FILE_CHECK, file) \
192 hook(MMAP_CHECK, mmap) \
194 hook(BPRM_CHECK, bprm) \
195 hook(CREDS_CHECK, creds) \
197 hook(MODULE_CHECK, module) \
198 hook(FIRMWARE_CHECK, firmware) \
201 hook(POLICY_CHECK, policy) \
203 hook(KEY_CHECK, key) \
[all …]
/openbmc/linux/include/net/netfilter/ipv4/
H A Dnf_reject.h10 void nf_send_unreach(struct sk_buff *skb_in, int code, int hook);
12 int hook);
14 struct tcphdr *_oth, int hook);
24 int hook, u8 code);
28 int hook);
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-slip-dbus/
H A D9b939c0b534c1b7958fa0a3c7aedf30bca910431.patch63 def __init__(self, hook, args, kwargs, hookable=None):
65 - assert(isinstance(hook, collections.Callable))
66 + assert(isinstance(hook, collections.abc.Callable))
70 @@ -174,7 +174,7 @@ def add_hook_hookable(self, hook, *args, **kwargs):
71 self.__add_hook(hook, self, *args, **kwargs)
73 def __add_hook(self, hook, _hookable, *args, **kwargs):
74 - assert isinstance(hook, collections.Callable)
75 + assert isinstance(hook, collections.abc.Callable)
77 hookentry = _HookEntry(hook, args, kwargs, hookable=_hookable)
/openbmc/linux/include/acpi/
H A Dbattery.h15 int (*add_battery)(struct power_supply *battery, struct acpi_battery_hook *hook);
16 int (*remove_battery)(struct power_supply *battery, struct acpi_battery_hook *hook);
20 void battery_hook_register(struct acpi_battery_hook *hook);
21 void battery_hook_unregister(struct acpi_battery_hook *hook);
/openbmc/linux/net/bridge/netfilter/
H A Dnft_reject_bridge.c48 int hook) in nft_reject_br_send_v4_tcp_reset() argument
52 nskb = nf_reject_skb_v4_tcp_reset(net, oldskb, NULL, hook); in nft_reject_br_send_v4_tcp_reset()
64 int hook, u8 code) in nft_reject_br_send_v4_unreach() argument
68 nskb = nf_reject_skb_v4_unreach(net, oldskb, NULL, hook, code); in nft_reject_br_send_v4_unreach()
80 int hook) in nft_reject_br_send_v6_tcp_reset() argument
84 nskb = nf_reject_skb_v6_tcp_reset(net, oldskb, NULL, hook); in nft_reject_br_send_v6_tcp_reset()
97 int hook, u8 code) in nft_reject_br_send_v6_unreach() argument
101 nskb = nf_reject_skb_v6_unreach(net, oldskb, NULL, hook, code); in nft_reject_br_send_v6_unreach()
/openbmc/linux/include/net/netfilter/ipv6/
H A Dnf_reject.h11 int hook);
14 unsigned int *otcplen, int hook);
25 int hook);
29 int hook, u8 code);
/openbmc/linux/net/ipv6/netfilter/
H A Dnf_reject_ipv6.c15 static bool nf_reject_v6_csum_ok(struct sk_buff *skb, int hook) in nf_reject_v6_csum_ok() argument
37 return nf_ip6_checksum(skb, hook, thoff, proto) == 0; in nf_reject_v6_csum_ok()
62 int hook) in nf_reject_skb_v6_tcp_reset() argument
97 int hook, u8 code) in nf_reject_skb_v6_unreach() argument
115 if (!nf_reject_v6_csum_ok(oldskb, hook)) in nf_reject_skb_v6_unreach()
151 unsigned int *otcplen, int hook) in nf_reject_ip6_tcphdr_get() argument
188 if (nf_ip6_checksum(oldskb, hook, tcphoff, IPPROTO_TCP)) { in nf_reject_ip6_tcphdr_get()
279 int hook) in nf_send_reset6() argument
307 if (hook == NF_INET_PRE_ROUTING || hook == NF_INET_INGRESS) { in nf_send_reset6()
381 static bool reject6_csum_ok(struct sk_buff *skb, int hook) in reject6_csum_ok() argument
[all …]
/openbmc/linux/drivers/gpu/drm/i915/display/
H A Dintel_quirks.c72 void (*hook)(struct drm_i915_private *i915); member
77 void (*hook)(struct drm_i915_private *i915); member
115 .hook = quirk_invert_brightness,
137 .hook = quirk_no_pps_backlight_power_hook,
219 q->hook(i915); in intel_init_quirks()
223 intel_dmi_quirks[i].hook(i915); in intel_init_quirks()
/openbmc/linux/tools/testing/selftests/netfilter/
H A Dnft_queue.sh105 type filter hook input priority $prio; policy accept;
109 type filter hook forward priority $prio; policy accept;
114 type filter hook output priority $prio; policy accept;
137 type filter hook input priority $prio; policy accept;
141 type filter hook forward priority $prio; policy accept;
145 type filter hook output priority $prio; policy accept;
190 type filter hook forward priority 0; policy accept;
323 type filter hook output priority 0; policy accept;
327 type filter hook postrouting priority 0; policy accept;
372 type filter hook output priority 0; policy accept;
[all …]
/openbmc/linux/arch/csky/kernel/
H A Dftrace.c70 static int ftrace_check_current_nop(unsigned long hook) in ftrace_check_current_nop() argument
73 unsigned long hook_pos = hook - 2; in ftrace_check_current_nop()
91 static int ftrace_modify_code(unsigned long hook, unsigned long target, in ftrace_modify_code() argument
96 unsigned long hook_pos = hook - 2; in ftrace_modify_code()
99 make_jbsr(target, hook, call, nolr); in ftrace_modify_code()
/openbmc/openbmc/poky/meta/recipes-support/ca-certificates/ca-certificates/
H A D0001-update-ca-certificates-don-t-use-Debianisms-in-run-p.patch30 - eval run-parts "$VERBOSE_ARG" --test -- "$HOOKSDIR" | while read hook
31 + eval run-parts --test "$HOOKSDIR" | while read hook
34 cat "$REMOVED" ) | "$hook" || echo "E: $hook exited with code $?."

12345678910>>...14