X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fevent-notifier-error-accounting.c;h=356cbc4d6a004edd73dcf36279399bc9b7b7ab09;hb=73535baf93cafc2a3e56a4e713e342ab7325f8dd;hp=47366e9e9a95b75211281c3422489e51a2c586ab;hpb=2d6bae7ed336ffdda5e9e7f94495f5ef43238847;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/event-notifier-error-accounting.c b/src/bin/lttng-sessiond/event-notifier-error-accounting.c index 47366e9e9..356cbc4d6 100644 --- a/src/bin/lttng-sessiond/event-notifier-error-accounting.c +++ b/src/bin/lttng-sessiond/event-notifier-error-accounting.c @@ -381,6 +381,12 @@ struct ust_error_accounting_entry *ust_error_accounting_entry_create( .has_overflow = false, }; + if (!ust_app_supports_counters(app)) { + DBG("Refusing to create accounting entry for application (unsupported feature): app name = '%s', app ppid = %d", + app->name, (int) app->ppid); + goto error; + } + entry = zmalloc(sizeof(struct ust_error_accounting_entry)); if (!entry) { PERROR("Failed to allocate event notifier error acounting entry") @@ -482,7 +488,7 @@ error_create_counter_data: lttng_ust_ctl_destroy_counter(daemon_counter); error_create_daemon_counter: error_shm_alloc: - /* Error occured before per-cpu SHMs were handed-off to ustctl. */ + /* Error occurred before per-cpu SHMs were handed-off to ustctl. */ if (cpu_counter_fds) { for (i = 0; i < entry->nr_counter_cpu_fds; i++) { if (cpu_counter_fds[i] < 0) { @@ -586,6 +592,11 @@ event_notifier_error_accounting_register_app(struct ust_app *app) enum event_notifier_error_accounting_status status; struct lttng_ust_abi_object_data **cpu_counters; + if (!ust_app_supports_counters(app)) { + status = EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_UNSUPPORTED; + goto end; + } + /* * Check if we already have a error counter for the user id of this * app. If not, create one. @@ -688,7 +699,7 @@ event_notifier_error_accounting_register_app(struct ust_app *app) app->event_notifier_group.nr_counter_cpu = entry->nr_counter_cpu_fds; app->event_notifier_group.counter_cpu = cpu_counters; cpu_counters = NULL; - goto end; + goto end_unlock; error_send_cpu_counter_data: error_duplicate_cpu_counter: @@ -716,8 +727,9 @@ error_duplicate_counter: ust_error_accounting_entry_put(entry); error_creating_entry: app->event_notifier_group.counter = NULL; -end: +end_unlock: rcu_read_unlock(); +end: return status; } @@ -1069,6 +1081,9 @@ event_notifier_error_accounting_register_event_notifier( state = &kernel_state; break; case LTTNG_DOMAIN_UST: + case LTTNG_DOMAIN_PYTHON: + case LTTNG_DOMAIN_JUL: + case LTTNG_DOMAIN_LOG4J: state = &ust_state; break; default: @@ -1117,6 +1132,9 @@ event_notifier_error_accounting_register_event_notifier( #ifdef HAVE_LIBLTTNG_UST_CTL switch (lttng_trigger_get_underlying_domain_type_restriction(trigger)) { case LTTNG_DOMAIN_UST: + case LTTNG_DOMAIN_PYTHON: + case LTTNG_DOMAIN_JUL: + case LTTNG_DOMAIN_LOG4J: pthread_mutex_lock(&the_event_notifier_counter.lock); the_event_notifier_counter.count++; if (the_event_notifier_counter.count == 1) { @@ -1206,6 +1224,9 @@ event_notifier_error_accounting_get_count( return event_notifier_error_accounting_kernel_get_count( trigger, count); case LTTNG_DOMAIN_UST: + case LTTNG_DOMAIN_PYTHON: + case LTTNG_DOMAIN_JUL: + case LTTNG_DOMAIN_LOG4J: #ifdef HAVE_LIBLTTNG_UST_CTL return event_notifier_error_accounting_ust_get_count(trigger, count); @@ -1226,6 +1247,9 @@ event_notifier_error_accounting_clear(const struct lttng_trigger *trigger) case LTTNG_DOMAIN_KERNEL: return event_notifier_error_accounting_kernel_clear(trigger); case LTTNG_DOMAIN_UST: + case LTTNG_DOMAIN_PYTHON: + case LTTNG_DOMAIN_JUL: + case LTTNG_DOMAIN_LOG4J: #ifdef HAVE_LIBLTTNG_UST_CTL return event_notifier_error_accounting_ust_clear(trigger); #else @@ -1269,6 +1293,9 @@ void event_notifier_error_accounting_unregister_event_notifier( break; #ifdef HAVE_LIBLTTNG_UST_CTL case LTTNG_DOMAIN_UST: + case LTTNG_DOMAIN_PYTHON: + case LTTNG_DOMAIN_JUL: + case LTTNG_DOMAIN_LOG4J: state = &ust_state; pthread_mutex_lock(&the_event_notifier_counter.lock);