Whamcloud - gitweb
a23511d40fbb5d4acfe1c7cbc3e7ba5701f413f0
[fs/lustre-release.git] / lustre / mdc / mdc_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  */
24
25 #ifndef _MDC_INTERNAL_H
26 #define _MDC_INTERNAL_H
27
28 #include <lustre_mdc.h>
29
30 void mdc_pack_req_body(struct ptlrpc_request *req, int offset,
31                        __u64 valid, const struct lu_fid *fid,
32                        struct obd_capa *oc, int ea_size, int flags);
33 void mdc_pack_capa(struct ptlrpc_request *req, int offset, struct obd_capa *oc);
34 void mdc_pack_rep_body(struct ptlrpc_request *);
35 void mdc_is_subdir_pack(struct ptlrpc_request *req, int offset,
36                         const struct lu_fid *pfid, const struct lu_fid *cfid,
37                         int flags);
38 void mdc_readdir_pack(struct ptlrpc_request *req, int pos, __u64 offset,
39                       __u32 size, const struct lu_fid *fid,
40                       struct obd_capa *oc);
41 void mdc_getattr_pack(struct ptlrpc_request *req, int offset, __u64 valid,
42                       int flags, struct md_op_data *data);
43 void mdc_setattr_pack(struct ptlrpc_request *req, int offset,
44                       struct md_op_data *op_data,
45                       void *ea, int ealen, void *ea2, int ea2len);
46 void mdc_create_pack(struct ptlrpc_request *req, int offset,
47                      struct md_op_data *op_data, const void *data, int datalen,
48                      __u32 mode, __u32 uid, __u32 gid, __u32 cap_effective,
49                      __u64 rdev);
50 void mdc_open_pack(struct ptlrpc_request *req, int offset,
51                    struct md_op_data *op_data, __u32 mode, __u64 rdev,
52                    __u32 flags, const void *data, int datalen);
53 void mdc_join_pack(struct ptlrpc_request *req, int offset, 
54                    struct md_op_data *op_data, __u64 head_size);
55 void mdc_unlink_pack(struct ptlrpc_request *req, int offset,
56                      struct md_op_data *op_data);
57 void mdc_link_pack(struct ptlrpc_request *req, int offset,
58                    struct md_op_data *op_data);
59 void mdc_rename_pack(struct ptlrpc_request *req, int offset,
60                      struct md_op_data *op_data,
61                      const char *old, int oldlen, const char *new, int newlen);
62 void mdc_close_pack(struct ptlrpc_request *req, int offset,
63                     struct md_op_data *op_data);
64 void mdc_exit_request(struct client_obd *cli);
65 void mdc_enter_request(struct client_obd *cli);
66
67 struct mdc_open_data {
68         struct obd_client_handle *mod_och;
69         struct ptlrpc_request    *mod_open_req;
70         struct ptlrpc_request    *mod_close_req;
71 };
72
73 static inline int client_is_remote(struct obd_export *exp)
74 {
75         struct obd_import *imp = class_exp2cliimp(exp);
76
77         if (imp->imp_connect_flags_orig & OBD_CONNECT_RMT_CLIENT) {
78                 if (!(imp->imp_connect_data.ocd_connect_flags &
79                     OBD_CONNECT_RMT_CLIENT))
80                         return 0;
81                 else
82                         return 1;
83         } else {
84                 if (!(imp->imp_connect_data.ocd_connect_flags &
85                     OBD_CONNECT_LCL_CLIENT))
86                         return 1;
87                 else
88                         return 0;
89         }
90 }
91
92 /* Quota stuff */
93 extern quota_interface_t *quota_interface;
94
95 /* mdc/mdc_locks.c */
96 int mdc_set_lock_data(struct obd_export *exp,
97                       __u64 *lockh, void *data);
98
99 int mdc_change_cbdata(struct obd_export *exp, const struct lu_fid *fid,
100                       ldlm_iterator_t it, void *data);
101
102 int mdc_intent_lock(struct obd_export *exp,
103                     struct md_op_data *,
104                     void *lmm, int lmmsize,
105                     struct lookup_intent *, int,
106                     struct ptlrpc_request **reqp,
107                     ldlm_blocking_callback cb_blocking, int extra_lock_flags);
108 int mdc_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
109                 struct lookup_intent *it, struct md_op_data *op_data,
110                 struct lustre_handle *lockh, void *lmm, int lmmlen,
111                 int extra_lock_flags);
112
113 int mdc_resource_get_unused(struct obd_export *exp, struct lu_fid *fid,
114                             struct list_head *cancels, ldlm_mode_t mode,
115                             __u64 bits);
116 /* mdc/mdc_request.c */
117 int mdc_fid_alloc(struct obd_export *exp, struct lu_fid *fid,
118                   struct md_op_data *op_data);
119
120 int mdc_init_ea_size(struct obd_export *exp, int easize, int def_easzie,
121                      int cookiesize);
122
123 int mdc_open(struct obd_export *exp, obd_id ino, int type, int flags,
124              struct lov_mds_md *lmm, int lmm_size, struct lustre_handle *fh,
125              struct ptlrpc_request **);
126
127 struct obd_client_handle;
128
129 int mdc_get_lustre_md(struct obd_export *md_exp, struct ptlrpc_request *req,
130                       int offset, struct obd_export *dt_exp, 
131                       struct obd_export *lmv_exp,
132                       struct lustre_md *md);
133
134 int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md);
135
136 int mdc_set_open_replay_data(struct obd_export *exp,
137                              struct obd_client_handle *och,
138                              struct ptlrpc_request *open_req);
139
140 int mdc_clear_open_replay_data(struct obd_export *exp,
141                                struct obd_client_handle *och);
142
143 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
144                const void *data, int datalen, int mode, __u32 uid, __u32 gid,
145                __u32 cap_effective, __u64 rdev, struct ptlrpc_request **request);
146 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
147              struct ptlrpc_request **request);
148 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
149                const char *old, int oldlen, const char *new, int newlen,
150                struct ptlrpc_request **request);
151 int mdc_setattr(struct obd_export *exp, struct md_op_data *op_data,
152                 void *ea, int ealen, void *ea2, int ea2len,
153                 struct ptlrpc_request **request);
154 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
155                struct ptlrpc_request **request);
156 int mdc_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
157                       ldlm_policy_data_t *policy, ldlm_mode_t mode,
158                       int flags, void *opaque);
159 int mdc_lock_match(struct obd_export *exp, int 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 #endif