Whamcloud - gitweb
LU-9859 libcfs: remove unnecessary cfs_block_allsigs() calls
[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 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/fs.h>
37 #include <linux/fs_struct.h>
38 #include <linux/sched.h>
39 #ifdef HAVE_SCHED_HEADERS
40 #include <linux/sched/signal.h>
41 #include <linux/sched/mm.h>
42 #endif
43 #include <linux/uaccess.h>
44
45 #if defined(CONFIG_KGDB)
46 #include <asm/kgdb.h>
47 #endif
48
49 #include <libcfs/linux/linux-time.h>
50
51 #ifndef HAVE_KTIME_GET_TS64
52 void ktime_get_ts64(struct timespec64 *ts)
53 {
54         struct timespec now;
55
56         ktime_get_ts(&now);
57         *ts = timespec_to_timespec64(now);
58 }
59 EXPORT_SYMBOL(ktime_get_ts64);
60 #endif /* HAVE_KTIME_GET_TS64 */
61
62 #ifndef HAVE_KTIME_GET_REAL_TS64
63 void ktime_get_real_ts64(struct timespec64 *ts)
64 {
65         struct timespec now;
66
67         getnstimeofday(&now);
68         *ts = timespec_to_timespec64(now);
69 }
70 EXPORT_SYMBOL(ktime_get_real_ts64);
71 #endif /* HAVE_KTIME_GET_REAL_TS64 */
72
73 #ifndef HAVE_KTIME_GET_REAL_SECONDS
74 /*
75  * Get the seconds portion of CLOCK_REALTIME (wall clock).
76  * This is the clock that can be altered by NTP and is
77  * independent of a reboot.
78  */
79 time64_t ktime_get_real_seconds(void)
80 {
81         return (time64_t)get_seconds();
82 }
83 EXPORT_SYMBOL(ktime_get_real_seconds);
84 #endif /* HAVE_KTIME_GET_REAL_SECONDS */
85
86 #ifndef HAVE_KTIME_GET_SECONDS
87 /*
88  * Get the seconds portion of CLOCK_MONOTONIC
89  * This clock is immutable and is reset across
90  * reboots. For older platforms this is a
91  * wrapper around get_seconds which is valid
92  * until 2038. By that time this will be gone
93  * one would hope.
94  */
95 time64_t ktime_get_seconds(void)
96 {
97         struct timespec64 now;
98
99         ktime_get_ts64(&now);
100         return now.tv_sec;
101 }
102 EXPORT_SYMBOL(ktime_get_seconds);
103 #endif /* HAVE_KTIME_GET_SECONDS */
104
105 int cfs_kernel_write(struct file *filp, const void *buf, size_t count,
106                      loff_t *pos)
107 {
108 #ifdef HAVE_NEW_KERNEL_WRITE
109         return kernel_write(filp, buf, count, pos);
110 #else
111         mm_segment_t __old_fs = get_fs();
112         int rc;
113
114         set_fs(KERNEL_DS);
115         rc = vfs_write(filp, (__force const char __user *)buf, count, pos);
116         set_fs(__old_fs);
117
118         return rc;
119 #endif
120 }
121 EXPORT_SYMBOL(cfs_kernel_write);
122
123 ssize_t cfs_kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
124 {
125 #ifdef HAVE_KERNEL_READ_LAST_POSP
126         return kernel_read(file, buf, count, pos);
127 #else
128         ssize_t size = kernel_read(file, *pos, buf, count);
129
130         if (size > 0)
131                 *pos += size;
132         return size;
133 #endif
134 }
135 EXPORT_SYMBOL(cfs_kernel_read);
136
137 #ifndef HAVE_KSET_FIND_OBJ
138 struct kobject *kset_find_obj(struct kset *kset, const char *name)
139 {
140         struct kobject *ret = NULL;
141         struct kobject *k;
142
143         spin_lock(&kset->list_lock);
144
145         list_for_each_entry(k, &kset->list, entry) {
146                 if (kobject_name(k) && !strcmp(kobject_name(k), name)) {
147                         if (kref_get_unless_zero(&k->kref))
148                                 ret = k;
149                         break;
150                 }
151         }
152
153         spin_unlock(&kset->list_lock);
154         return ret;
155 }
156 EXPORT_SYMBOL_GPL(kset_find_obj);
157 #endif
158
159 #ifndef HAVE_KSTRTOBOOL_FROM_USER
160 int kstrtobool_from_user(const char __user *s, size_t count, bool *res)
161 {
162         /* Longest string needed to differentiate, newline, terminator */
163         char buf[4];
164
165         count = min(count, sizeof(buf) - 1);
166         if (copy_from_user(buf, s, count))
167                 return -EFAULT;
168         buf[count] = '\0';
169         return strtobool(buf, res);
170 }
171 EXPORT_SYMBOL(kstrtobool_from_user);
172 #endif /* !HAVE_KSTRTOBOOL_FROM_USER */
173
174 sigset_t cfs_block_sigs(unsigned long sigs)
175 {
176         unsigned long  flags;
177         sigset_t        old;
178
179         spin_lock_irqsave(&current->sighand->siglock, flags);
180         old = current->blocked;
181         sigaddsetmask(&current->blocked, sigs);
182         recalc_sigpending();
183         spin_unlock_irqrestore(&current->sighand->siglock, flags);
184         return old;
185 }
186 EXPORT_SYMBOL(cfs_block_sigs);
187
188 /* Block all signals except for the @sigs */
189 sigset_t cfs_block_sigsinv(unsigned long sigs)
190 {
191         unsigned long flags;
192         sigset_t old;
193
194         spin_lock_irqsave(&current->sighand->siglock, flags);
195         old = current->blocked;
196         sigaddsetmask(&current->blocked, ~sigs);
197         recalc_sigpending();
198         spin_unlock_irqrestore(&current->sighand->siglock, flags);
199         return old;
200 }
201 EXPORT_SYMBOL(cfs_block_sigsinv);
202
203 void
204 cfs_restore_sigs(sigset_t old)
205 {
206         unsigned long  flags;
207
208         spin_lock_irqsave(&current->sighand->siglock, flags);
209         current->blocked = old;
210         recalc_sigpending();
211         spin_unlock_irqrestore(&current->sighand->siglock, flags);
212 }
213 EXPORT_SYMBOL(cfs_restore_sigs);
214
215 void
216 cfs_clear_sigpending(void)
217 {
218         unsigned long flags;
219
220         spin_lock_irqsave(&current->sighand->siglock, flags);
221         clear_tsk_thread_flag(current, TIF_SIGPENDING);
222         spin_unlock_irqrestore(&current->sighand->siglock, flags);
223 }
224 EXPORT_SYMBOL(cfs_clear_sigpending);