X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Fmds%2Flproc_mds.c;h=f273d0e2dcd8bd353e2235fcd0d061a1a194e14b;hb=d2d56f38da01001c92a09afc6b52b5acbd9bc13c;hp=1cff1c461b59443e851cb9b0503257feed9e7129;hpb=cc28cf202635ddda1a342357ab6431e5569c8179;p=fs%2Flustre-release.git diff --git a/lustre/mds/lproc_mds.c b/lustre/mds/lproc_mds.c index 1cff1c4..f273d0e 100644 --- a/lustre/mds/lproc_mds.c +++ b/lustre/mds/lproc_mds.c @@ -3,20 +3,23 @@ * * Copyright (C) 2002 Cluster File Systems, Inc. * - * This file is part of Lustre, http://www.lustre.org. + * This file is part of the Lustre file system, http://www.lustre.org + * Lustre is a trademark of Cluster File Systems, Inc. * - * Lustre is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. + * You may have signed or agreed to another license before downloading + * this software. If so, you are bound by the terms and conditions + * of that agreement, and the following does not apply to you. See the + * LICENSE file included with this distribution for more information. * - * Lustre 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 for more details. + * If you did not agree to a different license, then this copy of Lustre + * is open source software; you can redistribute it and/or modify it + * under the terms of version 2 of the GNU General Public License as + * published by the Free Software Foundation. * - * You should have received a copy of the GNU General Public License - * along with Lustre; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * In either case, Lustre 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 + * license text for more details. * */ #define DEBUG_SUBSYSTEM S_CLASS @@ -25,246 +28,290 @@ #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)) #include #endif -#include -#include -#include +#include +#include +#include #include "mds_internal.h" -#ifndef LPROCFS -struct lprocfs_vars lprocfs_mds_obd_vars[] = { {0} }; -struct lprocfs_vars lprocfs_mds_module_vars[] = { {0} }; -struct lprocfs_vars lprocfs_mdt_obd_vars[] = { {0} }; -struct lprocfs_vars lprocfs_mdt_module_vars[] = { {0} }; - -atomic_t * lprocfs_alloc_mds_counters() +#ifdef LPROCFS +static int lprocfs_mds_rd_mntdev(char *page, char **start, off_t off, int count, + int *eof, void *data) { - return NULL; + struct obd_device* obd = (struct obd_device *)data; + + LASSERT(obd != NULL); + LASSERT(obd->u.mds.mds_vfsmnt->mnt_devname); + *eof = 1; + + return snprintf(page, count, "%s\n",obd->u.mds.mds_vfsmnt->mnt_devname); } -void lprocfs_free_mds_counters(atomic_t *ptr) + +static int lprocfs_mds_wr_evict_client(struct file *file, const char *buffer, + unsigned long count, void *data) { - return; -} + struct obd_device *obd = data; + struct mds_obd *mds = &obd->u.mds; + char tmpbuf[sizeof(struct obd_uuid)]; + struct ptlrpc_request_set *set; + int rc; -#else - -struct ll_mdscounters_opcode { - __u32 opcode; - const char *opname; -} ll_mdscounters_opcode_table[MDS_LAST_OPC_COUNT] = { - { MDS_OPEN_COUNT, "mds_open" }, - { MDS_CREATE_COUNT, "mds_create" }, - { MDS_CLOSE_COUNT, "mds_close" }, - { MDS_LINK_COUNT, "mds_link" }, - { MDS_UNLINK_COUNT, "mds_unlink" }, - { MDS_GETATTR_COUNT, "mds_getattr" }, - { MDS_GETATTR_NAME_COUNT, "mds_getattr_name" }, - { MDS_SETATTR_COUNT, "mds_setattr" }, - { MDS_RENAME_COUNT, "mds_rename" }, - { MDS_STATFS_COUNT, "mds_statfs" }, -}; + sscanf(buffer, "%40s", tmpbuf); -const char* ll_mds_count_opcode2str(__u32 opcode) -{ - __u32 offset = opcode; + if (strncmp(tmpbuf, "nid:", 4) != 0) + return lprocfs_wr_evict_client(file, buffer, count, data); + + set = ptlrpc_prep_set(); + if (!set) + return -ENOMEM; + + rc = obd_set_info_async(mds->mds_osc_exp, strlen("evict_by_nid"), + "evict_by_nid", strlen(tmpbuf + 4) + 1, + tmpbuf + 4, set); + if (rc) + CERROR("Failed to evict nid %s from OSTs: rc %d\n", tmpbuf + 4, + rc); + + ptlrpc_check_set(set); + + /* See the comments in function lprocfs_wr_evict_client() + * in ptlrpc/lproc_ptlrpc.c for details. - jay */ + class_incref(obd); + LPROCFS_EXIT(); + + obd_export_evict_by_nid(obd, tmpbuf+4); + + LPROCFS_ENTRY(); + class_decref(obd); - LASSERT(offset < MDS_LAST_OPC_COUNT); - LASSERT(ll_mdscounters_opcode_table[offset].opcode == opcode); - return ll_mdscounters_opcode_table[offset].opname; + rc = ptlrpc_set_wait(set); + if (rc) + CERROR("Failed to evict nid %s from OSTs: rc %d\n", tmpbuf + 4, + rc); + ptlrpc_set_destroy(set); + return count; } -struct lprocfs_stats * lprocfs_alloc_mds_counters() +#if 0 +static int lprocfs_wr_group_info(struct file *file, const char *buffer, + unsigned long count, void *data) { - struct lprocfs_stats *counters; - int i; + struct obd_device *obd = data; + struct mds_obd *mds = &obd->u.mds; + struct mds_grp_downcall_data sparam, *param = &sparam; + int size = 0, rc = count; + + if (count < sizeof(param)) { + CERROR("%s: invalid data size %lu\n", obd->obd_name, count); + return count; + } + + if (copy_from_user(param, buffer, sizeof(*param)) || + param->mgd_magic != MDS_GRP_DOWNCALL_MAGIC) { + CERROR("%s: MDS group downcall bad params\n", obd->obd_name); + return count; + } - counters = lprocfs_alloc_stats(MDS_LAST_OPC_COUNT); + if (param->mgd_ngroups > NGROUPS_MAX) { + CWARN("%s: uid %u groups %d more than maximum %d\n", + obd->obd_name, param->mgd_uid, param->mgd_ngroups, + NGROUPS_MAX); + param->mgd_ngroups = NGROUPS_MAX; + } - for (i = 0; i < MDS_LAST_OPC_COUNT; i ++) { - lprocfs_counter_init(counters, i, 0, - (char *)ll_mds_count_opcode2str(i), "reqs"); + if (param->mgd_ngroups > 0) { + size = offsetof(struct mds_grp_downcall_data, + mgd_groups[param->mgd_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.mgd_uid, sparam.mgd_ngroups); + param = &sparam; + param->mgd_ngroups = 0; + } else if (copy_from_user(param, buffer, size)) { + CERROR("%s: uid %u bad supplementary group data\n", + obd->obd_name, sparam.mgd_uid); + OBD_FREE(param, size); + param = &sparam; + param->mgd_ngroups = 0; + } } - return counters; + rc = upcall_cache_downcall(mds->mds_group_hash, param->mgd_err, + param->mgd_uid, param->mgd_gid, + param->mgd_ngroups, param->mgd_groups); + + if (param && param != &sparam) + OBD_FREE(param, size); + + return rc; } -void lprocfs_free_mds_counters(struct lprocfs_stats *ptr) +static int lprocfs_rd_group_expire(char *page, char **start, off_t off, + int count, int *eof, void *data) { - lprocfs_free_stats(ptr); + struct obd_device *obd = data; + + *eof = 1; + return snprintf(page, count, "%lu\n", + obd->u.mds.mds_group_hash->uc_entry_expire / HZ); } -static int lprocfs_mds_rd_mntdev(char *page, char **start, off_t off, int count, - int *eof, void *data) +static int lprocfs_wr_group_expire(struct file *file, const char *buffer, + unsigned long count, void *data) { - struct obd_device* obd = (struct obd_device *)data; + struct obd_device *obd = data; + int val, rc; - LASSERT(obd != NULL); - LASSERT(obd->u.mds.mds_vfsmnt->mnt_devname); - *eof = 1; + rc = lprocfs_write_helper(buffer, count, &val); + if (rc) + return rc; - return snprintf(page, count, "%s\n",obd->u.mds.mds_vfsmnt->mnt_devname); + if (val > 5) + obd->u.mds.mds_group_hash->uc_entry_expire = val * HZ; + else + CERROR("invalid expire time %u for group cache\n", val); + + return count; } -static int lprocfs_mds_rd_recovery_status(char *page, char **start, off_t off, - int count, int *eof, void *data) +static int lprocfs_rd_group_acquire_expire(char *page, char **start, off_t off, + int count, int *eof, void *data) { struct obd_device *obd = data; - int len = 0, n, - connected = obd->obd_connected_clients, - max_recoverable = obd->obd_max_recoverable_clients, - recoverable = obd->obd_recoverable_clients, - completed = max_recoverable - recoverable, - queue_len = obd->obd_requests_queued_for_recovery, - replayed = obd->obd_replayed_requests; - __u64 next_transno = obd->obd_next_recovery_transno; - LASSERT(obd != NULL); *eof = 1; + return snprintf(page, count, "%lu\n", + obd->u.mds.mds_group_hash->uc_acquire_expire / HZ); +} - n = snprintf(page, count, "status: "); - page += n; len += n; count -= n; - if (obd->obd_max_recoverable_clients == 0) { - n = snprintf(page, count, "INACTIVE\n"); - return len + n; - } +static int lprocfs_wr_group_acquire_expire(struct file *file,const char *buffer, + unsigned long count, void *data) +{ + struct obd_device *obd = data; + int val, rc = 0; - if (obd->obd_recoverable_clients == 0) { - n = snprintf(page, count, "COMPLETE\n"); - page += n; len += n; count -= n; - n = snprintf(page, count, "recovered_clients: %d\n", - max_recoverable); - page += n; len += n; count -= n; - n = snprintf(page, count, "last_transno: "LPD64"\n", - next_transno - 1); - page += n; len += n; count -= n; - n = snprintf(page, count, "replayed_requests: %d\n", replayed); - return len + n; - } + rc = lprocfs_write_helper(buffer, count, &val); + if (rc) + return rc; - /* sampled unlocked, but really... */ - if (obd->obd_recovering == 0) { - n = snprintf(page, count, "ABORTED\n"); - return len + n; - } + if (val > 2) + obd->u.mds.mds_group_hash->uc_acquire_expire = val * HZ; - n = snprintf(page, count, "RECOVERING\n"); - page += n; len += n; count -= n; - n = snprintf(page, count, "connected_clients: %d/%d\n", - connected, max_recoverable); - page += n; len += n; count -= n; - n = snprintf(page, count, "completed_clients: %d/%d\n", - completed, max_recoverable); - page += n; len += n; count -= n; - n = snprintf(page, count, "replayed_requests: %d/??\n", replayed); - page += n; len += n; count -= n; - n = snprintf(page, count, "queued_requests: %d\n", queue_len); - page += n; len += n; count -= n; - n = snprintf(page, count, "next_transno: "LPD64"\n", next_transno); - return len + n; + return count; } -static int lprocfs_rd_mds_counters(char *page, char **start, off_t off, - int count, int *eof, void *data) +static int lprocfs_rd_group_upcall(char *page, char **start, off_t off, + int count, int *eof, void *data) { - struct obd_device* obd = (struct obd_device *)data; - int len = 0, n, i, j; - struct lprocfs_counter t, ret = { .lc_min = ~(__u64)0 }; - struct lprocfs_stats *stats; - struct timeval now; + struct obd_device *obd = data; - LASSERT(obd != NULL); - if (obd->u.mds.mds_counters == NULL) - return 0; + *eof = 1; + return snprintf(page, count, "%s\n", + obd->u.mds.mds_group_hash->uc_upcall); +} - do_gettimeofday(&now); +static int lprocfs_wr_group_upcall(struct file *file, const char *buffer, + unsigned long count, void *data) +{ + struct obd_device *obd = data; + struct upcall_cache *hash = obd->u.mds.mds_group_hash; + char kernbuf[UC_CACHE_UPCALL_MAXPATH] = { '\0' }; + + if (count >= UC_CACHE_UPCALL_MAXPATH) { + CERROR("%s: group upcall too long\n", obd->obd_name); + return -EINVAL; + } - n = snprintf(page, count, "%-25s %lu.%lu secs.usecs\n", - "snapshot_time", now.tv_sec, now.tv_usec); - page += n; len +=n; count -=n; + if (copy_from_user(kernbuf, buffer, + min(count, UC_CACHE_UPCALL_MAXPATH - 1))) + return -EFAULT; - stats = obd->u.mds.mds_counters; + /* Remove any extraneous bits from the upcall (e.g. linefeeds) */ + sscanf(kernbuf, "%s", hash->uc_upcall); - *eof = 1; - for (i = 0; i < MDS_LAST_OPC_COUNT; i ++) { - ret.lc_count = 0; - for (j = 0; j < num_online_cpus(); j++) { - struct lprocfs_counter *percpu_cntr = - &(stats->ls_percpu[j])->lp_cntr[i]; - int centry; - do { - centry = - atomic_read(&percpu_cntr->lc_cntl.la_entry); - t.lc_count = percpu_cntr->lc_count; - } while (centry != - atomic_read(&percpu_cntr->lc_cntl.la_entry) && - centry != - atomic_read(&percpu_cntr->lc_cntl.la_exit)); - ret.lc_count += t.lc_count; - } - n = snprintf(page, count, "%-25s "LPU64" \n", - ll_mds_count_opcode2str(i), ret.lc_count); - page += n; len +=n; count -=n; - } - return (len); + if (strcmp(hash->uc_name, obd->obd_name) != 0) + CWARN("%s: write to upcall name %s for MDS %s\n", + obd->obd_name, hash->uc_upcall, obd->obd_name); + CWARN("%s: group upcall set to %s\n", obd->obd_name, hash->uc_upcall); + + return count; } -static int lprocfs_mds_wr_evict_client(struct file *file, const char *buffer, - unsigned long count, void *data) +static int lprocfs_wr_group_flush(struct file *file, const char *buffer, + unsigned long count, void *data) { struct obd_device *obd = data; - struct obd_export *doomed_exp = NULL; - struct obd_uuid doomed; - struct list_head *p; - char tmpbuf[sizeof(doomed)]; - sscanf(buffer, "%40s", tmpbuf); - obd_str2uuid(&doomed, tmpbuf); - - spin_lock(&obd->obd_dev_lock); - list_for_each(p, &obd->obd_exports) { - doomed_exp = list_entry(p, struct obd_export, exp_obd_chain); - if (obd_uuid_equals(&doomed, &doomed_exp->exp_client_uuid)) { - class_export_get(doomed_exp); - break; - } - doomed_exp = NULL; - } - spin_unlock(&obd->obd_dev_lock); - - if (doomed_exp == NULL) { - CERROR("can't disconnect %s: no export found\n", - doomed.uuid); - } else { - CERROR("evicting %s at adminstrative request\n", - doomed.uuid); - ptlrpc_fail_export(doomed_exp); - class_export_put(doomed_exp); - } + upcall_cache_flush_idle(obd->u.mds.mds_group_hash); + return count; +} +#endif + +static int lprocfs_wr_atime_diff(struct file *file, const char *buffer, + unsigned long count, void *data) +{ + struct obd_device *obd = data; + struct mds_obd *mds = &obd->u.mds; + char kernbuf[20], *end; + unsigned long diff = 0; + + if (count > (sizeof(kernbuf) - 1)) + return -EINVAL; + + if (copy_from_user(kernbuf, buffer, count)) + return -EFAULT; + + kernbuf[count] = '\0'; + + diff = simple_strtoul(kernbuf, &end, 0); + if (kernbuf == end) + return -EINVAL; + + mds->mds_atime_diff = diff; return count; } -static int lprocfs_mds_wr_config_update(struct file *file, const char *buffer, - unsigned long count, void *data) +static int lprocfs_rd_atime_diff(char *page, char **start, off_t off, + int count, int *eof, void *data) { struct obd_device *obd = data; - ENTRY; + struct mds_obd *mds = &obd->u.mds; - RETURN(mds_lov_update_config(obd, 0)); + *eof = 1; + return snprintf(page, count, "%lu\n", mds->mds_atime_diff); } struct lprocfs_vars lprocfs_mds_obd_vars[] = { - { "uuid", lprocfs_rd_uuid, 0, 0 }, - { "blocksize", lprocfs_rd_blksize, 0, 0 }, - { "kbytestotal", lprocfs_rd_kbytestotal, 0, 0 }, - { "kbytesfree", lprocfs_rd_kbytesfree, 0, 0 }, - { "kbytesavail", lprocfs_rd_kbytesavail, 0, 0 }, - { "fstype", lprocfs_rd_fstype, 0, 0 }, - { "filestotal", lprocfs_rd_filestotal, 0, 0 }, - { "filesfree", lprocfs_rd_filesfree, 0, 0 }, - { "mntdev", lprocfs_mds_rd_mntdev, 0, 0 }, - { "recovery_status", lprocfs_mds_rd_recovery_status, 0, 0 }, - { "evict_client", 0, lprocfs_mds_wr_evict_client, 0 }, - { "config_update", 0, lprocfs_mds_wr_config_update, 0 }, - { "num_exports", lprocfs_rd_num_exports, 0, 0 }, - { "counters", lprocfs_rd_mds_counters, 0, 0 }, + { "uuid", lprocfs_rd_uuid, 0, 0 }, + { "blocksize", lprocfs_rd_blksize, 0, 0 }, + { "kbytestotal", lprocfs_rd_kbytestotal, 0, 0 }, + { "kbytesfree", lprocfs_rd_kbytesfree, 0, 0 }, + { "kbytesavail", lprocfs_rd_kbytesavail, 0, 0 }, + { "filestotal", lprocfs_rd_filestotal, 0, 0 }, + { "filesfree", lprocfs_rd_filesfree, 0, 0 }, + { "fstype", lprocfs_rd_fstype, 0, 0 }, + { "mntdev", lprocfs_mds_rd_mntdev, 0, 0 }, + { "recovery_status", lprocfs_obd_rd_recovery_status, 0, 0 }, + { "evict_client", 0, lprocfs_mds_wr_evict_client, 0 }, + { "num_exports", lprocfs_rd_num_exports, 0, 0 }, +#ifdef HAVE_QUOTA_SUPPORT + { "quota_bunit_sz", lprocfs_rd_bunit, lprocfs_wr_bunit, 0 }, + { "quota_btune_sz", lprocfs_rd_btune, lprocfs_wr_btune, 0 }, + { "quota_iunit_sz", lprocfs_rd_iunit, lprocfs_wr_iunit, 0 }, + { "quota_itune_sz", lprocfs_rd_itune, lprocfs_wr_itune, 0 }, + { "quota_type", lprocfs_rd_type, lprocfs_wr_type, 0 }, +#endif +#if 0 + { "group_expire_interval", lprocfs_rd_group_expire, + lprocfs_wr_group_expire, 0}, + { "group_acquire_expire", lprocfs_rd_group_acquire_expire, + lprocfs_wr_group_acquire_expire, 0}, + { "group_upcall", lprocfs_rd_group_upcall, + lprocfs_wr_group_upcall, 0}, + { "group_flush", 0, lprocfs_wr_group_flush, 0}, + { "group_info", 0, lprocfs_wr_group_info, 0 }, +#endif + { "atime_diff", lprocfs_rd_atime_diff, lprocfs_wr_atime_diff, 0 }, { 0 } }; @@ -283,14 +330,26 @@ struct lprocfs_vars lprocfs_mdt_module_vars[] = { { 0 } }; +void mds_counter_incr(struct obd_export *exp, int opcode) +{ + lprocfs_counter_incr(exp->exp_obd->obd_stats, opcode); + lprocfs_counter_incr(exp->exp_ops_stats, opcode); +} -#endif - -struct lprocfs_static_vars lprocfs_array_vars[] = { {lprocfs_mds_module_vars, - lprocfs_mds_obd_vars}, - {lprocfs_mdt_module_vars, - lprocfs_mdt_obd_vars}}; +void mds_stats_counter_init(struct lprocfs_stats *stats) +{ + lprocfs_counter_init(stats, LPROC_MDS_OPEN, 0, "open", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_CLOSE, 0, "close", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_MKNOD, 0, "mknod", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_LINK, 0, "link", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_UNLINK, 0, "unlink", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_MKDIR, 0, "mkdir", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_RMDIR, 0, "rmdir", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_RENAME, 0, "rename", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_GETXATTR, 0, "getxattr", "reqs"); + lprocfs_counter_init(stats, LPROC_MDS_SETXATTR, 0, "setxattr", "reqs"); +} -LPROCFS_INIT_MULTI_VARS(lprocfs_array_vars, - (sizeof(lprocfs_array_vars) / - sizeof(struct lprocfs_static_vars))) +LPROCFS_INIT_VARS(mds, lprocfs_mds_module_vars, lprocfs_mds_obd_vars); +LPROCFS_INIT_VARS(mdt, lprocfs_mdt_module_vars, lprocfs_mdt_obd_vars); +#endif