Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Base unit test (KUnit) API.
  4 *
  5 * Copyright (C) 2019, Google LLC.
  6 * Author: Brendan Higgins <brendanhiggins@google.com>
  7 */
  8
  9#include <kunit/resource.h>
 10#include <kunit/test.h>
 11#include <kunit/test-bug.h>
 12#include <kunit/attributes.h>
 13#include <linux/kernel.h>
 14#include <linux/module.h>
 15#include <linux/moduleparam.h>
 16#include <linux/mutex.h>
 17#include <linux/panic.h>
 18#include <linux/sched/debug.h>
 19#include <linux/sched.h>
 20#include <linux/mm.h>
 21
 22#include "debugfs.h"
 23#include "device-impl.h"
 24#include "hooks-impl.h"
 25#include "string-stream.h"
 26#include "try-catch-impl.h"
 27
 28static DEFINE_MUTEX(kunit_run_lock);
 29
 30/*
 31 * Hook to fail the current test and print an error message to the log.
 32 */
 33void __printf(3, 4) __kunit_fail_current_test_impl(const char *file, int line, const char *fmt, ...)
 34{
 35	va_list args;
 36	int len;
 37	char *buffer;
 38
 39	if (!current->kunit_test)
 40		return;
 41
 42	kunit_set_failure(current->kunit_test);
 43
 44	/* kunit_err() only accepts literals, so evaluate the args first. */
 45	va_start(args, fmt);
 46	len = vsnprintf(NULL, 0, fmt, args) + 1;
 47	va_end(args);
 48
 49	buffer = kunit_kmalloc(current->kunit_test, len, GFP_KERNEL);
 50	if (!buffer)
 51		return;
 52
 53	va_start(args, fmt);
 54	vsnprintf(buffer, len, fmt, args);
 55	va_end(args);
 56
 57	kunit_err(current->kunit_test, "%s:%d: %s", file, line, buffer);
 58	kunit_kfree(current->kunit_test, buffer);
 59}
 60
 61/*
 62 * Enable KUnit tests to run.
 63 */
 64#ifdef CONFIG_KUNIT_DEFAULT_ENABLED
 65static bool enable_param = true;
 66#else
 67static bool enable_param;
 68#endif
 69module_param_named(enable, enable_param, bool, 0);
 70MODULE_PARM_DESC(enable, "Enable KUnit tests");
 71
 72/*
 73 * KUnit statistic mode:
 74 * 0 - disabled
 75 * 1 - only when there is more than one subtest
 76 * 2 - enabled
 77 */
 78static int kunit_stats_enabled = 1;
 79module_param_named(stats_enabled, kunit_stats_enabled, int, 0644);
 80MODULE_PARM_DESC(stats_enabled,
 81		  "Print test stats: never (0), only for multiple subtests (1), or always (2)");
 82
 83struct kunit_result_stats {
 84	unsigned long passed;
 85	unsigned long skipped;
 86	unsigned long failed;
 87	unsigned long total;
 88};
 89
 90static bool kunit_should_print_stats(struct kunit_result_stats stats)
 91{
 92	if (kunit_stats_enabled == 0)
 93		return false;
 94
 95	if (kunit_stats_enabled == 2)
 96		return true;
 97
 98	return (stats.total > 1);
 99}
