]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/mach/vm_region.h
xnu-6153.121.1.tar.gz
[apple/xnu.git] / osfmk / mach / vm_region.h
index 3677bc25c19340c2769904aa213b3755bf9caa1a..21abcad6e55e1388a3370a0f5a3927bd13636793 100644 (file)
@@ -1,23 +1,29 @@
 /*
- * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2016 Apple Computer, Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
- * 
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License").  You may not use this file except in compliance with the
- * License.  Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
- * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
+ *
+ * This file contains Original Code and/or Modifications of Original Code
+ * as defined in and that are subject to the Apple Public Source License
+ * Version 2.0 (the 'License'). You may not use this file except in
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * unlawful or unlicensed copies of an Apple operating system, or to
+ * circumvent, violate, or enable the circumvention or violation of, any
+ * terms of an Apple operating system software license agreement.
+ *
+ * Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this file.
+ *
+ * The Original Code and all software distributed under the License are
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
- * 
- * @APPLE_LICENSE_HEADER_END@
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+ * Please see the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*
  * @OSF_COPYRIGHT@
@@ -29,7 +35,7 @@
  *
  */
 
-#ifndef        _MACH_VM_REGION_H_
+#ifndef _MACH_VM_REGION_H_
 #define _MACH_VM_REGION_H_
 
 #include <mach/boolean.h>
 
 #include <sys/cdefs.h>
 
-#if __DARWIN_ALIGN_POWER
-#pragma options align=power
-#endif
+#pragma pack(push, 4)
+
+// LP64todo: all the current tools are 32bit, obviously never worked for 64b
+// so probably should be a real 32b ID vs. ptr.
+// Current users just check for equality
+typedef uint32_t vm32_object_id_t;
 
 /*
  *     Types defined:
  */
 
 #define VM_REGION_INFO_MAX      (1024)
-typedef int    *vm_region_info_t;
-typedef int    *vm_region_info_64_t;
-typedef int    *vm_region_recurse_info_t;
-typedef int    *vm_region_recurse_info_64_t;
-typedef int     vm_region_flavor_t;
-typedef int     vm_region_info_data_t[VM_REGION_INFO_MAX];
-
-#define VM_REGION_BASIC_INFO_64                9
+typedef int     *vm_region_info_t;
+typedef int     *vm_region_info_64_t;
+typedef int     *vm_region_recurse_info_t;
+typedef int     *vm_region_recurse_info_64_t;
+typedef int      vm_region_flavor_t;
+typedef int      vm_region_info_data_t[VM_REGION_INFO_MAX];
+
+#define VM_REGION_BASIC_INFO_64         9
 struct vm_region_basic_info_64 {
-       vm_prot_t               protection;
-       vm_prot_t               max_protection;
-       vm_inherit_t            inheritance;
-       boolean_t               shared;
-       boolean_t               reserved;
-       memory_object_offset_t  offset;
-       vm_behavior_t           behavior;
-       unsigned short          user_wired_count;
+       vm_prot_t               protection;
+       vm_prot_t               max_protection;
+       vm_inherit_t            inheritance;
+       boolean_t               shared;
+       boolean_t               reserved;
+       memory_object_offset_t  offset;
+       vm_behavior_t           behavior;
+       unsigned short          user_wired_count;
 };
-typedef struct vm_region_basic_info_64         *vm_region_basic_info_64_t;
-typedef struct vm_region_basic_info_64          vm_region_basic_info_data_64_t;
+typedef struct vm_region_basic_info_64          *vm_region_basic_info_64_t;
+typedef struct vm_region_basic_info_64           vm_region_basic_info_data_64_t;
 
-#define VM_REGION_BASIC_INFO_COUNT_64  ((mach_msg_type_number_t) \
+#define VM_REGION_BASIC_INFO_COUNT_64   ((mach_msg_type_number_t) \
        (sizeof(vm_region_basic_info_data_64_t)/sizeof(int)))
 
 /*
@@ -84,7 +93,7 @@ typedef struct vm_region_basic_info_64                 vm_region_basic_info_data_64_t;
  * automatically converts it to a VM_REGION_BASIC_INFO_64.
  * Please use that explicitly instead.
  */
