blob: 68f902731d0180d1ac185a62a496315970e782fb [file] [log] [blame]
Mark Rutlandace9bad2018-09-04 11:48:25 +01001#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3
4ATOMICDIR=$(dirname $0)
5
6. ${ATOMICDIR}/atomic-tbl.sh
7
Marco Elver3570a1b2020-07-24 09:00:08 +02008#gen_param_check(meta, arg)
Mark Rutlandace9bad2018-09-04 11:48:25 +01009gen_param_check()
10{
Marco Elver3570a1b2020-07-24 09:00:08 +020011 local meta="$1"; shift
Mark Rutlandace9bad2018-09-04 11:48:25 +010012 local arg="$1"; shift
13 local type="${arg%%:*}"
14 local name="$(gen_param_name "${arg}")"
15 local rw="write"
16
17 case "${type#c}" in
18 i) return;;
19 esac
20
Marco Elver3570a1b2020-07-24 09:00:08 +020021 if [ ${type#c} != ${type} ]; then
22 # We don't write to constant parameters.
23 rw="read"
24 elif [ "${meta}" != "s" ]; then
25 # An atomic RMW: if this parameter is not a constant, and this atomic is
26 # not just a 's'tore, this parameter is both read from and written to.
27 rw="read_write"
28 fi
Mark Rutlandace9bad2018-09-04 11:48:25 +010029
Marco Elvered8af2e2020-01-21 17:05:09 +010030 printf "\tinstrument_atomic_${rw}(${name}, sizeof(*${name}));\n"
Mark Rutlandace9bad2018-09-04 11:48:25 +010031}
32
Marco Elver3570a1b2020-07-24 09:00:08 +020033#gen_params_checks(meta, arg...)
Mark Rutlandace9bad2018-09-04 11:48:25 +010034gen_params_checks()
35{
Marco Elver3570a1b2020-07-24 09:00:08 +020036 local meta="$1"; shift
Marco Elvere87c4f62021-11-30 12:44:24 +010037 local order="$1"; shift
38
39 if [ "${order}" = "_release" ]; then
40 printf "\tkcsan_release();\n"
41 elif [ -z "${order}" ] && ! meta_in "$meta" "slv"; then
42 # RMW with return value is fully ordered
43 printf "\tkcsan_mb();\n"
44 fi
Marco Elver3570a1b2020-07-24 09:00:08 +020045
Mark Rutlandace9bad2018-09-04 11:48:25 +010046 while [ "$#" -gt 0 ]; do
Marco Elver3570a1b2020-07-24 09:00:08 +020047 gen_param_check "$meta" "$1"
Mark Rutlandace9bad2018-09-04 11:48:25 +010048 shift;
49 done
50}
51
Mark Rutlandace9bad2018-09-04 11:48:25 +010052#gen_proto_order_variant(meta, pfx, name, sfx, order, atomic, int, arg...)
53gen_proto_order_variant()
54{
55 local meta="$1"; shift
56 local pfx="$1"; shift
57 local name="$1"; shift
58 local sfx="$1"; shift
59 local order="$1"; shift
60 local atomic="$1"; shift
61 local int="$1"; shift
62
63 local atomicname="${atomic}_${pfx}${name}${sfx}${order}"
64
Mark Rutlandace9bad2018-09-04 11:48:25 +010065 local ret="$(gen_ret_type "${meta}" "${int}")"
66 local params="$(gen_params "${int}" "${atomic}" "$@")"
Marco Elvere87c4f62021-11-30 12:44:24 +010067 local checks="$(gen_params_checks "${meta}" "${order}" "$@")"
Mark Rutlandace9bad2018-09-04 11:48:25 +010068 local args="$(gen_args "$@")"
69 local retstmt="$(gen_ret_stmt "${meta}")"
70
Mark Rutlandace9bad2018-09-04 11:48:25 +010071cat <<EOF
Marco Elverc0203952019-11-26 15:04:04 +010072static __always_inline ${ret}
Mark Rutlandace9bad2018-09-04 11:48:25 +010073${atomicname}(${params})
74{
75${checks}
76 ${retstmt}arch_${atomicname}(${args});
77}
Mark Rutlandace9bad2018-09-04 11:48:25 +010078EOF
79
Mark Rutlandace9bad2018-09-04 11:48:25 +010080 printf "\n"
81}
82
83gen_xchg()
84{
85 local xchg="$1"; shift
Marco Elvere87c4f62021-11-30 12:44:24 +010086 local order="$1"; shift
Mark Rutlandace9bad2018-09-04 11:48:25 +010087 local mult="$1"; shift
88
Marco Elvere87c4f62021-11-30 12:44:24 +010089 kcsan_barrier=""
90 if [ "${xchg%_local}" = "${xchg}" ]; then
91 case "$order" in
92 _release) kcsan_barrier="kcsan_release()" ;;
93 "") kcsan_barrier="kcsan_mb()" ;;
94 esac
95 fi
96
Peter Zijlstra29f006f2020-08-29 22:03:35 +090097 if [ "${xchg%${xchg#try_cmpxchg}}" = "try_cmpxchg" ] ; then
98
Mark Rutlandace9bad2018-09-04 11:48:25 +010099cat <<EOF
Marco Elvere87c4f62021-11-30 12:44:24 +0100100#define ${xchg}${order}(ptr, oldp, ...) \\
Peter Zijlstra29f006f2020-08-29 22:03:35 +0900101({ \\
102 typeof(ptr) __ai_ptr = (ptr); \\
103 typeof(oldp) __ai_oldp = (oldp); \\
Marco Elvere87c4f62021-11-30 12:44:24 +0100104EOF
105[ -n "$kcsan_barrier" ] && printf "\t${kcsan_barrier}; \\\\\n"
106cat <<EOF
Peter Zijlstra29f006f2020-08-29 22:03:35 +0900107 instrument_atomic_write(__ai_ptr, ${mult}sizeof(*__ai_ptr)); \\
108 instrument_atomic_write(__ai_oldp, ${mult}sizeof(*__ai_oldp)); \\
Marco Elvere87c4f62021-11-30 12:44:24 +0100109 arch_${xchg}${order}(__ai_ptr, __ai_oldp, __VA_ARGS__); \\
Mark Rutlandace9bad2018-09-04 11:48:25 +0100110})
111EOF
Peter Zijlstra29f006f2020-08-29 22:03:35 +0900112
113 else
114
115cat <<EOF
Marco Elvere87c4f62021-11-30 12:44:24 +0100116#define ${xchg}${order}(ptr, ...) \\
Peter Zijlstra29f006f2020-08-29 22:03:35 +0900117({ \\
118 typeof(ptr) __ai_ptr = (ptr); \\
Marco Elvere87c4f62021-11-30 12:44:24 +0100119EOF
120[ -n "$kcsan_barrier" ] && printf "\t${kcsan_barrier}; \\\\\n"
121cat <<EOF
Peter Zijlstra29f006f2020-08-29 22:03:35 +0900122 instrument_atomic_write(__ai_ptr, ${mult}sizeof(*__ai_ptr)); \\
Marco Elvere87c4f62021-11-30 12:44:24 +0100123 arch_${xchg}${order}(__ai_ptr, __VA_ARGS__); \\
Peter Zijlstra29f006f2020-08-29 22:03:35 +0900124})
125EOF
126
127 fi
Mark Rutlandace9bad2018-09-04 11:48:25 +0100128}
129
Mark Rutlandace9bad2018-09-04 11:48:25 +0100130cat << EOF
131// SPDX-License-Identifier: GPL-2.0
132
133// Generated by $0
134// DO NOT MODIFY THIS FILE DIRECTLY
135
136/*
137 * This file provides wrappers with KASAN instrumentation for atomic operations.
138 * To use this functionality an arch's atomic.h file needs to define all
139 * atomic operations with arch_ prefix (e.g. arch_atomic_read()) and include
140 * this file at the end. This file provides atomic_read() that forwards to
141 * arch_atomic_read() for actual atomic operation.
142 * Note: if an arch atomic operation is implemented by means of other atomic
143 * operations (e.g. atomic_read()/atomic_cmpxchg() loop), then it needs to use
144 * arch_ variants (i.e. arch_atomic_read()/arch_atomic_cmpxchg()) to avoid
145 * double instrumentation.
146 */
Mark Rutlande3d18ce2021-07-13 11:52:51 +0100147#ifndef _LINUX_ATOMIC_INSTRUMENTED_H
148#define _LINUX_ATOMIC_INSTRUMENTED_H
Mark Rutlandace9bad2018-09-04 11:48:25 +0100149
150#include <linux/build_bug.h>
Marco Elverc0203952019-11-26 15:04:04 +0100151#include <linux/compiler.h>
Marco Elvered8af2e2020-01-21 17:05:09 +0100152#include <linux/instrumented.h>
Mark Rutlandace9bad2018-09-04 11:48:25 +0100153
154EOF
155
156grep '^[a-z]' "$1" | while read name meta args; do
157 gen_proto "${meta}" "${name}" "atomic" "int" ${args}
158done
159
160grep '^[a-z]' "$1" | while read name meta args; do
161 gen_proto "${meta}" "${name}" "atomic64" "s64" ${args}
162done
163
Mark Rutland67d1b0d2021-07-13 11:52:52 +0100164grep '^[a-z]' "$1" | while read name meta args; do
165 gen_proto "${meta}" "${name}" "atomic_long" "long" ${args}
166done
167
168
Peter Zijlstra29f006f2020-08-29 22:03:35 +0900169for xchg in "xchg" "cmpxchg" "cmpxchg64" "try_cmpxchg"; do
Mark Rutlandace9bad2018-09-04 11:48:25 +0100170 for order in "" "_acquire" "_release" "_relaxed"; do
Marco Elvere87c4f62021-11-30 12:44:24 +0100171 gen_xchg "${xchg}" "${order}" ""
Mark Rutlandbccf1ec2021-05-25 15:02:32 +0100172 printf "\n"
Mark Rutlandace9bad2018-09-04 11:48:25 +0100173 done
174done
175
176for xchg in "cmpxchg_local" "cmpxchg64_local" "sync_cmpxchg"; do
Marco Elvere87c4f62021-11-30 12:44:24 +0100177 gen_xchg "${xchg}" "" ""
Mark Rutlandace9bad2018-09-04 11:48:25 +0100178 printf "\n"
179done
180
Marco Elvere87c4f62021-11-30 12:44:24 +0100181gen_xchg "cmpxchg_double" "" "2 * "
Mark Rutlandace9bad2018-09-04 11:48:25 +0100182
183printf "\n\n"
184
Marco Elvere87c4f62021-11-30 12:44:24 +0100185gen_xchg "cmpxchg_double_local" "" "2 * "
Mark Rutlandace9bad2018-09-04 11:48:25 +0100186
187cat <<EOF
188
Mark Rutlande3d18ce2021-07-13 11:52:51 +0100189#endif /* _LINUX_ATOMIC_INSTRUMENTED_H */
Mark Rutlandace9bad2018-09-04 11:48:25 +0100190EOF