100
101static void kunit_print_test_stats(struct kunit *test,
102				   struct kunit_result_stats stats)
103{
104	if (!kunit_should_print_stats(stats))
105		return;
106
107	kunit_log(KERN_INFO, test,
108		  KUNIT_SUBTEST_INDENT
109		  "# %s: pass:%lu fail:%lu skip:%lu total:%lu",
110		  test->name,
111		  stats.passed,
112		  stats.failed,
113		  stats.skipped,
114		  stats.total);
115}
116
117/* Append formatted message to log. */
118void kunit_log_append(struct string_stream *log, const char *fmt, ...)
119{
 
120	va_list args;
 
121
122	if (!log)
123		return;
124
 
 
 
 
125	va_start(args, fmt);
126	string_stream_vadd(log, fmt, args);
127	va_end(args);
 
 
128}
129EXPORT_SYMBOL_GPL(kunit_log_append);
130
131size_t kunit_suite_num_test_cases(struct kunit_suite *suite)
132{
133	struct kunit_case *test_case;
134	size_t len = 0;
135
136	kunit_suite_for_each_test_case(suite, test_case)
137		len++;
138
139	return len;
140}
141EXPORT_SYMBOL_GPL(kunit_suite_num_test_cases);
142
143/* Currently supported test levels */
144enum {
145	KUNIT_LEVEL_SUITE = 0,
146	KUNIT_LEVEL_CASE,
147	KUNIT_LEVEL_CASE_PARAM,
148};
149
150static void kunit_print_suite_start(struct kunit_suite *suite)
151{
152	/*
153	 * We do not log the test suite header as doing so would
154	 * mean debugfs display would consist of the test suite
155	 * header prior to individual test results.
156	 * Hence directly printk the suite status, and we will
157	 * separately seq_printf() the suite header for the debugfs
158	 * representation.
159	 */
160	pr_info(KUNIT_SUBTEST_INDENT "KTAP version 1\n");
161	pr_info(KUNIT_SUBTEST_INDENT "# Subtest: %s\n",
162		  suite->name);
163	kunit_print_attr((void *)suite, false, KUNIT_LEVEL_CASE);
164	pr_info(KUNIT_SUBTEST_INDENT "1..%zd\n",
165		  kunit_suite_num_test_cases(suite));
166}
167
168static void kunit_print_ok_not_ok(struct kunit *test,
169				  unsigned int test_level,
170				  enum kunit_status status,
171				  size_t test_number,
172				  const char *description,
173				  const char *directive)
174{
 
 
175	const char *directive_header = (status == KUNIT_SKIPPED) ? " # SKIP " : "";
176	const char *directive_body = (status == KUNIT_SKIPPED) ? directive : "";
177
178	/*
179	 * When test is NULL assume that results are from the suite
180	 * and today suite results are expected at level 0 only.
181	 */
182	WARN(!test && test_level, "suite test level can't be %u!\n", test_level);
183
184	/*
185	 * We do not log the test suite results as doing so would
186	 * mean debugfs display would consist of an incorrect test
187	 * number. Hence directly printk the suite result, and we will
188	 * separately seq_printf() the suite results for the debugfs
 
189	 * representation.
190	 */
191	if (!test)
192		pr_info("%s %zd %s%s%s\n",
193			kunit_status_to_ok_not_ok(status),
194			test_number, description, directive_header,
195			directive_body);
196	else
197		kunit_log(KERN_INFO, test,
198			  "%*s%s %zd %s%s%s",
199			  KUNIT_INDENT_LEN * test_level, "",
200			  kunit_status_to_ok_not_ok(status),
201			  test_number, description, directive_header,
202			  directive_body);
203}
204
205enum kunit_status kunit_suite_has_succeeded(struct kunit_suite *suite)
206{
207	const struct kunit_case *test_case;
208	enum kunit_status status = KUNIT_SKIPPED;
209
210	if (suite->suite_init_err)
211		return KUNIT_FAILURE;
212
213	kunit_suite_for_each_test_case(suite, test_case) {
214		if (test_case->status == KUNIT_FAILURE)
215			return KUNIT_FAILURE;
216		else if (test_case->status == KUNIT_SUCCESS)
217			status = KUNIT_SUCCESS;
218	}
219
220	return status;
221}
222EXPORT_SYMBOL_GPL(kunit_suite_has_succeeded);
223
224static size_t kunit_suite_counter = 1;
225
226static void kunit_print_suite_end(struct kunit_suite *suite)
227{
228	kunit_print_ok_not_ok(NULL, KUNIT_LEVEL_SUITE,
 
 
229			      kunit_suite_has_succeeded(suite),
230			      kunit_suite_counter++,
231			      suite->name,
232			      suite->status_comment);
233}
234
235unsigned int kunit_test_case_num(struct kunit_suite *suite,
236				 struct kunit_case *test_case)
237{
238	struct kunit_case *tc;
239	unsigned int i = 1;
240
241	kunit_suite_for_each_test_case(suite, tc) {
242		if (tc == test_case)
243			return i;
244		i++;
245	}
246
247	return 0;
248}
249EXPORT_SYMBOL_GPL(kunit_test_case_num);
250
251static void kunit_print_string_stream(struct kunit *test,
252				      struct string_stream *stream)
253{
254	struct string_stream_fragment *fragment;
255	char *buf;
256
257	if (string_stream_is_empty(stream))
258		return;
259
260	buf = string_stream_get_string(stream);
261	if (!buf) {
262		kunit_err(test,
263			  "Could not allocate buffer, dumping stream:\n");
264		list_for_each_entry(fragment, &stream->fragments, node) {
265			kunit_err(test, "%s", fragment->fragment);
266		}
267		kunit_err(test, "\n");
268	} else {
269		kunit_err(test, "%s", buf);
270		kfree(buf);
271	}
272}
273
274static void kunit_fail(struct kunit *test, const struct kunit_loc *loc,
275		       enum kunit_assert_type type, const struct kunit_assert *assert,
276		       assert_format_t assert_format, const struct va_format *message)
277{
278	struct string_stream *stream;
279
280	kunit_set_failure(test);
281
282	stream = kunit_alloc_string_stream(test, GFP_KERNEL);
283	if (IS_ERR(stream)) {
284		WARN(true,
285		     "Could not allocate stream to print failed assertion in %s:%d\n",
286		     loc->file,
287		     loc->line);
288		return;
289	}
290
291	kunit_assert_prologue(loc, type, stream);
292	assert_format(assert, message, stream);
293
294	kunit_print_string_stream(test, stream);
295
296	kunit_free_string_stream(test, stream);
297}
298
299void __noreturn __kunit_abort(struct kunit *test)
300{
301	kunit_try_catch_throw(&test->try_catch); /* Does not return. */
302
303	/*
304	 * Throw could not abort from test.
305	 *
306	 * XXX: we should never reach this line! As kunit_try_catch_throw is
307	 * marked __noreturn.
308	 */
309	WARN_ONCE(true, "Throw could not abort from test!\n");
310}
311EXPORT_SYMBOL_GPL(__kunit_abort);
312
313void __kunit_do_failed_assertion(struct kunit *test,
314			       const struct kunit_loc *loc,
315			       enum kunit_assert_type type,
316			       const struct kunit_assert *assert,
317			       assert_format_t assert_format,
318			       const char *fmt, ...)
319{
320	va_list args;
321	struct va_format message;
 
 
 
322	va_start(args, fmt);
323
324	message.fmt = fmt;
325	message.va = &args;
326
327	kunit_fail(test, loc, type, assert, assert_format, &message);
328
329	va_end(args);
 
 
 
330}
331EXPORT_SYMBOL_GPL(__kunit_do_failed_assertion);
332
333void kunit_init_test(struct kunit *test, const char *name, struct string_stream *log)
334{
335	spin_lock_init(&test->lock);
336	INIT_LIST_HEAD(&test->resources);
337	test->name = name;
338	test->log = log;
339	if (test->log)
340		string_stream_clear(log);
341	test->status = KUNIT_SUCCESS;
342	test->status_comment[0] = '\0';
343}
344EXPORT_SYMBOL_GPL(kunit_init_test);
345
346/* Only warn when a test takes more than twice the threshold */
347#define KUNIT_SPEED_WARNING_MULTIPLIER	2
348
349/* Slow tests are defined as taking more than 1s */
350#define KUNIT_SPEED_SLOW_THRESHOLD_S	1
351
352#define KUNIT_SPEED_SLOW_WARNING_THRESHOLD_S	\
353	(KUNIT_SPEED_WARNING_MULTIPLIER * KUNIT_SPEED_SLOW_THRESHOLD_S)
354
355#define s_to_timespec64(s) ns_to_timespec64((s) * NSEC_PER_SEC)
356
357static void kunit_run_case_check_speed(struct kunit *test,
358				       struct kunit_case *test_case,
359				       struct timespec64 duration)
360{
361	struct timespec64 slow_thr =
362		s_to_timespec64(KUNIT_SPEED_SLOW_WARNING_THRESHOLD_S);
363	enum kunit_speed speed = test_case->attr.speed;
364
365	if (timespec64_compare(&duration, &slow_thr) < 0)
366		return;
367
368	if (speed == KUNIT_SPEED_VERY_SLOW || speed == KUNIT_SPEED_SLOW)
369		return;
370
371	kunit_warn(test,
372		   "Test should be marked slow (runtime: %lld.%09lds)",
373		   duration.tv_sec, duration.tv_nsec);
374}
375
376/*
377 * Initializes and runs test case. Does not clean up or do post validations.
378 */
379static void kunit_run_case_internal(struct kunit *test,
380				    struct kunit_suite *suite,
381				    struct kunit_case *test_case)
382{
383	struct timespec64 start, end;
384
385	if (suite->init) {
386		int ret;
387
388		ret = suite->init(test);
389		if (ret) {
390			kunit_err(test, "failed to initialize: %d\n", ret);
391			kunit_set_failure(test);
392			return;
393		}
394	}
395
396	ktime_get_ts64(&start);
397
398	test_case->run_case(test);
399
400	ktime_get_ts64(&end);
401
402	kunit_run_case_check_speed(test, test_case, timespec64_sub(end, start));
403}
404
405static void kunit_case_internal_cleanup(struct kunit *test)
406{
407	kunit_cleanup(test);
408}
409
410/*
411 * Performs post validations and cleanup after a test case was run.
412 * XXX: Should ONLY BE CALLED AFTER kunit_run_case_internal!
413 */
414static void kunit_run_case_cleanup(struct kunit *test,
415				   struct kunit_suite *suite)
416{
417	if (suite->exit)
418		suite->exit(test);
419
420	kunit_case_internal_cleanup(test);
421}
422
423struct kunit_try_catch_context {
424	struct kunit *test;
425	struct kunit_suite *suite;
426	struct kunit_case *test_case;
427};
428
429static void kunit_try_run_case(void *data)
430{
431	struct kunit_try_catch_context *ctx = data;
432	struct kunit *test = ctx->test;
433	struct kunit_suite *suite = ctx->suite;
434	struct kunit_case *test_case = ctx->test_case;
435
436	current->kunit_test = test;
437
438	/*
439	 * kunit_run_case_internal may encounter a fatal error; if it does,
440	 * abort will be called, this thread will exit, and finally the parent
441	 * thread will resume control and handle any necessary clean up.
442	 */
443	kunit_run_case_internal(test, suite, test_case);
444}
445
446static void kunit_try_run_case_cleanup(void *data)
447{
448	struct kunit_try_catch_context *ctx = data;
449	struct kunit *test = ctx->test;
450	struct kunit_suite *suite = ctx->suite;
451
452	current->kunit_test = test;
453
454	kunit_run_case_cleanup(test, suite);
455}
456
457static void kunit_catch_run_case_cleanup(void *data)
458{
459	struct kunit_try_catch_context *ctx = data;
460	struct kunit *test = ctx->test;
461	int try_exit_code = kunit_try_catch_get_result(&test->try_catch);
462
463	/* It is always a failure if cleanup aborts. */
464	kunit_set_failure(test);
465
466	if (try_exit_code) {
467		/*
468		 * Test case could not finish, we have no idea what state it is
469		 * in, so don't do clean up.
470		 */
471		if (try_exit_code == -ETIMEDOUT) {
472			kunit_err(test, "test case cleanup timed out\n");
473		/*
474		 * Unknown internal error occurred preventing test case from
475		 * running, so there is nothing to clean up.
476		 */
477		} else {
478			kunit_err(test, "internal error occurred during test case cleanup: %d\n",
479				  try_exit_code);
480		}
481		return;
482	}
483
484	kunit_err(test, "test aborted during cleanup. continuing without cleaning up\n");
485}
486
487
488static void kunit_catch_run_case(void *data)
489{
490	struct kunit_try_catch_context *ctx = data;
491	struct kunit *test = ctx->test;
 
492	int try_exit_code = kunit_try_catch_get_result(&test->try_catch);
493
494	if (try_exit_code) {
495		kunit_set_failure(test);
496		/*
497		 * Test case could not finish, we have no idea what state it is
498		 * in, so don't do clean up.
499		 */
500		if (try_exit_code == -ETIMEDOUT) {
501			kunit_err(test, "test case timed out\n");
502		/*
503		 * Unknown internal error occurred preventing test case from
504		 * running, so there is nothing to clean up.
505		 */
506		} else {
507			kunit_err(test, "internal error occurred preventing test case from running: %d\n",
508				  try_exit_code);
509		}
510		return;
511	}
 
 
 
 
 
 
512}
513
514/*
515 * Performs all logic to run a test case. It also catches most errors that
516 * occur in a test case and reports them as failures.
517 */
518static void kunit_run_case_catch_errors(struct kunit_suite *suite,
519					struct kunit_case *test_case,
520					struct kunit *test)
521{
522	struct kunit_try_catch_context context;
523	struct kunit_try_catch *try_catch;
524
 
525	try_catch = &test->try_catch;
526
527	kunit_try_catch_init(try_catch,
528			     test,
529			     kunit_try_run_case,
530			     kunit_catch_run_case);
531	context.test = test;
532	context.suite = suite;
533	context.test_case = test_case;
534	kunit_try_catch_run(try_catch, &context);
535
536	/* Now run the cleanup */
537	kunit_try_catch_init(try_catch,
538			     test,
539			     kunit_try_run_case_cleanup,
540			     kunit_catch_run_case_cleanup);
541	kunit_try_catch_run(try_catch, &context);
542
543	/* Propagate the parameter result to the test case. */
544	if (test->status == KUNIT_FAILURE)
545		test_case->status = KUNIT_FAILURE;
546	else if (test_case->status != KUNIT_FAILURE && test->status == KUNIT_SUCCESS)
547		test_case->status = KUNIT_SUCCESS;
548}
549
550static void kunit_print_suite_stats(struct kunit_suite *suite,
551				    struct kunit_result_stats suite_stats,
552				    struct kunit_result_stats param_stats)
553{
554	if (kunit_should_print_stats(suite_stats)) {
555		kunit_log(KERN_INFO, suite,
556			  "# %s: pass:%lu fail:%lu skip:%lu total:%lu",
557			  suite->name,
558			  suite_stats.passed,
559			  suite_stats.failed,
560			  suite_stats.skipped,
561			  suite_stats.total);
562	}
563
564	if (kunit_should_print_stats(param_stats)) {
565		kunit_log(KERN_INFO, suite,
566			  "# Totals: pass:%lu fail:%lu skip:%lu total:%lu",
567			  param_stats.passed,
568			  param_stats.failed,
569			  param_stats.skipped,
570			  param_stats.total);
571	}
572}
573
574static void kunit_update_stats(struct kunit_result_stats *stats,
575			       enum kunit_status status)
576{
577	switch (status) {
578	case KUNIT_SUCCESS:
579		stats->passed++;
580		break;
581	case KUNIT_SKIPPED:
582		stats->skipped++;
583		break;
584	case KUNIT_FAILURE:
585		stats->failed++;
586		break;
587	}
588
589	stats->total++;
590}
591
592static void kunit_accumulate_stats(struct kunit_result_stats *total,
593				   struct kunit_result_stats add)
594{
595	total->passed += add.passed;
596	total->skipped += add.skipped;
597	total->failed += add.failed;
598	total->total += add.total;
599}
600
601int kunit_run_tests(struct kunit_suite *suite)
602{
603	char param_desc[KUNIT_PARAM_DESC_SIZE];
604	struct kunit_case *test_case;
605	struct kunit_result_stats suite_stats = { 0 };
606	struct kunit_result_stats total_stats = { 0 };
607
608	/* Taint the kernel so we know we've run tests. */
609	add_taint(TAINT_TEST, LOCKDEP_STILL_OK);
610
611	if (suite->suite_init) {
612		suite->suite_init_err = suite->suite_init(suite);
613		if (suite->suite_init_err) {
614			kunit_err(suite, KUNIT_SUBTEST_INDENT
615				  "# failed to initialize (%d)", suite->suite_init_err);
616			goto suite_end;
617		}
618	}
619
620	kunit_print_suite_start(suite);
621
622	kunit_suite_for_each_test_case(suite, test_case) {
623		struct kunit test = { .param_value = NULL, .param_index = 0 };
624		struct kunit_result_stats param_stats = { 0 };
625
626		kunit_init_test(&test, test_case->name, test_case->log);
627		if (test_case->status == KUNIT_SKIPPED) {
628			/* Test marked as skip */
629			test.status = KUNIT_SKIPPED;
630			kunit_update_stats(&param_stats, test.status);
631		} else if (!test_case->generate_params) {
632			/* Non-parameterised test. */
633			test_case->status = KUNIT_SKIPPED;
634			kunit_run_case_catch_errors(suite, test_case, &test);
635			kunit_update_stats(&param_stats, test.status);
636		} else {
637			/* Get initial param. */
638			param_desc[0] = '\0';
639			test.param_value = test_case->generate_params(NULL, param_desc);
640			test_case->status = KUNIT_SKIPPED;
641			kunit_log(KERN_INFO, &test, KUNIT_SUBTEST_INDENT KUNIT_SUBTEST_INDENT
642				  "KTAP version 1\n");
643			kunit_log(KERN_INFO, &test, KUNIT_SUBTEST_INDENT KUNIT_SUBTEST_INDENT
644				  "# Subtest: %s", test_case->name);
645
646			while (test.param_value) {
647				kunit_run_case_catch_errors(suite, test_case, &test);
648
 
649				if (param_desc[0] == '\0') {
650					snprintf(param_desc, sizeof(param_desc),
651						 "param-%d", test.param_index);
652				}
653
654				kunit_print_ok_not_ok(&test, KUNIT_LEVEL_CASE_PARAM,
655						      test.status,
656						      test.param_index + 1,
657						      param_desc,
658						      test.status_comment);
659
660				kunit_update_stats(&param_stats, test.status);
661
662				/* Get next param. */
663				param_desc[0] = '\0';
664				test.param_value = test_case->generate_params(test.param_value, param_desc);
665				test.param_index++;
666				test.status = KUNIT_SUCCESS;
667				test.status_comment[0] = '\0';
668				test.priv = NULL;
669			}
670		}
671
672		kunit_print_attr((void *)test_case, true, KUNIT_LEVEL_CASE);
673
674		kunit_print_test_stats(&test, param_stats);
675
676		kunit_print_ok_not_ok(&test, KUNIT_LEVEL_CASE, test_case->status,
677				      kunit_test_case_num(suite, test_case),
678				      test_case->name,
679				      test.status_comment);
680
681		kunit_update_stats(&suite_stats, test_case->status);
682		kunit_accumulate_stats(&total_stats, param_stats);
683	}
684
685	if (suite->suite_exit)
686		suite->suite_exit(suite);
687
688	kunit_print_suite_stats(suite, suite_stats, total_stats);
689suite_end:
690	kunit_print_suite_end(suite);
691
692	return 0;
693}
694EXPORT_SYMBOL_GPL(kunit_run_tests);
695
696static void kunit_init_suite(struct kunit_suite *suite)
697{
698	kunit_debugfs_create_suite(suite);
699	suite->status_comment[0] = '\0';
700	suite->suite_init_err = 0;
701
702	if (suite->log)
703		string_stream_clear(suite->log);
704}
705
706bool kunit_enabled(void)
707{
708	return enable_param;
709}
710
711int __kunit_test_suites_init(struct kunit_suite * const * const suites, int num_suites)
712{
713	unsigned int i;
714
715	if (num_suites == 0)
716		return 0;
717
718	if (!kunit_enabled() && num_suites > 0) {
719		pr_info("kunit: disabled\n");
720		return 0;
721	}
722
723	kunit_suite_counter = 1;
724
725	/* Use mutex lock to guard against running tests concurrently. */
726	if (mutex_lock_interruptible(&kunit_run_lock)) {
727		pr_err("kunit: test interrupted\n");
728		return -EINTR;
729	}
730	static_branch_inc(&kunit_running);
731
732	for (i = 0; i < num_suites; i++) {
733		kunit_init_suite(suites[i]);
734		kunit_run_tests(suites[i]);
735	}
736
737	static_branch_dec(&kunit_running);
738	mutex_unlock(&kunit_run_lock);
739	return 0;
740}
741EXPORT_SYMBOL_GPL(__kunit_test_suites_init);
742
743static void kunit_exit_suite(struct kunit_suite *suite)
744{
745	kunit_debugfs_destroy_suite(suite);
746}
747
748void __kunit_test_suites_exit(struct kunit_suite **suites, int num_suites)
749{
750	unsigned int i;
751
752	if (!kunit_enabled())
753		return;
754
755	for (i = 0; i < num_suites; i++)
756		kunit_exit_suite(suites[i]);
757}
758EXPORT_SYMBOL_GPL(__kunit_test_suites_exit);
759
760#ifdef CONFIG_MODULES
761static void kunit_module_init(struct module *mod)
 
 
 
 
 
 
 
 
 
