1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#[cfg(windows)]
extern crate kernel32;
#[cfg(target_os = "linux")]
extern crate libc;
#[cfg(target_os = "linux")]
extern crate errno;

/// Determine whether huge pages of a particular size are supported.
#[cfg(target_os = "linux")]
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
#[inline(always)]
#[cfg(all(feature = "nightly", target_pointer_width = "32"))]
pub fn hugepage_supported(size: usize) -> bool {
    // Since the hugepages directories are of the form hugepages-${size}kB, we're guaranteed that,
    // barring a huge change, Linux will never support hugepages smaller than 1kB. Since this
    // interface replaces the /proc/meminfo interface, and thus must support expressing anything
    // that that interface can express, we also know that /proc/meminfo cannot support hugepages
    // smaller than 1kB. Thus, this 'size < 1024' check can never produce a false positive.
    if size < 1024 || !size.is_power_of_two() {
        return false;
    }

    match size.trailing_zeros() {
        10 => *lazy::HUGEPAGE_SUPPORTED_10,
        11 => *lazy::HUGEPAGE_SUPPORTED_11,
        12 => *lazy::HUGEPAGE_SUPPORTED_12,
        13 => *lazy::HUGEPAGE_SUPPORTED_13,
        14 => *lazy::HUGEPAGE_SUPPORTED_14,
        15 => *lazy::HUGEPAGE_SUPPORTED_15,
        16 => *lazy::HUGEPAGE_SUPPORTED_16,
        17 => *lazy::HUGEPAGE_SUPPORTED_17,
        18 => *lazy::HUGEPAGE_SUPPORTED_18,
        19 => *lazy::HUGEPAGE_SUPPORTED_19,
        20 => *lazy::HUGEPAGE_SUPPORTED_20,
        21 => *lazy::HUGEPAGE_SUPPORTED_21,
        22 => *lazy::HUGEPAGE_SUPPORTED_22,
        23 => *lazy::HUGEPAGE_SUPPORTED_23,
        24 => *lazy::HUGEPAGE_SUPPORTED_24,
        25 => *lazy::HUGEPAGE_SUPPORTED_25,
        26 => *lazy::HUGEPAGE_SUPPORTED_26,
        27 => *lazy::HUGEPAGE_SUPPORTED_27,
        28 => *lazy::HUGEPAGE_SUPPORTED_28,
        29 => *lazy::HUGEPAGE_SUPPORTED_29,
        30 => *lazy::HUGEPAGE_SUPPORTED_30,
        31 => *lazy::HUGEPAGE_SUPPORTED_31,
        _ => unreachable!(),
    }
}

