xref: /xnu-11417.140.69/tests/phys_footprint_interval_max.c (revision 43a90889846e00bfb5cf1d255cdc0a701a1e05a4)
1*43a90889SApple OSS Distributions /*
2*43a90889SApple OSS Distributions  * Copyright (c) 2018 Apple Inc. All rights reserved.
3*43a90889SApple OSS Distributions  *
4*43a90889SApple OSS Distributions  * @APPLE_LICENSE_HEADER_START@
5*43a90889SApple OSS Distributions  *
6*43a90889SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*43a90889SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*43a90889SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*43a90889SApple OSS Distributions  * compliance with the License. Please obtain a copy of the License at
10*43a90889SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this
11*43a90889SApple OSS Distributions  * file.
12*43a90889SApple OSS Distributions  *
13*43a90889SApple OSS Distributions  * The Original Code and all software distributed under the License are
14*43a90889SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15*43a90889SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16*43a90889SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17*43a90889SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18*43a90889SApple OSS Distributions  * Please see the License for the specific language governing rights and
19*43a90889SApple OSS Distributions  * limitations under the License.
20*43a90889SApple OSS Distributions  *
21*43a90889SApple OSS Distributions  * @APPLE_LICENSE_HEADER_END@
22*43a90889SApple OSS Distributions  */
23*43a90889SApple OSS Distributions 
24*43a90889SApple OSS Distributions #include <darwintest.h>
25*43a90889SApple OSS Distributions 
26*43a90889SApple OSS Distributions #include <stdlib.h>
27*43a90889SApple OSS Distributions #include <unistd.h>
28*43a90889SApple OSS Distributions #include <string.h>
29*43a90889SApple OSS Distributions #include <mach/mach_vm.h>
30*43a90889SApple OSS Distributions #include <mach/mach_init.h>
31*43a90889SApple OSS Distributions #include <sys/resource.h>
32*43a90889SApple OSS Distributions #include <libproc.h>
33*43a90889SApple OSS Distributions #include <libproc_internal.h>
34*43a90889SApple OSS Distributions #include <TargetConditionals.h>
35*43a90889SApple OSS Distributions 
36*43a90889SApple OSS Distributions T_GLOBAL_META(T_META_RUN_CONCURRENTLY(true));
37*43a90889SApple OSS Distributions 
38*43a90889SApple OSS Distributions #define ALLOC_SIZE_LARGE 5*1024*1024
39*43a90889SApple OSS Distributions #define ALLOC_SIZE_SMALL 2*1024*1024
40*43a90889SApple OSS Distributions 
41*43a90889SApple OSS Distributions int proc_rlimit_control(pid_t pid, int flavor, void *arg);
42*43a90889SApple OSS Distributions 
43*43a90889SApple OSS Distributions T_DECL(phys_footprint_interval_max,
44*43a90889SApple OSS Distributions     "Validate physical footprint interval tracking", T_META_TAG_VM_PREFERRED)
45*43a90889SApple OSS Distributions {
46*43a90889SApple OSS Distributions 	int ret;
47*43a90889SApple OSS Distributions 	struct rusage_info_v4 ru;
48*43a90889SApple OSS Distributions 	mach_vm_address_t addr = (mach_vm_address_t)NULL;
49*43a90889SApple OSS Distributions 
50*43a90889SApple OSS Distributions 	ret = proc_pid_rusage(getpid(), RUSAGE_INFO_V4, (rusage_info_t *)&ru);
51*43a90889SApple OSS Distributions 	T_QUIET;
52*43a90889SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(ret, "proc_pid_rusage");
53*43a90889SApple OSS Distributions 	T_ASSERT_EQ(ru.ri_lifetime_max_phys_footprint, ru.ri_interval_max_phys_footprint,
54*43a90889SApple OSS Distributions 	    "Max footprint and interval footprint are equal prior to dirtying memory");
55*43a90889SApple OSS Distributions 
56*43a90889SApple OSS Distributions 	ret = mach_vm_allocate(mach_task_self(), &addr, (mach_vm_size_t)ALLOC_SIZE_LARGE, VM_FLAGS_ANYWHERE);
57*43a90889SApple OSS Distributions 	T_QUIET;
58*43a90889SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "mach_vm_allocate(ALLOC_SIZE_LARGE)");
59*43a90889SApple OSS Distributions 
60*43a90889SApple OSS Distributions 	memset((void *)addr, 0xab, ALLOC_SIZE_LARGE);
61*43a90889SApple OSS Distributions 
62*43a90889SApple OSS Distributions 	ret = proc_pid_rusage(getpid(), RUSAGE_INFO_V4, (rusage_info_t *)&ru);
63*43a90889SApple OSS Distributions 	T_QUIET;
64*43a90889SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(ret, "proc_pid_rusage");
65*43a90889SApple OSS Distributions 	T_ASSERT_EQ(ru.ri_lifetime_max_phys_footprint, ru.ri_interval_max_phys_footprint,
66*43a90889SApple OSS Distributions 	    "Max footprint and interval footprint are equal after dirtying large memory region");
67*43a90889SApple OSS Distributions 
68*43a90889SApple OSS Distributions 	mach_vm_deallocate(mach_task_self(), addr, (mach_vm_size_t)ALLOC_SIZE_LARGE);
69*43a90889SApple OSS Distributions 
70*43a90889SApple OSS Distributions 	ret = proc_pid_rusage(getpid(), RUSAGE_INFO_V4, (rusage_info_t *)&ru);
71*43a90889SApple OSS Distributions 	T_QUIET;
72*43a90889SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(ret, "proc_pid_rusage");
73*43a90889SApple OSS Distributions 	T_ASSERT_EQ(ru.ri_lifetime_max_phys_footprint, ru.ri_interval_max_phys_footprint,
74*43a90889SApple OSS Distributions 	    "Max footprint and interval footprint are still equal after freeing large memory region");
75*43a90889SApple OSS Distributions 
76*43a90889SApple OSS Distributions 	ret = proc_reset_footprint_interval(getpid());
77*43a90889SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(ret, "proc_reset_footprint_interval()");
78*43a90889SApple OSS Distributions 
79*43a90889SApple OSS Distributions 	ret = proc_pid_rusage(getpid(), RUSAGE_INFO_V4, (rusage_info_t *)&ru);
80*43a90889SApple OSS Distributions 	T_QUIET;
81*43a90889SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(ret, "proc_pid_rusage");
82*43a90889SApple OSS Distributions 	T_ASSERT_GT(ru.ri_lifetime_max_phys_footprint, ru.ri_interval_max_phys_footprint,
83*43a90889SApple OSS Distributions 	    "Max footprint is greater than interval footprint after resetting interval");
84*43a90889SApple OSS Distributions 
85*43a90889SApple OSS Distributions 	ret = mach_vm_allocate(mach_task_self(), &addr, (mach_vm_size_t)ALLOC_SIZE_SMALL, VM_FLAGS_ANYWHERE);
86*43a90889SApple OSS Distributions 	T_QUIET;
87*43a90889SApple OSS Distributions 	T_ASSERT_MACH_SUCCESS(ret, "mach_vm_allocate(ALLOC_SIZE_SMALL)");
88*43a90889SApple OSS Distributions 	memset((void *)addr, 0xab, ALLOC_SIZE_SMALL);
89*43a90889SApple OSS Distributions 
90*43a90889SApple OSS Distributions 	ret = proc_pid_rusage(getpid(), RUSAGE_INFO_V4, (rusage_info_t *)&ru);
91*43a90889SApple OSS Distributions 	T_QUIET;
92*43a90889SApple OSS Distributions 	T_ASSERT_POSIX_SUCCESS(ret, "proc_pid_rusage");
93*43a90889SApple OSS Distributions 	T_ASSERT_GT(ru.ri_lifetime_max_phys_footprint, ru.ri_interval_max_phys_footprint,
94*43a90889SApple OSS Distributions 	    "Max footprint is still greater than interval footprint after dirtying small memory region");
95*43a90889SApple OSS Distributions }
96