Whamcloud - gitweb
668cce12ba5a98f256b2297b67a5b9371e6171fd
[fs/lustre-release.git] / lustre / include / lustre_lib.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/include/lustre_lib.h
37  *
38  * Basic Lustre library routines.
39  */
40
41 #ifndef _LUSTRE_LIB_H
42 #define _LUSTRE_LIB_H
43
44 #include <libcfs/libcfs.h>
45 #include <lustre/lustre_idl.h>
46 #include <lustre_ver.h>
47 #include <lustre_cfg.h>
48 #if defined(__linux__)
49 #include <linux/lustre_lib.h>
50 #elif defined(__APPLE__)
51 #include <darwin/lustre_lib.h>
52 #elif defined(__WINNT__)
53 #include <winnt/lustre_lib.h>
54 #else
55 #error Unsupported operating system.
56 #endif
57
58 /* prng.c */
59 unsigned int ll_rand(void);        /* returns a random 32-bit integer */
60 void ll_srand(unsigned int, unsigned int);     /* seed the generator */
61 void ll_get_random_bytes(void *buf, int size);
62
63 /* target.c */
64 struct ptlrpc_request;
65 struct obd_export;
66 struct lu_target;
67 #include <lustre_ha.h>
68 #include <lustre_net.h>
69 #include <lvfs.h>
70
71 void target_client_add_cb(struct obd_device *obd, __u64 transno, void *cb_data,
72                           int error);
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 int target_pack_pool_reply(struct ptlrpc_request *req);
77 int target_handle_ping(struct ptlrpc_request *req);
78 void target_committed_to_req(struct ptlrpc_request *req);
79
80 /* quotacheck callback, dqacq/dqrel callback handler */
81 int target_handle_qc_callback(struct ptlrpc_request *req);
82 #ifdef HAVE_QUOTA_SUPPORT
83 int target_handle_dqacq_callback(struct ptlrpc_request *req);
84 #else
85 #define target_handle_dqacq_callback(req) ldlm_callback_reply(req, -ENOTSUPP)
86 #endif
87
88 #define OBD_RECOVERY_MAX_TIME (obd_timeout * 18) /* b13079 */
89
90 void target_cancel_recovery_timer(struct obd_device *obd);
91 void target_stop_recovery_thread(struct obd_device *obd);
92 void target_cleanup_recovery(struct obd_device *obd);
93 int target_queue_recovery_request(struct ptlrpc_request *req,
94                                   struct obd_device *obd);
95 void target_send_reply(struct ptlrpc_request *req, int rc, int fail_id);
96
97 /* client.c */
98
99 int client_sanobd_setup(struct obd_device *obddev, struct lustre_cfg* lcfg);
100 struct client_obd *client_conn2cli(struct lustre_handle *conn);
101
102 struct md_open_data;
103 struct obd_client_handle {
104         struct lustre_handle  och_fh;
105         struct lu_fid         och_fid;
106         struct md_open_data  *och_mod;
107         __u32 och_magic;
108         int och_flags;
109 };
110 #define OBD_CLIENT_HANDLE_MAGIC 0xd15ea5ed
111
112 /* statfs_pack.c */
113 void statfs_pack(struct obd_statfs *osfs, struct kstatfs *sfs);
114 void statfs_unpack(struct kstatfs *sfs, struct obd_statfs *osfs);
115
116 /* l_lock.c */
117 struct lustre_lock {
118         int l_depth;
119         cfs_task_t *l_owner;
120         struct semaphore l_sem;
121         spinlock_t l_spin;
122 };
123
124 void l_lock_init(struct lustre_lock *);
125 void l_lock(struct lustre_lock *);
126 void l_unlock(struct lustre_lock *);
127 int l_has_lock(struct lustre_lock *);
128
129 /*
130  *   OBD IOCTLS
131  */
132 #define OBD_IOCTL_VERSION 0x00010004
133
134 struct obd_ioctl_data {
135         __u32 ioc_len;
136         __u32 ioc_version;
137
138         union {
139                 __u64 ioc_cookie;
140                 __u64 ioc_u64_1;
141         };
142         union {
143                 __u32 ioc_conn1;
144                 __u32 ioc_u32_1;
145         };
146         union {
147                 __u32 ioc_conn2;
148                 __u32 ioc_u32_2;
149         };
150
151         struct obdo ioc_obdo1;
152         struct obdo ioc_obdo2;
153
154         obd_size ioc_count;
155         obd_off  ioc_offset;
156         __u32    ioc_dev;
157         __u32    ioc_command;
158
159         __u64 ioc_nid;
160         __u32 ioc_nal;
161         __u32 ioc_type;
162
163         /* buffers the kernel will treat as user pointers */
164         __u32  ioc_plen1;
165         char  *ioc_pbuf1;
166         __u32  ioc_plen2;
167         char  *ioc_pbuf2;
168
169         /* inline buffers for various arguments */
170         __u32  ioc_inllen1;
171         char  *ioc_inlbuf1;
172         __u32  ioc_inllen2;
173         char  *ioc_inlbuf2;
174         __u32  ioc_inllen3;
175         char  *ioc_inlbuf3;
176         __u32  ioc_inllen4;
177         char  *ioc_inlbuf4;
178
179         char    ioc_bulk[0];
180 };
181
182 struct obd_ioctl_hdr {
183         __u32 ioc_len;
184         __u32 ioc_version;
185 };
186
187 static inline int obd_ioctl_packlen(struct obd_ioctl_data *data)
188 {
189         int len = size_round(sizeof(struct obd_ioctl_data));
190         len += size_round(data->ioc_inllen1);
191         len += size_round(data->ioc_inllen2);
192         len += size_round(data->ioc_inllen3);
193         len += size_round(data->ioc_inllen4);
194         return len;
195 }
196
197
198 static inline int obd_ioctl_is_invalid(struct obd_ioctl_data *data)
199 {
200         if (data->ioc_len > (1<<30)) {
201                 CERROR("OBD ioctl: ioc_len larger than 1<<30\n");
202                 return 1;
203         }
204         if (data->ioc_inllen1 > (1<<30)) {
205                 CERROR("OBD ioctl: ioc_inllen1 larger than 1<<30\n");
206                 return 1;
207         }
208         if (data->ioc_inllen2 > (1<<30)) {
209                 CERROR("OBD ioctl: ioc_inllen2 larger than 1<<30\n");
210                 return 1;
211         }
212         if (data->ioc_inllen3 > (1<<30)) {
213                 CERROR("OBD ioctl: ioc_inllen3 larger than 1<<30\n");
214                 return 1;
215         }
216         if (data->ioc_inllen4 > (1<<30)) {
217                 CERROR("OBD ioctl: ioc_inllen4 larger than 1<<30\n");
218                 return 1;
219         }
220         if (data->ioc_inlbuf1 && !data->ioc_inllen1) {
221                 CERROR("OBD ioctl: inlbuf1 pointer but 0 length\n");
222                 return 1;
223         }
224         if (data->ioc_inlbuf2 && !data->ioc_inllen2) {
225                 CERROR("OBD ioctl: inlbuf2 pointer but 0 length\n");
226                 return 1;
227         }
228         if (data->ioc_inlbuf3 && !data->ioc_inllen3) {
229                 CERROR("OBD ioctl: inlbuf3 pointer but 0 length\n");
230                 return 1;
231         }
232         if (data->ioc_inlbuf4 && !data->ioc_inllen4) {
233                 CERROR("OBD ioctl: inlbuf4 pointer but 0 length\n");
234                 return 1;
235         }
236         if (data->ioc_pbuf1 && !data->ioc_plen1) {
237                 CERROR("OBD ioctl: pbuf1 pointer but 0 length\n");
238                 return 1;
239         }
240         if (data->ioc_pbuf2 && !data->ioc_plen2) {
241                 CERROR("OBD ioctl: pbuf2 pointer but 0 length\n");
242                 return 1;
243         }
244         if (data->ioc_plen1 && !data->ioc_pbuf1) {
245                 CERROR("OBD ioctl: plen1 set but NULL pointer\n");
246                 return 1;
247         }
248         if (data->ioc_plen2 && !data->ioc_pbuf2) {
249                 CERROR("OBD ioctl: plen2 set but NULL pointer\n");
250                 return 1;
251         }
252         if (obd_ioctl_packlen(data) > data->ioc_len) {
253                 CERROR("OBD ioctl: packlen exceeds ioc_len (%d > %d)\n",
254                        obd_ioctl_packlen(data), data->ioc_len);
255                 return 1;
256         }
257         return 0;
258 }
259
260 #ifndef __KERNEL__
261 static inline int obd_ioctl_pack(struct obd_ioctl_data *data, char **pbuf,
262                                  int max)
263 {
264         char *ptr;
265         struct obd_ioctl_data *overlay;
266         data->ioc_len = obd_ioctl_packlen(data);
267         data->ioc_version = OBD_IOCTL_VERSION;
268
269         if (*pbuf && data->ioc_len > max)
270                 return -EINVAL;
271         if (*pbuf == NULL) {
272                 *pbuf = malloc(data->ioc_len);
273         }
274         if (!*pbuf)
275                 return -ENOMEM;
276         overlay = (struct obd_ioctl_data *)*pbuf;
277         memcpy(*pbuf, data, sizeof(*data));
278
279         ptr = overlay->ioc_bulk;
280         if (data->ioc_inlbuf1)
281                 LOGL(data->ioc_inlbuf1, data->ioc_inllen1, ptr);
282         if (data->ioc_inlbuf2)
283                 LOGL(data->ioc_inlbuf2, data->ioc_inllen2, ptr);
284         if (data->ioc_inlbuf3)
285                 LOGL(data->ioc_inlbuf3, data->ioc_inllen3, ptr);
286         if (data->ioc_inlbuf4)
287                 LOGL(data->ioc_inlbuf4, data->ioc_inllen4, ptr);
288         if (obd_ioctl_is_invalid(overlay))
289                 return -EINVAL;
290
291         return 0;
292 }
293
294 static inline int obd_ioctl_unpack(struct obd_ioctl_data *data, char *pbuf,
295                                    int max)
296 {
297         char *ptr;
298         struct obd_ioctl_data *overlay;
299
300         if (!pbuf)
301                 return 1;
302         overlay = (struct obd_ioctl_data *)pbuf;
303
304         /* Preserve the caller's buffer pointers */
305         overlay->ioc_inlbuf1 = data->ioc_inlbuf1;
306         overlay->ioc_inlbuf2 = data->ioc_inlbuf2;
307         overlay->ioc_inlbuf3 = data->ioc_inlbuf3;
308         overlay->ioc_inlbuf4 = data->ioc_inlbuf4;
309
310         memcpy(data, pbuf, sizeof(*data));
311
312         ptr = overlay->ioc_bulk;
313         if (data->ioc_inlbuf1)
314                 LOGU(data->ioc_inlbuf1, data->ioc_inllen1, ptr);
315         if (data->ioc_inlbuf2)
316                 LOGU(data->ioc_inlbuf2, data->ioc_inllen2, ptr);
317         if (data->ioc_inlbuf3)
318                 LOGU(data->ioc_inlbuf3, data->ioc_inllen3, ptr);
319         if (data->ioc_inlbuf4)
320                 LOGU(data->ioc_inlbuf4, data->ioc_inllen4, ptr);
321
322         return 0;
323 }
324 #endif
325
326 #include <obd_support.h>
327
328 #ifdef __KERNEL__
329 /* function defined in lustre/obdclass/<platform>/<platform>-module.c */
330 int obd_ioctl_getdata(char **buf, int *len, void *arg);
331 int obd_ioctl_popdata(void *arg, void *data, int len);
332 #else
333 /* buffer MUST be at least the size of obd_ioctl_hdr */
334 static inline int obd_ioctl_getdata(char **buf, int *len, void *arg)
335 {
336         struct obd_ioctl_hdr hdr;
337         struct obd_ioctl_data *data;
338         int err;
339         int offset = 0;
340         ENTRY;
341
342         err = copy_from_user(&hdr, (void *)arg, sizeof(hdr));
343         if (err)
344                 RETURN(err);
345
346         if (hdr.ioc_version != OBD_IOCTL_VERSION) {
347                 CERROR("Version mismatch kernel vs application\n");
348                 RETURN(-EINVAL);
349         }
350
351         if (hdr.ioc_len > OBD_MAX_IOCTL_BUFFER) {
352                 CERROR("User buffer len %d exceeds %d max buffer\n",
353                        hdr.ioc_len, OBD_MAX_IOCTL_BUFFER);
354                 RETURN(-EINVAL);
355         }
356
357         if (hdr.ioc_len < sizeof(struct obd_ioctl_data)) {
358                 CERROR("User buffer too small for ioctl (%d)\n", hdr.ioc_len);
359                 RETURN(-EINVAL);
360         }
361
362         /* XXX allocate this more intelligently, using kmalloc when
363          * appropriate */
364         OBD_VMALLOC(*buf, hdr.ioc_len);
365         if (*buf == NULL) {
366                 CERROR("Cannot allocate control buffer of len %d\n",
367                        hdr.ioc_len);
368                 RETURN(-EINVAL);
369         }
370         *len = hdr.ioc_len;
371         data = (struct obd_ioctl_data *)*buf;
372
373         err = copy_from_user(*buf, (void *)arg, hdr.ioc_len);
374         if (err) {
375                 OBD_VFREE(*buf, hdr.ioc_len);
376                 RETURN(err);
377         }
378
379         if (obd_ioctl_is_invalid(data)) {
380                 CERROR("ioctl not correctly formatted\n");
381                 OBD_VFREE(*buf, hdr.ioc_len);
382                 RETURN(-EINVAL);
383         }
384
385         if (data->ioc_inllen1) {
386                 data->ioc_inlbuf1 = &data->ioc_bulk[0];
387                 offset += size_round(data->ioc_inllen1);
388         }
389
390         if (data->ioc_inllen2) {
391                 data->ioc_inlbuf2 = &data->ioc_bulk[0] + offset;
392                 offset += size_round(data->ioc_inllen2);
393         }
394
395         if (data->ioc_inllen3) {
396                 data->ioc_inlbuf3 = &data->ioc_bulk[0] + offset;
397                 offset += size_round(data->ioc_inllen3);
398         }
399
400         if (data->ioc_inllen4) {
401                 data->ioc_inlbuf4 = &data->ioc_bulk[0] + offset;
402         }
403
404         RETURN(0);
405 }
406
407 static inline int obd_ioctl_popdata(void *arg, void *data, int len)
408 {
409         int err = copy_to_user(arg, data, len);
410         if (err)
411                 err = -EFAULT;
412         return err;
413 }
414 #endif
415
416 static inline void obd_ioctl_freedata(char *buf, int len)
417 {
418         ENTRY;
419
420         OBD_VFREE(buf, len);
421         EXIT;
422         return;
423 }
424
425 /*
426  * BSD ioctl description:
427  * #define IOC_V1       _IOR(g, n1, long)
428  * #define IOC_V2       _IOW(g, n2, long)
429  *
430  * ioctl(f, IOC_V1, arg);
431  * arg will be treated as a long value,
432  *
433  * ioctl(f, IOC_V2, arg)
434  * arg will be treated as a pointer, bsd will call
435  * copyin(buf, arg, sizeof(long))
436  *
437  * To make BSD ioctl handles argument correctly and simplely,
438  * we change _IOR to _IOWR so BSD will copyin obd_ioctl_data
439  * for us. Does this change affect Linux?  (XXX Liang)
440  */
441 #define OBD_IOC_CREATE                 _IOWR('f', 101, OBD_IOC_DATA_TYPE)
442 #define OBD_IOC_DESTROY                _IOW ('f', 104, OBD_IOC_DATA_TYPE)
443 #define OBD_IOC_PREALLOCATE            _IOWR('f', 105, OBD_IOC_DATA_TYPE)
444
445 #define OBD_IOC_SETATTR                _IOW ('f', 107, OBD_IOC_DATA_TYPE)
446 #define OBD_IOC_GETATTR                _IOWR ('f', 108, OBD_IOC_DATA_TYPE)
447 #define OBD_IOC_READ                   _IOWR('f', 109, OBD_IOC_DATA_TYPE)
448 #define OBD_IOC_WRITE                  _IOWR('f', 110, OBD_IOC_DATA_TYPE)
449
450
451 #define OBD_IOC_STATFS                 _IOWR('f', 113, OBD_IOC_DATA_TYPE)
452 #define OBD_IOC_SYNC                   _IOW ('f', 114, OBD_IOC_DATA_TYPE)
453 #define OBD_IOC_READ2                  _IOWR('f', 115, OBD_IOC_DATA_TYPE)
454 #define OBD_IOC_FORMAT                 _IOWR('f', 116, OBD_IOC_DATA_TYPE)
455 #define OBD_IOC_PARTITION              _IOWR('f', 117, OBD_IOC_DATA_TYPE)
456 #define OBD_IOC_COPY                   _IOWR('f', 120, OBD_IOC_DATA_TYPE)
457 #define OBD_IOC_MIGR                   _IOWR('f', 121, OBD_IOC_DATA_TYPE)
458 #define OBD_IOC_PUNCH                  _IOWR('f', 122, OBD_IOC_DATA_TYPE)
459
460 #define OBD_IOC_MODULE_DEBUG           _IOWR('f', 124, OBD_IOC_DATA_TYPE)
461 #define OBD_IOC_BRW_READ               _IOWR('f', 125, OBD_IOC_DATA_TYPE)
462 #define OBD_IOC_BRW_WRITE              _IOWR('f', 126, OBD_IOC_DATA_TYPE)
463 #define OBD_IOC_NAME2DEV               _IOWR('f', 127, OBD_IOC_DATA_TYPE)
464 #define OBD_IOC_UUID2DEV               _IOWR('f', 130, OBD_IOC_DATA_TYPE)
465 #define OBD_IOC_GETNAME                _IOWR('f', 131, OBD_IOC_DATA_TYPE)
466
467 #define OBD_IOC_LOV_GET_CONFIG         _IOWR('f', 132, OBD_IOC_DATA_TYPE)
468 #define OBD_IOC_CLIENT_RECOVER         _IOW ('f', 133, OBD_IOC_DATA_TYPE)
469 #define OBD_IOC_PING_TARGET            _IOW ('f', 136, OBD_IOC_DATA_TYPE)
470
471 #define OBD_IOC_DEC_FS_USE_COUNT       _IO  ('f', 139      )
472 #define OBD_IOC_NO_TRANSNO             _IOW ('f', 140, OBD_IOC_DATA_TYPE)
473 #define OBD_IOC_SET_READONLY           _IOW ('f', 141, OBD_IOC_DATA_TYPE)
474 #define OBD_IOC_ABORT_RECOVERY         _IOR ('f', 142, OBD_IOC_DATA_TYPE)
475
476 #define OBD_IOC_ROOT_SQUASH            _IOWR('f', 143, OBD_IOC_DATA_TYPE)
477
478 #define OBD_GET_VERSION                _IOWR ('f', 144, OBD_IOC_DATA_TYPE)
479
480 #define OBD_IOC_GSS_SUPPORT            _IOWR('f', 145, OBD_IOC_DATA_TYPE)
481
482 #define OBD_IOC_CLOSE_UUID             _IOWR ('f', 147, OBD_IOC_DATA_TYPE)
483
484 #define OBD_IOC_GETDEVICE              _IOWR ('f', 149, OBD_IOC_DATA_TYPE)
485 #define OBD_IOC_FID2PATH               _IOWR ('f', 150, OBD_IOC_DATA_TYPE)
486 #define OBD_IOC_CHANGELOG_REG          _IOW ('f', 151, OBD_IOC_DATA_TYPE)
487 #define OBD_IOC_CHANGELOG_DEREG        _IOW ('f', 152, OBD_IOC_DATA_TYPE)
488 #define OBD_IOC_CHANGELOG_CLEAR        _IOW ('f', 153, OBD_IOC_DATA_TYPE)
489
490 #define OBD_IOC_LOV_SETSTRIPE          _IOW ('f', 154, OBD_IOC_DATA_TYPE)
491 #define OBD_IOC_LOV_GETSTRIPE          _IOW ('f', 155, OBD_IOC_DATA_TYPE)
492 #define OBD_IOC_LOV_SETEA              _IOW ('f', 156, OBD_IOC_DATA_TYPE)
493
494 #define OBD_IOC_QUOTACHECK             _IOW ('f', 160, int)
495 #define OBD_IOC_POLL_QUOTACHECK        _IOR ('f', 161, struct if_quotacheck *)
496 #define OBD_IOC_QUOTACTL               _IOWR('f', 162, struct if_quotactl *)
497
498 #define OBD_IOC_MOUNTOPT               _IOWR('f', 170, OBD_IOC_DATA_TYPE)
499
500 #define OBD_IOC_RECORD                 _IOWR('f', 180, OBD_IOC_DATA_TYPE)
501 #define OBD_IOC_ENDRECORD              _IOWR('f', 181, OBD_IOC_DATA_TYPE)
502 #define OBD_IOC_PARSE                  _IOWR('f', 182, OBD_IOC_DATA_TYPE)
503 #define OBD_IOC_DORECORD               _IOWR('f', 183, OBD_IOC_DATA_TYPE)
504 #define OBD_IOC_PROCESS_CFG            _IOWR('f', 184, OBD_IOC_DATA_TYPE)
505 #define OBD_IOC_DUMP_LOG               _IOWR('f', 185, OBD_IOC_DATA_TYPE)
506 #define OBD_IOC_CLEAR_LOG              _IOWR('f', 186, OBD_IOC_DATA_TYPE)
507 #define OBD_IOC_PARAM                  _IOW ('f', 187, OBD_IOC_DATA_TYPE)
508 #define OBD_IOC_POOL                   _IOWR('f', 188, OBD_IOC_DATA_TYPE)
509
510 #define OBD_IOC_CATLOGLIST             _IOWR('f', 190, OBD_IOC_DATA_TYPE)
511 #define OBD_IOC_LLOG_INFO              _IOWR('f', 191, OBD_IOC_DATA_TYPE)
512 #define OBD_IOC_LLOG_PRINT             _IOWR('f', 192, OBD_IOC_DATA_TYPE)
513 #define OBD_IOC_LLOG_CANCEL            _IOWR('f', 193, OBD_IOC_DATA_TYPE)
514 #define OBD_IOC_LLOG_REMOVE            _IOWR('f', 194, OBD_IOC_DATA_TYPE)
515 #define OBD_IOC_LLOG_CHECK             _IOWR('f', 195, OBD_IOC_DATA_TYPE)
516 #define OBD_IOC_LLOG_CATINFO           _IOWR('f', 196, OBD_IOC_DATA_TYPE)
517
518 #define ECHO_IOC_GET_STRIPE            _IOWR('f', 200, OBD_IOC_DATA_TYPE)
519 #define ECHO_IOC_SET_STRIPE            _IOWR('f', 201, OBD_IOC_DATA_TYPE)
520 #define ECHO_IOC_ENQUEUE               _IOWR('f', 202, OBD_IOC_DATA_TYPE)
521 #define ECHO_IOC_CANCEL                _IOWR('f', 203, OBD_IOC_DATA_TYPE)
522
523 /* XXX _IOWR('f', 250, long) has been defined in
524  * libcfs/include/libcfs/libcfs_private.h for debug, don't use it
525  */
526
527 /* Until such time as we get_info the per-stripe maximum from the OST,
528  * we define this to be 2T - 4k, which is the ext3 maxbytes. */
529 #define LUSTRE_STRIPE_MAXBYTES 0x1fffffff000ULL
530
531 /* #define POISON_BULK 0 */
532
533 /*
534  * l_wait_event is a flexible sleeping function, permitting simple caller
535  * configuration of interrupt and timeout sensitivity along with actions to
536  * be performed in the event of either exception.
537  *
538  * The first form of usage looks like this:
539  *
540  * struct l_wait_info lwi = LWI_TIMEOUT_INTR(timeout, timeout_handler,
541  *                                           intr_handler, callback_data);
542  * rc = l_wait_event(waitq, condition, &lwi);
543  *
544  * l_wait_event() makes the current process wait on 'waitq' until 'condition'
545  * is TRUE or a "killable" signal (SIGTERM, SIKGILL, SIGINT) is pending.  It
546  * returns 0 to signify 'condition' is TRUE, but if a signal wakes it before
547  * 'condition' becomes true, it optionally calls the specified 'intr_handler'
548  * if not NULL, and returns -EINTR.
549  *
550  * If a non-zero timeout is specified, signals are ignored until the timeout
551  * has expired.  At this time, if 'timeout_handler' is not NULL it is called.
552  * If it returns FALSE l_wait_event() continues to wait as described above with
553  * signals enabled.  Otherwise it returns -ETIMEDOUT.
554  *
555  * LWI_INTR(intr_handler, callback_data) is shorthand for
556  * LWI_TIMEOUT_INTR(0, NULL, intr_handler, callback_data)
557  *
558  * The second form of usage looks like this:
559  *
560  * struct l_wait_info lwi = LWI_TIMEOUT(timeout, timeout_handler);
561  * rc = l_wait_event(waitq, condition, &lwi);
562  *
563  * This form is the same as the first except that it COMPLETELY IGNORES
564  * SIGNALS.  The caller must therefore beware that if 'timeout' is zero, or if
565  * 'timeout_handler' is not NULL and returns FALSE, then the ONLY thing that
566  * can unblock the current process is 'condition' becoming TRUE.
567  *
568  * Another form of usage is:
569  * struct l_wait_info lwi = LWI_TIMEOUT_INTERVAL(timeout, interval,
570  *                                               timeout_handler);
571  * rc = l_wait_event(waitq, condition, &lwi);
572  * This is the same as previous case, but condition is checked once every
573  * 'interval' jiffies (if non-zero).
574  *
575  * Subtle synchronization point: this macro does *not* necessary takes
576  * wait-queue spin-lock before returning, and, hence, following idiom is safe
577  * ONLY when caller provides some external locking:
578  *
579  *             Thread1                            Thread2
580  *
581  *   l_wait_event(&obj->wq, ....);                                       (1)
582  *
583  *                                    wake_up(&obj->wq):                 (2)
584  *                                         spin_lock(&q->lock);          (2.1)
585  *                                         __wake_up_common(q, ...);     (2.2)
586  *                                         spin_unlock(&q->lock, flags); (2.3)
587  *
588  *   OBD_FREE_PTR(obj);                                                  (3)
589  *
590  * As l_wait_event() may "short-cut" execution and return without taking
591  * wait-queue spin-lock, some additional synchronization is necessary to
592  * guarantee that step (3) can begin only after (2.3) finishes.
593  *
594  * XXX nikita: some ptlrpc daemon threads have races of that sort.
595  *
596  */
597
598 #define LWI_ON_SIGNAL_NOOP ((void (*)(void *))(-1))
599
600 struct l_wait_info {
601         cfs_duration_t lwi_timeout;
602         cfs_duration_t lwi_interval;
603         int  (*lwi_on_timeout)(void *);
604         void (*lwi_on_signal)(void *);
605         void  *lwi_cb_data;
606 };
607
608 /* NB: LWI_TIMEOUT ignores signals completely */
609 #define LWI_TIMEOUT(time, cb, data)             \
610 ((struct l_wait_info) {                         \
611         .lwi_timeout    = time,                 \
612         .lwi_on_timeout = cb,                   \
613         .lwi_cb_data    = data,                 \
614         .lwi_interval   = 0                     \
615 })
616
617 #define LWI_TIMEOUT_INTERVAL(time, interval, cb, data)  \
618 ((struct l_wait_info) {                                 \
619         .lwi_timeout    = time,                         \
620         .lwi_on_timeout = cb,                           \
621         .lwi_cb_data    = data,                         \
622         .lwi_interval   = interval                      \
623 })
624
625 #define LWI_TIMEOUT_INTR(time, time_cb, sig_cb, data)   \
626 ((struct l_wait_info) {                                 \
627         .lwi_timeout    = time,                         \
628         .lwi_on_timeout = time_cb,                      \
629         .lwi_on_signal = sig_cb,                        \
630         .lwi_cb_data    = data,                         \
631         .lwi_interval    = 0                            \
632 })
633
634 #define LWI_INTR(cb, data)  LWI_TIMEOUT_INTR(0, NULL, cb, data)
635
636 #ifdef __KERNEL__
637
638 /*
639  * wait for @condition to become true, but no longer than timeout, specified
640  * by @info.
641  */
642 #define __l_wait_event(wq, condition, info, ret, excl)                         \
643 do {                                                                           \
644         cfs_waitlink_t __wait;                                                 \
645         cfs_duration_t __timeout = info->lwi_timeout;                          \
646         cfs_sigset_t   __blocked;                                              \
647                                                                                \
648         ret = 0;                                                               \
649         if (condition)                                                         \
650                 break;                                                         \
651                                                                                \
652         cfs_waitlink_init(&__wait);                                            \
653         if (excl)                                                              \
654                 cfs_waitq_add_exclusive(&wq, &__wait);                         \
655         else                                                                   \
656                 cfs_waitq_add(&wq, &__wait);                                   \
657                                                                                \
658         /* Block all signals (just the non-fatal ones if no timeout). */       \
659         if (info->lwi_on_signal != NULL && __timeout == 0)                     \
660                 __blocked = l_w_e_set_sigs(LUSTRE_FATAL_SIGS);                 \
661         else                                                                   \
662                 __blocked = l_w_e_set_sigs(0);                                 \
663                                                                                \
664         for (;;) {                                                             \
665                 set_current_state(TASK_INTERRUPTIBLE);                         \
666                                                                                \
667                 if (condition)                                                 \
668                         break;                                                 \
669                                                                                \
670                 if (__timeout == 0) {                                          \
671                         cfs_waitq_wait(&__wait, CFS_TASK_INTERRUPTIBLE);       \
672                 } else {                                                       \
673                         cfs_duration_t interval = info->lwi_interval?          \
674                                              min_t(cfs_duration_t,             \
675                                                  info->lwi_interval,__timeout):\
676                                              __timeout;                        \
677                         cfs_duration_t remaining = cfs_waitq_timedwait(&__wait,\
678                                                    CFS_TASK_INTERRUPTIBLE,     \
679                                                    interval);                  \
680                         __timeout = cfs_time_sub(__timeout,                    \
681                                             cfs_time_sub(interval, remaining));\
682                         if (__timeout == 0) {                                  \
683                                 if (info->lwi_on_timeout == NULL ||            \
684                                     info->lwi_on_timeout(info->lwi_cb_data)) { \
685                                         ret = -ETIMEDOUT;                      \
686                                         break;                                 \
687                                 }                                              \
688                                 /* Take signals after the timeout expires. */  \
689                                 if (info->lwi_on_signal != NULL)               \
690                                     (void)l_w_e_set_sigs(LUSTRE_FATAL_SIGS);   \
691                         }                                                      \
692                 }                                                              \
693                                                                                \
694                 if (condition)                                                 \
695                         break;                                                 \
696                 if (cfs_signal_pending()) {                                    \
697                         if (info->lwi_on_signal != NULL && __timeout == 0) {   \
698                                 if (info->lwi_on_signal != LWI_ON_SIGNAL_NOOP) \
699                                         info->lwi_on_signal(info->lwi_cb_data);\
700                                 ret = -EINTR;                                  \
701                                 break;                                         \
702                         }                                                      \
703                         /* We have to do this here because some signals */     \
704                         /* are not blockable - ie from strace(1).       */     \
705                         /* In these cases we want to schedule_timeout() */     \
706                         /* again, because we don't want that to return  */     \
707                         /* -EINTR when the RPC actually succeeded.      */     \
708                         /* the RECALC_SIGPENDING below will deliver the */     \
709                         /* signal properly.                             */     \
710                         cfs_clear_sigpending();                                \
711                 }                                                              \
712         }                                                                      \
713                                                                                \
714         cfs_block_sigs(__blocked);                                             \
715                                                                                \
716         set_current_state(TASK_RUNNING);                                       \
717         cfs_waitq_del(&wq, &__wait);                                           \
718 } while (0)
719
720 #else /* !__KERNEL__ */
721 #define __l_wait_event(wq, condition, info, ret, excl)                  \
722 do {                                                                    \
723         long __timeout = info->lwi_timeout;                             \
724         long __now;                                                     \
725         long __then = 0;                                                \
726         int  __timed_out = 0;                                           \
727         int  __interval = obd_timeout;                                  \
728                                                                         \
729         ret = 0;                                                        \
730         if (condition)                                                  \
731                 break;                                                  \
732                                                                         \
733         if (__timeout != 0)                                             \
734                 __then = time(NULL);                                    \
735                                                                         \
736         if (__timeout && __timeout < __interval)                        \
737                 __interval = __timeout;                                 \
738         if (info->lwi_interval && info->lwi_interval < __interval)      \
739                 __interval = info->lwi_interval;                        \
740                                                                         \
741         while (!(condition)) {                                          \
742                 liblustre_wait_event(__interval);                       \
743                 if (condition)                                          \
744                         break;                                          \
745                                                                         \
746                 if (!__timed_out && info->lwi_timeout != 0) {           \
747                         __now = time(NULL);                             \
748                         __timeout -= __now - __then;                    \
749                         __then = __now;                                 \
750                                                                         \
751                         if (__timeout > 0)                              \
752                                 continue;                               \
753                                                                         \
754                         __timeout = 0;                                  \
755                         __timed_out = 1;                                \
756                         if (info->lwi_on_timeout == NULL ||             \
757                             info->lwi_on_timeout(info->lwi_cb_data)) {  \
758                                 ret = -ETIMEDOUT;                       \
759                                 break;                                  \
760                         }                                               \
761                 }                                                       \
762         }                                                               \
763 } while (0)
764
765 #endif /* __KERNEL__ */
766
767
768 #define l_wait_event(wq, condition, info)                       \
769 ({                                                              \
770         int                 __ret;                              \
771         struct l_wait_info *__info = (info);                    \
772                                                                 \
773         __l_wait_event(wq, condition, __info, __ret, 0);        \
774         __ret;                                                  \
775 })
776
777 #define l_wait_event_exclusive(wq, condition, info)             \
778 ({                                                              \
779         int                 __ret;                              \
780         struct l_wait_info *__info = (info);                    \
781                                                                 \
782         __l_wait_event(wq, condition, __info, __ret, 1);        \
783         __ret;                                                  \
784 })
785
786 #define cfs_wait_event(wq, condition)                          \
787 ({                                                              \
788         struct l_wait_info lwi = { 0 };                         \
789         l_wait_event(wq, condition, &lwi);                      \
790 })
791
792 #ifdef __KERNEL__
793 #define LIBLUSTRE_CLIENT (0)
794 #else
795 #define LIBLUSTRE_CLIENT (1)
796 #endif
797
798 #endif /* _LUSTRE_LIB_H */