/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 only, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is included * in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU General Public License * version 2 along with this program; If not, see * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. * * GPL HEADER END */ /* * Copyright 2008 Sun Microsystems, Inc. All rights reserved * Use is subject to license terms. */ /* * This file is part of Lustre, http://www.lustre.org/ * Lustre is a trademark of Sun Microsystems, Inc. * * lustre/mdt/mdt_lproc.c * * Author: Lai Siyao * Author: Fan Yong */ #ifndef EXPORT_SYMTAB # define EXPORT_SYMTAB #endif #define DEBUG_SUBSYSTEM S_MDS #include #include #include /* LUSTRE_VERSION_CODE */ #include /* * struct OBD_{ALLOC,FREE}*() * MDT_FAIL_CHECK */ #include /* struct obd_export */ #include /* struct obd_device */ #include #include #include #include #include #include #include "mdt_internal.h" static const char *mdt_proc_names[LPROC_MDT_NR] = { }; int mdt_procfs_init(struct mdt_device *mdt, const char *name) { struct lu_device *ld = &mdt->mdt_md_dev.md_lu_dev; int result; ENTRY; LASSERT(name != NULL); mdt->mdt_proc_entry = ld->ld_obd->obd_proc_entry; LASSERT(mdt->mdt_proc_entry != NULL); result = lu_time_init(&mdt->mdt_stats, mdt->mdt_proc_entry, mdt_proc_names, ARRAY_SIZE(mdt_proc_names)); if (result == 0) result = lu_time_named_init(&ld->ld_site->ls_time_stats, "site_time", mdt->mdt_proc_entry, lu_time_names, ARRAY_SIZE(lu_time_names)); RETURN(result); } int mdt_procfs_fini(struct mdt_device *mdt) { struct lu_device *ld = &mdt->mdt_md_dev.md_lu_dev; lu_time_fini(&ld->ld_site->ls_time_stats); lu_time_fini(&mdt->mdt_stats); mdt->mdt_proc_entry = NULL; RETURN(0); } void mdt_time_start(const struct mdt_thread_info *info) { lu_lprocfs_time_start(info->mti_env); } void mdt_time_end(const struct mdt_thread_info *info, int idx) { lu_lprocfs_time_end(info->mti_env, info->mti_mdt->mdt_stats, idx); } static int lprocfs_rd_identity_expire(char *page, char **start, off_t off, int count, int *eof, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); *eof = 1; return snprintf(page, count, "%lu\n", mdt->mdt_identity_cache->uc_entry_expire / HZ); } static int lprocfs_wr_identity_expire(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); int rc, val; rc = lprocfs_write_helper(buffer, count, &val); if (rc) return rc; mdt->mdt_identity_cache->uc_entry_expire = val * HZ; return count; } static int lprocfs_rd_identity_acquire_expire(char *page, char **start, off_t off, int count, int *eof, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); *eof = 1; return snprintf(page, count, "%lu\n", mdt->mdt_identity_cache->uc_acquire_expire / HZ); } static int lprocfs_wr_identity_acquire_expire(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); int rc, val; rc = lprocfs_write_helper(buffer, count, &val); if (rc) return rc; mdt->mdt_identity_cache->uc_acquire_expire = val * HZ; return count; } static int lprocfs_rd_identity_upcall(char *page, char **start, off_t off, int count, int *eof, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); struct upcall_cache *hash = mdt->mdt_identity_cache; int len; *eof = 1; read_lock(&hash->uc_upcall_rwlock); len = snprintf(page, count, "%s\n", hash->uc_upcall); read_unlock(&hash->uc_upcall_rwlock); return len; } static int lprocfs_wr_identity_upcall(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); struct upcall_cache *hash = mdt->mdt_identity_cache; char kernbuf[UC_CACHE_UPCALL_MAXPATH] = { '\0' }; if (count >= UC_CACHE_UPCALL_MAXPATH) { CERROR("%s: identity upcall too long\n", obd->obd_name); return -EINVAL; } if (copy_from_user(kernbuf, buffer, min_t(unsigned long, count, UC_CACHE_UPCALL_MAXPATH - 1))) return -EFAULT; /* Remove any extraneous bits from the upcall (e.g. linefeeds) */ write_lock(&hash->uc_upcall_rwlock); sscanf(kernbuf, "%s", hash->uc_upcall); write_unlock(&hash->uc_upcall_rwlock); if (strcmp(hash->uc_name, obd->obd_name) != 0) CWARN("%s: write to upcall name %s\n", obd->obd_name, hash->uc_upcall); if (strcmp(hash->uc_upcall, "NONE") == 0 && mdt->mdt_opts.mo_acl) CWARN("%s: disable \"identity_upcall\" with ACL enabled maybe " "cause unexpected \"EACCESS\"\n", obd->obd_name); CWARN("%s: identity upcall set to %s\n", obd->obd_name, hash->uc_upcall); return count; } static int lprocfs_wr_identity_flush(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); int rc, uid; rc = lprocfs_write_helper(buffer, count, &uid); if (rc) return rc; mdt_flush_identity(mdt->mdt_identity_cache, uid); return count; } static int lprocfs_wr_identity_info(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); struct identity_downcall_data sparam, *param = &sparam; int size = 0, rc = 0; if (count < sizeof(*param)) { CERROR("%s: invalid data size %lu\n", obd->obd_name, count); return count; } if (copy_from_user(&sparam, buffer, sizeof(sparam))) { CERROR("%s: bad identity data\n", obd->obd_name); GOTO(out, rc = -EFAULT); } if (sparam.idd_magic != IDENTITY_DOWNCALL_MAGIC) { CERROR("%s: MDS identity downcall bad params\n", obd->obd_name); GOTO(out, rc = -EINVAL); } if (sparam.idd_nperms > N_PERMS_MAX) { CERROR("%s: perm count %d more than maximum %d\n", obd->obd_name, sparam.idd_nperms, N_PERMS_MAX); GOTO(out, rc = -EINVAL); } if (sparam.idd_ngroups > NGROUPS_MAX) { CERROR("%s: group count %d more than maximum %d\n", obd->obd_name, sparam.idd_ngroups, NGROUPS_MAX); GOTO(out, rc = -EINVAL); } if (sparam.idd_ngroups) { size = offsetof(struct identity_downcall_data, idd_groups[sparam.idd_ngroups]); OBD_ALLOC(param, size); if (!param) { CERROR("%s: fail to alloc %d bytes for uid %u" " with %d groups\n", obd->obd_name, size, sparam.idd_uid, sparam.idd_ngroups); param = &sparam; param->idd_ngroups = 0; } else if (copy_from_user(param, buffer, size)) { CERROR("%s: uid %u bad supplementary group data\n", obd->obd_name, sparam.idd_uid); OBD_FREE(param, size); param = &sparam; param->idd_ngroups = 0; } } rc = upcall_cache_downcall(mdt->mdt_identity_cache, param->idd_err, param->idd_uid, param); out: if (param && (param != &sparam)) OBD_FREE(param, size); return rc ?: count; } /* for debug only */ static int lprocfs_rd_capa(char *page, char **start, off_t off, int count, int *eof, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); return snprintf(page, count, "capability on: %s %s\n", mdt->mdt_opts.mo_oss_capa ? "oss" : "", mdt->mdt_opts.mo_mds_capa ? "mds" : ""); } static int lprocfs_wr_capa(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); int val, rc; rc = lprocfs_write_helper(buffer, count, &val); if (rc) return rc; if (val < 0 || val > 3) { CERROR("invalid capability mode, only 0/2/3 is accepted.\n" " 0: disable fid capability\n" " 2: enable MDS fid capability\n" " 3: enable both MDS and OSS fid capability\n"); return -EINVAL; } /* OSS fid capability needs enable both MDS and OSS fid capability on * MDS */ if (val == 1) { CERROR("can't enable OSS fid capability only, you should use " "'3' to enable both MDS and OSS fid capability.\n"); return -EINVAL; } mdt->mdt_opts.mo_oss_capa = (val & 0x1); mdt->mdt_opts.mo_mds_capa = !!(val & 0x2); mdt->mdt_capa_conf = 1; LCONSOLE_INFO("MDS %s %s MDS fid capability.\n", obd->obd_name, mdt->mdt_opts.mo_mds_capa ? "enabled" : "disabled"); LCONSOLE_INFO("MDS %s %s OSS fid capability.\n", obd->obd_name, mdt->mdt_opts.mo_oss_capa ? "enabled" : "disabled"); return count; } static int lprocfs_rd_capa_count(char *page, char **start, off_t off, int count, int *eof, void *data) { return snprintf(page, count, "%d %d\n", capa_count[CAPA_SITE_CLIENT], capa_count[CAPA_SITE_SERVER]); } static int lprocfs_rd_site_stats(char *page, char **start, off_t off, int count, int *eof, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); struct lu_site *s = mdt->mdt_md_dev.md_lu_dev.ld_site; int i; int populated; /* * How many hash buckets are not-empty? Don't bother with locks: it's * an estimation anyway. */ for (i = 0, populated = 0; i < s->ls_hash_size; i++) populated += !hlist_empty(&s->ls_hash[i]); return snprintf(page, count, "%d %d %d/%d %d %d %d %d %d %d\n", s->ls_total, s->ls_busy, populated, s->ls_hash_size, s->ls_stats.s_created, s->ls_stats.s_cache_hit, s->ls_stats.s_cache_miss, s->ls_stats.s_cache_check, s->ls_stats.s_cache_race, s->ls_stats.s_lru_purged); } static int lprocfs_rd_capa_timeout(char *page, char **start, off_t off, int count, int *eof, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); return snprintf(page, count, "%lu\n", mdt->mdt_capa_timeout); } static int lprocfs_wr_capa_timeout(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); int val, rc; rc = lprocfs_write_helper(buffer, count, &val); if (rc) return rc; mdt->mdt_capa_timeout = (unsigned long)val; mdt->mdt_capa_conf = 1; return count; } static int lprocfs_rd_ck_timeout(char *page, char **start, off_t off, int count, int *eof, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); return snprintf(page, count, "%lu\n", mdt->mdt_ck_timeout); } static int lprocfs_wr_ck_timeout(struct file *file, const char *buffer, unsigned long count, void *data) { struct obd_device *obd = data; struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev); int val, rc; rc = lprocfs_write_helper(buffer, count, &val); if (rc) return rc; mdt->mdt_ck_timeout = (unsigned long)val; mdt->mdt_capa_conf = 1; return count; } static int lprocfs_mdt_wr_evict_client(struct file *file, const char *buffer, unsigned long count, void *data) { char tmpbuf[sizeof(struct obd_uuid)]; sscanf(buffer, "%40s", tmpbuf); if (strncmp(tmpbuf, "nid:", 4) != 0) return lprocfs_wr_evict_client(file, buffer, count, data); CERROR("NOT implement evict client by nid %s\n", tmpbuf); return count; } static struct lprocfs_vars lprocfs_mdt_obd_vars[] = { { "uuid", lprocfs_rd_uuid, 0, 0 }, { "recovery_status", lprocfs_obd_rd_recovery_status, 0, 0 }, { "num_exports", lprocfs_rd_num_exports, 0, 0 }, { "identity_expire", lprocfs_rd_identity_expire, lprocfs_wr_identity_expire, 0 }, { "identity_acquire_expire", lprocfs_rd_identity_acquire_expire, lprocfs_wr_identity_acquire_expire, 0 }, { "identity_upcall", lprocfs_rd_identity_upcall, lprocfs_wr_identity_upcall, 0 }, { "identity_flush", 0, lprocfs_wr_identity_flush, 0 }, { "identity_info", 0, lprocfs_wr_identity_info, 0 }, { "capa", lprocfs_rd_capa, lprocfs_wr_capa, 0 }, { "capa_timeout", lprocfs_rd_capa_timeout, lprocfs_wr_capa_timeout, 0 }, { "capa_key_timeout", lprocfs_rd_ck_timeout, lprocfs_wr_ck_timeout, 0 }, { "capa_count", lprocfs_rd_capa_count, 0, 0 }, { "site_stats", lprocfs_rd_site_stats, 0, 0 }, { "evict_client", 0, lprocfs_mdt_wr_evict_client, 0 }, { "hash_stats", lprocfs_obd_rd_hash, 0, 0 }, { 0 } }; static struct lprocfs_vars lprocfs_mdt_module_vars[] = { { "num_refs", lprocfs_rd_numrefs, 0, 0 }, { 0 } }; void lprocfs_mdt_init_vars(struct lprocfs_static_vars *lvars) { lvars->module_vars = lprocfs_mdt_module_vars; lvars->obd_vars = lprocfs_mdt_obd_vars; }