summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/timer.c
blob: 10e1d2c6b100238dce2565b519ff88d54c4ee513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/*
 *		PPP Timer Processing Module
 *
 *	    Written by Toshiharu OHNO (tony-o@iij.ad.jp)
 *
 *   Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
 *
 * Redistribution and use in source and binary forms are permitted
 * provided that the above copyright notice and this paragraph are
 * duplicated in all such forms and that any documentation,
 * advertising materials, and other materials related to such
 * distribution and use acknowledge that the software was developed
 * by the Internet Initiative Japan, Inc.  The name of the
 * IIJ may not be used to endorse or promote products derived
 * from this software without specific prior written permission.
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 *
 * $Id: timer.c,v 1.4 1995/05/30 03:50:59 rgrimes Exp $
 *
 *  TODO:
 */
#include "defs.h"
#include <sys/time.h>
#include <signal.h>
#include "timeout.h"
#ifdef SIGALRM
#include <errno.h>
#endif
void StopTimerNoBlock( struct pppTimer *);
void ShowTimers(void);

void
StopTimer( struct pppTimer *tp )
{
#ifdef SIGALRM
  int	omask;
  omask = sigblock(sigmask(SIGALRM));
#endif
  StopTimerNoBlock(tp);
#ifdef SIGALRM
  sigsetmask(omask);
#endif
}
void
StartTimer(tp)
struct pppTimer *tp;
{
  struct pppTimer *t, *pt;
  u_long ticks = 0;

#ifdef SIGALRM
  int	omask;
  omask = sigblock(sigmask(SIGALRM));
#endif

  if (tp->state != TIMER_STOPPED) {
    StopTimerNoBlock(tp);
  }
  if (tp->load == 0) {
#ifdef DEBUG
    logprintf("timer %x has 0 load!\n", tp);
#endif
    sigsetmask(omask);
    return;
  }
  pt = NULL;
  for (t = TimerList; t; t = t->next) {
#ifdef DEBUG
    logprintf("StartTimer: %x(%d):  ticks: %d, rest: %d\n", t, t->state, ticks, t->rest);
#endif
    if (ticks + t->rest >= tp->load)
      break;
    ticks += t->rest;
    pt = t;
  }

  tp->state = TIMER_RUNNING;
  tp->rest = tp->load - ticks;
#ifdef DEBUG
  logprintf("Inserting %x before %x, rest = %d\n", tp, t, tp->rest);
#endif
  /* Insert given *tp just before *t */
  tp->next = t;
  if (pt) {
    pt->next = tp;
  } else {
    InitTimerService();
    TimerList = tp;
  }
  if (t)
    t->rest -= tp->rest;

#ifdef SIGALRM
  sigsetmask(omask);
#endif
}

void
StopTimerNoBlock(tp)
struct pppTimer *tp;
{
  struct pppTimer *t, *pt;

  /*
   * A Running Timer should be removing TimerList,
   * But STOPPED/EXPIRED is already removing TimerList.
   * So just marked as TIMER_STOPPED.
   * Do not change tp->enext!! (Might be Called by expired proc)
   */
#ifdef DEBUG
  logprintf("StopTimer: %x, next = %x state=%x\n", tp, tp->next, tp->state);
#endif
  if (tp->state != TIMER_RUNNING) {
    tp->next   = NULL;
    tp->state  = TIMER_STOPPED;
    return;
  }

  pt = NULL;
  for (t = TimerList; t != tp && t !=NULL ; t = t->next)
    pt = t;
  if (t) {
    if (pt) {
      pt->next = t->next;
    } else {
      TimerList = t->next;
      if ( TimerList == NULL )			/* Last one ? */
	 TermTimerService();			/* Terminate Timer Service */
    }
    if (t->next)
      t->next->rest += tp->rest;
  } else {
    logprintf("Oops, timer not found!!\n");
  }
  tp->next = NULL;
  tp->state = TIMER_STOPPED;
}

