2 * Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
3 * based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
4 * Internet Initiative Japan, Inc (IIJ)
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * $FreeBSD: src/usr.sbin/ppp/timer.c,v 1.38.2.3 2002/09/01 02:12:32 brian Exp $
29 * $DragonFly: src/usr.sbin/ppp/timer.c,v 1.2 2003/06/17 04:30:01 dillon Exp $
43 #include "descriptor.h"
48 ((t).it_value.tv_sec * SECTICKS + (t).it_value.tv_usec / TICKUNIT + \
49 ((((t).it_value.tv_usec % TICKUNIT) >= (TICKUNIT >> 1)) ? 1 : 0))
51 static struct pppTimer
*TimerList
= NULL
, *ExpiredList
= NULL
;
53 static void StopTimerNoBlock(struct pppTimer
*);
56 tState2Nam(u_int state
)
58 static const char * const StateNames
[] = { "stopped", "running", "expired" };
60 if (state
>= sizeof StateNames
/ sizeof StateNames
[0])
62 return StateNames
[state
];
66 timer_Stop(struct pppTimer
*tp
)
71 sigaddset(&mask
, SIGALRM
);
72 sigprocmask(SIG_BLOCK
, &mask
, &omask
);
74 sigprocmask(SIG_SETMASK
, &omask
, NULL
);
78 timer_Start(struct pppTimer
*tp
)
80 struct itimerval itimer
;
81 struct pppTimer
*t
, *pt
;
86 sigaddset(&mask
, SIGALRM
);
87 sigprocmask(SIG_BLOCK
, &mask
, &omask
);
89 if (tp
->state
!= TIMER_STOPPED
)
93 log_Printf(LogTIMER
, "%s timer[%p] has 0 load!\n", tp
->name
, tp
);
94 sigprocmask(SIG_SETMASK
, &omask
, NULL
);
98 /* Adjust our first delta so that it reflects what's really happening */
99 if (TimerList
&& getitimer(ITIMER_REAL
, &itimer
) == 0)
100 TimerList
->rest
= RESTVAL(itimer
);
103 for (t
= TimerList
; t
; t
= t
->next
) {
104 if (ticks
+ t
->rest
>= tp
->load
)
110 tp
->state
= TIMER_RUNNING
;
111 tp
->rest
= tp
->load
- ticks
;
114 log_Printf(LogTIMER
, "timer_Start: Inserting %s timer[%p] before %s "
115 "timer[%p], delta = %ld\n", tp
->name
, tp
, t
->name
, t
, tp
->rest
);
117 log_Printf(LogTIMER
, "timer_Start: Inserting %s timer[%p]\n", tp
->name
, tp
);
119 /* Insert given *tp just before *t */
125 timer_InitService(t
!= NULL
); /* [re]Start the Timer Service */
130 sigprocmask(SIG_SETMASK
, &omask
, NULL
);
134 StopTimerNoBlock(struct pppTimer
*tp
)
136 struct pppTimer
*t
, *pt
;
139 * A RUNNING timer must be removed from TimerList (->next list).
140 * A STOPPED timer isn't in any list, but may have a bogus [e]next field.
141 * An EXPIRED timer is in the ->enext list.
144 if (tp
->state
== TIMER_STOPPED
)
148 for (t
= TimerList
; t
!= tp
&& t
!= NULL
; t
= t
->next
)
156 if (TimerList
== NULL
) /* Last one ? */
157 timer_TermService(); /* Terminate Timer Service */
160 if (!pt
) { /* t (tp) was the first in the list */
161 struct itimerval itimer
;
163 if (getitimer(ITIMER_REAL
, &itimer
) == 0)
164 t
->rest
= RESTVAL(itimer
);
166 t
->next
->rest
+= t
->rest
;
167 if (!pt
) /* t->next is now the first in the list */
168 timer_InitService(1);
171 /* Search for any pending expired timers */
173 for (t
= ExpiredList
; t
!= tp
&& t
!= NULL
; t
= t
->enext
)
178 pt
->enext
= t
->enext
;
180 ExpiredList
= t
->enext
;
181 } else if (tp
->state
== TIMER_RUNNING
)
182 log_Printf(LogERROR
, "Oops, %s timer not found!!\n", tp
->name
);
185 tp
->next
= tp
->enext
= NULL
;
186 tp
->state
= TIMER_STOPPED
;
192 struct pppTimer
*tp
, *exp
, *next
;
194 if (log_IsKept(LogTIMER
)) {
195 static time_t t
; /* Only show timers globally every second */
196 time_t n
= time(NULL
);
199 timer_Show(LogTIMER
, NULL
);
207 /* Multiple timers might expire at once. Create a list of expired timers */
210 tp
->state
= TIMER_EXPIRED
;
215 } while (tp
&& tp
->rest
== 0);
218 if (TimerList
!= NULL
) /* Any timers remaining ? */
219 timer_InitService(1); /* Restart the Timer Service */
221 timer_TermService(); /* Stop the Timer Service */
223 /* Process all expired timers */
225 ExpiredList
= exp
->enext
;
228 (*exp
->func
)(exp
->arg
);
235 timer_Show(int LogLevel
, struct prompt
*prompt
)
237 struct itimerval itimer
;
241 /* Adjust our first delta so that it reflects what's really happening */
242 if (TimerList
&& getitimer(ITIMER_REAL
, &itimer
) == 0)
243 TimerList
->rest
= RESTVAL(itimer
);
245 #define SECS(val) ((val) / SECTICKS)
246 #define HSECS(val) (((val) % SECTICKS) * 100 / SECTICKS)
248 "%s timer[%p]: freq = %ld.%02lds, next = %lu.%02lus, state = %s\n", \
249 pt->name, pt, SECS(pt->load), HSECS(pt->load), SECS(rest), \
250 HSECS(rest), tState2Nam(pt->state)
253 log_Printf(LogLevel
, "---- Begin of Timer Service List---\n");
255 for (pt
= TimerList
; pt
; pt
= pt
->next
) {
258 prompt_Printf(prompt
, DISP
);
260 log_Printf(LogLevel
, DISP
);
264 log_Printf(LogLevel
, "---- End of Timer Service List ---\n");
268 timer_InitService(int restart
)
270 struct itimerval itimer
;
274 sig_signal(SIGALRM
, (void (*)(int))TimerService
);
275 itimer
.it_interval
.tv_sec
= 0;
276 itimer
.it_interval
.tv_usec
= 0;
277 itimer
.it_value
.tv_sec
= TimerList
->rest
/ SECTICKS
;
278 itimer
.it_value
.tv_usec
= (TimerList
->rest
% SECTICKS
) * TICKUNIT
;
279 if (setitimer(ITIMER_REAL
, &itimer
, NULL
) == -1)
280 log_Printf(LogERROR
, "Unable to set itimer (%s)\n", strerror(errno
));
285 timer_TermService(void)
287 struct itimerval itimer
;
289 itimer
.it_interval
.tv_usec
= itimer
.it_interval
.tv_sec
= 0;
290 itimer
.it_value
.tv_usec
= itimer
.it_value
.tv_sec
= 0;
291 if (setitimer(ITIMER_REAL
, &itimer
, NULL
) == -1)
292 log_Printf(LogERROR
, "Unable to set itimer (%s)\n", strerror(errno
));
293 sig_signal(SIGALRM
, SIG_IGN
);