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
|
/* -*- linux-c -*-
* Print Functions
* Copyright (C) 2007-2018 Red Hat Inc.
*
* This file is part of systemtap, and is free software. You can
* redistribute it and/or modify it under the terms of the GNU General
* Public License (GPL); either version 2, or (at your option) any
* later version.
*/
#ifndef _STAPLINUX_PRINT_C_
#define _STAPLINUX_PRINT_C_
#include "stp_string.h"
#include "print.h"
#include "transport/transport.c"
#include "vsprintf.c"
/** @file print.c
* Printing Functions.
*/
/** @addtogroup print Print Functions
* The print buffer is for collecting output to send to the user daemon.
* This is a per-cpu static buffer. The buffer is sent when
* _stp_print_flush() is called.
*
* The reason to do this is to allow multiple small prints to be combined then
* timestamped and sent together to staprun. This is more efficient than sending
* numerous small packets.
*
* This function is called automatically when the print buffer is full.
* It MUST also be called at the end of every probe that prints something.
* @{
*/
struct _stp_log {
unsigned int len; /* Bytes used in the buffer */
char *buf; /* NB we don't use arrays here to avoid allocating memory
on offline CPUs (but still possible ones) */
atomic_t reentrancy_lock;
bool no_flush;
bool is_full;
};
#include "print_flush.c"
static struct _stp_log *_stp_log_pcpu;
/*
* An atomic counter is used to synchronize every possible print buffer usage
* with the _stp_print_cleanup() function. The cleanup function sets the counter
* to INT_MAX after waiting for everything using the print buffer to finish. We
* cannot use a lock primitive to implement this because lock_acquire() contains
* tracepoints and print statements are used both inside and outside of probes.
* If the lock were only used inside probes, the runtime context would protect
* us from recursing into the lock_acquire() tracepoints and deadlocking. We
* instead use _stp_print_ctr as if it were a read-write lock.
*/
static atomic_t _stp_print_ctr = ATOMIC_INIT(0);
/*
* This disables IRQs to make per-CPU print buffer accesses atomic. There is a
* reentrancy protection mechanism specifically for NMIs, since they can violate
* our atomic guarantee. Reentrancy is otherwise allowed within code sections
* that have the runtime context held (via _stp_runtime_entryfn_get_context()).
*/
static bool _stp_print_trylock_irqsave(unsigned long *flags)
{
bool context_held = false;
struct _stp_log *log;
log = per_cpu_ptr(_stp_log_pcpu, raw_smp_processor_id());
/* We have to check log->buf == NULL here since the online
* CPUs may change at any time through the CPU hotplug
* feature of the kernel. So the current CPU's log->buf could be NULL
* if it is a new online CPU. And we cannot allocate new memory from within
* this context.
*/
if (unlikely(log->buf == NULL))
return false;
local_irq_save(*flags);
if (!atomic_add_unless(&_stp_print_ctr, 1, INT_MAX))
goto irq_restore;
/*
* Check the per-CPU reentrancy lock for contention, unless the runtime
* context is already held, in which case we already have reentrancy
* protection. Otherwise, if the reentrancy lock is contented, that
* means we're either inside an NMI that fired while the current CPU was
* accessing the log buffer, or something is trying to nest calls to
* _stp_print_trylock_irqsave(). Our only choice is to reject the log
* access attempt in this case because log buffer corruption and panics
* could ensue if we're inside an NMI.
*/
if (_stp_runtime_context_trylock()) {
struct context *c = _stp_runtime_get_context();
context_held = c && atomic_read(&c->busy);
_stp_runtime_context_unlock();
}
/* Fall back onto the reentrancy lock if the context isn't held */
if (!context_held) {
if (atomic_cmpxchg(&log->reentrancy_lock, 0, 1))
goto print_unlock;
}
return true;
print_unlock:
atomic_dec(&_stp_print_ctr);
irq_restore:
local_irq_restore(*flags);
return false;
}
static void _stp_print_unlock_irqrestore(unsigned long *flags)
{
bool context_held = false;
struct _stp_log *log;
if (_stp_runtime_context_trylock()) {
struct context *c = _stp_runtime_get_context();
context_held = c && atomic_read(&c->busy);
_stp_runtime_context_unlock();
}
if (!context_held) {
log = per_cpu_ptr(_stp_log_pcpu, raw_smp_processor_id());
atomic_set(&log->reentrancy_lock, 0);
}
atomic_dec(&_stp_print_ctr);
local_irq_restore(*flags);
}
/* create percpu print and io buffers */
static int _stp_print_init (void)
{
unsigned int cpu;
/* _stp_alloc_percpu() always zero-fills the allocated percpu memory
* since the kernel's __alloc_percpu() always does that.
*/
_stp_log_pcpu = _stp_alloc_percpu(sizeof(*_stp_log_pcpu));
if (!_stp_log_pcpu)
return -ENOMEM;
/* We don't use for_aech_possible_cpu() here since the number of possible
* CPUs may be very large even though there are many fewere online CPUs.
* For example, VMWare guests usually have 128 possible CPUs while only
* have a few online CPUs. Once the bufs were allocated for
* online CPUs at this point, we will discard any printing operations on
* any future online CPUs dynamically added through the kernel's CPU
* hotplug feature. Memory allocations of the bufs can only happen right
* here.
*/
for_each_online_cpu(cpu) {
struct _stp_log *log = per_cpu_ptr(_stp_log_pcpu, cpu);
log->reentrancy_lock = (atomic_t)ATOMIC_INIT(0);
log->buf = _stp_vzalloc_node(STP_BUFFER_SIZE, cpu_to_node(cpu));
if (unlikely(log->buf == NULL)) {
_stp_error ("print log buf (size %lu per cpu) allocation failed",
(unsigned long) STP_BUFFER_SIZE);
return -ENOMEM;
}
}
return 0;
}
static void _stp_print_cleanup (void)
{
unsigned int cpu;
/* Wait for the loggers to finish modifying the print buffers */
while (atomic_cmpxchg(&_stp_print_ctr, 0, INT_MAX))
cpu_relax();
/* NB We cannot use the for_each_online_cpu() here since online
* CPUs may get changed on-the-fly through the CPU hotplug feature
* of the kernel. We only allocated bufs on original online CPUs
* when _stp_print_init() was called. */
for_each_possible_cpu(cpu) {
struct _stp_log *log = per_cpu_ptr(_stp_log_pcpu, cpu);
/*
* Flush anything that could be left in the print buffer. It is
* safe to do this without any kind of synchronization mechanism
* because nothing is using this print buffer anymore.
*/
if (likely(log->buf)) {
/* We have to check log->buf != NULL here since the
* online CPUs may change at any time through the CPU
* hotplug feature of the kernel.
*/
__stp_print_flush(log);
_stp_vfree(log->buf);
log->buf = NULL;
}
}
_stp_free_percpu(_stp_log_pcpu);
}
static inline void _stp_print_flush(void)
{
struct _stp_log *log;
unsigned long flags;
if (!_stp_print_trylock_irqsave(&flags))
return;
log = per_cpu_ptr(_stp_log_pcpu, raw_smp_processor_id());
__stp_print_flush(log);
_stp_print_unlock_irqrestore(&flags);
}
#ifndef STP_MAXBINARYARGS
#define STP_MAXBINARYARGS 127
#endif
/** Reserves space in the output buffer for direct I/O. Must be called with
* _stp_print_trylock_irqsave() held.
*/
static void * _stp_reserve_bytes (int numbytes)
{
struct _stp_log *log;
char *ret;
if (unlikely(numbytes == 0 || numbytes > STP_BUFFER_SIZE))
return NULL;
log = per_cpu_ptr(_stp_log_pcpu, raw_smp_processor_id());
/* _stp_print_trylock_irqsave already checks log->buf != NULL */
if (unlikely(numbytes > (STP_BUFFER_SIZE - log->len)))
__stp_print_flush(log);
if (log->is_full)
return NULL;
ret = &log->buf[log->len];
log->len += numbytes;
return ret;
}
static void _stp_unreserve_bytes (int numbytes)
{
struct _stp_log *log;
log = per_cpu_ptr(_stp_log_pcpu, raw_smp_processor_id());
/* We have to check log->buf == NULL here since the online CPUs may
* change at any time through the CPU hotplug feature of the kernel.
* So the current CPU's log->buf could be NULL if it is a new online
* CPU.
*/
if (unlikely(log->buf == NULL))
return;
if (numbytes <= log->len)
log->len -= numbytes;
}
/** Write 64-bit args directly into the output stream.
* This function takes a variable number of 64-bit arguments
* and writes them directly into the output stream. Marginally faster
* than doing the same in _stp_vsnprintf().
* @sa _stp_vsnprintf()
*/
static void _stp_print_binary (int num, ...)
{
unsigned long flags;
va_list vargs;
int i;
int64_t *args;
if (unlikely(num > STP_MAXBINARYARGS))
num = STP_MAXBINARYARGS;
if (!_stp_print_trylock_irqsave(&flags))
return;
args = _stp_reserve_bytes(num * sizeof(int64_t));
if (args) {
va_start(vargs, num);
for (i = 0; i < num; i++)
args[i] = va_arg(vargs, int64_t);
va_end(vargs);
}
_stp_print_unlock_irqrestore(&flags);
}
/** Print into the print buffer.
* Like C printf.
*
* @sa _stp_print_flush()
*/
static void _stp_printf (const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
_stp_vsnprintf(NULL, 0, fmt, args);
va_end(args);
}
/** Write a string into the print buffer.
* @param str A C string (char *)
*/
static void _stp_print (const char *str)
{
struct _stp_log *log;
unsigned long flags;
if (!_stp_print_trylock_irqsave(&flags))
return;
log = per_cpu_ptr(_stp_log_pcpu, raw_smp_processor_id());
while (!log->is_full) {
while (log->len < STP_BUFFER_SIZE && *str)
log->buf[log->len++] = *str++;
if (likely(!*str))
break;
__stp_print_flush(log);
}
_stp_print_unlock_irqrestore(&flags);
}
static void _stp_print_char (const char c)
{
struct _stp_log *log;
unsigned long flags;
if (!_stp_print_trylock_irqsave(&flags))
return;
log = per_cpu_ptr(_stp_log_pcpu, raw_smp_processor_id());
if (unlikely(log->len == STP_BUFFER_SIZE))
__stp_print_flush(log);
if (likely(!log->no_flush || !log->is_full))
log->buf[log->len++] = c;
_stp_print_unlock_irqrestore(&flags);
}
static void _stp_print_kernel_info(char *sname, char *vstr, int ctx, int num_probes)
{
printk(KERN_DEBUG
"%s (%s): systemtap: %s, base: %lx"
", memory: %ludata/%lutext/%uctx/%lunet/%lualloc kb"
", probes: %d"
#if ! STP_PRIVILEGE_CONTAINS (STP_PRIVILEGE, STP_PR_STAPDEV)
", unpriv-uid: %d"
#endif
"\n",
THIS_MODULE->name,
sname, /* name of source file */
vstr, /* stap version */
#ifdef STAPCONF_MODULE_LAYOUT
(unsigned long) THIS_MODULE->core_layout.base,
(unsigned long) (THIS_MODULE->core_layout.size - THIS_MODULE->core_layout.text_size)/1024,
(unsigned long) (THIS_MODULE->core_layout.text_size)/1024,
#else
#ifdef STAPCONF_MODULE_MEMORY
(unsigned long) THIS_MODULE->mem[MOD_TEXT].base,
(unsigned long) (THIS_MODULE->mem[MOD_DATA].size)/1024,
(unsigned long) (THIS_MODULE->mem[MOD_TEXT].size)/1024,
#else
#ifndef STAPCONF_GRSECURITY
(unsigned long) THIS_MODULE->module_core,
(unsigned long) (THIS_MODULE->core_size - THIS_MODULE->core_text_size)/1024,
(unsigned long) (THIS_MODULE->core_text_size)/1024,
#else
(unsigned long) THIS_MODULE->module_core_rx,
(unsigned long) (THIS_MODULE->core_size_rw - THIS_MODULE->core_size_rx)/1024,
(unsigned long) (THIS_MODULE->core_size_rx)/1024,
#endif
#endif
#endif
ctx/1024,
_stp_allocated_net_memory/1024,
(_stp_allocated_memory - _stp_allocated_net_memory - ctx)/1024,
/* (un-double-counting net/ctx because they're also stp_alloc'd) */
num_probes
#if ! STP_PRIVILEGE_CONTAINS (STP_PRIVILEGE, STP_PR_STAPDEV)
, _stp_uid
#endif
);
}
/** @} */
#endif /* _STAPLINUX_PRINT_C_ */
|