/// Determine whether huge pages of a particular size are supported.
#[cfg(target_os = "linux")]
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
#[inline(always)]
#[cfg(all(feature = "nightly", target_pointer_width = "64"))]
pub fn hugepage_supported(size: usize) -> bool {
    // Since the hugepages directories are of the form hugepages-${size}kB, we're guaranteed that,
    // barring a huge change, Linux will never support hugepages smaller than 1kB. Since this
    // interface replaces the /proc/meminfo interface, and thus must support expressing anything
    // that that interface can express, we also know that /proc/meminfo cannot support hugepages
    // smaller than 1kB. Thus, this 'size < 1024' check can never produce a false positive.
    if size < 1024 || !size.is_power_of_two() {
        return false;
    }

    match size.trailing_zeros() {
        10 => *lazy::HUGEPAGE_SUPPORTED_10,
        11 => *lazy::HUGEPAGE_SUPPORTED_11,
        12 => *lazy::HUGEPAGE_SUPPORTED_12,
        13 => *lazy::HUGEPAGE_SUPPORTED_13,
        14 => *lazy::HUGEPAGE_SUPPORTED_14,
        15 => *lazy::HUGEPAGE_SUPPORTED_15,
        16 => *lazy::HUGEPAGE_SUPPORTED_16,
        17 => *lazy::HUGEPAGE_SUPPORTED_17,
        18 => *lazy::HUGEPAGE_SUPPORTED_18,
        19 => *lazy::HUGEPAGE_SUPPORTED_19,
        20 => *lazy::HUGEPAGE_SUPPORTED_20,
        21 => *lazy::HUGEPAGE_SUPPORTED_21,
        22 => *lazy::HUGEPAGE_SUPPORTED_22,
        23 => *lazy::HUGEPAGE_SUPPORTED_23,
        24 => *lazy::HUGEPAGE_SUPPORTED_24,
        25 => *lazy::HUGEPAGE_SUPPORTED_25,
        26 => *lazy::HUGEPAGE_SUPPORTED_26,
        27 => *lazy::HUGEPAGE_SUPPORTED_27,
        28 => *lazy::HUGEPAGE_SUPPORTED_28,
        29 => *lazy::HUGEPAGE_SUPPORTED_29,
        30 => *lazy::HUGEPAGE_SUPPORTED_30,
        31 => *lazy::HUGEPAGE_SUPPORTED_31,
        32 => *lazy::HUGEPAGE_SUPPORTED_32,
        33 => *lazy::HUGEPAGE_SUPPORTED_33,
        34 => *lazy::HUGEPAGE_SUPPORTED_34,
        35 => *lazy::HUGEPAGE_SUPPORTED_35,
        36 => *lazy::HUGEPAGE_SUPPORTED_36,
        37 => *lazy::HUGEPAGE_SUPPORTED_37,
        38 => *lazy::HUGEPAGE_SUPPORTED_38,
        39 => *lazy::HUGEPAGE_SUPPORTED_39,
        40 => *lazy::HUGEPAGE_SUPPORTED_40,
        41 => *lazy::HUGEPAGE_SUPPORTED_41,
        42 => *lazy::HUGEPAGE_SUPPORTED_42,
        43 => *lazy::HUGEPAGE_SUPPORTED_43,
        44 => *lazy::HUGEPAGE_SUPPORTED_44,
        45 => *lazy::HUGEPAGE_SUPPORTED_45,
        46 => *lazy::HUGEPAGE_SUPPORTED_46,
        47 => *lazy::HUGEPAGE_SUPPORTED_47,
        48 => *lazy::HUGEPAGE_SUPPORTED_48,
        49 => *lazy::HUGEPAGE_SUPPORTED_49,
        50 => *lazy::HUGEPAGE_SUPPORTED_50,
        51 => *lazy::HUGEPAGE_SUPPORTED_51,
        52 => *lazy::HUGEPAGE_SUPPORTED_52,
        53 => *lazy::HUGEPAGE_SUPPORTED_53,
        54 => *lazy::HUGEPAGE_SUPPORTED_54,
        55 => *lazy::HUGEPAGE_SUPPORTED_55,
        56 => *lazy::HUGEPAGE_SUPPORTED_56,
        57 => *lazy::HUGEPAGE_SUPPORTED_57,
        58 => *lazy::HUGEPAGE_SUPPORTED_58,
        59 => *lazy::HUGEPAGE_SUPPORTED_59,
        60 => *lazy::HUGEPAGE_SUPPORTED_60,
        61 => *lazy::HUGEPAGE_SUPPORTED_61,
        62 => *lazy::HUGEPAGE_SUPPORTED_62,
        63 => *lazy::HUGEPAGE_SUPPORTED_63,
        _ => unreachable!(),
    }
}

/// Determine whether huge pages of a particular size are supported.
#[cfg(target_os = "linux")]
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
#[inline(always)]
#[cfg(not(feature = "nightly"))]
pub fn hugepage_supported(size: usize) -> bool {
    // Since the hugepages directories are of the form hugepages-${size}kB, we're guaranteed that,
    // barring a huge change, Linux will never support hugepages smaller than 1kB. Since this
    // interface replaces the /proc/meminfo interface, and thus must support expressing anything
    // that that interface can express, we also know that /proc/meminfo cannot support hugepages
    // smaller than 1kB. Thus, this 'size < 1024' check can never produce a false positive.
    if size < 1024 || !size.is_power_of_two() {
        return false;
    }

    priv_hugepage_supported(size.trailing_zeros() as usize)
}

