Whamcloud - gitweb
a15eaf9a4a27b4cf3e4c070232c1f72b5cae9d70
[fs/lustre-release.git] / lustre / utils / l_getidentity.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) 2011, 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
37 #include <stdlib.h>
38 #include <stdint.h>
39 #include <stdio.h>
40 #include <unistd.h>
41 #include <errno.h>
42 #include <string.h>
43 #include <fcntl.h>
44 #include <pwd.h>
45 #include <grp.h>
46 #include <stdarg.h>
47 #include <stddef.h>
48 #include <libgen.h>
49 #include <syslog.h>
50
51 #include <libcfs/libcfs.h>
52 #include <lustre/lustre_user.h>
53 #include <lustre/lustre_idl.h>
54
55 #define PERM_PATHNAME "/etc/lustre/perm.conf"
56
57 /*
58  * permission file format is like this:
59  * {nid} {uid} {perms}
60  *
61  * '*' nid means any nid
62  * '*' uid means any uid
63  * the valid values for perms are:
64  * setuid/setgid/setgrp/rmtacl           -- enable corresponding perm
65  * nosetuid/nosetgid/nosetgrp/normtacl   -- disable corresponding perm
66  * they can be listed together, seperated by ',',
67  * when perm and noperm are in the same line (item), noperm is preferential,
68  * when they are in different lines (items), the latter is preferential,
69  * '*' nid is as default perm, and is not preferential.
70  */
71
72 static char *progname;
73
74 static void usage(void)
75 {
76         fprintf(stderr,
77                 "\nusage: %s {mdtname} {uid}\n"
78                 "Normally invoked as an upcall from Lustre, set via:\n"
79                 "/proc/fs/lustre/mdt/${mdtname}/identity_upcall\n",
80                 progname);
81 }
82
83 static int compare_u32(const void *v1, const void *v2)
84 {
85         return (*(__u32 *)v1 - *(__u32 *)v2);
86 }
87
88 static void errlog(const char *fmt, ...)
89 {
90         va_list args;
91
92         openlog(progname, LOG_PERROR | LOG_PID, LOG_AUTHPRIV);
93
94         va_start(args, fmt);
95         vsyslog(LOG_NOTICE, fmt, args);
96         va_end(args);
97
98         closelog();
99 }
100
101 int get_groups_local(struct identity_downcall_data *data,
102                      unsigned int maxgroups)
103 {
104         gid_t *groups, *groups_tmp = NULL;
105         unsigned int ngroups = 0;
106         int ngroups_tmp;
107         struct passwd *pw;
108         char *pw_name;
109         int namelen;
110         int i;
111
112         pw = getpwuid(data->idd_uid);
113         if (!pw) {
114                 errlog("no such user %u\n", data->idd_uid);
115                 data->idd_err = errno ? errno : EIDRM;
116                 return -1;
117         }
118
119         data->idd_gid = pw->pw_gid;
120         namelen = sysconf(_SC_LOGIN_NAME_MAX);
121         if (namelen < _POSIX_LOGIN_NAME_MAX)
122                 namelen = _POSIX_LOGIN_NAME_MAX;
123
124         pw_name = malloc(namelen);
125         if (!pw_name) {
126                 errlog("malloc error\n");
127                 data->idd_err = errno;
128                 return -1;
129         }
130
131         memset(pw_name, 0, namelen);
132         strncpy(pw_name, pw->pw_name, namelen - 1);
133         groups = data->idd_groups;
134
135         /* Allocate array of size maxgroups instead of handling two
136          * consecutive and potentially racy getgrouplist() calls. */
137         groups_tmp = malloc(maxgroups * sizeof(gid_t));
138         if (groups_tmp == NULL) {
139                 free(pw_name);
140                 data->idd_err = errno ? errno : ENOMEM;
141                 errlog("malloc error=%u\n",data->idd_err);
142                 return -1;
143         }
144
145         ngroups_tmp = maxgroups;
146         if (getgrouplist(pw->pw_name, pw->pw_gid, groups_tmp, &ngroups_tmp) <
147             0) {
148                 free(pw_name);
149                 free(groups_tmp);
150                 data->idd_err = errno ? errno : EIDRM;
151                 errlog("getgrouplist() error for uid %u: error=%u\n",
152                         data->idd_uid, data->idd_err);
153                 return -1;
154         }
155
156         /* Do not place user's group ID in to the resulting groups list */
157         for (i = 0; i < ngroups_tmp; i++)
158                 if (pw->pw_gid != groups_tmp[i])
159                         groups[ngroups++] = groups_tmp[i];
160
161         if (ngroups > 0)
162                 qsort(groups, ngroups, sizeof(*groups), compare_u32);
163         data->idd_ngroups = ngroups;
164
165         free(pw_name);
166         free(groups_tmp);
167         return 0;
168 }
169
170 static inline int comment_line(char *line)
171 {
172         char *p = line;
173
174         while (*p && (*p == ' ' || *p == '\t')) p++;
175
176         if (!*p || *p == '\n' || *p == '#')
177                 return 1;
178         return 0;
179 }
180
181 static inline int match_uid(uid_t uid, const char *str)
182 {
183         char *end;
184         uid_t uid2;
185
186         if(!strcmp(str, "*"))
187                 return -1;
188
189         uid2 = strtoul(str, &end, 0);
190         if (*end)
191                 return 0;
192         return (uid == uid2);
193 }
194
195 typedef struct {
196         char   *name;
197         __u32   bit;
198 } perm_type_t;
199
200 static perm_type_t perm_types[] = {
201         { "setuid", CFS_SETUID_PERM },
202         { "setgid", CFS_SETGID_PERM },
203         { "setgrp", CFS_SETGRP_PERM },
204         { "rmtacl", CFS_RMTACL_PERM },
205         { "rmtown", CFS_RMTOWN_PERM },
206         { 0 }
207 };
208
209 static perm_type_t noperm_types[] = {
210         { "nosetuid", CFS_SETUID_PERM },
211         { "nosetgid", CFS_SETGID_PERM },
212         { "nosetgrp", CFS_SETGRP_PERM },
213         { "normtacl", CFS_RMTACL_PERM },
214         { "normtown", CFS_RMTOWN_PERM },
215         { 0 }
216 };
217
218 int parse_perm(__u32 *perm, __u32 *noperm, char *str)
219 {
220         char *start, *end;
221         char name[64];
222         perm_type_t *pt;
223
224         *perm = 0;
225         *noperm = 0;
226         start = str;
227         while (1) {
228                 memset(name, 0, sizeof(name));
229                 end = strchr(start, ',');
230                 if (!end)
231                         end = str + strlen(str);
232                 if (start >= end)
233                         break;
234                 strncpy(name, start, end - start);
235                 for (pt = perm_types; pt->name; pt++) {
236                         if (!strcasecmp(name, pt->name)) {
237                                 *perm |= pt->bit;
238                                 break;
239                         }
240                 }
241
242                 if (!pt->name) {
243                         for (pt = noperm_types; pt->name; pt++) {
244                                 if (!strcasecmp(name, pt->name)) {
245                                         *noperm |= pt->bit;
246                                         break;
247                                 }
248                         }
249
250                         if (!pt->name) {
251                                 printf("unkown type: %s\n", name);
252                                 return -1;
253                         }
254                 }
255
256                 start = end + 1;
257         }
258         return 0;
259 }
260
261 int parse_perm_line(struct identity_downcall_data *data, char *line)
262 {
263         char uid_str[256], nid_str[256], perm_str[256];
264         lnet_nid_t nid;
265         __u32 perm, noperm;
266         int rc, i;
267
268         if (data->idd_nperms >= N_PERMS_MAX) {
269                 errlog("permission count %d > max %d\n",
270                         data->idd_nperms, N_PERMS_MAX);
271                 return -1;
272         }
273
274         rc = sscanf(line, "%s %s %s", nid_str, uid_str, perm_str);
275         if (rc != 3) {
276                 errlog("can't parse line %s\n", line);
277                 return -1;
278         }
279
280         if (!match_uid(data->idd_uid, uid_str))
281                 return 0;
282
283         if (!strcmp(nid_str, "*")) {
284                 nid = LNET_NID_ANY;
285         } else {
286                 nid = libcfs_str2nid(nid_str);
287                 if (nid == LNET_NID_ANY) {
288                         errlog("can't parse nid %s\n", nid_str);
289                         return -1;
290                 }
291         }
292
293         if (parse_perm(&perm, &noperm, perm_str)) {
294                 errlog("invalid perm %s\n", perm_str);
295                 return -1;
296         }
297
298         /* merge the perms with the same nid.
299          *
300          * If there is LNET_NID_ANY in data->idd_perms[i].pdd_nid,
301          * it must be data->idd_perms[0].pdd_nid, and act as default perm.
302          */
303         if (nid != LNET_NID_ANY) {
304                 int found = 0;
305
306                 /* search for the same nid */
307                 for (i = data->idd_nperms - 1; i >= 0; i--) {
308                         if (data->idd_perms[i].pdd_nid == nid) {
309                                 data->idd_perms[i].pdd_perm =
310                                         (data->idd_perms[i].pdd_perm | perm) &
311                                         ~noperm;
312                                 found = 1;
313                                 break;
314                         }
315                 }
316
317                 /* NOT found, add to tail */
318                 if (!found) {
319                         data->idd_perms[data->idd_nperms].pdd_nid = nid;
320                         data->idd_perms[data->idd_nperms].pdd_perm =
321                                 perm & ~noperm;
322                         data->idd_nperms++;
323                 }
324         } else {
325                 if (data->idd_nperms > 0) {
326                         /* the first one isn't LNET_NID_ANY, need exchange */
327                         if (data->idd_perms[0].pdd_nid != LNET_NID_ANY) {
328                                 data->idd_perms[data->idd_nperms].pdd_nid =
329                                         data->idd_perms[0].pdd_nid;
330                                 data->idd_perms[data->idd_nperms].pdd_perm =
331                                         data->idd_perms[0].pdd_perm;
332                                 data->idd_perms[0].pdd_nid = LNET_NID_ANY;
333                                 data->idd_perms[0].pdd_perm = perm & ~noperm;
334                                 data->idd_nperms++;
335                         } else {
336                                 /* only fix LNET_NID_ANY item */
337                                 data->idd_perms[0].pdd_perm =
338                                         (data->idd_perms[0].pdd_perm | perm) &
339                                         ~noperm;
340                         }
341                 } else {
342                         /* it is the first one, only add to head */
343                         data->idd_perms[0].pdd_nid = LNET_NID_ANY;
344                         data->idd_perms[0].pdd_perm = perm & ~noperm;
345                         data->idd_nperms = 1;
346                 }
347         }
348
349         return 0;
350 }
351
352 int get_perms(struct identity_downcall_data *data)
353 {
354         FILE *fp;
355         char line[1024];
356
357         fp = fopen(PERM_PATHNAME, "r");
358         if (fp == NULL) {
359                 if (errno == ENOENT) {
360                         return 0;
361                 } else {
362                         errlog("open %s failed: %s\n",
363                                PERM_PATHNAME, strerror(errno));
364                         data->idd_err = errno;
365                         return -1;
366                 }
367         }
368
369         while (fgets(line, 1024, fp)) {
370                 if (comment_line(line))
371                         continue;
372
373                 if (parse_perm_line(data, line)) {
374                         errlog("parse line %s failed!\n", line);
375                         data->idd_err = EINVAL;
376                         fclose(fp);
377                         return -1;
378                 }
379         }
380
381         fclose(fp);
382         return 0;
383 }
384
385 static void show_result(struct identity_downcall_data *data)
386 {
387         int i;
388
389         if (data->idd_err) {
390                 errlog("failed to get identity for uid %d: %s\n",
391                        data->idd_uid, strerror(data->idd_err));
392                 return;
393         }
394
395         printf("uid=%d gid=%d", data->idd_uid, data->idd_gid);
396         for (i = 0; i < data->idd_ngroups; i++)
397                 printf(",%u", data->idd_groups[i]);
398         printf("\n");
399         printf("permissions:\n"
400                "  nid\t\t\tperm\n");
401         for (i = 0; i < data->idd_nperms; i++) {
402                 struct perm_downcall_data *pdd;
403
404                 pdd = &data->idd_perms[i];
405
406                 printf("  "LPX64"\t0x%x\n", pdd->pdd_nid, pdd->pdd_perm);
407         }
408         printf("\n");
409 }
410
411 int main(int argc, char **argv)
412 {
413         char *end;
414         struct identity_downcall_data *data = NULL;
415         char procname[1024];
416         unsigned long uid;
417         int fd, rc = -EINVAL, size, maxgroups;
418
419         progname = basename(argv[0]);
420         if (argc != 3) {
421                 usage();
422                 goto out;
423         }
424
425         uid = strtoul(argv[2], &end, 0);
426         if (*end) {
427                 errlog("%s: invalid uid '%s'\n", progname, argv[2]);
428                 goto out;
429         }
430
431         maxgroups = sysconf(_SC_NGROUPS_MAX);
432         if (maxgroups > NGROUPS_MAX)
433                 maxgroups = NGROUPS_MAX;
434         if (maxgroups == -1) {
435                 rc = -EINVAL;
436                 goto out;
437         }
438
439         size = offsetof(struct identity_downcall_data, idd_groups[maxgroups]);
440         data = malloc(size);
441         if (!data) {
442                 errlog("malloc identity downcall data(%d) failed!\n", size);
443                 rc = -ENOMEM;
444                 goto out;
445         }
446
447         memset(data, 0, size);
448         data->idd_magic = IDENTITY_DOWNCALL_MAGIC;
449         data->idd_uid = uid;
450         /* get groups for uid */
451         rc = get_groups_local(data, maxgroups);
452         if (rc)
453                 goto downcall;
454
455         size = offsetof(struct identity_downcall_data,
456                         idd_groups[data->idd_ngroups]);
457         /* read permission database */
458         rc = get_perms(data);
459
460 downcall:
461         if (getenv("L_GETIDENTITY_TEST")) {
462                 show_result(data);
463                 rc = 0;
464                 goto out;
465         }
466
467         snprintf(procname, sizeof(procname),
468                  "/proc/fs/lustre/mdt/%s/identity_info", argv[1]);
469         fd = open(procname, O_WRONLY);
470         if (fd < 0) {
471                 errlog("can't open file %s: %s\n", procname, strerror(errno));
472                 rc = -1;
473                 goto out;
474         }
475
476         rc = write(fd, data, size);
477         close(fd);
478         if (rc != size) {
479                 errlog("partial write ret %d: %s\n", rc, strerror(errno));
480                 rc = -1;
481         } else {
482                 rc = 0;
483         }
484
485 out:
486         if (data != NULL)
487                 free(data);
488         return rc;
489 }