blob: c3779bfc02cd5aafdeff2874538ac00ed4879acc [file] [log] [blame]
#
# Copyright (C) 2017 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import KernelProcFileTestBase
class ProcKptrRestrictTest(KernelProcFileTestBase.KernelProcFileTestBase):
'''
/proc/sys/kernel/kptr_restrict determines whether kernel pointers are printed
in proc files.
'''
start = 'num'
def p_num(self, p):
'num : NUMBER NEWLINE'
p[0] = p[1]
def result_correct(self, result):
return result >= 0 and result <= 4
def get_path(self):
return "/proc/sys/kernel/kptr_restrict"
class ProcRandomizeVaSpaceTest(KernelProcFileTestBase.KernelProcFileTestBase):
'''
/proc/sys/kernel/randomize_va_space determines the address layout randomization
policy for the system.
'''
start = 'num'
def p_num(self, p):
'num : NUMBER NEWLINE'
p[0] = p[1]
def result_correct(self, result):
return result >= 0 and result <= 2
def get_path(self):
return "/proc/sys/kernel/randomize_va_space"
class ProcOverCommitMemoryTest(KernelProcFileTestBase.KernelProcFileTestBase):
'''
/proc/sys/vm/overcommit_memory determines the kernel virtual memory accounting mode.
'''
start = 'num'
def p_num(self, p):
'num : NUMBER NEWLINE'
p[0] = p[1]
def result_correct(self, result):
return result >= 0 and result <= 2
def get_path(self):
return "/proc/sys/vm/overcommit_memory"
class ProcMmapMinAddrTest(KernelProcFileTestBase.KernelProcFileTestBase):
'''
/proc/sys/vm/mmap_min_addr specifies the minimum address that can be mmap'd.
'''
start = 'num'
def p_num(self, p):
'num : NUMBER NEWLINE'
p[0] = p[1]
def get_path(self):
return "/proc/sys/vm/mmap_min_addr"
class ProcMmapRndBitsTest(KernelProcFileTestBase.KernelProcFileTestBase):
'''
/proc/sys/vm/mmap_rnd_(compat_)bits specifies the amount of randomness in mmap'd
addresses. Must be >= 8.
'''
start = 'num'
def p_num(self, p):
'num : NUMBER NEWLINE'
p[0] = p[1]
def result_correct(self, result):
return result >= 8
def get_path(self):
return "/proc/sys/vm/mmap_rnd_bits"
class ProcMmapRndCompatBitsTest(ProcMmapRndBitsTest):
def get_path(self):
return "/proc/sys/vm/mmap_rnd_compat_bits"