762{
763	struct kunit_suite_set suite_set, filtered_set;
764	struct kunit_suite_set normal_suite_set = {
765		mod->kunit_suites, mod->kunit_suites + mod->num_kunit_suites,
766	};
767	struct kunit_suite_set init_suite_set = {
768		mod->kunit_init_suites, mod->kunit_init_suites + mod->num_kunit_init_suites,
769	};
770	const char *action = kunit_action();
771	int err = 0;
772
773	if (mod->num_kunit_init_suites > 0)
774		suite_set = kunit_merge_suite_sets(init_suite_set, normal_suite_set);
775	else
776		suite_set = normal_suite_set;
777
778	filtered_set = kunit_filter_suites(&suite_set,
779					kunit_filter_glob() ?: "*.*",
780					kunit_filter(), kunit_filter_action(),
781					&err);
782	if (err)
783		pr_err("kunit module: error filtering suites: %d\n", err);
784
785	mod->kunit_suites = (struct kunit_suite **)filtered_set.start;
786	mod->num_kunit_suites = filtered_set.end - filtered_set.start;
787
788	if (mod->num_kunit_init_suites > 0)
789		kfree(suite_set.start);
790
791	if (!action)
792		kunit_exec_run_tests(&filtered_set, false);
793	else if (!strcmp(action, "list"))
794		kunit_exec_list_tests(&filtered_set, false);
795	else if (!strcmp(action, "list_attr"))
796		kunit_exec_list_tests(&filtered_set, true);
797	else
798		pr_err("kunit: unknown action '%s'\n", action);
799}
 