-#define VM_REGION_BASIC_INFO           10
+#define VM_REGION_BASIC_INFO            10
 
 /*
  * This is the legacy basic info structure.  It is
@@ -92,24 +101,22 @@ typedef struct vm_region_basic_info_64              vm_region_basic_info_data_64_t;
  * offset back - too small for many larger objects (e.g. files).
  */
 struct vm_region_basic_info {
-       vm_prot_t               protection;
-       vm_prot_t               max_protection;
-       vm_inherit_t            inheritance;
-       boolean_t               shared;
-       boolean_t               reserved;
-       uint32_t                offset; /* too small for a real offset */
-       vm_behavior_t           behavior;
-       unsigned short          user_wired_count;
+       vm_prot_t               protection;
+       vm_prot_t               max_protection;
+       vm_inherit_t            inheritance;
+       boolean_t               shared;
+       boolean_t               reserved;
+       uint32_t                offset; /* too small for a real offset */
+       vm_behavior_t           behavior;
+       unsigned short          user_wired_count;
 };
 
-typedef struct vm_region_basic_info            *vm_region_basic_info_t;
-typedef struct vm_region_basic_info             vm_region_basic_info_data_t;
+typedef struct vm_region_basic_info             *vm_region_basic_info_t;
+typedef struct vm_region_basic_info              vm_region_basic_info_data_t;
 
 #define VM_REGION_BASIC_INFO_COUNT ((mach_msg_type_number_t) \
        (sizeof(vm_region_basic_info_data_t)/sizeof(int)))
 
-#define VM_REGION_EXTENDED_INFO        11
-
 #define SM_COW             1
 #define SM_PRIVATE         2
 #define SM_EMPTY           3
@@ -117,8 +124,9 @@ typedef struct vm_region_basic_info          vm_region_basic_info_data_t;
 #define SM_TRUESHARED      5
 #define SM_PRIVATE_ALIASED 6
 #define SM_SHARED_ALIASED  7
+#define SM_LARGE_PAGE      8
 
-/* 
+/*
  * For submap info,  the SM flags above are overlayed when a submap
  * is encountered.  The field denotes whether or not machine level mapping
  * information is being shared.  PTE's etc.  When such sharing is taking
@@ -126,45 +134,77 @@ typedef struct vm_region_basic_info                vm_region_basic_info_data_t;
  * back.
  */
 
+#ifdef MACH_KERNEL_PRIVATE
+#define VM_REGION_EXTENDED_INFO__legacy 11
+struct vm_region_extended_info__legacy {
+       vm_prot_t               protection;
+       unsigned int            user_tag;
+       unsigned int            pages_resident;
+       unsigned int            pages_shared_now_private;
+       unsigned int            pages_swapped_out;
+       unsigned int            pages_dirtied;
+       unsigned int            ref_count;
+       unsigned short          shadow_depth;
+       unsigned char           external_pager;
+       unsigned char           share_mode;
+       /*
+        * XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX
+        *  DO NOT EXTEND THIS DATA STRUCTURE.
+        *  IT IS NOW ABANDONED AND REPLACED WITH vm_region_extended_info BELOW.
+        * XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX
+        */
+};
+#define VM_REGION_EXTENDED_INFO_COUNT__legacy               \
+       ((mach_msg_type_number_t)                           \
+        (sizeof (struct vm_region_extended_info__legacy) / \
+         sizeof (natural_t)))
+#endif /* MACH_KERNEL_PRIVATE */
+
+
+
+#define VM_REGION_EXTENDED_INFO 13
 struct vm_region_extended_info {
-       vm_prot_t               protection;
-        unsigned int            user_tag;
-        unsigned int            pages_resident;
-        unsigned int            pages_shared_now_private;
-        unsigned int            pages_swapped_out;
-        unsigned int            pages_dirtied;
-        unsigned int            ref_count;
-        unsigned short          shadow_depth;
-        unsigned char           external_pager;
-        unsigned char           share_mode;
+       vm_prot_t               protection;
+       unsigned int            user_tag;
+       unsigned int            pages_resident;
+       unsigned int            pages_shared_now_private;
+       unsigned int            pages_swapped_out;
+       unsigned int            pages_dirtied;
+       unsigned int            ref_count;
+       unsigned short          shadow_depth;
+       unsigned char           external_pager;
+       unsigned char           share_mode;
+       unsigned int            pages_reusable;
 };
+typedef struct vm_region_extended_info          *vm_region_extended_info_t;
+typedef struct vm_region_extended_info           vm_region_extended_info_data_t;
+#define VM_REGION_EXTENDED_INFO_COUNT                   \
+       ((mach_msg_type_number_t)                       \
+        (sizeof (vm_region_extended_info_data_t) / sizeof (natural_t)))
 
