Skip to content

Commit 7a23011

Browse files
committed
Use pre-ino64 FreeBSD symbols to resolve binary compatibility.
This follows the same method as other platforms like OSX and NetBSD. This fixes rustup and building from git (once libc is updated for bootstrap) on FreeBSD12 post-ino64 in freebsd/freebsd-src@f713b08. It also avoids having to hotpatch the stage0 compiler, and HOME/.cargo libc files on FreeBSD12 to build rust. The only real pitfall is that this will prevent interaction with inodes that have an ino_t above the 32-bit limit due to truncation. On the other hand Rust won't work at all on 12 without doing this currently. In general it should not be a problem for users and if they need 64-bit ino_t they can use a patched libc, rather than the current state of affairs in requiring a patched libc to use Rust on 12. A better, or complementary, approach would be something like proposed in rust-lang/rfcs#2048 to allow targetting a specific version of FreeBSD. This would allow Rust to default to this compatibility mode by targetting FreeBSD10 and still allow targetting FreeBSD12 for 64-bit ino_t. The symbol versions used were taken from the old version in freebsd/freebsd-src@f713b08#diff-61a32fcfb7ecd4517665fed591813c57 and freebsd/freebsd-src@f713b08#diff-7f67ccf8b5f44ff2f54eaab0207abb8d. The scope of functions versioned here differs from other platforms as not all structs were modified that were on others, such as DIR for `opendir`, `telldir`, etc.. Fixes rust-lang/rust#42681
1 parent 969ad2b commit 7a23011

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

src/unix/bsd/freebsdlike/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1151,6 +1151,7 @@ extern {
11511151

11521152
pub fn fdopendir(fd: ::c_int) -> *mut ::DIR;
11531153

1154+
#[cfg_attr(target_os = "freebsd", link_name = "mknodat@FBSD_1.1")]
11541155
pub fn mknodat(dirfd: ::c_int, pathname: *const ::c_char,
11551156
mode: ::mode_t, dev: dev_t) -> ::c_int;
11561157
pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char,

src/unix/bsd/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -400,12 +400,14 @@ extern {
400400

401401
#[cfg_attr(target_os = "macos", link_name = "glob$INODE64")]
402402
#[cfg_attr(target_os = "netbsd", link_name = "__glob30")]
403+
#[cfg_attr(target_os = "freebsd", link_name = "glob@FBSD_1.0")]
403404
pub fn glob(pattern: *const ::c_char,
404405
flags: ::c_int,
405406
errfunc: Option<extern fn(epath: *const ::c_char,
406407
errno: ::c_int) -> ::c_int>,
407408
pglob: *mut ::glob_t) -> ::c_int;
408409
#[cfg_attr(target_os = "netbsd", link_name = "__globfree30")]
410+
#[cfg_attr(target_os = "freebsd", link_name = "globfree@FBSD_1.0")]
409411
pub fn globfree(pglob: *mut ::glob_t);
410412

411413
pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)

src/unix/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -384,12 +384,14 @@ extern {
384384

385385
#[cfg_attr(target_os = "macos", link_name = "fstat$INODE64")]
386386
#[cfg_attr(target_os = "netbsd", link_name = "__fstat50")]
387+
#[cfg_attr(target_os = "freebsd", link_name = "fstat@FBSD_1.0")]
387388
pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int;
388389

389390
pub fn mkdir(path: *const c_char, mode: mode_t) -> ::c_int;
390391

391392
#[cfg_attr(target_os = "macos", link_name = "stat$INODE64")]
392393
#[cfg_attr(target_os = "netbsd", link_name = "__stat50")]
394+
#[cfg_attr(target_os = "freebsd", link_name = "stat@FBSD_1.0")]
393395
pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int;
394396

395397
pub fn pclose(stream: *mut ::FILE) -> ::c_int;
@@ -416,10 +418,12 @@ extern {
416418
pub fn opendir(dirname: *const c_char) -> *mut ::DIR;
417419
#[cfg_attr(target_os = "macos", link_name = "readdir$INODE64")]
418420
#[cfg_attr(target_os = "netbsd", link_name = "__readdir30")]
421+
#[cfg_attr(target_os = "freebsd", link_name = "readdir@FBSD_1.0")]
419422
pub fn readdir(dirp: *mut ::DIR) -> *mut ::dirent;
420423
#[cfg_attr(target_os = "macos", link_name = "readdir_r$INODE64")]
421424
#[cfg_attr(target_os = "netbsd", link_name = "__readdir_r30")]
422425
#[cfg_attr(target_os = "solaris", link_name = "__posix_readdir_r")]
426+
#[cfg_attr(target_os = "freebsd", link_name = "readdir_r@FBSD_1.0")]
423427
pub fn readdir_r(dirp: *mut ::DIR, entry: *mut ::dirent,
424428
result: *mut *mut ::dirent) -> ::c_int;
425429
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
@@ -442,6 +446,7 @@ extern {
442446
owner: ::uid_t, group: ::gid_t,
443447
flags: ::c_int) -> ::c_int;
444448
#[cfg_attr(target_os = "macos", link_name = "fstatat$INODE64")]
449+
#[cfg_attr(target_os = "freebsd", link_name = "fstatat@FBSD_1.1")]
445450
pub fn fstatat(dirfd: ::c_int, pathname: *const ::c_char,
446451
buf: *mut stat, flags: ::c_int) -> ::c_int;
447452
pub fn linkat(olddirfd: ::c_int, oldpath: *const ::c_char,
@@ -595,6 +600,7 @@ extern {
595600

596601
#[cfg_attr(target_os = "macos", link_name = "lstat$INODE64")]
597602
#[cfg_attr(target_os = "netbsd", link_name = "__lstat50")]
603+
#[cfg_attr(target_os = "freebsd", link_name = "lstat@FBSD_1.0")]
598604
pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int;
599605

600606
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
@@ -779,6 +785,7 @@ extern {
779785
pub fn difftime(time1: time_t, time0: time_t) -> ::c_double;
780786

781787
#[cfg_attr(target_os = "netbsd", link_name = "__mknod50")]
788+
#[cfg_attr(target_os = "freebsd", link_name = "mknod@FBSD_1.0")]
782789
pub fn mknod(pathname: *const ::c_char, mode: ::mode_t,
783790
dev: ::dev_t) -> ::c_int;
784791
pub fn uname(buf: *mut ::utsname) -> ::c_int;

0 commit comments

Comments
 (0)