]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/spl/spl-generic.c
Imported Upstream version 0.6.5.9
[mirror_spl-debian.git] / module / spl / spl-generic.c
CommitLineData
716154c5
BB
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>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
3d6af2dd 9 * For details, see <http://zfsonlinux.org/>.
716154c5
BB
10 *
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.
715f6251 15 *
716154c5 16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Generic Implementation.
25\*****************************************************************************/
715f6251 26
14c5326c 27#include <sys/sysmacros.h>
99639e4a 28#include <sys/systeminfo.h>
af828292 29#include <sys/vmsystm.h>
0d54dcb5 30#include <sys/kobj.h>
c19c06f3 31#include <sys/kmem.h>
10946b02
AX
32#include <sys/kmem_cache.h>
33#include <sys/vmem.h>
9ab1ac14 34#include <sys/mutex.h>
d28db80f 35#include <sys/rwlock.h>
e9cb2b4f 36#include <sys/taskq.h>
9fe45dc1 37#include <sys/tsd.h>
5c1967eb 38#include <sys/zmod.h>
8d0f1ee9 39#include <sys/debug.h>
57d1b188 40#include <sys/proc.h>
04a479f7 41#include <sys/kstat.h>
d3126abe 42#include <sys/file.h>
10946b02 43#include <linux/ctype.h>
f23e92fa 44#include <linux/kmod.h>
10946b02 45#include <linux/math64_compat.h>
ae4c36ad 46#include <linux/proc_compat.h>
f23e92fa 47
0835057e 48char spl_version[32] = "SPL v" SPL_META_VERSION "-" SPL_META_RELEASE;
1a73940d 49EXPORT_SYMBOL(spl_version);
3561541c 50
9e4fb5c2 51unsigned long spl_hostid = 0;
f23e92fa 52EXPORT_SYMBOL(spl_hostid);
fa6f7d8f
DH
53module_param(spl_hostid, ulong, 0644);
54MODULE_PARM_DESC(spl_hostid, "The system hostid.");
8d0f1ee9 55
ac9cc135 56proc_t p0;
f1b59d26 57EXPORT_SYMBOL(p0);
70eadc19 58
a4bfd8ea 59#if BITS_PER_LONG == 32
b61a6e8b 60/*
a4bfd8ea
BB
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.
66 *
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.
70 *
71 * http://www.hackersdelight.org/HDcode/newCode/divDouble.c
72 */
73
74/*
75 * Calculate number of leading of zeros for a 64-bit value.
76 */
77static int
78nlz64(uint64_t x) {
79 register int n = 0;
80
81 if (x == 0)
82 return 64;
83
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;}
90
91 return n;
92}
93
94/*
95 * Newer kernels have a div_u64() function but we define our own
96 * to simplify portibility between kernel versions.
97 */
98static inline uint64_t
99__div_u64(uint64_t u, uint32_t v)
100{
101 (void) do_div(u, v);
102 return u;
103}
104
105/*
106 * Implementation of 64-bit unsigned division for 32-bit machines.
107 *
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.
b61a6e8b 113 */
1b4ad25e 114uint64_t
a4bfd8ea 115__udivdi3(uint64_t u, uint64_t v)
b61a6e8b 116{
a4bfd8ea
BB
117 uint64_t u0, u1, v1, q0, q1, k;
118 int n;
119
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.
125 u0 = u & 0xFFFFFFFF;
126 q1 = __div_u64(u1, v); // First quotient digit.
127 k = u1 - q1 * v; // First remainder, < v.
128 u0 += (k << 32);
129 q0 = __div_u64(u0, v); // Seconds quotient digit.
130 return (q1 << 32) + q0;
131 }
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.
ef6f91ce 143
a4bfd8ea
BB
144 return q0;
145 }
550f1705 146}
147EXPORT_SYMBOL(__udivdi3);
148
149/*
a4bfd8ea
BB
150 * Implementation of 64-bit signed division for 32-bit machines.
151 */
152int64_t
153__divdi3(int64_t u, int64_t v)
154{
155 int64_t q, t;
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.
159}
160EXPORT_SYMBOL(__divdi3);
161
162/*
163 * Implementation of 64-bit unsigned modulo for 32-bit machines.
550f1705 164 */
1b4ad25e
AZ
165uint64_t
166__umoddi3(uint64_t dividend, uint64_t divisor)
550f1705 167{
1b4ad25e 168 return (dividend - (divisor * __udivdi3(dividend, divisor)));
b61a6e8b 169}
550f1705 170EXPORT_SYMBOL(__umoddi3);
a4bfd8ea 171
ef6f91ce
JL
172#if defined(__arm) || defined(__arm__)
173/*
93b0dc92
JL
174 * Implementation of 64-bit (un)signed division for 32-bit arm machines.
175 *
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
ef6f91ce 181 */
93b0dc92 182void
ef6f91ce
JL
183__aeabi_uldivmod(uint64_t u, uint64_t v)
184{
93b0dc92
JL
185 uint64_t res;
186 uint64_t mod;
187
188 res = __udivdi3(u, v);
189 mod = __umoddi3(u, v);
190 {
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);
195
196 asm volatile(""
197 : "+r"(r0), "+r"(r1), "+r"(r2),"+r"(r3) /* output */
198 : "r"(r0), "r"(r1), "r"(r2), "r"(r3)); /* input */
199
200 return; /* r0; */
201 }
ef6f91ce
JL
202}
203EXPORT_SYMBOL(__aeabi_uldivmod);
204
93b0dc92 205void
ef6f91ce
JL
206__aeabi_ldivmod(int64_t u, int64_t v)
207{
93b0dc92
JL
208 int64_t res;
209 uint64_t mod;
210
211 res = __divdi3(u, v);
212 mod = __umoddi3(u, v);
213 {
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);
218
219 asm volatile(""
220 : "+r"(r0), "+r"(r1), "+r"(r2),"+r"(r3) /* output */
221 : "r"(r0), "r"(r1), "r"(r2), "r"(r3)); /* input */
222
223 return; /* r0; */
224 }
ef6f91ce
JL
225}
226EXPORT_SYMBOL(__aeabi_ldivmod);
227#endif /* __arm || __arm__ */
96dded38 228#endif /* BITS_PER_LONG */
b61a6e8b 229
b871b8cd
BB
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
96dded38 233 * may have misinterpreted the man page or the man page is incorrect.
b871b8cd 234 */
2ee63a54
BB
235int ddi_strtoul(const char *, char **, int, unsigned long *);
236int ddi_strtol(const char *, char **, int, long *);
237int ddi_strtoull(const char *, char **, int, unsigned long long *);
238int ddi_strtoll(const char *, char **, int, long long *);
239
240#define define_ddi_strtoux(type, valtype) \
241int ddi_strtou##type(const char *str, char **endptr, \
b871b8cd 242 int base, valtype *result) \
2ee63a54 243{ \
b871b8cd
BB
244 valtype last_value, value = 0; \
245 char *ptr = (char *)str; \
246 int flag = 1, digit; \
247 \
248 if (strlen(ptr) == 0) \
249 return EINVAL; \
250 \
251 /* Auto-detect base based on prefix */ \
252 if (!base) { \
253 if (str[0] == '0') { \
254 if (tolower(str[1])=='x' && isxdigit(str[2])) { \
255 base = 16; /* hex */ \
256 ptr += 2; \
257 } else if (str[1] >= '0' && str[1] < 8) { \
258 base = 8; /* octal */ \
259 ptr += 1; \
260 } else { \
261 return EINVAL; \
262 } \
263 } else { \
264 base = 10; /* decimal */ \
265 } \
266 } \
267 \
268 while (1) { \
269 if (isdigit(*ptr)) \
270 digit = *ptr - '0'; \
271 else if (isalpha(*ptr)) \
272 digit = tolower(*ptr) - 'a' + 10; \
273 else \
274 break; \
275 \
276 if (digit >= base) \
277 break; \
2ee63a54 278 \
b871b8cd
BB
279 last_value = value; \
280 value = value * base + digit; \
281 if (last_value > value) /* Overflow */ \
282 return ERANGE; \
2ee63a54 283 \
b871b8cd
BB
284 flag = 1; \
285 ptr++; \
2ee63a54
BB
286 } \
287 \
b871b8cd
BB
288 if (flag) \
289 *result = value; \
290 \
291 if (endptr) \
292 *endptr = (char *)(flag ? ptr : str); \
293 \
294 return 0; \
2ee63a54
BB
295} \
296
297#define define_ddi_strtox(type, valtype) \
298int ddi_strto##type(const char *str, char **endptr, \
299 int base, valtype *result) \
b871b8cd
BB
300{ \
301 int rc; \
2ee63a54
BB
302 \
303 if (*str == '-') { \
b871b8cd
BB
304 rc = ddi_strtou##type(str + 1, endptr, base, result); \
305 if (!rc) { \
306 if (*endptr == str + 1) \
307 *endptr = (char *)str; \
308 else \
309 *result = -*result; \
310 } \
2ee63a54 311 } else { \
b871b8cd 312 rc = ddi_strtou##type(str, endptr, base, result); \
2ee63a54
BB
313 } \
314 \
b871b8cd
BB
315 return rc; \
316}
2ee63a54
BB
317
318define_ddi_strtoux(l, unsigned long)
319define_ddi_strtox(l, long)
320define_ddi_strtoux(ll, unsigned long long)
321define_ddi_strtox(ll, long long)
322
2f5d55aa 323EXPORT_SYMBOL(ddi_strtoul);
2ee63a54
BB
324EXPORT_SYMBOL(ddi_strtol);
325EXPORT_SYMBOL(ddi_strtoll);
326EXPORT_SYMBOL(ddi_strtoull);
2f5d55aa 327
d3126abe
BB
328int
329ddi_copyin(const void *from, void *to, size_t len, int flags)
330{
331 /* Fake ioctl() issued by kernel, 'from' is a kernel address */
332 if (flags & FKIOCTL) {
333 memcpy(to, from, len);
334 return 0;
335 }
336
337 return copyin(from, to, len);
338}
339EXPORT_SYMBOL(ddi_copyin);
340
341int
342ddi_copyout(const void *from, void *to, size_t len, int flags)
343{
344 /* Fake ioctl() issued by kernel, 'from' is a kernel address */
345 if (flags & FKIOCTL) {
346 memcpy(to, from, len);
347 return 0;
348 }
349
350 return copyout(from, to, len);
351}
352EXPORT_SYMBOL(ddi_copyout);
353
e811949a
BB
354#ifndef HAVE_PUT_TASK_STRUCT
355/*
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
55abb092 360 * thing does somehow happen PANIC immediately so we know about it.
e811949a
BB
361 */
362void
363__put_task_struct(struct task_struct *t)
364{
55abb092 365 PANIC("Unexpectly put last reference on task %d\n", (int)t->pid);
e811949a
BB
366}
367EXPORT_SYMBOL(__put_task_struct);
368#endif /* HAVE_PUT_TASK_STRUCT */
369
0d54dcb5
DH
370/*
371 * Read the unique system identifier from the /etc/hostid file.
372 *
373 * The behavior of /usr/bin/hostid on Linux systems with the
374 * regular eglibc and coreutils is:
375 *
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.
378 *
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.
381 *
382 * 3. Always ignore bytes [4..] if they exist in the file.
383 *
384 * Only the first four bytes are significant, even on systems that
385 * have a 64-bit word size.
386 *
387 * See:
388 *
389 * eglibc: sysdeps/unix/sysv/linux/gethostid.c
390 * coreutils: src/hostid.c
391 *
392 * Notes:
393 *
394 * The /etc/hostid file on Solaris is a text file that often reads:
395 *
396 * # DO NOT EDIT
397 * "0123456789"
398 *
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.
402 *
403 */
404
405char *spl_hostid_path = HW_HOSTID_PATH;
406module_param(spl_hostid_path, charp, 0444);
407MODULE_PARM_DESC(spl_hostid_path, "The system hostid file (/etc/hostid)");
408
409static int
410hostid_read(void)
411{
412 int result;
413 uint64_t size;
414 struct _buf *file;
9e4fb5c2 415 uint32_t hostid = 0;
0d54dcb5
DH
416
417 file = kobj_open_file(spl_hostid_path);
418
6b3b569d 419 if (file == (struct _buf *)-1)
0d54dcb5 420 return -1;
0d54dcb5
DH
421
422 result = kobj_get_filesize(file, &size);
423
424 if (result != 0) {
425 printk(KERN_WARNING
426 "SPL: kobj_get_filesize returned %i on %s\n",
427 result, spl_hostid_path);
428 kobj_close_file(file);
429 return -2;
430 }
431
432 if (size < sizeof(HW_HOSTID_MASK)) {
433 printk(KERN_WARNING
434 "SPL: Ignoring the %s file because it is %llu bytes; "
e8267acd
BB
435 "expecting %lu bytes instead.\n", spl_hostid_path,
436 size, (unsigned long)sizeof(HW_HOSTID_MASK));
0d54dcb5
DH
437 kobj_close_file(file);
438 return -3;
439 }
440
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);
444
445 if (result < 0) {
446 printk(KERN_WARNING
447 "SPL: kobj_read_file returned %i on %s\n",
448 result, spl_hostid_path);
449 kobj_close_file(file);
450 return -4;
451 }
452
453 /* Mask down to 32 bits like coreutils does. */
454 spl_hostid = hostid & HW_HOSTID_MASK;
455 kobj_close_file(file);
456 return 0;
457}
458
99639e4a
BB
459uint32_t
460zone_get_hostid(void *zone)
461{
a9f2397e 462 static int first = 1;
99639e4a
BB
463
464 /* Only the global zone is supported */
465 ASSERT(zone == NULL);
466
a9f2397e
ED
467 if (first) {
468 first = 0;
469
10946b02 470 spl_hostid &= HW_HOSTID_MASK;
a9f2397e
ED
471 /*
472 * Get the hostid if it was not passed as a module parameter.
9e4fb5c2 473 * Try reading the /etc/hostid file directly.
a9f2397e 474 */
10946b02 475 if (spl_hostid == 0 && hostid_read())
9e4fb5c2 476 spl_hostid = 0;
a9f2397e 477
10946b02 478
a9f2397e
ED
479 printk(KERN_NOTICE "SPL: using hostid 0x%08x\n",
480 (unsigned int) spl_hostid);
481 }
482
9e4fb5c2 483 return spl_hostid;
99639e4a
BB
484}
485EXPORT_SYMBOL(zone_get_hostid);
486
d1ff2312 487static int
10946b02 488spl_kvmem_init(void)
d1ff2312 489{
10946b02
AX
490 int rc = 0;
491
492 rc = spl_kmem_init();
493 if (rc)
494 goto out1;
034f1b33 495
10946b02 496 rc = spl_vmem_init();
d1ff2312 497 if (rc)
10946b02
AX
498 goto out2;
499
500 rc = spl_kmem_cache_init();
501 if (rc)
502 goto out3;
503
504 return (rc);
505out3:
506 spl_vmem_fini();
507out2:
508 spl_kmem_fini();
509out1:
510 return (rc);
511}
d1ff2312 512
10946b02
AX
513static void
514spl_kvmem_fini(void)
515{
516 spl_kmem_cache_fini();
517 spl_vmem_fini();
518 spl_kmem_fini();
d1ff2312 519}
d1ff2312 520
10946b02
AX
521static int __init
522spl_init(void)
57d1b188 523{
524 int rc = 0;
f23e92fa 525
ac9cc135
AX
526 bzero(&p0, sizeof (proc_t));
527
10946b02
AX
528 if ((rc = spl_kvmem_init()))
529 goto out1;
8d0f1ee9 530
9ab1ac14 531 if ((rc = spl_mutex_init()))
10946b02 532 goto out2;
9ab1ac14 533
d28db80f 534 if ((rc = spl_rw_init()))
10946b02 535 goto out3;
8d0f1ee9 536
d28db80f 537 if ((rc = spl_taskq_init()))
10946b02 538 goto out4;
af828292 539
12ff95ff 540 if ((rc = spl_vn_init()))
10946b02 541 goto out5;
04a479f7 542
1114ae6a 543 if ((rc = spl_proc_init()))
10946b02 544 goto out6;
e9cb2b4f 545
1114ae6a 546 if ((rc = spl_kstat_init()))
10946b02 547 goto out7;
d28db80f 548
1114ae6a 549 if ((rc = spl_tsd_init()))
10946b02 550 goto out8;
9fe45dc1 551
1114ae6a 552 if ((rc = spl_zlib_init()))
10946b02 553 goto out9;
12ff95ff 554
a9f2397e
ED
555 printk(KERN_NOTICE "SPL: Loaded module v%s-%s%s\n", SPL_META_VERSION,
556 SPL_META_RELEASE, SPL_DEBUG_STR);
10946b02
AX
557 return (rc);
558
9fe45dc1 559out9:
1114ae6a 560 spl_tsd_fini();
d28db80f 561out8:
1114ae6a 562 spl_kstat_fini();
d28db80f 563out7:
1114ae6a 564 spl_proc_fini();
d28db80f 565out6:
12ff95ff 566 spl_vn_fini();
d28db80f 567out5:
e9cb2b4f 568 spl_taskq_fini();
d28db80f
BB
569out4:
570 spl_rw_fini();
9ab1ac14 571out3:
572 spl_mutex_fini();
8d0f1ee9 573out2:
10946b02 574 spl_kvmem_fini();
d28db80f 575out1:
0835057e
BB
576 printk(KERN_NOTICE "SPL: Failed to Load Solaris Porting Layer "
577 "v%s-%s%s, rc = %d\n", SPL_META_VERSION, SPL_META_RELEASE,
578 SPL_DEBUG_STR, rc);
10946b02
AX
579
580 return (rc);
70eadc19 581}
582
10946b02 583static void __exit
51a727e9 584spl_fini(void)
70eadc19 585{
0835057e
BB
586 printk(KERN_NOTICE "SPL: Unloaded module v%s-%s%s\n",
587 SPL_META_VERSION, SPL_META_RELEASE, SPL_DEBUG_STR);
1114ae6a
BB
588 spl_zlib_fini();
589 spl_tsd_fini();
590 spl_kstat_fini();
591 spl_proc_fini();
12ff95ff 592 spl_vn_fini();
e9cb2b4f 593 spl_taskq_fini();
d28db80f 594 spl_rw_fini();
2fb9b26a 595 spl_mutex_fini();
10946b02 596 spl_kvmem_fini();
51a727e9 597}
51a727e9 598
70eadc19 599module_init(spl_init);
600module_exit(spl_fini);
601
70eadc19 602MODULE_DESCRIPTION("Solaris Porting Layer");
10946b02
AX
603MODULE_AUTHOR(SPL_META_AUTHOR);
604MODULE_LICENSE(SPL_META_LICENSE);
33a20369 605MODULE_VERSION(SPL_META_VERSION "-" SPL_META_RELEASE);