800
801static void kunit_module_exit(struct module *mod)
 
 
 
 
 
802{
803	struct kunit_suite_set suite_set = {
804		mod->kunit_suites, mod->kunit_suites + mod->num_kunit_suites,
805	};
806	const char *action = kunit_action();
807
808	/*
809	 * Check if the start address is a valid virtual address to detect
810	 * if the module load sequence has failed and the suite set has not
811	 * been initialized and filtered.
812	 */
813	if (!suite_set.start || !virt_addr_valid(suite_set.start))
814		return;
815
816	if (!action)
817		__kunit_test_suites_exit(mod->kunit_suites,
818					 mod->num_kunit_suites);
819
820	kunit_free_suite_set(suite_set);
821}
822
823static int kunit_module_notify(struct notifier_block *nb, unsigned long val,
824			       void *data)
825{
826	struct module *mod = data;
827
828	switch (val) {
829	case MODULE_STATE_LIVE:
830		kunit_module_init(mod);
831		break;
832	case MODULE_STATE_GOING:
833		kunit_module_exit(mod);
834		break;
835	case MODULE_STATE_COMING:
836		break;
837	case MODULE_STATE_UNFORMED:
838		break;
839	}
840
841	return 0;
 
 
842}
 
843
844static struct notifier_block kunit_mod_nb = {
845	.notifier_call = kunit_module_notify,
846	.priority = 0,
847};
848#endif
 
 
 
