trace_events_hist.c 58.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * trace_events_hist - trace event hist triggers
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * Copyright (C) 2015 Tom Zanussi <tom.zanussi@linux.intel.com>
 */

#include <linux/module.h>
#include <linux/kallsyms.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/stacktrace.h>
22
#include <linux/rculist.h>
23 24 25 26 27 28

#include "tracing_map.h"
#include "trace.h"

struct hist_field;

29 30
typedef u64 (*hist_field_fn_t) (struct hist_field *field, void *event,
				struct ring_buffer_event *rbe);
31

T
Tom Zanussi 已提交
32
#define HIST_FIELD_OPERANDS_MAX	2
33 34
#define HIST_FIELDS_MAX		(TRACING_MAP_FIELDS_MAX + TRACING_MAP_VARS_MAX)

35 36 37 38 39 40 41
enum field_op_id {
	FIELD_OP_NONE,
	FIELD_OP_PLUS,
	FIELD_OP_MINUS,
	FIELD_OP_UNARY_MINUS,
};

42 43 44 45 46
struct hist_var {
	char				*name;
	struct hist_trigger_data	*hist_data;
	unsigned int			idx;
};
T
Tom Zanussi 已提交
47

48 49 50 51 52
struct hist_field {
	struct ftrace_event_field	*field;
	unsigned long			flags;
	hist_field_fn_t			fn;
	unsigned int			size;
53
	unsigned int			offset;
T
Tom Zanussi 已提交
54 55
	unsigned int                    is_signed;
	struct hist_field		*operands[HIST_FIELD_OPERANDS_MAX];
56
	struct hist_trigger_data	*hist_data;
57
	struct hist_var			var;
58 59
	enum field_op_id		operator;
	char				*name;
60 61
};

62 63
static u64 hist_field_none(struct hist_field *field, void *event,
			   struct ring_buffer_event *rbe)
64 65 66 67
{
	return 0;
}

68 69
static u64 hist_field_counter(struct hist_field *field, void *event,
			      struct ring_buffer_event *rbe)
70 71 72 73
{
	return 1;
}

74 75
static u64 hist_field_string(struct hist_field *hist_field, void *event,
			     struct ring_buffer_event *rbe)
76 77 78 79 80 81
{
	char *addr = (char *)(event + hist_field->field->offset);

	return (u64)(unsigned long)addr;
}

82 83
static u64 hist_field_dynstring(struct hist_field *hist_field, void *event,
				struct ring_buffer_event *rbe)
84 85 86 87 88 89 90 91
{
	u32 str_item = *(u32 *)(event + hist_field->field->offset);
	int str_loc = str_item & 0xffff;
	char *addr = (char *)(event + str_loc);

	return (u64)(unsigned long)addr;
}

92 93
static u64 hist_field_pstring(struct hist_field *hist_field, void *event,
			      struct ring_buffer_event *rbe)
94 95 96 97 98 99
{
	char **addr = (char **)(event + hist_field->field->offset);

	return (u64)(unsigned long)*addr;
}

100 101
static u64 hist_field_log2(struct hist_field *hist_field, void *event,
			   struct ring_buffer_event *rbe)
102
{
T
Tom Zanussi 已提交
103 104
	struct hist_field *operand = hist_field->operands[0];

105
	u64 val = operand->fn(operand, event, rbe);
106 107 108 109

	return (u64) ilog2(roundup_pow_of_two(val));
}

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
static u64 hist_field_plus(struct hist_field *hist_field, void *event,
			   struct ring_buffer_event *rbe)
{
	struct hist_field *operand1 = hist_field->operands[0];
	struct hist_field *operand2 = hist_field->operands[1];

	u64 val1 = operand1->fn(operand1, event, rbe);
	u64 val2 = operand2->fn(operand2, event, rbe);

	return val1 + val2;
}

static u64 hist_field_minus(struct hist_field *hist_field, void *event,
			    struct ring_buffer_event *rbe)
{
	struct hist_field *operand1 = hist_field->operands[0];
	struct hist_field *operand2 = hist_field->operands[1];

	u64 val1 = operand1->fn(operand1, event, rbe);
	u64 val2 = operand2->fn(operand2, event, rbe);

	return val1 - val2;
}

static u64 hist_field_unary_minus(struct hist_field *hist_field, void *event,
				  struct ring_buffer_event *rbe)
{
	struct hist_field *operand = hist_field->operands[0];

	s64 sval = (s64)operand->fn(operand, event, rbe);
	u64 val = (u64)-sval;

	return val;
}

145
#define DEFINE_HIST_FIELD_FN(type)					\
146 147 148
	static u64 hist_field_##type(struct hist_field *hist_field,	\
				     void *event,			\
				     struct ring_buffer_event *rbe)	\
149 150 151
{									\
	type *addr = (type *)(event + hist_field->field->offset);	\
									\
152
	return (u64)(unsigned long)*addr;				\
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
}

DEFINE_HIST_FIELD_FN(s64);
DEFINE_HIST_FIELD_FN(u64);
DEFINE_HIST_FIELD_FN(s32);
DEFINE_HIST_FIELD_FN(u32);
DEFINE_HIST_FIELD_FN(s16);
DEFINE_HIST_FIELD_FN(u16);
DEFINE_HIST_FIELD_FN(s8);
DEFINE_HIST_FIELD_FN(u8);

#define for_each_hist_field(i, hist_data)	\
	for ((i) = 0; (i) < (hist_data)->n_fields; (i)++)

#define for_each_hist_val_field(i, hist_data)	\
	for ((i) = 0; (i) < (hist_data)->n_vals; (i)++)

#define for_each_hist_key_field(i, hist_data)	\
	for ((i) = (hist_data)->n_vals; (i) < (hist_data)->n_fields; (i)++)

173 174 175 176
#define HIST_STACKTRACE_DEPTH	16
#define HIST_STACKTRACE_SIZE	(HIST_STACKTRACE_DEPTH * sizeof(unsigned long))
#define HIST_STACKTRACE_SKIP	5

177
#define HITCOUNT_IDX		0
178
#define HIST_KEY_SIZE_MAX	(MAX_FILTER_STR_VAL + HIST_STACKTRACE_SIZE)
179 180

enum hist_field_flags {
181 182 183 184 185 186 187 188 189 190
	HIST_FIELD_FL_HITCOUNT		= 1 << 0,
	HIST_FIELD_FL_KEY		= 1 << 1,
	HIST_FIELD_FL_STRING		= 1 << 2,
	HIST_FIELD_FL_HEX		= 1 << 3,
	HIST_FIELD_FL_SYM		= 1 << 4,
	HIST_FIELD_FL_SYM_OFFSET	= 1 << 5,
	HIST_FIELD_FL_EXECNAME		= 1 << 6,
	HIST_FIELD_FL_SYSCALL		= 1 << 7,
	HIST_FIELD_FL_STACKTRACE	= 1 << 8,
	HIST_FIELD_FL_LOG2		= 1 << 9,
191
	HIST_FIELD_FL_TIMESTAMP		= 1 << 10,
192
	HIST_FIELD_FL_TIMESTAMP_USECS	= 1 << 11,
193
	HIST_FIELD_FL_VAR		= 1 << 12,
194
	HIST_FIELD_FL_EXPR		= 1 << 13,
195 196 197 198 199 200
};

struct var_defs {
	unsigned int	n_vars;
	char		*name[TRACING_MAP_VARS_MAX];
	char		*expr[TRACING_MAP_VARS_MAX];
201 202 203 204
};

struct hist_trigger_attrs {
	char		*keys_str;
205
	char		*vals_str;
206
	char		*sort_key_str;
207
	char		*name;
208 209
	bool		pause;
	bool		cont;
210
	bool		clear;
211
	bool		ts_in_usecs;
212
	unsigned int	map_bits;
213 214 215 216 217

	char		*assignment_str[TRACING_MAP_VARS_MAX];
	unsigned int	n_assignments;

	struct var_defs	var_defs;
218 219 220
};

struct hist_trigger_data {
221
	struct hist_field               *fields[HIST_FIELDS_MAX];
222 223 224
	unsigned int			n_vals;
	unsigned int			n_keys;
	unsigned int			n_fields;
225
	unsigned int			n_vars;
226 227 228 229 230 231
	unsigned int			key_size;
	struct tracing_map_sort_key	sort_keys[TRACING_MAP_SORT_KEYS_MAX];
	unsigned int			n_sort_keys;
	struct trace_event_file		*event_file;
	struct hist_trigger_attrs	*attrs;
	struct tracing_map		*map;
232
	bool				enable_timestamps;
233
	bool				remove;
234 235
};

236 237 238 239 240 241 242 243 244 245 246 247 248 249
static u64 hist_field_timestamp(struct hist_field *hist_field, void *event,
				struct ring_buffer_event *rbe)
{
	struct hist_trigger_data *hist_data = hist_field->hist_data;
	struct trace_array *tr = hist_data->event_file->tr;

	u64 ts = ring_buffer_event_time_stamp(rbe);

	if (hist_data->attrs->ts_in_usecs && trace_clock_in_ns(tr))
		ts = ns2usecs(ts);

	return ts;
}

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
static struct hist_field *find_var_field(struct hist_trigger_data *hist_data,
					 const char *var_name)
{
	struct hist_field *hist_field, *found = NULL;
	int i;

	for_each_hist_field(i, hist_data) {
		hist_field = hist_data->fields[i];
		if (hist_field && hist_field->flags & HIST_FIELD_FL_VAR &&
		    strcmp(hist_field->var.name, var_name) == 0) {
			found = hist_field;
			break;
		}
	}

	return found;
}

static struct hist_field *find_var(struct hist_trigger_data *hist_data,
				   struct trace_event_file *file,
				   const char *var_name)
{
	struct hist_trigger_data *test_data;
	struct event_trigger_data *test;
	struct hist_field *hist_field;

	hist_field = find_var_field(hist_data, var_name);
	if (hist_field)
		return hist_field;

	list_for_each_entry_rcu(test, &file->triggers, list) {
		if (test->cmd_ops->trigger_type == ETT_EVENT_HIST) {
			test_data = test->private_data;
			hist_field = find_var_field(test_data, var_name);
			if (hist_field)
				return hist_field;
		}
	}

	return NULL;
}

292 293 294 295
struct hist_elt_data {
	char *comm;
};

