aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/litmus_proc.c
blob: ebea92da0a3dcb755fdf6d2cabb2878ddfc9d0d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
/*
 * litmus_proc.c -- Implementation of the /proc/litmus directory tree.
 */

#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/uaccess.h>
#include <linux/seq_file.h>

#include <litmus/debug_trace.h>
#include <litmus/litmus.h>
#include <litmus/litmus_proc.h>

#include <litmus/clustered.h>

/* in litmus/litmus.c */
extern atomic_t rt_task_count;

static struct proc_dir_entry *litmus_dir = NULL,
	*curr_file = NULL,
	*stat_file = NULL,
	*plugs_dir = NULL,
#ifdef CONFIG_RELEASE_MASTER
	*release_master_file = NULL,
#endif
	*plugs_file = NULL,
	*domains_dir = NULL,
	*cpus_dir = NULL;


/* in litmus/sync.c */
int count_tasks_waiting_for_release(void);

/* in litmus/sched_edfsc.c */
int count_migrating_tasks(void);

static int litmus_stats_proc_show(struct seq_file *m, void *v)
{
        seq_printf(m,
		   "real-time tasks   = %d\n"
		   "ready for release = %d\n"
		   "migrating tasks   = %d\n",
		   atomic_read(&rt_task_count),
		   count_tasks_waiting_for_release(),
		   count_migrating_tasks());
	return 0;
}

static int litmus_stats_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, litmus_stats_proc_show, PDE_DATA(inode));
}

static const struct file_operations litmus_stats_proc_fops = {
	.open		= litmus_stats_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};


static int litmus_loaded_proc_show(struct seq_file *m, void *v)
{
	print_sched_plugins(m);
	return 0;
}

static int litmus_loaded_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, litmus_loaded_proc_show, PDE_DATA(inode));
}

static const struct file_operations litmus_loaded_proc_fops = {
	.open		= litmus_loaded_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};




/* in litmus/litmus.c */
int switch_sched_plugin(struct sched_plugin*);

static ssize_t litmus_active_proc_write(struct file *file,
					const char __user *buffer, size_t count,
					loff_t *ppos)
{
	char name[65];
	struct sched_plugin* found;
	ssize_t ret = -EINVAL;
	int err;


	ret = copy_and_chomp(name, sizeof(name), buffer, count);
	if (ret < 0)
		return ret;

	found = find_sched_plugin(name);

	if (found) {
		err = switch_sched_plugin(found);
		if (err) {
			printk(KERN_INFO "Could not switch plugin: %d\n", err);
			ret = err;
		}
	} else {
		printk(KERN_INFO "Plugin '%s' is unknown.\n", name);
		ret = -ESRCH;
	}

	return ret;
}

static int litmus_active_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%s\n", litmus->plugin_name);
	return 0;
}

static int litmus_active_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, litmus_active_proc_show, PDE_DATA(inode));
}

static const struct file_operations litmus_active_proc_fops = {
	.open		= litmus_active_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= litmus_active_proc_write,
};


#ifdef CONFIG_RELEASE_MASTER
static ssize_t litmus_release_master_proc_write(
	struct file *file,
	const char __user *buffer, size_t count,
	loff_t *ppos)
{
	int cpu, err, online = 0;
	char msg[64];
	ssize_t len;

	len = copy_and_chomp(msg, sizeof(msg), buffer, count);

	if (len < 0)
		return len;

	if (strcmp(msg, "NO_CPU") == 0)
		atomic_set(&release_master_cpu, NO_CPU);
	else {
		err = sscanf(msg, "%d", &cpu);
		if (err == 1 && cpu >= 0 && (online = cpu_online(cpu))) {
			atomic_set(&release_master_cpu, cpu);
		} else {
			TRACE("invalid release master: '%s' "
			      "(err:%d cpu:%d online:%d)\n",
			      msg, err, cpu, online);
			len = -EINVAL;
		}
	}
	return len;
}