849
850KUNIT_DEFINE_ACTION_WRAPPER(kfree_action_wrapper, kfree, const void *)
 
 
851
852void *kunit_kmalloc_array(struct kunit *test, size_t n, size_t size, gfp_t gfp)
 
 
 
 
 
 
 
 
 
 
 
 
 
853{
854	void *data;
855
856	data = kmalloc_array(n, size, gfp);
 
 
 
 
 
857
858	if (!data)
859		return NULL;
 
 
 
860
861	if (kunit_add_action_or_reset(test, kfree_action_wrapper, data) != 0)
862		return NULL;
 
 
863
864	return data;
 
 
 
865}
866EXPORT_SYMBOL_GPL(kunit_kmalloc_array);
867
868void kunit_kfree(struct kunit *test, const void *ptr)
 
 
 
 
 
 
869{
870	if (!ptr)
871		return;
 
 
 
872
873	kunit_release_action(test, kfree_action_wrapper, (void *)ptr);
874}
875EXPORT_SYMBOL_GPL(kunit_kfree);
876
877void kunit_kfree_const(struct kunit *test, const void *x)
878{
879#if !IS_MODULE(CONFIG_KUNIT)
880	if (!is_kernel_rodata((unsigned long)x))
881#endif
882		kunit_kfree(test, x);
883}
884EXPORT_SYMBOL_GPL(kunit_kfree_const);
885
886const char *kunit_kstrdup_const(struct kunit *test, const char *str, gfp_t gfp)
887{
888#if !IS_MODULE(CONFIG_KUNIT)
889	if (is_kernel_rodata((unsigned long)str))
890		return str;
891#endif
892	return kunit_kstrdup(test, str, gfp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893}
894EXPORT_SYMBOL_GPL(kunit_kstrdup_const);
895
896void kunit_cleanup(struct kunit *test)
897{
898	struct kunit_resource *res;
899	unsigned long flags;
900
901	/*
902	 * test->resources is a stack - each allocation must be freed in the
903	 * reverse order from which it was added since one resource may depend
904	 * on another for its entire lifetime.
905	 * Also, we cannot use the normal list_for_each constructs, even the
906	 * safe ones because *arbitrary* nodes may be deleted when
907	 * kunit_resource_free is called; the list_for_each_safe variants only
908	 * protect against the current node being deleted, not the next.
909	 */
910	while (true) {
911		spin_lock_irqsave(&test->lock, flags);
912		if (list_empty(&test->resources)) {
913			spin_unlock_irqrestore(&test->lock, flags);
914			break;
915		}
916		res = list_last_entry(&test->resources,
917				      struct kunit_resource,
918				      node);
919		/*
920		 * Need to unlock here as a resource may remove another
921		 * resource, and this can't happen if the test->lock
922		 * is held.
923		 */
924		spin_unlock_irqrestore(&test->lock, flags);
925		kunit_remove_resource(test, res);
926	}
927	current->kunit_test = NULL;
928}
929EXPORT_SYMBOL_GPL(kunit_cleanup);
930
931static int __init kunit_init(void)
932{
933	/* Install the KUnit hook functions. */
934	kunit_install_hooks();
935
936	kunit_debugfs_init();
937
938	kunit_bus_init();
939#ifdef CONFIG_MODULES
940	return register_module_notifier(&kunit_mod_nb);
941#else
942	return 0;
943#endif
944}
945late_initcall(kunit_init);
946
947static void __exit kunit_exit(void)
948{
949	memset(&kunit_hooks, 0, sizeof(kunit_hooks));
950#ifdef CONFIG_MODULES
951	unregister_module_notifier(&kunit_mod_nb);
952#endif
953
954	kunit_bus_shutdown();
955
956	kunit_debugfs_cleanup();
957}
958module_exit(kunit_exit);
959
960MODULE_DESCRIPTION("Base unit test (KUnit) API");
961MODULE_LICENSE("GPL v2");
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Base unit test (KUnit) API.
  4 *
  5 * Copyright (C) 2019, Google LLC.
  6 * Author: Brendan Higgins <brendanhiggins@google.com>
  7 */
  8
 
  9#include <kunit/test.h>
 10#include <kunit/test-bug.h>
 
 11#include <linux/kernel.h>
 12#include <linux/kref.h>
 
 
 
 13#include <linux/sched/debug.h>
 14#include <linux/sched.h>
 
 15
 16#include "debugfs.h"
 
 
 17#include "string-stream.h"
 18#include "try-catch-impl.h"
 19
 20#if IS_BUILTIN(CONFIG_KUNIT)
 
 21/*
 22 * Fail the current test and print an error message to the log.
 23 */
 24void __kunit_fail_current_test(const char *file, int line, const char *fmt, ...)
 25{
 26	va_list args;
 27	int len;
 28	char *buffer;
 29
 30	if (!current->kunit_test)
 31		return;
 32
 33	kunit_set_failure(current->kunit_test);
 34
 35	/* kunit_err() only accepts literals, so evaluate the args first. */
 36	va_start(args, fmt);
 37	len = vsnprintf(NULL, 0, fmt, args) + 1;
 38	va_end(args);
 39
 40	buffer = kunit_kmalloc(current->kunit_test, len, GFP_KERNEL);
 41	if (!buffer)
 42		return;
 43
 44	va_start(args, fmt);
 45	vsnprintf(buffer, len, fmt, args);
 46	va_end(args);
 47
 48	kunit_err(current->kunit_test, "%s:%d: %s", file, line, buffer);
 49	kunit_kfree(current->kunit_test, buffer);
 50}
 51EXPORT_SYMBOL_GPL(__kunit_fail_current_test);
 
 
 
 
 
 
 
 52#endif
 
 
 53
 54/*
 55 * Append formatted message to log, size of which is limited to
 56 * KUNIT_LOG_SIZE bytes (including null terminating byte).
 
 
 57 */
 58void kunit_log_append(char *log, const char *fmt, ...)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 59{
 60	char line[KUNIT_LOG_SIZE];
 61	va_list args;
 62	int len_left;
 63
 64	if (!log)
 65		return;
 66
 67	len_left = KUNIT_LOG_SIZE - strlen(log) - 1;
 68	if (len_left <= 0)
 69		return;
 70
 71	va_start(args, fmt);
 72	vsnprintf(line, sizeof(line), fmt, args);
 73	va_end(args);
 74
 75	strncat(log, line, len_left);
 76}
 77EXPORT_SYMBOL_GPL(kunit_log_append);
 78
 79size_t kunit_suite_num_test_cases(struct kunit_suite *suite)
 80{
 81	struct kunit_case *test_case;
 82	size_t len = 0;
 83
 84	kunit_suite_for_each_test_case(suite, test_case)
 85		len++;
 86
 87	return len;
 88}
 89EXPORT_SYMBOL_GPL(kunit_suite_num_test_cases);
 90
 91static void kunit_print_subtest_start(struct kunit_suite *suite)
 
 
 
 
 
 
 
 92{
 93	kunit_log(KERN_INFO, suite, KUNIT_SUBTEST_INDENT "# Subtest: %s",
 
 
 
 
 
 
 
 
 
 94		  suite->name);
 95	kunit_log(KERN_INFO, suite, KUNIT_SUBTEST_INDENT "1..%zd",
 
 96		  kunit_suite_num_test_cases(suite));
 97}
 98
 99static void kunit_print_ok_not_ok(void *test_or_suite,
100				  bool is_test,
101				  enum kunit_status status,
102				  size_t test_number,
103				  const char *description,
104				  const char *directive)
105{
106	struct kunit_suite *suite = is_test ? NULL : test_or_suite;
107	struct kunit *test = is_test ? test_or_suite : NULL;
108	const char *directive_header = (status == KUNIT_SKIPPED) ? " # SKIP " : "";
 
 
 
 
 
 
 
109
110	/*
111	 * We do not log the test suite results as doing so would
112	 * mean debugfs display would consist of the test suite
113	 * description and status prior to individual test results.
114	 * Hence directly printk the suite status, and we will
115	 * separately seq_printf() the suite status for the debugfs
116	 * representation.
117	 */
118	if (suite)
119		pr_info("%s %zd - %s%s%s\n",
120			kunit_status_to_ok_not_ok(status),
121			test_number, description, directive_header,
122			(status == KUNIT_SKIPPED) ? directive : "");
123	else
124		kunit_log(KERN_INFO, test,
125			  KUNIT_SUBTEST_INDENT "%s %zd - %s%s%s",
 
126			  kunit_status_to_ok_not_ok(status),
127			  test_number, description, directive_header,
128			  (status == KUNIT_SKIPPED) ? directive : "");
129}
130
131enum kunit_status kunit_suite_has_succeeded(struct kunit_suite *suite)
132{
133	const struct kunit_case *test_case;
134	enum kunit_status status = KUNIT_SKIPPED;
135
 
 
 
136	kunit_suite_for_each_test_case(suite, test_case) {
137		if (test_case->status == KUNIT_FAILURE)
138			return KUNIT_FAILURE;
139		else if (test_case->status == KUNIT_SUCCESS)
140			status = KUNIT_SUCCESS;
141	}
142
143	return status;
144}
145EXPORT_SYMBOL_GPL(kunit_suite_has_succeeded);
146
147static void kunit_print_subtest_end(struct kunit_suite *suite)
 
 
148{
149	static size_t kunit_suite_counter = 1;
150
151	kunit_print_ok_not_ok((void *)suite, false,
152			      kunit_suite_has_succeeded(suite),
153			      kunit_suite_counter++,
154			      suite->name,
155			      suite->status_comment);
156}
157
158unsigned int kunit_test_case_num(struct kunit_suite *suite,
159				 struct kunit_case *test_case)
160{
161	struct kunit_case *tc;
162	unsigned int i = 1;
163
164	kunit_suite_for_each_test_case(suite, tc) {
165		if (tc == test_case)
166			return i;
167		i++;
168	}
169
170	return 0;
171}
172EXPORT_SYMBOL_GPL(kunit_test_case_num);
173
174static void kunit_print_string_stream(struct kunit *test,
175				      struct string_stream *stream)
176{
177	struct string_stream_fragment *fragment;
178	char *buf;
179
180	if (string_stream_is_empty(stream))
181		return;
182
183	buf = string_stream_get_string(stream);
184	if (!buf) {
185		kunit_err(test,
186			  "Could not allocate buffer, dumping stream:\n");
187		list_for_each_entry(fragment, &stream->fragments, node) {
188			kunit_err(test, "%s", fragment->fragment);
189		}
190		kunit_err(test, "\n");
191	} else {
192		kunit_err(test, "%s", buf);
193		kunit_kfree(test, buf);
194	}
195}
196
197static void kunit_fail(struct kunit *test, struct kunit_assert *assert)
 
 
198{
199	struct string_stream *stream;
200
201	kunit_set_failure(test);
202
203	stream = alloc_string_stream(test, GFP_KERNEL);
204	if (!stream) {
205		WARN(true,
206		     "Could not allocate stream to print failed assertion in %s:%d\n",
207		     assert->file,
208		     assert->line);
209		return;
210	}
211
212	assert->format(assert, stream);
 
213
214	kunit_print_string_stream(test, stream);
215
216	WARN_ON(string_stream_destroy(stream));
217}
218
219static void __noreturn kunit_abort(struct kunit *test)
220{
221	kunit_try_catch_throw(&test->try_catch); /* Does not return. */
222
223	/*
224	 * Throw could not abort from test.
225	 *
226	 * XXX: we should never reach this line! As kunit_try_catch_throw is
227	 * marked __noreturn.
228	 */
229	WARN_ONCE(true, "Throw could not abort from test!\n");
230}
 
231
232void kunit_do_assertion(struct kunit *test,
233			struct kunit_assert *assert,
234			bool pass,
235			const char *fmt, ...)
 
 
236{
237	va_list args;
238
239	if (pass)
240		return;
241
242	va_start(args, fmt);
243
244	assert->message.fmt = fmt;
245	assert->message.va = &args;
246
247	kunit_fail(test, assert);
248
249	va_end(args);
250
251	if (assert->type == KUNIT_ASSERTION)
252		kunit_abort(test);
253}
254EXPORT_SYMBOL_GPL(kunit_do_assertion);
255
256void kunit_init_test(struct kunit *test, const char *name, char *log)
257{
258	spin_lock_init(&test->lock);
259	INIT_LIST_HEAD(&test->resources);
260	test->name = name;
261	test->log = log;
262	if (test->log)
263		test->log[0] = '\0';
264	test->status = KUNIT_SUCCESS;
265	test->status_comment[0] = '\0';
266}
267EXPORT_SYMBOL_GPL(kunit_init_test);
268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269/*
270 * Initializes and runs test case. Does not clean up or do post validations.
271 */
272static void kunit_run_case_internal(struct kunit *test,
273				    struct kunit_suite *suite,
274				    struct kunit_case *test_case)
275{
 
 
276	if (suite->init) {
277		int ret;
278
279		ret = suite->init(test);
280		if (ret) {
281			kunit_err(test, "failed to initialize: %d\n", ret);
282			kunit_set_failure(test);
283			return;
284		}
285	}
286
 
 
287	test_case->run_case(test);
 
 
 
 
288}
289
290static void kunit_case_internal_cleanup(struct kunit *test)
291{
292	kunit_cleanup(test);
293}
294
295/*
296 * Performs post validations and cleanup after a test case was run.
297 * XXX: Should ONLY BE CALLED AFTER kunit_run_case_internal!
298 */
299static void kunit_run_case_cleanup(struct kunit *test,
300				   struct kunit_suite *suite)
301{
302	if (suite->exit)
303		suite->exit(test);
304
305	kunit_case_internal_cleanup(test);
306}
307
308struct kunit_try_catch_context {
309	struct kunit *test;
310	struct kunit_suite *suite;
311	struct kunit_case *test_case;
312};
313
314static void kunit_try_run_case(void *data)
315{
316	struct kunit_try_catch_context *ctx = data;
317	struct kunit *test = ctx->test;
318	struct kunit_suite *suite = ctx->suite;
319	struct kunit_case *test_case = ctx->test_case;
320
321	current->kunit_test = test;
322
323	/*
324	 * kunit_run_case_internal may encounter a fatal error; if it does,
325	 * abort will be called, this thread will exit, and finally the parent
326	 * thread will resume control and handle any necessary clean up.
327	 */
328	kunit_run_case_internal(test, suite, test_case);
329	/* This line may never be reached. */
 
 
 
 
 
 
 
 
 
330	kunit_run_case_cleanup(test, suite);
331}
332
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333static void kunit_catch_run_case(void *data)
334{
335	struct kunit_try_catch_context *ctx = data;
336	struct kunit *test = ctx->test;
337	struct kunit_suite *suite = ctx->suite;
338	int try_exit_code = kunit_try_catch_get_result(&test->try_catch);
339
340	if (try_exit_code) {
341		kunit_set_failure(test);
342		/*
343		 * Test case could not finish, we have no idea what state it is
344		 * in, so don't do clean up.
345		 */
346		if (try_exit_code == -ETIMEDOUT) {
347			kunit_err(test, "test case timed out\n");
348		/*
349		 * Unknown internal error occurred preventing test case from
350		 * running, so there is nothing to clean up.
351		 */
352		} else {
353			kunit_err(test, "internal error occurred preventing test case from running: %d\n",
354				  try_exit_code);
355		}
356		return;
357	}
358
359	/*
360	 * Test case was run, but aborted. It is the test case's business as to
361	 * whether it failed or not, we just need to clean up.
362	 */
363	kunit_run_case_cleanup(test, suite);
364}
365
366/*
367 * Performs all logic to run a test case. It also catches most errors that
368 * occur in a test case and reports them as failures.
369 */
370static void kunit_run_case_catch_errors(struct kunit_suite *suite,
371					struct kunit_case *test_case,
372					struct kunit *test)
373{
374	struct kunit_try_catch_context context;
375	struct kunit_try_catch *try_catch;
376
377	kunit_init_test(test, test_case->name, test_case->log);
378	try_catch = &test->try_catch;
379
380	kunit_try_catch_init(try_catch,
381			     test,
382			     kunit_try_run_case,
383			     kunit_catch_run_case);
384	context.test = test;
385	context.suite = suite;
386	context.test_case = test_case;
387	kunit_try_catch_run(try_catch, &context);
388
 
 
 
 
 
 
 
389	/* Propagate the parameter result to the test case. */
390	if (test->status == KUNIT_FAILURE)
391		test_case->status = KUNIT_FAILURE;
392	else if (test_case->status != KUNIT_FAILURE && test->status == KUNIT_SUCCESS)
393		test_case->status = KUNIT_SUCCESS;
394}
395
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396int kunit_run_tests(struct kunit_suite *suite)
397{
398	char param_desc[KUNIT_PARAM_DESC_SIZE];
399	struct kunit_case *test_case;
 
 
400
401	kunit_print_subtest_start(suite);
 
 
 
 
 
 
 
 
 
 
 
 
402
403	kunit_suite_for_each_test_case(suite, test_case) {
404		struct kunit test = { .param_value = NULL, .param_index = 0 };
405		test_case->status = KUNIT_SKIPPED;
406
407		if (test_case->generate_params) {
 
 
 
 
 
 
 
 
 
 
408			/* Get initial param. */
409			param_desc[0] = '\0';
410			test.param_value = test_case->generate_params(NULL, param_desc);
411		}
 
 
 
 
412
413		do {
414			kunit_run_case_catch_errors(suite, test_case, &test);
415
416			if (test_case->generate_params) {
417				if (param_desc[0] == '\0') {
418					snprintf(param_desc, sizeof(param_desc),
419						 "param-%d", test.param_index);
420				}
421
422				kunit_log(KERN_INFO, &test,
423					  KUNIT_SUBTEST_INDENT
424					  "# %s: %s %d - %s",
425					  test_case->name,
426					  kunit_status_to_ok_not_ok(test.status),
427					  test.param_index + 1, param_desc);
 
428
429				/* Get next param. */
430				param_desc[0] = '\0';
431				test.param_value = test_case->generate_params(test.param_value, param_desc);
432				test.param_index++;
 
 
 
433			}
434		} while (test.param_value);
 
 
 
 
435
436		kunit_print_ok_not_ok(&test, true, test_case->status,
437				      kunit_test_case_num(suite, test_case),
438				      test_case->name,
439				      test.status_comment);
 
 
 
440	}
441
442	kunit_print_subtest_end(suite);
 
 
 
 
 
443
444	return 0;
445}
446EXPORT_SYMBOL_GPL(kunit_run_tests);
447
448static void kunit_init_suite(struct kunit_suite *suite)
449{
450	kunit_debugfs_create_suite(suite);
451	suite->status_comment[0] = '\0';
 
 
 
 
452}
453
454int __kunit_test_suites_init(struct kunit_suite * const * const suites)
 
 
 
 
 
455{
456	unsigned int i;
457
458	for (i = 0; suites[i] != NULL; i++) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459		kunit_init_suite(suites[i]);
460		kunit_run_tests(suites[i]);
461	}
 
 
 
462	return 0;
463}
464EXPORT_SYMBOL_GPL(__kunit_test_suites_init);
465
466static void kunit_exit_suite(struct kunit_suite *suite)
467{
468	kunit_debugfs_destroy_suite(suite);
469}
470
471void __kunit_test_suites_exit(struct kunit_suite **suites)
472{
473	unsigned int i;
474
475	for (i = 0; suites[i] != NULL; i++)
 
 
 
476		kunit_exit_suite(suites[i]);
477}
478EXPORT_SYMBOL_GPL(__kunit_test_suites_exit);
479
480/*
481 * Used for static resources and when a kunit_resource * has been created by
482 * kunit_alloc_resource().  When an init function is supplied, @data is passed
483 * into the init function; otherwise, we simply set the resource data field to
484 * the data value passed in.
485 */
486int kunit_add_resource(struct kunit *test,
487		       kunit_resource_init_t init,
488		       kunit_resource_free_t free,
489		       struct kunit_resource *res,
490		       void *data)
491{
492	int ret = 0;
493	unsigned long flags;
 
 
 
 
 
 
 
494
495	res->free = free;
496	kref_init(&res->refcount);
 
 
497
498	if (init) {
499		ret = init(res, data);
500		if (ret)
501			return ret;
502	} else {
503		res->data = data;
504	}
505
506	spin_lock_irqsave(&test->lock, flags);
507	list_add_tail(&res->node, &test->resources);
508	/* refcount for list is established by kref_init() */
509	spin_unlock_irqrestore(&test->lock, flags);
510
511	return ret;
 
 
 
 
 
 
 
512}
513EXPORT_SYMBOL_GPL(kunit_add_resource);
514
515int kunit_add_named_resource(struct kunit *test,
516			     kunit_resource_init_t init,
517			     kunit_resource_free_t free,
518			     struct kunit_resource *res,
519			     const char *name,
520			     void *data)
521{
522	struct kunit_resource *existing;
 
 
 
523
524	if (!name)
525		return -EINVAL;
 
 
 
 
 
526
527	existing = kunit_find_named_resource(test, name);
528	if (existing) {
529		kunit_put_resource(existing);
530		return -EEXIST;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531	}
532
533	res->name = name;
534
535	return kunit_add_resource(test, init, free, res, data);
536}
537EXPORT_SYMBOL_GPL(kunit_add_named_resource);
538
539struct kunit_resource *kunit_alloc_and_get_resource(struct kunit *test,
540						    kunit_resource_init_t init,
541						    kunit_resource_free_t free,
542						    gfp_t internal_gfp,
543						    void *data)
544{
545	struct kunit_resource *res;
546	int ret;
547
548	res = kzalloc(sizeof(*res), internal_gfp);
549	if (!res)
550		return NULL;
551
552	ret = kunit_add_resource(test, init, free, res, data);
553	if (!ret) {
554		/*
555		 * bump refcount for get; kunit_resource_put() should be called
556		 * when done.
557		 */
558		kunit_get_resource(res);
559		return res;
560	}
561	return NULL;
562}
563EXPORT_SYMBOL_GPL(kunit_alloc_and_get_resource);
564
565void kunit_remove_resource(struct kunit *test, struct kunit_resource *res)
566{
567	unsigned long flags;
568
569	spin_lock_irqsave(&test->lock, flags);
570	list_del(&res->node);
571	spin_unlock_irqrestore(&test->lock, flags);
572	kunit_put_resource(res);
573}
574EXPORT_SYMBOL_GPL(kunit_remove_resource);
575
576int kunit_destroy_resource(struct kunit *test, kunit_resource_match_t match,
577			   void *match_data)
578{
579	struct kunit_resource *res = kunit_find_resource(test, match,
580							 match_data);
581
582	if (!res)
583		return -ENOENT;
584
585	kunit_remove_resource(test, res);
586
587	/* We have a reference also via _find(); drop it. */
588	kunit_put_resource(res);
589
590	return 0;
591}
592EXPORT_SYMBOL_GPL(kunit_destroy_resource);
593
594struct kunit_kmalloc_array_params {
595	size_t n;
596	size_t size;
597	gfp_t gfp;
598};
599
600static int kunit_kmalloc_array_init(struct kunit_resource *res, void *context)
601{
602	struct kunit_kmalloc_array_params *params = context;
603
604	res->data = kmalloc_array(params->n, params->size, params->gfp);
605	if (!res->data)
606		return -ENOMEM;
607
608	return 0;
609}
 