296 297 298 299 300 301 302 303 304 305
static const char *hist_field_name(struct hist_field *field,
				   unsigned int level)
{
	const char *field_name = "";

	if (level > 1)
		return field_name;

	if (field->field)
		field_name = field->field->name;
T
Tom Zanussi 已提交
306 307
	else if (field->flags & HIST_FIELD_FL_LOG2)
		field_name = hist_field_name(field->operands[0], ++level);
308 309
	else if (field->flags & HIST_FIELD_FL_TIMESTAMP)
		field_name = "common_timestamp";
310 311
	else if (field->flags & HIST_FIELD_FL_EXPR)
		field_name = field->name;
312 313 314 315 316 317 318

	if (field_name == NULL)
		field_name = "";

	return field_name;
}

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
static hist_field_fn_t select_value_fn(int field_size, int field_is_signed)
{
	hist_field_fn_t fn = NULL;

	switch (field_size) {
	case 8:
		if (field_is_signed)
			fn = hist_field_s64;
		else
			fn = hist_field_u64;
		break;
	case 4:
		if (field_is_signed)
			fn = hist_field_s32;
		else
			fn = hist_field_u32;
		break;
	case 2:
		if (field_is_signed)
			fn = hist_field_s16;
		else
			fn = hist_field_u16;
		break;
	case 1:
		if (field_is_signed)
			fn = hist_field_s8;
		else
			fn = hist_field_u8;
		break;
	}

	return fn;
}

static int parse_map_size(char *str)
{
	unsigned long size, map_bits;
	int ret;

	strsep(&str, "=");
	if (!str) {
		ret = -EINVAL;
		goto out;
	}

	ret = kstrtoul(str, 0, &size);
	if (ret)
		goto out;

	map_bits = ilog2(roundup_pow_of_two(size));
	if (map_bits < TRACING_MAP_BITS_MIN ||
	    map_bits > TRACING_MAP_BITS_MAX)
		ret = -EINVAL;
	else
		ret = map_bits;
 out:
	return ret;
}

static void destroy_hist_trigger_attrs(struct hist_trigger_attrs *attrs)
{
380 381
	unsigned int i;

382 383 384
	if (!attrs)
		return;

385 386 387
	for (i = 0; i < attrs->n_assignments; i++)
		kfree(attrs->assignment_str[i]);

388
	kfree(attrs->name);
389
	kfree(attrs->sort_key_str);
390
	kfree(attrs->keys_str);
391
	kfree(attrs->vals_str);
392 393 394
	kfree(attrs);
}

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
static int parse_assignment(char *str, struct hist_trigger_attrs *attrs)
{
	int ret = 0;

	if ((strncmp(str, "key=", strlen("key=")) == 0) ||
	    (strncmp(str, "keys=", strlen("keys=")) == 0)) {
		attrs->keys_str = kstrdup(str, GFP_KERNEL);
		if (!attrs->keys_str) {
			ret = -ENOMEM;
			goto out;
		}
	} else if ((strncmp(str, "val=", strlen("val=")) == 0) ||
		 (strncmp(str, "vals=", strlen("vals=")) == 0) ||
		 (strncmp(str, "values=", strlen("values=")) == 0)) {
		attrs->vals_str = kstrdup(str, GFP_KERNEL);
		if (!attrs->vals_str) {
			ret = -ENOMEM;
			goto out;
		}
	} else if (strncmp(str, "sort=", strlen("sort=")) == 0) {
		attrs->sort_key_str = kstrdup(str, GFP_KERNEL);
		if (!attrs->sort_key_str) {
			ret = -ENOMEM;
			goto out;
		}
	} else if (strncmp(str, "name=", strlen("name=")) == 0) {
		attrs->name = kstrdup(str, GFP_KERNEL);
		if (!attrs->name) {
			ret = -ENOMEM;
			goto out;
		}
	} else if (strncmp(str, "size=", strlen("size=")) == 0) {
		int map_bits = parse_map_size(str);

		if (map_bits < 0) {
			ret = map_bits;
			goto out;
		}
		attrs->map_bits = map_bits;
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
	} else {
		char *assignment;

		if (attrs->n_assignments == TRACING_MAP_VARS_MAX) {
			ret = -EINVAL;
			goto out;
		}

		assignment = kstrdup(str, GFP_KERNEL);
		if (!assignment) {
			ret = -ENOMEM;
			goto out;
		}

		attrs->assignment_str[attrs->n_assignments++] = assignment;
	}
450 451 452 453
 out:
	return ret;
}

454 455 456 457 458 459 460 461 462 463 464 465
static struct hist_trigger_attrs *parse_hist_trigger_attrs(char *trigger_str)
{
	struct hist_trigger_attrs *attrs;
	int ret = 0;

	attrs = kzalloc(sizeof(*attrs), GFP_KERNEL);
	if (!attrs)
		return ERR_PTR(-ENOMEM);

	while (trigger_str) {
		char *str = strsep(&trigger_str, ":");

466 467 468 469 470
		if (strchr(str, '=')) {
			ret = parse_assignment(str, attrs);
			if (ret)
				goto free;
		} else if (strcmp(str, "pause") == 0)
471 472 473 474
			attrs->pause = true;
		else if ((strcmp(str, "cont") == 0) ||
			 (strcmp(str, "continue") == 0))
			attrs->cont = true;
475 476
		else if (strcmp(str, "clear") == 0)
			attrs->clear = true;
477
		else {
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
			ret = -EINVAL;
			goto free;
		}
	}

	if (!attrs->keys_str) {
		ret = -EINVAL;
		goto free;
	}

	return attrs;
 free:
	destroy_hist_trigger_attrs(attrs);

	return ERR_PTR(ret);
}

495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
static inline void save_comm(char *comm, struct task_struct *task)
{
	if (!task->pid) {
		strcpy(comm, "<idle>");
		return;
	}

	if (WARN_ON_ONCE(task->pid < 0)) {
		strcpy(comm, "<XXX>");
		return;
	}

	memcpy(comm, task->comm, TASK_COMM_LEN);
}

510 511 512 513 514 515 516
static void hist_elt_data_free(struct hist_elt_data *elt_data)
{
	kfree(elt_data->comm);
	kfree(elt_data);
}

static void hist_trigger_elt_data_free(struct tracing_map_elt *elt)
517
{
518 519 520
	struct hist_elt_data *elt_data = elt->private_data;

	hist_elt_data_free(elt_data);
521 522
}

523
static int hist_trigger_elt_data_alloc(struct tracing_map_elt *elt)
524 525
{
	struct hist_trigger_data *hist_data = elt->map->private_data;
526 527
	unsigned int size = TASK_COMM_LEN;
	struct hist_elt_data *elt_data;
528 529 530
	struct hist_field *key_field;
	unsigned int i;

531 532 533 534
	elt_data = kzalloc(sizeof(*elt_data), GFP_KERNEL);
	if (!elt_data)
		return -ENOMEM;

535 536 537 538
	for_each_hist_key_field(i, hist_data) {
		key_field = hist_data->fields[i];

		if (key_field->flags & HIST_FIELD_FL_EXECNAME) {
539 540 541
			elt_data->comm = kzalloc(size, GFP_KERNEL);
			if (!elt_data->comm) {
				kfree(elt_data);
542
				return -ENOMEM;
543
			}
544 545 546 547
			break;
		}
	}

548 549
	elt->private_data = elt_data;

550 551 552
	return 0;
}

553
static void hist_trigger_elt_data_init(struct tracing_map_elt *elt)
554
{
555
	struct hist_elt_data *elt_data = elt->private_data;
556

557 558
	if (elt_data->comm)
		save_comm(elt_data->comm, current);
559 560
}

561 562 563 564
static const struct tracing_map_ops hist_trigger_elt_data_ops = {
	.elt_alloc	= hist_trigger_elt_data_alloc,
	.elt_free	= hist_trigger_elt_data_free,
	.elt_init	= hist_trigger_elt_data_init,
565 566
};

567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
static const char *get_hist_field_flags(struct hist_field *hist_field)
{
	const char *flags_str = NULL;

	if (hist_field->flags & HIST_FIELD_FL_HEX)
		flags_str = "hex";
	else if (hist_field->flags & HIST_FIELD_FL_SYM)
		flags_str = "sym";
	else if (hist_field->flags & HIST_FIELD_FL_SYM_OFFSET)
		flags_str = "sym-offset";
	else if (hist_field->flags & HIST_FIELD_FL_EXECNAME)
		flags_str = "execname";
	else if (hist_field->flags & HIST_FIELD_FL_SYSCALL)
		flags_str = "syscall";
	else if (hist_field->flags & HIST_FIELD_FL_LOG2)
		flags_str = "log2";
	else if (hist_field->flags & HIST_FIELD_FL_TIMESTAMP_USECS)
		flags_str = "usecs";

	return flags_str;
}

589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
static void expr_field_str(struct hist_field *field, char *expr)
{
	strcat(expr, hist_field_name(field, 0));

	if (field->flags) {
		const char *flags_str = get_hist_field_flags(field);

		if (flags_str) {
			strcat(expr, ".");
			strcat(expr, flags_str);
		}
	}
}

static char *expr_str(struct hist_field *field, unsigned int level)
{
	char *expr;

	if (level > 1)
		return NULL;

	expr = kzalloc(MAX_FILTER_STR_VAL, GFP_KERNEL);
	if (!expr)
		return NULL;

	if (!field->operands[0]) {
		expr_field_str(field, expr);
		return expr;
	}

	if (field->operator == FIELD_OP_UNARY_MINUS) {
		char *subexpr;

		strcat(expr, "-(");
		subexpr = expr_str(field->operands[0], ++level);
		if (!subexpr) {
			kfree(expr);
			return NULL;
		}
		strcat(expr, subexpr);
		strcat(expr, ")");

		kfree(subexpr);

		return expr;
	}

	expr_field_str(field->operands[0], expr);

	switch (field->operator) {
	case FIELD_OP_MINUS:
		strcat(expr, "-");
		break;
	case FIELD_OP_PLUS:
		strcat(expr, "+");
		break;
	default:
		kfree(expr);
		return NULL;
	}

	expr_field_str(field->operands[1], expr);

	return expr;
}