-typedef struct vm_region_extended_info         *vm_region_extended_info_t;
-typedef struct vm_region_extended_info          vm_region_extended_info_data_t;
 
-#define VM_REGION_EXTENDED_INFO_COUNT  ((mach_msg_type_number_t) \
-       (sizeof(vm_region_extended_info_data_t)/sizeof(int)))
 
 
-#define VM_REGION_TOP_INFO     12
+#define VM_REGION_TOP_INFO      12
 
 struct vm_region_top_info {
-        unsigned int            obj_id;
-        unsigned int            ref_count;
-        unsigned int            private_pages_resident;
-        unsigned int            shared_pages_resident;
-        unsigned char           share_mode;
+       unsigned int            obj_id;
+       unsigned int            ref_count;
+       unsigned int            private_pages_resident;
+       unsigned int            shared_pages_resident;
+       unsigned char           share_mode;
 };
 
-typedef struct vm_region_top_info              *vm_region_top_info_t;
-typedef struct vm_region_top_info               vm_region_top_info_data_t;
+typedef struct vm_region_top_info               *vm_region_top_info_t;
+typedef struct vm_region_top_info                vm_region_top_info_data_t;
 
-#define VM_REGION_TOP_INFO_COUNT ((mach_msg_type_number_t) \
-       (sizeof(vm_region_top_info_data_t)/sizeof(int)))
+#define VM_REGION_TOP_INFO_COUNT                                        \
+       ((mach_msg_type_number_t)                                       \
+        (sizeof(vm_region_top_info_data_t) / sizeof(natural_t)))
 
 
 
-/* 
+/*
  * vm_region_submap_info will return information on a submap or object.
  * The user supplies a nesting level on the call.  When a walk of the
  * user's map is done and a submap is encountered, the nesting count is
@@ -181,60 +221,105 @@ typedef struct vm_region_top_info                 vm_region_top_info_data_t;
  *
  * Object only fields are filled in through a walking of the object shadow
  * chain (where one is present), and a walking of the resident page queue.
- * 
+ *
  */
 
 struct vm_region_submap_info {
-       vm_prot_t               protection;     /* present access protection */
-       vm_prot_t               max_protection; /* max avail through vm_prot */
-       vm_inherit_t            inheritance;/* behavior of map/obj on fork */
-       uint32_t                offset;         /* offset into object/map */
-        unsigned int            user_tag;      /* user tag on map entry */
-        unsigned int            pages_resident;        /* only valid for objects */
-        unsigned int            pages_shared_now_private; /* only for objects */
-        unsigned int            pages_swapped_out; /* only for objects */
-        unsigned int            pages_dirtied;   /* only for objects */
-        unsigned int            ref_count;      /* obj/map mappers, etc */
-        unsigned short          shadow_depth;  /* only for obj */
-        unsigned char           external_pager;  /* only for obj */
-        unsigned char           share_mode;    /* see enumeration */
-       boolean_t               is_submap;      /* submap vs obj */
-       vm_behavior_t           behavior;       /* access behavior hint */
-       vm_offset_t             object_id;      /* obj/map name, not a handle */
-       unsigned short          user_wired_count; 
+       vm_prot_t               protection;     /* present access protection */
+       vm_prot_t               max_protection; /* max avail through vm_prot */
+       vm_inherit_t            inheritance;/* behavior of map/obj on fork */
+       uint32_t                offset;         /* offset into object/map */
+       unsigned int            user_tag;       /* user tag on map entry */
+       unsigned int            pages_resident; /* only valid for objects */
+       unsigned int            pages_shared_now_private; /* only for objects */
+       unsigned int            pages_swapped_out; /* only for objects */
+       unsigned int            pages_dirtied;   /* only for objects */
+       unsigned int            ref_count;       /* obj/map mappers, etc */
+       unsigned short          shadow_depth;   /* only for obj */
+       unsigned char           external_pager;  /* only for obj */
+       unsigned char           share_mode;     /* see enumeration */
+       boolean_t               is_submap;      /* submap vs obj */
+       vm_behavior_t           behavior;       /* access behavior hint */
+       vm32_object_id_t        object_id;      /* obj/map name, not a handle */
+       unsigned short          user_wired_count;
 };
 
