blob: dbf5f25b8036f3a00065effd328763fb1793dd0f [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Thread management routine header.
2 * Copyright (C) 1998 Kunihiro Ishiguro
Everton Marquese8540952012-02-16 06:14:54 +01003 * Portions Copyright (c) 2008 Everton da Silva Marques <everton.marques@gmail.com>
paul718e3742002-12-13 20:15:29 +00004 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_THREAD_H
24#define _ZEBRA_THREAD_H
25
Paul Jakma57345092011-12-25 17:52:09 +010026#include <zebra.h>
27
ajs8b70d0b2005-04-28 01:31:13 +000028struct rusage_t
29{
paul718e3742002-12-13 20:15:29 +000030#ifdef HAVE_RUSAGE
ajs8b70d0b2005-04-28 01:31:13 +000031 struct rusage cpu;
32#endif
33 struct timeval real;
34};
35#define RUSAGE_T struct rusage_t
36
Paul Jakmadb9c0df2006-08-27 06:44:02 +000037#define GETRUSAGE(X) thread_getrusage(X)
paul718e3742002-12-13 20:15:29 +000038
39/* Linked list of thread. */
40struct thread_list
41{
42 struct thread *head;
43 struct thread *tail;
44 int count;
45};
46
Christian Franke4becea72013-11-19 14:11:42 +000047struct pqueue;
48
paul718e3742002-12-13 20:15:29 +000049/* Master of the theads. */
50struct thread_master
51{
52 struct thread_list read;
53 struct thread_list write;
Christian Franke4becea72013-11-19 14:11:42 +000054 struct pqueue *timer;
paul718e3742002-12-13 20:15:29 +000055 struct thread_list event;
56 struct thread_list ready;
57 struct thread_list unuse;
Christian Franke4becea72013-11-19 14:11:42 +000058 struct pqueue *background;
paul718e3742002-12-13 20:15:29 +000059 fd_set readfd;
60 fd_set writefd;
61 fd_set exceptfd;
62 unsigned long alloc;
63};
64
Paul Jakma41b23732009-06-30 16:12:49 +010065typedef unsigned char thread_type;
66
Jorge Boncompte [DTI2]22714f92012-05-07 16:53:14 +000067/* ISO C99 maximum function name length is 63 */
68#define FUNCNAME_LEN 64
69
paul718e3742002-12-13 20:15:29 +000070/* Thread itself. */
71struct thread
72{
Paul Jakma41b23732009-06-30 16:12:49 +010073 thread_type type; /* thread type */
74 thread_type add_type; /* thread type */
paula48b4e62005-04-22 00:43:47 +000075 struct thread *next; /* next pointer of the thread */
paul718e3742002-12-13 20:15:29 +000076 struct thread *prev; /* previous pointer of the thread */
77 struct thread_master *master; /* pointer to the struct thread_master. */
78 int (*func) (struct thread *); /* event function */
79 void *arg; /* event argument */
80 union {
81 int val; /* second argument of the event. */
82 int fd; /* file descriptor in case of read/write. */
83 struct timeval sands; /* rest of time sands value. */
84 } u;
Christian Franke4becea72013-11-19 14:11:42 +000085 int index; /* used for timers to store position in queue */
Jorge Boncompte [DTI2]41af3382012-05-07 16:53:12 +000086 struct timeval real;
Paul Jakmacc8b13a2006-07-25 20:40:40 +000087 struct cpu_thread_history *hist; /* cache pointer to cpu_history */
Jorge Boncompte [DTI2]22714f92012-05-07 16:53:14 +000088 char funcname[FUNCNAME_LEN];
paule04ab742003-01-17 23:47:00 +000089};
90
ajs8b70d0b2005-04-28 01:31:13 +000091struct cpu_thread_history
92{
paule04ab742003-01-17 23:47:00 +000093 int (*func)(struct thread *);
paule04ab742003-01-17 23:47:00 +000094 unsigned int total_calls;
ajs8b70d0b2005-04-28 01:31:13 +000095 struct time_stats
96 {
97 unsigned long total, max;
98 } real;
99#ifdef HAVE_RUSAGE
100 struct time_stats cpu;
101#endif
Paul Jakma41b23732009-06-30 16:12:49 +0100102 thread_type types;
Jorge Boncompte [DTI2]22714f92012-05-07 16:53:14 +0000103 char funcname[FUNCNAME_LEN];
paul718e3742002-12-13 20:15:29 +0000104};
105
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000106/* Clocks supported by Quagga */
107enum quagga_clkid {
108 QUAGGA_CLK_REALTIME = 0, /* ala gettimeofday() */
109 QUAGGA_CLK_MONOTONIC, /* monotonic, against an indeterminate base */
110 QUAGGA_CLK_REALTIME_STABILISED, /* like realtime, but non-decrementing */
111};
112
paul718e3742002-12-13 20:15:29 +0000113/* Thread types. */
114#define THREAD_READ 0
115#define THREAD_WRITE 1
116#define THREAD_TIMER 2
117#define THREAD_EVENT 3
118#define THREAD_READY 4
paula48b4e62005-04-22 00:43:47 +0000119#define THREAD_BACKGROUND 5
120#define THREAD_UNUSED 6
121#define THREAD_EXECUTE 7
paul718e3742002-12-13 20:15:29 +0000122
123/* Thread yield time. */
paul17fc1282005-04-22 00:57:03 +0000124#define THREAD_YIELD_TIME_SLOT 10 * 1000L /* 10ms */
paul718e3742002-12-13 20:15:29 +0000125
126/* Macros. */
127#define THREAD_ARG(X) ((X)->arg)
128#define THREAD_FD(X) ((X)->u.fd)
129#define THREAD_VAL(X) ((X)->u.val)
130
131#define THREAD_READ_ON(master,thread,func,arg,sock) \
132 do { \
133 if (! thread) \
134 thread = thread_add_read (master, func, arg, sock); \
135 } while (0)
136
137#define THREAD_WRITE_ON(master,thread,func,arg,sock) \
138 do { \
139 if (! thread) \
140 thread = thread_add_write (master, func, arg, sock); \
141 } while (0)
142
143#define THREAD_TIMER_ON(master,thread,func,arg,time) \
144 do { \
145 if (! thread) \
146 thread = thread_add_timer (master, func, arg, time); \
147 } while (0)
148
Everton Marquese8540952012-02-16 06:14:54 +0100149#define THREAD_TIMER_MSEC_ON(master,thread,func,arg,time) \
150 do { \
151 if (! thread) \
152 thread = thread_add_timer_msec (master, func, arg, time); \
153 } while (0)
154
paul718e3742002-12-13 20:15:29 +0000155#define THREAD_OFF(thread) \
156 do { \
157 if (thread) \
158 { \
159 thread_cancel (thread); \
160 thread = NULL; \
161 } \
162 } while (0)
163
164#define THREAD_READ_OFF(thread) THREAD_OFF(thread)
165#define THREAD_WRITE_OFF(thread) THREAD_OFF(thread)
166#define THREAD_TIMER_OFF(thread) THREAD_OFF(thread)
167
paule04ab742003-01-17 23:47:00 +0000168#define thread_add_read(m,f,a,v) funcname_thread_add_read(m,f,a,v,#f)
169#define thread_add_write(m,f,a,v) funcname_thread_add_write(m,f,a,v,#f)
170#define thread_add_timer(m,f,a,v) funcname_thread_add_timer(m,f,a,v,#f)
jardin9e867fe2003-12-23 08:56:18 +0000171#define thread_add_timer_msec(m,f,a,v) funcname_thread_add_timer_msec(m,f,a,v,#f)
paule04ab742003-01-17 23:47:00 +0000172#define thread_add_event(m,f,a,v) funcname_thread_add_event(m,f,a,v,#f)
173#define thread_execute(m,f,a,v) funcname_thread_execute(m,f,a,v,#f)
ajsfb9e46b2005-04-22 14:23:34 +0000174
175/* The 4th arg to thread_add_background is the # of milliseconds to delay. */
paula48b4e62005-04-22 00:43:47 +0000176#define thread_add_background(m,f,a,v) funcname_thread_add_background(m,f,a,v,#f)
paule04ab742003-01-17 23:47:00 +0000177
paul718e3742002-12-13 20:15:29 +0000178/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000179extern struct thread_master *thread_master_create (void);
180extern void thread_master_free (struct thread_master *);
181
182extern struct thread *funcname_thread_add_read (struct thread_master *,
183 int (*)(struct thread *),
184 void *, int, const char*);
185extern struct thread *funcname_thread_add_write (struct thread_master *,
186 int (*)(struct thread *),
187 void *, int, const char*);
188extern struct thread *funcname_thread_add_timer (struct thread_master *,
189 int (*)(struct thread *),
190 void *, long, const char*);
191extern struct thread *funcname_thread_add_timer_msec (struct thread_master *,
192 int (*)(struct thread *),
193 void *, long, const char*);
194extern struct thread *funcname_thread_add_event (struct thread_master *,
195 int (*)(struct thread *),
196 void *, int, const char*);
197extern struct thread *funcname_thread_add_background (struct thread_master *,
198 int (*func)(struct thread *),
ajsfb9e46b2005-04-22 14:23:34 +0000199 void *arg,
200 long milliseconds_to_delay,
201 const char *funcname);
paul8cc41982005-05-06 21:25:49 +0000202extern struct thread *funcname_thread_execute (struct thread_master *,
203 int (*)(struct thread *),
204 void *, int, const char *);
205extern void thread_cancel (struct thread *);
pauldc818072005-05-19 01:30:53 +0000206extern unsigned int thread_cancel_event (struct thread_master *, void *);
paul8cc41982005-05-06 21:25:49 +0000207extern struct thread *thread_fetch (struct thread_master *, struct thread *);
208extern void thread_call (struct thread *);
209extern unsigned long thread_timer_remain_second (struct thread *);
210extern int thread_should_yield (struct thread *);
paul718e3742002-12-13 20:15:29 +0000211
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000212/* Internal libzebra exports */
213extern void thread_getrusage (RUSAGE_T *);
paule04ab742003-01-17 23:47:00 +0000214extern struct cmd_element show_thread_cpu_cmd;
Paul Jakmae276eb82010-01-09 16:15:00 +0000215extern struct cmd_element clear_thread_cpu_cmd;
paule04ab742003-01-17 23:47:00 +0000216
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000217/* replacements for the system gettimeofday(), clock_gettime() and
218 * time() functions, providing support for non-decrementing clock on
219 * all systems, and fully monotonic on /some/ systems.
220 */
221extern int quagga_gettime (enum quagga_clkid, struct timeval *);
222extern time_t quagga_time (time_t *);
223
ajs8b70d0b2005-04-28 01:31:13 +0000224/* Returns elapsed real (wall clock) time. */
225extern unsigned long thread_consumed_time(RUSAGE_T *after, RUSAGE_T *before,
226 unsigned long *cpu_time_elapsed);
227
228/* Global variable containing a recent result from gettimeofday. This can
229 be used instead of calling gettimeofday if a recent value is sufficient.
230 This is guaranteed to be refreshed before a thread is called. */
231extern struct timeval recent_time;
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000232/* Similar to recent_time, but a monotonically increasing time value */
233extern struct timeval recent_relative_time (void);
paul718e3742002-12-13 20:15:29 +0000234#endif /* _ZEBRA_THREAD_H */