static int contains_operator(char *str)
{
	enum field_op_id field_op = FIELD_OP_NONE;
	char *op;

	op = strpbrk(str, "+-");
	if (!op)
		return FIELD_OP_NONE;

	switch (*op) {
	case '-':
		if (*str == '-')
			field_op = FIELD_OP_UNARY_MINUS;
		else
			field_op = FIELD_OP_MINUS;
		break;
	case '+':
		field_op = FIELD_OP_PLUS;
		break;
	default:
		break;
	}

	return field_op;
}

T
Tom Zanussi 已提交
681 682
static void destroy_hist_field(struct hist_field *hist_field,
			       unsigned int level)
683
{
T
Tom Zanussi 已提交
684 685
	unsigned int i;

686
	if (level > 3)
T
Tom Zanussi 已提交
687 688 689 690 691 692 693 694
		return;

	if (!hist_field)
		return;

	for (i = 0; i < HIST_FIELD_OPERANDS_MAX; i++)
		destroy_hist_field(hist_field->operands[i], level + 1);

695
	kfree(hist_field->var.name);
696
	kfree(hist_field->name);
697

698 699 700
	kfree(hist_field);
}

701 702
static struct hist_field *create_hist_field(struct hist_trigger_data *hist_data,
					    struct ftrace_event_field *field,
703 704
					    unsigned long flags,
					    char *var_name)
705 706 707 708 709 710 711 712 713 714
{
	struct hist_field *hist_field;

	if (field && is_function_field(field))
		return NULL;

	hist_field = kzalloc(sizeof(struct hist_field), GFP_KERNEL);
	if (!hist_field)
		return NULL;

715 716
	hist_field->hist_data = hist_data;

717 718 719
	if (flags & HIST_FIELD_FL_EXPR)
		goto out; /* caller will populate */

720 721 722 723 724
	if (flags & HIST_FIELD_FL_HITCOUNT) {
		hist_field->fn = hist_field_counter;
		goto out;
	}

725 726 727 728 729
	if (flags & HIST_FIELD_FL_STACKTRACE) {
		hist_field->fn = hist_field_none;
		goto out;
	}

730
	if (flags & HIST_FIELD_FL_LOG2) {
T
Tom Zanussi 已提交
731
		unsigned long fl = flags & ~HIST_FIELD_FL_LOG2;
732
		hist_field->fn = hist_field_log2;
733
		hist_field->operands[0] = create_hist_field(hist_data, field, fl, NULL);
T
Tom Zanussi 已提交
734
		hist_field->size = hist_field->operands[0]->size;
735 736 737
		goto out;
	}

738 739 740 741 742 743
	if (flags & HIST_FIELD_FL_TIMESTAMP) {
		hist_field->fn = hist_field_timestamp;
		hist_field->size = sizeof(u64);
		goto out;
	}

744 745 746
	if (WARN_ON_ONCE(!field))
		goto out;

747 748
	if (is_string_field(field)) {
		flags |= HIST_FIELD_FL_STRING;
749 750 751 752 753 754 755

		if (field->filter_type == FILTER_STATIC_STRING)
			hist_field->fn = hist_field_string;
		else if (field->filter_type == FILTER_DYN_STRING)
			hist_field->fn = hist_field_dynstring;
		else
			hist_field->fn = hist_field_pstring;
756 757 758 759
	} else {
		hist_field->fn = select_value_fn(field->size,
						 field->is_signed);
		if (!hist_field->fn) {
T
Tom Zanussi 已提交
760
			destroy_hist_field(hist_field, 0);
761 762 763 764 765 766 767
			return NULL;
		}
	}
 out:
	hist_field->field = field;
	hist_field->flags = flags;

768 769 770 771 772 773
	if (var_name) {
		hist_field->var.name = kstrdup(var_name, GFP_KERNEL);
		if (!hist_field->var.name)
			goto free;
	}

774
	return hist_field;
775 776 777
 free:
	destroy_hist_field(hist_field, 0);
	return NULL;
778 779 780 781 782 783
}

static void destroy_hist_fields(struct hist_trigger_data *hist_data)
{
	unsigned int i;

784
	for (i = 0; i < HIST_FIELDS_MAX; i++) {
785
		if (hist_data->fields[i]) {
T
Tom Zanussi 已提交
786
			destroy_hist_field(hist_data->fields[i], 0);
787 788 789 790 791
			hist_data->fields[i] = NULL;
		}
	}
}

792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
static struct ftrace_event_field *
parse_field(struct hist_trigger_data *hist_data, struct trace_event_file *file,
	    char *field_str, unsigned long *flags)
{
	struct ftrace_event_field *field = NULL;
	char *field_name, *modifier, *str;

	modifier = str = kstrdup(field_str, GFP_KERNEL);
	if (!modifier)
		return ERR_PTR(-ENOMEM);

	field_name = strsep(&modifier, ".");
	if (modifier) {
		if (strcmp(modifier, "hex") == 0)
			*flags |= HIST_FIELD_FL_HEX;
		else if (strcmp(modifier, "sym") == 0)
			*flags |= HIST_FIELD_FL_SYM;
		else if (strcmp(modifier, "sym-offset") == 0)
			*flags |= HIST_FIELD_FL_SYM_OFFSET;
		else if ((strcmp(modifier, "execname") == 0) &&
			 (strcmp(field_name, "common_pid") == 0))
			*flags |= HIST_FIELD_FL_EXECNAME;
		else if (strcmp(modifier, "syscall") == 0)
			*flags |= HIST_FIELD_FL_SYSCALL;
		else if (strcmp(modifier, "log2") == 0)
			*flags |= HIST_FIELD_FL_LOG2;
		else if (strcmp(modifier, "usecs") == 0)
			*flags |= HIST_FIELD_FL_TIMESTAMP_USECS;
		else {
			field = ERR_PTR(-EINVAL);
			goto out;
		}
	}

	if (strcmp(field_name, "common_timestamp") == 0) {
		*flags |= HIST_FIELD_FL_TIMESTAMP;
		hist_data->enable_timestamps = true;
		if (*flags & HIST_FIELD_FL_TIMESTAMP_USECS)
			hist_data->attrs->ts_in_usecs = true;
	} else {
		field = trace_find_event_field(file->event_call, field_name);
		if (!field || !field->size) {
			field = ERR_PTR(-EINVAL);
			goto out;
		}
	}
 out:
	kfree(str);

	return field;
}

static struct hist_field *parse_atom(struct hist_trigger_data *hist_data,
				     struct trace_event_file *file, char *str,
				     unsigned long *flags, char *var_name)
{
	struct ftrace_event_field *field = NULL;
	struct hist_field *hist_field = NULL;
	int ret = 0;

	field = parse_field(hist_data, file, str, flags);
	if (IS_ERR(field)) {
		ret = PTR_ERR(field);
		goto out;
	}

	hist_field = create_hist_field(hist_data, field, *flags, var_name);
	if (!hist_field) {
		ret = -ENOMEM;
		goto out;
	}

	return hist_field;
 out:
	return ERR_PTR(ret);
}

static struct hist_field *parse_expr(struct hist_trigger_data *hist_data,
				     struct trace_event_file *file,
				     char *str, unsigned long flags,
				     char *var_name, unsigned int level);

static struct hist_field *parse_unary(struct hist_trigger_data *hist_data,
				      struct trace_event_file *file,
				      char *str, unsigned long flags,
				      char *var_name, unsigned int level)
{
	struct hist_field *operand1, *expr = NULL;
	unsigned long operand_flags;
	int ret = 0;
	char *s;

	/* we support only -(xxx) i.e. explicit parens required */

	if (level > 3) {
		ret = -EINVAL;
		goto free;
	}

	str++; /* skip leading '-' */

	s = strchr(str, '(');
	if (s)
		str++;
	else {
		ret = -EINVAL;
		goto free;
	}

	s = strrchr(str, ')');
	if (s)
		*s = '\0';
	else {
		ret = -EINVAL; /* no closing ')' */
		goto free;
	}

	flags |= HIST_FIELD_FL_EXPR;
	expr = create_hist_field(hist_data, NULL, flags, var_name);
	if (!expr) {
		ret = -ENOMEM;
		goto free;
	}

	operand_flags = 0;
	operand1 = parse_expr(hist_data, file, str, operand_flags, NULL, ++level);
	if (IS_ERR(operand1)) {
		ret = PTR_ERR(operand1);
		goto free;
	}

	expr->flags |= operand1->flags &
		(HIST_FIELD_FL_TIMESTAMP | HIST_FIELD_FL_TIMESTAMP_USECS);
	expr->fn = hist_field_unary_minus;
	expr->operands[0] = operand1;
	expr->operator = FIELD_OP_UNARY_MINUS;
	expr->name = expr_str(expr, 0);

	return expr;
 free:
	destroy_hist_field(expr, 0);
	return ERR_PTR(ret);
}

static int check_expr_operands(struct hist_field *operand1,
			       struct hist_field *operand2)
{
	unsigned long operand1_flags = operand1->flags;
	unsigned long operand2_flags = operand2->flags;

	if ((operand1_flags & HIST_FIELD_FL_TIMESTAMP_USECS) !=
	    (operand2_flags & HIST_FIELD_FL_TIMESTAMP_USECS))
		return -EINVAL;

	return 0;
}

