Skip to content

Commit 09395bb

Browse files
committed
Auto merge of #31551 - alexcrichton:deprecate-std-os-raw, r=brson
This commit is an implementation of [RFC 1415][rfc] which deprecates all types in the `std::os::*::raw` modules. [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1415-trim-std-os.md Many of the types in these modules don't actually have a canonical platform representation, for example the definition of `stat` on 32-bit Linux will change depending on whether C code is compiled with LFS support or not. Unfortunately the current types in `std::os::*::raw` are billed as "compatible with C", which in light of this means it isn't really possible. To make matters worse, platforms like Android sometimes define these types as *smaller* than the way they're actually represented in the `stat` structure itself. This means that when methods like `DirEntry::ino` are called on Android the result may be truncated as we're tied to returning a `ino_t` type, not the underlying type. The commit here incorporates two backwards-compatible components: * Deprecate all `raw` types that aren't in `std::os::raw` * Expand the `std::os::*::fs::MetadataExt` trait on all platforms for method accessors of all fields. The fields now returned widened types which are the same across platforms (consistency across platforms is not required, however, it's just convenient). and two also backwards-incompatible components: * Change the definition of all `std::os::*::raw` type aliases to correspond to the newly widened types that are being returned on each platform. * Change the definition of `std::os::*::raw::stat` on Linux to match the LFS definitions rather than the standard ones. The breaking changes here will specifically break code that assumes that `libc` and `std` agree on the definition of `std::os::*::raw` types, or that the `std` types are faithful representations of the types in C. An [audit] has been performed of crates.io to determine the fallout which was determined two be minimal, with the two found cases of breakage having been fixed now. [audit]: rust-lang/rfcs#1415 (comment) --- Ok, so after all that, we're finally able to support LFS on Linux! This commit then simultaneously starts using `stat64` and friends on Linux to ensure that we can open >4GB files on 32-bit Linux. Yay! Closes #28978 Closes #30050 Closes #31549
2 parents fae5162 + aa23c98 commit 09395bb

39 files changed

+2036
-482
lines changed

src/libstd/os/android/fs.rs

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![stable(feature = "metadata_ext", since = "1.1.0")]
12+
13+
use libc;
14+
15+
use fs::Metadata;
16+
use sys_common::AsInner;
17+
18+
#[allow(deprecated)]
19+
use os::android::raw;
20+
21+
/// OS-specific extension methods for `fs::Metadata`
22+
#[stable(feature = "metadata_ext", since = "1.1.0")]
23+
pub trait MetadataExt {
24+
/// Gain a reference to the underlying `stat` structure which contains
25+
/// the raw information returned by the OS.
26+
///
27+
/// The contents of the returned `stat` are **not** consistent across
28+
/// Unix platforms. The `os::unix::fs::MetadataExt` trait contains the
29+
/// cross-Unix abstractions contained within the raw stat.
30+
#[stable(feature = "metadata_ext", since = "1.1.0")]
31+
#[rustc_deprecated(since = "1.8.0",
32+
reason = "deprecated in favor of the accessor \
33+
methods of this trait")]
34+
#[allow(deprecated)]
35+
fn as_raw_stat(&self) -> &raw::stat;
36+
37+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
38+
fn st_dev(&self) -> u64;
39+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
40+
fn st_ino(&self) -> u64;
41+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
42+
fn st_mode(&self) -> u32;
43+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
44+
fn st_nlink(&self) -> u64;
45+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
46+
fn st_uid(&self) -> u32;
47+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
48+
fn st_gid(&self) -> u32;
49+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
50+
fn st_rdev(&self) -> u64;
51+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
52+
fn st_size(&self) -> u64;
53+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
54+
fn st_atime(&self) -> i64;
55+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
56+
fn st_atime_nsec(&self) -> i64;
57+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
58+
fn st_mtime(&self) -> i64;
59+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
60+
fn st_mtime_nsec(&self) -> i64;
61+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
62+
fn st_ctime(&self) -> i64;
63+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
64+
fn st_ctime_nsec(&self) -> i64;
65+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
66+
fn st_blksize(&self) -> u64;
67+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
68+
fn st_blocks(&self) -> u64;
69+
}
70+
71+
#[stable(feature = "metadata_ext", since = "1.1.0")]
72+
impl MetadataExt for Metadata {
73+
#[allow(deprecated)]
74+
fn as_raw_stat(&self) -> &raw::stat {
75+
unsafe {
76+
&*(self.as_inner().as_inner() as *const libc::stat
77+
as *const raw::stat)
78+
}
79+
}
80+
fn st_dev(&self) -> u64 {
81+
self.as_inner().as_inner().st_dev as u64
82+
}
83+
fn st_ino(&self) -> u64 {
84+
self.as_inner().as_inner().st_ino as u64
85+
}
86+
fn st_mode(&self) -> u32 {
87+
self.as_inner().as_inner().st_mode as u32
88+
}
89+
fn st_nlink(&self) -> u64 {
90+
self.as_inner().as_inner().st_nlink as u64
91+
}
92+
fn st_uid(&self) -> u32 {
93+
self.as_inner().as_inner().st_uid as u32
94+
}
95+
fn st_gid(&self) -> u32 {
96+
self.as_inner().as_inner().st_gid as u32
97+
}
98+
fn st_rdev(&self) -> u64 {
99+
self.as_inner().as_inner().st_rdev as u64
100+
}
101+
fn st_size(&self) -> u64 {
102+
self.as_inner().as_inner().st_size as u64
103+
}
104+
fn st_atime(&self) -> i64 {
105+
self.as_inner().as_inner().st_atime as i64
106+
}
107+
fn st_atime_nsec(&self) -> i64 {
108+
self.as_inner().as_inner().st_atime_nsec as i64
109+
}
110+
fn st_mtime(&self) -> i64 {
111+
self.as_inner().as_inner().st_mtime as i64
112+
}
113+
fn st_mtime_nsec(&self) -> i64 {
114+
self.as_inner().as_inner().st_mtime_nsec as i64
115+
}
116+
fn st_ctime(&self) -> i64 {
117+
self.as_inner().as_inner().st_ctime as i64
118+
}
119+
fn st_ctime_nsec(&self) -> i64 {
120+
self.as_inner().as_inner().st_ctime_nsec as i64
121+
}
122+
fn st_blksize(&self) -> u64 {
123+
self.as_inner().as_inner().st_blksize as u64
124+
}
125+
fn st_blocks(&self) -> u64 {
126+
self.as_inner().as_inner().st_blocks as u64
127+
}
128+
}
129+

