Whamcloud - gitweb
8a1c50ace4d4041bac8d75253e7fbde5f2db24ae
[fs/lustre-release.git] / libcfs / libcfs / linux / linux-prim.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2013, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_LNET
34
35 #include <linux/kallsyms.h>
36 #include <linux/module.h>
37 #include <linux/kernel.h>
38 #include <linux/fs.h>
39 #include <linux/fs_struct.h>
40 #include <linux/sched.h>
41 #ifdef HAVE_SCHED_HEADERS
42 #include <linux/sched/signal.h>
43 #include <linux/sched/mm.h>
44 #endif
45 #include <linux/uaccess.h>
46
47 #if defined(CONFIG_KGDB)
48 #include <asm/kgdb.h>
49 #endif
50
51 #include <libcfs/linux/linux-time.h>
52
53 #ifndef HAVE_KTIME_GET_TS64
54 void ktime_get_ts64(struct timespec64 *ts)
55 {
56         struct timespec now;
57
58         ktime_get_ts(&now);
59         *ts = timespec_to_timespec64(now);
60 }
61 EXPORT_SYMBOL(ktime_get_ts64);
62 #endif /* HAVE_KTIME_GET_TS64 */
63
64 #ifndef HAVE_KTIME_GET_REAL_TS64
65 void ktime_get_real_ts64(struct timespec64 *ts)
66 {
67         struct timespec now;
68
69         getnstimeofday(&now);
70         *ts = timespec_to_timespec64(now);
71 }
72 EXPORT_SYMBOL(ktime_get_real_ts64);
73 #endif /* HAVE_KTIME_GET_REAL_TS64 */
74
75 #ifndef HAVE_KTIME_GET_REAL_SECONDS
76 /*
77  * Get the seconds portion of CLOCK_REALTIME (wall clock).
78  * This is the clock that can be altered by NTP and is
79  * independent of a reboot.
80  */
81 time64_t ktime_get_real_seconds(void)
82 {
83         return (time64_t)get_seconds();
84 }
85 EXPORT_SYMBOL(ktime_get_real_seconds);
86 #endif /* HAVE_KTIME_GET_REAL_SECONDS */
87
88 #ifndef HAVE_KTIME_GET_SECONDS
89 /*
90  * Get the seconds portion of CLOCK_MONOTONIC
91  * This clock is immutable and is reset across
92  * reboots. For older platforms this is a
93  * wrapper around get_seconds which is valid
94  * until 2038. By that time this will be gone
95  * one would hope.
96  */
97 time64_t ktime_get_seconds(void)
98 {
99         struct timespec64 now;
100
101         ktime_get_ts64(&now);
102         return now.tv_sec;
103 }
104 EXPORT_SYMBOL(ktime_get_seconds);
105 #endif /* HAVE_KTIME_GET_SECONDS */
106
107 static int (*cfs_apply_workqueue_attrs_t)(struct workqueue_struct *wq,
108                                           const struct workqueue_attrs *attrs);
109
110 int cfs_apply_workqueue_attrs(struct workqueue_struct *wq,
111                               const struct workqueue_attrs *attrs)
112 {
113         return cfs_apply_workqueue_attrs_t(wq, attrs);
114 }
115 EXPORT_SYMBOL_GPL(cfs_apply_workqueue_attrs);
116
117 struct kmem_cache (*cfs_radix_tree_node_cachep);
118
119 void cfs_arch_init(void)
120 {
121 #ifndef HAVE_WAIT_VAR_EVENT
122         wait_bit_init();
123 #endif
124         cfs_apply_workqueue_attrs_t =
125                 (void *)kallsyms_lookup_name("apply_workqueue_attrs");
126 }
127
128 int cfs_kernel_write(struct file *filp, const void *buf, size_t count,
129                      loff_t *pos)
130 {
131 #ifdef HAVE_NEW_KERNEL_WRITE
132         return kernel_write(filp, buf, count, pos);
133 #else
134         mm_segment_t __old_fs = get_fs();
135         int rc;
136
137         set_fs(KERNEL_DS);
138         rc = vfs_write(filp, (__force const char __user *)buf, count, pos);
139         set_fs(__old_fs);
140
141         return rc;
142 #endif
143 }
144 EXPORT_SYMBOL(cfs_kernel_write);
145
146 ssize_t cfs_kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
147 {
148 #ifdef HAVE_KERNEL_READ_LAST_POSP
149         return kernel_read(file, buf, count, pos);
150 #else
151         ssize_t size = kernel_read(file, *pos, buf, count);
152
153         if (size > 0)
154                 *pos += size;
155         return size;
156 #endif
157 }
158 EXPORT_SYMBOL(cfs_kernel_read);
159
160 #ifndef HAVE_KSET_FIND_OBJ
161 struct kobject *kset_find_obj(struct kset *kset, const char *name)
162 {
163         struct kobject *ret = NULL;
164         struct kobject *k;
165
166         spin_lock(&kset->list_lock);
167
168         list_for_each_entry(k, &kset->list, entry) {
169                 if (kobject_name(k) && !strcmp(kobject_name(k), name)) {
170                         if (kref_get_unless_zero(&k->kref))
171                                 ret = k;
172                         break;
173                 }
174         }
175
176         spin_unlock(&kset->list_lock);
177         return ret;
178 }
179 EXPORT_SYMBOL_GPL(kset_find_obj);
180 #endif
181
182 #ifndef HAVE_KSTRTOBOOL_FROM_USER
183 int kstrtobool_from_user(const char __user *s, size_t count, bool *res)
184 {
185         /* Longest string needed to differentiate, newline, terminator */
186         char buf[4];
187
188         count = min(count, sizeof(buf) - 1);
189         if (copy_from_user(buf, s, count))
190                 return -EFAULT;
191         buf[count] = '\0';
192         return strtobool(buf, res);
193 }
194 EXPORT_SYMBOL(kstrtobool_from_user);
195 #endif /* !HAVE_KSTRTOBOOL_FROM_USER */
196
197 /* Block all signals except for the @sigs */
198 sigset_t cfs_block_sigsinv(unsigned long sigs)
199 {
200         unsigned long flags;
201         sigset_t old;
202
203         spin_lock_irqsave(&current->sighand->siglock, flags);
204         old = current->blocked;
205         sigaddsetmask(&current->blocked, ~sigs);
206         recalc_sigpending();
207         spin_unlock_irqrestore(&current->sighand->siglock, flags);
208         return old;
209 }
210 EXPORT_SYMBOL(cfs_block_sigsinv);
211
212 void
213 cfs_restore_sigs(sigset_t old)
214 {
215         unsigned long  flags;
216
217         spin_lock_irqsave(&current->sighand->siglock, flags);
218         current->blocked = old;
219         recalc_sigpending();
220         spin_unlock_irqrestore(&current->sighand->siglock, flags);
221 }
222 EXPORT_SYMBOL(cfs_restore_sigs);