Whamcloud - gitweb
f137d41e16a1b51ccc7ef097ebe593894a8a16b8
[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.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 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  * lustre/mdd/mdd_permission.c
37  *
38  * Lustre Metadata Server (mdd) routines
39  *
40  * Author: fangyong@clusterfs.com
41  * Author: lsy@clusterfs.com
42  */
43
44 #define DEBUG_SUBSYSTEM S_MDS
45
46 #include <obd_class.h>
47 #include <lustre_ver.h>
48 #include <lprocfs_status.h>
49 #include <lustre_mds.h>
50 #include <lustre_idmap.h>
51 #include "mdd_internal.h"
52
53 #ifdef CONFIG_FS_POSIX_ACL
54
55 /*
56  * Hold write_lock for o.
57  */
58 int mdd_acl_chmod(const struct lu_env *env, struct mdd_object *o, __u32 mode,
59                   struct thandle *handle)
60 {
61         struct lu_buf           *buf;
62         posix_acl_xattr_header  *head;
63         posix_acl_xattr_entry   *entry;
64         int                      entry_count;
65         int                      rc;
66
67         ENTRY;
68
69         buf = mdd_buf_get(env, mdd_env_info(env)->mti_xattr_buf,
70                           sizeof(mdd_env_info(env)->mti_xattr_buf));
71
72         rc = mdo_xattr_get(env, o, buf, XATTR_NAME_ACL_ACCESS, BYPASS_CAPA);
73         if ((rc == -EOPNOTSUPP) || (rc == -ENODATA))
74                 RETURN(0);
75         else if (rc <= 0)
76                 RETURN(rc);
77
78         buf->lb_len = rc;
79         head = (posix_acl_xattr_header *)(buf->lb_buf);
80         entry = head->a_entries;
81         entry_count = (buf->lb_len - sizeof(head->a_version)) /
82                 sizeof(posix_acl_xattr_entry);
83         if (entry_count <= 0)
84                 RETURN(0);
85
86         rc = lustre_posix_acl_chmod_masq(entry, mode, entry_count);
87         if (rc)
88                 RETURN(rc);
89
90         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_ACL_ACCESS,
91                            0, handle, BYPASS_CAPA);
92         RETURN(rc);
93 }
94
95 int mdd_acl_set(const struct lu_env *env, struct mdd_object *obj,
96                 struct lu_attr *la, const struct lu_buf *buf, int fl)
97 {
98         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
99         struct thandle          *handle;
100         posix_acl_xattr_header  *head;
101         posix_acl_xattr_entry   *entry;
102         int                      rc, entry_count;
103         bool                     not_equiv, mode_change;
104         mode_t                   mode;
105         ENTRY;
106
107         head = (posix_acl_xattr_header *)(buf->lb_buf);
108         entry = head->a_entries;
109         entry_count = (buf->lb_len - sizeof(head->a_version)) /
110                 sizeof(posix_acl_xattr_entry);
111         if (entry_count <= 0)
112                 RETURN(0);
113
114         LASSERT(la->la_valid & LA_MODE);
115         mode = la->la_mode;
116         rc = lustre_posix_acl_equiv_mode(entry, &mode, entry_count);
117         if (rc < 0)
118                 RETURN(rc);
119
120         not_equiv = (rc > 0);
121         mode_change = (mode != la->la_mode);
122
123         handle = mdd_trans_create(env, mdd);
124         if (IS_ERR(handle))
125                 RETURN(PTR_ERR(handle));
126
127         /* rc tells whether ACL can be represented by i_mode only */
128         if (not_equiv)
129                 rc = mdo_declare_xattr_set(env, obj, buf,
130                                 XATTR_NAME_ACL_ACCESS, fl, handle);
131         else
132                 rc = mdo_declare_xattr_del(env, obj, XATTR_NAME_ACL_ACCESS,
133                                 handle);
134         if (rc)
135                 GOTO(stop, rc);
136
137         if (mode_change) {
138                 la->la_mode = mode;
139                 la->la_valid = LA_MODE;
140                 rc = mdo_declare_attr_set(env, obj, la, handle);
141         }
142
143         rc = mdd_trans_start(env, mdd, handle);
144         if (rc)
145                 GOTO(stop, rc);
146
147         mdd_write_lock(env, obj, MOR_TGT_CHILD);
148         /* whether ACL can be represented by i_mode only */
149         if (not_equiv)
150                 rc = mdo_xattr_set(env, obj, buf, XATTR_NAME_ACL_ACCESS, fl,
151                                 handle, mdd_object_capa(env, obj));
152         else
153                 rc = mdo_xattr_del(env, obj, XATTR_NAME_ACL_ACCESS, handle,
154                                 mdd_object_capa(env, obj));
155         if (rc)
156                 GOTO(unlock, rc);
157
158         if (mode_change)
159                 rc = mdo_attr_set(env, obj, la, handle,
160                                 mdd_object_capa(env, obj));
161
162         /* security-replated changes may require sync */
163         if (S_ISDIR(mdd_object_type(obj)))
164                 handle->th_sync |= !!mdd->mdd_sync_permission;
165 unlock:
166         mdd_write_unlock(env, obj);
167 stop:
168         mdd_trans_stop(env, mdd, rc, handle);
169
170         RETURN(rc);
171 }
172
173 /**
174  * Fix mode and ACL according to the default ACL(buf)
175  * \retval = 0 ACL does not need to be reset.
176  * \retval = 1 ACL needs to be reset.
177  * \retval < 0 error.
178  **/
179 int __mdd_fix_mode_acl(const struct lu_env *env, struct lu_buf *buf,
180                        __u32 *mode)
181 {
182         posix_acl_xattr_header  *head;
183         posix_acl_xattr_entry   *entry;
184         int                      entry_count;
185         int                      rc;
186
187         ENTRY;
188
189         head = (posix_acl_xattr_header *)(buf->lb_buf);
190         entry = head->a_entries;
191         entry_count = (buf->lb_len - sizeof(head->a_version)) /
192                       sizeof(posix_acl_xattr_entry);
193         if (entry_count <= 0)
194                 RETURN(0);
195
196         rc = lustre_posix_acl_create_masq(entry, mode, entry_count);
197
198         RETURN(rc);
199 }
200
201 #endif
202
203 /*
204  * Hold read_lock for obj.
205  */
206 static int mdd_check_acl(const struct lu_env *env, struct mdd_object *obj,
207                         const struct lu_attr *la, int mask)
208 {
209 #ifdef CONFIG_FS_POSIX_ACL
210         struct lu_ucred  *uc  = lu_ucred_assert(env);
211         posix_acl_xattr_header *head;
212         posix_acl_xattr_entry *entry;
213         struct lu_buf   *buf;
214         int entry_count;
215         int rc;
216         ENTRY;
217
218         buf = mdd_buf_get(env, mdd_env_info(env)->mti_xattr_buf,
219                           sizeof(mdd_env_info(env)->mti_xattr_buf));
220         rc = mdo_xattr_get(env, obj, buf, XATTR_NAME_ACL_ACCESS,
221                            mdd_object_capa(env, obj));
222         if (rc <= 0)
223                 RETURN(rc ? : -EACCES);
224
225         buf->lb_len = rc;
226         head = (posix_acl_xattr_header *)(buf->lb_buf);
227         entry = head->a_entries;
228         entry_count = posix_acl_xattr_count(buf->lb_len);
229
230         /* Disregard empty ACLs and fall back to
231          * standard UNIX permissions. See LU-5434 */
232         if (entry_count <= 0)
233                 RETURN(-EAGAIN);
234
235         rc = lustre_posix_acl_permission(uc, la, mask, entry, entry_count);
236         RETURN(rc);
237 #else
238         ENTRY;
239         RETURN(-EAGAIN);
240 #endif
241 }
242
243 int __mdd_permission_internal(const struct lu_env *env, struct mdd_object *obj,
244                               const struct lu_attr *la, int mask, int role)
245 {
246         struct lu_ucred *uc = lu_ucred(env);
247         __u32 mode;
248         int rc;
249         ENTRY;
250
251         if (mask == 0)
252                 RETURN(0);
253
254         /* These means unnecessary for permission check */
255         if ((uc == NULL) || (uc->uc_valid == UCRED_INIT))
256                 RETURN(0);
257
258         /* Invalid user credit */
259         if (uc->uc_valid == UCRED_INVALID)
260                 RETURN(-EACCES);
261
262         /*
263          * Nobody gets write access to an immutable file.
264          */
265         if (mask & MAY_WRITE && la->la_flags & LUSTRE_IMMUTABLE_FL)
266                 RETURN(-EACCES);
267
268         LASSERT(la != NULL);
269
270         mode = la->la_mode;
271         if (uc->uc_fsuid == la->la_uid) {
272                 mode >>= 6;
273         } else {
274                 if (mode & S_IRWXG) {
275                         if (role != -1)
276                                 mdd_read_lock(env, obj, role);
277                         rc = mdd_check_acl(env, obj, la, mask);
278                         if (role != -1)
279                                 mdd_read_unlock(env, obj);
280                         if (rc == -EACCES)
281                                 goto check_capabilities;
282                         else if ((rc != -EAGAIN) && (rc != -EOPNOTSUPP) &&
283                                  (rc != -ENODATA))
284                                 RETURN(rc);
285                 }
286                 if (lustre_in_group_p(uc, la->la_gid))
287                         mode >>= 3;
288         }
289
290         if (((mode & mask & S_IRWXO) == mask))
291                 RETURN(0);
292
293 check_capabilities:
294         if (!(mask & MAY_EXEC) ||
295             (la->la_mode & S_IXUGO) || S_ISDIR(la->la_mode))
296                 if (md_capable(uc, CFS_CAP_DAC_OVERRIDE))
297                         RETURN(0);
298
299         if ((mask == MAY_READ) ||
300             (S_ISDIR(la->la_mode) && !(mask & MAY_WRITE)))
301                 if (md_capable(uc, CFS_CAP_DAC_READ_SEARCH))
302                         RETURN(0);
303
304         RETURN(-EACCES);
305 }
306
307 int mdd_permission(const struct lu_env *env,
308                    struct md_object *pobj, struct md_object *cobj,
309                    struct md_attr *ma, int mask)
310 {
311         struct mdd_object *mdd_pobj = NULL;
312         struct mdd_object *mdd_cobj;
313         struct lu_ucred *uc = NULL;
314         struct lu_attr *pattr = NULL;
315         struct lu_attr *cattr = MDD_ENV_VAR(env, cattr);
316         bool check_create;
317         bool check_link;
318         int check_unlink;
319         int check_rename_src, check_rename_tar;
320         int check_vtx_part, check_vtx_full;
321         int check_rgetfacl;
322         int rc = 0;
323         ENTRY;
324
325         LASSERT(cobj);
326         if (pobj != NULL) {
327                 mdd_pobj = md2mdd_obj(pobj);
328                 pattr = MDD_ENV_VAR(env, pattr);
329                 rc = mdd_la_get(env, mdd_pobj, pattr, BYPASS_CAPA);
330                 if (rc)
331                         RETURN(rc);
332         }
333
334         mdd_cobj = md2mdd_obj(cobj);
335         rc = mdd_la_get(env, mdd_cobj, cattr, BYPASS_CAPA);
336         if (rc)
337                 RETURN(rc);
338
339         /* For cross_open case, the "mask" is open flags,
340          * so convert it to permission mask first.
341          * XXX: MDS_OPEN_CROSS must be NOT equal to permission mask MAY_*. */
342         if (unlikely(mask & MDS_OPEN_CROSS))
343                 mask = accmode(env, cattr, mask & ~MDS_OPEN_CROSS);
344
345         check_create = mask & MAY_CREATE;
346         check_link = mask & MAY_LINK;
347         check_unlink = mask & MAY_UNLINK;
348         check_rename_src = mask & MAY_RENAME_SRC;
349         check_rename_tar = mask & MAY_RENAME_TAR;
350         check_vtx_part = mask & MAY_VTX_PART;
351         check_vtx_full = mask & MAY_VTX_FULL;
352         check_rgetfacl = mask & MAY_RGETFACL;
353
354         mask &= ~(MAY_CREATE | MAY_LINK |
355                 MAY_UNLINK |
356                 MAY_RENAME_SRC | MAY_RENAME_TAR |
357                 MAY_VTX_PART | MAY_VTX_FULL |
358                 MAY_RGETFACL);
359
360         rc = mdd_permission_internal_locked(env, mdd_cobj, cattr, mask,
361                                         MOR_TGT_CHILD);
362
363         if (!rc && check_create)
364                 rc = mdd_may_create(env, mdd_pobj, pattr, mdd_cobj, true);
365
366         if (!rc && check_unlink)
367                 rc = mdd_may_unlink(env, mdd_pobj, pattr, cattr);
368
369         if (!rc && (check_rename_src || check_rename_tar))
370                 rc = mdd_may_delete(env, mdd_pobj, pattr, mdd_cobj, cattr, NULL,
371                                 1, check_rename_tar);
372
373         if (!rc && (check_vtx_part || check_vtx_full)) {
374                 uc = lu_ucred_assert(env);
375
376                 if (!(cattr->la_mode & S_ISVTX) ||
377                     (cattr->la_uid == uc->uc_fsuid) ||
378                     (check_vtx_full && (ma->ma_attr.la_valid & LA_UID) &&
379                      (ma->ma_attr.la_uid == uc->uc_fsuid))) {
380                         ma->ma_attr_flags |= MDS_VTX_BYPASS;
381                 } else {
382                         ma->ma_attr_flags &= ~MDS_VTX_BYPASS;
383                         if (check_vtx_full)
384                                 rc = -EPERM;
385                 }
386         }
387
388         if (unlikely(!rc && check_rgetfacl)) {
389                 if (likely(!uc))
390                         uc = lu_ucred_assert(env);
391
392                 if (cattr->la_uid != uc->uc_fsuid &&
393                     !md_capable(uc, CFS_CAP_FOWNER))
394                         rc = -EPERM;
395         }
396
397         RETURN(rc);
398 }
399
400 int mdd_capa_get(const struct lu_env *env, struct md_object *obj,
401                  struct lustre_capa *capa, int renewal)
402 {
403         struct mdd_object *mdd_obj = md2mdd_obj(obj);
404         struct obd_capa *oc;
405         int rc = 0;
406         ENTRY;
407
408         oc = mdo_capa_get(env, mdd_obj, renewal ? capa : NULL,
409                           capa->lc_opc);
410         if (IS_ERR(oc)) {
411                 rc = PTR_ERR(oc);
412         } else if (likely(oc != NULL)) {
413                 capa_cpy(capa, oc);
414                 capa_put(oc);
415         }
416
417         RETURN(rc);
418 }