static struct hist_field *parse_expr(struct hist_trigger_data *hist_data,
				     struct trace_event_file *file,
				     char *str, unsigned long flags,
				     char *var_name, unsigned int level)
{
	struct hist_field *operand1 = NULL, *operand2 = NULL, *expr = NULL;
	unsigned long operand_flags;
	int field_op, ret = -EINVAL;
	char *sep, *operand1_str;

	if (level > 3)
		return ERR_PTR(-EINVAL);

	field_op = contains_operator(str);

	if (field_op == FIELD_OP_NONE)
		return parse_atom(hist_data, file, str, &flags, var_name);

	if (field_op == FIELD_OP_UNARY_MINUS)
		return parse_unary(hist_data, file, str, flags, var_name, ++level);

	switch (field_op) {
	case FIELD_OP_MINUS:
		sep = "-";
		break;
	case FIELD_OP_PLUS:
		sep = "+";
		break;
	default:
		goto free;
	}

	operand1_str = strsep(&str, sep);
	if (!operand1_str || !str)
		goto free;

	operand_flags = 0;
	operand1 = parse_atom(hist_data, file, operand1_str,
			      &operand_flags, NULL);
	if (IS_ERR(operand1)) {
		ret = PTR_ERR(operand1);
		operand1 = NULL;
		goto free;
	}

	/* rest of string could be another expression e.g. b+c in a+b+c */
	operand_flags = 0;
	operand2 = parse_expr(hist_data, file, str, operand_flags, NULL, ++level);
	if (IS_ERR(operand2)) {
		ret = PTR_ERR(operand2);
		operand2 = NULL;
		goto free;
	}

	ret = check_expr_operands(operand1, operand2);
	if (ret)
		goto free;

	flags |= HIST_FIELD_FL_EXPR;

	flags |= operand1->flags &
		(HIST_FIELD_FL_TIMESTAMP | HIST_FIELD_FL_TIMESTAMP_USECS);

	expr = create_hist_field(hist_data, NULL, flags, var_name);
	if (!expr) {
		ret = -ENOMEM;
		goto free;
	}

	expr->operands[0] = operand1;
	expr->operands[1] = operand2;
	expr->operator = field_op;
	expr->name = expr_str(expr, 0);

	switch (field_op) {
	case FIELD_OP_MINUS:
		expr->fn = hist_field_minus;
		break;
	case FIELD_OP_PLUS:
		expr->fn = hist_field_plus;
		break;
	default:
		goto free;
	}

	return expr;
 free:
	destroy_hist_field(operand1, 0);
	destroy_hist_field(operand2, 0);
	destroy_hist_field(expr, 0);

	return ERR_PTR(ret);
}

1043 1044 1045
static int create_hitcount_val(struct hist_trigger_data *hist_data)
{
	hist_data->fields[HITCOUNT_IDX] =
1046
		create_hist_field(hist_data, NULL, HIST_FIELD_FL_HITCOUNT, NULL);
1047 1048 1049 1050
	if (!hist_data->fields[HITCOUNT_IDX])
		return -ENOMEM;

	hist_data->n_vals++;
1051
	hist_data->n_fields++;
1052 1053 1054 1055 1056 1057 1058

	if (WARN_ON(hist_data->n_vals > TRACING_MAP_VALS_MAX))
		return -EINVAL;

	return 0;
}

1059 1060 1061 1062 1063
static int __create_val_field(struct hist_trigger_data *hist_data,
			      unsigned int val_idx,
			      struct trace_event_file *file,
			      char *var_name, char *field_str,
			      unsigned long flags)
1064
{
1065
	struct hist_field *hist_field;
1066 1067
	int ret = 0;

1068 1069 1070
	hist_field = parse_expr(hist_data, file, field_str, flags, var_name, 0);
	if (IS_ERR(hist_field)) {
		ret = PTR_ERR(hist_field);
1071 1072 1073
		goto out;
	}

1074 1075
	hist_data->fields[val_idx] = hist_field;

1076
	++hist_data->n_vals;
1077
	++hist_data->n_fields;
1078

1079
	if (WARN_ON(hist_data->n_vals > TRACING_MAP_VALS_MAX + TRACING_MAP_VARS_MAX))
1080 1081 1082 1083 1084
		ret = -EINVAL;
 out:
	return ret;
}

1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
static int create_val_field(struct hist_trigger_data *hist_data,
			    unsigned int val_idx,
			    struct trace_event_file *file,
			    char *field_str)
{
	if (WARN_ON(val_idx >= TRACING_MAP_VALS_MAX))
		return -EINVAL;

	return __create_val_field(hist_data, val_idx, file, NULL, field_str, 0);
}

static int create_var_field(struct hist_trigger_data *hist_data,
			    unsigned int val_idx,
			    struct trace_event_file *file,
			    char *var_name, char *expr_str)
{
	unsigned long flags = 0;

	if (WARN_ON(val_idx >= TRACING_MAP_VALS_MAX + TRACING_MAP_VARS_MAX))
		return -EINVAL;
	if (find_var(hist_data, file, var_name) && !hist_data->remove) {
		return -EINVAL;
	}

	flags |= HIST_FIELD_FL_VAR;
	hist_data->n_vars++;
	if (WARN_ON(hist_data->n_vars > TRACING_MAP_VARS_MAX))
		return -EINVAL;

	return __create_val_field(hist_data, val_idx, file, var_name, expr_str, flags);
}

1117 1118 1119
static int create_val_fields(struct hist_trigger_data *hist_data,
			     struct trace_event_file *file)
{
1120
	char *fields_str, *field_str;
1121
	unsigned int i, j = 1;
1122 1123 1124
	int ret;

	ret = create_hitcount_val(hist_data);
1125 1126
	if (ret)
		goto out;
1127

1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
	fields_str = hist_data->attrs->vals_str;
	if (!fields_str)
		goto out;

	strsep(&fields_str, "=");
	if (!fields_str)
		goto out;

	for (i = 0, j = 1; i < TRACING_MAP_VALS_MAX &&
		     j < TRACING_MAP_VALS_MAX; i++) {
		field_str = strsep(&fields_str, ",");
		if (!field_str)
			break;
1141

1142 1143
		if (strcmp(field_str, "hitcount") == 0)
			continue;
1144

1145 1146 1147 1148
		ret = create_val_field(hist_data, j++, file, field_str);
		if (ret)
			goto out;
	}
1149

1150 1151 1152
	if (fields_str && (strcmp(fields_str, "hitcount") != 0))
		ret = -EINVAL;
 out:
1153 1154 1155 1156 1157
	return ret;
}

static int create_key_field(struct hist_trigger_data *hist_data,
			    unsigned int key_idx,
1158
			    unsigned int key_offset,
1159 1160 1161
			    struct trace_event_file *file,
			    char *field_str)
{
1162
	struct hist_field *hist_field = NULL;
1163

1164 1165 1166 1167
	unsigned long flags = 0;
	unsigned int key_size;
	int ret = 0;

1168
	if (WARN_ON(key_idx >= HIST_FIELDS_MAX))
1169 1170 1171 1172
		return -EINVAL;

	flags |= HIST_FIELD_FL_KEY;

1173 1174 1175
	if (strcmp(field_str, "stacktrace") == 0) {
		flags |= HIST_FIELD_FL_STACKTRACE;
		key_size = sizeof(unsigned long) * HIST_STACKTRACE_DEPTH;
1176
		hist_field = create_hist_field(hist_data, NULL, flags, NULL);
1177
	} else {
1178 1179 1180 1181 1182
		hist_field = parse_expr(hist_data, file, field_str, flags,
					NULL, 0);
		if (IS_ERR(hist_field)) {
			ret = PTR_ERR(hist_field);
			goto out;
1183 1184
		}

1185
		key_size = hist_field->size;
1186 1187
	}

1188
	hist_data->fields[key_idx] = hist_field;
1189 1190 1191

	key_size = ALIGN(key_size, sizeof(u64));
	hist_data->fields[key_idx]->size = key_size;
1192
	hist_data->fields[key_idx]->offset = key_offset;
1193

1194
	hist_data->key_size += key_size;
1195

1196 1197 1198 1199 1200 1201
	if (hist_data->key_size > HIST_KEY_SIZE_MAX) {
		ret = -EINVAL;
		goto out;
	}

	hist_data->n_keys++;
1202
	hist_data->n_fields++;
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214

	if (WARN_ON(hist_data->n_keys > TRACING_MAP_KEYS_MAX))
		return -EINVAL;

	ret = key_size;
 out:
	return ret;
}

static int create_key_fields(struct hist_trigger_data *hist_data,
			     struct trace_event_file *file)
{
1215
	unsigned int i, key_offset = 0, n_vals = hist_data->n_vals;
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
	char *fields_str, *field_str;
	int ret = -EINVAL;

	fields_str = hist_data->attrs->keys_str;
	if (!fields_str)
		goto out;

	strsep(&fields_str, "=");
	if (!fields_str)
		goto out;

1227
	for (i = n_vals; i < n_vals + TRACING_MAP_KEYS_MAX; i++) {
1228 1229 1230
		field_str = strsep(&fields_str, ",");
		if (!field_str)
			break;
1231 1232
		ret = create_key_field(hist_data, i, key_offset,
				       file, field_str);
1233 1234
		if (ret < 0)
			goto out;
1235
		key_offset += ret;
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
	}
	if (fields_str) {
		ret = -EINVAL;
		goto out;
	}
	ret = 0;
 out:
	return ret;
}

1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
static int create_var_fields(struct hist_trigger_data *hist_data,
			     struct trace_event_file *file)
{
	unsigned int i, j = hist_data->n_vals;
	int ret = 0;

	unsigned int n_vars = hist_data->attrs->var_defs.n_vars;

	for (i = 0; i < n_vars; i++) {
		char *var_name = hist_data->attrs->var_defs.name[i];
		char *expr = hist_data->attrs->var_defs.expr[i];

		ret = create_var_field(hist_data, j++, file, var_name, expr);
		if (ret)
			goto out;
	}
 out:
	return ret;
}

static void free_var_defs(struct hist_trigger_data *hist_data)
{
	unsigned int i;

	for (i = 0; i < hist_data->attrs->var_defs.n_vars; i++) {
		kfree(hist_data->attrs->var_defs.name[i]);
		kfree(hist_data->attrs->var_defs.expr[i]);
	}

	hist_data->attrs->var_defs.n_vars = 0;
}

static int parse_var_defs(struct hist_trigger_data *hist_data)
{
	char *s, *str, *var_name, *field_str;
	unsigned int i, j, n_vars = 0;
	int ret = 0;

	for (i = 0; i < hist_data->attrs->n_assignments; i++) {
		str = hist_data->attrs->assignment_str[i];
		for (j = 0; j < TRACING_MAP_VARS_MAX; j++) {
			field_str = strsep(&str, ",");
			if (!field_str)
				break;

			var_name = strsep(&field_str, "=");
			if (!var_name || !field_str) {
				ret = -EINVAL;
				goto free;
			}

			if (n_vars == TRACING_MAP_VARS_MAX) {
				ret = -EINVAL;
				goto free;
			}

			s = kstrdup(var_name, GFP_KERNEL);
			if (!s) {
				ret = -ENOMEM;
				goto free;
			}
			hist_data->attrs->var_defs.name[n_vars] = s;

			s = kstrdup(field_str, GFP_KERNEL);
			if (!s) {
				kfree(hist_data->attrs->var_defs.name[n_vars]);
				ret = -ENOMEM;
				goto free;
			}
			hist_data->attrs->var_defs.expr[n_vars++] = s;

			hist_data->attrs->var_defs.n_vars = n_vars;
		}
	}

	return ret;
 free:
	free_var_defs(hist_data);

	return ret;
}

