select函数的实现源码

代码摘自:linux-2.6.29
sys_select -> core_sys_select -> do_select
  1. int do_select(int n, fd_set_bits *fds, struct timespec *end_time)
  2. {
  3.         ktime_t expire, *to = NULL;
  4.         struct poll_wqueues table;
  5.         poll_table *wait;
  6.         int retval, i, timed_out = 0;
  7.         unsigned long slack = 0;

  8.         rcu_read_lock();
  9.         retval = max_select_fd(n, fds);
  10.         rcu_read_unlock();

  11.         if (retval < 0)
  12.                 return retval;
  13.         n = retval;

  14.         poll_initwait(&table);
  15.         [color=Red]wait = &table.pt;[/color]
  16.         if (end_time && !end_time->tv_sec && !end_time->tv_nsec) {
  17.                 wait = NULL;
  18.                 timed_out = 1;
  19.         }

  20.         if (end_time && !timed_out)
  21.                 slack = estimate_accuracy(end_time);

  22.         retval = 0;
  23.         for (;;) {
  24.                 unsigned long *rinp, *routp, *rexp, *inp, *outp, *exp;

  25.                 inp = fds->in; outp = fds->out; exp = fds->ex;
  26.                 rinp = fds->res_in; routp = fds->res_out; rexp = fds->res_ex;

  27.                 for (i = 0; i < n; ++rinp, ++routp, ++rexp) {
  28.                         unsigned long in, out, ex, all_bits, bit = 1, mask, j;
  29.                         unsigned long res_in = 0, res_out = 0, res_ex = 0;
  30.                         const struct file_operations *f_op = NULL;
  31.                         struct file *file = NULL;

  32.                         in = *inp++; out = *outp++; ex = *exp++;
  33.                         all_bits = in | out | ex;
  34.                         if (all_bits == 0) {
  35.                                 i += __NFDBITS;
  36.                                 continue;
  37.                         }

  38.                         for (j = 0; j < __NFDBITS; ++j, ++i, bit <<= 1) {
  39.                                 int fput_needed;
  40.                                 if (i >= n)
  41.                                         break;
  42.                                 if (!(bit & all_bits))
  43.                                         continue;
  44.                                 file = fget_light(i, &fput_needed);
  45.                                 if (file) {
  46.                                         f_op = file->f_op;
  47.                                         mask = DEFAULT_POLLMASK;
  48.                                         [color=Red]if (f_op && f_op->poll)
  49.                                                 mask = (*f_op->poll)(file, retval ? NULL : wait);[/color]
  50.                                         fput_light(file, fput_needed);
  51.                                         if ((mask & POLLIN_SET) && (in & bit)) {
  52.                                                 res_in |= bit;
  53.                                                 retval++;
  54.                                         }
  55.                                         if ((mask & POLLOUT_SET) && (out & bit)) {
  56.                                                 res_out |= bit;
  57.                                                 retval++;
  58.                                         }
  59.                                         if ((mask & POLLEX_SET) && (ex & bit)) {
  60.                                                 res_ex |= bit;
  61.                                                 retval++;
  62.                                         }
  63.                                 }
  64.                         }
  65.                         if (res_in)
  66.                                 *rinp = res_in;
  67.                         if (res_out)
  68.                                 *routp = res_out;
  69.                         if (res_ex)
  70.                                 *rexp = res_ex;
  71.                         cond_resched();
  72.                 }
  73.                 [color=Red]wait = NULL;
  74.                 if (retval || timed_out || signal_pending(current))
  75.                         break;[/color]
  76.                 if (table.error) {
  77.                         retval = table.error;
  78.                         break;
  79.                 }

  80.                 /*
  81.                  * If this is the first loop and we have a timeout
  82.                  * given, then we convert to ktime_t and set the to
  83.                  * pointer to the expiry value.
  84.                  */
  85.                 if (end_time && !to) {
  86.                         expire = timespec_to_ktime(*end_time);
  87.                         to = &expire;
  88.                 }

  89.                 if (!poll_schedule_timeout(&table, TASK_INTERRUPTIBLE,
  90.                                            to, slack))
  91.                         timed_out = 1;
  92.         }

  93.         poll_freewait(&table);

  94.         return retval;
  95. }

在do_select中,外层的for循环第一次执行的时候,才会真正调用所有文件的poll函数:
if (f_op && f_op->poll)
        mask = (*f_op->poll)(file, retval ? NULL : wait);
第一次执行时,        retval=0,所以poll函数的第二个参数为wait,且wait = &table.pt;所以,wait!=NULL,
所以会调用到p->qproc(filp, wait_address, p);将当前进程相关的等待队列插入等待队列wait_address。
等到所有的文件的poll函数被调用完毕以后,查看他们的返回值
if (retval || timed_out || signal_pending(current))
        break;
假如retval非0(retval保存了检测到的可操作的文件描述符的个数),则退出外层for循环,直接返回。
否则,调用poll_schedule_timeout让出cpu,等再次拿到cpu之后,继续进行外层for的循环,但是此时wait=NULL,所以,这一次
调用的文件的poll函数其实是poll(file, NULL)
我们注意到:
static inline void poll_wait(struct file * filp, wait_queue_head_t * wait_address, poll_table *p)
{
        if (p && wait_address)
                p->qproc(filp, wait_address, p);
}
所以,这一次poll_wait什么都没有做,所以文件的poll函数只是查询了一些标记值,然后根据它设置返回值。这是可以理解的:第一次的时候,已经将
相关的等待队列插入到了等待队列wait_address中去了,所以,以后就不再重复这样的动作了,仅仅是检查返回值以返回给do_select函数。
这是我的理解,欢迎大虾们补充
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值