726.html

来自「linux 0.11中文版 有注释」· HTML 代码 · 共 26 行

HTML
26
字号
<html>
<head>
<title>verify_area</title>
<meta name='robots' content='noindex,nofollow'>
<meta name='generator' content='GLOBAL-5.4.1'>
</head>
<body text='#191970' bgcolor='#f5f5dc' vlink='gray'>
<pre>
<a href='../S/17.html#L97'>verify_area</a>        97 fs/read_write.c   verify_area (buf, count);
<a href='../S/18.html#L25'>verify_area</a>        25 fs/stat.c        verify_area (statbuf, sizeof (*statbuf));
<a href='../S/34.html#L8'>verify_area</a>         8 include/linux/kernel.h void verify_area (void *addr, int count);
<a href='../S/66.html#L83'>verify_area</a>        83 kernel/chr_drv/tty_ioctl.c   verify_area (termios, sizeof (*termios));
<a href='../S/66.html#L117'>verify_area</a>       117 kernel/chr_drv/tty_ioctl.c   verify_area (termio, sizeof (*termio));
<a href='../S/66.html#L257'>verify_area</a>       257 kernel/chr_drv/tty_ioctl.c       verify_area ((void *) arg, 4);
<a href='../S/66.html#L266'>verify_area</a>       266 kernel/chr_drv/tty_ioctl.c       verify_area ((void *) arg, 4);
<a href='../S/66.html#L271'>verify_area</a>       271 kernel/chr_drv/tty_ioctl.c       verify_area ((void *) arg, 4);
<a href='../S/67.html#L208'>verify_area</a>       208 kernel/exit.c    verify_area (stat_addr, 4);
<a href='../S/75.html#L39'>verify_area</a>        39 kernel/signal.c   verify_area (to, sizeof (struct sigaction));	// 验证to 处的内存是否足够。
<a href='../S/75.html#L146'>verify_area</a>       146 kernel/signal.c   verify_area (esp, longs * 4);
<a href='../S/76.html#L141'>verify_area</a>       141 kernel/sys.c         verify_area (tloc, 4);	// 验证内存容量是否够(这里是4 字节)。
<a href='../S/76.html#L208'>verify_area</a>       208 kernel/sys.c         verify_area (tbuf, sizeof *tbuf);
<a href='../S/76.html#L296'>verify_area</a>       296 kernel/sys.c     verify_area (name, sizeof *name);	// 验证缓冲区大小是否超限(超出已分配的内存等)。
</pre>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?