void
TimerService()
{
  struct pppTimer *tp, *exp, *wt;

#ifdef DEBUG
  ShowTimers();
#endif
  tp = TimerList;
  if (tp) {
    tp->rest--;
    if (tp->rest == 0) {
      /*
       * Multiple timers may expires at once. Create list of expired timers.
       */
      exp = NULL;
      do {
	tp->state = TIMER_EXPIRED;
	wt = tp->next;
	tp->enext = exp;
	exp = tp;
#ifdef DEBUG
	logprintf("Add %x to exp\n", tp);
#endif
	tp = wt;
      } while (tp && (tp->rest == 0));

      TimerList = tp;
      if ( TimerList == NULL )			/* No timers ? */
	 TermTimerService();			/* Terminate Timer Service */
#ifdef DEBUG
      logprintf("TimerService: next is %x(%d)\n",
		TimerList, TimerList? TimerList->rest : 0);
#endif
      /*
       * Process all expired timers.
       */
      while (exp) {
#ifdef notdef
	StopTimer(exp);
#endif
	if (exp->func)
	  (*exp->func)(exp->arg);
	/*
         * Just Removing each item from expired list
         * And exp->enext will be intialized at next expire
         * in this funtion.
         */
	exp =  exp->enext;
      }
    }
  }
}

void
ShowTimers()
{
  struct pppTimer *pt;

  logprintf("---- Begin of Timer Service List---\n");
  for (pt = TimerList; pt; pt = pt->next)
    logprintf("%x: load = %d, rest = %d, state =%x\n",
	pt, pt->load, pt->rest, pt->state);
  logprintf("---- End of Timer Service List ---\n");
}

#ifdef SIGALRM
u_int
sleep( u_int sec )
{
  struct timeval  to,st,et;
  long sld, nwd, std;

  gettimeofday( &st, NULL );
  to.tv_sec =  sec;
  to.tv_usec = 0;
  std = st.tv_sec * 1000000 + st.tv_usec;
  for (;;) {
    if ( select ( 0, NULL, NULL, NULL, &to) == 0 ||
         errno != EINTR ) {
       break;
    } else  {
       gettimeofday( &et, NULL );
       sld = to.tv_sec * 1000000 + to.tv_sec;
       nwd = et.tv_sec * 1000000 + et.tv_usec - std;
       if ( sld > nwd )
          sld -= nwd;
       else
          sld  = 1; /* Avoid both tv_sec/usec is 0 */

       /* Calculate timeout value for select */
       to.tv_sec  = sld / 1000000;
       to.tv_usec = sld % 1000000;
    }
  }
  return (0L);
}

void usleep( u_int usec)
{
  struct timeval  to,st,et;
  long sld, nwd, std;

  gettimeofday( &st, NULL );
  to.tv_sec =  0;
  to.tv_usec = usec;
  std = st.tv_sec * 1000000 + st.tv_usec;
  for (;;) {
    if ( select ( 0, NULL, NULL, NULL, &to) == 0 ||
         errno != EINTR ) {
       break;
    } else  {
       gettimeofday( &et, NULL );
       sld = to.tv_sec * 1000000 + to.tv_sec;
       nwd = et.tv_sec * 1000000 + et.tv_usec - std;
       if ( sld > nwd )
          sld -= nwd;
       else
          sld  = 1; /* Avoid both tv_sec/usec is 0 */

       /* Calculate timeout value for select */
       to.tv_sec  = sld / 1000000;
       to.tv_usec = sld % 1000000;

    }
  }
}

void InitTimerService( void ) {
  struct itimerval itimer;

  signal(SIGALRM, (void (*)(int))TimerService);
  itimer.it_interval.tv_sec = itimer.it_value.tv_sec = 0;
  itimer.it_interval.tv_usec = itimer.it_value.tv_usec = TICKUNIT;
  setitimer(ITIMER_REAL, &itimer, NULL);
}

void TermTimerService( void ) {
  struct itimerval itimer;

  itimer.it_interval.tv_sec = itimer.it_value.tv_sec = 0;
  itimer.it_value.tv_usec = itimer.it_value.tv_sec = 0;
  setitimer(ITIMER_REAL, &itimer, NULL);
  /*
   * Notes: after disabling timer here, we will get one
   *        SIGALRM will be got.
   */
  signal(SIGALRM, SIG_IGN);
}
#endif
OpenPOWER on IntegriCloud