static int litmus_release_master_proc_show(struct seq_file *m, void *v)
{
	int master;
	master = atomic_read(&release_master_cpu);
	if (master == NO_CPU)
		seq_printf(m, "NO_CPU\n");
	else
		seq_printf(m, "%d\n", master);
	return 0;
}

static int litmus_release_master_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, litmus_release_master_proc_show, PDE_DATA(inode));
}

static const struct file_operations litmus_release_master_proc_fops = {
	.open		= litmus_release_master_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= litmus_release_master_proc_write,
};
#endif

int __init init_litmus_proc(void)
{
	litmus_dir = proc_mkdir("litmus", NULL);
	if (!litmus_dir) {
		printk(KERN_ERR "Could not allocate LITMUS^RT procfs entry.\n");
		return -ENOMEM;
	}

	curr_file = proc_create("active_plugin", 0644, litmus_dir,
				&litmus_active_proc_fops);

	if (!curr_file) {
		printk(KERN_ERR "Could not allocate active_plugin "
		       "procfs entry.\n");
		return -ENOMEM;
	}

#ifdef CONFIG_RELEASE_MASTER
	release_master_file = proc_create("release_master", 0644, litmus_dir,
					  &litmus_release_master_proc_fops);
	if (!release_master_file) {
		printk(KERN_ERR "Could not allocate release_master "
		       "procfs entry.\n");
		return -ENOMEM;
	}
#endif

	stat_file = proc_create("stats", 0444, litmus_dir, &litmus_stats_proc_fops);

	plugs_dir = proc_mkdir("plugins", litmus_dir);
	if (!plugs_dir){
		printk(KERN_ERR "Could not allocate plugins directory "
				"procfs entry.\n");
		return -ENOMEM;
	}

	plugs_file = proc_create("loaded", 0444, plugs_dir,
				 &litmus_loaded_proc_fops);

	domains_dir = proc_mkdir("domains", litmus_dir);
	if (!domains_dir) {
		printk(KERN_ERR "Could not allocate domains directory "
				"procfs entry.\n");
		return -ENOMEM;
	}

	cpus_dir = proc_mkdir("cpus", litmus_dir);
	if (!cpus_dir) {
		printk(KERN_ERR "Could not allocate cpus directory "
				"procfs entry.\n");
		return -ENOMEM;
	}

	return 0;
}

void exit_litmus_proc(void)
{
	if (cpus_dir || domains_dir) {
		deactivate_domain_proc();
		if (cpus_dir)
			remove_proc_entry("cpus", litmus_dir);
		if (domains_dir)
			remove_proc_entry("domains", litmus_dir);
	}
	if (plugs_file)
		remove_proc_entry("loaded", plugs_dir);
	if (plugs_dir)
		remove_proc_entry("plugins", litmus_dir);
	if (stat_file)
		remove_proc_entry("stats", litmus_dir);
	if (curr_file)
		remove_proc_entry("active_plugin", litmus_dir);
#ifdef CONFIG_RELEASE_MASTER
	if (release_master_file)
		remove_proc_entry("release_master", litmus_dir);
#endif
	if (litmus_dir)
		remove_proc_entry("litmus", NULL);
}

long make_plugin_proc_dir(struct sched_plugin* plugin,
		struct proc_dir_entry** pde_in)
{
	struct proc_dir_entry *pde_new = NULL;
	long rv;

	if (!plugin || !plugin->plugin_name){
		printk(KERN_ERR "Invalid plugin struct passed to %s.\n",
				__func__);
		rv = -EINVAL;
		goto out_no_pde;
	}

	if (!plugs_dir){
		printk(KERN_ERR "Could not make plugin sub-directory, because "
				"/proc/litmus/plugins does not exist.\n");
		rv = -ENOENT;
		goto out_no_pde;
	}

	pde_new = proc_mkdir(plugin->plugin_name, plugs_dir);
	if (!pde_new){
		printk(KERN_ERR "Could not make plugin sub-directory: "
				"out of memory?.\n");
		rv = -ENOMEM;
		goto out_no_pde;
	}