#[cfg(feature = "nightly")]
#[cfg(all(target_os = "linux", target_pointer_width = "31"))]
mod lazy {
    use super::priv_hugepage_supported;
    // Doing this all in a single lazy_static block causes the macro expansion pass to exceed its
    // recursion limit. This is ugly, but it works. It's also the reason that this is in its own
    // module - so that the single #[cfg] directive can apply to the whole module rather than
    // having to repeat it for each lazy_static block.
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_10: bool = priv_hugepage_supported(10); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_11: bool = priv_hugepage_supported(11); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_12: bool = priv_hugepage_supported(12); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_13: bool = priv_hugepage_supported(13); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_14: bool = priv_hugepage_supported(14); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_15: bool = priv_hugepage_supported(15); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_16: bool = priv_hugepage_supported(16); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_17: bool = priv_hugepage_supported(17); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_18: bool = priv_hugepage_supported(18); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_19: bool = priv_hugepage_supported(19); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_20: bool = priv_hugepage_supported(20); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_21: bool = priv_hugepage_supported(21); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_22: bool = priv_hugepage_supported(22); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_23: bool = priv_hugepage_supported(23); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_24: bool = priv_hugepage_supported(24); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_25: bool = priv_hugepage_supported(25); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_26: bool = priv_hugepage_supported(26); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_27: bool = priv_hugepage_supported(27); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_28: bool = priv_hugepage_supported(28); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_29: bool = priv_hugepage_supported(29); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_30: bool = priv_hugepage_supported(30); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_31: bool = priv_hugepage_supported(31); }
}

#[cfg(feature = "nightly")]
#[cfg(all(target_os = "linux", target_pointer_width = "64"))]
mod lazy {
    use super::priv_hugepage_supported;
    // Doing this all in a single lazy_static block causes the macro expansion pass to exceed its
    // recursion limit. This is ugly, but it works. It's also the reason that this is in its own
    // module - so that the single #[cfg] directive can apply to the whole module rather than
    // having to repeat it for each lazy_static block.
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_10: bool = priv_hugepage_supported(10); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_11: bool = priv_hugepage_supported(11); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_12: bool = priv_hugepage_supported(12); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_13: bool = priv_hugepage_supported(13); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_14: bool = priv_hugepage_supported(14); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_15: bool = priv_hugepage_supported(15); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_16: bool = priv_hugepage_supported(16); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_17: bool = priv_hugepage_supported(17); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_18: bool = priv_hugepage_supported(18); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_19: bool = priv_hugepage_supported(19); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_20: bool = priv_hugepage_supported(20); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_21: bool = priv_hugepage_supported(21); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_22: bool = priv_hugepage_supported(22); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_23: bool = priv_hugepage_supported(23); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_24: bool = priv_hugepage_supported(24); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_25: bool = priv_hugepage_supported(25); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_26: bool = priv_hugepage_supported(26); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_27: bool = priv_hugepage_supported(27); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_28: bool = priv_hugepage_supported(28); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_29: bool = priv_hugepage_supported(29); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_30: bool = priv_hugepage_supported(30); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_31: bool = priv_hugepage_supported(31); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_32: bool = priv_hugepage_supported(32); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_33: bool = priv_hugepage_supported(33); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_34: bool = priv_hugepage_supported(34); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_35: bool = priv_hugepage_supported(35); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_36: bool = priv_hugepage_supported(36); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_37: bool = priv_hugepage_supported(37); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_38: bool = priv_hugepage_supported(38); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_39: bool = priv_hugepage_supported(39); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_40: bool = priv_hugepage_supported(40); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_41: bool = priv_hugepage_supported(41); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_42: bool = priv_hugepage_supported(42); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_43: bool = priv_hugepage_supported(43); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_44: bool = priv_hugepage_supported(44); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_45: bool = priv_hugepage_supported(45); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_46: bool = priv_hugepage_supported(46); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_47: bool = priv_hugepage_supported(47); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_48: bool = priv_hugepage_supported(48); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_49: bool = priv_hugepage_supported(49); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_50: bool = priv_hugepage_supported(50); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_51: bool = priv_hugepage_supported(51); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_52: bool = priv_hugepage_supported(52); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_53: bool = priv_hugepage_supported(53); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_54: bool = priv_hugepage_supported(54); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_55: bool = priv_hugepage_supported(55); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_56: bool = priv_hugepage_supported(56); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_57: bool = priv_hugepage_supported(57); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_58: bool = priv_hugepage_supported(58); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_59: bool = priv_hugepage_supported(59); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_60: bool = priv_hugepage_supported(60); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_61: bool = priv_hugepage_supported(61); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_62: bool = priv_hugepage_supported(62); }
    lazy_static!{ pub static ref HUGEPAGE_SUPPORTED_63: bool = priv_hugepage_supported(63); }
}

