~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/lsm/lsm_set_self_attr_test.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * Linux Security Module infrastructure tests
  4  * Tests for the lsm_set_self_attr system call
  5  *
  6  * Copyright © 2022 Casey Schaufler <casey@schaufler-ca.com>
  7  */
  8 
  9 #define _GNU_SOURCE
 10 #include <linux/lsm.h>
 11 #include <string.h>
 12 #include <stdio.h>
 13 #include <unistd.h>
 14 #include <sys/types.h>
 15 #include "../kselftest_harness.h"
 16 #include "common.h"
 17 
 18 TEST(ctx_null_lsm_set_self_attr)
 19 {
 20         ASSERT_EQ(-1, lsm_set_self_attr(LSM_ATTR_CURRENT, NULL,
 21                                         sizeof(struct lsm_ctx), 0));
 22 }
 23 
 24 TEST(size_too_small_lsm_set_self_attr)
 25 {
 26         const long page_size = sysconf(_SC_PAGESIZE);
 27         struct lsm_ctx *ctx = calloc(page_size, 1);
 28         __u32 size = page_size;
 29 
 30         ASSERT_NE(NULL, ctx);
 31         if (attr_lsm_count()) {
 32                 ASSERT_LE(1, lsm_get_self_attr(LSM_ATTR_CURRENT, ctx, &size,
 33                                                0));
 34         }
 35         ASSERT_EQ(-1, lsm_set_self_attr(LSM_ATTR_CURRENT, ctx, 1, 0));
 36 
 37         free(ctx);
 38 }
 39 
 40 TEST(flags_zero_lsm_set_self_attr)
 41 {
 42         const long page_size = sysconf(_SC_PAGESIZE);
 43         struct lsm_ctx *ctx = calloc(page_size, 1);
 44         __u32 size = page_size;
 45 
 46         ASSERT_NE(NULL, ctx);
 47         if (attr_lsm_count()) {
 48                 ASSERT_LE(1, lsm_get_self_attr(LSM_ATTR_CURRENT, ctx, &size,
 49                                                0));
 50         }
 51         ASSERT_EQ(-1, lsm_set_self_attr(LSM_ATTR_CURRENT, ctx, size, 1));
 52 
 53         free(ctx);
 54 }
 55 
 56 TEST(flags_overset_lsm_set_self_attr)
 57 {
 58         const long page_size = sysconf(_SC_PAGESIZE);
 59         char *ctx = calloc(page_size, 1);
 60         __u32 size = page_size;
 61         struct lsm_ctx *tctx = (struct lsm_ctx *)ctx;
 62 
 63         ASSERT_NE(NULL, ctx);
 64         if (attr_lsm_count()) {
 65                 ASSERT_LE(1, lsm_get_self_attr(LSM_ATTR_CURRENT, tctx, &size,
 66                                                0));
 67         }
 68         ASSERT_EQ(-1, lsm_set_self_attr(LSM_ATTR_CURRENT | LSM_ATTR_PREV, tctx,
 69                                         size, 0));
 70 
 71         free(ctx);
 72 }
 73 
 74 TEST_HARNESS_MAIN
 75 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php