-
Notifications
You must be signed in to change notification settings - Fork 0
/
open-cas-kmod-lib.sh
152 lines (131 loc) · 5.79 KB
/
open-cas-kmod-lib.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/bin/bash
# The MIT License
# Copyright (c) 2019 Dusty Mabe
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
set -eu
# This library is to be sourced in as part of the kmods-via-containers
# framework. There are some environment variables that are used in this
# file that are expected to be defined by the framework already:
# - KVC_CONTAINER_ENVIRONMENT
# - The container runtime to use (example: podman|docker)
# - KVC_SOFTWARE_NAME
# - The name of this module software bundle
# - KVC_KVER
# - The kernel version we are targeting
# There are other environment variables that come from the config file
# delivered alongside this library. The expected variables are:
# - KMOD_CONTAINER_BUILD_CONTEXT
# - A string representing the location of the build context
# - KMOD_CONTAINER_BUILD_FILE
# - The name of the file in the context with the build definition
# (i.e. Dockerfile)
# - KMOD_SOFTWARE_VERSION
# - The version of the software bundle
# - KMOD_NAMES
# - A space separated list kernel module names that are part of the
# module software bundle and are to be checked/loaded/unloaded
source "/etc/kvc/${KVC_SOFTWARE_NAME}.conf"
# The name of the container image to consider. It will be a unique
# combination of the module software name/version and the targeted
# kernel version.
IMAGE="${KVC_SOFTWARE_NAME}-${KMOD_SOFTWARE_VERSION}:${KVC_KVER}"
build_kmod_container() {
echo "Building ${IMAGE} kernel module container..."
kvc_c_build -t ${IMAGE} \
--file ${KMOD_CONTAINER_BUILD_FILE} \
--label="name=${KVC_SOFTWARE_NAME}" \
--build-arg KVER=${KVC_KVER} \
--build-arg KMODVER=${KMOD_SOFTWARE_VERSION} \
${KMOD_CONTAINER_BUILD_CONTEXT}
# get rid of any dangling containers if they exist
echo "Checking for old kernel module images that need to be recycled"
rmi1=$(kvc_c_images -q -f label="name=${KVC_SOFTWARE_NAME}" -f dangling=true)
# keep around any non-dangling images for only the most recent 3 kernels
rmi2=$(kvc_c_images -q -f label="name=${KVC_SOFTWARE_NAME}" -f dangling=false | tail -n +4)
if [ ! -z "${rmi1}" -o ! -z "${rmi2}" ]; then
echo "Cleaning up old kernel module container builds"
kvc_c_rmi -f $rmi1 $rmi2
fi
}
is_kmod_loaded() {
module=${1//-/_} # replace any dashes with underscore
if lsmod | grep "${module}" &>/dev/null; then
return 0
else
return 1
fi
}
build_kmods() {
if [ $(kvc_c_env) == "kubernetes" ]; then
return 0
fi
# Check to see if it's already built
if [ ! -z "$(kvc_c_images $IMAGE --quiet 2>/dev/null)" ]; then
echo "The ${IMAGE} kernel module container is already built"
else
build_kmod_container
fi
# Sanity checks for each module to load
for module in ${KMOD_NAMES}; do
module=${module//_/-} # replace any underscores with dash
# Sanity check to make sure the built kernel modules were really
# built against the correct module software version
# Note the tr to delete the trailing carriage return
x=$(kvc_c_run $IMAGE modinfo -F version "/lib/modules/${KVC_KVER}/${module}.ko" | \
tr -d '\r')
if [ "${x}" != "${KMOD_SOFTWARE_VERSION}" ]; then
echo "Module version mismatch within container. rebuilding ${IMAGE}"
build_kmod_container
fi
# Sanity check to make sure the built kernel modules were really
# built against the desired kernel version
x=$(kvc_c_run $IMAGE modinfo -F vermagic "/lib/modules/${KVC_KVER}/${module}.ko" | \
cut -d ' ' -f 1)
if [ "${x}" != "${KVC_KVER}" ]; then
echo "Module not built against ${KVC_KVER}. rebuilding ${IMAGE}"
build_kmod_container
fi
done
}
load_kmods() {
echo "Loading kernel modules using the kernel module container..."
for module in ${KMOD_NAMES}; do
kabi_check_module ${module}.ko
if is_kmod_loaded ${module}; then
echo "Kernel module ${module} already loaded"
else
module=${module//-/_} # replace any dashes with underscore
# TODO kvc_c_run --privileged $IMAGE modprobe ${module}
modprobe ${module}
fi
done
}
unload_kmods() {
echo "Unloading kernel modules..."
for module in ${KMOD_NAMES}; do
if is_kmod_loaded ${module}; then
module=${module//-/_} # replace any dashes with underscore
rmmod "${module}"
else
echo "Kernel module ${module} already unloaded"
fi
done
}
wrapper() {
echo "Running userspace wrapper using the kernel module container..."
# TODO kvc_c_run --privileged $IMAGE $@
}