#[cfg(all(target_os = "linux", target_pointer_width = "32"))]
macro_rules! get_linux_hugepage_directory {
    ($size:expr) => (
        match $size {
            10 => "/sys/kernel/mm/hugepages/hugepages-1kB",
            11 => "/sys/kernel/mm/hugepages/hugepages-2kB",
            12 => "/sys/kernel/mm/hugepages/hugepages-4kB",
            13 => "/sys/kernel/mm/hugepages/hugepages-8kB",
            14 => "/sys/kernel/mm/hugepages/hugepages-16kB",
            15 => "/sys/kernel/mm/hugepages/hugepages-32kB",
            16 => "/sys/kernel/mm/hugepages/hugepages-64kB",
            17 => "/sys/kernel/mm/hugepages/hugepages-128kB",
            18 => "/sys/kernel/mm/hugepages/hugepages-256kB",
            19 => "/sys/kernel/mm/hugepages/hugepages-512kB",
            20 => "/sys/kernel/mm/hugepages/hugepages-1024kB",
            21 => "/sys/kernel/mm/hugepages/hugepages-2048kB",
            22 => "/sys/kernel/mm/hugepages/hugepages-4096kB",
            23 => "/sys/kernel/mm/hugepages/hugepages-8192kB",
            24 => "/sys/kernel/mm/hugepages/hugepages-16384kB",
            25 => "/sys/kernel/mm/hugepages/hugepages-32768kB",
            26 => "/sys/kernel/mm/hugepages/hugepages-65536kB",
            27 => "/sys/kernel/mm/hugepages/hugepages-131072kB",
            28 => "/sys/kernel/mm/hugepages/hugepages-262144kB",
            29 => "/sys/kernel/mm/hugepages/hugepages-524288kB",
            30 => "/sys/kernel/mm/hugepages/hugepages-1048576kB",
            31 => "/sys/kernel/mm/hugepages/hugepages-2097152kB",
            _ => unreachable!(),
        }
    );
}

