vserver 2.0 rc7
[linux-2.6.git] / kernel / posix-timers.c
1 /*
2  * linux/kernel/posix_timers.c
3  *
4  *
5  * 2002-10-15  Posix Clocks & timers
6  *                           by George Anzinger george@mvista.com
7  *
8  *                           Copyright (C) 2002 2003 by MontaVista Software.
9  *
10  * 2004-06-01  Fix CLOCK_REALTIME clock/timer TIMER_ABSTIME bug.
11  *                           Copyright (C) 2004 Boris Hu
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or (at
16  * your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful, but
19  * WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21  * General Public License for more details.
22
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26  *
27  * MontaVista Software | 1237 East Arques Avenue | Sunnyvale | CA 94085 | USA
28  */
29
30 /* These are all the functions necessary to implement
31  * POSIX clocks & timers
32  */
33 #include <linux/mm.h>
34 #include <linux/smp_lock.h>
35 #include <linux/interrupt.h>
36 #include <linux/slab.h>
37 #include <linux/time.h>
38
39 #include <asm/uaccess.h>
40 #include <asm/semaphore.h>
41 #include <linux/list.h>
42 #include <linux/init.h>
43 #include <linux/compiler.h>
44 #include <linux/idr.h>
45 #include <linux/posix-timers.h>
46 #include <linux/syscalls.h>
47 #include <linux/wait.h>
48 #include <linux/workqueue.h>
49 #include <linux/module.h>
50 #include <linux/vs_cvirt.h>
51
52 #ifndef div_long_long_rem
53 #include <asm/div64.h>
54
55 #define div_long_long_rem(dividend,divisor,remainder) ({ \
56                        u64 result = dividend;           \
57                        *remainder = do_div(result,divisor); \
58                        result; })
59
60 #endif
61 #define CLOCK_REALTIME_RES TICK_NSEC  /* In nano seconds. */
62
63 static inline u64  mpy_l_X_l_ll(unsigned long mpy1,unsigned long mpy2)
64 {
65         return (u64)mpy1 * mpy2;
66 }
67 /*
68  * Management arrays for POSIX timers.   Timers are kept in slab memory
69  * Timer ids are allocated by an external routine that keeps track of the
70  * id and the timer.  The external interface is:
71  *
72  * void *idr_find(struct idr *idp, int id);           to find timer_id <id>
73  * int idr_get_new(struct idr *idp, void *ptr);       to get a new id and
74  *                                                    related it to <ptr>
75  * void idr_remove(struct idr *idp, int id);          to release <id>
76  * void idr_init(struct idr *idp);                    to initialize <idp>
77  *                                                    which we supply.
78  * The idr_get_new *may* call slab for more memory so it must not be
79  * called under a spin lock.  Likewise idr_remore may release memory
80  * (but it may be ok to do this under a lock...).
81  * idr_find is just a memory look up and is quite fast.  A -1 return
82  * indicates that the requested id does not exist.
83  */
84
85 /*
86  * Lets keep our timers in a slab cache :-)
87  */
88 static kmem_cache_t *posix_timers_cache;
89 static struct idr posix_timers_id;
90 static DEFINE_SPINLOCK(idr_lock);
91
92 /*
93  * Just because the timer is not in the timer list does NOT mean it is
94  * inactive.  It could be in the "fire" routine getting a new expire time.
95  */
96 #define TIMER_INACTIVE 1
97
98 #ifdef CONFIG_SMP
99 # define timer_active(tmr) \
100                 ((tmr)->it.real.timer.entry.prev != (void *)TIMER_INACTIVE)
101 # define set_timer_inactive(tmr) \
102                 do { \
103                         (tmr)->it.real.timer.entry.prev = (void *)TIMER_INACTIVE; \
104                 } while (0)
105 #else
106 # define timer_active(tmr) BARFY        // error to use outside of SMP
107 # define set_timer_inactive(tmr) do { } while (0)
108 #endif
109 /*
110  * we assume that the new SIGEV_THREAD_ID shares no bits with the other
111  * SIGEV values.  Here we put out an error if this assumption fails.
112  */
113 #if SIGEV_THREAD_ID != (SIGEV_THREAD_ID & \
114                        ~(SIGEV_SIGNAL | SIGEV_NONE | SIGEV_THREAD))
115 #error "SIGEV_THREAD_ID must not share bit with other SIGEV values!"
116 #endif
117
118
119 /*
120  * The timer ID is turned into a timer address by idr_find().
121  * Verifying a valid ID consists of:
122  *
123  * a) checking that idr_find() returns other than -1.
124  * b) checking that the timer id matches the one in the timer itself.
125  * c) that the timer owner is in the callers thread group.
126  */
127
128 /*
129  * CLOCKs: The POSIX standard calls for a couple of clocks and allows us
130  *          to implement others.  This structure defines the various
131  *          clocks and allows the possibility of adding others.  We
132  *          provide an interface to add clocks to the table and expect
133  *          the "arch" code to add at least one clock that is high
134  *          resolution.  Here we define the standard CLOCK_REALTIME as a
135  *          1/HZ resolution clock.
136  *
137  * RESOLUTION: Clock resolution is used to round up timer and interval
138  *          times, NOT to report clock times, which are reported with as
139  *          much resolution as the system can muster.  In some cases this
140  *          resolution may depend on the underlying clock hardware and
141  *          may not be quantifiable until run time, and only then is the
142  *          necessary code is written.  The standard says we should say
143  *          something about this issue in the documentation...
144  *
145  * FUNCTIONS: The CLOCKs structure defines possible functions to handle
146  *          various clock functions.  For clocks that use the standard
147  *          system timer code these entries should be NULL.  This will
148  *          allow dispatch without the overhead of indirect function
149  *          calls.  CLOCKS that depend on other sources (e.g. WWV or GPS)
150  *          must supply functions here, even if the function just returns
151  *          ENOSYS.  The standard POSIX timer management code assumes the
152  *          following: 1.) The k_itimer struct (sched.h) is used for the
153  *          timer.  2.) The list, it_lock, it_clock, it_id and it_process
154  *          fields are not modified by timer code.
155  *
156  *          At this time all functions EXCEPT clock_nanosleep can be
157  *          redirected by the CLOCKS structure.  Clock_nanosleep is in
158  *          there, but the code ignores it.
159  *
160  * Permissions: It is assumed that the clock_settime() function defined
161  *          for each clock will take care of permission checks.  Some
162  *          clocks may be set able by any user (i.e. local process
163  *          clocks) others not.  Currently the only set able clock we
164  *          have is CLOCK_REALTIME and its high res counter part, both of
165  *          which we beg off on and pass to do_sys_settimeofday().
166  */
167
168 static struct k_clock posix_clocks[MAX_CLOCKS];
169 /*
170  * We only have one real clock that can be set so we need only one abs list,
171  * even if we should want to have several clocks with differing resolutions.
172  */
173 static struct k_clock_abs abs_list = {.list = LIST_HEAD_INIT(abs_list.list),
174                                       .lock = SPIN_LOCK_UNLOCKED};
175
176 static void posix_timer_fn(unsigned long);
177 static u64 do_posix_clock_monotonic_gettime_parts(
178         struct timespec *tp, struct timespec *mo);
179 int do_posix_clock_monotonic_gettime(struct timespec *tp);
180 static int do_posix_clock_monotonic_get(clockid_t, struct timespec *tp);
181
182 static struct k_itimer *lock_timer(timer_t timer_id, unsigned long *flags);
183
184 static inline void unlock_timer(struct k_itimer *timr, unsigned long flags)
185 {
186         spin_unlock_irqrestore(&timr->it_lock, flags);
187 }
188
189 /*
190  * Call the k_clock hook function if non-null, or the default function.
191  */
192 #define CLOCK_DISPATCH(clock, call, arglist) \
193         ((clock) < 0 ? posix_cpu_##call arglist : \
194          (posix_clocks[clock].call != NULL \
195           ? (*posix_clocks[clock].call) arglist : common_##call arglist))
196
197 /*
198  * Default clock hook functions when the struct k_clock passed
199  * to register_posix_clock leaves a function pointer null.
200  *
201  * The function common_CALL is the default implementation for
202  * the function pointer CALL in struct k_clock.
203  */
204
205 static inline int common_clock_getres(clockid_t which_clock,
206                                       struct timespec *tp)
207 {
208         tp->tv_sec = 0;
209         tp->tv_nsec = posix_clocks[which_clock].res;
210         return 0;
211 }
212
213 static inline int common_clock_get(clockid_t which_clock, struct timespec *tp)
214 {
215         getnstimeofday(tp);
216         return 0;
217 }
218
219 static inline int common_clock_set(clockid_t which_clock, struct timespec *tp)
220 {
221         return do_sys_settimeofday(tp, NULL);
222 }
223
224 static inline int common_timer_create(struct k_itimer *new_timer)
225 {
226         INIT_LIST_HEAD(&new_timer->it.real.abs_timer_entry);
227         init_timer(&new_timer->it.real.timer);
228         new_timer->it.real.timer.data = (unsigned long) new_timer;
229         new_timer->it.real.timer.function = posix_timer_fn;
230         set_timer_inactive(new_timer);
231         return 0;
232 }
233
234 /*
235  * These ones are defined below.
236  */
237 static int common_nsleep(clockid_t, int flags, struct timespec *t);
238 static void common_timer_get(struct k_itimer *, struct itimerspec *);
239 static int common_timer_set(struct k_itimer *, int,
240                             struct itimerspec *, struct itimerspec *);
241 static int common_timer_del(struct k_itimer *timer);
242
243 /*
244  * Return nonzero iff we know a priori this clockid_t value is bogus.
245  */
246 static inline int invalid_clockid(clockid_t which_clock)
247 {
248         if (which_clock < 0)    /* CPU clock, posix_cpu_* will check it */
249                 return 0;
250         if ((unsigned) which_clock >= MAX_CLOCKS)
251                 return 1;
252         if (posix_clocks[which_clock].clock_getres != NULL)
253                 return 0;
254 #ifndef CLOCK_DISPATCH_DIRECT
255         if (posix_clocks[which_clock].res != 0)
256                 return 0;
257 #endif
258         return 1;
259 }
260
261
262 /*
263  * Initialize everything, well, just everything in Posix clocks/timers ;)
264  */
265 static __init int init_posix_timers(void)
266 {
267         struct k_clock clock_realtime = {.res = CLOCK_REALTIME_RES,
268                                          .abs_struct = &abs_list
269         };
270         struct k_clock clock_monotonic = {.res = CLOCK_REALTIME_RES,
271                 .abs_struct = NULL,
272                 .clock_get = do_posix_clock_monotonic_get,
273                 .clock_set = do_posix_clock_nosettime
274         };
275
276         register_posix_clock(CLOCK_REALTIME, &clock_realtime);
277         register_posix_clock(CLOCK_MONOTONIC, &clock_monotonic);
278
279         posix_timers_cache = kmem_cache_create("posix_timers_cache",
280                                         sizeof (struct k_itimer), 0, 0, NULL, NULL);
281         idr_init(&posix_timers_id);
282         return 0;
283 }
284
285 __initcall(init_posix_timers);
286
287 static void tstojiffie(struct timespec *tp, int res, u64 *jiff)
288 {
289         long sec = tp->tv_sec;
290         long nsec = tp->tv_nsec + res - 1;
291
292         if (nsec > NSEC_PER_SEC) {
293                 sec++;
294                 nsec -= NSEC_PER_SEC;
295         }
296
297         /*
298          * The scaling constants are defined in <linux/time.h>
299          * The difference between there and here is that we do the
300          * res rounding and compute a 64-bit result (well so does that
301          * but it then throws away the high bits).
302          */
303         *jiff =  (mpy_l_X_l_ll(sec, SEC_CONVERSION) +
304                   (mpy_l_X_l_ll(nsec, NSEC_CONVERSION) >> 
305                    (NSEC_JIFFIE_SC - SEC_JIFFIE_SC))) >> SEC_JIFFIE_SC;
306 }
307
308 /*
309  * This function adjusts the timer as needed as a result of the clock
310  * being set.  It should only be called for absolute timers, and then
311  * under the abs_list lock.  It computes the time difference and sets
312  * the new jiffies value in the timer.  It also updates the timers
313  * reference wall_to_monotonic value.  It is complicated by the fact
314  * that tstojiffies() only handles positive times and it needs to work
315  * with both positive and negative times.  Also, for negative offsets,
316  * we need to defeat the res round up.
317  *
318  * Return is true if there is a new time, else false.
319  */
320 static long add_clockset_delta(struct k_itimer *timr,
321                                struct timespec *new_wall_to)
322 {
323         struct timespec delta;
324         int sign = 0;
325         u64 exp;
326
327         set_normalized_timespec(&delta,
328                                 new_wall_to->tv_sec -
329                                 timr->it.real.wall_to_prev.tv_sec,
330                                 new_wall_to->tv_nsec -
331                                 timr->it.real.wall_to_prev.tv_nsec);
332         if (likely(!(delta.tv_sec | delta.tv_nsec)))
333                 return 0;
334         if (delta.tv_sec < 0) {
335                 set_normalized_timespec(&delta,
336                                         -delta.tv_sec,
337                                         1 - delta.tv_nsec -
338                                         posix_clocks[timr->it_clock].res);
339                 sign++;
340         }
341         tstojiffie(&delta, posix_clocks[timr->it_clock].res, &exp);
342         timr->it.real.wall_to_prev = *new_wall_to;
343         timr->it.real.timer.expires += (sign ? -exp : exp);
344         return 1;
345 }
346
347 static void remove_from_abslist(struct k_itimer *timr)
348 {
349         if (!list_empty(&timr->it.real.abs_timer_entry)) {
350                 spin_lock(&abs_list.lock);
351                 list_del_init(&timr->it.real.abs_timer_entry);
352                 spin_unlock(&abs_list.lock);
353         }
354 }
355
356 static void schedule_next_timer(struct k_itimer *timr)
357 {
358         struct timespec new_wall_to;
359         struct now_struct now;
360         unsigned long seq;
361
362         /*
363          * Set up the timer for the next interval (if there is one).
364          * Note: this code uses the abs_timer_lock to protect
365          * it.real.wall_to_prev and must hold it until exp is set, not exactly
366          * obvious...
367
368          * This function is used for CLOCK_REALTIME* and
369          * CLOCK_MONOTONIC* timers.  If we ever want to handle other
370          * CLOCKs, the calling code (do_schedule_next_timer) would need
371          * to pull the "clock" info from the timer and dispatch the
372          * "other" CLOCKs "next timer" code (which, I suppose should
373          * also be added to the k_clock structure).
374          */
375         if (!timr->it.real.incr)
376                 return;
377
378         do {
379                 seq = read_seqbegin(&xtime_lock);
380                 new_wall_to =   wall_to_monotonic;
381                 posix_get_now(&now);
382         } while (read_seqretry(&xtime_lock, seq));
383
384         if (!list_empty(&timr->it.real.abs_timer_entry)) {
385                 spin_lock(&abs_list.lock);
386                 add_clockset_delta(timr, &new_wall_to);
387
388                 posix_bump_timer(timr, now);
389
390                 spin_unlock(&abs_list.lock);
391         } else {
392                 posix_bump_timer(timr, now);
393         }
394         timr->it_overrun_last = timr->it_overrun;
395         timr->it_overrun = -1;
396         ++timr->it_requeue_pending;
397         add_timer(&timr->it.real.timer);
398 }
399
400 /*
401  * This function is exported for use by the signal deliver code.  It is
402  * called just prior to the info block being released and passes that
403  * block to us.  It's function is to update the overrun entry AND to
404  * restart the timer.  It should only be called if the timer is to be
405  * restarted (i.e. we have flagged this in the sys_private entry of the
406  * info block).
407  *
408  * To protect aginst the timer going away while the interrupt is queued,
409  * we require that the it_requeue_pending flag be set.
410  */
411 void do_schedule_next_timer(struct siginfo *info)
412 {
413         struct k_itimer *timr;
414         unsigned long flags;
415
416         timr = lock_timer(info->si_tid, &flags);
417
418         if (!timr || timr->it_requeue_pending != info->si_sys_private)
419                 goto exit;
420
421         if (timr->it_clock < 0) /* CPU clock */
422                 posix_cpu_timer_schedule(timr);
423         else
424                 schedule_next_timer(timr);
425         info->si_overrun = timr->it_overrun_last;
426 exit:
427         if (timr)
428                 unlock_timer(timr, flags);
429 }
430
431 int posix_timer_event(struct k_itimer *timr,int si_private)
432 {
433         memset(&timr->sigq->info, 0, sizeof(siginfo_t));
434         timr->sigq->info.si_sys_private = si_private;
435         /*
436          * Send signal to the process that owns this timer.
437
438          * This code assumes that all the possible abs_lists share the
439          * same lock (there is only one list at this time). If this is
440          * not the case, the CLOCK info would need to be used to find
441          * the proper abs list lock.
442          */
443
444         timr->sigq->info.si_signo = timr->it_sigev_signo;
445         timr->sigq->info.si_errno = 0;
446         timr->sigq->info.si_code = SI_TIMER;
447         timr->sigq->info.si_tid = timr->it_id;
448         timr->sigq->info.si_value = timr->it_sigev_value;
449         if (timr->it_sigev_notify & SIGEV_THREAD_ID) {
450                 if (unlikely(timr->it_process->flags & PF_EXITING)) {
451                         timr->it_sigev_notify = SIGEV_SIGNAL;
452                         put_task_struct(timr->it_process);
453                         timr->it_process = timr->it_process->group_leader;
454                         goto group;
455                 }
456                 return send_sigqueue(timr->it_sigev_signo, timr->sigq,
457                         timr->it_process);
458         }
459         else {
460         group:
461                 return send_group_sigqueue(timr->it_sigev_signo, timr->sigq,
462                         timr->it_process);
463         }
464 }
465 EXPORT_SYMBOL_GPL(posix_timer_event);
466
467 /*
468  * This function gets called when a POSIX.1b interval timer expires.  It
469  * is used as a callback from the kernel internal timer.  The
470  * run_timer_list code ALWAYS calls with interrupts on.
471
472  * This code is for CLOCK_REALTIME* and CLOCK_MONOTONIC* timers.
473  */
474 static void posix_timer_fn(unsigned long __data)
475 {
476         struct k_itimer *timr = (struct k_itimer *) __data;
477         unsigned long flags;
478         unsigned long seq;
479         struct timespec delta, new_wall_to;
480         u64 exp = 0;
481         int do_notify = 1;
482
483         spin_lock_irqsave(&timr->it_lock, flags);
484         set_timer_inactive(timr);
485         if (!list_empty(&timr->it.real.abs_timer_entry)) {
486                 spin_lock(&abs_list.lock);
487                 do {
488                         seq = read_seqbegin(&xtime_lock);
489                         new_wall_to =   wall_to_monotonic;
490                 } while (read_seqretry(&xtime_lock, seq));
491                 set_normalized_timespec(&delta,
492                                         new_wall_to.tv_sec -
493                                         timr->it.real.wall_to_prev.tv_sec,
494                                         new_wall_to.tv_nsec -
495                                         timr->it.real.wall_to_prev.tv_nsec);
496                 if (likely((delta.tv_sec | delta.tv_nsec ) == 0)) {
497                         /* do nothing, timer is on time */
498                 } else if (delta.tv_sec < 0) {
499                         /* do nothing, timer is already late */
500                 } else {
501                         /* timer is early due to a clock set */
502                         tstojiffie(&delta,
503                                    posix_clocks[timr->it_clock].res,
504                                    &exp);
505                         timr->it.real.wall_to_prev = new_wall_to;
506                         timr->it.real.timer.expires += exp;
507                         add_timer(&timr->it.real.timer);
508                         do_notify = 0;
509                 }
510                 spin_unlock(&abs_list.lock);
511
512         }
513         if (do_notify)  {
514                 int si_private=0;
515
516                 if (timr->it.real.incr)
517                         si_private = ++timr->it_requeue_pending;
518                 else {
519                         remove_from_abslist(timr);
520                 }
521
522                 if (posix_timer_event(timr, si_private))
523                         /*
524                          * signal was not sent because of sig_ignor
525                          * we will not get a call back to restart it AND
526                          * it should be restarted.
527                          */
528                         schedule_next_timer(timr);
529         }
530         unlock_timer(timr, flags); /* hold thru abs lock to keep irq off */
531 }
532
533
534 static inline struct task_struct * good_sigevent(sigevent_t * event)
535 {
536         struct task_struct *rtn = current->group_leader;
537
538         if ((event->sigev_notify & SIGEV_THREAD_ID ) &&
539                 (!(rtn = find_task_by_real_pid(event->sigev_notify_thread_id)) ||
540                  rtn->tgid != current->tgid ||
541                  (event->sigev_notify & ~SIGEV_THREAD_ID) != SIGEV_SIGNAL))
542                 return NULL;
543
544         if (((event->sigev_notify & ~SIGEV_THREAD_ID) != SIGEV_NONE) &&
545             ((event->sigev_signo <= 0) || (event->sigev_signo > SIGRTMAX)))
546                 return NULL;
547
548         return rtn;
549 }
550
551 void register_posix_clock(clockid_t clock_id, struct k_clock *new_clock)
552 {
553         if ((unsigned) clock_id >= MAX_CLOCKS) {
554                 printk("POSIX clock register failed for clock_id %d\n",
555                        clock_id);
556                 return;
557         }
558
559         posix_clocks[clock_id] = *new_clock;
560 }
561 EXPORT_SYMBOL_GPL(register_posix_clock);
562
563 static struct k_itimer * alloc_posix_timer(void)
564 {
565         struct k_itimer *tmr;
566         tmr = kmem_cache_alloc(posix_timers_cache, GFP_KERNEL);
567         if (!tmr)
568                 return tmr;
569         memset(tmr, 0, sizeof (struct k_itimer));
570         if (unlikely(!(tmr->sigq = sigqueue_alloc()))) {
571                 kmem_cache_free(posix_timers_cache, tmr);
572                 tmr = NULL;
573         }
574         return tmr;
575 }
576
577 #define IT_ID_SET       1
578 #define IT_ID_NOT_SET   0
579 static void release_posix_timer(struct k_itimer *tmr, int it_id_set)
580 {
581         if (it_id_set) {
582                 unsigned long flags;
583                 spin_lock_irqsave(&idr_lock, flags);
584                 idr_remove(&posix_timers_id, tmr->it_id);
585                 spin_unlock_irqrestore(&idr_lock, flags);
586         }
587         sigqueue_free(tmr->sigq);
588         if (unlikely(tmr->it_process) &&
589             tmr->it_sigev_notify == (SIGEV_SIGNAL|SIGEV_THREAD_ID))
590                 put_task_struct(tmr->it_process);
591         kmem_cache_free(posix_timers_cache, tmr);
592 }
593
594 /* Create a POSIX.1b interval timer. */
595
596 asmlinkage long
597 sys_timer_create(clockid_t which_clock,
598                  struct sigevent __user *timer_event_spec,
599                  timer_t __user * created_timer_id)
600 {
601         int error = 0;
602         struct k_itimer *new_timer = NULL;
603         int new_timer_id;
604         struct task_struct *process = NULL;
605         unsigned long flags;
606         sigevent_t event;
607         int it_id_set = IT_ID_NOT_SET;
608
609         if (invalid_clockid(which_clock))
610                 return -EINVAL;
611
612         new_timer = alloc_posix_timer();
613         if (unlikely(!new_timer))
614                 return -EAGAIN;
615
616         spin_lock_init(&new_timer->it_lock);
617  retry:
618         if (unlikely(!idr_pre_get(&posix_timers_id, GFP_KERNEL))) {
619                 error = -EAGAIN;
620                 goto out;
621         }
622         spin_lock_irq(&idr_lock);
623         error = idr_get_new(&posix_timers_id,
624                             (void *) new_timer,
625                             &new_timer_id);
626         spin_unlock_irq(&idr_lock);
627         if (error == -EAGAIN)
628                 goto retry;
629         else if (error) {
630                 /*
631                  * Wierd looking, but we return EAGAIN if the IDR is
632                  * full (proper POSIX return value for this)
633                  */
634                 error = -EAGAIN;
635                 goto out;
636         }
637
638         it_id_set = IT_ID_SET;
639         new_timer->it_id = (timer_t) new_timer_id;
640         new_timer->it_clock = which_clock;
641         new_timer->it_overrun = -1;
642         error = CLOCK_DISPATCH(which_clock, timer_create, (new_timer));
643         if (error)
644                 goto out;
645
646         /*
647          * return the timer_id now.  The next step is hard to
648          * back out if there is an error.
649          */
650         if (copy_to_user(created_timer_id,
651                          &new_timer_id, sizeof (new_timer_id))) {
652                 error = -EFAULT;
653                 goto out;
654         }
655         if (timer_event_spec) {
656                 if (copy_from_user(&event, timer_event_spec, sizeof (event))) {
657                         error = -EFAULT;
658                         goto out;
659                 }
660                 new_timer->it_sigev_notify = event.sigev_notify;
661                 new_timer->it_sigev_signo = event.sigev_signo;
662                 new_timer->it_sigev_value = event.sigev_value;
663
664                 read_lock(&tasklist_lock);
665                 if ((process = good_sigevent(&event))) {
666                         /*
667                          * We may be setting up this process for another
668                          * thread.  It may be exiting.  To catch this
669                          * case the we check the PF_EXITING flag.  If
670                          * the flag is not set, the siglock will catch
671                          * him before it is too late (in exit_itimers).
672                          *
673                          * The exec case is a bit more invloved but easy
674                          * to code.  If the process is in our thread
675                          * group (and it must be or we would not allow
676                          * it here) and is doing an exec, it will cause
677                          * us to be killed.  In this case it will wait
678                          * for us to die which means we can finish this
679                          * linkage with our last gasp. I.e. no code :)
680                          */
681                         spin_lock_irqsave(&process->sighand->siglock, flags);
682                         if (!(process->flags & PF_EXITING)) {
683                                 new_timer->it_process = process;
684                                 list_add(&new_timer->list,
685                                          &process->signal->posix_timers);
686                                 spin_unlock_irqrestore(&process->sighand->siglock, flags);
687                                 if (new_timer->it_sigev_notify == (SIGEV_SIGNAL|SIGEV_THREAD_ID))
688                                         get_task_struct(process);
689                         } else {
690                                 spin_unlock_irqrestore(&process->sighand->siglock, flags);
691                                 process = NULL;
692                         }
693                 }
694                 read_unlock(&tasklist_lock);
695                 if (!process) {
696                         error = -EINVAL;
697                         goto out;
698                 }
699         } else {
700                 new_timer->it_sigev_notify = SIGEV_SIGNAL;
701                 new_timer->it_sigev_signo = SIGALRM;
702                 new_timer->it_sigev_value.sival_int = new_timer->it_id;
703                 process = current->group_leader;
704                 spin_lock_irqsave(&process->sighand->siglock, flags);
705                 new_timer->it_process = process;
706                 list_add(&new_timer->list, &process->signal->posix_timers);
707                 spin_unlock_irqrestore(&process->sighand->siglock, flags);
708         }
709
710         /*
711          * In the case of the timer belonging to another task, after
712          * the task is unlocked, the timer is owned by the other task
713          * and may cease to exist at any time.  Don't use or modify
714          * new_timer after the unlock call.
715          */
716
717 out:
718         if (error)
719                 release_posix_timer(new_timer, it_id_set);
720
721         return error;
722 }
723
724 /*
725  * good_timespec
726  *
727  * This function checks the elements of a timespec structure.
728  *
729  * Arguments:
730  * ts        : Pointer to the timespec structure to check
731  *
732  * Return value:
733  * If a NULL pointer was passed in, or the tv_nsec field was less than 0
734  * or greater than NSEC_PER_SEC, or the tv_sec field was less than 0,
735  * this function returns 0. Otherwise it returns 1.
736  */
737 static int good_timespec(const struct timespec *ts)
738 {
739         if ((!ts) || (ts->tv_sec < 0) ||
740                         ((unsigned) ts->tv_nsec >= NSEC_PER_SEC))
741                 return 0;
742         return 1;
743 }
744
745 /*
746  * Locking issues: We need to protect the result of the id look up until
747  * we get the timer locked down so it is not deleted under us.  The
748  * removal is done under the idr spinlock so we use that here to bridge
749  * the find to the timer lock.  To avoid a dead lock, the timer id MUST
750  * be release with out holding the timer lock.
751  */
752 static struct k_itimer * lock_timer(timer_t timer_id, unsigned long *flags)
753 {
754         struct k_itimer *timr;
755         /*
756          * Watch out here.  We do a irqsave on the idr_lock and pass the
757          * flags part over to the timer lock.  Must not let interrupts in
758          * while we are moving the lock.
759          */
760
761         spin_lock_irqsave(&idr_lock, *flags);
762         timr = (struct k_itimer *) idr_find(&posix_timers_id, (int) timer_id);
763         if (timr) {
764                 spin_lock(&timr->it_lock);
765                 spin_unlock(&idr_lock);
766
767                 if ((timr->it_id != timer_id) || !(timr->it_process) ||
768                                 timr->it_process->tgid != current->tgid) {
769                         unlock_timer(timr, *flags);
770                         timr = NULL;
771                 }
772         } else
773                 spin_unlock_irqrestore(&idr_lock, *flags);
774
775         return timr;
776 }
777
778 /*
779  * Get the time remaining on a POSIX.1b interval timer.  This function
780  * is ALWAYS called with spin_lock_irq on the timer, thus it must not
781  * mess with irq.
782  *
783  * We have a couple of messes to clean up here.  First there is the case
784  * of a timer that has a requeue pending.  These timers should appear to
785  * be in the timer list with an expiry as if we were to requeue them
786  * now.
787  *
788  * The second issue is the SIGEV_NONE timer which may be active but is
789  * not really ever put in the timer list (to save system resources).
790  * This timer may be expired, and if so, we will do it here.  Otherwise
791  * it is the same as a requeue pending timer WRT to what we should
792  * report.
793  */
794 static void
795 common_timer_get(struct k_itimer *timr, struct itimerspec *cur_setting)
796 {
797         unsigned long expires;
798         struct now_struct now;
799
800         do
801                 expires = timr->it.real.timer.expires;
802         while ((volatile long) (timr->it.real.timer.expires) != expires);
803
804         posix_get_now(&now);
805
806         if (expires &&
807             ((timr->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE) &&
808             !timr->it.real.incr &&
809             posix_time_before(&timr->it.real.timer, &now))
810                 timr->it.real.timer.expires = expires = 0;
811         if (expires) {
812                 if (timr->it_requeue_pending & REQUEUE_PENDING ||
813                     (timr->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE) {
814                         posix_bump_timer(timr, now);
815                         expires = timr->it.real.timer.expires;
816                 }
817                 else
818                         if (!timer_pending(&timr->it.real.timer))
819                                 expires = 0;
820                 if (expires)
821                         expires -= now.jiffies;
822         }
823         jiffies_to_timespec(expires, &cur_setting->it_value);
824         jiffies_to_timespec(timr->it.real.incr, &cur_setting->it_interval);
825
826         if (cur_setting->it_value.tv_sec < 0) {
827                 cur_setting->it_value.tv_nsec = 1;
828                 cur_setting->it_value.tv_sec = 0;
829         }
830 }
831
832 /* Get the time remaining on a POSIX.1b interval timer. */
833 asmlinkage long
834 sys_timer_gettime(timer_t timer_id, struct itimerspec __user *setting)
835 {
836         struct k_itimer *timr;
837         struct itimerspec cur_setting;
838         unsigned long flags;
839
840         timr = lock_timer(timer_id, &flags);
841         if (!timr)
842                 return -EINVAL;
843
844         CLOCK_DISPATCH(timr->it_clock, timer_get, (timr, &cur_setting));
845
846         unlock_timer(timr, flags);
847
848         if (copy_to_user(setting, &cur_setting, sizeof (cur_setting)))
849                 return -EFAULT;
850
851         return 0;
852 }
853 /*
854  * Get the number of overruns of a POSIX.1b interval timer.  This is to
855  * be the overrun of the timer last delivered.  At the same time we are
856  * accumulating overruns on the next timer.  The overrun is frozen when
857  * the signal is delivered, either at the notify time (if the info block
858  * is not queued) or at the actual delivery time (as we are informed by
859  * the call back to do_schedule_next_timer().  So all we need to do is
860  * to pick up the frozen overrun.
861  */
862
863 asmlinkage long
864 sys_timer_getoverrun(timer_t timer_id)
865 {
866         struct k_itimer *timr;
867         int overrun;
868         long flags;
869
870         timr = lock_timer(timer_id, &flags);
871         if (!timr)
872                 return -EINVAL;
873
874         overrun = timr->it_overrun_last;
875         unlock_timer(timr, flags);
876
877         return overrun;
878 }
879 /*
880  * Adjust for absolute time
881  *
882  * If absolute time is given and it is not CLOCK_MONOTONIC, we need to
883  * adjust for the offset between the timer clock (CLOCK_MONOTONIC) and
884  * what ever clock he is using.
885  *
886  * If it is relative time, we need to add the current (CLOCK_MONOTONIC)
887  * time to it to get the proper time for the timer.
888  */
889 static int adjust_abs_time(struct k_clock *clock, struct timespec *tp, 
890                            int abs, u64 *exp, struct timespec *wall_to)
891 {
892         struct timespec now;
893         struct timespec oc = *tp;
894         u64 jiffies_64_f;
895         int rtn =0;
896
897         if (abs) {
898                 /*
899                  * The mask pick up the 4 basic clocks 
900                  */
901                 if (!((clock - &posix_clocks[0]) & ~CLOCKS_MASK)) {
902                         jiffies_64_f = do_posix_clock_monotonic_gettime_parts(
903                                 &now,  wall_to);
904                         /*
905                          * If we are doing a MONOTONIC clock
906                          */
907                         if((clock - &posix_clocks[0]) & CLOCKS_MONO){
908                                 now.tv_sec += wall_to->tv_sec;
909                                 now.tv_nsec += wall_to->tv_nsec;
910                         }
911                 } else {
912                         /*
913                          * Not one of the basic clocks
914                          */
915                         clock->clock_get(clock - posix_clocks, &now);
916                         jiffies_64_f = get_jiffies_64();
917                 }
918                 /*
919                  * Take away now to get delta
920                  */
921                 oc.tv_sec -= now.tv_sec;
922                 oc.tv_nsec -= now.tv_nsec;
923                 /*
924                  * Normalize...
925                  */
926                 while ((oc.tv_nsec - NSEC_PER_SEC) >= 0) {
927                         oc.tv_nsec -= NSEC_PER_SEC;
928                         oc.tv_sec++;
929                 }
930                 while ((oc.tv_nsec) < 0) {
931                         oc.tv_nsec += NSEC_PER_SEC;
932                         oc.tv_sec--;
933                 }
934         }else{
935                 jiffies_64_f = get_jiffies_64();
936         }
937         /*
938          * Check if the requested time is prior to now (if so set now)
939          */
940         if (oc.tv_sec < 0)
941                 oc.tv_sec = oc.tv_nsec = 0;
942
943         if (oc.tv_sec | oc.tv_nsec)
944                 set_normalized_timespec(&oc, oc.tv_sec,
945                                         oc.tv_nsec + clock->res);
946         tstojiffie(&oc, clock->res, exp);
947
948         /*
949          * Check if the requested time is more than the timer code
950          * can handle (if so we error out but return the value too).
951          */
952         if (*exp > ((u64)MAX_JIFFY_OFFSET))
953                         /*
954                          * This is a considered response, not exactly in
955                          * line with the standard (in fact it is silent on
956                          * possible overflows).  We assume such a large 
957                          * value is ALMOST always a programming error and
958                          * try not to compound it by setting a really dumb
959                          * value.
960                          */
961                         rtn = -EINVAL;
962         /*
963          * return the actual jiffies expire time, full 64 bits
964          */
965         *exp += jiffies_64_f;
966         return rtn;
967 }
968
969 /* Set a POSIX.1b interval timer. */
970 /* timr->it_lock is taken. */
971 static inline int
972 common_timer_set(struct k_itimer *timr, int flags,
973                  struct itimerspec *new_setting, struct itimerspec *old_setting)
974 {
975         struct k_clock *clock = &posix_clocks[timr->it_clock];
976         u64 expire_64;
977
978         if (old_setting)
979                 common_timer_get(timr, old_setting);
980
981         /* disable the timer */
982         timr->it.real.incr = 0;
983         /*
984          * careful here.  If smp we could be in the "fire" routine which will
985          * be spinning as we hold the lock.  But this is ONLY an SMP issue.
986          */
987 #ifdef CONFIG_SMP
988         if (timer_active(timr) && !del_timer(&timr->it.real.timer))
989                 /*
990                  * It can only be active if on an other cpu.  Since
991                  * we have cleared the interval stuff above, it should
992                  * clear once we release the spin lock.  Of course once
993                  * we do that anything could happen, including the
994                  * complete melt down of the timer.  So return with
995                  * a "retry" exit status.
996                  */
997                 return TIMER_RETRY;
998
999         set_timer_inactive(timr);
1000 #else
1001         del_timer(&timr->it.real.timer);
1002 #endif
1003         remove_from_abslist(timr);
1004
1005         timr->it_requeue_pending = (timr->it_requeue_pending + 2) & 
1006                 ~REQUEUE_PENDING;
1007         timr->it_overrun_last = 0;
1008         timr->it_overrun = -1;
1009         /*
1010          *switch off the timer when it_value is zero
1011          */
1012         if (!new_setting->it_value.tv_sec && !new_setting->it_value.tv_nsec) {
1013                 timr->it.real.timer.expires = 0;
1014                 return 0;
1015         }
1016
1017         if (adjust_abs_time(clock,
1018                             &new_setting->it_value, flags & TIMER_ABSTIME, 
1019                             &expire_64, &(timr->it.real.wall_to_prev))) {
1020                 return -EINVAL;
1021         }
1022         timr->it.real.timer.expires = (unsigned long)expire_64;
1023         tstojiffie(&new_setting->it_interval, clock->res, &expire_64);
1024         timr->it.real.incr = (unsigned long)expire_64;
1025
1026         /*
1027          * We do not even queue SIGEV_NONE timers!  But we do put them
1028          * in the abs list so we can do that right.
1029          */
1030         if (((timr->it_sigev_notify & ~SIGEV_THREAD_ID) != SIGEV_NONE))
1031                 add_timer(&timr->it.real.timer);
1032
1033         if (flags & TIMER_ABSTIME && clock->abs_struct) {
1034                 spin_lock(&clock->abs_struct->lock);
1035                 list_add_tail(&(timr->it.real.abs_timer_entry),
1036                               &(clock->abs_struct->list));
1037                 spin_unlock(&clock->abs_struct->lock);
1038         }
1039         return 0;
1040 }
1041
1042 /* Set a POSIX.1b interval timer */
1043 asmlinkage long
1044 sys_timer_settime(timer_t timer_id, int flags,
1045                   const struct itimerspec __user *new_setting,
1046                   struct itimerspec __user *old_setting)
1047 {
1048         struct k_itimer *timr;
1049         struct itimerspec new_spec, old_spec;
1050         int error = 0;
1051         long flag;
1052         struct itimerspec *rtn = old_setting ? &old_spec : NULL;
1053
1054         if (!new_setting)
1055                 return -EINVAL;
1056
1057         if (copy_from_user(&new_spec, new_setting, sizeof (new_spec)))
1058                 return -EFAULT;
1059
1060         if ((!good_timespec(&new_spec.it_interval)) ||
1061             (!good_timespec(&new_spec.it_value)))
1062                 return -EINVAL;
1063 retry:
1064         timr = lock_timer(timer_id, &flag);
1065         if (!timr)
1066                 return -EINVAL;
1067
1068         error = CLOCK_DISPATCH(timr->it_clock, timer_set,
1069                                (timr, flags, &new_spec, rtn));
1070
1071         unlock_timer(timr, flag);
1072         if (error == TIMER_RETRY) {
1073                 rtn = NULL;     // We already got the old time...
1074                 goto retry;
1075         }
1076
1077         if (old_setting && !error && copy_to_user(old_setting,
1078                                                   &old_spec, sizeof (old_spec)))
1079                 error = -EFAULT;
1080
1081         return error;
1082 }
1083
1084 static inline int common_timer_del(struct k_itimer *timer)
1085 {
1086         timer->it.real.incr = 0;
1087 #ifdef CONFIG_SMP
1088         if (timer_active(timer) && !del_timer(&timer->it.real.timer))
1089                 /*
1090                  * It can only be active if on an other cpu.  Since
1091                  * we have cleared the interval stuff above, it should
1092                  * clear once we release the spin lock.  Of course once
1093                  * we do that anything could happen, including the
1094                  * complete melt down of the timer.  So return with
1095                  * a "retry" exit status.
1096                  */
1097                 return TIMER_RETRY;
1098 #else
1099         del_timer(&timer->it.real.timer);
1100 #endif
1101         remove_from_abslist(timer);
1102
1103         return 0;
1104 }
1105
1106 static inline int timer_delete_hook(struct k_itimer *timer)
1107 {
1108         return CLOCK_DISPATCH(timer->it_clock, timer_del, (timer));
1109 }
1110
1111 /* Delete a POSIX.1b interval timer. */
1112 asmlinkage long
1113 sys_timer_delete(timer_t timer_id)
1114 {
1115         struct k_itimer *timer;
1116         long flags;
1117
1118 #ifdef CONFIG_SMP
1119         int error;
1120 retry_delete:
1121 #endif
1122         timer = lock_timer(timer_id, &flags);
1123         if (!timer)
1124                 return -EINVAL;
1125
1126 #ifdef CONFIG_SMP
1127         error = timer_delete_hook(timer);
1128
1129         if (error == TIMER_RETRY) {
1130                 unlock_timer(timer, flags);
1131                 goto retry_delete;
1132         }
1133 #else
1134         timer_delete_hook(timer);
1135 #endif
1136         spin_lock(&current->sighand->siglock);
1137         list_del(&timer->list);
1138         spin_unlock(&current->sighand->siglock);
1139         /*
1140          * This keeps any tasks waiting on the spin lock from thinking
1141          * they got something (see the lock code above).
1142          */
1143         if (timer->it_process) {
1144                 if (timer->it_sigev_notify == (SIGEV_SIGNAL|SIGEV_THREAD_ID))
1145                         put_task_struct(timer->it_process);
1146                 timer->it_process = NULL;
1147         }
1148         unlock_timer(timer, flags);
1149         release_posix_timer(timer, IT_ID_SET);
1150         return 0;
1151 }
1152 /*
1153  * return timer owned by the process, used by exit_itimers
1154  */
1155 static inline void itimer_delete(struct k_itimer *timer)
1156 {
1157         unsigned long flags;
1158
1159 #ifdef CONFIG_SMP
1160         int error;
1161 retry_delete:
1162 #endif
1163         spin_lock_irqsave(&timer->it_lock, flags);
1164
1165 #ifdef CONFIG_SMP
1166         error = timer_delete_hook(timer);
1167
1168         if (error == TIMER_RETRY) {
1169                 unlock_timer(timer, flags);
1170                 goto retry_delete;
1171         }
1172 #else
1173         timer_delete_hook(timer);
1174 #endif
1175         list_del(&timer->list);
1176         /*
1177          * This keeps any tasks waiting on the spin lock from thinking
1178          * they got something (see the lock code above).
1179          */
1180         if (timer->it_process) {
1181                 if (timer->it_sigev_notify == (SIGEV_SIGNAL|SIGEV_THREAD_ID))
1182                         put_task_struct(timer->it_process);
1183                 timer->it_process = NULL;
1184         }
1185         unlock_timer(timer, flags);
1186         release_posix_timer(timer, IT_ID_SET);
1187 }
1188
1189 /*
1190  * This is called by __exit_signal, only when there are no more
1191  * references to the shared signal_struct.
1192  */
1193 void exit_itimers(struct signal_struct *sig)
1194 {
1195         struct k_itimer *tmr;
1196
1197         while (!list_empty(&sig->posix_timers)) {
1198                 tmr = list_entry(sig->posix_timers.next, struct k_itimer, list);
1199                 itimer_delete(tmr);
1200         }
1201         del_timer_sync(&sig->real_timer);
1202 }
1203
1204 /*
1205  * And now for the "clock" calls
1206  *
1207  * These functions are called both from timer functions (with the timer
1208  * spin_lock_irq() held and from clock calls with no locking.   They must
1209  * use the save flags versions of locks.
1210  */
1211
1212 /*
1213  * We do ticks here to avoid the irq lock ( they take sooo long).
1214  * The seqlock is great here.  Since we a reader, we don't really care
1215  * if we are interrupted since we don't take lock that will stall us or
1216  * any other cpu. Voila, no irq lock is needed.
1217  *
1218  */
1219
1220 static u64 do_posix_clock_monotonic_gettime_parts(
1221         struct timespec *tp, struct timespec *mo)
1222 {
1223         u64 jiff;
1224         unsigned int seq;
1225
1226         do {
1227                 seq = read_seqbegin(&xtime_lock);
1228                 getnstimeofday(tp);
1229                 *mo = wall_to_monotonic;
1230                 jiff = jiffies_64;
1231
1232         } while(read_seqretry(&xtime_lock, seq));
1233
1234         return jiff;
1235 }
1236
1237 static int do_posix_clock_monotonic_get(clockid_t clock, struct timespec *tp)
1238 {
1239         struct timespec wall_to_mono;
1240
1241         do_posix_clock_monotonic_gettime_parts(tp, &wall_to_mono);
1242
1243         tp->tv_sec += wall_to_mono.tv_sec;
1244         tp->tv_nsec += wall_to_mono.tv_nsec;
1245
1246         if ((tp->tv_nsec - NSEC_PER_SEC) > 0) {
1247                 tp->tv_nsec -= NSEC_PER_SEC;
1248                 tp->tv_sec++;
1249         }
1250         return 0;
1251 }
1252
1253 int do_posix_clock_monotonic_gettime(struct timespec *tp)
1254 {
1255         return do_posix_clock_monotonic_get(CLOCK_MONOTONIC, tp);
1256 }
1257
1258 int do_posix_clock_nosettime(clockid_t clockid, struct timespec *tp)
1259 {
1260         return -EINVAL;
1261 }
1262 EXPORT_SYMBOL_GPL(do_posix_clock_nosettime);
1263
1264 int do_posix_clock_notimer_create(struct k_itimer *timer)
1265 {
1266         return -EINVAL;
1267 }
1268 EXPORT_SYMBOL_GPL(do_posix_clock_notimer_create);
1269
1270 int do_posix_clock_nonanosleep(clockid_t clock, int flags, struct timespec *t)
1271 {
1272 #ifndef ENOTSUP
1273         return -EOPNOTSUPP;     /* aka ENOTSUP in userland for POSIX */
1274 #else  /*  parisc does define it separately.  */
1275         return -ENOTSUP;
1276 #endif
1277 }
1278 EXPORT_SYMBOL_GPL(do_posix_clock_nonanosleep);
1279
1280 asmlinkage long
1281 sys_clock_settime(clockid_t which_clock, const struct timespec __user *tp)
1282 {
1283         struct timespec new_tp;
1284
1285         if (invalid_clockid(which_clock))
1286                 return -EINVAL;
1287         if (copy_from_user(&new_tp, tp, sizeof (*tp)))
1288                 return -EFAULT;
1289
1290         return CLOCK_DISPATCH(which_clock, clock_set, (which_clock, &new_tp));
1291 }
1292
1293 asmlinkage long
1294 sys_clock_gettime(clockid_t which_clock, struct timespec __user *tp)
1295 {
1296         struct timespec kernel_tp;
1297         int error;
1298
1299         if (invalid_clockid(which_clock))
1300                 return -EINVAL;
1301         error = CLOCK_DISPATCH(which_clock, clock_get,
1302                                (which_clock, &kernel_tp));
1303         if (!error && copy_to_user(tp, &kernel_tp, sizeof (kernel_tp)))
1304                 error = -EFAULT;
1305
1306         return error;
1307
1308 }
1309
1310 asmlinkage long
1311 sys_clock_getres(clockid_t which_clock, struct timespec __user *tp)
1312 {
1313         struct timespec rtn_tp;
1314         int error;
1315
1316         if (invalid_clockid(which_clock))
1317                 return -EINVAL;
1318
1319         error = CLOCK_DISPATCH(which_clock, clock_getres,
1320                                (which_clock, &rtn_tp));
1321
1322         if (!error && tp && copy_to_user(tp, &rtn_tp, sizeof (rtn_tp))) {
1323                 error = -EFAULT;
1324         }
1325
1326         return error;
1327 }
1328
1329 static void nanosleep_wake_up(unsigned long __data)
1330 {
1331         struct task_struct *p = (struct task_struct *) __data;
1332
1333         wake_up_process(p);
1334 }
1335
1336 /*
1337  * The standard says that an absolute nanosleep call MUST wake up at
1338  * the requested time in spite of clock settings.  Here is what we do:
1339  * For each nanosleep call that needs it (only absolute and not on
1340  * CLOCK_MONOTONIC* (as it can not be set)) we thread a little structure
1341  * into the "nanosleep_abs_list".  All we need is the task_struct pointer.
1342  * When ever the clock is set we just wake up all those tasks.   The rest
1343  * is done by the while loop in clock_nanosleep().
1344  *
1345  * On locking, clock_was_set() is called from update_wall_clock which
1346  * holds (or has held for it) a write_lock_irq( xtime_lock) and is
1347  * called from the timer bh code.  Thus we need the irq save locks.
1348  *
1349  * Also, on the call from update_wall_clock, that is done as part of a
1350  * softirq thing.  We don't want to delay the system that much (possibly
1351  * long list of timers to fix), so we defer that work to keventd.
1352  */
1353
1354 static DECLARE_WAIT_QUEUE_HEAD(nanosleep_abs_wqueue);
1355 static DECLARE_WORK(clock_was_set_work, (void(*)(void*))clock_was_set, NULL);
1356
1357 static DECLARE_MUTEX(clock_was_set_lock);
1358
1359 void clock_was_set(void)
1360 {
1361         struct k_itimer *timr;
1362         struct timespec new_wall_to;
1363         LIST_HEAD(cws_list);
1364         unsigned long seq;
1365
1366
1367         if (unlikely(in_interrupt())) {
1368                 schedule_work(&clock_was_set_work);
1369                 return;
1370         }
1371         wake_up_all(&nanosleep_abs_wqueue);
1372
1373         /*
1374          * Check if there exist TIMER_ABSTIME timers to correct.
1375          *
1376          * Notes on locking: This code is run in task context with irq
1377          * on.  We CAN be interrupted!  All other usage of the abs list
1378          * lock is under the timer lock which holds the irq lock as
1379          * well.  We REALLY don't want to scan the whole list with the
1380          * interrupt system off, AND we would like a sequence lock on
1381          * this code as well.  Since we assume that the clock will not
1382          * be set often, it seems ok to take and release the irq lock
1383          * for each timer.  In fact add_timer will do this, so this is
1384          * not an issue.  So we know when we are done, we will move the
1385          * whole list to a new location.  Then as we process each entry,
1386          * we will move it to the actual list again.  This way, when our
1387          * copy is empty, we are done.  We are not all that concerned
1388          * about preemption so we will use a semaphore lock to protect
1389          * aginst reentry.  This way we will not stall another
1390          * processor.  It is possible that this may delay some timers
1391          * that should have expired, given the new clock, but even this
1392          * will be minimal as we will always update to the current time,
1393          * even if it was set by a task that is waiting for entry to
1394          * this code.  Timers that expire too early will be caught by
1395          * the expire code and restarted.
1396
1397          * Absolute timers that repeat are left in the abs list while
1398          * waiting for the task to pick up the signal.  This means we
1399          * may find timers that are not in the "add_timer" list, but are
1400          * in the abs list.  We do the same thing for these, save
1401          * putting them back in the "add_timer" list.  (Note, these are
1402          * left in the abs list mainly to indicate that they are
1403          * ABSOLUTE timers, a fact that is used by the re-arm code, and
1404          * for which we have no other flag.)
1405
1406          */
1407
1408         down(&clock_was_set_lock);
1409         spin_lock_irq(&abs_list.lock);
1410         list_splice_init(&abs_list.list, &cws_list);
1411         spin_unlock_irq(&abs_list.lock);
1412         do {
1413                 do {
1414                         seq = read_seqbegin(&xtime_lock);
1415                         new_wall_to =   wall_to_monotonic;
1416                 } while (read_seqretry(&xtime_lock, seq));
1417
1418                 spin_lock_irq(&abs_list.lock);
1419                 if (list_empty(&cws_list)) {
1420                         spin_unlock_irq(&abs_list.lock);
1421                         break;
1422                 }
1423                 timr = list_entry(cws_list.next, struct k_itimer,
1424                                   it.real.abs_timer_entry);
1425
1426                 list_del_init(&timr->it.real.abs_timer_entry);
1427                 if (add_clockset_delta(timr, &new_wall_to) &&
1428                     del_timer(&timr->it.real.timer))  /* timer run yet? */
1429                         add_timer(&timr->it.real.timer);
1430                 list_add(&timr->it.real.abs_timer_entry, &abs_list.list);
1431                 spin_unlock_irq(&abs_list.lock);
1432         } while (1);
1433
1434         up(&clock_was_set_lock);
1435 }
1436
1437 long clock_nanosleep_restart(struct restart_block *restart_block);
1438
1439 asmlinkage long
1440 sys_clock_nanosleep(clockid_t which_clock, int flags,
1441                     const struct timespec __user *rqtp,
1442                     struct timespec __user *rmtp)
1443 {
1444         struct timespec t;
1445         struct restart_block *restart_block =
1446             &(current_thread_info()->restart_block);
1447         int ret;
1448
1449         if (invalid_clockid(which_clock))
1450                 return -EINVAL;
1451
1452         if (copy_from_user(&t, rqtp, sizeof (struct timespec)))
1453                 return -EFAULT;
1454
1455         if ((unsigned) t.tv_nsec >= NSEC_PER_SEC || t.tv_sec < 0)
1456                 return -EINVAL;
1457
1458         /*
1459          * Do this here as nsleep function does not have the real address.
1460          */
1461         restart_block->arg1 = (unsigned long)rmtp;
1462
1463         ret = CLOCK_DISPATCH(which_clock, nsleep, (which_clock, flags, &t));
1464
1465         if ((ret == -ERESTART_RESTARTBLOCK) && rmtp &&
1466                                         copy_to_user(rmtp, &t, sizeof (t)))
1467                 return -EFAULT;
1468         return ret;
1469 }
1470
1471
1472 static int common_nsleep(clockid_t which_clock,
1473                          int flags, struct timespec *tsave)
1474 {
1475         struct timespec t, dum;
1476         struct timer_list new_timer;
1477         DECLARE_WAITQUEUE(abs_wqueue, current);
1478         u64 rq_time = (u64)0;
1479         s64 left;
1480         int abs;
1481         struct restart_block *restart_block =
1482             &current_thread_info()->restart_block;
1483
1484         abs_wqueue.flags = 0;
1485         init_timer(&new_timer);
1486         new_timer.expires = 0;
1487         new_timer.data = (unsigned long) current;
1488         new_timer.function = nanosleep_wake_up;
1489         abs = flags & TIMER_ABSTIME;
1490
1491         if (restart_block->fn == clock_nanosleep_restart) {
1492                 /*
1493                  * Interrupted by a non-delivered signal, pick up remaining
1494                  * time and continue.  Remaining time is in arg2 & 3.
1495                  */
1496                 restart_block->fn = do_no_restart_syscall;
1497
1498                 rq_time = restart_block->arg3;
1499                 rq_time = (rq_time << 32) + restart_block->arg2;
1500                 if (!rq_time)
1501                         return -EINTR;
1502                 left = rq_time - get_jiffies_64();
1503                 if (left <= (s64)0)
1504                         return 0;       /* Already passed */
1505         }
1506
1507         if (abs && (posix_clocks[which_clock].clock_get !=
1508                             posix_clocks[CLOCK_MONOTONIC].clock_get))
1509                 add_wait_queue(&nanosleep_abs_wqueue, &abs_wqueue);
1510
1511         do {
1512                 t = *tsave;
1513                 if (abs || !rq_time) {
1514                         adjust_abs_time(&posix_clocks[which_clock], &t, abs,
1515                                         &rq_time, &dum);
1516                 }
1517
1518                 left = rq_time - get_jiffies_64();
1519                 if (left >= (s64)MAX_JIFFY_OFFSET)
1520                         left = (s64)MAX_JIFFY_OFFSET;
1521                 if (left < (s64)0)
1522                         break;
1523
1524                 new_timer.expires = jiffies + left;
1525                 __set_current_state(TASK_INTERRUPTIBLE);
1526                 add_timer(&new_timer);
1527
1528                 schedule();
1529
1530                 del_timer_sync(&new_timer);
1531                 left = rq_time - get_jiffies_64();
1532         } while (left > (s64)0 && !test_thread_flag(TIF_SIGPENDING));
1533
1534         if (abs_wqueue.task_list.next)
1535                 finish_wait(&nanosleep_abs_wqueue, &abs_wqueue);
1536
1537         if (left > (s64)0) {
1538
1539                 /*
1540                  * Always restart abs calls from scratch to pick up any
1541                  * clock shifting that happened while we are away.
1542                  */
1543                 if (abs)
1544                         return -ERESTARTNOHAND;
1545
1546                 left *= TICK_NSEC;
1547                 tsave->tv_sec = div_long_long_rem(left, 
1548                                                   NSEC_PER_SEC, 
1549                                                   &tsave->tv_nsec);
1550                 /*
1551                  * Restart works by saving the time remaing in 
1552                  * arg2 & 3 (it is 64-bits of jiffies).  The other
1553                  * info we need is the clock_id (saved in arg0). 
1554                  * The sys_call interface needs the users 
1555                  * timespec return address which _it_ saves in arg1.
1556                  * Since we have cast the nanosleep call to a clock_nanosleep
1557                  * both can be restarted with the same code.
1558                  */
1559                 restart_block->fn = clock_nanosleep_restart;
1560                 restart_block->arg0 = which_clock;
1561                 /*
1562                  * Caller sets arg1
1563                  */
1564                 restart_block->arg2 = rq_time & 0xffffffffLL;
1565                 restart_block->arg3 = rq_time >> 32;
1566
1567                 return -ERESTART_RESTARTBLOCK;
1568         }
1569
1570         return 0;
1571 }
1572 /*
1573  * This will restart clock_nanosleep.
1574  */
1575 long
1576 clock_nanosleep_restart(struct restart_block *restart_block)
1577 {
1578         struct timespec t;
1579         int ret = common_nsleep(restart_block->arg0, 0, &t);
1580
1581         if ((ret == -ERESTART_RESTARTBLOCK) && restart_block->arg1 &&
1582             copy_to_user((struct timespec __user *)(restart_block->arg1), &t,
1583                          sizeof (t)))
1584                 return -EFAULT;
1585         return ret;
1586 }