blob: 3f162163d0b0e909503e347b3a848abc10362ede [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Thread management routine header.
2 * Copyright (C) 1998 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#ifndef _ZEBRA_THREAD_H
23#define _ZEBRA_THREAD_H
24
Paul Jakma57345092011-12-25 17:52:09 +010025#include <zebra.h>
26
ajs8b70d0b2005-04-28 01:31:13 +000027struct rusage_t
28{
paul718e3742002-12-13 20:15:29 +000029#ifdef HAVE_RUSAGE
ajs8b70d0b2005-04-28 01:31:13 +000030 struct rusage cpu;
31#endif
32 struct timeval real;
33};
34#define RUSAGE_T struct rusage_t
35
Paul Jakmadb9c0df2006-08-27 06:44:02 +000036#define GETRUSAGE(X) thread_getrusage(X)
paul718e3742002-12-13 20:15:29 +000037
38/* Linked list of thread. */
39struct thread_list
40{
41 struct thread *head;
42 struct thread *tail;
43 int count;
44};
45
Christian Franke4becea72013-11-19 14:11:42 +000046struct pqueue;
47
Donald Sharp19be18a2016-03-04 15:28:55 -050048/*
49 * Abstract it so we can use different methodologies to
50 * select on data.
51 */
52typedef fd_set thread_fd_set;
53
paul718e3742002-12-13 20:15:29 +000054/* Master of the theads. */
55struct thread_master
56{
Denil Vira4ab273b2016-03-04 15:28:54 -050057 struct thread **read;
58 struct thread **write;
Christian Franke4becea72013-11-19 14:11:42 +000059 struct pqueue *timer;
paul718e3742002-12-13 20:15:29 +000060 struct thread_list event;
61 struct thread_list ready;
62 struct thread_list unuse;
Christian Franke4becea72013-11-19 14:11:42 +000063 struct pqueue *background;
Denil Vira4ab273b2016-03-04 15:28:54 -050064 int fd_limit;
Donald Sharp19be18a2016-03-04 15:28:55 -050065 thread_fd_set readfd;
66 thread_fd_set writefd;
67 thread_fd_set exceptfd;
paul718e3742002-12-13 20:15:29 +000068 unsigned long alloc;
69};
70
Paul Jakma41b23732009-06-30 16:12:49 +010071typedef unsigned char thread_type;
72
paul718e3742002-12-13 20:15:29 +000073/* Thread itself. */
74struct thread
75{
Paul Jakma41b23732009-06-30 16:12:49 +010076 thread_type type; /* thread type */
77 thread_type add_type; /* thread type */
paula48b4e62005-04-22 00:43:47 +000078 struct thread *next; /* next pointer of the thread */
paul718e3742002-12-13 20:15:29 +000079 struct thread *prev; /* previous pointer of the thread */
80 struct thread_master *master; /* pointer to the struct thread_master. */
81 int (*func) (struct thread *); /* event function */
82 void *arg; /* event argument */
83 union {
84 int val; /* second argument of the event. */
85 int fd; /* file descriptor in case of read/write. */
86 struct timeval sands; /* rest of time sands value. */
87 } u;
Christian Franke4becea72013-11-19 14:11:42 +000088 int index; /* used for timers to store position in queue */
Jorge Boncompte [DTI2]41af3382012-05-07 16:53:12 +000089 struct timeval real;
Paul Jakmacc8b13a2006-07-25 20:40:40 +000090 struct cpu_thread_history *hist; /* cache pointer to cpu_history */
David Lamparter3493b772013-11-18 23:04:27 +010091 const char *funcname;
92 const char *schedfrom;
93 int schedfrom_line;
paule04ab742003-01-17 23:47:00 +000094};
95
ajs8b70d0b2005-04-28 01:31:13 +000096struct cpu_thread_history
97{
paule04ab742003-01-17 23:47:00 +000098 int (*func)(struct thread *);
paule04ab742003-01-17 23:47:00 +000099 unsigned int total_calls;
ajs8b70d0b2005-04-28 01:31:13 +0000100 struct time_stats
101 {
102 unsigned long total, max;
103 } real;
104#ifdef HAVE_RUSAGE
105 struct time_stats cpu;
106#endif
Paul Jakma41b23732009-06-30 16:12:49 +0100107 thread_type types;
David Lamparter3493b772013-11-18 23:04:27 +0100108 const char *funcname;
paul718e3742002-12-13 20:15:29 +0000109};
110
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000111/* Clocks supported by Quagga */
112enum quagga_clkid {
113 QUAGGA_CLK_REALTIME = 0, /* ala gettimeofday() */
114 QUAGGA_CLK_MONOTONIC, /* monotonic, against an indeterminate base */
115 QUAGGA_CLK_REALTIME_STABILISED, /* like realtime, but non-decrementing */
116};
117
paul718e3742002-12-13 20:15:29 +0000118/* Thread types. */
119#define THREAD_READ 0
120#define THREAD_WRITE 1
121#define THREAD_TIMER 2
122#define THREAD_EVENT 3
123#define THREAD_READY 4
paula48b4e62005-04-22 00:43:47 +0000124#define THREAD_BACKGROUND 5
125#define THREAD_UNUSED 6
126#define THREAD_EXECUTE 7
paul718e3742002-12-13 20:15:29 +0000127
128/* Thread yield time. */
paul17fc1282005-04-22 00:57:03 +0000129#define THREAD_YIELD_TIME_SLOT 10 * 1000L /* 10ms */
paul718e3742002-12-13 20:15:29 +0000130
131/* Macros. */
132#define THREAD_ARG(X) ((X)->arg)
133#define THREAD_FD(X) ((X)->u.fd)
134#define THREAD_VAL(X) ((X)->u.val)
135
136#define THREAD_READ_ON(master,thread,func,arg,sock) \
137 do { \
138 if (! thread) \
139 thread = thread_add_read (master, func, arg, sock); \
140 } while (0)
141
142#define THREAD_WRITE_ON(master,thread,func,arg,sock) \
143 do { \
144 if (! thread) \
145 thread = thread_add_write (master, func, arg, sock); \
146 } while (0)
147
148#define THREAD_TIMER_ON(master,thread,func,arg,time) \
149 do { \
150 if (! thread) \
151 thread = thread_add_timer (master, func, arg, time); \
152 } while (0)
153
Everton Marquese8540952012-02-16 06:14:54 +0100154#define THREAD_TIMER_MSEC_ON(master,thread,func,arg,time) \
155 do { \
156 if (! thread) \
157 thread = thread_add_timer_msec (master, func, arg, time); \
158 } while (0)
159
paul718e3742002-12-13 20:15:29 +0000160#define THREAD_OFF(thread) \
161 do { \
162 if (thread) \
163 { \
164 thread_cancel (thread); \
165 thread = NULL; \
166 } \
167 } while (0)
168
169#define THREAD_READ_OFF(thread) THREAD_OFF(thread)
170#define THREAD_WRITE_OFF(thread) THREAD_OFF(thread)
171#define THREAD_TIMER_OFF(thread) THREAD_OFF(thread)
172
David Lamparter3493b772013-11-18 23:04:27 +0100173#define debugargdef const char *funcname, const char *schedfrom, int fromln
174
175#define thread_add_read(m,f,a,v) funcname_thread_add_read(m,f,a,v,#f,__FILE__,__LINE__)
176#define thread_add_write(m,f,a,v) funcname_thread_add_write(m,f,a,v,#f,__FILE__,__LINE__)
177#define thread_add_timer(m,f,a,v) funcname_thread_add_timer(m,f,a,v,#f,__FILE__,__LINE__)
178#define thread_add_timer_msec(m,f,a,v) funcname_thread_add_timer_msec(m,f,a,v,#f,__FILE__,__LINE__)
David Lamparter47fb0a82016-06-13 17:29:13 +0200179#define thread_add_timer_tv(m,f,a,v) funcname_thread_add_timer_tv(m,f,a,v,#f,__FILE__,__LINE__)
David Lamparter3493b772013-11-18 23:04:27 +0100180#define thread_add_event(m,f,a,v) funcname_thread_add_event(m,f,a,v,#f,__FILE__,__LINE__)
181#define thread_execute(m,f,a,v) funcname_thread_execute(m,f,a,v,#f,__FILE__,__LINE__)
ajsfb9e46b2005-04-22 14:23:34 +0000182
183/* The 4th arg to thread_add_background is the # of milliseconds to delay. */
David Lamparter3493b772013-11-18 23:04:27 +0100184#define thread_add_background(m,f,a,v) funcname_thread_add_background(m,f,a,v,#f,__FILE__,__LINE__)
paule04ab742003-01-17 23:47:00 +0000185
paul718e3742002-12-13 20:15:29 +0000186/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000187extern struct thread_master *thread_master_create (void);
188extern void thread_master_free (struct thread_master *);
189
190extern struct thread *funcname_thread_add_read (struct thread_master *,
191 int (*)(struct thread *),
David Lamparter3493b772013-11-18 23:04:27 +0100192 void *, int, debugargdef);
paul8cc41982005-05-06 21:25:49 +0000193extern struct thread *funcname_thread_add_write (struct thread_master *,
194 int (*)(struct thread *),
David Lamparter3493b772013-11-18 23:04:27 +0100195 void *, int, debugargdef);
paul8cc41982005-05-06 21:25:49 +0000196extern struct thread *funcname_thread_add_timer (struct thread_master *,
197 int (*)(struct thread *),
David Lamparter3493b772013-11-18 23:04:27 +0100198 void *, long, debugargdef);
paul8cc41982005-05-06 21:25:49 +0000199extern struct thread *funcname_thread_add_timer_msec (struct thread_master *,
200 int (*)(struct thread *),
David Lamparter3493b772013-11-18 23:04:27 +0100201 void *, long, debugargdef);
David Lamparter47fb0a82016-06-13 17:29:13 +0200202extern struct thread *funcname_thread_add_timer_tv (struct thread_master *,
203 int (*)(struct thread *),
204 void *, struct timeval *,
205 debugargdef);
paul8cc41982005-05-06 21:25:49 +0000206extern struct thread *funcname_thread_add_event (struct thread_master *,
207 int (*)(struct thread *),
David Lamparter3493b772013-11-18 23:04:27 +0100208 void *, int, debugargdef);
paul8cc41982005-05-06 21:25:49 +0000209extern struct thread *funcname_thread_add_background (struct thread_master *,
210 int (*func)(struct thread *),
ajsfb9e46b2005-04-22 14:23:34 +0000211 void *arg,
212 long milliseconds_to_delay,
David Lamparter3493b772013-11-18 23:04:27 +0100213 debugargdef);
paul8cc41982005-05-06 21:25:49 +0000214extern struct thread *funcname_thread_execute (struct thread_master *,
215 int (*)(struct thread *),
David Lamparter3493b772013-11-18 23:04:27 +0100216 void *, int, debugargdef);
217#undef debugargdef
218
paul8cc41982005-05-06 21:25:49 +0000219extern void thread_cancel (struct thread *);
pauldc818072005-05-19 01:30:53 +0000220extern unsigned int thread_cancel_event (struct thread_master *, void *);
paul8cc41982005-05-06 21:25:49 +0000221extern struct thread *thread_fetch (struct thread_master *, struct thread *);
222extern void thread_call (struct thread *);
223extern unsigned long thread_timer_remain_second (struct thread *);
Christian Franke76fbc642015-11-10 18:04:41 +0100224extern struct timeval thread_timer_remain(struct thread*);
paul8cc41982005-05-06 21:25:49 +0000225extern int thread_should_yield (struct thread *);
Dinesh G Dutt50f38b32014-09-30 12:53:28 -0700226extern unsigned long timeval_elapsed (struct timeval a, struct timeval b);
paul718e3742002-12-13 20:15:29 +0000227
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000228/* Internal libzebra exports */
229extern void thread_getrusage (RUSAGE_T *);
paule04ab742003-01-17 23:47:00 +0000230extern struct cmd_element show_thread_cpu_cmd;
Paul Jakmae276eb82010-01-09 16:15:00 +0000231extern struct cmd_element clear_thread_cpu_cmd;
paule04ab742003-01-17 23:47:00 +0000232
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000233/* replacements for the system gettimeofday(), clock_gettime() and
234 * time() functions, providing support for non-decrementing clock on
235 * all systems, and fully monotonic on /some/ systems.
236 */
237extern int quagga_gettime (enum quagga_clkid, struct timeval *);
238extern time_t quagga_time (time_t *);
239
ajs8b70d0b2005-04-28 01:31:13 +0000240/* Returns elapsed real (wall clock) time. */
241extern unsigned long thread_consumed_time(RUSAGE_T *after, RUSAGE_T *before,
242 unsigned long *cpu_time_elapsed);
243
244/* Global variable containing a recent result from gettimeofday. This can
245 be used instead of calling gettimeofday if a recent value is sufficient.
246 This is guaranteed to be refreshed before a thread is called. */
247extern struct timeval recent_time;
Paul Jakmadb9c0df2006-08-27 06:44:02 +0000248/* Similar to recent_time, but a monotonically increasing time value */
249extern struct timeval recent_relative_time (void);
David Lamparter615f9f12013-11-18 23:52:02 +0100250
251/* only for use in logging functions! */
252extern struct thread *thread_current;
253
paul718e3742002-12-13 20:15:29 +0000254#endif /* _ZEBRA_THREAD_H */