#[cfg(all(target_os = "linux", target_pointer_width = "64"))]
macro_rules! get_linux_hugepage_directory {
    ($size:expr) => (
        match $size {
            10 => "/sys/kernel/mm/hugepages/hugepages-1kB",
            11 => "/sys/kernel/mm/hugepages/hugepages-2kB",
            12 => "/sys/kernel/mm/hugepages/hugepages-4kB",
            13 => "/sys/kernel/mm/hugepages/hugepages-8kB",
            14 => "/sys/kernel/mm/hugepages/hugepages-16kB",
            15 => "/sys/kernel/mm/hugepages/hugepages-32kB",
            16 => "/sys/kernel/mm/hugepages/hugepages-64kB",
            17 => "/sys/kernel/mm/hugepages/hugepages-128kB",
            18 => "/sys/kernel/mm/hugepages/hugepages-256kB",
            19 => "/sys/kernel/mm/hugepages/hugepages-512kB",
            20 => "/sys/kernel/mm/hugepages/hugepages-1024kB",
            21 => "/sys/kernel/mm/hugepages/hugepages-2048kB",
            22 => "/sys/kernel/mm/hugepages/hugepages-4096kB",
            23 => "/sys/kernel/mm/hugepages/hugepages-8192kB",
            24 => "/sys/kernel/mm/hugepages/hugepages-16384kB",
            25 => "/sys/kernel/mm/hugepages/hugepages-32768kB",
            26 => "/sys/kernel/mm/hugepages/hugepages-65536kB",
            27 => "/sys/kernel/mm/hugepages/hugepages-131072kB",
            28 => "/sys/kernel/mm/hugepages/hugepages-262144kB",
            29 => "/sys/kernel/mm/hugepages/hugepages-524288kB",
            30 => "/sys/kernel/mm/hugepages/hugepages-1048576kB",
            31 => "/sys/kernel/mm/hugepages/hugepages-2097152kB",
            32 => "/sys/kernel/mm/hugepages/hugepages-4194304kB",
            33 => "/sys/kernel/mm/hugepages/hugepages-8388608kB",
            34 => "/sys/kernel/mm/hugepages/hugepages-16777216kB",
            35 => "/sys/kernel/mm/hugepages/hugepages-33554432kB",
            36 => "/sys/kernel/mm/hugepages/hugepages-67108864kB",
            37 => "/sys/kernel/mm/hugepages/hugepages-134217728kB",
            38 => "/sys/kernel/mm/hugepages/hugepages-268435456kB",
            39 => "/sys/kernel/mm/hugepages/hugepages-536870912kB",
            40 => "/sys/kernel/mm/hugepages/hugepages-1073741824kB",
            41 => "/sys/kernel/mm/hugepages/hugepages-2147483648kB",
            42 => "/sys/kernel/mm/hugepages/hugepages-4294967296kB",
            43 => "/sys/kernel/mm/hugepages/hugepages-8589934592kB",
            44 => "/sys/kernel/mm/hugepages/hugepages-17179869184kB",
            45 => "/sys/kernel/mm/hugepages/hugepages-34359738368kB",
            46 => "/sys/kernel/mm/hugepages/hugepages-68719476736kB",
            47 => "/sys/kernel/mm/hugepages/hugepages-137438953472kB",
            48 => "/sys/kernel/mm/hugepages/hugepages-274877906944kB",
            49 => "/sys/kernel/mm/hugepages/hugepages-549755813888kB",
            50 => "/sys/kernel/mm/hugepages/hugepages-1099511627776kB",
            51 => "/sys/kernel/mm/hugepages/hugepages-2199023255552kB",
            52 => "/sys/kernel/mm/hugepages/hugepages-4398046511104kB",
            53 => "/sys/kernel/mm/hugepages/hugepages-8796093022208kB",
            54 => "/sys/kernel/mm/hugepages/hugepages-17592186044416kB",
            55 => "/sys/kernel/mm/hugepages/hugepages-35184372088832kB",
            56 => "/sys/kernel/mm/hugepages/hugepages-70368744177664kB",
            57 => "/sys/kernel/mm/hugepages/hugepages-140737488355328kB",
            58 => "/sys/kernel/mm/hugepages/hugepages-281474976710656kB",
            59 => "/sys/kernel/mm/hugepages/hugepages-562949953421312kB",
            60 => "/sys/kernel/mm/hugepages/hugepages-1125899906842624kB",
            61 => "/sys/kernel/mm/hugepages/hugepages-2251799813685248kB",
            62 => "/sys/kernel/mm/hugepages/hugepages-4503599627370496kB",
            63 => "/sys/kernel/mm/hugepages/hugepages-9007199254740992kB",
            _ => unreachable!(),
        }
    );
}

