4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2016, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
48 #include <libcfs/util/param.h>
49 #include <linux/lnet/nidstr.h>
50 #include <linux/lustre/lustre_user.h>
51 #include <linux/lustre/lustre_idl.h>
53 #define PERM_PATHNAME "/etc/lustre/perm.conf"
56 * permission file format is like this:
59 * '*' nid means any nid
60 * '*' uid means any uid
61 * the valid values for perms are:
62 * setuid/setgid/setgrp -- enable corresponding perm
63 * nosetuid/nosetgid/nosetgrp -- disable corresponding perm
64 * they can be listed together, separated by ',',
65 * when perm and noperm are in the same line (item), noperm is preferential,
66 * when they are in different lines (items), the latter is preferential,
67 * '*' nid is as default perm, and is not preferential.
70 static char *progname;
72 static void usage(void)
75 "\nusage: %s {-d|mdtname} {uid}\n"
76 "Normally invoked as an upcall from Lustre, set via:\n"
77 "lctl set_param mdt.${mdtname}.identity_upcall={path to upcall}\n"
78 "\t-d: debug, print values to stdout instead of Lustre\n",
82 static int compare_u32(const void *v1, const void *v2)
84 return (*(__u32 *)v1 - *(__u32 *)v2);
87 static void errlog(const char *fmt, ...)
91 openlog(progname, LOG_PERROR | LOG_PID, LOG_AUTHPRIV);
94 vsyslog(LOG_WARNING, fmt, args);
100 int get_groups_local(struct identity_downcall_data *data,
101 unsigned int maxgroups)
103 gid_t *groups, *groups_tmp = NULL;
104 unsigned int ngroups = 0;
109 pw = getpwuid(data->idd_uid);
111 errlog("no such user %u\n", data->idd_uid);
112 data->idd_err = errno ? errno : EIDRM;
116 data->idd_gid = pw->pw_gid;
118 groups = data->idd_groups;
120 /* Allocate array of size maxgroups instead of handling two
121 * consecutive and potentially racy getgrouplist() calls. */
122 groups_tmp = malloc(maxgroups * sizeof(gid_t));
123 if (groups_tmp == NULL) {
124 data->idd_err = errno ? errno : ENOMEM;
125 errlog("malloc error=%u\n",data->idd_err);
129 ngroups_tmp = maxgroups;
130 if (getgrouplist(pw->pw_name, pw->pw_gid, groups_tmp, &ngroups_tmp) <
133 data->idd_err = errno ? errno : EIDRM;
134 errlog("getgrouplist() error for uid %u: error=%u\n",
135 data->idd_uid, data->idd_err);
139 /* Do not place user's group ID in to the resulting groups list */
140 for (i = 0; i < ngroups_tmp; i++)
141 if (pw->pw_gid != groups_tmp[i])
142 groups[ngroups++] = groups_tmp[i];
145 qsort(groups, ngroups, sizeof(*groups), compare_u32);
146 data->idd_ngroups = ngroups;
152 static inline int comment_line(char *line)
156 while (*p && (*p == ' ' || *p == '\t')) p++;
158 if (!*p || *p == '\n' || *p == '#')
163 static inline int match_uid(uid_t uid, const char *str)
168 if(!strcmp(str, "*"))
171 uid2 = strtoul(str, &end, 0);
174 return (uid == uid2);
182 static perm_type_t perm_types[] = {
183 { "setuid", CFS_SETUID_PERM },
184 { "setgid", CFS_SETGID_PERM },
185 { "setgrp", CFS_SETGRP_PERM },
191 static perm_type_t noperm_types[] = {
192 { "nosetuid", CFS_SETUID_PERM },
193 { "nosetgid", CFS_SETGID_PERM },
194 { "nosetgrp", CFS_SETGRP_PERM },
200 int parse_perm(__u32 *perm, __u32 *noperm, char *str)
211 memset(name, 0, sizeof(name));
212 end = strchr(start, ',');
214 end = str + strlen(str);
218 if (len >= sizeof(name))
220 strncpy(name, start, len);
222 for (pt = perm_types; pt->name; pt++) {
223 if (!strcasecmp(name, pt->name)) {
230 for (pt = noperm_types; pt->name; pt++) {
231 if (!strcasecmp(name, pt->name)) {
238 printf("unkown type: %s\n", name);
249 parse_perm_line(struct identity_downcall_data *data, char *line, size_t size)
258 if (data->idd_nperms >= N_PERMS_MAX) {
259 errlog("permission count %d > max %d\n",
260 data->idd_nperms, N_PERMS_MAX);
264 rc = sscanf(line, "%s %s %s", nid_str, uid_str, perm_str);
266 errlog("can't parse line %s\n", line);
270 if (!match_uid(data->idd_uid, uid_str))
273 if (!strcmp(nid_str, "*")) {
276 nid = libcfs_str2nid(nid_str);
277 if (nid == LNET_NID_ANY) {
278 errlog("can't parse nid %s\n", nid_str);
283 if (parse_perm(&perm, &noperm, perm_str)) {
284 errlog("invalid perm %s\n", perm_str);
288 /* merge the perms with the same nid.
290 * If there is LNET_NID_ANY in data->idd_perms[i].pdd_nid,
291 * it must be data->idd_perms[0].pdd_nid, and act as default perm.
293 if (nid != LNET_NID_ANY) {
296 /* search for the same nid */
297 for (i = data->idd_nperms - 1; i >= 0; i--) {
298 if (data->idd_perms[i].pdd_nid == nid) {
299 data->idd_perms[i].pdd_perm =
300 (data->idd_perms[i].pdd_perm | perm) &
307 /* NOT found, add to tail */
309 data->idd_perms[data->idd_nperms].pdd_nid = nid;
310 data->idd_perms[data->idd_nperms].pdd_perm =
315 if (data->idd_nperms > 0) {
316 /* the first one isn't LNET_NID_ANY, need exchange */
317 if (data->idd_perms[0].pdd_nid != LNET_NID_ANY) {
318 data->idd_perms[data->idd_nperms].pdd_nid =
319 data->idd_perms[0].pdd_nid;
320 data->idd_perms[data->idd_nperms].pdd_perm =
321 data->idd_perms[0].pdd_perm;
322 data->idd_perms[0].pdd_nid = LNET_NID_ANY;
323 data->idd_perms[0].pdd_perm = perm & ~noperm;
326 /* only fix LNET_NID_ANY item */
327 data->idd_perms[0].pdd_perm =
328 (data->idd_perms[0].pdd_perm | perm) &
332 /* it is the first one, only add to head */
333 data->idd_perms[0].pdd_nid = LNET_NID_ANY;
334 data->idd_perms[0].pdd_perm = perm & ~noperm;
335 data->idd_nperms = 1;
342 int get_perms(struct identity_downcall_data *data)
347 fp = fopen(PERM_PATHNAME, "r");
349 if (errno == ENOENT) {
352 errlog("open %s failed: %s\n",
353 PERM_PATHNAME, strerror(errno));
354 data->idd_err = errno;
359 while (fgets(line, sizeof(line), fp)) {
360 if (comment_line(line))
363 if (parse_perm_line(data, line, sizeof(line))) {
364 errlog("parse line %s failed!\n", line);
365 data->idd_err = EINVAL;
375 static void show_result(struct identity_downcall_data *data)
380 errlog("failed to get identity for uid %d: %s\n",
381 data->idd_uid, strerror(data->idd_err));
385 printf("uid=%d gid=%d", data->idd_uid, data->idd_gid);
386 for (i = 0; i < data->idd_ngroups; i++)
387 printf(",%u", data->idd_groups[i]);
389 printf("permissions:\n"
391 for (i = 0; i < data->idd_nperms; i++) {
392 struct perm_downcall_data *pdd;
394 pdd = &data->idd_perms[i];
396 printf(" %#jx\t0x%x\n", (uintmax_t)pdd->pdd_nid,
402 int main(int argc, char **argv)
405 struct identity_downcall_data *data = NULL;
408 int fd, rc = -EINVAL, size, maxgroups;
410 progname = basename(argv[0]);
416 uid = strtoul(argv[2], &end, 0);
418 errlog("%s: invalid uid '%s'\n", progname, argv[2]);
422 maxgroups = sysconf(_SC_NGROUPS_MAX);
423 if (maxgroups > NGROUPS_MAX)
424 maxgroups = NGROUPS_MAX;
425 if (maxgroups == -1) {
430 size = offsetof(struct identity_downcall_data, idd_groups[maxgroups]);
433 errlog("malloc identity downcall data(%d) failed!\n", size);
438 memset(data, 0, size);
439 data->idd_magic = IDENTITY_DOWNCALL_MAGIC;
441 /* get groups for uid */
442 rc = get_groups_local(data, maxgroups);
446 size = offsetof(struct identity_downcall_data,
447 idd_groups[data->idd_ngroups]);
448 /* read permission database */
449 rc = get_perms(data);
452 if (strcmp(argv[1], "-d") == 0 || getenv("L_GETIDENTITY_TEST")) {
458 rc = cfs_get_param_paths(&path, "mdt/%s/identity_info", argv[1]);
464 fd = open(path.gl_pathv[0], O_WRONLY);
466 errlog("can't open file '%s':%s\n", path.gl_pathv[0],
472 rc = write(fd, data, size);
475 errlog("partial write ret %d: %s\n", rc, strerror(errno));
482 cfs_free_param_data(&path);