Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / mdt / mdt_identity.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2004-2006 Cluster File Systems, Inc.
5  *   Author: Lai Siyao <lsy@clusterfs.com>
6  *   Author: Fan Yong <fanyong@clusterfs.com>
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #ifndef EXPORT_SYMTAB
25 #define EXPORT_SYMTAB
26 #endif
27 #define DEBUG_SUBSYSTEM S_MDS
28
29 #ifndef AUTOCONF_INCLUDED
30 #include <linux/config.h>
31 #endif
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/mm.h>
35 #include <linux/kmod.h>
36 #include <linux/string.h>
37 #include <linux/stat.h>
38 #include <linux/errno.h>
39 #include <linux/version.h>
40 #include <linux/unistd.h>
41 #include <asm/system.h>
42 #include <asm/uaccess.h>
43 #include <linux/fs.h>
44 #include <linux/stat.h>
45 #include <asm/uaccess.h>
46 #include <linux/slab.h>
47 #ifdef HAVE_SEGMENT_H
48 #include <asm/segment.h>
49 #endif
50
51 #include <libcfs/kp30.h>
52 #include <obd.h>
53 #include <obd_class.h>
54 #include <obd_support.h>
55 #include <lustre_net.h>
56 #include <lustre_import.h>
57 #include <lustre_dlm.h>
58 #include <lustre_lib.h>
59 #include <lustre_ucache.h>
60
61 #include "mdt_internal.h"
62
63 static void mdt_identity_entry_init(struct upcall_cache_entry *entry,
64                                     void *unused)
65 {
66         entry->u.identity.mi_uc_entry = entry;
67 }
68
69 static void mdt_identity_entry_free(struct upcall_cache *cache,
70                                     struct upcall_cache_entry *entry)
71 {
72         struct md_identity *identity = &entry->u.identity;
73
74         if (identity->mi_ginfo) {
75                 groups_free(identity->mi_ginfo);
76                 identity->mi_ginfo = NULL;
77         }
78
79         if (identity->mi_nperms) {
80                 LASSERT(identity->mi_perms);
81                 OBD_FREE(identity->mi_perms,
82                          identity->mi_nperms * sizeof(struct md_perm));
83                 identity->mi_nperms = 0;
84         }
85 }
86
87 static int mdt_identity_do_upcall(struct upcall_cache *cache,
88                                   struct upcall_cache_entry *entry)
89 {
90         char keystr[16];
91         char *argv[] = {
92                   [0] = cache->uc_upcall,
93                   [1] = cache->uc_name,
94                   [2] = keystr,
95                   [3] = NULL
96         };
97         char *envp[] = {
98                   [0] = "HOME=/",
99                   [1] = "PATH=/sbin:/usr/sbin",
100                   [2] = NULL
101         };
102         int rc;
103         ENTRY;
104
105         snprintf(keystr, sizeof(keystr), LPU64, entry->ue_key);
106
107         LASSERTF(strcmp(cache->uc_upcall, "NONE"), "no upcall set!");
108         CDEBUG(D_INFO, "The upcall is: %s \n", cache->uc_upcall);
109
110         rc = USERMODEHELPER(argv[0], argv, envp);
111         if (rc < 0) {
112                 CERROR("%s: error invoking upcall %s %s %s: rc %d; "
113                        "check /proc/fs/lustre/mdt/%s/identity_upcall\n",
114                        cache->uc_name, argv[0], argv[1], argv[2], rc,
115                        cache->uc_name);
116         } else {
117                 CDEBUG(D_HA, "%s: invoked upcall %s %s %s\n", cache->uc_name,
118                        argv[0], argv[1], argv[2]);
119                 rc = 0;
120         }
121         RETURN(rc);
122 }
123
124 static int mdt_identity_parse_downcall(struct upcall_cache *cache,
125                                        struct upcall_cache_entry *entry,
126                                        void *args)
127 {
128         struct md_identity *identity = &entry->u.identity;
129         struct identity_downcall_data *data = args;
130         struct group_info *ginfo;
131         struct md_perm *perms = NULL;
132         int size, i;
133         ENTRY;
134
135         LASSERT(data);
136         if (data->idd_ngroups > NGROUPS_MAX)
137                 RETURN(-E2BIG);
138
139         ginfo = groups_alloc(data->idd_ngroups);
140         if (!ginfo) {
141                 CERROR("failed to alloc %d groups\n", data->idd_ngroups);
142                 RETURN(-ENOMEM);
143         }
144
145         lustre_groups_from_list(ginfo, data->idd_groups);
146         lustre_groups_sort(ginfo);
147
148         if (data->idd_nperms) {
149                 size = data->idd_nperms * sizeof(*perms);
150                 OBD_ALLOC(perms, size);
151                 if (!perms) {
152                         CERROR("failed to alloc %d permissions\n",
153                                data->idd_nperms);
154                         groups_free(ginfo);
155                         RETURN(-ENOMEM);
156                 }
157
158                 for (i = 0; i < data->idd_nperms; i++) {
159                         perms[i].mp_nid = data->idd_perms[i].pdd_nid;
160                         perms[i].mp_perm = data->idd_perms[i].pdd_perm;
161                 }
162         }
163
164         identity->mi_uid = data->idd_uid;
165         identity->mi_gid = data->idd_gid;
166         identity->mi_ginfo = ginfo;
167         identity->mi_nperms = data->idd_nperms;
168         identity->mi_perms = perms;
169
170         CDEBUG(D_OTHER, "parse mdt identity@%p: %d:%d, ngroups %u, nperms %u\n",
171                identity, identity->mi_uid, identity->mi_gid,
172                identity->mi_ginfo->ngroups, identity->mi_nperms);
173
174         RETURN(0);
175 }
176
177 struct md_identity *mdt_identity_get(struct upcall_cache *cache, __u32 uid)
178 {
179         struct upcall_cache_entry *entry;
180
181         if (!cache)
182                 return NULL;
183
184         entry = upcall_cache_get_entry(cache, (__u64)uid, NULL);
185         if (IS_ERR(entry)) {
186                 CERROR("upcall_cache_get_entry failed: %ld\n", PTR_ERR(entry));
187                 return NULL;
188         }
189
190         return &entry->u.identity;
191 }
192
193 void mdt_identity_put(struct upcall_cache *cache, struct md_identity *identity)
194 {
195         if (!cache)
196                 return;
197
198         LASSERT(identity);
199         upcall_cache_put_entry(cache, identity->mi_uc_entry);
200 }
201
202 struct upcall_cache_ops mdt_identity_upcall_cache_ops = {
203         .init_entry     = mdt_identity_entry_init,
204         .free_entry     = mdt_identity_entry_free,
205         .do_upcall      = mdt_identity_do_upcall,
206         .parse_downcall = mdt_identity_parse_downcall,
207 };
208
209 void mdt_flush_identity(struct upcall_cache *cache, int uid)
210 {
211         if (uid < 0)
212                 upcall_cache_flush_idle(cache);
213         else
214                 upcall_cache_flush_one(cache, (__u64)uid, NULL);
215 }
216
217 /*
218  * If there is LNET_NID_ANY in perm[i].mp_nid,
219  * it must be perm[0].mp_nid, and act as default perm.
220  */
221 __u32 mdt_identity_get_perm(struct md_identity *identity,
222                                    __u32 is_rmtclient, lnet_nid_t nid)
223 {
224         struct md_perm *perm;
225         int i;
226
227         if (!identity) {
228                 LASSERT(is_rmtclient == 0);
229                 return CFS_SETGRP_PERM;
230         }
231
232         perm = identity->mi_perms;
233         /* check exactly matched nid first */
234         for (i = identity->mi_nperms - 1; i > 0; i--) {
235                 if (perm[i].mp_nid != nid)
236                         continue;
237                 return perm[i].mp_perm;
238         }
239
240         /* check LNET_NID_ANY then */
241         if ((identity->mi_nperms > 0) &&
242             ((perm[0].mp_nid == nid) || (perm[0].mp_nid == LNET_NID_ANY)))
243                 return perm[0].mp_perm;
244
245         /* return default last */
246         return is_rmtclient ? 0 : CFS_SETGRP_PERM;
247 }
248
249 int mdt_pack_remote_perm(struct mdt_thread_info *info, struct mdt_object *o,
250                          void *buf)
251 {
252         struct ptlrpc_request   *req = mdt_info_req(info);
253         struct md_ucred         *uc = mdt_ucred(info);
254         struct md_object        *next = mdt_object_child(o);
255         struct mdt_export_data  *med = mdt_req2med(req);
256         struct mdt_remote_perm  *perm = buf;
257
258         ENTRY;
259
260         /* remote client request always pack ptlrpc_user_desc! */
261         LASSERT(perm);
262
263         if (!med->med_rmtclient)
264                 RETURN(-EBADE);
265
266         if ((uc->mu_valid != UCRED_OLD) && (uc->mu_valid != UCRED_NEW))
267                 RETURN(-EINVAL);
268
269         perm->rp_uid = uc->mu_o_uid;
270         perm->rp_gid = uc->mu_o_gid;
271         perm->rp_fsuid = uc->mu_o_fsuid;
272         perm->rp_fsgid = uc->mu_o_fsgid;
273
274         perm->rp_access_perm = 0;
275         if (mo_permission(info->mti_env, NULL, next, NULL, MAY_READ) == 0)
276                 perm->rp_access_perm |= MAY_READ;
277         if (mo_permission(info->mti_env, NULL, next, NULL, MAY_WRITE) == 0)
278                 perm->rp_access_perm |= MAY_WRITE;
279         if (mo_permission(info->mti_env, NULL, next, NULL, MAY_EXEC) == 0)
280                 perm->rp_access_perm |= MAY_EXEC;
281
282         RETURN(0);
283 }