Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F110612801
D25559.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D25559.diff
View Options
Index: head/sys/compat/linux/linux_stats.c
===================================================================
--- head/sys/compat/linux/linux_stats.c
+++ head/sys/compat/linux/linux_stats.c
@@ -70,6 +70,17 @@
sb->st_mode |= S_IFBLK;
}
+ /*
+ * Return the same st_dev for every devfs instance. The reason
+ * for this is to work around an idiosyncrasy of glibc getttynam()
+ * implementation: it checks whether st_dev returned for fd 0
+ * is the same as st_dev returned for the target of /proc/self/fd/0
+ * symlink, and with linux chroots having their own devfs instance,
+ * the check will fail if you chroot into it.
+ */
+ if (rootdevmp != NULL && vp->v_mount->mnt_vfc == rootdevmp->mnt_vfc)
+ sb->st_dev = rootdevmp->mnt_stat.f_fsid.val[0];
+
if (vp->v_type == VCHR && vp->v_rdev != NULL &&
linux_driver_get_major_minor(devtoname(vp->v_rdev),
&major, &minor) == 0) {
@@ -110,6 +121,7 @@
{
struct file *fp;
struct vnode *vp;
+ struct mount *mp;
int major, minor;
/*
@@ -122,6 +134,12 @@
if (vp != NULL && vn_isdisk(vp, NULL)) {
buf->st_mode &= ~S_IFMT;
buf->st_mode |= S_IFBLK;
+ }
+ if (vp != NULL && rootdevmp != NULL) {
+ mp = vp->v_mount;
+ __compiler_membar();
+ if (mp != NULL && mp->mnt_vfc == rootdevmp->mnt_vfc)
+ buf->st_dev = rootdevmp->mnt_stat.f_fsid.val[0];
}
if (vp != NULL && vp->v_rdev != NULL &&
linux_driver_get_major_minor(devtoname(vp->v_rdev),
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Feb 21, 9:55 PM (1 h, 50 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16761868
Default Alt Text
D25559.diff (1 KB)
Attached To
Mode
D25559: Fix Linux getttynam(3).
Attached
Detach File
Event Timeline
Log In to Comment