src/libstd/os/android/mod.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,4 @@
1313
#![stable(feature = "raw_ext", since = "1.1.0")]
1414

1515
pub mod raw;
16-
17-
#[stable(feature = "raw_ext", since = "1.1.0")]
18-
pub mod fs {
19-
#[stable(feature = "raw_ext", since = "1.1.0")]
20-
pub use sys::fs::MetadataExt;
21-
}
16+
pub mod fs;

src/libstd/os/android/raw.rs

+22-16
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
//! Android-specific raw type definitions
1212
1313
#![stable(feature = "raw_ext", since = "1.1.0")]
14+
#![rustc_deprecated(since = "1.8.0",
15+
reason = "these type aliases are no longer supported by \
16+
the standard library, the `libc` crate on \
17+
crates.io should be used instead for the correct \
18+
definitions")]
19+
#![allow(deprecated)]
1420

1521
use os::raw::c_long;
1622

@@ -26,22 +32,22 @@ mod arch {
2632
use os::unix::raw::{uid_t, gid_t};
2733

2834
#[stable(feature = "raw_ext", since = "1.1.0")]
29-
pub type dev_t = u32;
35+
pub type dev_t = u64;
3036
#[stable(feature = "raw_ext", since = "1.1.0")]
31-
pub type mode_t = u16;
37+
pub type mode_t = u32;
3238

3339
#[stable(feature = "raw_ext", since = "1.1.0")]
34-
pub type blkcnt_t = u32;
40+
pub type blkcnt_t = u64;
3541
#[stable(feature = "raw_ext", since = "1.1.0")]
36-
pub type blksize_t = u32;
42+
pub type blksize_t = u64;
3743
#[stable(feature = "raw_ext", since = "1.1.0")]
38-
pub type ino_t = u32;
44+
pub type ino_t = u64;
3945
#[stable(feature = "raw_ext", since = "1.1.0")]
40-
pub type nlink_t = u16;
46+
pub type nlink_t = u64;
4147
#[stable(feature = "raw_ext", since = "1.1.0")]
42-
pub type off_t = i32;
48+
pub type off_t = u64;
4349
#[stable(feature = "raw_ext", since = "1.1.0")]
44-
pub type time_t = i32;
50+
pub type time_t = i64;
4551

4652
#[repr(C)]
4753
#[derive(Clone)]
@@ -52,7 +58,7 @@ mod arch {
5258
#[stable(feature = "raw_ext", since = "1.1.0")]
5359
pub __pad0: [c_uchar; 4],
5460
#[stable(feature = "raw_ext", since = "1.1.0")]
55-
pub __st_ino: ino_t,
61+
pub __st_ino: u32,
5662
#[stable(feature = "raw_ext", since = "1.1.0")]
5763
pub st_mode: c_uint,
5864
#[stable(feature = "raw_ext", since = "1.1.0")]
@@ -68,19 +74,19 @@ mod arch {
6874
#[stable(feature = "raw_ext", since = "1.1.0")]
6975
pub st_size: c_longlong,
7076
#[stable(feature = "raw_ext", since = "1.1.0")]
71-
pub st_blksize: blksize_t,
77+
pub st_blksize: u32,
7278
#[stable(feature = "raw_ext", since = "1.1.0")]
7379
pub st_blocks: c_ulonglong,
7480
#[stable(feature = "raw_ext", since = "1.1.0")]
75-
pub st_atime: time_t,
81+
pub st_atime: c_ulong,
7682
#[stable(feature = "raw_ext", since = "1.1.0")]
7783
pub st_atime_nsec: c_ulong,
7884
#[stable(feature = "raw_ext", since = "1.1.0")]
79-
pub st_mtime: time_t,
85+
pub st_mtime: c_ulong,
8086
#[stable(feature = "raw_ext", since = "1.1.0")]
8187
pub st_mtime_nsec: c_ulong,
8288
#[stable(feature = "raw_ext", since = "1.1.0")]
83-
pub st_ctime: time_t,
89+
pub st_ctime: c_ulong,
8490
#[stable(feature = "raw_ext", since = "1.1.0")]
8591
pub st_ctime_nsec: c_ulong,
8692
#[stable(feature = "raw_ext", since = "1.1.0")]
@@ -103,13 +109,13 @@ mod arch {
103109
#[stable(feature = "raw_ext", since = "1.1.0")]
104110
pub type blkcnt_t = u64;
105111
#[stable(feature = "raw_ext", since = "1.1.0")]
106-
pub type blksize_t = u32;
112+
pub type blksize_t = u64;
107113
#[stable(feature = "raw_ext", since = "1.1.0")]
108114
pub type ino_t = u64;
109115
#[stable(feature = "raw_ext", since = "1.1.0")]
110-
pub type nlink_t = u32;
116+
pub type nlink_t = u64;
111117
#[stable(feature = "raw_ext", since = "1.1.0")]
112-
pub type off_t = i64;
118+
pub type off_t = u64;
113119
#[stable(feature = "raw_ext", since = "1.1.0")]
114120
pub type time_t = i64;
115121

src/libstd/os/bitrig/fs.rs

+149
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![stable(feature = "metadata_ext", since = "1.1.0")]
12+
13+
use libc;
14+
15+
use fs::Metadata;
16+
use sys_common::AsInner;
17+
18+
#[allow(deprecated)]
19+
use os::bitrig::raw;
20+
21+
/// OS-specific extension methods for `fs::Metadata`
22+
#[stable(feature = "metadata_ext", since = "1.1.0")]
23+
pub trait MetadataExt {
24+
/// Gain a reference to the underlying `stat` structure which contains
25+
/// the raw information returned by the OS.
26+
///
27+
/// The contents of the returned `stat` are **not** consistent across
28+
/// Unix platforms. The `os::unix::fs::MetadataExt` trait contains the
29+
/// cross-Unix abstractions contained within the raw stat.
30+
#[stable(feature = "metadata_ext", since = "1.1.0")]
31+
#[rustc_deprecated(since = "1.8.0",
32+
reason = "deprecated in favor of the accessor \
33+
methods of this trait")]
34+
#[allow(deprecated)]
35+
fn as_raw_stat(&self) -> &raw::stat;
36+
37+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
38+
fn st_dev(&self) -> u64;
39+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
40+
fn st_ino(&self) -> u64;
41+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
42+
fn st_mode(&self) -> u32;
43+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
44+
fn st_nlink(&self) -> u64;
45+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
46+
fn st_uid(&self) -> u32;
47+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
48+
fn st_gid(&self) -> u32;
49+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
50+
fn st_rdev(&self) -> u64;
51+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
52+
fn st_size(&self) -> u64;
53+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
54+
fn st_atime(&self) -> i64;
55+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
56+
fn st_atime_nsec(&self) -> i64;
57+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
58+
fn st_mtime(&self) -> i64;
59+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
60+
fn st_mtime_nsec(&self) -> i64;
61+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
62+
fn st_ctime(&self) -> i64;
63+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
64+
fn st_ctime_nsec(&self) -> i64;
65+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
66+
fn st_birthtime(&self) -> i64;
67+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
68+
fn st_birthtime_nsec(&self) -> i64;
69+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
70+
fn st_blksize(&self) -> u64;
71+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
72+
fn st_blocks(&self) -> u64;
73+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
74+
fn st_flags(&self) -> u32;
75+
#[stable(feature = "metadata_ext2", since = "1.8.0")]
76+
fn st_gen(&self) -> u32;
77+
}
78+
79+
#[stable(feature = "metadata_ext", since = "1.1.0")]
80+
impl MetadataExt for Metadata {
81+
#[allow(deprecated)]
82+
fn as_raw_stat(&self) -> &raw::stat {
83+
unsafe {
84+
&*(self.as_inner().as_inner() as *const libc::stat
85+
as *const raw::stat)
86+
}
87+
}
88+
fn st_dev(&self) -> u64 {
89+
self.as_inner().as_inner().st_dev as u64
90+
}
91+
fn st_ino(&self) -> u64 {
92+
self.as_inner().as_inner().st_ino as u64
93+
}
94+
fn st_mode(&self) -> u32 {
95+
self.as_inner().as_inner().st_mode as u32
96+
}
97+
fn st_nlink(&self) -> u64 {
98+
self.as_inner().as_inner().st_nlink as u64
99+
}
100+
fn st_uid(&self) -> u32 {
101+
self.as_inner().as_inner().st_uid as u32
102+
}
103+
fn st_gid(&self) -> u32 {
104+
self.as_inner().as_inner().st_gid as u32
105+
}
106+
fn st_rdev(&self) -> u64 {
107+
self.as_inner().as_inner().st_rdev as u64
108+
}
109+
fn st_size(&self) -> u64 {
110+
self.as_inner().as_inner().st_size as u64
111+
}
112+
fn st_atime(&self) -> i64 {
113+
self.as_inner().as_inner().st_atime as i64
114+
}
115+
fn st_atime_nsec(&self) -> i64 {
116+
self.as_inner().as_inner().st_atime_nsec as i64
117+
}
118+
fn st_mtime(&self) -> i64 {
119+
self.as_inner().as_inner().st_mtime as i64
120+
}
121+
fn st_mtime_nsec(&self) -> i64 {
122+
self.as_inner().as_inner().st_mtime_nsec as i64
123+
}
124+
fn st_ctime(&self) -> i64 {
125+
self.as_inner().as_inner().st_ctime as i64
126+
}
127+
fn st_ctime_nsec(&self) -> i64 {
128+
self.as_inner().as_inner().st_ctime_nsec as i64
129+
}
130+
fn st_birthtime(&self) -> i64 {
131+
self.as_inner().as_inner().st_birthtime as i64
132+
}
133+
fn st_birthtime_nsec(&self) -> i64 {
134+
self.as_inner().as_inner().st_birthtime_nsec as i64
135+
}
136+
fn st_blksize(&self) -> u64 {
137+
self.as_inner().as_inner().st_blksize as u64
138+
}
139+
fn st_blocks(&self) -> u64 {
140+
self.as_inner().as_inner().st_blocks as u64
141+
}
142+
fn st_gen(&self) -> u32 {
143+
self.as_inner().as_inner().st_gen as u32
144+
}
145+
fn st_flags(&self) -> u32 {
146+
self.as_inner().as_inner().st_flags as u32
147+
}
148+
}
149+

src/libstd/os/bitrig/mod.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,4 @@
1313
#![stable(feature = "raw_ext", since = "1.1.0")]
1414

1515
pub mod raw;
16-
17-
#[stable(feature = "raw_ext", since = "1.1.0")]
18-
pub mod fs {
19-
#[stable(feature = "raw_ext", since = "1.1.0")]
20-
pub use sys::fs::MetadataExt;
21-
}
16+
pub mod fs;

0 commit comments

Comments
 (0)