	rv = 0;
	*pde_in = pde_new;
	goto out_ok;

out_no_pde:
	*pde_in = NULL;
out_ok:
	return rv;
}

void remove_plugin_proc_dir(struct sched_plugin* plugin)
{
	if (!plugin || !plugin->plugin_name){
		printk(KERN_ERR "Invalid plugin struct passed to %s.\n",
				__func__);
		return;
	}
	remove_proc_entry(plugin->plugin_name, plugs_dir);
}



/* misc. I/O helper functions */

int copy_and_chomp(char *kbuf, unsigned long ksize,
		   __user const char* ubuf, unsigned long ulength)
{
	/* caller must provide buffer space */
	BUG_ON(!ksize);

	ksize--; /* leave space for null byte */

	if (ksize > ulength)
		ksize = ulength;

	if(copy_from_user(kbuf, ubuf, ksize))
		return -EFAULT;

	kbuf[ksize] = '\0';

	/* chomp kbuf */
	if (ksize > 0 && kbuf[ksize - 1] == '\n')
		kbuf[ksize - 1] = '\0';

	return ksize;
}

/* helper functions for clustered plugins */
static const char* cache_level_names[] = {
	"ALL",
	"L1",
	"L2",
	"L3",
};

int parse_cache_level(const char *cache_name, enum cache_level *level)
{
	int err = -EINVAL;
	int i;
	/* do a quick and dirty comparison to find the cluster size */
	for (i = GLOBAL_CLUSTER; i <= L3_CLUSTER; i++)
		if (!strcmp(cache_name, cache_level_names[i])) {
			*level = (enum cache_level) i;
			err = 0;
			break;
		}
	return err;
}

const char* cache_level_name(enum cache_level level)
{
	int idx = level;

	if (idx >= GLOBAL_CLUSTER && idx <= L3_CLUSTER)
		return cache_level_names[idx];
	else
		return "INVALID";
}




/* proc file interface to configure the cluster size */

static ssize_t litmus_cluster_proc_write(struct file *file,
					const char __user *buffer, size_t count,
					loff_t *ppos)
{
	enum cache_level *level = (enum cache_level *) PDE_DATA(file_inode(file));
	ssize_t len;
	char cache_name[8];

	len = copy_and_chomp(cache_name, sizeof(cache_name), buffer, count);

	if (len > 0 && parse_cache_level(cache_name, level)) {
		printk(KERN_INFO "Cluster '%s' is unknown.\n", cache_name);
		len = -EINVAL;
	}

	return len;
}

static int litmus_cluster_proc_show(struct seq_file *m, void *v)
{
	enum cache_level *level = (enum cache_level *)  m->private;

	seq_printf(m, "%s\n", cache_level_name(*level));
	return 0;
}

static int litmus_cluster_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, litmus_cluster_proc_show, PDE_DATA(inode));
}

static const struct file_operations litmus_cluster_proc_fops = {
	.open		= litmus_cluster_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= litmus_cluster_proc_write,
};

struct proc_dir_entry* create_cluster_file(struct proc_dir_entry* parent,
					   enum cache_level* level)
{
	struct proc_dir_entry* cluster_file;


	cluster_file = proc_create_data("cluster", 0644, parent,
					&litmus_cluster_proc_fops,
					(void *) level);
	if (!cluster_file) {
		printk(KERN_ERR
		       "Could not cluster procfs entry.\n");
	}
	return cluster_file;
}

static struct domain_proc_info* active_mapping = NULL;

static int litmus_mapping_proc_show(struct seq_file *m, void *v)
{
	struct cd_mapping *mapping = (struct cd_mapping*) m->private;

	if(!mapping)
		return 0;

	seq_printf(m, "%*pb\n", cpumask_pr_args(mapping->mask));
	return 0;
}

static int litmus_mapping_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, litmus_mapping_proc_show, PDE_DATA(inode));
}