#[cfg(target_os = "linux")]
fn priv_hugepage_supported(exp: usize) -> bool {
    // See for details: https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt
    // First, use the more modern method of checking /sys/kernel/mm/hugepages/hugepages-${size}kB.
    // If that fails (possibly because we're on an old kernel version), try the legacy method of
    // parsing /proc/meminfo (described in more detail in legacy_hugepage_supported below).

    use self::libc::{stat, lstat, ENOENT, ENOMEM, c_char};
    use self::errno::errno;
    use core::mem::uninitialized;

    let path = get_linux_hugepage_directory!(exp);

    let mut s = unsafe { uninitialized::<stat>() };
    if unsafe { lstat(path.as_ptr() as *const c_char, &mut s) } < 0 {
        // No other error should be possible here (see man 2 lstat)
        let e = errno().0;
        assert!(e == ENOENT || e == ENOMEM);
        if e == ENOENT {
            // Maybe we're on an older kernel that doesn't support /sys/kernel/mm/hugepages;
            // it will still support /proc/meminfo, which is what default_hugepage uses.
            default_hugepage() == Some(1 << exp)
        } else {
            false
        }
    } else {
        true
    }
}

/// Get the system's default huge page size.
///
/// If no huge pages are supported, `default_hugepage` will return `None`.
#[cfg(any(target_os = "linux", windows))]
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
#[inline(always)]
#[cfg(feature = "nightly")]
pub fn default_hugepage() -> Option<usize> {
    *DEFAULT_HUGEPAGE
}

/// Get the system's default huge page size.
///
/// If no huge pages are supported, `default_hugepage` will return `None`.
#[cfg(any(target_os = "linux", windows))]
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
#[inline(always)]
#[cfg(not(feature = "nightly"))]
pub fn default_hugepage() -> Option<usize> {
    priv_default_hugepage()
}

#[cfg(feature = "nightly")]
#[cfg(any(target_os = "linux", windows))]
lazy_static!{ static ref DEFAULT_HUGEPAGE: Option<usize> = priv_default_hugepage(); }

#[cfg(target_os = "linux")]
fn priv_default_hugepage() -> Option<usize> {
    // Parse /proc/meminfo looking for the line 'Hugepagesize: xxx kB'.
    // TODO(joshlf): Implement
    None
}

#[cfg(windows)]
fn priv_default_hugepage() -> Option<usize> {
    use self::kernel32::GetLargePageMinimum;
    unsafe {
        let size = GetLargePageMinimum();
        // While u64 (GetLargePageMinimum's return type) might be larger than usize (on 32-bit
        // systems), if 'size' were to overflow usize (and thus be larger than 2^32), that would
        // imply that the huge page size was too large for the address of the second huge page on
        // the system to be representable with a pointer. Obviously that wouldn't happen, so we
        // don't bother to check for overflow.
        if size == 0 { None } else { Some(size as usize) }
    }
}

#[cfg(test)]
mod tests {
    #[test]
    #[ignore]  // Doesn't work in CI. Run `cargo test --  --ignored` to test locally.
    #[cfg(target_os = "linux")]
    fn test_hugepage_supported() {
        use core::usize::MAX;
        use std::fs::metadata;
        use super::hugepage_supported;

        let max = MAX - (MAX >> 1); // largest power of two representable by usize
        let mut size = 512; // start off at 512 so it will be 1024 in the first loop iteration
        // this has the effect of letting size <= max after the 'size *= 2' line
        while size < max {
            size *= 2;
            let path = get_linux_hugepage_directory!(size.trailing_zeros());

            let supported = match metadata(path) {
                Ok(_) => true,
                Err(_) => false,
            };

            assert_eq!(supported, hugepage_supported(size));
        }
    }
}