diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.build | 10 | ||||
| -rw-r--r-- | scripts/Makefile.ubsan | 1 | ||||
| -rw-r--r-- | scripts/atomic/gen-atomics.sh | 2 | ||||
| -rwxr-xr-x | scripts/checkpatch.pl | 2 | ||||
| -rw-r--r-- | scripts/coccinelle/api/stream_open.cocci | 363 | ||||
| -rw-r--r-- | scripts/coccinelle/free/put_device.cocci | 1 | ||||
| -rw-r--r-- | scripts/coccinelle/misc/badty.cocci | 2 | ||||
| -rw-r--r-- | scripts/gcc-plugins/Kconfig | 126 | ||||
| -rw-r--r-- | scripts/kconfig/lxdialog/inputbox.c | 3 | ||||
| -rw-r--r-- | scripts/kconfig/nconf.c | 2 | ||||
| -rw-r--r-- | scripts/kconfig/nconf.gui.c | 3 | ||||
| -rwxr-xr-x | scripts/link-vmlinux.sh | 25 | ||||
| -rw-r--r-- | scripts/mod/modpost.c | 2 | ||||
| -rw-r--r-- | scripts/selinux/genheaders/genheaders.c | 1 | ||||
| -rwxr-xr-x | scripts/selinux/install_policy.sh | 92 | ||||
| -rw-r--r-- | scripts/selinux/mdp/Makefile | 2 | ||||
| -rw-r--r-- | scripts/selinux/mdp/mdp.c | 166 |
17 files changed, 603 insertions, 200 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 2554a15ecf2b..0c5969fa795f 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
| @@ -199,11 +199,8 @@ sub_cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \ | |||
| 199 | "$(if $(part-of-module),1,0)" "$(@)"; | 199 | "$(if $(part-of-module),1,0)" "$(@)"; |
| 200 | recordmcount_source := $(srctree)/scripts/recordmcount.pl | 200 | recordmcount_source := $(srctree)/scripts/recordmcount.pl |
| 201 | endif # BUILD_C_RECORDMCOUNT | 201 | endif # BUILD_C_RECORDMCOUNT |
| 202 | cmd_record_mcount = \ | 202 | cmd_record_mcount = $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)), \ |
| 203 | if [ "$(findstring $(CC_FLAGS_FTRACE),$(_c_flags))" = \ | 203 | $(sub_cmd_record_mcount)) |
| 204 | "$(CC_FLAGS_FTRACE)" ]; then \ | ||
| 205 | $(sub_cmd_record_mcount) \ | ||
| 206 | fi | ||
| 207 | endif # CC_USING_RECORD_MCOUNT | 204 | endif # CC_USING_RECORD_MCOUNT |
| 208 | endif # CONFIG_FTRACE_MCOUNT_RECORD | 205 | endif # CONFIG_FTRACE_MCOUNT_RECORD |
| 209 | 206 | ||
| @@ -225,6 +222,9 @@ endif | |||
| 225 | ifdef CONFIG_RETPOLINE | 222 | ifdef CONFIG_RETPOLINE |
| 226 | objtool_args += --retpoline | 223 | objtool_args += --retpoline |
| 227 | endif | 224 | endif |
| 225 | ifdef CONFIG_X86_SMAP | ||
| 226 | objtool_args += --uaccess | ||
| 227 | endif | ||
| 228 | 228 | ||
| 229 | # 'OBJECT_FILES_NON_STANDARD := y': skip objtool checking for a directory | 229 | # 'OBJECT_FILES_NON_STANDARD := y': skip objtool checking for a directory |
| 230 | # 'OBJECT_FILES_NON_STANDARD_foo.o := 'y': skip objtool checking for a file | 230 | # 'OBJECT_FILES_NON_STANDARD_foo.o := 'y': skip objtool checking for a file |
diff --git a/scripts/Makefile.ubsan b/scripts/Makefile.ubsan index 38b2b4818e8e..019771b845c5 100644 --- a/scripts/Makefile.ubsan +++ b/scripts/Makefile.ubsan | |||
| @@ -3,7 +3,6 @@ ifdef CONFIG_UBSAN | |||
| 3 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=shift) | 3 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=shift) |
| 4 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=integer-divide-by-zero) | 4 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=integer-divide-by-zero) |
| 5 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=unreachable) | 5 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=unreachable) |
| 6 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=vla-bound) | ||
| 7 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=signed-integer-overflow) | 6 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=signed-integer-overflow) |
| 8 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=bounds) | 7 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=bounds) |
| 9 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=object-size) | 8 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=object-size) |
diff --git a/scripts/atomic/gen-atomics.sh b/scripts/atomic/gen-atomics.sh index 27400b0cd732..000dc6437893 100644 --- a/scripts/atomic/gen-atomics.sh +++ b/scripts/atomic/gen-atomics.sh | |||
| @@ -13,7 +13,7 @@ gen-atomic-long.sh asm-generic/atomic-long.h | |||
| 13 | gen-atomic-fallback.sh linux/atomic-fallback.h | 13 | gen-atomic-fallback.sh linux/atomic-fallback.h |
| 14 | EOF | 14 | EOF |
| 15 | while read script header; do | 15 | while read script header; do |
| 16 | ${ATOMICDIR}/${script} ${ATOMICTBL} > ${LINUXDIR}/include/${header} | 16 | /bin/sh ${ATOMICDIR}/${script} ${ATOMICTBL} > ${LINUXDIR}/include/${header} |
| 17 | HASH="$(sha1sum ${LINUXDIR}/include/${header})" | 17 | HASH="$(sha1sum ${LINUXDIR}/include/${header})" |
| 18 | HASH="${HASH%% *}" | 18 | HASH="${HASH%% *}" |
| 19 | printf "// %s\n" "${HASH}" >> ${LINUXDIR}/include/${header} | 19 | printf "// %s\n" "${HASH}" >> ${LINUXDIR}/include/${header} |
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 5b756278df13..a09333fd7cef 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
| @@ -5977,7 +5977,7 @@ sub process { | |||
| 5977 | while ($fmt =~ /(\%[\*\d\.]*p(\w))/g) { | 5977 | while ($fmt =~ /(\%[\*\d\.]*p(\w))/g) { |
| 5978 | $specifier = $1; | 5978 | $specifier = $1; |
| 5979 | $extension = $2; | 5979 | $extension = $2; |
| 5980 | if ($extension !~ /[SsBKRraEhMmIiUDdgVCbGNOx]/) { | 5980 | if ($extension !~ /[SsBKRraEhMmIiUDdgVCbGNOxt]/) { |
| 5981 | $bad_specifier = $specifier; | 5981 | $bad_specifier = $specifier; |
| 5982 | last; | 5982 | last; |
| 5983 | } | 5983 | } |
diff --git a/scripts/coccinelle/api/stream_open.cocci b/scripts/coccinelle/api/stream_open.cocci new file mode 100644 index 000000000000..350145da7669 --- /dev/null +++ b/scripts/coccinelle/api/stream_open.cocci | |||
| @@ -0,0 +1,363 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0 | ||
| 2 | // Author: Kirill Smelkov (kirr@nexedi.com) | ||
| 3 | // | ||
| 4 | // Search for stream-like files that are using nonseekable_open and convert | ||
| 5 | // them to stream_open. A stream-like file is a file that does not use ppos in | ||
| 6 | // its read and write. Rationale for the conversion is to avoid deadlock in | ||
| 7 | // between read and write. | ||
| 8 | |||
| 9 | virtual report | ||
| 10 | virtual patch | ||
| 11 | virtual explain // explain decisions in the patch (SPFLAGS="-D explain") | ||
| 12 | |||
| 13 | // stream-like reader & writer - ones that do not depend on f_pos. | ||
| 14 | @ stream_reader @ | ||
| 15 | identifier readstream, ppos; | ||
| 16 | identifier f, buf, len; | ||
| 17 | type loff_t; | ||
| 18 | @@ | ||
| 19 | ssize_t readstream(struct file *f, char *buf, size_t len, loff_t *ppos) | ||
| 20 | { | ||
| 21 | ... when != ppos | ||
| 22 | } | ||
| 23 | |||
| 24 | @ stream_writer @ | ||
| 25 | identifier writestream, ppos; | ||
| 26 | identifier f, buf, len; | ||
| 27 | type loff_t; | ||
| 28 | @@ | ||
| 29 | ssize_t writestream(struct file *f, const char *buf, size_t len, loff_t *ppos) | ||
| 30 | { | ||
| 31 | ... when != ppos | ||
| 32 | } | ||
| 33 | |||
| 34 | |||
| 35 | // a function that blocks | ||
| 36 | @ blocks @ | ||
| 37 | identifier block_f; | ||
| 38 | identifier wait_event =~ "^wait_event_.*"; | ||
| 39 | @@ | ||
| 40 | block_f(...) { | ||
| 41 | ... when exists | ||
| 42 | wait_event(...) | ||
| 43 | ... when exists | ||
| 44 | } | ||
| 45 | |||
| 46 | // stream_reader that can block inside. | ||
| 47 | // | ||
| 48 | // XXX wait_* can be called not directly from current function (e.g. func -> f -> g -> wait()) | ||
| 49 | // XXX currently reader_blocks supports only direct and 1-level indirect cases. | ||
| 50 | @ reader_blocks_direct @ | ||
| 51 | identifier stream_reader.readstream; | ||
| 52 | identifier wait_event =~ "^wait_event_.*"; | ||
| 53 | @@ | ||
| 54 | readstream(...) | ||
| 55 | { | ||
| 56 | ... when exists | ||
| 57 | wait_event(...) | ||
| 58 | ... when exists | ||
| 59 | } | ||
| 60 | |||
| 61 | @ reader_blocks_1 @ | ||
| 62 | identifier stream_reader.readstream; | ||
| 63 | identifier blocks.block_f; | ||
| 64 | @@ | ||
| 65 | readstream(...) | ||
| 66 | { | ||
| 67 | ... when exists | ||
| 68 | block_f(...) | ||
| 69 | ... when exists | ||
| 70 | } | ||
| 71 | |||
| 72 | @ reader_blocks depends on reader_blocks_direct || reader_blocks_1 @ | ||
| 73 | identifier stream_reader.readstream; | ||
| 74 | @@ | ||
| 75 | readstream(...) { | ||
| 76 | ... | ||
| 77 | } | ||
| 78 | |||
| 79 | |||
| 80 | // file_operations + whether they have _any_ .read, .write, .llseek ... at all. | ||
| 81 | // | ||
| 82 | // XXX add support for file_operations xxx[N] = ... (sound/core/pcm_native.c) | ||
| 83 | @ fops0 @ | ||
| 84 | identifier fops; | ||
| 85 | @@ | ||
| 86 | struct file_operations fops = { | ||
| 87 | ... | ||
| 88 | }; | ||
| 89 | |||
| 90 | @ has_read @ | ||
| 91 | identifier fops0.fops; | ||
| 92 | identifier read_f; | ||
| 93 | @@ | ||
| 94 | struct file_operations fops = { | ||
| 95 | .read = read_f, | ||
| 96 | }; | ||
| 97 | |||
| 98 | @ has_read_iter @ | ||
| 99 | identifier fops0.fops; | ||
| 100 | identifier read_iter_f; | ||
| 101 | @@ | ||
| 102 | struct file_operations fops = { | ||
| 103 | .read_iter = read_iter_f, | ||
| 104 | }; | ||
| 105 | |||
| 106 | @ has_write @ | ||
| 107 | identifier fops0.fops; | ||
| 108 | identifier write_f; | ||
| 109 | @@ | ||
| 110 | struct file_operations fops = { | ||
| 111 | .write = write_f, | ||
| 112 | }; | ||
| 113 | |||
| 114 | @ has_write_iter @ | ||
| 115 | identifier fops0.fops; | ||
| 116 | identifier write_iter_f; | ||
| 117 | @@ | ||
| 118 | struct file_operations fops = { | ||
| 119 | .write_iter = write_iter_f, | ||
| 120 | }; | ||
| 121 | |||
| 122 | @ has_llseek @ | ||
| 123 | identifier fops0.fops; | ||
| 124 | identifier llseek_f; | ||
| 125 | @@ | ||
| 126 | struct file_operations fops = { | ||
| 127 | .llseek = llseek_f, | ||
| 128 | }; | ||
| 129 | |||
| 130 | @ has_no_llseek @ | ||
| 131 | identifier fops0.fops; | ||
| 132 | @@ | ||
| 133 | struct file_operations fops = { | ||
| 134 | .llseek = no_llseek, | ||
| 135 | }; | ||
| 136 | |||
| 137 | @ has_mmap @ | ||
| 138 | identifier fops0.fops; | ||
| 139 | identifier mmap_f; | ||
| 140 | @@ | ||
| 141 | struct file_operations fops = { | ||
| 142 | .mmap = mmap_f, | ||
| 143 | }; | ||
| 144 | |||
| 145 | @ has_copy_file_range @ | ||
| 146 | identifier fops0.fops; | ||
| 147 | identifier copy_file_range_f; | ||
| 148 | @@ | ||
| 149 | struct file_operations fops = { | ||
| 150 | .copy_file_range = copy_file_range_f, | ||
| 151 | }; | ||
| 152 | |||
| 153 | @ has_remap_file_range @ | ||
| 154 | identifier fops0.fops; | ||
| 155 | identifier remap_file_range_f; | ||
| 156 | @@ | ||
| 157 | struct file_operations fops = { | ||
| 158 | .remap_file_range = remap_file_range_f, | ||
| 159 | }; | ||
| 160 | |||
| 161 | @ has_splice_read @ | ||
| 162 | identifier fops0.fops; | ||
| 163 | identifier splice_read_f; | ||
| 164 | @@ | ||
| 165 | struct file_operations fops = { | ||
| 166 | .splice_read = splice_read_f, | ||
| 167 | }; | ||
| 168 | |||
| 169 | @ has_splice_write @ | ||
| 170 | identifier fops0.fops; | ||
| 171 | identifier splice_write_f; | ||
| 172 | @@ | ||
| 173 | struct file_operations fops = { | ||
| 174 | .splice_write = splice_write_f, | ||
| 175 | }; | ||
| 176 | |||
| 177 | |||
| 178 | // file_operations that is candidate for stream_open conversion - it does not | ||
| 179 | // use mmap and other methods that assume @offset access to file. | ||
| 180 | // | ||
| 181 | // XXX for simplicity require no .{read/write}_iter and no .splice_{read/write} for now. | ||
| 182 | // XXX maybe_steam.fops cannot be used in other rules - it gives "bad rule maybe_stream or bad variable fops". | ||
| 183 | @ maybe_stream depends on (!has_llseek || has_no_llseek) && !has_mmap && !has_copy_file_range && !has_remap_file_range && !has_read_iter && !has_write_iter && !has_splice_read && !has_splice_write @ | ||
| 184 | identifier fops0.fops; | ||
| 185 | @@ | ||
| 186 | struct file_operations fops = { | ||
| 187 | }; | ||
| 188 | |||
| 189 | |||
| 190 | // ---- conversions ---- | ||
| 191 | |||
| 192 | // XXX .open = nonseekable_open -> .open = stream_open | ||
| 193 | // XXX .open = func -> openfunc -> nonseekable_open | ||
| 194 | |||
| 195 | // read & write | ||
| 196 | // | ||
| 197 | // if both are used in the same file_operations together with an opener - | ||
| 198 | // under that conditions we can use stream_open instead of nonseekable_open. | ||
| 199 | @ fops_rw depends on maybe_stream @ | ||
| 200 | identifier fops0.fops, openfunc; | ||
| 201 | identifier stream_reader.readstream; | ||
| 202 | identifier stream_writer.writestream; | ||
| 203 | @@ | ||
| 204 | struct file_operations fops = { | ||
| 205 | .open = openfunc, | ||
| 206 | .read = readstream, | ||
| 207 | .write = writestream, | ||
| 208 | }; | ||
| 209 | |||
| 210 | @ report_rw depends on report @ | ||
| 211 | identifier fops_rw.openfunc; | ||
| 212 | position p1; | ||
| 213 | @@ | ||
| 214 | openfunc(...) { | ||
| 215 | <... | ||
| 216 | nonseekable_open@p1 | ||
| 217 | ...> | ||
| 218 | } | ||
| 219 | |||
| 220 | @ script:python depends on report && reader_blocks @ | ||
| 221 | fops << fops0.fops; | ||
| 222 | p << report_rw.p1; | ||
| 223 | @@ | ||
| 224 | coccilib.report.print_report(p[0], | ||
| 225 | "ERROR: %s: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix." % (fops,)) | ||
| 226 | |||
| 227 | @ script:python depends on report && !reader_blocks @ | ||
| 228 | fops << fops0.fops; | ||
| 229 | p << report_rw.p1; | ||
| 230 | @@ | ||
| 231 | coccilib.report.print_report(p[0], | ||
| 232 | "WARNING: %s: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open." % (fops,)) | ||
| 233 | |||
| 234 | |||
| 235 | @ explain_rw_deadlocked depends on explain && reader_blocks @ | ||
| 236 | identifier fops_rw.openfunc; | ||
| 237 | @@ | ||
| 238 | openfunc(...) { | ||
| 239 | <... | ||
| 240 | - nonseekable_open | ||
| 241 | + nonseekable_open /* read & write (was deadlock) */ | ||
| 242 | ...> | ||
| 243 | } | ||
| 244 | |||
| 245 | |||
| 246 | @ explain_rw_nodeadlock depends on explain && !reader_blocks @ | ||
| 247 | identifier fops_rw.openfunc; | ||
| 248 | @@ | ||
| 249 | openfunc(...) { | ||
| 250 | <... | ||
| 251 | - nonseekable_open | ||
| 252 | + nonseekable_open /* read & write (no direct deadlock) */ | ||
| 253 | ...> | ||
| 254 | } | ||
| 255 | |||
| 256 | @ patch_rw depends on patch @ | ||
| 257 | identifier fops_rw.openfunc; | ||
| 258 | @@ | ||
| 259 | openfunc(...) { | ||
| 260 | <... | ||
| 261 | - nonseekable_open | ||
| 262 | + stream_open | ||
| 263 | ...> | ||
| 264 | } | ||
| 265 | |||
| 266 | |||
| 267 | // read, but not write | ||
| 268 | @ fops_r depends on maybe_stream && !has_write @ | ||
| 269 | identifier fops0.fops, openfunc; | ||
| 270 | identifier stream_reader.readstream; | ||
| 271 | @@ | ||
| 272 | struct file_operations fops = { | ||
| 273 | .open = openfunc, | ||
| 274 | .read = readstream, | ||
| 275 | }; | ||
| 276 | |||
| 277 | @ report_r depends on report @ | ||
| 278 | identifier fops_r.openfunc; | ||
| 279 | position p1; | ||
| 280 | @@ | ||
| 281 | openfunc(...) { | ||
| 282 | <... | ||
| 283 | nonseekable_open@p1 | ||
| 284 | ...> | ||
| 285 | } | ||
| 286 | |||
| 287 | @ script:python depends on report @ | ||
| 288 | fops << fops0.fops; | ||
| 289 | p << report_r.p1; | ||
| 290 | @@ | ||
| 291 | coccilib.report.print_report(p[0], | ||
| 292 | "WARNING: %s: .read() has stream semantic; safe to change nonseekable_open -> stream_open." % (fops,)) | ||
| 293 | |||
| 294 | @ explain_r depends on explain @ | ||
| 295 | identifier fops_r.openfunc; | ||
| 296 | @@ | ||
| 297 | openfunc(...) { | ||
| 298 | <... | ||
| 299 | - nonseekable_open | ||
| 300 | + nonseekable_open /* read only */ | ||
| 301 | ...> | ||
| 302 | } | ||
| 303 | |||
| 304 | @ patch_r depends on patch @ | ||
| 305 | identifier fops_r.openfunc; | ||
| 306 | @@ | ||
| 307 | openfunc(...) { | ||
| 308 | <... | ||
| 309 | - nonseekable_open | ||
| 310 | + stream_open | ||
| 311 | ...> | ||
| 312 | } | ||
| 313 | |||
| 314 | |||
| 315 | // write, but not read | ||
| 316 | @ fops_w depends on maybe_stream && !has_read @ | ||
| 317 | identifier fops0.fops, openfunc; | ||
| 318 | identifier stream_writer.writestream; | ||
| 319 | @@ | ||
| 320 | struct file_operations fops = { | ||
| 321 | .open = openfunc, | ||
| 322 | .write = writestream, | ||
| 323 | }; | ||
| 324 | |||
| 325 | @ report_w depends on report @ | ||
| 326 | identifier fops_w.openfunc; | ||
| 327 | position p1; | ||
| 328 | @@ | ||
| 329 | openfunc(...) { | ||
| 330 | <... | ||
| 331 | nonseekable_open@p1 | ||
| 332 | ...> | ||
| 333 | } | ||
| 334 | |||
| 335 | @ script:python depends on report @ | ||
| 336 | fops << fops0.fops; | ||
| 337 | p << report_w.p1; | ||
| 338 | @@ | ||
| 339 | coccilib.report.print_report(p[0], | ||
| 340 | "WARNING: %s: .write() has stream semantic; safe to change nonseekable_open -> stream_open." % (fops,)) | ||
| 341 | |||
| 342 | @ explain_w depends on explain @ | ||
| 343 | identifier fops_w.openfunc; | ||
| 344 | @@ | ||
| 345 | openfunc(...) { | ||
| 346 | <... | ||
| 347 | - nonseekable_open | ||
| 348 | + nonseekable_open /* write only */ | ||
| 349 | ...> | ||
| 350 | } | ||
| 351 | |||
| 352 | @ patch_w depends on patch @ | ||
| 353 | identifier fops_w.openfunc; | ||
| 354 | @@ | ||
| 355 | openfunc(...) { | ||
| 356 | <... | ||
| 357 | - nonseekable_open | ||
| 358 | + stream_open | ||
| 359 | ...> | ||
| 360 | } | ||
| 361 | |||
| 362 | |||
| 363 | // no read, no write - don't change anything | ||
diff --git a/scripts/coccinelle/free/put_device.cocci b/scripts/coccinelle/free/put_device.cocci index 7395697e7f19..c9f071b0a0ab 100644 --- a/scripts/coccinelle/free/put_device.cocci +++ b/scripts/coccinelle/free/put_device.cocci | |||
| @@ -32,6 +32,7 @@ if (id == NULL || ...) { ... return ...; } | |||
| 32 | ( id | 32 | ( id |
| 33 | | (T2)dev_get_drvdata(&id->dev) | 33 | | (T2)dev_get_drvdata(&id->dev) |
| 34 | | (T3)platform_get_drvdata(id) | 34 | | (T3)platform_get_drvdata(id) |
| 35 | | &id->dev | ||
| 35 | ); | 36 | ); |
| 36 | | return@p2 ...; | 37 | | return@p2 ...; |
| 37 | ) | 38 | ) |
diff --git a/scripts/coccinelle/misc/badty.cocci b/scripts/coccinelle/misc/badty.cocci index 481cf301ccfc..08470362199c 100644 --- a/scripts/coccinelle/misc/badty.cocci +++ b/scripts/coccinelle/misc/badty.cocci | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /// Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element | 1 | /// Correct the size argument to alloc functions |
| 2 | /// | 2 | /// |
| 3 | //# This makes an effort to find cases where the argument to sizeof is wrong | 3 | //# This makes an effort to find cases where the argument to sizeof is wrong |
| 4 | //# in memory allocation functions by checking the type of the allocated memory | 4 | //# in memory allocation functions by checking the type of the allocated memory |
diff --git a/scripts/gcc-plugins/Kconfig b/scripts/gcc-plugins/Kconfig index 74271dba4f94..80220ed26a35 100644 --- a/scripts/gcc-plugins/Kconfig +++ b/scripts/gcc-plugins/Kconfig | |||
| @@ -13,17 +13,19 @@ config HAVE_GCC_PLUGINS | |||
| 13 | An arch should select this symbol if it supports building with | 13 | An arch should select this symbol if it supports building with |
| 14 | GCC plugins. | 14 | GCC plugins. |
| 15 | 15 | ||
| 16 | menuconfig GCC_PLUGINS | 16 | config GCC_PLUGINS |
| 17 | bool "GCC plugins" | 17 | bool |
| 18 | depends on HAVE_GCC_PLUGINS | 18 | depends on HAVE_GCC_PLUGINS |
| 19 | depends on PLUGIN_HOSTCC != "" | 19 | depends on PLUGIN_HOSTCC != "" |
| 20 | default y | ||
| 20 | help | 21 | help |
| 21 | GCC plugins are loadable modules that provide extra features to the | 22 | GCC plugins are loadable modules that provide extra features to the |
| 22 | compiler. They are useful for runtime instrumentation and static analysis. | 23 | compiler. They are useful for runtime instrumentation and static analysis. |
| 23 | 24 | ||
| 24 | See Documentation/gcc-plugins.txt for details. | 25 | See Documentation/gcc-plugins.txt for details. |
| 25 | 26 | ||
| 26 | if GCC_PLUGINS | 27 | menu "GCC plugins" |
| 28 | depends on GCC_PLUGINS | ||
| 27 | 29 | ||
| 28 | config GCC_PLUGIN_CYC_COMPLEXITY | 30 | config GCC_PLUGIN_CYC_COMPLEXITY |
| 29 | bool "Compute the cyclomatic complexity of a function" if EXPERT | 31 | bool "Compute the cyclomatic complexity of a function" if EXPERT |
| @@ -66,71 +68,6 @@ config GCC_PLUGIN_LATENT_ENTROPY | |||
| 66 | * https://grsecurity.net/ | 68 | * https://grsecurity.net/ |
| 67 | * https://pax.grsecurity.net/ | 69 | * https://pax.grsecurity.net/ |
| 68 | 70 | ||
| 69 | config GCC_PLUGIN_STRUCTLEAK | ||
| 70 | bool "Zero initialize stack variables" | ||
| 71 | help | ||
| 72 | While the kernel is built with warnings enabled for any missed | ||
| 73 | stack variable initializations, this warning is silenced for | ||
| 74 | anything passed by reference to another function, under the | ||
| 75 | occasionally misguided assumption that the function will do | ||
| 76 | the initialization. As this regularly leads to exploitable | ||
| 77 | flaws, this plugin is available to identify and zero-initialize | ||
| 78 | such variables, depending on the chosen level of coverage. | ||
| 79 | |||
| 80 | This plugin was originally ported from grsecurity/PaX. More | ||
| 81 | information at: | ||
| 82 | * https://grsecurity.net/ | ||
| 83 | * https://pax.grsecurity.net/ | ||
| 84 | |||
| 85 | choice | ||
| 86 | prompt "Coverage" | ||
| 87 | depends on GCC_PLUGIN_STRUCTLEAK | ||
| 88 | default GCC_PLUGIN_STRUCTLEAK_BYREF_ALL | ||
| 89 | help | ||
| 90 | This chooses the level of coverage over classes of potentially | ||
| 91 | uninitialized variables. The selected class will be | ||
| 92 | zero-initialized before use. | ||
| 93 | |||
| 94 | config GCC_PLUGIN_STRUCTLEAK_USER | ||
| 95 | bool "structs marked for userspace" | ||
| 96 | help | ||
| 97 | Zero-initialize any structures on the stack containing | ||
| 98 | a __user attribute. This can prevent some classes of | ||
| 99 | uninitialized stack variable exploits and information | ||
| 100 | exposures, like CVE-2013-2141: | ||
| 101 | https://git.kernel.org/linus/b9e146d8eb3b9eca | ||
| 102 | |||
| 103 | config GCC_PLUGIN_STRUCTLEAK_BYREF | ||
| 104 | bool "structs passed by reference" | ||
| 105 | help | ||
| 106 | Zero-initialize any structures on the stack that may | ||
| 107 | be passed by reference and had not already been | ||
| 108 | explicitly initialized. This can prevent most classes | ||
| 109 | of uninitialized stack variable exploits and information | ||
| 110 | exposures, like CVE-2017-1000410: | ||
| 111 | https://git.kernel.org/linus/06e7e776ca4d3654 | ||
| 112 | |||
| 113 | config GCC_PLUGIN_STRUCTLEAK_BYREF_ALL | ||
| 114 | bool "anything passed by reference" | ||
| 115 | help | ||
| 116 | Zero-initialize any stack variables that may be passed | ||
| 117 | by reference and had not already been explicitly | ||
| 118 | initialized. This is intended to eliminate all classes | ||
| 119 | of uninitialized stack variable exploits and information | ||
| 120 | exposures. | ||
| 121 | |||
| 122 | endchoice | ||
| 123 | |||
| 124 | config GCC_PLUGIN_STRUCTLEAK_VERBOSE | ||
| 125 | bool "Report forcefully initialized variables" | ||
| 126 | depends on GCC_PLUGIN_STRUCTLEAK | ||
| 127 | depends on !COMPILE_TEST # too noisy | ||
| 128 | help | ||
| 129 | This option will cause a warning to be printed each time the | ||
| 130 | structleak plugin finds a variable it thinks needs to be | ||
| 131 | initialized. Since not all existing initializers are detected | ||
| 132 | by the plugin, this can produce false positive warnings. | ||
| 133 | |||
| 134 | config GCC_PLUGIN_RANDSTRUCT | 71 | config GCC_PLUGIN_RANDSTRUCT |
| 135 | bool "Randomize layout of sensitive kernel structures" | 72 | bool "Randomize layout of sensitive kernel structures" |
| 136 | select MODVERSIONS if MODULES | 73 | select MODVERSIONS if MODULES |
| @@ -171,59 +108,8 @@ config GCC_PLUGIN_RANDSTRUCT_PERFORMANCE | |||
| 171 | in structures. This reduces the performance hit of RANDSTRUCT | 108 | in structures. This reduces the performance hit of RANDSTRUCT |
| 172 | at the cost of weakened randomization. | 109 | at the cost of weakened randomization. |
| 173 | 110 | ||
| 174 | config GCC_PLUGIN_STACKLEAK | ||
| 175 | bool "Erase the kernel stack before returning from syscalls" | ||
| 176 | depends on GCC_PLUGINS | ||
| 177 | depends on HAVE_ARCH_STACKLEAK | ||
| 178 | help | ||
| 179 | This option makes the kernel erase the kernel stack before | ||
| 180 | returning from system calls. That reduces the information which | ||
| 181 | kernel stack leak bugs can reveal and blocks some uninitialized | ||
| 182 | stack variable attacks. | ||
| 183 | |||
| 184 | The tradeoff is the performance impact: on a single CPU system kernel | ||
| 185 | compilation sees a 1% slowdown, other systems and workloads may vary | ||
| 186 | and you are advised to test this feature on your expected workload | ||
| 187 | before deploying it. | ||
| 188 | |||
| 189 | This plugin was ported from grsecurity/PaX. More information at: | ||
| 190 | * https://grsecurity.net/ | ||
| 191 | * https://pax.grsecurity.net/ | ||
| 192 | |||
| 193 | config STACKLEAK_TRACK_MIN_SIZE | ||
| 194 | int "Minimum stack frame size of functions tracked by STACKLEAK" | ||
| 195 | default 100 | ||
| 196 | range 0 4096 | ||
| 197 | depends on GCC_PLUGIN_STACKLEAK | ||
| 198 | help | ||
| 199 | The STACKLEAK gcc plugin instruments the kernel code for tracking | ||
| 200 | the lowest border of the kernel stack (and for some other purposes). | ||
| 201 | It inserts the stackleak_track_stack() call for the functions with | ||
| 202 | a stack frame size greater than or equal to this parameter. | ||
| 203 | If unsure, leave the default value 100. | ||
| 204 | |||
| 205 | config STACKLEAK_METRICS | ||
| 206 | bool "Show STACKLEAK metrics in the /proc file system" | ||
| 207 | depends on GCC_PLUGIN_STACKLEAK | ||
| 208 | depends on PROC_FS | ||
| 209 | help | ||
| 210 | If this is set, STACKLEAK metrics for every task are available in | ||
| 211 | the /proc file system. In particular, /proc/<pid>/stack_depth | ||
| 212 | shows the maximum kernel stack consumption for the current and | ||
| 213 | previous syscalls. Although this information is not precise, it | ||
| 214 | can be useful for estimating the STACKLEAK performance impact for | ||
| 215 | your workloads. | ||
| 216 | |||
| 217 | config STACKLEAK_RUNTIME_DISABLE | ||
| 218 | bool "Allow runtime disabling of kernel stack erasing" | ||
| 219 | depends on GCC_PLUGIN_STACKLEAK | ||
| 220 | help | ||
| 221 | This option provides 'stack_erasing' sysctl, which can be used in | ||
| 222 | runtime to control kernel stack erasing for kernels built with | ||
| 223 | CONFIG_GCC_PLUGIN_STACKLEAK. | ||
| 224 | |||
| 225 | config GCC_PLUGIN_ARM_SSP_PER_TASK | 111 | config GCC_PLUGIN_ARM_SSP_PER_TASK |
| 226 | bool | 112 | bool |
| 227 | depends on GCC_PLUGINS && ARM | 113 | depends on GCC_PLUGINS && ARM |
| 228 | 114 | ||
| 229 | endif | 115 | endmenu |
diff --git a/scripts/kconfig/lxdialog/inputbox.c b/scripts/kconfig/lxdialog/inputbox.c index 611945611bf8..1dcfb288ee63 100644 --- a/scripts/kconfig/lxdialog/inputbox.c +++ b/scripts/kconfig/lxdialog/inputbox.c | |||
| @@ -113,7 +113,8 @@ do_resize: | |||
| 113 | case KEY_DOWN: | 113 | case KEY_DOWN: |
| 114 | break; | 114 | break; |
| 115 | case KEY_BACKSPACE: | 115 | case KEY_BACKSPACE: |
| 116 | case 127: | 116 | case 8: /* ^H */ |
| 117 | case 127: /* ^? */ | ||
| 117 | if (pos) { | 118 | if (pos) { |
| 118 | wattrset(dialog, dlg.inputbox.atr); | 119 | wattrset(dialog, dlg.inputbox.atr); |
| 119 | if (input_x == 0) { | 120 | if (input_x == 0) { |
diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c index a4670f4e825a..ac92c0ded6c5 100644 --- a/scripts/kconfig/nconf.c +++ b/scripts/kconfig/nconf.c | |||
| @@ -1048,7 +1048,7 @@ static int do_match(int key, struct match_state *state, int *ans) | |||
| 1048 | state->match_direction = FIND_NEXT_MATCH_UP; | 1048 | state->match_direction = FIND_NEXT_MATCH_UP; |
| 1049 | *ans = get_mext_match(state->pattern, | 1049 | *ans = get_mext_match(state->pattern, |
| 1050 | state->match_direction); | 1050 | state->match_direction); |
| 1051 | } else if (key == KEY_BACKSPACE || key == 127) { | 1051 | } else if (key == KEY_BACKSPACE || key == 8 || key == 127) { |
| 1052 | state->pattern[strlen(state->pattern)-1] = '\0'; | 1052 | state->pattern[strlen(state->pattern)-1] = '\0'; |
| 1053 | adj_match_dir(&state->match_direction); | 1053 | adj_match_dir(&state->match_direction); |
| 1054 | } else | 1054 | } else |
diff --git a/scripts/kconfig/nconf.gui.c b/scripts/kconfig/nconf.gui.c index 7be620a1fcdb..77f525a8617c 100644 --- a/scripts/kconfig/nconf.gui.c +++ b/scripts/kconfig/nconf.gui.c | |||
| @@ -439,7 +439,8 @@ int dialog_inputbox(WINDOW *main_window, | |||
| 439 | case KEY_F(F_EXIT): | 439 | case KEY_F(F_EXIT): |
| 440 | case KEY_F(F_BACK): | 440 | case KEY_F(F_BACK): |
| 441 | break; | 441 | break; |
| 442 | case 127: | 442 | case 8: /* ^H */ |
| 443 | case 127: /* ^? */ | ||
| 443 | case KEY_BACKSPACE: | 444 | case KEY_BACKSPACE: |
| 444 | if (cursor_position > 0) { | 445 | if (cursor_position > 0) { |
| 445 | memmove(&result[cursor_position-1], | 446 | memmove(&result[cursor_position-1], |
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh index dc0e8c5a1402..e3c06b9482a2 100755 --- a/scripts/link-vmlinux.sh +++ b/scripts/link-vmlinux.sh | |||
| @@ -35,7 +35,7 @@ set -e | |||
| 35 | info() | 35 | info() |
| 36 | { | 36 | { |
| 37 | if [ "${quiet}" != "silent_" ]; then | 37 | if [ "${quiet}" != "silent_" ]; then |
| 38 | printf " %-7s %s\n" ${1} ${2} | 38 | printf " %-7s %s\n" "${1}" "${2}" |
| 39 | fi | 39 | fi |
| 40 | } | 40 | } |
| 41 | 41 | ||
| @@ -91,6 +91,25 @@ vmlinux_link() | |||
| 91 | fi | 91 | fi |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | # generate .BTF typeinfo from DWARF debuginfo | ||
| 95 | gen_btf() | ||
| 96 | { | ||
| 97 | local pahole_ver; | ||
| 98 | |||
| 99 | if ! [ -x "$(command -v ${PAHOLE})" ]; then | ||
| 100 | info "BTF" "${1}: pahole (${PAHOLE}) is not available" | ||
| 101 | return 0 | ||
| 102 | fi | ||
| 103 | |||
| 104 | pahole_ver=$(${PAHOLE} --version | sed -E 's/v([0-9]+)\.([0-9]+)/\1\2/') | ||
| 105 | if [ "${pahole_ver}" -lt "113" ]; then | ||
| 106 | info "BTF" "${1}: pahole version $(${PAHOLE} --version) is too old, need at least v1.13" | ||
| 107 | return 0 | ||
| 108 | fi | ||
| 109 | |||
| 110 | info "BTF" ${1} | ||
| 111 | LLVM_OBJCOPY=${OBJCOPY} ${PAHOLE} -J ${1} | ||
| 112 | } | ||
| 94 | 113 | ||
| 95 | # Create ${2} .o file with all symbols from the ${1} object file | 114 | # Create ${2} .o file with all symbols from the ${1} object file |
| 96 | kallsyms() | 115 | kallsyms() |
| @@ -248,6 +267,10 @@ fi | |||
| 248 | info LD vmlinux | 267 | info LD vmlinux |
| 249 | vmlinux_link "${kallsymso}" vmlinux | 268 | vmlinux_link "${kallsymso}" vmlinux |
| 250 | 269 | ||
| 270 | if [ -n "${CONFIG_DEBUG_INFO_BTF}" ]; then | ||
| 271 | gen_btf vmlinux | ||
| 272 | fi | ||
| 273 | |||
| 251 | if [ -n "${CONFIG_BUILDTIME_EXTABLE_SORT}" ]; then | 274 | if [ -n "${CONFIG_BUILDTIME_EXTABLE_SORT}" ]; then |
| 252 | info SORTEX vmlinux | 275 | info SORTEX vmlinux |
| 253 | sortextable vmlinux | 276 | sortextable vmlinux |
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 0b0d1080b1c5..f277e116e0eb 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
| @@ -639,7 +639,7 @@ static void handle_modversions(struct module *mod, struct elf_info *info, | |||
| 639 | info->sechdrs[sym->st_shndx].sh_offset - | 639 | info->sechdrs[sym->st_shndx].sh_offset - |
| 640 | (info->hdr->e_type != ET_REL ? | 640 | (info->hdr->e_type != ET_REL ? |
| 641 | info->sechdrs[sym->st_shndx].sh_addr : 0); | 641 | info->sechdrs[sym->st_shndx].sh_addr : 0); |
| 642 | crc = *crcp; | 642 | crc = TO_NATIVE(*crcp); |
| 643 | } | 643 | } |
| 644 | sym_update_crc(symname + strlen("__crc_"), mod, crc, | 644 | sym_update_crc(symname + strlen("__crc_"), mod, crc, |
| 645 | export); | 645 | export); |
diff --git a/scripts/selinux/genheaders/genheaders.c b/scripts/selinux/genheaders/genheaders.c index 1ceedea847dd..544ca126a8a8 100644 --- a/scripts/selinux/genheaders/genheaders.c +++ b/scripts/selinux/genheaders/genheaders.c | |||
| @@ -9,7 +9,6 @@ | |||
| 9 | #include <string.h> | 9 | #include <string.h> |
| 10 | #include <errno.h> | 10 | #include <errno.h> |
| 11 | #include <ctype.h> | 11 | #include <ctype.h> |
| 12 | #include <sys/socket.h> | ||
| 13 | 12 | ||
| 14 | struct security_class_mapping { | 13 | struct security_class_mapping { |
| 15 | const char *name; | 14 | const char *name; |
diff --git a/scripts/selinux/install_policy.sh b/scripts/selinux/install_policy.sh index 0b86c47baf7d..2dccf141241d 100755 --- a/scripts/selinux/install_policy.sh +++ b/scripts/selinux/install_policy.sh | |||
| @@ -1,30 +1,61 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | # SPDX-License-Identifier: GPL-2.0 | 2 | # SPDX-License-Identifier: GPL-2.0 |
| 3 | set -e | ||
| 3 | if [ `id -u` -ne 0 ]; then | 4 | if [ `id -u` -ne 0 ]; then |
| 4 | echo "$0: must be root to install the selinux policy" | 5 | echo "$0: must be root to install the selinux policy" |
| 5 | exit 1 | 6 | exit 1 |
| 6 | fi | 7 | fi |
| 8 | |||
| 7 | SF=`which setfiles` | 9 | SF=`which setfiles` |
| 8 | if [ $? -eq 1 ]; then | 10 | if [ $? -eq 1 ]; then |
| 9 | if [ -f /sbin/setfiles ]; then | 11 | echo "Could not find setfiles" |
| 10 | SF="/usr/setfiles" | 12 | echo "Do you have policycoreutils installed?" |
| 11 | else | 13 | exit 1 |
| 12 | echo "no selinux tools installed: setfiles" | ||
| 13 | exit 1 | ||
| 14 | fi | ||
| 15 | fi | 14 | fi |
| 16 | 15 | ||
| 17 | cd mdp | ||
| 18 | |||
| 19 | CP=`which checkpolicy` | 16 | CP=`which checkpolicy` |
| 17 | if [ $? -eq 1 ]; then | ||
| 18 | echo "Could not find checkpolicy" | ||
| 19 | echo "Do you have checkpolicy installed?" | ||
| 20 | exit 1 | ||
| 21 | fi | ||
| 20 | VERS=`$CP -V | awk '{print $1}'` | 22 | VERS=`$CP -V | awk '{print $1}'` |
| 21 | 23 | ||
| 22 | ./mdp policy.conf file_contexts | 24 | ENABLED=`which selinuxenabled` |
| 23 | $CP -o policy.$VERS policy.conf | 25 | if [ $? -eq 1 ]; then |
| 26 | echo "Could not find selinuxenabled" | ||
| 27 | echo "Do you have libselinux-utils installed?" | ||
| 28 | exit 1 | ||
| 29 | fi | ||
| 30 | |||
| 31 | if selinuxenabled; then | ||
| 32 | echo "SELinux is already enabled" | ||
| 33 | echo "This prevents safely relabeling all files." | ||
| 34 | echo "Boot with selinux=0 on the kernel command-line or" | ||
| 35 | echo "SELINUX=disabled in /etc/selinux/config." | ||
| 36 | exit 1 | ||
| 37 | fi | ||
| 38 | |||
| 39 | cd mdp | ||
| 40 | ./mdp -m policy.conf file_contexts | ||
| 41 | $CP -U allow -M -o policy.$VERS policy.conf | ||
| 24 | 42 | ||
| 25 | mkdir -p /etc/selinux/dummy/policy | 43 | mkdir -p /etc/selinux/dummy/policy |
| 26 | mkdir -p /etc/selinux/dummy/contexts/files | 44 | mkdir -p /etc/selinux/dummy/contexts/files |
| 27 | 45 | ||
| 46 | echo "__default__:user_u:s0" > /etc/selinux/dummy/seusers | ||
| 47 | echo "base_r:base_t:s0" > /etc/selinux/dummy/contexts/failsafe_context | ||
| 48 | echo "base_r:base_t:s0 base_r:base_t:s0" > /etc/selinux/dummy/default_contexts | ||
| 49 | cat > /etc/selinux/dummy/contexts/x_contexts <<EOF | ||
| 50 | client * user_u:base_r:base_t:s0 | ||
| 51 | property * user_u:object_r:base_t:s0 | ||
| 52 | extension * user_u:object_r:base_t:s0 | ||
| 53 | selection * user_u:object_r:base_t:s0 | ||
| 54 | event * user_u:object_r:base_t:s0 | ||
| 55 | EOF | ||
| 56 | touch /etc/selinux/dummy/contexts/virtual_domain_context | ||
| 57 | touch /etc/selinux/dummy/contexts/virtual_image_context | ||
| 58 | |||
| 28 | cp file_contexts /etc/selinux/dummy/contexts/files | 59 | cp file_contexts /etc/selinux/dummy/contexts/files |
| 29 | cp dbus_contexts /etc/selinux/dummy/contexts | 60 | cp dbus_contexts /etc/selinux/dummy/contexts |
| 30 | cp policy.$VERS /etc/selinux/dummy/policy | 61 | cp policy.$VERS /etc/selinux/dummy/policy |
| @@ -33,37 +64,22 @@ FC_FILE=/etc/selinux/dummy/contexts/files/file_contexts | |||
| 33 | if [ ! -d /etc/selinux ]; then | 64 | if [ ! -d /etc/selinux ]; then |
| 34 | mkdir -p /etc/selinux | 65 | mkdir -p /etc/selinux |
| 35 | fi | 66 | fi |
| 36 | if [ ! -f /etc/selinux/config ]; then | 67 | if [ -f /etc/selinux/config ]; then |
| 37 | cat > /etc/selinux/config << EOF | 68 | echo "/etc/selinux/config exists, moving to /etc/selinux/config.bak." |
| 38 | SELINUX=enforcing | 69 | mv /etc/selinux/config /etc/selinux/config.bak |
| 70 | fi | ||
| 71 | echo "Creating new /etc/selinux/config for dummy policy." | ||
| 72 | cat > /etc/selinux/config << EOF | ||
| 73 | SELINUX=permissive | ||
| 39 | SELINUXTYPE=dummy | 74 | SELINUXTYPE=dummy |
| 40 | EOF | 75 | EOF |
| 41 | else | ||
| 42 | TYPE=`cat /etc/selinux/config | grep "^SELINUXTYPE" | tail -1 | awk -F= '{ print $2 '}` | ||
| 43 | if [ "eq$TYPE" != "eqdummy" ]; then | ||
| 44 | selinuxenabled | ||
| 45 | if [ $? -eq 0 ]; then | ||
| 46 | echo "SELinux already enabled with a non-dummy policy." | ||
| 47 | echo "Exiting. Please install policy by hand if that" | ||
| 48 | echo "is what you REALLY want." | ||
| 49 | exit 1 | ||
| 50 | fi | ||
| 51 | mv /etc/selinux/config /etc/selinux/config.mdpbak | ||
| 52 | grep -v "^SELINUXTYPE" /etc/selinux/config.mdpbak >> /etc/selinux/config | ||
| 53 | echo "SELINUXTYPE=dummy" >> /etc/selinux/config | ||
| 54 | fi | ||
| 55 | fi | ||
| 56 | 76 | ||
| 57 | cd /etc/selinux/dummy/contexts/files | 77 | cd /etc/selinux/dummy/contexts/files |
| 58 | $SF file_contexts / | 78 | $SF -F file_contexts / |
| 59 | 79 | ||
| 60 | mounts=`cat /proc/$$/mounts | egrep "ext2|ext3|xfs|jfs|ext4|ext4dev|gfs2" | awk '{ print $2 '}` | 80 | mounts=`cat /proc/$$/mounts | \ |
| 61 | $SF file_contexts $mounts | 81 | egrep "ext[234]|jfs|xfs|reiserfs|jffs2|gfs2|btrfs|f2fs|ocfs2" | \ |
| 82 | awk '{ print $2 '}` | ||
| 83 | $SF -F file_contexts $mounts | ||
| 62 | 84 | ||
| 63 | 85 | echo "-F" > /.autorelabel | |
| 64 | dodev=`cat /proc/$$/mounts | grep "/dev "` | ||
| 65 | if [ "eq$dodev" != "eq" ]; then | ||
| 66 | mount --move /dev /mnt | ||
| 67 | $SF file_contexts /dev | ||
| 68 | mount --move /mnt /dev | ||
| 69 | fi | ||
diff --git a/scripts/selinux/mdp/Makefile b/scripts/selinux/mdp/Makefile index e9c92db7e2a3..8a1269a9d0ba 100644 --- a/scripts/selinux/mdp/Makefile +++ b/scripts/selinux/mdp/Makefile | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | hostprogs-y := mdp | 2 | hostprogs-y := mdp |
| 3 | HOST_EXTRACFLAGS += \ | 3 | HOST_EXTRACFLAGS += \ |
| 4 | -I$(srctree)/include/uapi -I$(srctree)/include \ | 4 | -I$(srctree)/include/uapi -I$(srctree)/include \ |
| 5 | -I$(srctree)/security/selinux/include | 5 | -I$(srctree)/security/selinux/include -I$(objtree)/include |
| 6 | 6 | ||
| 7 | always := $(hostprogs-y) | 7 | always := $(hostprogs-y) |
| 8 | clean-files := policy.* file_contexts | 8 | clean-files := policy.* file_contexts |
diff --git a/scripts/selinux/mdp/mdp.c b/scripts/selinux/mdp/mdp.c index 073fe7537f6c..18fd6143888b 100644 --- a/scripts/selinux/mdp/mdp.c +++ b/scripts/selinux/mdp/mdp.c | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | #include <stdlib.h> | 32 | #include <stdlib.h> |
| 33 | #include <unistd.h> | 33 | #include <unistd.h> |
| 34 | #include <string.h> | 34 | #include <string.h> |
| 35 | #include <sys/socket.h> | 35 | #include <linux/kconfig.h> |
| 36 | 36 | ||
| 37 | static void usage(char *name) | 37 | static void usage(char *name) |
| 38 | { | 38 | { |
| @@ -95,10 +95,31 @@ int main(int argc, char *argv[]) | |||
| 95 | } | 95 | } |
| 96 | fprintf(fout, "\n"); | 96 | fprintf(fout, "\n"); |
| 97 | 97 | ||
| 98 | /* NOW PRINT OUT MLS STUFF */ | 98 | /* print out mls declarations and constraints */ |
| 99 | if (mls) { | 99 | if (mls) { |
| 100 | printf("MLS not yet implemented\n"); | 100 | fprintf(fout, "sensitivity s0;\n"); |
| 101 | exit(1); | 101 | fprintf(fout, "sensitivity s1;\n"); |
| 102 | fprintf(fout, "dominance { s0 s1 }\n"); | ||
| 103 | fprintf(fout, "category c0;\n"); | ||
| 104 | fprintf(fout, "category c1;\n"); | ||
| 105 | fprintf(fout, "level s0:c0.c1;\n"); | ||
| 106 | fprintf(fout, "level s1:c0.c1;\n"); | ||
| 107 | #define SYSTEMLOW "s0" | ||
| 108 | #define SYSTEMHIGH "s1:c0.c1" | ||
| 109 | for (i = 0; secclass_map[i].name; i++) { | ||
| 110 | struct security_class_mapping *map = &secclass_map[i]; | ||
| 111 | |||
| 112 | fprintf(fout, "mlsconstrain %s {\n", map->name); | ||
| 113 | for (j = 0; map->perms[j]; j++) | ||
| 114 | fprintf(fout, "\t%s\n", map->perms[j]); | ||
| 115 | /* | ||
| 116 | * This requires all subjects and objects to be | ||
| 117 | * single-level (l2 eq h2), and that the subject | ||
| 118 | * level dominate the object level (h1 dom h2) | ||
| 119 | * in order to have any permissions to it. | ||
| 120 | */ | ||
| 121 | fprintf(fout, "} (l2 eq h2 and h1 dom h2);\n\n"); | ||
| 122 | } | ||
| 102 | } | 123 | } |
| 103 | 124 | ||
| 104 | /* types, roles, and allows */ | 125 | /* types, roles, and allows */ |
| @@ -108,34 +129,127 @@ int main(int argc, char *argv[]) | |||
| 108 | for (i = 0; secclass_map[i].name; i++) | 129 | for (i = 0; secclass_map[i].name; i++) |
| 109 | fprintf(fout, "allow base_t base_t:%s *;\n", | 130 | fprintf(fout, "allow base_t base_t:%s *;\n", |
| 110 | secclass_map[i].name); | 131 | secclass_map[i].name); |
| 111 | fprintf(fout, "user user_u roles { base_r };\n"); | 132 | fprintf(fout, "user user_u roles { base_r }"); |
| 112 | fprintf(fout, "\n"); | 133 | if (mls) |
| 134 | fprintf(fout, " level %s range %s - %s", SYSTEMLOW, | ||
| 135 | SYSTEMLOW, SYSTEMHIGH); | ||
| 136 | fprintf(fout, ";\n"); | ||
| 137 | |||
| 138 | #define SUBJUSERROLETYPE "user_u:base_r:base_t" | ||
| 139 | #define OBJUSERROLETYPE "user_u:object_r:base_t" | ||
| 113 | 140 | ||
| 114 | /* default sids */ | 141 | /* default sids */ |
| 115 | for (i = 1; i < initial_sid_to_string_len; i++) | 142 | for (i = 1; i < initial_sid_to_string_len; i++) |
| 116 | fprintf(fout, "sid %s user_u:base_r:base_t\n", initial_sid_to_string[i]); | 143 | fprintf(fout, "sid %s " SUBJUSERROLETYPE "%s\n", |
| 144 | initial_sid_to_string[i], mls ? ":" SYSTEMLOW : ""); | ||
| 117 | fprintf(fout, "\n"); | 145 | fprintf(fout, "\n"); |
| 118 | 146 | ||
| 119 | fprintf(fout, "fs_use_xattr ext2 user_u:base_r:base_t;\n"); | 147 | #define FS_USE(behavior, fstype) \ |
| 120 | fprintf(fout, "fs_use_xattr ext3 user_u:base_r:base_t;\n"); | 148 | fprintf(fout, "fs_use_%s %s " OBJUSERROLETYPE "%s;\n", \ |
| 121 | fprintf(fout, "fs_use_xattr ext4 user_u:base_r:base_t;\n"); | 149 | behavior, fstype, mls ? ":" SYSTEMLOW : "") |
| 122 | fprintf(fout, "fs_use_xattr jfs user_u:base_r:base_t;\n"); | 150 | |
| 123 | fprintf(fout, "fs_use_xattr xfs user_u:base_r:base_t;\n"); | 151 | /* |
| 124 | fprintf(fout, "fs_use_xattr reiserfs user_u:base_r:base_t;\n"); | 152 | * Filesystems whose inode labels can be fetched via getxattr. |
| 125 | fprintf(fout, "fs_use_xattr jffs2 user_u:base_r:base_t;\n"); | 153 | */ |
| 126 | fprintf(fout, "fs_use_xattr gfs2 user_u:base_r:base_t;\n"); | 154 | #ifdef CONFIG_EXT2_FS_SECURITY |
| 155 | FS_USE("xattr", "ext2"); | ||
| 156 | #endif | ||
| 157 | #ifdef CONFIG_EXT4_FS_SECURITY | ||
| 158 | #ifdef CONFIG_EXT4_USE_FOR_EXT2 | ||
| 159 | FS_USE("xattr", "ext2"); | ||
| 160 | #endif | ||
| 161 | FS_USE("xattr", "ext3"); | ||
| 162 | FS_USE("xattr", "ext4"); | ||
| 163 | #endif | ||
| 164 | #ifdef CONFIG_JFS_SECURITY | ||
| 165 | FS_USE("xattr", "jfs"); | ||
| 166 | #endif | ||
| 167 | #ifdef CONFIG_REISERFS_FS_SECURITY | ||
| 168 | FS_USE("xattr", "reiserfs"); | ||
| 169 | #endif | ||
| 170 | #ifdef CONFIG_JFFS2_FS_SECURITY | ||
| 171 | FS_USE("xattr", "jffs2"); | ||
| 172 | #endif | ||
| 173 | #ifdef CONFIG_XFS_FS | ||
| 174 | FS_USE("xattr", "xfs"); | ||
| 175 | #endif | ||
| 176 | #ifdef CONFIG_GFS2_FS | ||
| 177 | FS_USE("xattr", "gfs2"); | ||
| 178 | #endif | ||
| 179 | #ifdef CONFIG_BTRFS_FS | ||
| 180 | FS_USE("xattr", "btrfs"); | ||
| 181 | #endif | ||
| 182 | #ifdef CONFIG_F2FS_FS_SECURITY | ||
| 183 | FS_USE("xattr", "f2fs"); | ||
| 184 | #endif | ||
| 185 | #ifdef CONFIG_OCFS2_FS | ||
| 186 | FS_USE("xattr", "ocsfs2"); | ||
| 187 | #endif | ||
| 188 | #ifdef CONFIG_OVERLAY_FS | ||
| 189 | FS_USE("xattr", "overlay"); | ||
| 190 | #endif | ||
| 191 | #ifdef CONFIG_SQUASHFS_XATTR | ||
| 192 | FS_USE("xattr", "squashfs"); | ||
| 193 | #endif | ||
| 194 | |||
| 195 | /* | ||
| 196 | * Filesystems whose inodes are labeled from allocating task. | ||
| 197 | */ | ||
| 198 | FS_USE("task", "pipefs"); | ||
| 199 | FS_USE("task", "sockfs"); | ||
| 127 | 200 | ||
| 128 | fprintf(fout, "fs_use_task eventpollfs user_u:base_r:base_t;\n"); | 201 | /* |
| 129 | fprintf(fout, "fs_use_task pipefs user_u:base_r:base_t;\n"); | 202 | * Filesystems whose inode labels are computed from both |
| 130 | fprintf(fout, "fs_use_task sockfs user_u:base_r:base_t;\n"); | 203 | * the allocating task and the superblock label. |
| 204 | */ | ||
| 205 | #ifdef CONFIG_UNIX98_PTYS | ||
| 206 | FS_USE("trans", "devpts"); | ||
| 207 | #endif | ||
| 208 | #ifdef CONFIG_HUGETLBFS | ||
| 209 | FS_USE("trans", "hugetlbfs"); | ||
| 210 | #endif | ||
| 211 | #ifdef CONFIG_TMPFS | ||
| 212 | FS_USE("trans", "tmpfs"); | ||
| 213 | #endif | ||
| 214 | #ifdef CONFIG_DEVTMPFS | ||
| 215 | FS_USE("trans", "devtmpfs"); | ||
| 216 | #endif | ||
| 217 | #ifdef CONFIG_POSIX_MQUEUE | ||
| 218 | FS_USE("trans", "mqueue"); | ||
| 219 | #endif | ||
| 131 | 220 | ||
| 132 | fprintf(fout, "fs_use_trans mqueue user_u:base_r:base_t;\n"); | 221 | #define GENFSCON(fstype, prefix) \ |
| 133 | fprintf(fout, "fs_use_trans devpts user_u:base_r:base_t;\n"); | 222 | fprintf(fout, "genfscon %s %s " OBJUSERROLETYPE "%s\n", \ |
| 134 | fprintf(fout, "fs_use_trans hugetlbfs user_u:base_r:base_t;\n"); | 223 | fstype, prefix, mls ? ":" SYSTEMLOW : "") |
| 135 | fprintf(fout, "fs_use_trans tmpfs user_u:base_r:base_t;\n"); | ||
| 136 | fprintf(fout, "fs_use_trans shm user_u:base_r:base_t;\n"); | ||
| 137 | 224 | ||
| 138 | fprintf(fout, "genfscon proc / user_u:base_r:base_t\n"); | 225 | /* |
| 226 | * Filesystems whose inodes are labeled from path prefix match | ||
| 227 | * relative to the filesystem root. Depending on the filesystem, | ||
| 228 | * only a single label for all inodes may be supported. Here | ||
| 229 | * we list the filesystem types for which per-file labeling is | ||
| 230 | * supported using genfscon; any other filesystem type can also | ||
| 231 | * be added by only with a single entry for all of its inodes. | ||
| 232 | */ | ||
| 233 | #ifdef CONFIG_PROC_FS | ||
| 234 | GENFSCON("proc", "/"); | ||
| 235 | #endif | ||
| 236 | #ifdef CONFIG_SECURITY_SELINUX | ||
| 237 | GENFSCON("selinuxfs", "/"); | ||
| 238 | #endif | ||
| 239 | #ifdef CONFIG_SYSFS | ||
| 240 | GENFSCON("sysfs", "/"); | ||
| 241 | #endif | ||
| 242 | #ifdef CONFIG_DEBUG_FS | ||
| 243 | GENFSCON("debugfs", "/"); | ||
| 244 | #endif | ||
| 245 | #ifdef CONFIG_TRACING | ||
| 246 | GENFSCON("tracefs", "/"); | ||
| 247 | #endif | ||
| 248 | #ifdef CONFIG_PSTORE | ||
| 249 | GENFSCON("pstore", "/"); | ||
| 250 | #endif | ||
| 251 | GENFSCON("cgroup", "/"); | ||
| 252 | GENFSCON("cgroup2", "/"); | ||
| 139 | 253 | ||
| 140 | fclose(fout); | 254 | fclose(fout); |
| 141 | 255 | ||
| @@ -144,8 +258,8 @@ int main(int argc, char *argv[]) | |||
| 144 | printf("Wrote policy, but cannot open %s for writing\n", ctxout); | 258 | printf("Wrote policy, but cannot open %s for writing\n", ctxout); |
| 145 | usage(argv[0]); | 259 | usage(argv[0]); |
| 146 | } | 260 | } |
| 147 | fprintf(fout, "/ user_u:base_r:base_t\n"); | 261 | fprintf(fout, "/ " OBJUSERROLETYPE "%s\n", mls ? ":" SYSTEMLOW : ""); |
| 148 | fprintf(fout, "/.* user_u:base_r:base_t\n"); | 262 | fprintf(fout, "/.* " OBJUSERROLETYPE "%s\n", mls ? ":" SYSTEMLOW : ""); |
| 149 | fclose(fout); | 263 | fclose(fout); |
| 150 | 264 | ||
| 151 | return 0; | 265 | return 0; |