610
611static void kunit_kmalloc_array_free(struct kunit_resource *res)
612{
613	kfree(res->data);
 
 
 
614}
 
615
616void *kunit_kmalloc_array(struct kunit *test, size_t n, size_t size, gfp_t gfp)
617{
618	struct kunit_kmalloc_array_params params = {
619		.size = size,
620		.n = n,
621		.gfp = gfp
622	};
623
624	return kunit_alloc_resource(test,
625				    kunit_kmalloc_array_init,
626				    kunit_kmalloc_array_free,
627				    gfp,
628				    &params);
629}
630EXPORT_SYMBOL_GPL(kunit_kmalloc_array);
631
632void kunit_kfree(struct kunit *test, const void *ptr)
633{
634	struct kunit_resource *res;
635
636	res = kunit_find_resource(test, kunit_resource_instance_match,
637				  (void *)ptr);
638
639	/*
640	 * Removing the resource from the list of resources drops the
641	 * reference count to 1; the final put will trigger the free.
642	 */
643	kunit_remove_resource(test, res);
644
645	kunit_put_resource(res);
646
647}
648EXPORT_SYMBOL_GPL(kunit_kfree);
649
650void kunit_cleanup(struct kunit *test)
651{
652	struct kunit_resource *res;
653	unsigned long flags;
654
655	/*
656	 * test->resources is a stack - each allocation must be freed in the
657	 * reverse order from which it was added since one resource may depend
658	 * on another for its entire lifetime.
659	 * Also, we cannot use the normal list_for_each constructs, even the
660	 * safe ones because *arbitrary* nodes may be deleted when
661	 * kunit_resource_free is called; the list_for_each_safe variants only
662	 * protect against the current node being deleted, not the next.
663	 */
664	while (true) {
665		spin_lock_irqsave(&test->lock, flags);
666		if (list_empty(&test->resources)) {
667			spin_unlock_irqrestore(&test->lock, flags);
668			break;
669		}
670		res = list_last_entry(&test->resources,
671				      struct kunit_resource,
672				      node);
673		/*
674		 * Need to unlock here as a resource may remove another
675		 * resource, and this can't happen if the test->lock
676		 * is held.
677		 */
678		spin_unlock_irqrestore(&test->lock, flags);
679		kunit_remove_resource(test, res);
680	}
681	current->kunit_test = NULL;
682}
683EXPORT_SYMBOL_GPL(kunit_cleanup);
684
685static int __init kunit_init(void)
686{
 
 
 
687	kunit_debugfs_init();
688
 
 
 
 
689	return 0;
 
690}
691late_initcall(kunit_init);
692
693static void __exit kunit_exit(void)
694{
 
 
 
 
 
 
 
695	kunit_debugfs_cleanup();
696}
697module_exit(kunit_exit);
698
 
699MODULE_LICENSE("GPL v2");