-typedef struct vm_region_submap_info           *vm_region_submap_info_t;
-typedef struct vm_region_submap_info            vm_region_submap_info_data_t;
+typedef struct vm_region_submap_info            *vm_region_submap_info_t;
+typedef struct vm_region_submap_info             vm_region_submap_info_data_t;
 
-#define VM_REGION_SUBMAP_INFO_COUNT ((mach_msg_type_number_t) \
-       (sizeof(vm_region_submap_info_data_t)/sizeof(int)))
+#define VM_REGION_SUBMAP_INFO_COUNT                                     \
+       ((mach_msg_type_number_t)                                       \
+        (sizeof(vm_region_submap_info_data_t) / sizeof(natural_t)))
 
 struct vm_region_submap_info_64 {
-       vm_prot_t               protection;     /* present access protection */
-       vm_prot_t               max_protection; /* max avail through vm_prot */
-       vm_inherit_t            inheritance;/* behavior of map/obj on fork */
-       memory_object_offset_t  offset;         /* offset into object/map */
-        unsigned int            user_tag;      /* user tag on map entry */
-        unsigned int            pages_resident;        /* only valid for objects */
-        unsigned int            pages_shared_now_private; /* only for objects */
-        unsigned int            pages_swapped_out; /* only for objects */
-        unsigned int            pages_dirtied;   /* only for objects */
-        unsigned int            ref_count;      /* obj/map mappers, etc */
-        unsigned short          shadow_depth;  /* only for obj */
-        unsigned char           external_pager;  /* only for obj */
-        unsigned char           share_mode;    /* see enumeration */
-       boolean_t               is_submap;      /* submap vs obj */
-       vm_behavior_t           behavior;       /* access behavior hint */
-       vm_offset_t             object_id;      /* obj/map name, not a handle */
-       unsigned short          user_wired_count; 
+       vm_prot_t               protection;     /* present access protection */
+       vm_prot_t               max_protection; /* max avail through vm_prot */
+       vm_inherit_t            inheritance;/* behavior of map/obj on fork */
+       memory_object_offset_t  offset;         /* offset into object/map */
+       unsigned int            user_tag;       /* user tag on map entry */
+       unsigned int            pages_resident; /* only valid for objects */
+       unsigned int            pages_shared_now_private; /* only for objects */
+       unsigned int            pages_swapped_out; /* only for objects */
+       unsigned int            pages_dirtied;   /* only for objects */
+       unsigned int            ref_count;       /* obj/map mappers, etc */
+       unsigned short          shadow_depth;   /* only for obj */
+       unsigned char           external_pager;  /* only for obj */
+       unsigned char           share_mode;     /* see enumeration */
+       boolean_t               is_submap;      /* submap vs obj */
+       vm_behavior_t           behavior;       /* access behavior hint */
+       vm32_object_id_t        object_id;      /* obj/map name, not a handle */
+       unsigned short          user_wired_count;
+       unsigned int            pages_reusable;
+       vm_object_id_t          object_id_full;
 };
 