1328 1329 1330 1331 1332
static int create_hist_fields(struct hist_trigger_data *hist_data,
			      struct trace_event_file *file)
{
	int ret;

1333 1334 1335 1336
	ret = parse_var_defs(hist_data);
	if (ret)
		goto out;

1337 1338 1339 1340
	ret = create_val_fields(hist_data, file);
	if (ret)
		goto out;

1341
	ret = create_var_fields(hist_data, file);
1342 1343 1344
	if (ret)
		goto out;

1345 1346 1347
	ret = create_key_fields(hist_data, file);
	if (ret)
		goto out;
1348
 out:
1349 1350
	free_var_defs(hist_data);

1351 1352 1353
	return ret;
}

1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
static int is_descending(const char *str)
{
	if (!str)
		return 0;

	if (strcmp(str, "descending") == 0)
		return 1;

	if (strcmp(str, "ascending") == 0)
		return 0;

	return -EINVAL;
}

1368 1369
static int create_sort_keys(struct hist_trigger_data *hist_data)
{
1370 1371 1372
	char *fields_str = hist_data->attrs->sort_key_str;
	struct tracing_map_sort_key *sort_key;
	int descending, ret = 0;
1373
	unsigned int i, j, k;
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386

	hist_data->n_sort_keys = 1; /* we always have at least one, hitcount */

	if (!fields_str)
		goto out;

	strsep(&fields_str, "=");
	if (!fields_str) {
		ret = -EINVAL;
		goto out;
	}

	for (i = 0; i < TRACING_MAP_SORT_KEYS_MAX; i++) {
1387
		struct hist_field *hist_field;
1388
		char *field_str, *field_name;
1389
		const char *test_name;
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403

		sort_key = &hist_data->sort_keys[i];

		field_str = strsep(&fields_str, ",");
		if (!field_str) {
			if (i == 0)
				ret = -EINVAL;
			break;
		}

		if ((i == TRACING_MAP_SORT_KEYS_MAX - 1) && fields_str) {
			ret = -EINVAL;
			break;
		}
1404

1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
		field_name = strsep(&field_str, ".");
		if (!field_name) {
			ret = -EINVAL;
			break;
		}

		if (strcmp(field_name, "hitcount") == 0) {
			descending = is_descending(field_str);
			if (descending < 0) {
				ret = descending;
				break;
			}
			sort_key->descending = descending;
			continue;
		}
1420

1421 1422 1423
		for (j = 1, k = 1; j < hist_data->n_fields; j++) {
			unsigned int idx;

1424
			hist_field = hist_data->fields[j];
1425 1426 1427 1428 1429
			if (hist_field->flags & HIST_FIELD_FL_VAR)
				continue;

			idx = k++;

1430 1431 1432
			test_name = hist_field_name(hist_field, 0);

			if (strcmp(field_name, test_name) == 0) {
1433
				sort_key->field_idx = idx;
1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
				descending = is_descending(field_str);
				if (descending < 0) {
					ret = descending;
					goto out;
				}
				sort_key->descending = descending;
				break;
			}
		}
		if (j == hist_data->n_fields) {
			ret = -EINVAL;
			break;
		}
	}
1448

1449 1450
	hist_data->n_sort_keys = i;
 out:
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466
	return ret;
}

static void destroy_hist_data(struct hist_trigger_data *hist_data)
{
	destroy_hist_trigger_attrs(hist_data->attrs);
	destroy_hist_fields(hist_data);
	tracing_map_destroy(hist_data->map);
	kfree(hist_data);
}

static int create_tracing_map_fields(struct hist_trigger_data *hist_data)
{
	struct tracing_map *map = hist_data->map;
	struct ftrace_event_field *field;
	struct hist_field *hist_field;
1467
	int i, idx;
1468 1469 1470 1471 1472 1473 1474 1475

	for_each_hist_field(i, hist_data) {
		hist_field = hist_data->fields[i];
		if (hist_field->flags & HIST_FIELD_FL_KEY) {
			tracing_map_cmp_fn_t cmp_fn;

			field = hist_field->field;

1476 1477
			if (hist_field->flags & HIST_FIELD_FL_STACKTRACE)
				cmp_fn = tracing_map_cmp_none;
1478 1479 1480
			else if (!field)
				cmp_fn = tracing_map_cmp_num(hist_field->size,
							     hist_field->is_signed);
1481
			else if (is_string_field(field))
1482 1483 1484 1485
				cmp_fn = tracing_map_cmp_string;
			else
				cmp_fn = tracing_map_cmp_num(field->size,
							     field->is_signed);
1486 1487 1488
			idx = tracing_map_add_key_field(map,
							hist_field->offset,
							cmp_fn);
1489
		} else if (!(hist_field->flags & HIST_FIELD_FL_VAR))
1490 1491 1492 1493
			idx = tracing_map_add_sum_field(map);

		if (idx < 0)
			return idx;
1494 1495 1496 1497 1498 1499 1500 1501

		if (hist_field->flags & HIST_FIELD_FL_VAR) {
			idx = tracing_map_add_var(map);
			if (idx < 0)
				return idx;
			hist_field->var.idx = idx;
			hist_field->var.hist_data = hist_data;
		}
1502 1503 1504 1505 1506 1507 1508 1509
	}

	return 0;
}

static struct hist_trigger_data *
create_hist_data(unsigned int map_bits,
		 struct hist_trigger_attrs *attrs,
1510 1511
		 struct trace_event_file *file,
		 bool remove)
1512
{
1513
	const struct tracing_map_ops *map_ops = NULL;
1514 1515 1516 1517 1518 1519 1520 1521
	struct hist_trigger_data *hist_data;
	int ret = 0;

	hist_data = kzalloc(sizeof(*hist_data), GFP_KERNEL);
	if (!hist_data)
		return ERR_PTR(-ENOMEM);

	hist_data->attrs = attrs;
1522
	hist_data->remove = remove;
1523 1524 1525 1526 1527 1528 1529 1530 1531

	ret = create_hist_fields(hist_data, file);
	if (ret)
		goto free;

	ret = create_sort_keys(hist_data);
	if (ret)
		goto free;

1532
	map_ops = &hist_trigger_elt_data_ops;
1533

1534
	hist_data->map = tracing_map_create(map_bits, hist_data->key_size,
1535
					    map_ops, hist_data);
1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563
	if (IS_ERR(hist_data->map)) {
		ret = PTR_ERR(hist_data->map);
		hist_data->map = NULL;
		goto free;
	}

	ret = create_tracing_map_fields(hist_data);
	if (ret)
		goto free;

	ret = tracing_map_init(hist_data->map);
	if (ret)
		goto free;

	hist_data->event_file = file;
 out:
	return hist_data;
 free:
	hist_data->attrs = NULL;

	destroy_hist_data(hist_data);

	hist_data = ERR_PTR(ret);

	goto out;
}

static void hist_trigger_elt_update(struct hist_trigger_data *hist_data,
1564 1565
				    struct tracing_map_elt *elt, void *rec,
				    struct ring_buffer_event *rbe)
1566 1567
{
	struct hist_field *hist_field;
1568
	unsigned int i, var_idx;
1569 1570 1571 1572
	u64 hist_val;

	for_each_hist_val_field(i, hist_data) {
		hist_field = hist_data->fields[i];
1573
		hist_val = hist_field->fn(hist_field, rec, rbe);
1574 1575 1576 1577 1578
		if (hist_field->flags & HIST_FIELD_FL_VAR) {
			var_idx = hist_field->var.idx;
			tracing_map_set_var(elt, var_idx, hist_val);
			continue;
		}
1579 1580
		tracing_map_update_sum(elt, i, hist_val);
	}
1581 1582 1583 1584 1585 1586 1587 1588 1589

	for_each_hist_key_field(i, hist_data) {
		hist_field = hist_data->fields[i];
		if (hist_field->flags & HIST_FIELD_FL_VAR) {
			hist_val = hist_field->fn(hist_field, rec, rbe);
			var_idx = hist_field->var.idx;
			tracing_map_set_var(elt, var_idx, hist_val);
		}
	}
1590 1591
}

1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
static inline void add_to_key(char *compound_key, void *key,
			      struct hist_field *key_field, void *rec)
{
	size_t size = key_field->size;

	if (key_field->flags & HIST_FIELD_FL_STRING) {
		struct ftrace_event_field *field;

		field = key_field->field;
		if (field->filter_type == FILTER_DYN_STRING)
			size = *(u32 *)(rec + field->offset) >> 16;
		else if (field->filter_type == FILTER_PTR_STRING)
			size = strlen(key);
		else if (field->filter_type == FILTER_STATIC_STRING)
			size = field->size;

		/* ensure NULL-termination */
		if (size > key_field->size - 1)
			size = key_field->size - 1;
	}

	memcpy(compound_key + key_field->offset, key, size);
}

1616
static void event_hist_trigger(struct event_trigger_data *data, void *rec,
1617
			       struct ring_buffer_event *rbe)