static const struct file_operations litmus_domain_proc_fops = {
	.open		= litmus_mapping_proc_open,
	.read		= seq_read,
	.llseek 	= seq_lseek,
	.release 	= single_release,
};

long activate_domain_proc(struct domain_proc_info* map)
{
	int i;
	char name[8];

	if (!map)
		return -EINVAL;
	if (cpus_dir == NULL || domains_dir == NULL)
		return -EINVAL;

	if (active_mapping)
		deactivate_domain_proc();

	active_mapping = map;

	for (i = 0; i < map->num_cpus; ++i) {
		struct cd_mapping* m = &map->cpu_to_domains[i];
		snprintf(name, sizeof(name), "%d", m->id);
		m->proc_file = proc_create_data(name, 0444, cpus_dir,
			&litmus_domain_proc_fops, (void*)m);
	}

	for (i = 0; i < map->num_domains; ++i) {
		struct cd_mapping* m = &map->domain_to_cpus[i];
		snprintf(name, sizeof(name), "%d", m->id);
		m->proc_file = proc_create_data(name, 0444, domains_dir,
			&litmus_domain_proc_fops, (void*)m);
	}

	return 0;
}

long deactivate_domain_proc()
{
	int i;
	char name[65];

	struct domain_proc_info* map = active_mapping;

	if (!map)
		return -EINVAL;

	for (i = 0; i < map->num_cpus; ++i) {
		struct cd_mapping* m = &map->cpu_to_domains[i];
		snprintf(name, sizeof(name), "%d", m->id);
		remove_proc_entry(name, cpus_dir);
		m->proc_file = NULL;
	}
	for (i = 0; i < map->num_domains; ++i) {
		struct cd_mapping* m = &map->domain_to_cpus[i];
		snprintf(name, sizeof(name), "%d", m->id);
		remove_proc_entry(name, domains_dir);
		m->proc_file = NULL;
	}

	active_mapping = NULL;

	return 0;
}

long init_domain_proc_info(struct domain_proc_info* m,
				int num_cpus, int num_domains)
{
	int i;
	int num_alloced_cpu_masks = 0;
	int num_alloced_domain_masks = 0;

	m->cpu_to_domains =
		kmalloc(sizeof(*(m->cpu_to_domains))*num_cpus,
			GFP_ATOMIC);
	if(!m->cpu_to_domains)
		goto failure;

	m->domain_to_cpus =
		kmalloc(sizeof(*(m->domain_to_cpus))*num_domains,
			GFP_ATOMIC);
	if(!m->domain_to_cpus)
		goto failure;

	for(i = 0; i < num_cpus; ++i) {
		if(!zalloc_cpumask_var(&m->cpu_to_domains[i].mask, GFP_ATOMIC))
			goto failure;
		++num_alloced_cpu_masks;
	}
	for(i = 0; i < num_domains; ++i) {
		if(!zalloc_cpumask_var(&m->domain_to_cpus[i].mask, GFP_ATOMIC))
			goto failure;
		++num_alloced_domain_masks;
	}

	return 0;

failure:
	for(i = 0; i < num_alloced_cpu_masks; ++i)
		free_cpumask_var(m->cpu_to_domains[i].mask);
	for(i = 0; i < num_alloced_domain_masks; ++i)
		free_cpumask_var(m->domain_to_cpus[i].mask);
	if(m->cpu_to_domains)
		kfree(m->cpu_to_domains);
	if(m->domain_to_cpus)
		kfree(m->domain_to_cpus);
	return -ENOMEM;
}

void destroy_domain_proc_info(struct domain_proc_info* m)
{
	int i;
	for(i = 0; i < m->num_cpus; ++i)
		free_cpumask_var(m->cpu_to_domains[i].mask);
	for(i = 0; i < m->num_domains; ++i)
		free_cpumask_var(m->domain_to_cpus[i].mask);
	kfree(m->cpu_to_domains);
	kfree(m->domain_to_cpus);
	memset(m, 0, sizeof(*m));
}