-typedef struct vm_region_submap_info_64                *vm_region_submap_info_64_t;
-typedef struct vm_region_submap_info_64                 vm_region_submap_info_data_64_t;
+typedef struct vm_region_submap_info_64         *vm_region_submap_info_64_t;
+typedef struct vm_region_submap_info_64          vm_region_submap_info_data_64_t;
+
+#define VM_REGION_SUBMAP_INFO_V2_SIZE   \
+       (sizeof (vm_region_submap_info_data_64_t))
+#define VM_REGION_SUBMAP_INFO_V1_SIZE   \
+       (VM_REGION_SUBMAP_INFO_V2_SIZE - \
+        sizeof (vm_object_id_t) /* object_id_full */ )
+#define VM_REGION_SUBMAP_INFO_V0_SIZE   \
+       (VM_REGION_SUBMAP_INFO_V1_SIZE - \
+        sizeof (unsigned int) /* pages_reusable */ )
+
+#define VM_REGION_SUBMAP_INFO_V2_COUNT_64 \
+       ((mach_msg_type_number_t) \
+        (VM_REGION_SUBMAP_INFO_V2_SIZE / sizeof (natural_t)))
+#define VM_REGION_SUBMAP_INFO_V1_COUNT_64 \
+       ((mach_msg_type_number_t) \
+        (VM_REGION_SUBMAP_INFO_V1_SIZE / sizeof (natural_t)))
+#define VM_REGION_SUBMAP_INFO_V0_COUNT_64 \
+       ((mach_msg_type_number_t) \
+        (VM_REGION_SUBMAP_INFO_V0_SIZE / sizeof (natural_t)))
+
+/* set this to the latest version */
+#define VM_REGION_SUBMAP_INFO_COUNT_64          VM_REGION_SUBMAP_INFO_V2_COUNT_64
+
+struct vm_region_submap_short_info_64 {
+       vm_prot_t               protection;     /* present access protection */
+       vm_prot_t               max_protection; /* max avail through vm_prot */
+       vm_inherit_t            inheritance;/* behavior of map/obj on fork */
+       memory_object_offset_t  offset;         /* offset into object/map */
+       unsigned int            user_tag;       /* user tag on map entry */
+       unsigned int            ref_count;       /* obj/map mappers, etc */
+       unsigned short          shadow_depth;   /* only for obj */
+       unsigned char           external_pager;  /* only for obj */
+       unsigned char           share_mode;     /* see enumeration */
+       boolean_t               is_submap;      /* submap vs obj */
+       vm_behavior_t           behavior;       /* access behavior hint */
+       vm32_object_id_t        object_id;      /* obj/map name, not a handle */
+       unsigned short          user_wired_count;
+};
+
+typedef struct vm_region_submap_short_info_64   *vm_region_submap_short_info_64_t;
+typedef struct vm_region_submap_short_info_64    vm_region_submap_short_info_data_64_t;
 
-#define VM_REGION_SUBMAP_INFO_COUNT_64         ((mach_msg_type_number_t) \
-       (sizeof(vm_region_submap_info_data_64_t)/sizeof(int)))
+#define VM_REGION_SUBMAP_SHORT_INFO_COUNT_64                            \
+       ((mach_msg_type_number_t)                                       \
+        (sizeof (vm_region_submap_short_info_data_64_t) / sizeof (natural_t)))
 
 struct mach_vm_read_entry {
        mach_vm_address_t address;
@@ -242,17 +327,48 @@ struct mach_vm_read_entry {
 };
 
 struct vm_read_entry {
-       vm_address_t    address;
-       vm_size_t       size;
+       vm_address_t    address;
+       vm_size_t       size;
 };
 
-#define VM_MAP_ENTRY_MAX  (256)
+#ifdef VM32_SUPPORT
+struct vm32_read_entry {
+       vm32_address_t  address;
+       vm32_size_t     size;
+};
+#endif
+
 
-typedef struct mach_vm_read_entry      mach_vm_read_entry_t[VM_MAP_ENTRY_MAX];
-typedef struct vm_read_entry           vm_read_entry_t[VM_MAP_ENTRY_MAX];
+#define VM_MAP_ENTRY_MAX  (256)
 
-#if __DARWIN_ALIGN_POWER
-#pragma options align=reset
+typedef struct mach_vm_read_entry       mach_vm_read_entry_t[VM_MAP_ENTRY_MAX];
+typedef struct vm_read_entry            vm_read_entry_t[VM_MAP_ENTRY_MAX];
+#ifdef VM32_SUPPORT
+typedef struct vm32_read_entry          vm32_read_entry_t[VM_MAP_ENTRY_MAX];
 #endif
 
-#endif /*_MACH_VM_REGION_H_*/
+#pragma pack(pop)
+
+
+#define VM_PAGE_INFO_MAX
+typedef int *vm_page_info_t;
+typedef int vm_page_info_data_t[VM_PAGE_INFO_MAX];
+typedef int vm_page_info_flavor_t;
+
+#define VM_PAGE_INFO_BASIC              1
+struct vm_page_info_basic {
+       int                     disposition;
+       int                     ref_count;
+       vm_object_id_t          object_id;
+       memory_object_offset_t  offset;
+       int                     depth;
+       int                     __pad; /* pad to 64-bit boundary */
+};
+typedef struct vm_page_info_basic               *vm_page_info_basic_t;
+typedef struct vm_page_info_basic               vm_page_info_basic_data_t;
+
+#define VM_PAGE_INFO_BASIC_COUNT        ((mach_msg_type_number_t) \
+       (sizeof(vm_page_info_basic_data_t)/sizeof(int)))
+
+
+#endif  /*_MACH_VM_REGION_H_*/