From: compudj Date: Thu, 9 Mar 2006 20:23:04 +0000 (+0000) Subject: remove old usertrace X-Git-Tag: v0.12.20~1855 X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=463fc1efb3b7f498b3e58b840cd6a5f92a57fc00;hp=bf9c80a50b6c7435d28e8cbb7e7c36bd6729fc91;p=lttv.git remove old usertrace git-svn-id: http://ltt.polymtl.ca/svn@1634 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/genevent-new/parser.c b/genevent-new/parser.c index 28ebaeea..d76f13b7 100644 --- a/genevent-new/parser.c +++ b/genevent-new/parser.c @@ -310,7 +310,7 @@ void getFacilityAttributes(parse_file_t *in, facility_t *fac) if(car == EOF) in->error(in,"name was expected"); else if(car == '\"') fac->name = allocAndCopy(getQuotedString(in)); else fac->name = allocAndCopy(getName(in)); - if(!strncmp(fac->name, "user_", sizeof("user_")) == 0) + if(!strncmp(fac->name, "user_", sizeof("user_")-1)) fac->user = 1; } else if(!strcmp("arch", token)) { getEqual(in); diff --git a/usertrace-attic/Makefile b/usertrace-attic/Makefile new file mode 100644 index 00000000..83c3b89f --- /dev/null +++ b/usertrace-attic/Makefile @@ -0,0 +1,11 @@ + + +CC=gcc + +test: test.c lttng_usertrace.c + $(CC) $(CFLAGS) -lpthread -o $@ $^ + +.PHONY : clean + +clean: + rm -fr *.o *~ test diff --git a/usertrace-attic/lttng_usertrace.c b/usertrace-attic/lttng_usertrace.c new file mode 100644 index 00000000..5e32b0cd --- /dev/null +++ b/usertrace-attic/lttng_usertrace.c @@ -0,0 +1,252 @@ + +/* LTTng user-space tracing code + * + * Copyright 2006 Mathieu Desnoyers + * + */ + + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "lttng_usertrace.h" + +#define MAX_TRACES 16 + + +/* + * Notes : + * + * ltt_update : + * + * it should send the information on the traces that has their status MODIFIED. + * It's a necessary assumption to have a correct lttng_free_trace_info, which + * would not be reentrant otherwise. + */ + + +/* TLS for the trace info + * http://www.dis.com/gnu/gcc/C--98-Thread-Local-Edits.html + * + * Add after paragraph 4 + * + * The storage for an object of thread storage duration shall be statically + * initialized before the first statement of the thread startup function. An + * object of thread storage duration shall not require dynamic + * initialization. + * GCC extention permits init of a range. + */ + +static __thread struct lttng_trace_info lttng_trace_info[MAX_TRACES] = +{ [ 0 ... MAX_TRACES-1 ].active = 0, + [ 0 ... MAX_TRACES-1 ].filter = 0, + [ 0 ... MAX_TRACES-1 ].destroy = 0, + [ 0 ... MAX_TRACES-1 ].nesting = ATOMIC_INIT(0), + [ 0 ... MAX_TRACES-1 ].channel = + { NULL, + 0, + ATOMIC_INIT(0), + ATOMIC_INIT(0), + ATOMIC_INIT(0), + ATOMIC_INIT(0), + ATOMIC_INIT(0) + } +}; + + +/* Must be called we sure nobody else is using the info. + * It implies that the trace should have been previously stopped + * and that every writer has finished. + * + * Writers should always check if the trace must be destroyed when they + * finish writing and the nesting level is 0. + */ +void lttng_free_trace_info(struct lttng_trace_info *info) +{ + int ret; + + if(info->active) { + printf( + "LTTng ERROR : lttng_free_trace_info should be called on inactive trace\n"); + exit(1); + } + if(!info->destroy) { + printf( + "LTTng ERROR : lttng_free_trace_info should be called on destroyed trace\n"); + exit(1); + } + if(atomic_read(&info->nesting) > 0) { + printf( + "LTTng ERROR : lttng_free_trace_info should not be nested on tracing\n"); + exit(1); + } + + /* Remove the maps */ + ret = munmap(info->channel.cpu.start, info->channel.cpu.length); + if(ret) { + perror("LTTNG : error in munmap"); + } + ret = munmap(info->channel.facilities.start, info->channel.facilities.length); + if(ret) { + perror("LTTNG : error in munmap"); + } + + /* Zero the structure */ + memset(info, 0, sizeof(struct lttng_trace_info)); +} + + +static struct lttng_trace_info* find_info(unsigned long cpu_addr, + unsigned long fac_addr, unsigned int *first_empty) +{ + struct lttng_trace_info *found = NULL; + unsigned int i; + + *first_empty = MAX_TRACES; + + /* Try to find the trace */ + for(i=0;ifilter = filter; + info->active = active; + info->destroy = destroy; + if(destroy && !atomic_read(&info->nesting)) + lttng_free_trace_info(info); + } else { + /* Not found. Must take an empty slot */ + if(first_empty == MAX_TRACES) { + printf( + "LTTng WARNING : too many traces requested for pid %d by the kernel.\n" + " Compilation defined maximum is %u\n", + getpid(), MAX_TRACES); + + } else { + info = <tng_trace_info[first_empty]; + info->channel.cpu.start = (void*)cpu_addr; + info->channel.cpu.length = PAGE_SIZE; + info->channel.facilities.start = (void*)fac_addr; + info->channel.facilities.length = PAGE_SIZE; + info->filter = filter; + info->active = active; + info->destroy = destroy; + if(destroy && !atomic_read(&info->nesting)) + lttng_free_trace_info(info); + } + } + } + + /* Enable signals */ + ret = pthread_sigmask(SIG_SETMASK, &oldset, NULL); + if(ret) { + printf("Error in sigprocmask\n"); + exit(1); + } +} + + +/* signal handler */ +void __lttng_sig_trace_handler(int signo) +{ + printf("LTTng signal handler : thread id : %lu, pid %lu\n", pthread_self(), getpid()); + lttng_get_new_info(); +} + + +static void thread_init(void) +{ + int err; + lttng_get_new_info(); + + /* Make some ltt_switch syscalls */ + err = ltt_switch((unsigned long)NULL); + if(err) { + printf("Error in ltt_switch system call\n"); + exit(1); + } +} + +void __attribute__((constructor)) __lttng_user_init(void) +{ + static struct sigaction act; + int err; + + printf("LTTng user init\n"); + + /* Activate the signal */ + act.sa_handler = __lttng_sig_trace_handler; + err = sigemptyset(&(act.sa_mask)); + if(err) perror("Error with sigemptyset"); + err = sigaddset(&(act.sa_mask), SIGRTMIN+3); + if(err) perror("Error with sigaddset"); + err = sigaction(SIGRTMIN+3, &act, NULL); + if(err) perror("Error with sigaction"); + + thread_init(); +} + + +void lttng_thread_init(void) +{ + thread_init(); +} + + diff --git a/usertrace-attic/lttng_usertrace.h b/usertrace-attic/lttng_usertrace.h new file mode 100644 index 00000000..600be4ff --- /dev/null +++ b/usertrace-attic/lttng_usertrace.h @@ -0,0 +1,61 @@ + +/* LTTng user-space tracing header + * + * Copyright 2006 Mathieu Desnoyers + * + */ + +#ifndef _LTTNG_USERTRACE_H +#define _LTTNG_USERTRACE_H + +#include +#include + +#include + +//Put in asm-i486/unistd.h +#define __NR_ltt_update 294 +#define __NR_ltt_switch 295 + +#undef NR_syscalls +#define NR_syscalls 296 + +#ifndef _LIBC +// Put in bits/syscall.h +#define SYS_ltt_update __NR_ltt_update +#define SYS_ltt_switch __NR_ltt_switch +#endif + +struct ltt_buf { + void *start; + size_t length; + atomic_t offset; + atomic_t reserve_count; + atomic_t commit_count; + + atomic_t events_lost; +}; + +struct lttng_trace_info { + int active:1; + int destroy:1; + int filter; + atomic_t nesting; + struct { + struct ltt_buf facilities; + struct ltt_buf cpu; + } channel; +}; + + +void __lttng_sig_trace_handler(int signo); + +/* Call this at the beginning of a new thread, except for the main() */ +void lttng_thread_init(void); + +void lttng_free_trace_info(struct lttng_trace_info *info); + +static inline _syscall1(int, ltt_switch, unsigned long, addr) +static inline _syscall5(int, ltt_update, unsigned long *, cpu_addr, unsigned long *, fac_addr, int *, active, int *, filter, int *, destroy) + +#endif //_LTTNG_USERTRACE_H diff --git a/usertrace-attic/test.c b/usertrace-attic/test.c new file mode 100644 index 00000000..a0509a27 --- /dev/null +++ b/usertrace-attic/test.c @@ -0,0 +1,59 @@ + +#include +#include +#include +#include + +#include "lttng_usertrace.h" + + + +void *thr1(void *arg) +{ + lttng_thread_init(); + printf("thread 1, thread id : %lu, pid %lu\n", pthread_self(), getpid()); + + while(1) {} + + return ((void*)1); + +} + +void *thr2(void *arg) +{ + lttng_thread_init(); + + while(1) { + printf("thread 2, thread id : %lu, pid %lu\n", pthread_self(), getpid()); + sleep(2); + } + return ((void*)2); +} + + +int main() +{ + int err; + pthread_t tid1, tid2; + void *tret; + + printf("thread main, thread id : %lu, pid %lu\n", pthread_self(), getpid()); + err = pthread_create(&tid1, NULL, thr1, NULL); + if(err!=0) exit(1); + + err = pthread_create(&tid2, NULL, thr2, NULL); + if(err!=0) exit(1); + + while(1) + { + + } + + err = pthread_join(tid1, &tret); + if(err!= 0) exit(1); + + err = pthread_join(tid2, &tret); + if(err!= 0) exit(1); + + return 0; +} diff --git a/usertrace/Makefile b/usertrace/Makefile deleted file mode 100644 index 83c3b89f..00000000 --- a/usertrace/Makefile +++ /dev/null @@ -1,11 +0,0 @@ - - -CC=gcc - -test: test.c lttng_usertrace.c - $(CC) $(CFLAGS) -lpthread -o $@ $^ - -.PHONY : clean - -clean: - rm -fr *.o *~ test diff --git a/usertrace/lttng_usertrace.c b/usertrace/lttng_usertrace.c deleted file mode 100644 index 5e32b0cd..00000000 --- a/usertrace/lttng_usertrace.c +++ /dev/null @@ -1,252 +0,0 @@ - -/* LTTng user-space tracing code - * - * Copyright 2006 Mathieu Desnoyers - * - */ - - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "lttng_usertrace.h" - -#define MAX_TRACES 16 - - -/* - * Notes : - * - * ltt_update : - * - * it should send the information on the traces that has their status MODIFIED. - * It's a necessary assumption to have a correct lttng_free_trace_info, which - * would not be reentrant otherwise. - */ - - -/* TLS for the trace info - * http://www.dis.com/gnu/gcc/C--98-Thread-Local-Edits.html - * - * Add after paragraph 4 - * - * The storage for an object of thread storage duration shall be statically - * initialized before the first statement of the thread startup function. An - * object of thread storage duration shall not require dynamic - * initialization. - * GCC extention permits init of a range. - */ - -static __thread struct lttng_trace_info lttng_trace_info[MAX_TRACES] = -{ [ 0 ... MAX_TRACES-1 ].active = 0, - [ 0 ... MAX_TRACES-1 ].filter = 0, - [ 0 ... MAX_TRACES-1 ].destroy = 0, - [ 0 ... MAX_TRACES-1 ].nesting = ATOMIC_INIT(0), - [ 0 ... MAX_TRACES-1 ].channel = - { NULL, - 0, - ATOMIC_INIT(0), - ATOMIC_INIT(0), - ATOMIC_INIT(0), - ATOMIC_INIT(0), - ATOMIC_INIT(0) - } -}; - - -/* Must be called we sure nobody else is using the info. - * It implies that the trace should have been previously stopped - * and that every writer has finished. - * - * Writers should always check if the trace must be destroyed when they - * finish writing and the nesting level is 0. - */ -void lttng_free_trace_info(struct lttng_trace_info *info) -{ - int ret; - - if(info->active) { - printf( - "LTTng ERROR : lttng_free_trace_info should be called on inactive trace\n"); - exit(1); - } - if(!info->destroy) { - printf( - "LTTng ERROR : lttng_free_trace_info should be called on destroyed trace\n"); - exit(1); - } - if(atomic_read(&info->nesting) > 0) { - printf( - "LTTng ERROR : lttng_free_trace_info should not be nested on tracing\n"); - exit(1); - } - - /* Remove the maps */ - ret = munmap(info->channel.cpu.start, info->channel.cpu.length); - if(ret) { - perror("LTTNG : error in munmap"); - } - ret = munmap(info->channel.facilities.start, info->channel.facilities.length); - if(ret) { - perror("LTTNG : error in munmap"); - } - - /* Zero the structure */ - memset(info, 0, sizeof(struct lttng_trace_info)); -} - - -static struct lttng_trace_info* find_info(unsigned long cpu_addr, - unsigned long fac_addr, unsigned int *first_empty) -{ - struct lttng_trace_info *found = NULL; - unsigned int i; - - *first_empty = MAX_TRACES; - - /* Try to find the trace */ - for(i=0;ifilter = filter; - info->active = active; - info->destroy = destroy; - if(destroy && !atomic_read(&info->nesting)) - lttng_free_trace_info(info); - } else { - /* Not found. Must take an empty slot */ - if(first_empty == MAX_TRACES) { - printf( - "LTTng WARNING : too many traces requested for pid %d by the kernel.\n" - " Compilation defined maximum is %u\n", - getpid(), MAX_TRACES); - - } else { - info = <tng_trace_info[first_empty]; - info->channel.cpu.start = (void*)cpu_addr; - info->channel.cpu.length = PAGE_SIZE; - info->channel.facilities.start = (void*)fac_addr; - info->channel.facilities.length = PAGE_SIZE; - info->filter = filter; - info->active = active; - info->destroy = destroy; - if(destroy && !atomic_read(&info->nesting)) - lttng_free_trace_info(info); - } - } - } - - /* Enable signals */ - ret = pthread_sigmask(SIG_SETMASK, &oldset, NULL); - if(ret) { - printf("Error in sigprocmask\n"); - exit(1); - } -} - - -/* signal handler */ -void __lttng_sig_trace_handler(int signo) -{ - printf("LTTng signal handler : thread id : %lu, pid %lu\n", pthread_self(), getpid()); - lttng_get_new_info(); -} - - -static void thread_init(void) -{ - int err; - lttng_get_new_info(); - - /* Make some ltt_switch syscalls */ - err = ltt_switch((unsigned long)NULL); - if(err) { - printf("Error in ltt_switch system call\n"); - exit(1); - } -} - -void __attribute__((constructor)) __lttng_user_init(void) -{ - static struct sigaction act; - int err; - - printf("LTTng user init\n"); - - /* Activate the signal */ - act.sa_handler = __lttng_sig_trace_handler; - err = sigemptyset(&(act.sa_mask)); - if(err) perror("Error with sigemptyset"); - err = sigaddset(&(act.sa_mask), SIGRTMIN+3); - if(err) perror("Error with sigaddset"); - err = sigaction(SIGRTMIN+3, &act, NULL); - if(err) perror("Error with sigaction"); - - thread_init(); -} - - -void lttng_thread_init(void) -{ - thread_init(); -} - - diff --git a/usertrace/lttng_usertrace.h b/usertrace/lttng_usertrace.h deleted file mode 100644 index 600be4ff..00000000 --- a/usertrace/lttng_usertrace.h +++ /dev/null @@ -1,61 +0,0 @@ - -/* LTTng user-space tracing header - * - * Copyright 2006 Mathieu Desnoyers - * - */ - -#ifndef _LTTNG_USERTRACE_H -#define _LTTNG_USERTRACE_H - -#include -#include - -#include - -//Put in asm-i486/unistd.h -#define __NR_ltt_update 294 -#define __NR_ltt_switch 295 - -#undef NR_syscalls -#define NR_syscalls 296 - -#ifndef _LIBC -// Put in bits/syscall.h -#define SYS_ltt_update __NR_ltt_update -#define SYS_ltt_switch __NR_ltt_switch -#endif - -struct ltt_buf { - void *start; - size_t length; - atomic_t offset; - atomic_t reserve_count; - atomic_t commit_count; - - atomic_t events_lost; -}; - -struct lttng_trace_info { - int active:1; - int destroy:1; - int filter; - atomic_t nesting; - struct { - struct ltt_buf facilities; - struct ltt_buf cpu; - } channel; -}; - - -void __lttng_sig_trace_handler(int signo); - -/* Call this at the beginning of a new thread, except for the main() */ -void lttng_thread_init(void); - -void lttng_free_trace_info(struct lttng_trace_info *info); - -static inline _syscall1(int, ltt_switch, unsigned long, addr) -static inline _syscall5(int, ltt_update, unsigned long *, cpu_addr, unsigned long *, fac_addr, int *, active, int *, filter, int *, destroy) - -#endif //_LTTNG_USERTRACE_H diff --git a/usertrace/test.c b/usertrace/test.c deleted file mode 100644 index a0509a27..00000000 --- a/usertrace/test.c +++ /dev/null @@ -1,59 +0,0 @@ - -#include -#include -#include -#include - -#include "lttng_usertrace.h" - - - -void *thr1(void *arg) -{ - lttng_thread_init(); - printf("thread 1, thread id : %lu, pid %lu\n", pthread_self(), getpid()); - - while(1) {} - - return ((void*)1); - -} - -void *thr2(void *arg) -{ - lttng_thread_init(); - - while(1) { - printf("thread 2, thread id : %lu, pid %lu\n", pthread_self(), getpid()); - sleep(2); - } - return ((void*)2); -} - - -int main() -{ - int err; - pthread_t tid1, tid2; - void *tret; - - printf("thread main, thread id : %lu, pid %lu\n", pthread_self(), getpid()); - err = pthread_create(&tid1, NULL, thr1, NULL); - if(err!=0) exit(1); - - err = pthread_create(&tid2, NULL, thr2, NULL); - if(err!=0) exit(1); - - while(1) - { - - } - - err = pthread_join(tid1, &tret); - if(err!= 0) exit(1); - - err = pthread_join(tid2, &tret); - if(err!= 0) exit(1); - - return 0; -}