1618 1619
{
	struct hist_trigger_data *hist_data = data->private_data;
1620
	bool use_compound_key = (hist_data->n_keys > 1);
1621
	unsigned long entries[HIST_STACKTRACE_DEPTH];
1622
	char compound_key[HIST_KEY_SIZE_MAX];
1623
	struct stack_trace stacktrace;
1624 1625 1626 1627 1628 1629
	struct hist_field *key_field;
	struct tracing_map_elt *elt;
	u64 field_contents;
	void *key = NULL;
	unsigned int i;

1630
	memset(compound_key, 0, hist_data->key_size);
1631

1632 1633 1634
	for_each_hist_key_field(i, hist_data) {
		key_field = hist_data->fields[i];

1635 1636 1637 1638 1639
		if (key_field->flags & HIST_FIELD_FL_STACKTRACE) {
			stacktrace.max_entries = HIST_STACKTRACE_DEPTH;
			stacktrace.entries = entries;
			stacktrace.nr_entries = 0;
			stacktrace.skip = HIST_STACKTRACE_SKIP;
1640

1641 1642 1643 1644 1645
			memset(stacktrace.entries, 0, HIST_STACKTRACE_SIZE);
			save_stack_trace(&stacktrace);

			key = entries;
		} else {
1646
			field_contents = key_field->fn(key_field, rec, rbe);
1647
			if (key_field->flags & HIST_FIELD_FL_STRING) {
1648
				key = (void *)(unsigned long)field_contents;
1649 1650
				use_compound_key = true;
			} else
1651
				key = (void *)&field_contents;
1652
		}
1653 1654 1655

		if (use_compound_key)
			add_to_key(compound_key, key, key_field, rec);
1656 1657
	}

1658
	if (use_compound_key)
1659 1660
		key = compound_key;

1661 1662
	elt = tracing_map_insert(hist_data->map, key);
	if (elt)
1663
		hist_trigger_elt_update(hist_data, elt, rec, rbe);
1664 1665
}

1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
static void hist_trigger_stacktrace_print(struct seq_file *m,
					  unsigned long *stacktrace_entries,
					  unsigned int max_entries)
{
	char str[KSYM_SYMBOL_LEN];
	unsigned int spaces = 8;
	unsigned int i;

	for (i = 0; i < max_entries; i++) {
		if (stacktrace_entries[i] == ULONG_MAX)
			return;

		seq_printf(m, "%*c", 1 + spaces, ' ');
		sprint_symbol(str, stacktrace_entries[i]);
		seq_printf(m, "%s\n", str);
	}
}

1684 1685 1686 1687 1688 1689
static void
hist_trigger_entry_print(struct seq_file *m,
			 struct hist_trigger_data *hist_data, void *key,
			 struct tracing_map_elt *elt)
{
	struct hist_field *key_field;
1690
	char str[KSYM_SYMBOL_LEN];
1691
	bool multiline = false;
1692
	const char *field_name;
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703
	unsigned int i;
	u64 uval;

	seq_puts(m, "{ ");

	for_each_hist_key_field(i, hist_data) {
		key_field = hist_data->fields[i];

		if (i > hist_data->n_vals)
			seq_puts(m, ", ");

1704 1705
		field_name = hist_field_name(key_field, 0);

1706 1707
		if (key_field->flags & HIST_FIELD_FL_HEX) {
			uval = *(u64 *)(key + key_field->offset);
1708
			seq_printf(m, "%s: %llx", field_name, uval);
1709 1710 1711
		} else if (key_field->flags & HIST_FIELD_FL_SYM) {
			uval = *(u64 *)(key + key_field->offset);
			sprint_symbol_no_offset(str, uval);
1712 1713
			seq_printf(m, "%s: [%llx] %-45s", field_name,
				   uval, str);
1714 1715 1716
		} else if (key_field->flags & HIST_FIELD_FL_SYM_OFFSET) {
			uval = *(u64 *)(key + key_field->offset);
			sprint_symbol(str, uval);
1717 1718
			seq_printf(m, "%s: [%llx] %-55s", field_name,
				   uval, str);
1719
		} else if (key_field->flags & HIST_FIELD_FL_EXECNAME) {
1720 1721 1722 1723 1724 1725 1726
			struct hist_elt_data *elt_data = elt->private_data;
			char *comm;

			if (WARN_ON_ONCE(!elt_data))
				return;

			comm = elt_data->comm;
1727 1728

			uval = *(u64 *)(key + key_field->offset);
1729 1730
			seq_printf(m, "%s: %-16s[%10llu]", field_name,
				   comm, uval);
1731 1732 1733 1734 1735 1736 1737 1738
		} else if (key_field->flags & HIST_FIELD_FL_SYSCALL) {
			const char *syscall_name;

			uval = *(u64 *)(key + key_field->offset);
			syscall_name = get_syscall_name(uval);
			if (!syscall_name)
				syscall_name = "unknown_syscall";

1739 1740
			seq_printf(m, "%s: %-30s[%3llu]", field_name,
				   syscall_name, uval);
1741 1742 1743 1744 1745 1746
		} else if (key_field->flags & HIST_FIELD_FL_STACKTRACE) {
			seq_puts(m, "stacktrace:\n");
			hist_trigger_stacktrace_print(m,
						      key + key_field->offset,
						      HIST_STACKTRACE_DEPTH);
			multiline = true;
1747
		} else if (key_field->flags & HIST_FIELD_FL_LOG2) {
1748
			seq_printf(m, "%s: ~ 2^%-2llu", field_name,
1749
				   *(u64 *)(key + key_field->offset));
1750
		} else if (key_field->flags & HIST_FIELD_FL_STRING) {
1751
			seq_printf(m, "%s: %-50s", field_name,
1752
				   (char *)(key + key_field->offset));
1753
		} else {
1754
			uval = *(u64 *)(key + key_field->offset);
1755
			seq_printf(m, "%s: %10llu", field_name, uval);
1756 1757 1758
		}
	}

1759 1760 1761 1762
	if (!multiline)
		seq_puts(m, " ");

	seq_puts(m, "}");
1763 1764 1765 1766

	seq_printf(m, " hitcount: %10llu",
		   tracing_map_read_sum(elt, HITCOUNT_IDX));

1767
	for (i = 1; i < hist_data->n_vals; i++) {
1768 1769
		field_name = hist_field_name(hist_data->fields[i], 0);

1770 1771
		if (hist_data->fields[i]->flags & HIST_FIELD_FL_VAR ||
		    hist_data->fields[i]->flags & HIST_FIELD_FL_EXPR)
1772 1773
			continue;

1774
		if (hist_data->fields[i]->flags & HIST_FIELD_FL_HEX) {
1775
			seq_printf(m, "  %s: %10llx", field_name,
1776 1777
				   tracing_map_read_sum(elt, i));
		} else {
1778
			seq_printf(m, "  %s: %10llu", field_name,
1779 1780
				   tracing_map_read_sum(elt, i));
		}
1781 1782
	}

1783 1784 1785 1786 1787 1788 1789 1790
	seq_puts(m, "\n");
}

static int print_entries(struct seq_file *m,
			 struct hist_trigger_data *hist_data)
{
	struct tracing_map_sort_entry **sort_entries = NULL;
	struct tracing_map *map = hist_data->map;
1791
	int i, n_entries;
1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808

	n_entries = tracing_map_sort_entries(map, hist_data->sort_keys,
					     hist_data->n_sort_keys,
					     &sort_entries);
	if (n_entries < 0)
		return n_entries;

	for (i = 0; i < n_entries; i++)
		hist_trigger_entry_print(m, hist_data,
					 sort_entries[i]->key,
					 sort_entries[i]->elt);

	tracing_map_destroy_sort_entries(sort_entries, n_entries);

	return n_entries;
}

1809 1810
static void hist_trigger_show(struct seq_file *m,
			      struct event_trigger_data *data, int n)
1811 1812
{
	struct hist_trigger_data *hist_data;
1813
	int n_entries;
1814

1815 1816
	if (n > 0)
		seq_puts(m, "\n\n");
1817 1818 1819

	seq_puts(m, "# event histogram\n#\n# trigger info: ");
	data->ops->print(m, data->ops, data);
1820
	seq_puts(m, "#\n\n");
1821 1822 1823

	hist_data = data->private_data;
	n_entries = print_entries(m, hist_data);
1824
	if (n_entries < 0)
1825 1826 1827 1828 1829
		n_entries = 0;

	seq_printf(m, "\nTotals:\n    Hits: %llu\n    Entries: %u\n    Dropped: %llu\n",
		   (u64)atomic64_read(&hist_data->map->hits),
		   n_entries, (u64)atomic64_read(&hist_data->map->drops));
1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
}

static int hist_show(struct seq_file *m, void *v)
{
	struct event_trigger_data *data;
	struct trace_event_file *event_file;
	int n = 0, ret = 0;

	mutex_lock(&event_mutex);

	event_file = event_file_data(m->private);
	if (unlikely(!event_file)) {
		ret = -ENODEV;
		goto out_unlock;
	}

	list_for_each_entry_rcu(data, &event_file->triggers, list) {
		if (data->cmd_ops->trigger_type == ETT_EVENT_HIST)
			hist_trigger_show(m, data, n++);
	}

1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
 out_unlock:
	mutex_unlock(&event_mutex);

	return ret;
}

static int event_hist_open(struct inode *inode, struct file *file)
{
	return single_open(file, hist_show, file);
}

