]>
git.proxmox.com Git - mirror_zfs.git/blob - module/spl/spl-generic.c
dc3e74aa5042a42fbcc4b4093727308a42503454
1 /*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://zfsonlinux.org/>.
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 * You should have received a copy of the GNU General Public License along
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Generic Implementation.
25 \*****************************************************************************/
27 #include <sys/sysmacros.h>
28 #include <sys/systeminfo.h>
29 #include <sys/vmsystm.h>
32 #include <sys/kmem_cache.h>
34 #include <sys/mutex.h>
35 #include <sys/rwlock.h>
36 #include <sys/taskq.h>
39 #include <sys/debug.h>
41 #include <sys/kstat.h>
43 #include <linux/ctype.h>
44 #include <linux/kmod.h>
45 #include <linux/math64_compat.h>
46 #include <linux/proc_compat.h>
48 char spl_version
[32] = "SPL v" SPL_META_VERSION
"-" SPL_META_RELEASE
;
49 EXPORT_SYMBOL(spl_version
);
51 unsigned long spl_hostid
= 0;
52 EXPORT_SYMBOL(spl_hostid
);
53 module_param(spl_hostid
, ulong
, 0644);
54 MODULE_PARM_DESC(spl_hostid
, "The system hostid.");
59 #if BITS_PER_LONG == 32
61 * Support 64/64 => 64 division on a 32-bit platform. While the kernel
62 * provides a div64_u64() function for this we do not use it because the
63 * implementation is flawed. There are cases which return incorrect
64 * results as late as linux-2.6.35. Until this is fixed upstream the
65 * spl must provide its own implementation.
67 * This implementation is a slightly modified version of the algorithm
68 * proposed by the book 'Hacker's Delight'. The original source can be
69 * found here and is available for use without restriction.
71 * http://www.hackersdelight.org/HDcode/newCode/divDouble.c
75 * Calculate number of leading of zeros for a 64-bit value.
84 if (x
<= 0x00000000FFFFFFFFULL
) {n
= n
+ 32; x
= x
<< 32;}
85 if (x
<= 0x0000FFFFFFFFFFFFULL
) {n
= n
+ 16; x
= x
<< 16;}
86 if (x
<= 0x00FFFFFFFFFFFFFFULL
) {n
= n
+ 8; x
= x
<< 8;}
87 if (x
<= 0x0FFFFFFFFFFFFFFFULL
) {n
= n
+ 4; x
= x
<< 4;}
88 if (x
<= 0x3FFFFFFFFFFFFFFFULL
) {n
= n
+ 2; x
= x
<< 2;}
89 if (x
<= 0x7FFFFFFFFFFFFFFFULL
) {n
= n
+ 1;}
95 * Newer kernels have a div_u64() function but we define our own
96 * to simplify portibility between kernel versions.
98 static inline uint64_t
99 __div_u64(uint64_t u
, uint32_t v
)
106 * Implementation of 64-bit unsigned division for 32-bit machines.
108 * First the procedure takes care of the case in which the divisor is a
109 * 32-bit quantity. There are two subcases: (1) If the left half of the
110 * dividend is less than the divisor, one execution of do_div() is all that
111 * is required (overflow is not possible). (2) Otherwise it does two
112 * divisions, using the grade school method.
115 __udivdi3(uint64_t u
, uint64_t v
)
117 uint64_t u0
, u1
, v1
, q0
, q1
, k
;
120 if (v
>> 32 == 0) { // If v < 2**32:
121 if (u
>> 32 < v
) { // If u/v cannot overflow,
122 return __div_u64(u
, v
); // just do one division.
123 } else { // If u/v would overflow:
124 u1
= u
>> 32; // Break u into two halves.
126 q1
= __div_u64(u1
, v
); // First quotient digit.
127 k
= u1
- q1
* v
; // First remainder, < v.
129 q0
= __div_u64(u0
, v
); // Seconds quotient digit.
130 return (q1
<< 32) + q0
;
132 } else { // If v >= 2**32:
133 n
= nlz64(v
); // 0 <= n <= 31.
134 v1
= (v
<< n
) >> 32; // Normalize divisor, MSB is 1.
135 u1
= u
>> 1; // To ensure no overflow.
136 q1
= __div_u64(u1
, v1
); // Get quotient from
137 q0
= (q1
<< n
) >> 31; // Undo normalization and
138 // division of u by 2.
139 if (q0
!= 0) // Make q0 correct or
140 q0
= q0
- 1; // too small by 1.
141 if ((u
- q0
* v
) >= v
)
142 q0
= q0
+ 1; // Now q0 is correct.
147 EXPORT_SYMBOL(__udivdi3
);
150 * Implementation of 64-bit signed division for 32-bit machines.
153 __divdi3(int64_t u
, int64_t v
)
156 q
= __udivdi3(abs64(u
), abs64(v
));
157 t
= (u
^ v
) >> 63; // If u, v have different
158 return (q
^ t
) - t
; // signs, negate q.
160 EXPORT_SYMBOL(__divdi3
);
163 * Implementation of 64-bit unsigned modulo for 32-bit machines.
166 __umoddi3(uint64_t dividend
, uint64_t divisor
)
168 return (dividend
- (divisor
* __udivdi3(dividend
, divisor
)));
170 EXPORT_SYMBOL(__umoddi3
);
172 #if defined(__arm) || defined(__arm__)
174 * Implementation of 64-bit (un)signed division for 32-bit arm machines.
176 * Run-time ABI for the ARM Architecture (page 20). A pair of (unsigned)
177 * long longs is returned in {{r0, r1}, {r2,r3}}, the quotient in {r0, r1},
178 * and the remainder in {r2, r3}. The return type is specifically left
179 * set to 'void' to ensure the compiler does not overwrite these registers
180 * during the return. All results are in registers as per ABI
183 __aeabi_uldivmod(uint64_t u
, uint64_t v
)
188 res
= __udivdi3(u
, v
);
189 mod
= __umoddi3(u
, v
);
191 register uint32_t r0
asm("r0") = (res
& 0xFFFFFFFF);
192 register uint32_t r1
asm("r1") = (res
>> 32);
193 register uint32_t r2
asm("r2") = (mod
& 0xFFFFFFFF);
194 register uint32_t r3
asm("r3") = (mod
>> 32);
197 : "+r"(r0
), "+r"(r1
), "+r"(r2
),"+r"(r3
) /* output */
198 : "r"(r0
), "r"(r1
), "r"(r2
), "r"(r3
)); /* input */
203 EXPORT_SYMBOL(__aeabi_uldivmod
);
206 __aeabi_ldivmod(int64_t u
, int64_t v
)
211 res
= __divdi3(u
, v
);
212 mod
= __umoddi3(u
, v
);
214 register uint32_t r0
asm("r0") = (res
& 0xFFFFFFFF);
215 register uint32_t r1
asm("r1") = (res
>> 32);
216 register uint32_t r2
asm("r2") = (mod
& 0xFFFFFFFF);
217 register uint32_t r3
asm("r3") = (mod
>> 32);
220 : "+r"(r0
), "+r"(r1
), "+r"(r2
),"+r"(r3
) /* output */
221 : "r"(r0
), "r"(r1
), "r"(r2
), "r"(r3
)); /* input */
226 EXPORT_SYMBOL(__aeabi_ldivmod
);
227 #endif /* __arm || __arm__ */
228 #endif /* BITS_PER_LONG */
230 /* NOTE: The strtoxx behavior is solely based on my reading of the Solaris
231 * ddi_strtol(9F) man page. I have not verified the behavior of these
232 * functions against their Solaris counterparts. It is possible that I
233 * may have misinterpreted the man page or the man page is incorrect.
235 int ddi_strtoul(const char *, char **, int, unsigned long *);
236 int ddi_strtol(const char *, char **, int, long *);
237 int ddi_strtoull(const char *, char **, int, unsigned long long *);
238 int ddi_strtoll(const char *, char **, int, long long *);
240 #define define_ddi_strtoux(type, valtype) \
241 int ddi_strtou##type(const char *str, char **endptr, \
242 int base, valtype *result) \
244 valtype last_value, value = 0; \
245 char *ptr = (char *)str; \
246 int flag = 1, digit; \
248 if (strlen(ptr) == 0) \
251 /* Auto-detect base based on prefix */ \
253 if (str[0] == '0') { \
254 if (tolower(str[1])=='x' && isxdigit(str[2])) { \
255 base = 16; /* hex */ \
257 } else if (str[1] >= '0' && str[1] < 8) { \
258 base = 8; /* octal */ \
264 base = 10; /* decimal */ \
270 digit = *ptr - '0'; \
271 else if (isalpha(*ptr)) \
272 digit = tolower(*ptr) - 'a' + 10; \
279 last_value = value; \
280 value = value * base + digit; \
281 if (last_value > value) /* Overflow */ \
292 *endptr = (char *)(flag ? ptr : str); \
297 #define define_ddi_strtox(type, valtype) \
298 int ddi_strto##type(const char *str, char **endptr, \
299 int base, valtype *result) \
304 rc = ddi_strtou##type(str + 1, endptr, base, result); \
306 if (*endptr == str + 1) \
307 *endptr = (char *)str; \
309 *result = -*result; \
312 rc = ddi_strtou##type(str, endptr, base, result); \
318 define_ddi_strtoux(l
, unsigned long)
319 define_ddi_strtox(l
, long)
320 define_ddi_strtoux(ll
, unsigned long long)
321 define_ddi_strtox(ll
, long long)
323 EXPORT_SYMBOL(ddi_strtoul
);
324 EXPORT_SYMBOL(ddi_strtol
);
325 EXPORT_SYMBOL(ddi_strtoll
);
326 EXPORT_SYMBOL(ddi_strtoull
);
329 ddi_copyin(const void *from
, void *to
, size_t len
, int flags
)
331 /* Fake ioctl() issued by kernel, 'from' is a kernel address */
332 if (flags
& FKIOCTL
) {
333 memcpy(to
, from
, len
);
337 return copyin(from
, to
, len
);
339 EXPORT_SYMBOL(ddi_copyin
);
342 ddi_copyout(const void *from
, void *to
, size_t len
, int flags
)
344 /* Fake ioctl() issued by kernel, 'from' is a kernel address */
345 if (flags
& FKIOCTL
) {
346 memcpy(to
, from
, len
);
350 return copyout(from
, to
, len
);
352 EXPORT_SYMBOL(ddi_copyout
);
354 #ifndef HAVE_PUT_TASK_STRUCT
356 * This is only a stub function which should never be used. The SPL should
357 * never be putting away the last reference on a task structure so this will
358 * not be called. However, we still need to define it so the module does not
359 * have undefined symbol at load time. That all said if this impossible
360 * thing does somehow happen PANIC immediately so we know about it.
363 __put_task_struct(struct task_struct
*t
)
365 PANIC("Unexpectly put last reference on task %d\n", (int)t
->pid
);
367 EXPORT_SYMBOL(__put_task_struct
);
368 #endif /* HAVE_PUT_TASK_STRUCT */
371 * Read the unique system identifier from the /etc/hostid file.
373 * The behavior of /usr/bin/hostid on Linux systems with the
374 * regular eglibc and coreutils is:
376 * 1. Generate the value if the /etc/hostid file does not exist
377 * or if the /etc/hostid file is less than four bytes in size.
379 * 2. If the /etc/hostid file is at least 4 bytes, then return
380 * the first four bytes [0..3] in native endian order.
382 * 3. Always ignore bytes [4..] if they exist in the file.
384 * Only the first four bytes are significant, even on systems that
385 * have a 64-bit word size.
389 * eglibc: sysdeps/unix/sysv/linux/gethostid.c
390 * coreutils: src/hostid.c
394 * The /etc/hostid file on Solaris is a text file that often reads:
399 * Directly copying this file to Linux results in a constant
400 * hostid of 4f442023 because the default comment constitutes
401 * the first four bytes of the file.
405 char *spl_hostid_path
= HW_HOSTID_PATH
;
406 module_param(spl_hostid_path
, charp
, 0444);
407 MODULE_PARM_DESC(spl_hostid_path
, "The system hostid file (/etc/hostid)");
417 file
= kobj_open_file(spl_hostid_path
);
419 if (file
== (struct _buf
*)-1)
422 result
= kobj_get_filesize(file
, &size
);
426 "SPL: kobj_get_filesize returned %i on %s\n",
427 result
, spl_hostid_path
);
428 kobj_close_file(file
);
432 if (size
< sizeof(HW_HOSTID_MASK
)) {
434 "SPL: Ignoring the %s file because it is %llu bytes; "
435 "expecting %lu bytes instead.\n", spl_hostid_path
,
436 size
, (unsigned long)sizeof(HW_HOSTID_MASK
));
437 kobj_close_file(file
);
441 /* Read directly into the variable like eglibc does. */
442 /* Short reads are okay; native behavior is preserved. */
443 result
= kobj_read_file(file
, (char *)&hostid
, sizeof(hostid
), 0);
447 "SPL: kobj_read_file returned %i on %s\n",
448 result
, spl_hostid_path
);
449 kobj_close_file(file
);
453 /* Mask down to 32 bits like coreutils does. */
454 spl_hostid
= hostid
& HW_HOSTID_MASK
;
455 kobj_close_file(file
);
460 zone_get_hostid(void *zone
)
462 static int first
= 1;
464 /* Only the global zone is supported */
465 ASSERT(zone
== NULL
);
470 spl_hostid
&= HW_HOSTID_MASK
;
472 * Get the hostid if it was not passed as a module parameter.
473 * Try reading the /etc/hostid file directly.
475 if (spl_hostid
== 0 && hostid_read())
479 printk(KERN_NOTICE
"SPL: using hostid 0x%08x\n",
480 (unsigned int) spl_hostid
);
485 EXPORT_SYMBOL(zone_get_hostid
);
492 rc
= spl_kmem_init();
496 rc
= spl_vmem_init();
517 if ((rc
= spl_kvmem_init()))
520 if ((rc
= spl_mutex_init()))
523 if ((rc
= spl_rw_init()))
526 if ((rc
= spl_tsd_init()))
529 if ((rc
= spl_taskq_init()))
532 if ((rc
= spl_kmem_cache_init()))
535 if ((rc
= spl_vn_init()))
538 if ((rc
= spl_proc_init()))
541 if ((rc
= spl_kstat_init()))
544 if ((rc
= spl_zlib_init()))
547 printk(KERN_NOTICE
"SPL: Loaded module v%s-%s%s\n", SPL_META_VERSION
,
548 SPL_META_RELEASE
, SPL_DEBUG_STR
);
558 spl_kmem_cache_fini();
570 printk(KERN_NOTICE
"SPL: Failed to Load Solaris Porting Layer "
571 "v%s-%s%s, rc = %d\n", SPL_META_VERSION
, SPL_META_RELEASE
,
580 printk(KERN_NOTICE
"SPL: Unloaded module v%s-%s%s\n",
581 SPL_META_VERSION
, SPL_META_RELEASE
, SPL_DEBUG_STR
);
586 spl_kmem_cache_fini();
594 module_init(spl_init
);
595 module_exit(spl_fini
);
597 MODULE_DESCRIPTION("Solaris Porting Layer");
598 MODULE_AUTHOR(SPL_META_AUTHOR
);
599 MODULE_LICENSE(SPL_META_LICENSE
);
600 MODULE_VERSION(SPL_META_VERSION
"-" SPL_META_RELEASE
);