Whamcloud - gitweb
LU-6635 lfsck: block replacing the OST-object for test
[fs/lustre-release.git] / lustre / mdd / mdd_permission.c
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) 2012, 2015, 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/mdd/mdd_permission.c
33  *
34  * Lustre Metadata Server (mdd) routines
35  *
36  * Author: fangyong@clusterfs.com
37  * Author: lsy@clusterfs.com
38  */
39
40 #define DEBUG_SUBSYSTEM S_MDS
41
42 #include <obd_class.h>
43 #include <lustre_ver.h>
44 #include <lprocfs_status.h>
45 #include <lustre_mds.h>
46 #include <lustre_idmap.h>
47 #include "mdd_internal.h"
48
49 #ifdef CONFIG_FS_POSIX_ACL
50
51 /*
52  * Hold write_lock for o.
53  */
54 int mdd_acl_chmod(const struct lu_env *env, struct mdd_object *o, __u32 mode,
55                   struct thandle *handle)
56 {
57         struct lu_buf           *buf;
58         posix_acl_xattr_header  *head;
59         posix_acl_xattr_entry   *entry;
60         int                      entry_count;
61         int                      rc;
62
63         ENTRY;
64
65         buf = mdd_buf_get(env, mdd_env_info(env)->mti_xattr_buf,
66                           sizeof(mdd_env_info(env)->mti_xattr_buf));
67
68         rc = mdo_xattr_get(env, o, buf, XATTR_NAME_ACL_ACCESS);
69         if ((rc == -EOPNOTSUPP) || (rc == -ENODATA))
70                 RETURN(0);
71         else if (rc <= 0)
72                 RETURN(rc);
73
74         buf->lb_len = rc;
75         head = (posix_acl_xattr_header *)(buf->lb_buf);
76         entry = head->a_entries;
77         entry_count = (buf->lb_len - sizeof(head->a_version)) /
78                 sizeof(posix_acl_xattr_entry);
79         if (entry_count <= 0)
80                 RETURN(0);
81
82         rc = lustre_posix_acl_chmod_masq(entry, mode, entry_count);
83         if (rc)
84                 RETURN(rc);
85
86         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_ACL_ACCESS,
87                            0, handle);
88         RETURN(rc);
89 }
90
91 int mdd_acl_set(const struct lu_env *env, struct mdd_object *obj,
92                 struct lu_attr *la, const struct lu_buf *buf, int fl)
93 {
94         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
95         struct thandle          *handle;
96         posix_acl_xattr_header  *head;
97         posix_acl_xattr_entry   *entry;
98         int                      entry_count;
99         bool                     not_equiv, mode_change;
100         mode_t                   mode;
101         int                      rc;
102         ENTRY;
103
104         head = (posix_acl_xattr_header *)(buf->lb_buf);
105         entry = head->a_entries;
106         entry_count = (buf->lb_len - sizeof(head->a_version)) /
107                 sizeof(posix_acl_xattr_entry);
108         if (entry_count <= 0)
109                 RETURN(0);
110
111         LASSERT(la->la_valid & LA_MODE);
112         mode = la->la_mode;
113         rc = lustre_posix_acl_equiv_mode(entry, &mode, entry_count);
114         if (rc < 0)
115                 RETURN(rc);
116
117         not_equiv = (rc > 0);
118         mode_change = (mode != la->la_mode);
119
120         handle = mdd_trans_create(env, mdd);
121         if (IS_ERR(handle))
122                 RETURN(PTR_ERR(handle));
123
124         /* rc tells whether ACL can be represented by i_mode only */
125         if (not_equiv)
126                 rc = mdo_declare_xattr_set(env, obj, buf,
127                                 XATTR_NAME_ACL_ACCESS, fl, handle);
128         else
129                 rc = mdo_declare_xattr_del(env, obj, XATTR_NAME_ACL_ACCESS,
130                                 handle);
131         if (rc)
132                 GOTO(stop, rc);
133
134         if (mode_change) {
135                 la->la_mode = mode;
136                 la->la_valid = LA_MODE;
137                 rc = mdo_declare_attr_set(env, obj, la, handle);
138         }
139
140         rc = mdd_trans_start(env, mdd, handle);
141         if (rc)
142                 GOTO(stop, rc);
143
144         mdd_write_lock(env, obj, MOR_TGT_CHILD);
145         /* whether ACL can be represented by i_mode only */
146         if (not_equiv)
147                 rc = mdo_xattr_set(env, obj, buf, XATTR_NAME_ACL_ACCESS, fl,
148                                    handle);
149         else
150                 rc = mdo_xattr_del(env, obj, XATTR_NAME_ACL_ACCESS, handle);
151         if (rc)
152                 GOTO(unlock, rc);
153
154         if (mode_change)
155                 rc = mdo_attr_set(env, obj, la, handle);
156
157         /* security-replated changes may require sync */
158         if (S_ISDIR(mdd_object_type(obj)))
159                 handle->th_sync |= !!mdd->mdd_sync_permission;
160 unlock:
161         mdd_write_unlock(env, obj);
162 stop:
163         rc = mdd_trans_stop(env, mdd, rc, handle);
164
165         RETURN(rc);
166 }
167
168 /**
169  * Fix mode and ACL according to the default ACL(buf)
170  * \retval = 0 ACL does not need to be reset.
171  * \retval = 1 ACL needs to be reset.
172  * \retval < 0 error.
173  **/
174 int __mdd_fix_mode_acl(const struct lu_env *env, struct lu_buf *buf,
175                        __u32 *mode)
176 {
177         posix_acl_xattr_header  *head;
178         posix_acl_xattr_entry   *entry;
179         int                      entry_count;
180         int                      rc;
181
182         ENTRY;
183
184         head = (posix_acl_xattr_header *)(buf->lb_buf);
185         entry = head->a_entries;
186         entry_count = (buf->lb_len - sizeof(head->a_version)) /
187                       sizeof(posix_acl_xattr_entry);
188         if (entry_count <= 0)
189                 RETURN(0);
190
191         rc = lustre_posix_acl_create_masq(entry, mode, entry_count);
192
193         RETURN(rc);
194 }
195
196 #endif
197
198 /*
199  * Hold read_lock for obj.
200  */
201 static int mdd_check_acl(const struct lu_env *env, struct mdd_object *obj,
202                         const struct lu_attr *la, int mask)
203 {
204 #ifdef CONFIG_FS_POSIX_ACL
205         struct lu_ucred  *uc  = lu_ucred_assert(env);
206         posix_acl_xattr_header *head;
207         posix_acl_xattr_entry *entry;
208         struct lu_buf   *buf;
209         int entry_count;
210         int rc;
211         ENTRY;
212
213         buf = mdd_buf_get(env, mdd_env_info(env)->mti_xattr_buf,
214                           sizeof(mdd_env_info(env)->mti_xattr_buf));
215         rc = mdo_xattr_get(env, obj, buf, XATTR_NAME_ACL_ACCESS);
216         if (rc <= 0)
217                 RETURN(rc ? : -EACCES);
218
219         buf->lb_len = rc;
220         head = (posix_acl_xattr_header *)(buf->lb_buf);
221         entry = head->a_entries;
222         entry_count = posix_acl_xattr_count(buf->lb_len);
223
224         /* Disregard empty ACLs and fall back to
225          * standard UNIX permissions. See LU-5434 */
226         if (entry_count <= 0)
227                 RETURN(-EAGAIN);
228
229         rc = lustre_posix_acl_permission(uc, la, mask, entry, entry_count);
230         RETURN(rc);
231 #else
232         ENTRY;
233         RETURN(-EAGAIN);
234 #endif
235 }
236
237 int __mdd_permission_internal(const struct lu_env *env, struct mdd_object *obj,
238                               const struct lu_attr *la, int mask, int role)
239 {
240         struct lu_ucred *uc = lu_ucred(env);
241         __u32 mode;
242         int rc;
243         ENTRY;
244
245         if (mask == 0)
246                 RETURN(0);
247
248         /* These means unnecessary for permission check */
249         if ((uc == NULL) || (uc->uc_valid == UCRED_INIT))
250                 RETURN(0);
251
252         /* Invalid user credit */
253         if (uc->uc_valid == UCRED_INVALID)
254                 RETURN(-EACCES);
255
256         /*
257          * Nobody gets write access to an immutable file.
258          */
259         if (mask & MAY_WRITE && la->la_flags & LUSTRE_IMMUTABLE_FL)
260                 RETURN(-EACCES);
261
262         LASSERT(la != NULL);
263
264         mode = la->la_mode;
265         if (uc->uc_fsuid == la->la_uid) {
266                 mode >>= 6;
267         } else {
268                 if (mode & S_IRWXG) {
269                         if (role != -1)
270                                 mdd_read_lock(env, obj, role);
271                         rc = mdd_check_acl(env, obj, la, mask);
272                         if (role != -1)
273                                 mdd_read_unlock(env, obj);
274                         if (rc == -EACCES)
275                                 goto check_capabilities;
276                         else if ((rc != -EAGAIN) && (rc != -EOPNOTSUPP) &&
277                                  (rc != -ENODATA))
278                                 RETURN(rc);
279                 }
280                 if (lustre_in_group_p(uc, la->la_gid))
281                         mode >>= 3;
282         }
283
284         if (((mode & mask & S_IRWXO) == mask))
285                 RETURN(0);
286
287 check_capabilities:
288         if (!(mask & MAY_EXEC) ||
289             (la->la_mode & S_IXUGO) || S_ISDIR(la->la_mode))
290                 if (md_capable(uc, CFS_CAP_DAC_OVERRIDE))
291                         RETURN(0);
292
293         if ((mask == MAY_READ) ||
294             (S_ISDIR(la->la_mode) && !(mask & MAY_WRITE)))
295                 if (md_capable(uc, CFS_CAP_DAC_READ_SEARCH))
296                         RETURN(0);
297
298         CDEBUG(D_SEC, "permission denied, mode %x, fsuid %u, uid %u\n",
299                la->la_mode, uc->uc_fsuid, la->la_uid);
300
301         RETURN(-EACCES);
302 }
303
304 int mdd_permission(const struct lu_env *env,
305                    struct md_object *pobj, struct md_object *cobj,
306                    struct md_attr *ma, int mask)
307 {
308         struct mdd_object *mdd_pobj = NULL;
309         struct mdd_object *mdd_cobj;
310         struct lu_ucred *uc = NULL;
311         struct lu_attr *pattr = NULL;
312         struct lu_attr *cattr = MDD_ENV_VAR(env, cattr);
313         int rc = 0;
314         ENTRY;
315
316         LASSERT(cobj);
317         if (pobj != NULL) {
318                 mdd_pobj = md2mdd_obj(pobj);
319                 pattr = MDD_ENV_VAR(env, pattr);
320                 rc = mdd_la_get(env, mdd_pobj, pattr);
321                 if (rc)
322                         RETURN(rc);
323         }
324
325         mdd_cobj = md2mdd_obj(cobj);
326         rc = mdd_la_get(env, mdd_cobj, cattr);
327         if (rc)
328                 RETURN(rc);
329
330         /* For cross_open case, the "mask" is open flags,
331          * so convert it to permission mask first.
332          * XXX: MDS_OPEN_CROSS must be NOT equal to permission mask MAY_*. */
333         if (unlikely(mask & MDS_OPEN_CROSS))
334                 mask = accmode(env, cattr, mask & ~MDS_OPEN_CROSS);
335
336         rc = mdd_permission_internal_locked(env, mdd_cobj, cattr,
337                                             mask & ~MAY_RGETFACL,
338                                             MOR_TGT_CHILD);
339
340         if (unlikely(rc == 0 && (mask & MAY_RGETFACL))) {
341                 if (likely(!uc))
342                         uc = lu_ucred_assert(env);
343
344                 if (cattr->la_uid != uc->uc_fsuid &&
345                     !md_capable(uc, CFS_CAP_FOWNER))
346                         rc = -EPERM;
347         }
348
349         RETURN(rc);
350 }