const struct file_operations event_hist_fops = {
	.open = event_hist_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

static void hist_field_print(struct seq_file *m, struct hist_field *hist_field)
{
1871 1872
	const char *field_name = hist_field_name(hist_field, 0);

1873 1874 1875
	if (hist_field->var.name)
		seq_printf(m, "%s=", hist_field->var.name);

1876 1877 1878 1879 1880
	if (hist_field->flags & HIST_FIELD_FL_TIMESTAMP)
		seq_puts(m, "common_timestamp");
	else if (field_name)
		seq_printf(m, "%s", field_name);

1881 1882 1883 1884 1885 1886
	if (hist_field->flags) {
		const char *flags_str = get_hist_field_flags(hist_field);

		if (flags_str)
			seq_printf(m, ".%s", flags_str);
	}
1887 1888 1889 1890 1891 1892 1893
}

static int event_hist_trigger_print(struct seq_file *m,
				    struct event_trigger_ops *ops,
				    struct event_trigger_data *data)
{
	struct hist_trigger_data *hist_data = data->private_data;
1894 1895
	struct hist_field *field;
	bool have_var = false;
1896 1897
	unsigned int i;

1898 1899 1900 1901 1902 1903
	seq_puts(m, "hist:");

	if (data->name)
		seq_printf(m, "%s:", data->name);

	seq_puts(m, "keys=");
1904 1905

	for_each_hist_key_field(i, hist_data) {
1906
		field = hist_data->fields[i];
1907 1908 1909 1910

		if (i > hist_data->n_vals)
			seq_puts(m, ",");

1911
		if (field->flags & HIST_FIELD_FL_STACKTRACE)
1912 1913
			seq_puts(m, "stacktrace");
		else
1914
			hist_field_print(m, field);
1915 1916 1917
	}

	seq_puts(m, ":vals=");
1918 1919

	for_each_hist_val_field(i, hist_data) {
1920 1921 1922 1923 1924 1925
		field = hist_data->fields[i];
		if (field->flags & HIST_FIELD_FL_VAR) {
			have_var = true;
			continue;
		}

1926 1927 1928 1929
		if (i == HITCOUNT_IDX)
			seq_puts(m, "hitcount");
		else {
			seq_puts(m, ",");
1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946
			hist_field_print(m, field);
		}
	}

	if (have_var) {
		unsigned int n = 0;

		seq_puts(m, ":");

		for_each_hist_val_field(i, hist_data) {
			field = hist_data->fields[i];

			if (field->flags & HIST_FIELD_FL_VAR) {
				if (n++)
					seq_puts(m, ",");
				hist_field_print(m, field);
			}
1947 1948
		}
	}
1949 1950

	seq_puts(m, ":sort=");
1951 1952 1953

	for (i = 0; i < hist_data->n_sort_keys; i++) {
		struct tracing_map_sort_key *sort_key;
1954 1955 1956 1957
		unsigned int idx, first_key_idx;

		/* skip VAR vals */
		first_key_idx = hist_data->n_vals - hist_data->n_vars;
1958 1959

		sort_key = &hist_data->sort_keys[i];
1960 1961
		idx = sort_key->field_idx;

1962
		if (WARN_ON(idx >= HIST_FIELDS_MAX))
1963
			return -EINVAL;
1964 1965 1966 1967

		if (i > 0)
			seq_puts(m, ",");

1968
		if (idx == HITCOUNT_IDX)
1969
			seq_puts(m, "hitcount");
1970 1971 1972
		else {
			if (idx >= first_key_idx)
				idx += hist_data->n_vars;
1973
			hist_field_print(m, hist_data->fields[idx]);
1974
		}
1975 1976 1977 1978

		if (sort_key->descending)
			seq_puts(m, ".descending");
	}
1979 1980 1981 1982 1983
	seq_printf(m, ":size=%u", (1 << hist_data->map->map_bits));

	if (data->filter_str)
		seq_printf(m, " if %s", data->filter_str);

1984 1985 1986 1987
	if (data->paused)
		seq_puts(m, " [paused]");
	else
		seq_puts(m, " [active]");
1988 1989 1990 1991 1992 1993

	seq_putc(m, '\n');

	return 0;
}

1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006
static int event_hist_trigger_init(struct event_trigger_ops *ops,
				   struct event_trigger_data *data)
{
	struct hist_trigger_data *hist_data = data->private_data;

	if (!data->ref && hist_data->attrs->name)
		save_named_trigger(hist_data->attrs->name, data);

	data->ref++;

	return 0;
}

2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
static void event_hist_trigger_free(struct event_trigger_ops *ops,
				    struct event_trigger_data *data)
{
	struct hist_trigger_data *hist_data = data->private_data;

	if (WARN_ON_ONCE(data->ref <= 0))
		return;

	data->ref--;
	if (!data->ref) {
2017 2018
		if (data->name)
			del_named_trigger(data);
2019 2020 2021 2022 2023 2024 2025 2026
		trigger_data_free(data);
		destroy_hist_data(hist_data);
	}
}

static struct event_trigger_ops event_hist_trigger_ops = {
	.func			= event_hist_trigger,
	.print			= event_hist_trigger_print,
2027
	.init			= event_hist_trigger_init,
2028 2029 2030
	.free			= event_hist_trigger_free,
};

2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
static int event_hist_trigger_named_init(struct event_trigger_ops *ops,
					 struct event_trigger_data *data)
{
	data->ref++;

	save_named_trigger(data->named_data->name, data);

	event_hist_trigger_init(ops, data->named_data);

	return 0;
}

static void event_hist_trigger_named_free(struct event_trigger_ops *ops,
					  struct event_trigger_data *data)
{
	if (WARN_ON_ONCE(data->ref <= 0))
		return;

	event_hist_trigger_free(ops, data->named_data);

	data->ref--;
	if (!data->ref) {
		del_named_trigger(data);
		trigger_data_free(data);
	}
}

static struct event_trigger_ops event_hist_trigger_named_ops = {
	.func			= event_hist_trigger,
	.print			= event_hist_trigger_print,
	.init			= event_hist_trigger_named_init,
	.free			= event_hist_trigger_named_free,
};

2065 2066 2067 2068 2069 2070
static struct event_trigger_ops *event_hist_get_trigger_ops(char *cmd,
							    char *param)
{
	return &event_hist_trigger_ops;
}

2071 2072 2073 2074
static void hist_clear(struct event_trigger_data *data)
{
	struct hist_trigger_data *hist_data = data->private_data;

2075 2076
	if (data->name)
		pause_named_trigger(data);
2077 2078 2079 2080 2081

	synchronize_sched();

	tracing_map_clear(hist_data->map);

2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102
	if (data->name)
		unpause_named_trigger(data);
}

static bool compatible_field(struct ftrace_event_field *field,
			     struct ftrace_event_field *test_field)
{
	if (field == test_field)
		return true;
	if (field == NULL || test_field == NULL)
		return false;
	if (strcmp(field->name, test_field->name) != 0)
		return false;
	if (strcmp(field->type, test_field->type) != 0)
		return false;
	if (field->size != test_field->size)
		return false;
	if (field->is_signed != test_field->is_signed)
		return false;

	return true;
2103 2104
}

2105
static bool hist_trigger_match(struct event_trigger_data *data,
2106 2107 2108
			       struct event_trigger_data *data_test,
			       struct event_trigger_data *named_data,
			       bool ignore_filter)
2109 2110 2111 2112 2113 2114
{
	struct tracing_map_sort_key *sort_key, *sort_key_test;
	struct hist_trigger_data *hist_data, *hist_data_test;
	struct hist_field *key_field, *key_field_test;
	unsigned int i;

2115 2116 2117 2118 2119 2120 2121
	if (named_data && (named_data != data_test) &&
	    (named_data != data_test->named_data))
		return false;

	if (!named_data && is_named_trigger(data_test))
		return false;

2122 2123 2124 2125 2126 2127 2128 2129
	hist_data = data->private_data;
	hist_data_test = data_test->private_data;

	if (hist_data->n_vals != hist_data_test->n_vals ||
	    hist_data->n_fields != hist_data_test->n_fields ||
	    hist_data->n_sort_keys != hist_data_test->n_sort_keys)
		return false;

2130 2131 2132 2133 2134
	if (!ignore_filter) {
		if ((data->filter_str && !data_test->filter_str) ||
		   (!data->filter_str && data_test->filter_str))
			return false;
	}
2135 2136 2137 2138 2139 2140 2141

	for_each_hist_field(i, hist_data) {
		key_field = hist_data->fields[i];
		key_field_test = hist_data_test->fields[i];

		if (key_field->flags != key_field_test->flags)
			return false;
2142
		if (!compatible_field(key_field->field, key_field_test->field))
2143 2144 2145
			return false;
		if (key_field->offset != key_field_test->offset)
			return false;
2146 2147 2148 2149
		if (key_field->size != key_field_test->size)
			return false;
		if (key_field->is_signed != key_field_test->is_signed)
			return false;
2150 2151 2152 2153 2154
		if (!!key_field->var.name != !!key_field_test->var.name)
			return false;
		if (key_field->var.name &&
		    strcmp(key_field->var.name, key_field_test->var.name) != 0)
			return false;
2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165
	}

	for (i = 0; i < hist_data->n_sort_keys; i++) {
		sort_key = &hist_data->sort_keys[i];
		sort_key_test = &hist_data_test->sort_keys[i];

		if (sort_key->field_idx != sort_key_test->field_idx ||
		    sort_key->descending != sort_key_test->descending)
			return false;
	}

2166
	if (!ignore_filter && data->filter_str &&
2167 2168 2169 2170 2171 2172
	    (strcmp(data->filter_str, data_test->filter_str) != 0))
		return false;

	return true;
}

2173 2174 2175 2176
static int hist_register_trigger(char *glob, struct event_trigger_ops *ops,
				 struct event_trigger_data *data,
				 struct trace_event_file *file)
{
2177
	struct hist_trigger_data *hist_data = data->private_data;
2178
	struct event_trigger_data *test, *named_data = NULL;
2179 2180
	int ret = 0;

2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194
	if (hist_data->attrs->name) {
		named_data = find_named_trigger(hist_data->attrs->name);
		if (named_data) {
			if (!hist_trigger_match(data, named_data, named_data,
						true)) {
				ret = -EINVAL;
				goto out;
			}
		}
	}

	if (hist_data->attrs->name && !named_data)
		goto new;

2195 2196
	list_for_each_entry_rcu(test, &file->triggers, list) {
		if (test->cmd_ops->trigger_type == ETT_EVENT_HIST) {
2197
			if (!hist_trigger_match(data, test, named_data, false))
2198
				continue;
2199 2200 2201 2202
			if (hist_data->attrs->pause)
				test->paused = true;
			else if (hist_data->attrs->cont)
				test->paused = false;
2203 2204
			else if (hist_data->attrs->clear)
				hist_clear(test);
2205 2206
			else
				ret = -EEXIST;
2207 2208 2209
			goto out;
		}
	}
2210
 new:
2211
	if (hist_data->attrs->cont || hist_data->attrs->clear) {
2212 2213 2214 2215
		ret = -ENOENT;
		goto out;
	}

2216 2217 2218
	if (hist_data->attrs->pause)
		data->paused = true;

2219 2220 2221 2222 2223 2224 2225
	if (named_data) {
		destroy_hist_data(data->private_data);
		data->private_data = named_data->private_data;
		set_named_trigger_data(data, named_data);
		data->ops = &event_hist_trigger_named_ops;
	}

2226 2227 2228 2229 2230 2231 2232 2233 2234 2235
	if (data->ops->init) {
		ret = data->ops->init(data->ops, data);
		if (ret < 0)
			goto out;
	}

	list_add_rcu(&data->list, &file->triggers);
	ret++;

	update_cond_flag(file);
2236

2237 2238 2239
	if (hist_data->enable_timestamps)
		tracing_set_time_stamp_abs(file->tr, true);

2240 2241 2242 2243 2244 2245 2246 2247 2248
	if (trace_event_trigger_enable_disable(file, 1) < 0) {
		list_del_rcu(&data->list);
		update_cond_flag(file);
		ret--;
	}
 out:
	return ret;
}

2249 2250 2251 2252
static void hist_unregister_trigger(char *glob, struct event_trigger_ops *ops,
				    struct event_trigger_data *data,
				    struct trace_event_file *file)
{
2253 2254
	struct hist_trigger_data *hist_data = data->private_data;
	struct event_trigger_data *test, *named_data = NULL;
2255 2256
	bool unregistered = false;

2257 2258 2259
	if (hist_data->attrs->name)
		named_data = find_named_trigger(hist_data->attrs->name);

2260 2261
	list_for_each_entry_rcu(test, &file->triggers, list) {
		if (test->cmd_ops->trigger_type == ETT_EVENT_HIST) {
2262
			if (!hist_trigger_match(data, test, named_data, false))
2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273
				continue;
			unregistered = true;
			list_del_rcu(&test->list);
			trace_event_trigger_enable_disable(file, 0);
			update_cond_flag(file);
			break;
		}
	}

	if (unregistered && test->ops->free)
		test->ops->free(test->ops, test);
2274 2275

	if (hist_data->enable_timestamps) {
2276
		if (!hist_data->remove || unregistered)
2277 2278
			tracing_set_time_stamp_abs(file->tr, false);
	}
2279 2280 2281 2282
}

static void hist_unreg_all(struct trace_event_file *file)
{
2283
	struct event_trigger_data *test, *n;
2284
	struct hist_trigger_data *hist_data;
2285

2286
	list_for_each_entry_safe(test, n, &file->triggers, list) {
2287
		if (test->cmd_ops->trigger_type == ETT_EVENT_HIST) {
2288
			hist_data = test->private_data;
2289 2290 2291
			list_del_rcu(&test->list);
			trace_event_trigger_enable_disable(file, 0);
			update_cond_flag(file);
2292 2293
			if (hist_data->enable_timestamps)
				tracing_set_time_stamp_abs(file->tr, false);
2294 2295 2296 2297 2298 2299
			if (test->ops->free)
				test->ops->free(test->ops, test);
		}
	}
}

2300 2301 2302 2303 2304 2305 2306 2307 2308
static int event_hist_trigger_func(struct event_command *cmd_ops,
				   struct trace_event_file *file,
				   char *glob, char *cmd, char *param)
{
	unsigned int hist_trigger_bits = TRACING_MAP_BITS_DEFAULT;
	struct event_trigger_data *trigger_data;
	struct hist_trigger_attrs *attrs;
	struct event_trigger_ops *trigger_ops;
	struct hist_trigger_data *hist_data;
2309
	bool remove = false;
2310 2311 2312 2313 2314 2315
	char *trigger;
	int ret = 0;

	if (!param)
		return -EINVAL;

2316 2317 2318
	if (glob[0] == '!')
		remove = true;

2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330
	/* separate the trigger from the filter (k:v [if filter]) */
	trigger = strsep(&param, " \t");
	if (!trigger)
		return -EINVAL;

	attrs = parse_hist_trigger_attrs(trigger);
	if (IS_ERR(attrs))
		return PTR_ERR(attrs);

	if (attrs->map_bits)
		hist_trigger_bits = attrs->map_bits;

2331
	hist_data = create_hist_data(hist_trigger_bits, attrs, file, remove);
2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352
	if (IS_ERR(hist_data)) {
		destroy_hist_trigger_attrs(attrs);
		return PTR_ERR(hist_data);
	}

	trigger_ops = cmd_ops->get_trigger_ops(cmd, trigger);

	ret = -ENOMEM;
	trigger_data = kzalloc(sizeof(*trigger_data), GFP_KERNEL);
	if (!trigger_data)
		goto out_free;

	trigger_data->count = -1;
	trigger_data->ops = trigger_ops;
	trigger_data->cmd_ops = cmd_ops;

	INIT_LIST_HEAD(&trigger_data->list);
	RCU_INIT_POINTER(trigger_data->filter, NULL);

	trigger_data->private_data = hist_data;

2353 2354 2355 2356 2357 2358 2359
	/* if param is non-empty, it's supposed to be a filter */
	if (param && cmd_ops->set_filter) {
		ret = cmd_ops->set_filter(param, trigger_data, file);
		if (ret < 0)
			goto out_free;
	}

2360
	if (remove) {
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372
		cmd_ops->unreg(glob+1, trigger_ops, trigger_data, file);
		ret = 0;
		goto out_free;
	}

	ret = cmd_ops->reg(glob, trigger_ops, trigger_data, file);
	/*
	 * The above returns on success the # of triggers registered,
	 * but if it didn't register any it returns zero.  Consider no
	 * triggers registered a failure too.
	 */
	if (!ret) {
2373
		if (!(attrs->pause || attrs->cont || attrs->clear))
2374
			ret = -ENOENT;
2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
		goto out_free;
	} else if (ret < 0)
		goto out_free;
	/* Just return zero, not the number of registered triggers */
	ret = 0;
 out:
	return ret;
 out_free:
	if (cmd_ops->set_filter)
		cmd_ops->set_filter(NULL, trigger_data, NULL);

	kfree(trigger_data);

	destroy_hist_data(hist_data);
	goto out;
}

static struct event_command trigger_hist_cmd = {
	.name			= "hist",
	.trigger_type		= ETT_EVENT_HIST,
	.flags			= EVENT_CMD_FL_NEEDS_REC,
	.func			= event_hist_trigger_func,
	.reg			= hist_register_trigger,
2398 2399
	.unreg			= hist_unregister_trigger,
	.unreg_all		= hist_unreg_all,
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
	.get_trigger_ops	= event_hist_get_trigger_ops,
	.set_filter		= set_trigger_filter,
};

__init int register_trigger_hist_cmd(void)
{
	int ret;

	ret = register_event_command(&trigger_hist_cmd);
	WARN_ON(ret < 0);

	return ret;
}
2413 2414

static void
2415 2416
hist_enable_trigger(struct event_trigger_data *data, void *rec,
		    struct ring_buffer_event *event)
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431
{
	struct enable_trigger_data *enable_data = data->private_data;
	struct event_trigger_data *test;

	list_for_each_entry_rcu(test, &enable_data->file->triggers, list) {
		if (test->cmd_ops->trigger_type == ETT_EVENT_HIST) {
			if (enable_data->enable)
				test->paused = false;
			else
				test->paused = true;
		}
	}
}

static void
2432 2433
hist_enable_count_trigger(struct event_trigger_data *data, void *rec,
			  struct ring_buffer_event *event)
2434 2435 2436 2437 2438 2439 2440
{
	if (!data->count)
		return;

	if (data->count != -1)
		(data->count)--;

2441
	hist_enable_trigger(data, rec, event);
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
}

static struct event_trigger_ops hist_enable_trigger_ops = {
	.func			= hist_enable_trigger,
	.print			= event_enable_trigger_print,
	.init			= event_trigger_init,
	.free			= event_enable_trigger_free,
};

static struct event_trigger_ops hist_enable_count_trigger_ops = {
	.func			= hist_enable_count_trigger,
	.print			= event_enable_trigger_print,
	.init			= event_trigger_init,
	.free			= event_enable_trigger_free,
};

static struct event_trigger_ops hist_disable_trigger_ops = {
	.func			= hist_enable_trigger,
	.print			= event_enable_trigger_print,
	.init			= event_trigger_init,
	.free			= event_enable_trigger_free,
};

static struct event_trigger_ops hist_disable_count_trigger_ops = {
	.func			= hist_enable_count_trigger,
	.print			= event_enable_trigger_print,
	.init			= event_trigger_init,
	.free			= event_enable_trigger_free,
};

static struct event_trigger_ops *
hist_enable_get_trigger_ops(char *cmd, char *param)
{
	struct event_trigger_ops *ops;
	bool enable;

	enable = (strcmp(cmd, ENABLE_HIST_STR) == 0);

	if (enable)
		ops = param ? &hist_enable_count_trigger_ops :
			&hist_enable_trigger_ops;
	else
		ops = param ? &hist_disable_count_trigger_ops :
			&hist_disable_trigger_ops;

	return ops;
}

2490 2491
static void hist_enable_unreg_all(struct trace_event_file *file)
{
2492
	struct event_trigger_data *test, *n;
2493

2494
	list_for_each_entry_safe(test, n, &file->triggers, list) {
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504
		if (test->cmd_ops->trigger_type == ETT_HIST_ENABLE) {
			list_del_rcu(&test->list);
			update_cond_flag(file);
			trace_event_trigger_enable_disable(file, 0);
			if (test->ops->free)
				test->ops->free(test->ops, test);
		}
	}
}

2505 2506 2507 2508 2509 2510
static struct event_command trigger_hist_enable_cmd = {
	.name			= ENABLE_HIST_STR,
	.trigger_type		= ETT_HIST_ENABLE,
	.func			= event_enable_trigger_func,
	.reg			= event_enable_register_trigger,
	.unreg			= event_enable_unregister_trigger,
2511
	.unreg_all		= hist_enable_unreg_all,
2512 2513 2514 2515 2516 2517 2518 2519 2520 2521
	.get_trigger_ops	= hist_enable_get_trigger_ops,
	.set_filter		= set_trigger_filter,
};

static struct event_command trigger_hist_disable_cmd = {
	.name			= DISABLE_HIST_STR,
	.trigger_type		= ETT_HIST_ENABLE,
	.func			= event_enable_trigger_func,
	.reg			= event_enable_register_trigger,
	.unreg			= event_enable_unregister_trigger,
2522
	.unreg_all		= hist_enable_unreg_all,
2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545
	.get_trigger_ops	= hist_enable_get_trigger_ops,
	.set_filter		= set_trigger_filter,
};

static __init void unregister_trigger_hist_enable_disable_cmds(void)
{
	unregister_event_command(&trigger_hist_enable_cmd);
	unregister_event_command(&trigger_hist_disable_cmd);
}

__init int register_trigger_hist_enable_disable_cmds(void)
{
	int ret;

	ret = register_event_command(&trigger_hist_enable_cmd);
	if (WARN_ON(ret < 0))
		return ret;
	ret = register_event_command(&trigger_hist_disable_cmd);
	if (WARN_ON(ret < 0))
		unregister_trigger_hist_enable_disable_cmds();

	return ret;
}