Whamcloud - gitweb
LU-3285 mds: add IO locking to the MDC and MDT
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, 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 #ifndef _MDC_INTERNAL_H
34 #define _MDC_INTERNAL_H
35
36 #include <lustre_mdc.h>
37
38 #ifdef CONFIG_PROC_FS
39 extern struct lprocfs_vars lprocfs_mdc_obd_vars[];
40 #endif
41
42 void mdc_pack_body(struct ptlrpc_request *req, const struct lu_fid *fid,
43                    u64 valid, size_t ea_size, u32 suppgid, u32 flags);
44 void mdc_swap_layouts_pack(struct ptlrpc_request *req,
45                            struct md_op_data *op_data);
46 void mdc_readdir_pack(struct ptlrpc_request *req, __u64 pgoff, size_t size,
47                       const struct lu_fid *fid);
48 void mdc_getattr_pack(struct ptlrpc_request *req, __u64 valid, __u32 flags,
49                       struct md_op_data *data, size_t ea_size);
50 void mdc_setattr_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
51                       void *ea, size_t ealen);
52 void mdc_create_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
53                      const void *data, size_t datalen, umode_t mode,
54                      uid_t uid, gid_t gid, cfs_cap_t capability, __u64 rdev);
55 void mdc_open_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
56                    umode_t mode, __u64 rdev, __u64 flags,
57                    const void *data, size_t datalen);
58 void mdc_file_secctx_pack(struct ptlrpc_request *req,
59                           const char *secctx_name,
60                           const void *secctx, size_t secctx_size);
61
62 void mdc_unlink_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
63 void mdc_getxattr_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
64 void mdc_link_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
65 void mdc_rename_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
66                      const char *old, size_t oldlen,
67                      const char *new, size_t newlen);
68 void mdc_close_pack(struct ptlrpc_request *req, struct md_op_data *op_data);
69
70 /* mdc/mdc_locks.c */
71 int mdc_set_lock_data(struct obd_export *exp,
72                       const struct lustre_handle *lockh,
73                       void *data, __u64 *bits);
74
75 int mdc_null_inode(struct obd_export *exp, const struct lu_fid *fid);
76
77 int mdc_intent_lock(struct obd_export *exp,
78                     struct md_op_data *op_data,
79                     struct lookup_intent *it,
80                     struct ptlrpc_request **reqp,
81                     ldlm_blocking_callback cb_blocking,
82                     __u64 extra_lock_flags);
83
84 int mdc_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
85                 const union ldlm_policy_data *policy,
86                 struct md_op_data *op_data,
87                 struct lustre_handle *lockh, __u64 extra_lock_flags);
88
89 int mdc_resource_get_unused(struct obd_export *exp, const struct lu_fid *fid,
90                             struct list_head *cancels, enum ldlm_mode mode,
91                             __u64 bits);
92 int mdc_save_lovea(struct ptlrpc_request *req,
93                    const struct req_msg_field *field,
94                    void *data, u32 size);
95 /* mdc/mdc_request.c */
96 int mdc_fid_alloc(const struct lu_env *env, struct obd_export *exp,
97                   struct lu_fid *fid, struct md_op_data *op_data);
98 int mdc_setup(struct obd_device *obd, struct lustre_cfg *cfg);
99 int mdc_process_config(struct obd_device *obd, size_t len, void *buf);
100
101 struct obd_client_handle;
102
103 int mdc_get_lustre_md(struct obd_export *md_exp, struct ptlrpc_request *req,
104                       struct obd_export *dt_exp, struct obd_export *lmv_exp,
105                       struct lustre_md *md);
106
107 int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md);
108
109 int mdc_set_open_replay_data(struct obd_export *exp,
110                              struct obd_client_handle *och,
111                              struct lookup_intent *it);
112
113 int mdc_clear_open_replay_data(struct obd_export *exp,
114                                struct obd_client_handle *och);
115 void mdc_commit_open(struct ptlrpc_request *req);
116 void mdc_replay_open(struct ptlrpc_request *req);
117
118 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
119                 const void *data, size_t datalen,
120                 umode_t mode, uid_t uid, gid_t gid,
121                 cfs_cap_t capability, __u64 rdev,
122                 struct ptlrpc_request **request);
123 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
124              struct ptlrpc_request **request);
125 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
126                 const char *old, size_t oldlen, const char *new, size_t newlen,
127                 struct ptlrpc_request **request);
128 int mdc_setattr(struct obd_export *exp, struct md_op_data *op_data,
129                 void *ea, size_t ealen, struct ptlrpc_request **request);
130 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
131                struct ptlrpc_request **request);
132 int mdc_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
133                       union ldlm_policy_data *policy, enum ldlm_mode mode,
134                       enum ldlm_cancel_flags flags, void *opaque);
135
136 int mdc_revalidate_lock(struct obd_export *exp, struct lookup_intent *it,
137                         struct lu_fid *fid, __u64 *bits);
138
139 int mdc_intent_getattr_async(struct obd_export *exp,
140                              struct md_enqueue_info *minfo);
141
142 enum ldlm_mode mdc_lock_match(struct obd_export *exp, __u64 flags,
143                               const struct lu_fid *fid, enum ldlm_type type,
144                               union ldlm_policy_data *policy,
145                               enum ldlm_mode mode, struct lustre_handle *lockh);
146
147
148 int mdc_changelog_cdev_init(struct obd_device *obd);
149
150 void mdc_changelog_cdev_finish(struct obd_device *obd);
151
152 static inline int mdc_prep_elc_req(struct obd_export *exp,
153                                    struct ptlrpc_request *req, int opc,
154                                    struct list_head *cancels, int count)
155 {
156         return ldlm_prep_elc_req(exp, req, LUSTRE_MDS_VERSION, opc, 0, cancels,
157                                  count);
158 }
159
160 static inline unsigned long hash_x_index(__u64 hash, int hash64)
161 {
162         if (BITS_PER_LONG == 32 && hash64)
163                 hash >>= 32;
164         /* save hash 0 with hash 1 */
165         return ~0UL - (hash + !hash);
166 }
167
168 /* mdc_dev.c */
169 extern struct lu_device_type mdc_device_type;
170 int mdc_ldlm_blocking_ast(struct ldlm_lock *dlmlock,
171                           struct ldlm_lock_desc *new, void *data, int flag);
172
173 #endif