blob: e8f15dbb89d02c2d21dbec26e19193a9de2a5d31 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Michael Holzheu31cb4bd2007-02-05 21:18:29 +01002/*
3 * Hypervisor filesystem for Linux on s390. z/VM implementation.
4 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02005 * Copyright IBM Corp. 2006
Michael Holzheu31cb4bd2007-02-05 21:18:29 +01006 * Author(s): Michael Holzheu <holzheu@de.ibm.com>
7 */
8
9#include <linux/types.h>
10#include <linux/errno.h>
11#include <linux/string.h>
12#include <linux/vmalloc.h>
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020013#include <asm/diag.h>
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010014#include <asm/ebcdic.h>
Michael Holzheu57b28f62010-05-17 10:00:20 +020015#include <asm/timex.h>
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010016#include "hypfs.h"
17
18#define NAME_LEN 8
Michael Holzheu57b28f62010-05-17 10:00:20 +020019#define DBFS_D2FC_HDR_VERSION 0
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010020
21static char local_guest[] = " ";
22static char all_guests[] = "* ";
Vasily Gorbik663d34c2022-01-20 16:23:19 +010023static char *all_groups = all_guests;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010024static char *guest_query;
25
26struct diag2fc_data {
27 __u32 version;
28 __u32 flags;
29 __u64 used_cpu;
30 __u64 el_time;
31 __u64 mem_min_kb;
32 __u64 mem_max_kb;
33 __u64 mem_share_kb;
34 __u64 mem_used_kb;
35 __u32 pcpus;
36 __u32 lcpus;
37 __u32 vcpus;
Michael Holzheu36a55402014-03-17 11:31:28 +010038 __u32 ocpus;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010039 __u32 cpu_max;
40 __u32 cpu_shares;
41 __u32 cpu_use_samp;
42 __u32 cpu_delay_samp;
43 __u32 page_wait_samp;
44 __u32 idle_samp;
45 __u32 other_samp;
46 __u32 total_samp;
47 char guest_name[NAME_LEN];
48};
49
50struct diag2fc_parm_list {
51 char userid[NAME_LEN];
52 char aci_grp[NAME_LEN];
53 __u64 addr;
54 __u32 size;
55 __u32 fmt;
56};
57
58static int diag2fc(int size, char* query, void *addr)
59{
60 unsigned long residual_cnt;
61 unsigned long rc;
62 struct diag2fc_parm_list parm_list;
63
64 memcpy(parm_list.userid, query, NAME_LEN);
65 ASCEBC(parm_list.userid, NAME_LEN);
Vasily Gorbik663d34c2022-01-20 16:23:19 +010066 memcpy(parm_list.aci_grp, all_groups, NAME_LEN);
67 ASCEBC(parm_list.aci_grp, NAME_LEN);
68 parm_list.addr = (unsigned long)addr;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010069 parm_list.size = size;
70 parm_list.fmt = 0x02;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010071 rc = -1;
72
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020073 diag_stat_inc(DIAG_STAT_X2FC);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010074 asm volatile(
75 " diag %0,%1,0x2fc\n"
Heiko Carstens6c22c982016-06-10 09:57:05 +020076 "0: nopr %%r7\n"
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010077 EX_TABLE(0b,0b)
78 : "=d" (residual_cnt), "+d" (rc) : "0" (&parm_list) : "memory");
79
80 if ((rc != 0 ) && (rc != -2))
81 return rc;
82 else
83 return -residual_cnt;
84}
85
Michael Holzheu57b28f62010-05-17 10:00:20 +020086/*
87 * Allocate buffer for "query" and store diag 2fc at "offset"
88 */
89static void *diag2fc_store(char *query, unsigned int *count, int offset)
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010090{
Michael Holzheu57b28f62010-05-17 10:00:20 +020091 void *data;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010092 int size;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010093
94 do {
95 size = diag2fc(0, query, NULL);
96 if (size < 0)
97 return ERR_PTR(-EACCES);
Michael Holzheu57b28f62010-05-17 10:00:20 +020098 data = vmalloc(size + offset);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +010099 if (!data)
100 return ERR_PTR(-ENOMEM);
Michael Holzheu57b28f62010-05-17 10:00:20 +0200101 if (diag2fc(size, query, data + offset) == 0)
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100102 break;
103 vfree(data);
104 } while (1);
Michael Holzheu57b28f62010-05-17 10:00:20 +0200105 *count = (size / sizeof(struct diag2fc_data));
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100106
107 return data;
108}
109
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100110static void diag2fc_free(const void *data)
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100111{
112 vfree(data);
113}
114
Al Virof78e41e2013-07-19 17:03:49 +0400115#define ATTRIBUTE(dir, name, member) \
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100116do { \
117 void *rc; \
Al Viroa118cfd2013-07-19 18:05:21 +0400118 rc = hypfs_create_u64(dir, name, member); \
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100119 if (IS_ERR(rc)) \
120 return PTR_ERR(rc); \
121} while(0)
122
Christophe JAILLET3f4b04e2019-07-21 14:33:21 +0200123static int hypfs_vm_create_guest(struct dentry *systems_dir,
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100124 struct diag2fc_data *data)
125{
126 char guest_name[NAME_LEN + 1] = {};
127 struct dentry *guest_dir, *cpus_dir, *samples_dir, *mem_dir;
128 int dedicated_flag, capped_value;
129
130 capped_value = (data->flags & 0x00000006) >> 1;
131 dedicated_flag = (data->flags & 0x00000008) >> 3;
132
133 /* guest dir */
134 memcpy(guest_name, data->guest_name, NAME_LEN);
135 EBCASC(guest_name, NAME_LEN);
Heiko Carstens1d802e22009-12-18 17:43:27 +0100136 strim(guest_name);
Al Viroa118cfd2013-07-19 18:05:21 +0400137 guest_dir = hypfs_mkdir(systems_dir, guest_name);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100138 if (IS_ERR(guest_dir))
139 return PTR_ERR(guest_dir);
Al Virof78e41e2013-07-19 17:03:49 +0400140 ATTRIBUTE(guest_dir, "onlinetime_us", data->el_time);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100141
142 /* logical cpu information */
Al Viroa118cfd2013-07-19 18:05:21 +0400143 cpus_dir = hypfs_mkdir(guest_dir, "cpus");
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100144 if (IS_ERR(cpus_dir))
145 return PTR_ERR(cpus_dir);
Al Virof78e41e2013-07-19 17:03:49 +0400146 ATTRIBUTE(cpus_dir, "cputime_us", data->used_cpu);
147 ATTRIBUTE(cpus_dir, "capped", capped_value);
148 ATTRIBUTE(cpus_dir, "dedicated", dedicated_flag);
149 ATTRIBUTE(cpus_dir, "count", data->vcpus);
Michael Holzheu36a55402014-03-17 11:31:28 +0100150 /*
151 * Note: The "weight_min" attribute got the wrong name.
152 * The value represents the number of non-stopped (operating)
153 * CPUS.
154 */
155 ATTRIBUTE(cpus_dir, "weight_min", data->ocpus);
Al Virof78e41e2013-07-19 17:03:49 +0400156 ATTRIBUTE(cpus_dir, "weight_max", data->cpu_max);
157 ATTRIBUTE(cpus_dir, "weight_cur", data->cpu_shares);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100158
159 /* memory information */
Al Viroa118cfd2013-07-19 18:05:21 +0400160 mem_dir = hypfs_mkdir(guest_dir, "mem");
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100161 if (IS_ERR(mem_dir))
162 return PTR_ERR(mem_dir);
Al Virof78e41e2013-07-19 17:03:49 +0400163 ATTRIBUTE(mem_dir, "min_KiB", data->mem_min_kb);
164 ATTRIBUTE(mem_dir, "max_KiB", data->mem_max_kb);
165 ATTRIBUTE(mem_dir, "used_KiB", data->mem_used_kb);
166 ATTRIBUTE(mem_dir, "share_KiB", data->mem_share_kb);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100167
168 /* samples */
Al Viroa118cfd2013-07-19 18:05:21 +0400169 samples_dir = hypfs_mkdir(guest_dir, "samples");
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100170 if (IS_ERR(samples_dir))
171 return PTR_ERR(samples_dir);
Al Virof78e41e2013-07-19 17:03:49 +0400172 ATTRIBUTE(samples_dir, "cpu_using", data->cpu_use_samp);
173 ATTRIBUTE(samples_dir, "cpu_delay", data->cpu_delay_samp);
174 ATTRIBUTE(samples_dir, "mem_delay", data->page_wait_samp);
175 ATTRIBUTE(samples_dir, "idle", data->idle_samp);
176 ATTRIBUTE(samples_dir, "other", data->other_samp);
177 ATTRIBUTE(samples_dir, "total", data->total_samp);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100178 return 0;
179}
180
Al Virof78e41e2013-07-19 17:03:49 +0400181int hypfs_vm_create_files(struct dentry *root)
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100182{
183 struct dentry *dir, *file;
184 struct diag2fc_data *data;
Michael Holzheu57b28f62010-05-17 10:00:20 +0200185 unsigned int count = 0;
186 int rc, i;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100187
Michael Holzheu57b28f62010-05-17 10:00:20 +0200188 data = diag2fc_store(guest_query, &count, 0);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100189 if (IS_ERR(data))
190 return PTR_ERR(data);
191
192 /* Hpervisor Info */
Al Viroa118cfd2013-07-19 18:05:21 +0400193 dir = hypfs_mkdir(root, "hyp");
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100194 if (IS_ERR(dir)) {
195 rc = PTR_ERR(dir);
196 goto failed;
197 }
Al Viroa118cfd2013-07-19 18:05:21 +0400198 file = hypfs_create_str(dir, "type", "z/VM Hypervisor");
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100199 if (IS_ERR(file)) {
200 rc = PTR_ERR(file);
201 goto failed;
202 }
203
204 /* physical cpus */
Al Viroa118cfd2013-07-19 18:05:21 +0400205 dir = hypfs_mkdir(root, "cpus");
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100206 if (IS_ERR(dir)) {
207 rc = PTR_ERR(dir);
208 goto failed;
209 }
Al Viroa118cfd2013-07-19 18:05:21 +0400210 file = hypfs_create_u64(dir, "count", data->lcpus);
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100211 if (IS_ERR(file)) {
212 rc = PTR_ERR(file);
213 goto failed;
214 }
215
216 /* guests */
Al Viroa118cfd2013-07-19 18:05:21 +0400217 dir = hypfs_mkdir(root, "systems");
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100218 if (IS_ERR(dir)) {
219 rc = PTR_ERR(dir);
220 goto failed;
221 }
222
223 for (i = 0; i < count; i++) {
Christophe JAILLET3f4b04e2019-07-21 14:33:21 +0200224 rc = hypfs_vm_create_guest(dir, &(data[i]));
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100225 if (rc)
226 goto failed;
227 }
228 diag2fc_free(data);
229 return 0;
230
231failed:
232 diag2fc_free(data);
233 return rc;
234}
235
Michael Holzheu57b28f62010-05-17 10:00:20 +0200236struct dbfs_d2fc_hdr {
237 u64 len; /* Length of d2fc buffer without header */
238 u16 version; /* Version of header */
Heiko Carstens01f224b2021-02-08 16:36:52 +0100239 union tod_clock tod_ext; /* TOD clock for d2fc */
Michael Holzheu57b28f62010-05-17 10:00:20 +0200240 u64 count; /* Number of VM guests in d2fc buffer */
241 char reserved[30];
242} __attribute__ ((packed));
243
244struct dbfs_d2fc {
245 struct dbfs_d2fc_hdr hdr; /* 64 byte header */
246 char buf[]; /* d2fc buffer */
247} __attribute__ ((packed));
248
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100249static int dbfs_diag2fc_create(void **data, void **data_free_ptr, size_t *size)
Michael Holzheu57b28f62010-05-17 10:00:20 +0200250{
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100251 struct dbfs_d2fc *d2fc;
Michael Holzheu57b28f62010-05-17 10:00:20 +0200252 unsigned int count;
253
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100254 d2fc = diag2fc_store(guest_query, &count, sizeof(d2fc->hdr));
255 if (IS_ERR(d2fc))
256 return PTR_ERR(d2fc);
Heiko Carstens01f224b2021-02-08 16:36:52 +0100257 store_tod_clock_ext(&d2fc->hdr.tod_ext);
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100258 d2fc->hdr.len = count * sizeof(struct diag2fc_data);
259 d2fc->hdr.version = DBFS_D2FC_HDR_VERSION;
260 d2fc->hdr.count = count;
261 memset(&d2fc->hdr.reserved, 0, sizeof(d2fc->hdr.reserved));
262 *data = d2fc;
263 *data_free_ptr = d2fc;
264 *size = d2fc->hdr.len + sizeof(struct dbfs_d2fc_hdr);
Michael Holzheu57b28f62010-05-17 10:00:20 +0200265 return 0;
266}
267
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100268static struct hypfs_dbfs_file dbfs_file_2fc = {
269 .name = "diag_2fc",
270 .data_create = dbfs_diag2fc_create,
271 .data_free = diag2fc_free,
Michael Holzheu57b28f62010-05-17 10:00:20 +0200272};
273
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100274int hypfs_vm_init(void)
275{
Michael Holzheu57b28f62010-05-17 10:00:20 +0200276 if (!MACHINE_IS_VM)
277 return 0;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100278 if (diag2fc(0, all_guests, NULL) > 0)
279 guest_query = all_guests;
280 else if (diag2fc(0, local_guest, NULL) > 0)
281 guest_query = local_guest;
282 else
283 return -EACCES;
Greg Kroah-Hartmanf36108c2019-01-22 16:21:00 +0100284 hypfs_dbfs_create_file(&dbfs_file_2fc);
285 return 0;
Michael Holzheu31cb4bd2007-02-05 21:18:29 +0100286}
Michael Holzheu57b28f62010-05-17 10:00:20 +0200287
288void hypfs_vm_exit(void)
289{
290 if (!MACHINE_IS_VM)
291 return;
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100292 hypfs_dbfs_remove_file(&dbfs_file_2fc);
Michael Holzheu57b28f62010-05-17 10:00:20 +0200293}