Whamcloud - gitweb
b3edfdedfa56c75b57225db33a636a2d60d084db
[fs/lustre-release.git] / lustre / mdc / mdc_internal.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _MDC_INTERNAL_H
38 #define _MDC_INTERNAL_H
39
40 #include <lustre_mdc.h>
41 #include <lustre_mds.h>
42
43 #ifdef LPROCFS
44 extern struct lprocfs_seq_vars lprocfs_mdc_obd_vars[];
45 #endif
46
47 void mdc_pack_body(struct ptlrpc_request *req, const struct lu_fid *fid,
48                    struct obd_capa *oc, __u64 valid, int ea_size,
49                    __u32 suppgid, int flags);
50 void mdc_pack_capa(struct ptlrpc_request *req,
51                    const struct req_msg_field *field, struct obd_capa *oc);
52 int mdc_pack_req(struct ptlrpc_request *req, int version, int opc);
53 void mdc_swap_layouts_pack(struct ptlrpc_request *req,
54                            struct md_op_data *op_data);
55 void mdc_readdir_pack(struct ptlrpc_request *req, __u64 pgoff, __u32 size,
56                       const struct lu_fid *fid, struct obd_capa *oc);
57 void mdc_getattr_pack(struct ptlrpc_request *req, __u64 valid, int flags,
58                       struct md_op_data *data, int ea_size);
59 void mdc_setattr_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
60                      void *ea, int ealen, void *ea2, int ea2len);
61 void mdc_create_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
62                      const void *data, int datalen, __u32 mode, __u32 uid,
63                      __u32 gid, cfs_cap_t capability, __u64 rdev);
64 void mdc_open_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
65                    __u32 mode, __u64 rdev, __u64 flags, const void *data,
66                    int datalen);
67 void mdc_unlink_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
68 void mdc_getxattr_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
69 void mdc_link_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
70 void mdc_rename_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
71                      const char *old, int oldlen, const char *new, int newlen);
72 void mdc_close_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
73
74 /* mdc/mdc_locks.c */
75 int mdc_set_lock_data(struct obd_export *exp,
76                       __u64 *lockh, void *data, __u64 *bits);
77
78 int mdc_null_inode(struct obd_export *exp, const struct lu_fid *fid);
79
80 int mdc_find_cbdata(struct obd_export *exp, const struct lu_fid *fid,
81                     ldlm_iterator_t it, void *data);
82
83 int mdc_intent_lock(struct obd_export *exp,
84                     struct md_op_data *op_data,
85                     struct lookup_intent *it,
86                     struct ptlrpc_request **reqp,
87                     ldlm_blocking_callback cb_blocking,
88                     __u64 extra_lock_flags);
89
90 int mdc_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
91                 const union ldlm_policy_data *policy,
92                 struct lookup_intent *it, struct md_op_data *op_data,
93                 struct lustre_handle *lockh, __u64 extra_lock_flags);
94
95 int mdc_resource_get_unused(struct obd_export *exp, const struct lu_fid *fid,
96                             struct list_head *cancels, ldlm_mode_t mode,
97                             __u64 bits);
98 /* mdc/mdc_request.c */
99 int mdc_fid_alloc(const struct lu_env *env, struct obd_export *exp,
100                   struct lu_fid *fid, struct md_op_data *op_data);
101
102 int mdc_open(struct obd_export *exp, obd_id ino, int type, int flags,
103              struct lov_mds_md *lmm, int lmm_size, struct lustre_handle *fh,
104              struct ptlrpc_request **);
105
106 struct obd_client_handle;
107
108 int mdc_get_lustre_md(struct obd_export *md_exp, struct ptlrpc_request *req,
109                       struct obd_export *dt_exp, struct obd_export *lmv_exp,
110                       struct lustre_md *md);
111
112 int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md);
113
114 int mdc_set_open_replay_data(struct obd_export *exp,
115                              struct obd_client_handle *och,
116                              struct lookup_intent *it);
117
118 int mdc_clear_open_replay_data(struct obd_export *exp,
119                                struct obd_client_handle *och);
120 void mdc_commit_open(struct ptlrpc_request *req);
121 void mdc_replay_open(struct ptlrpc_request *req);
122
123 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
124                const void *data, int datalen, int mode, __u32 uid, __u32 gid,
125                cfs_cap_t capability, __u64 rdev,
126                struct ptlrpc_request **request);
127 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
128              struct ptlrpc_request **request);
129 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
130                const char *old, int oldlen, const char *new, int newlen,
131                struct ptlrpc_request **request);
132 int mdc_setattr(struct obd_export *exp, struct md_op_data *op_data,
133                 void *ea, int ealen, void *ea2, int ea2len,
134                 struct ptlrpc_request **request, struct md_open_data **mod);
135 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
136                struct ptlrpc_request **request);
137 int mdc_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
138                       ldlm_policy_data_t *policy, ldlm_mode_t mode,
139                       ldlm_cancel_flags_t flags, void *opaque);
140
141 static inline void mdc_set_capa_size(struct ptlrpc_request *req,
142                                      const struct req_msg_field *field,
143                                      struct obd_capa *oc)
144 {
145         if (oc == NULL)
146                 req_capsule_set_size(&req->rq_pill, field, RCL_CLIENT, 0);
147         else
148                 /* it is already calculated as sizeof struct obd_capa */
149                 ;
150 }
151
152 int mdc_revalidate_lock(struct obd_export *exp, struct lookup_intent *it,
153                         struct lu_fid *fid, __u64 *bits);
154
155 int mdc_intent_getattr_async(struct obd_export *exp,
156                              struct md_enqueue_info *minfo,
157                              struct ldlm_enqueue_info *einfo);
158
159 ldlm_mode_t mdc_lock_match(struct obd_export *exp, __u64 flags,
160                            const struct lu_fid *fid, ldlm_type_t type,
161                            ldlm_policy_data_t *policy, ldlm_mode_t mode,
162                            struct lustre_handle *lockh);
163
164 static inline int mdc_prep_elc_req(struct obd_export *exp,
165                                    struct ptlrpc_request *req, int opc,
166                                    struct list_head *cancels, int count)
167 {
168         return ldlm_prep_elc_req(exp, req, LUSTRE_MDS_VERSION, opc, 0, cancels,
169                                  count);
170 }
171
172 static inline unsigned long hash_x_index(__u64 hash, int hash64)
173 {
174 #ifdef __KERNEL__
175         if (BITS_PER_LONG == 32 && hash64)
176                 hash >>= 32;
177 #endif
178         /* save hash 0 with hash 1 */
179         return ~0UL - (hash + !hash);
180 }
181
182 #endif