Whamcloud - gitweb
LU-11997 ptlrpc: Properly swab ll_fiemap_info_key
[fs/lustre-release.git] / lustre / include / lustre_lib.h
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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, 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  * lustre/include/lustre_lib.h
33  *
34  * Basic Lustre library routines.
35  */
36
37 #ifndef _LUSTRE_LIB_H
38 #define _LUSTRE_LIB_H
39
40 /** \defgroup lib lib
41  *
42  * @{
43  */
44
45 #ifdef HAVE_SCHED_HEADERS
46 #include <linux/sched/signal.h>
47 #include <linux/sched/mm.h>
48 #endif
49
50 #include <libcfs/libcfs.h>
51 #include <uapi/linux/lustre/lustre_idl.h>
52 #include <uapi/linux/lustre/lustre_ver.h>
53 #include <uapi/linux/lustre/lustre_cfg.h>
54
55 /* target.c */
56 struct ptlrpc_request;
57 struct obd_export;
58 struct lu_target;
59 struct l_wait_info;
60 #include <lustre_ha.h>
61 #include <lustre_net.h>
62
63 #define LI_POISON 0x5a5a5a5a
64 #if BITS_PER_LONG > 32
65 # define LL_POISON 0x5a5a5a5a5a5a5a5aL
66 #else
67 # define LL_POISON 0x5a5a5a5aL
68 #endif
69 #define LP_POISON ((void *)LL_POISON)
70
71 #ifdef HAVE_SERVER_SUPPORT
72 int rev_import_init(struct obd_export *exp);
73 int target_handle_connect(struct ptlrpc_request *req);
74 int target_handle_disconnect(struct ptlrpc_request *req);
75 void target_destroy_export(struct obd_export *exp);
76 void target_committed_to_req(struct ptlrpc_request *req);
77 void target_cancel_recovery_timer(struct obd_device *obd);
78 void target_stop_recovery_thread(struct obd_device *obd);
79 void target_cleanup_recovery(struct obd_device *obd);
80 int target_queue_recovery_request(struct ptlrpc_request *req,
81                                   struct obd_device *obd);
82 int target_bulk_io(struct obd_export *exp, struct ptlrpc_bulk_desc *desc);
83 #endif
84
85 int target_pack_pool_reply(struct ptlrpc_request *req);
86 int do_set_info_async(struct obd_import *imp,
87                       int opcode, int version,
88                       size_t keylen, void *key,
89                       size_t vallen, void *val,
90                       struct ptlrpc_request_set *set);
91
92 void target_send_reply(struct ptlrpc_request *req, int rc, int fail_id);
93
94 /*
95  * l_wait_event is a flexible sleeping function, permitting simple caller
96  * configuration of interrupt and timeout sensitivity along with actions to
97  * be performed in the event of either exception.
98  *
99  * The first form of usage looks like this:
100  *
101  * struct l_wait_info lwi = LWI_TIMEOUT_INTR(timeout, timeout_handler,
102  *                                           intr_handler, callback_data);
103  * rc = l_wait_event(waitq, condition, &lwi);
104  *
105  * l_wait_event() makes the current process wait on 'waitq' until 'condition'
106  * is TRUE or a "killable" signal (SIGTERM, SIKGILL, SIGINT) is pending.  It
107  * returns 0 to signify 'condition' is TRUE, but if a signal wakes it before
108  * 'condition' becomes true, it optionally calls the specified 'intr_handler'
109  * if not NULL, and returns -EINTR.
110  *
111  * If a non-zero timeout is specified, signals are ignored until the timeout
112  * has expired.  At this time, if 'timeout_handler' is not NULL it is called.
113  * If it returns FALSE l_wait_event() continues to wait as described above with
114  * signals enabled.  Otherwise it returns -ETIMEDOUT.
115  *
116  * LWI_INTR(intr_handler, callback_data) is shorthand for
117  * LWI_TIMEOUT_INTR(0, NULL, intr_handler, callback_data)
118  *
119  * The second form of usage looks like this:
120  *
121  * struct l_wait_info lwi = LWI_TIMEOUT(timeout, timeout_handler);
122  * rc = l_wait_event(waitq, condition, &lwi);
123  *
124  * This form is the same as the first except that it COMPLETELY IGNORES
125  * SIGNALS.  The caller must therefore beware that if 'timeout' is zero, or if
126  * 'timeout_handler' is not NULL and returns FALSE, then the ONLY thing that
127  * can unblock the current process is 'condition' becoming TRUE.
128  *
129  * Another form of usage is:
130  * struct l_wait_info lwi = LWI_TIMEOUT_INTERVAL(timeout, interval,
131  *                                               timeout_handler);
132  * rc = l_wait_event(waitq, condition, &lwi);
133  * This is the same as previous case, but condition is checked once every
134  * 'interval' jiffies (if non-zero).
135  *
136  * Subtle synchronization point: this macro does *not* necessary takes
137  * wait-queue spin-lock before returning, and, hence, following idiom is safe
138  * ONLY when caller provides some external locking:
139  *
140  *             Thread1                            Thread2
141  *
142  *   l_wait_event(&obj->wq, ....);                                       (1)
143  *
144  *                                    wake_up(&obj->wq):                 (2)
145  *                                         spin_lock(&q->lock);          (2.1)
146  *                                         __wake_up_common(q, ...);     (2.2)
147  *                                         spin_unlock(&q->lock, flags); (2.3)
148  *
149  *   OBD_FREE_PTR(obj);                                                  (3)
150  *
151  * As l_wait_event() may "short-cut" execution and return without taking
152  * wait-queue spin-lock, some additional synchronization is necessary to
153  * guarantee that step (3) can begin only after (2.3) finishes.
154  *
155  * XXX nikita: some ptlrpc daemon threads have races of that sort.
156  *
157  */
158 static inline int back_to_sleep(void *arg)
159 {
160         return 0;
161 }
162
163 #define LWI_ON_SIGNAL_NOOP ((void (*)(void *))(-1))
164
165 struct l_wait_info {
166         long            lwi_timeout;
167         long            lwi_interval;
168         int             lwi_allow_intr;
169         int  (*lwi_on_timeout)(void *);
170         void (*lwi_on_signal)(void *);
171         void  *lwi_cb_data;
172 };
173
174 /* NB: LWI_TIMEOUT ignores signals completely */
175 #define LWI_TIMEOUT(time, cb, data)             \
176 ((struct l_wait_info) {                         \
177         .lwi_timeout    = time,                 \
178         .lwi_on_timeout = cb,                   \
179         .lwi_cb_data    = data,                 \
180         .lwi_interval   = 0,                    \
181         .lwi_allow_intr = 0                     \
182 })
183
184 #define LWI_TIMEOUT_INTERVAL(time, interval, cb, data)  \
185 ((struct l_wait_info) {                                 \
186         .lwi_timeout    = time,                         \
187         .lwi_on_timeout = cb,                           \
188         .lwi_cb_data    = data,                         \
189         .lwi_interval   = interval,                     \
190         .lwi_allow_intr = 0                             \
191 })
192
193 #define LWI_TIMEOUT_INTR(time, time_cb, sig_cb, data)   \
194 ((struct l_wait_info) {                                 \
195         .lwi_timeout    = time,                         \
196         .lwi_on_timeout = time_cb,                      \
197         .lwi_on_signal  = sig_cb,                       \
198         .lwi_cb_data    = data,                         \
199         .lwi_interval   = 0,                            \
200         .lwi_allow_intr = 0                             \
201 })
202
203 #define LWI_TIMEOUT_INTR_ALL(time, time_cb, sig_cb, data)       \
204 ((struct l_wait_info) {                                         \
205         .lwi_timeout    = time,                                 \
206         .lwi_on_timeout = time_cb,                              \
207         .lwi_on_signal  = sig_cb,                               \
208         .lwi_cb_data    = data,                                 \
209         .lwi_interval   = 0,                                    \
210         .lwi_allow_intr = 1                                     \
211 })
212
213 #define LWI_INTR(cb, data)  LWI_TIMEOUT_INTR(0, NULL, cb, data)
214
215 /**
216  * wait_queue_t of Linux (version < 2.6.34) is a FIFO list for exclusively
217  * waiting threads, which is not always desirable because all threads will
218  * be waken up again and again, even user only needs a few of them to be
219  * active most time. This is not good for performance because cache can
220  * be polluted by different threads.
221  *
222  * LIFO list can resolve this problem because we always wakeup the most
223  * recent active thread by default.
224  *
225  * NB: please don't call non-exclusive & exclusive wait on the same
226  * waitq if add_wait_queue_exclusive_head is used.
227  */
228 #define add_wait_queue_exclusive_head(waitq, link)              \
229 {                                                               \
230         unsigned long flags;                                    \
231                                                                 \
232         spin_lock_irqsave(&((waitq)->lock), flags);             \
233         __add_wait_queue_exclusive(waitq, link);                \
234         spin_unlock_irqrestore(&((waitq)->lock), flags);        \
235 }
236
237 /*
238  * wait for @condition to become true, but no longer than timeout, specified
239  * by @info.
240  */
241 #define __l_wait_event(wq, condition, info, ret, l_add_wait)                   \
242 do {                                                                           \
243         wait_queue_entry_t __wait;                                             \
244         long __timeout = info->lwi_timeout;                                    \
245         sigset_t __blocked;                                                    \
246         int   __allow_intr = info->lwi_allow_intr;                             \
247                                                                                \
248         ret = 0;                                                               \
249         if (condition)                                                         \
250                 break;                                                         \
251                                                                                \
252         init_waitqueue_entry(&__wait, current);                                \
253         l_add_wait(&wq, &__wait);                                              \
254                                                                                \
255         /* Block all signals (just the non-fatal ones if no timeout). */       \
256         if (info->lwi_on_signal != NULL && (__timeout == 0 || __allow_intr))   \
257                 __blocked = cfs_block_sigsinv(LUSTRE_FATAL_SIGS);              \
258         else                                                                   \
259                 __blocked = cfs_block_sigsinv(0);                              \
260                                                                                \
261         for (;;) {                                                             \
262                 set_current_state(TASK_INTERRUPTIBLE);                         \
263                                                                                \
264                 /* To guarantee that the condition check will be done */       \
265                 /* after setting the thread state as TASK_INTERRUPTIBLE. */    \
266                 /* Otherwise, out-of-order execution may cause some race. */   \
267                 /* Consider the following real execution order: */             \
268                                                                                \
269                 /* 1. Thread1 checks condition on CPU1, gets false. */         \
270                 /* 2. Thread2 sets condition on CPU2. */                       \
271                 /* 3. Thread2 calls wake_up() on CPU2 to wake the threads */   \
272                 /*    with state TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE. */ \
273                 /*    But the Thread1's state is TASK_RUNNING at that time. */ \
274                 /* 4. Thread1 sets its state as TASK_INTERRUPTIBLE on CPU1, */ \
275                 /*    then schedule. */                                        \
276                                                                                \
277                 /* If the '__timeout' variable is zero, the Thread1 will */    \
278                 /* have no chance to check the condition again. */             \
279                                                                                \
280                 /* Generally, the interval between out-of-ordered step1 and */ \
281                 /* step4 is very tiny, as to above step2 and step3 cannot */   \
282                 /* happen. On some degree, it can explain why we seldom hit */ \
283                 /* related trouble. But such race really exists, especially */ \
284                 /* consider that the step1 and step4 can be interruptible. */  \
285                 /* So add barrier to avoid Thread1 out-of-order execution. */  \
286                 smp_mb();                                                      \
287                                                                                \
288                 if (condition)                                                 \
289                         break;                                                 \
290                                                                                \
291                 if (__timeout == 0) {                                          \
292                         schedule();                                            \
293                 } else {                                                       \
294                         long interval = info->lwi_interval ?                   \
295                                                 min_t(long, info->lwi_interval,\
296                                                       __timeout) : __timeout;  \
297                         long remaining = schedule_timeout(interval);           \
298                                                                                \
299                         __timeout -= interval - remaining;                     \
300                         if (__timeout == 0) {                                  \
301                                 if (info->lwi_on_timeout == NULL ||            \
302                                     info->lwi_on_timeout(info->lwi_cb_data)) { \
303                                         ret = -ETIMEDOUT;                      \
304                                         break;                                 \
305                                 }                                              \
306                                 /* Take signals after the timeout expires. */  \
307                                 if (info->lwi_on_signal != NULL)               \
308                                     (void)cfs_block_sigsinv(LUSTRE_FATAL_SIGS);\
309                         }                                                      \
310                 }                                                              \
311                                                                                \
312                 if (condition)                                                 \
313                         break;                                                 \
314                 if (signal_pending(current)) {                                 \
315                         if (info->lwi_on_signal != NULL &&                     \
316                             (__timeout == 0 || __allow_intr)) {                \
317                                 if (info->lwi_on_signal != LWI_ON_SIGNAL_NOOP) \
318                                         info->lwi_on_signal(info->lwi_cb_data);\
319                                 ret = -EINTR;                                  \
320                                 break;                                         \
321                         }                                                      \
322                         /* We have to do this here because some signals */     \
323                         /* are not blockable - ie from strace(1).       */     \
324                         /* In these cases we want to schedule_timeout() */     \
325                         /* again, because we don't want that to return  */     \
326                         /* -EINTR when the RPC actually succeeded.      */     \
327                         /* the recalc_sigpending() below will deliver the */   \
328                         /* signal properly.                             */     \
329                         cfs_clear_sigpending();                                \
330                 }                                                              \
331         }                                                                      \
332                                                                                \
333         cfs_restore_sigs(__blocked);                                           \
334                                                                                \
335         set_current_state(TASK_RUNNING);                                       \
336         remove_wait_queue(&wq, &__wait);                                       \
337 } while (0)
338
339
340 #define l_wait_event(wq, condition, info)                       \
341 ({                                                              \
342         int                 __ret;                              \
343         struct l_wait_info *__info = (info);                    \
344                                                                 \
345         __l_wait_event(wq, condition, __info,                   \
346                        __ret, add_wait_queue);                  \
347         __ret;                                                  \
348 })
349
350 #define l_wait_event_exclusive(wq, condition, info)             \
351 ({                                                              \
352         int                 __ret;                              \
353         struct l_wait_info *__info = (info);                    \
354                                                                 \
355         __l_wait_event(wq, condition, __info,                   \
356                        __ret, add_wait_queue_exclusive);        \
357         __ret;                                                  \
358 })
359
360 #define l_wait_event_exclusive_head(wq, condition, info)        \
361 ({                                                              \
362         int                 __ret;                              \
363         struct l_wait_info *__info = (info);                    \
364                                                                 \
365         __l_wait_event(wq, condition, __info,                   \
366                        __ret, add_wait_queue_exclusive_head);   \
367         __ret;                                                  \
368 })
369
370 #define l_wait_condition(wq, condition)                         \
371 ({                                                              \
372         struct l_wait_info lwi = { 0 };                         \
373         l_wait_event(wq, condition, &lwi);                      \
374 })
375
376 #define l_wait_condition_exclusive(wq, condition)               \
377 ({                                                              \
378         struct l_wait_info lwi = { 0 };                         \
379         l_wait_event_exclusive(wq, condition, &lwi);            \
380 })
381
382 #define l_wait_condition_exclusive_head(wq, condition)          \
383 ({                                                              \
384         struct l_wait_info lwi = { 0 };                         \
385         l_wait_event_exclusive_head(wq, condition, &lwi);       \
386 })
387
388 /** @} lib */
389
390 #endif /* _LUSTRE_LIB_H */