paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* Thread management routine header. |
| 2 | * Copyright (C) 1998 Kunihiro Ishiguro |
Everton Marques | e854095 | 2012-02-16 06:14:54 +0100 | [diff] [blame] | 3 | * Portions Copyright (c) 2008 Everton da Silva Marques <everton.marques@gmail.com> |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 4 | * |
| 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 Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 26 | #include <zebra.h> |
| 27 | |
ajs | 8b70d0b | 2005-04-28 01:31:13 +0000 | [diff] [blame] | 28 | struct rusage_t |
| 29 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 30 | #ifdef HAVE_RUSAGE |
ajs | 8b70d0b | 2005-04-28 01:31:13 +0000 | [diff] [blame] | 31 | struct rusage cpu; |
| 32 | #endif |
| 33 | struct timeval real; |
| 34 | }; |
| 35 | #define RUSAGE_T struct rusage_t |
| 36 | |
Paul Jakma | db9c0df | 2006-08-27 06:44:02 +0000 | [diff] [blame] | 37 | #define GETRUSAGE(X) thread_getrusage(X) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 38 | |
| 39 | /* Linked list of thread. */ |
| 40 | struct thread_list |
| 41 | { |
| 42 | struct thread *head; |
| 43 | struct thread *tail; |
| 44 | int count; |
| 45 | }; |
| 46 | |
Christian Franke | 4becea7 | 2013-11-19 14:11:42 +0000 | [diff] [blame] | 47 | struct pqueue; |
| 48 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 49 | /* Master of the theads. */ |
| 50 | struct thread_master |
| 51 | { |
| 52 | struct thread_list read; |
| 53 | struct thread_list write; |
Christian Franke | 4becea7 | 2013-11-19 14:11:42 +0000 | [diff] [blame] | 54 | struct pqueue *timer; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 55 | struct thread_list event; |
| 56 | struct thread_list ready; |
| 57 | struct thread_list unuse; |
Christian Franke | 4becea7 | 2013-11-19 14:11:42 +0000 | [diff] [blame] | 58 | struct pqueue *background; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 59 | fd_set readfd; |
| 60 | fd_set writefd; |
| 61 | fd_set exceptfd; |
| 62 | unsigned long alloc; |
| 63 | }; |
| 64 | |
Paul Jakma | 41b2373 | 2009-06-30 16:12:49 +0100 | [diff] [blame] | 65 | typedef unsigned char thread_type; |
| 66 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 67 | /* Thread itself. */ |
| 68 | struct thread |
| 69 | { |
Paul Jakma | 41b2373 | 2009-06-30 16:12:49 +0100 | [diff] [blame] | 70 | thread_type type; /* thread type */ |
| 71 | thread_type add_type; /* thread type */ |
paul | a48b4e6 | 2005-04-22 00:43:47 +0000 | [diff] [blame] | 72 | struct thread *next; /* next pointer of the thread */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 73 | struct thread *prev; /* previous pointer of the thread */ |
| 74 | struct thread_master *master; /* pointer to the struct thread_master. */ |
| 75 | int (*func) (struct thread *); /* event function */ |
| 76 | void *arg; /* event argument */ |
| 77 | union { |
| 78 | int val; /* second argument of the event. */ |
| 79 | int fd; /* file descriptor in case of read/write. */ |
| 80 | struct timeval sands; /* rest of time sands value. */ |
| 81 | } u; |
Christian Franke | 4becea7 | 2013-11-19 14:11:42 +0000 | [diff] [blame] | 82 | int index; /* used for timers to store position in queue */ |
Jorge Boncompte [DTI2] | 41af338 | 2012-05-07 16:53:12 +0000 | [diff] [blame] | 83 | struct timeval real; |
Paul Jakma | cc8b13a | 2006-07-25 20:40:40 +0000 | [diff] [blame] | 84 | struct cpu_thread_history *hist; /* cache pointer to cpu_history */ |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 85 | const char *funcname; |
| 86 | const char *schedfrom; |
| 87 | int schedfrom_line; |
paul | e04ab74 | 2003-01-17 23:47:00 +0000 | [diff] [blame] | 88 | }; |
| 89 | |
ajs | 8b70d0b | 2005-04-28 01:31:13 +0000 | [diff] [blame] | 90 | struct cpu_thread_history |
| 91 | { |
paul | e04ab74 | 2003-01-17 23:47:00 +0000 | [diff] [blame] | 92 | int (*func)(struct thread *); |
paul | e04ab74 | 2003-01-17 23:47:00 +0000 | [diff] [blame] | 93 | unsigned int total_calls; |
ajs | 8b70d0b | 2005-04-28 01:31:13 +0000 | [diff] [blame] | 94 | struct time_stats |
| 95 | { |
| 96 | unsigned long total, max; |
| 97 | } real; |
| 98 | #ifdef HAVE_RUSAGE |
| 99 | struct time_stats cpu; |
| 100 | #endif |
Paul Jakma | 41b2373 | 2009-06-30 16:12:49 +0100 | [diff] [blame] | 101 | thread_type types; |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 102 | const char *funcname; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 103 | }; |
| 104 | |
Paul Jakma | db9c0df | 2006-08-27 06:44:02 +0000 | [diff] [blame] | 105 | /* Clocks supported by Quagga */ |
| 106 | enum quagga_clkid { |
| 107 | QUAGGA_CLK_REALTIME = 0, /* ala gettimeofday() */ |
| 108 | QUAGGA_CLK_MONOTONIC, /* monotonic, against an indeterminate base */ |
| 109 | QUAGGA_CLK_REALTIME_STABILISED, /* like realtime, but non-decrementing */ |
| 110 | }; |
| 111 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 112 | /* Thread types. */ |
| 113 | #define THREAD_READ 0 |
| 114 | #define THREAD_WRITE 1 |
| 115 | #define THREAD_TIMER 2 |
| 116 | #define THREAD_EVENT 3 |
| 117 | #define THREAD_READY 4 |
paul | a48b4e6 | 2005-04-22 00:43:47 +0000 | [diff] [blame] | 118 | #define THREAD_BACKGROUND 5 |
| 119 | #define THREAD_UNUSED 6 |
| 120 | #define THREAD_EXECUTE 7 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 121 | |
| 122 | /* Thread yield time. */ |
paul | 17fc128 | 2005-04-22 00:57:03 +0000 | [diff] [blame] | 123 | #define THREAD_YIELD_TIME_SLOT 10 * 1000L /* 10ms */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 124 | |
| 125 | /* Macros. */ |
| 126 | #define THREAD_ARG(X) ((X)->arg) |
| 127 | #define THREAD_FD(X) ((X)->u.fd) |
| 128 | #define THREAD_VAL(X) ((X)->u.val) |
| 129 | |
| 130 | #define THREAD_READ_ON(master,thread,func,arg,sock) \ |
| 131 | do { \ |
| 132 | if (! thread) \ |
| 133 | thread = thread_add_read (master, func, arg, sock); \ |
| 134 | } while (0) |
| 135 | |
| 136 | #define THREAD_WRITE_ON(master,thread,func,arg,sock) \ |
| 137 | do { \ |
| 138 | if (! thread) \ |
| 139 | thread = thread_add_write (master, func, arg, sock); \ |
| 140 | } while (0) |
| 141 | |
| 142 | #define THREAD_TIMER_ON(master,thread,func,arg,time) \ |
| 143 | do { \ |
| 144 | if (! thread) \ |
| 145 | thread = thread_add_timer (master, func, arg, time); \ |
| 146 | } while (0) |
| 147 | |
Everton Marques | e854095 | 2012-02-16 06:14:54 +0100 | [diff] [blame] | 148 | #define THREAD_TIMER_MSEC_ON(master,thread,func,arg,time) \ |
| 149 | do { \ |
| 150 | if (! thread) \ |
| 151 | thread = thread_add_timer_msec (master, func, arg, time); \ |
| 152 | } while (0) |
| 153 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 154 | #define THREAD_OFF(thread) \ |
| 155 | do { \ |
| 156 | if (thread) \ |
| 157 | { \ |
| 158 | thread_cancel (thread); \ |
| 159 | thread = NULL; \ |
| 160 | } \ |
| 161 | } while (0) |
| 162 | |
| 163 | #define THREAD_READ_OFF(thread) THREAD_OFF(thread) |
| 164 | #define THREAD_WRITE_OFF(thread) THREAD_OFF(thread) |
| 165 | #define THREAD_TIMER_OFF(thread) THREAD_OFF(thread) |
| 166 | |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 167 | #define debugargdef const char *funcname, const char *schedfrom, int fromln |
| 168 | |
| 169 | #define thread_add_read(m,f,a,v) funcname_thread_add_read(m,f,a,v,#f,__FILE__,__LINE__) |
| 170 | #define thread_add_write(m,f,a,v) funcname_thread_add_write(m,f,a,v,#f,__FILE__,__LINE__) |
| 171 | #define thread_add_timer(m,f,a,v) funcname_thread_add_timer(m,f,a,v,#f,__FILE__,__LINE__) |
| 172 | #define thread_add_timer_msec(m,f,a,v) funcname_thread_add_timer_msec(m,f,a,v,#f,__FILE__,__LINE__) |
| 173 | #define thread_add_event(m,f,a,v) funcname_thread_add_event(m,f,a,v,#f,__FILE__,__LINE__) |
| 174 | #define thread_execute(m,f,a,v) funcname_thread_execute(m,f,a,v,#f,__FILE__,__LINE__) |
ajs | fb9e46b | 2005-04-22 14:23:34 +0000 | [diff] [blame] | 175 | |
| 176 | /* The 4th arg to thread_add_background is the # of milliseconds to delay. */ |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 177 | #define thread_add_background(m,f,a,v) funcname_thread_add_background(m,f,a,v,#f,__FILE__,__LINE__) |
paul | e04ab74 | 2003-01-17 23:47:00 +0000 | [diff] [blame] | 178 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 179 | /* Prototypes. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 180 | extern struct thread_master *thread_master_create (void); |
| 181 | extern void thread_master_free (struct thread_master *); |
| 182 | |
| 183 | extern struct thread *funcname_thread_add_read (struct thread_master *, |
| 184 | int (*)(struct thread *), |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 185 | void *, int, debugargdef); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 186 | extern struct thread *funcname_thread_add_write (struct thread_master *, |
| 187 | int (*)(struct thread *), |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 188 | void *, int, debugargdef); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 189 | extern struct thread *funcname_thread_add_timer (struct thread_master *, |
| 190 | int (*)(struct thread *), |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 191 | void *, long, debugargdef); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 192 | extern struct thread *funcname_thread_add_timer_msec (struct thread_master *, |
| 193 | int (*)(struct thread *), |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 194 | void *, long, debugargdef); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 195 | extern struct thread *funcname_thread_add_event (struct thread_master *, |
| 196 | int (*)(struct thread *), |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 197 | void *, int, debugargdef); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 198 | extern struct thread *funcname_thread_add_background (struct thread_master *, |
| 199 | int (*func)(struct thread *), |
ajs | fb9e46b | 2005-04-22 14:23:34 +0000 | [diff] [blame] | 200 | void *arg, |
| 201 | long milliseconds_to_delay, |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 202 | debugargdef); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 203 | extern struct thread *funcname_thread_execute (struct thread_master *, |
| 204 | int (*)(struct thread *), |
David Lamparter | 3493b77 | 2013-11-18 23:04:27 +0100 | [diff] [blame] | 205 | void *, int, debugargdef); |
| 206 | #undef debugargdef |
| 207 | |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 208 | extern void thread_cancel (struct thread *); |
paul | dc81807 | 2005-05-19 01:30:53 +0000 | [diff] [blame] | 209 | extern unsigned int thread_cancel_event (struct thread_master *, void *); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 210 | extern struct thread *thread_fetch (struct thread_master *, struct thread *); |
| 211 | extern void thread_call (struct thread *); |
| 212 | extern unsigned long thread_timer_remain_second (struct thread *); |
| 213 | extern int thread_should_yield (struct thread *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 214 | |
Paul Jakma | db9c0df | 2006-08-27 06:44:02 +0000 | [diff] [blame] | 215 | /* Internal libzebra exports */ |
| 216 | extern void thread_getrusage (RUSAGE_T *); |
paul | e04ab74 | 2003-01-17 23:47:00 +0000 | [diff] [blame] | 217 | extern struct cmd_element show_thread_cpu_cmd; |
Paul Jakma | e276eb8 | 2010-01-09 16:15:00 +0000 | [diff] [blame] | 218 | extern struct cmd_element clear_thread_cpu_cmd; |
paul | e04ab74 | 2003-01-17 23:47:00 +0000 | [diff] [blame] | 219 | |
Paul Jakma | db9c0df | 2006-08-27 06:44:02 +0000 | [diff] [blame] | 220 | /* replacements for the system gettimeofday(), clock_gettime() and |
| 221 | * time() functions, providing support for non-decrementing clock on |
| 222 | * all systems, and fully monotonic on /some/ systems. |
| 223 | */ |
| 224 | extern int quagga_gettime (enum quagga_clkid, struct timeval *); |
| 225 | extern time_t quagga_time (time_t *); |
| 226 | |
ajs | 8b70d0b | 2005-04-28 01:31:13 +0000 | [diff] [blame] | 227 | /* Returns elapsed real (wall clock) time. */ |
| 228 | extern unsigned long thread_consumed_time(RUSAGE_T *after, RUSAGE_T *before, |
| 229 | unsigned long *cpu_time_elapsed); |
| 230 | |
| 231 | /* Global variable containing a recent result from gettimeofday. This can |
| 232 | be used instead of calling gettimeofday if a recent value is sufficient. |
| 233 | This is guaranteed to be refreshed before a thread is called. */ |
| 234 | extern struct timeval recent_time; |
Paul Jakma | db9c0df | 2006-08-27 06:44:02 +0000 | [diff] [blame] | 235 | /* Similar to recent_time, but a monotonically increasing time value */ |
| 236 | extern struct timeval recent_relative_time (void); |
David Lamparter | 615f9f1 | 2013-11-18 23:52:02 +0100 | [diff] [blame] | 237 | |
| 238 | /* only for use in logging functions! */ |
| 239 | extern struct thread *thread_current; |
| 240 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 241 | #endif /* _ZEBRA_THREAD_H */ |