1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (c) 2024 Meta Platforms, Inc. and affiliates. 4 * Copyright (c) 2024 Tejun Heo <tj@kernel.org> 5 * Copyright (c) 2024 David Vernet <dvernet@meta.com> 6 */ 7 #ifndef __SCX_COMPAT_H 8 #define __SCX_COMPAT_H 9 10 #include <bpf/btf.h> 11 #include <bpf/libbpf.h> 12 #include <fcntl.h> 13 #include <stdlib.h> 14 #include <unistd.h> 15 16 struct btf *__COMPAT_vmlinux_btf __attribute__((weak)); 17 18 static inline void __COMPAT_load_vmlinux_btf(void) 19 { 20 if (!__COMPAT_vmlinux_btf) { 21 __COMPAT_vmlinux_btf = btf__load_vmlinux_btf(); 22 SCX_BUG_ON(!__COMPAT_vmlinux_btf, "btf__load_vmlinux_btf()"); 23 } 24 } 25 26 static inline bool __COMPAT_read_enum(const char *type, const char *name, u64 *v) 27 { 28 const struct btf_type *t; 29 const char *n; 30 s32 tid; 31 int i; 32 33 __COMPAT_load_vmlinux_btf(); 34 35 tid = btf__find_by_name(__COMPAT_vmlinux_btf, type); 36 if (tid < 0) 37 return false; 38 39 t = btf__type_by_id(__COMPAT_vmlinux_btf, tid); 40 SCX_BUG_ON(!t, "btf__type_by_id(%d)", tid); 41 42 if (btf_is_enum(t)) { 43 struct btf_enum *e = btf_enum(t); 44 45 for (i = 0; i < BTF_INFO_VLEN(t->info); i++) { 46 n = btf__name_by_offset(__COMPAT_vmlinux_btf, e[i].name_off); 47 SCX_BUG_ON(!n, "btf__name_by_offset()"); 48 if (!strcmp(n, name)) { 49 *v = e[i].val; 50 return true; 51 } 52 } 53 } else if (btf_is_enum64(t)) { 54 struct btf_enum64 *e = btf_enum64(t); 55 56 for (i = 0; i < BTF_INFO_VLEN(t->info); i++) { 57 n = btf__name_by_offset(__COMPAT_vmlinux_btf, e[i].name_off); 58 SCX_BUG_ON(!n, "btf__name_by_offset()"); 59 if (!strcmp(n, name)) { 60 *v = btf_enum64_value(&e[i]); 61 return true; 62 } 63 } 64 } 65 66 return false; 67 } 68 69 #define __COMPAT_ENUM_OR_ZERO(__type, __ent) \ 70 ({ \ 71 u64 __val = 0; \ 72 __COMPAT_read_enum(__type, __ent, &__val); \ 73 __val; \ 74 }) 75 76 static inline bool __COMPAT_has_ksym(const char *ksym) 77 { 78 __COMPAT_load_vmlinux_btf(); 79 return btf__find_by_name(__COMPAT_vmlinux_btf, ksym) >= 0; 80 } 81 82 static inline bool __COMPAT_struct_has_field(const char *type, const char *field) 83 { 84 const struct btf_type *t; 85 const struct btf_member *m; 86 const char *n; 87 s32 tid; 88 int i; 89 90 __COMPAT_load_vmlinux_btf(); 91 tid = btf__find_by_name_kind(__COMPAT_vmlinux_btf, type, BTF_KIND_STRUCT); 92 if (tid < 0) 93 return false; 94 95 t = btf__type_by_id(__COMPAT_vmlinux_btf, tid); 96 SCX_BUG_ON(!t, "btf__type_by_id(%d)", tid); 97 98 m = btf_members(t); 99 100 for (i = 0; i < BTF_INFO_VLEN(t->info); i++) { 101 n = btf__name_by_offset(__COMPAT_vmlinux_btf, m[i].name_off); 102 SCX_BUG_ON(!n, "btf__name_by_offset()"); 103 if (!strcmp(n, field)) 104 return true; 105 } 106 107 return false; 108 } 109 110 #define SCX_OPS_FLAG(name) __COMPAT_ENUM_OR_ZERO("scx_ops_flags", #name) 111 112 #define SCX_OPS_KEEP_BUILTIN_IDLE SCX_OPS_FLAG(SCX_OPS_KEEP_BUILTIN_IDLE) 113 #define SCX_OPS_ENQ_LAST SCX_OPS_FLAG(SCX_OPS_ENQ_LAST) 114 #define SCX_OPS_ENQ_EXITING SCX_OPS_FLAG(SCX_OPS_ENQ_EXITING) 115 #define SCX_OPS_SWITCH_PARTIAL SCX_OPS_FLAG(SCX_OPS_SWITCH_PARTIAL) 116 #define SCX_OPS_ENQ_MIGRATION_DISABLED SCX_OPS_FLAG(SCX_OPS_ENQ_MIGRATION_DISABLED) 117 #define SCX_OPS_ALLOW_QUEUED_WAKEUP SCX_OPS_FLAG(SCX_OPS_ALLOW_QUEUED_WAKEUP) 118 #define SCX_OPS_BUILTIN_IDLE_PER_NODE SCX_OPS_FLAG(SCX_OPS_BUILTIN_IDLE_PER_NODE) 119 120 #define SCX_PICK_IDLE_FLAG(name) __COMPAT_ENUM_OR_ZERO("scx_pick_idle_cpu_flags", #name) 121 122 #define SCX_PICK_IDLE_CORE SCX_PICK_IDLE_FLAG(SCX_PICK_IDLE_CORE) 123 #define SCX_PICK_IDLE_IN_NODE SCX_PICK_IDLE_FLAG(SCX_PICK_IDLE_IN_NODE) 124 125 static inline long scx_hotplug_seq(void) 126 { 127 int fd; 128 char buf[32]; 129 char *endptr; 130 ssize_t len; 131 long val; 132 133 fd = open("/sys/kernel/sched_ext/hotplug_seq", O_RDONLY); 134 if (fd < 0) 135 return -ENOENT; 136 137 len = read(fd, buf, sizeof(buf) - 1); 138 SCX_BUG_ON(len <= 0, "read failed (%ld)", len); 139 buf[len] = 0; 140 close(fd); 141 142 errno = 0; 143 val = strtoul(buf, &endptr, 10); 144 SCX_BUG_ON(errno == ERANGE || endptr == buf || 145 (*endptr != '\n' && *endptr != '\0'), "invalid num hotplug events: %ld", val); 146 147 return val; 148 } 149 150 /* 151 * struct sched_ext_ops can change over time. If compat.bpf.h::SCX_OPS_DEFINE() 152 * is used to define ops and compat.h::SCX_OPS_LOAD/ATTACH() are used to load 153 * and attach it, backward compatibility is automatically maintained where 154 * reasonable. 155 * 156 * ec7e3b0463e1 ("implement-ops") in https://github.com/sched-ext/sched_ext is 157 * the current minimum required kernel version. 158 * 159 * COMPAT: 160 * - v6.17: ops.cgroup_set_bandwidth() 161 * - v6.19: ops.cgroup_set_idle() 162 */ 163 #define SCX_OPS_OPEN(__ops_name, __scx_name) ({ \ 164 struct __scx_name *__skel; \ 165 \ 166 SCX_BUG_ON(!__COMPAT_struct_has_field("sched_ext_ops", "dump"), \ 167 "sched_ext_ops.dump() missing, kernel too old?"); \ 168 \ 169 __skel = __scx_name##__open(); \ 170 SCX_BUG_ON(!__skel, "Could not open " #__scx_name); \ 171 __skel->struct_ops.__ops_name->hotplug_seq = scx_hotplug_seq(); \ 172 SCX_ENUM_INIT(__skel); \ 173 if (__skel->struct_ops.__ops_name->cgroup_set_bandwidth && \ 174 !__COMPAT_struct_has_field("sched_ext_ops", "cgroup_set_bandwidth")) { \ 175 fprintf(stderr, "WARNING: kernel doesn't support ops.cgroup_set_bandwidth()\n"); \ 176 __skel->struct_ops.__ops_name->cgroup_set_bandwidth = NULL; \ 177 } \ 178 if (__skel->struct_ops.__ops_name->cgroup_set_idle && \ 179 !__COMPAT_struct_has_field("sched_ext_ops", "cgroup_set_idle")) { \ 180 fprintf(stderr, "WARNING: kernel doesn't support ops.cgroup_set_idle()\n"); \ 181 __skel->struct_ops.__ops_name->cgroup_set_idle = NULL; \ 182 } \ 183 __skel; \ 184 }) 185 186 /* 187 * Associate non-struct_ops BPF programs with the scheduler's struct_ops map so 188 * that scx_prog_sched() can determine which scheduler a BPF program belongs 189 * to. Requires libbpf >= 1.7. 190 */ 191 #if LIBBPF_MAJOR_VERSION > 1 || \ 192 (LIBBPF_MAJOR_VERSION == 1 && LIBBPF_MINOR_VERSION >= 7) 193 static inline void __scx_ops_assoc_prog(struct bpf_program *prog, 194 struct bpf_map *map, 195 const char *ops_name) 196 { 197 s32 err = bpf_program__assoc_struct_ops(prog, map, NULL); 198 if (err) 199 fprintf(stderr, 200 "ERROR: Failed to associate %s with %s: %d\n", 201 bpf_program__name(prog), ops_name, err); 202 } 203 #else 204 static inline void __scx_ops_assoc_prog(struct bpf_program *prog, 205 struct bpf_map *map, 206 const char *ops_name) 207 { 208 } 209 #endif 210 211 #define SCX_OPS_LOAD(__skel, __ops_name, __scx_name, __uei_name) ({ \ 212 struct bpf_program *__prog; \ 213 UEI_SET_SIZE(__skel, __ops_name, __uei_name); \ 214 SCX_BUG_ON(__scx_name##__load((__skel)), "Failed to load skel"); \ 215 bpf_object__for_each_program(__prog, (__skel)->obj) { \ 216 if (bpf_program__type(__prog) == BPF_PROG_TYPE_STRUCT_OPS) \ 217 continue; \ 218 __scx_ops_assoc_prog(__prog, (__skel)->maps.__ops_name, \ 219 #__ops_name); \ 220 } \ 221 }) 222 223 /* 224 * New versions of bpftool now emit additional link placeholders for BPF maps, 225 * and set up BPF skeleton in such a way that libbpf will auto-attach BPF maps 226 * automatically, assuming libbpf is recent enough (v1.5+). Old libbpf will do 227 * nothing with those links and won't attempt to auto-attach maps. 228 * 229 * To maintain compatibility with older libbpf while avoiding trying to attach 230 * twice, disable the autoattach feature on newer libbpf. 231 */ 232 #if LIBBPF_MAJOR_VERSION > 1 || \ 233 (LIBBPF_MAJOR_VERSION == 1 && LIBBPF_MINOR_VERSION >= 5) 234 #define __SCX_OPS_DISABLE_AUTOATTACH(__skel, __ops_name) \ 235 bpf_map__set_autoattach((__skel)->maps.__ops_name, false) 236 #else 237 #define __SCX_OPS_DISABLE_AUTOATTACH(__skel, __ops_name) do {} while (0) 238 #endif 239 240 #define SCX_OPS_ATTACH(__skel, __ops_name, __scx_name) ({ \ 241 struct bpf_link *__link; \ 242 __SCX_OPS_DISABLE_AUTOATTACH(__skel, __ops_name); \ 243 SCX_BUG_ON(__scx_name##__attach((__skel)), "Failed to attach skel"); \ 244 __link = bpf_map__attach_struct_ops((__skel)->maps.__ops_name); \ 245 SCX_BUG_ON(!__link, "Failed to attach struct_ops"); \ 246 __link; \ 247 }) 248 249 #endif /* __SCX_COMPAT_H */ 250