1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
|
/*
* Get or set RPC debug flags.
*
* I would have loved to write this without recourse to the sysctl
* interface, but the only plausible approach (reading and writing
* /dev/kmem at the offsets indicated by the *_debug symbols from
* /proc/ksyms) didn't work, because /dev/kmem doesn't translate virtual
* addresses on write. Unfortunately, modules are stuffed into memory
* allocated via vmalloc.
*
* Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <ctype.h>
#include <nfs/debug.h>
#include "nfslib.h"
static int verbose = 0;
static int memfd;
static off_t flagpos;
static void find_offset(char *module);
static unsigned int find_flag(char **module, char *name);
static unsigned int get_flags(void);
static void set_flags(unsigned int value);
static void print_flags(char *module, unsigned int flags);
static void usage(int excode);
int
main(int argc, char **argv)
{
int opt_s = 0,
opt_c = 0;
unsigned int flags = 0, oflags;
char * module = NULL;
int c;
while ((c = getopt(argc, argv, "chm:sv")) != EOF) {
switch (c) {
case 'c':
opt_c = 1;
break;
case 'h':
usage(0);
case 'm':
module = optarg;
break;
case 's':
opt_s = 1;
break;
case 'v':
verbose++;
break;
default:
fprintf(stderr, "rpcdebug: unknown option -%c\n",
optopt);
usage(1);
}
}
if (opt_c + opt_s > 1) {
fprintf(stderr, "You can use at most one of -c and -s\n");
usage(1);
}
if (argc == optind) {
flags = ~(unsigned int) 0;
} else {
for (; optind < argc; optind++) {
unsigned int temp;
if (!(temp = find_flag(&module, argv[optind]))) {
fprintf(stderr, "rpcdebug: unknown flag %s\n",
argv[optind]);
exit(1);
}
flags |= temp;
}
}
if (!module) {
fprintf(stderr, "rpcdebug: no module name specified, and "
"could not be inferred.\n");
usage(1);
}
if ((memfd = open("/dev/kmem", O_RDWR)) < 0) {
perror("can't open /dev/mem");
exit(1);
}
find_offset(module);
oflags = get_flags();
if (opt_c) {
set_flags(oflags & ~flags);
} else if (opt_s) {
set_flags(oflags | flags);
} else {
print_flags(module, oflags);
}
close(memfd);
return 0;
}
#define FLAG(mname, fname) \
{ #mname, #fname, mname##DBG_##fname }
static struct flagmap {
char * module;
char * name;
unsigned int value;
} flagmap[] = {
/* rpc */
FLAG(RPC, XPRT),
FLAG(RPC, CALL),
FLAG(RPC, TYPES),
FLAG(RPC, NFS),
FLAG(RPC, AUTH),
FLAG(RPC, PMAP),
FLAG(RPC, SCHED),
FLAG(RPC, SVCSOCK),
FLAG(RPC, SVCDSP),
FLAG(RPC, MISC),
FLAG(RPC, ALL),
/* nfs */
/* currently handled by RPCDBG_NFS */
/* nfsd */
FLAG(NFSD, SOCK),
FLAG(NFSD, FH),
FLAG(NFSD, EXPORT),
FLAG(NFSD, SVC),
FLAG(NFSD, PROC),
FLAG(NFSD, FILEOP),
FLAG(NFSD, AUTH),
FLAG(NFSD, REPCACHE),
FLAG(NFSD, XDR),
FLAG(NFSD, LOCKD),
FLAG(NFSD, ALL),
/* lockd */
FLAG(NLM, SVC),
FLAG(NLM, CLIENT),
FLAG(NLM, CLNTLOCK),
FLAG(NLM, SVCLOCK),
FLAG(NLM, MONITOR),
FLAG(NLM, CLNTSUBS),
FLAG(NLM, SVCSUBS),
FLAG(NLM, ALL),
{ NULL, NULL, 0 }
};
static unsigned int
find_flag(char **module, char *name)
{
char *mod = *module;
unsigned int value = 0;
int i;
for (i = 0; flagmap[i].module; i++) {
if ((mod && strcasecmp(mod, flagmap[i].module))
|| strcasecmp(name, flagmap[i].name))
continue;
if (value) {
fprintf(stderr,
"rpcdebug: ambiguous symbol name %s.\n"
"This name is used by more than one module, "
"please specify the module name using\n"
"the -m option.\n",
name);
usage(1);
}
value = flagmap[i].value;
if (*module)
return value;
mod = flagmap[i].module;
}
*module = mod;
return value;
}
static unsigned int
get_flags(void)
{
unsigned int value;
int count;
if (lseek(memfd, flagpos, SEEK_SET) < 0) {
perror("lseek");
exit(1);
}
if ((count = read(memfd, &value, sizeof(value))) < 0) {
perror("read");
exit(1);
}
if (count != sizeof(value)) {
fprintf(stderr, "read failed (only %d bytes read)\n",
count);
exit(1);
}
if (verbose)
printf("getting flags 0x%x\n", value);
return value;
}
static void
set_flags(unsigned int value)
{
int count;
if (verbose)
printf("setting flags 0x%x\n", value);
if (lseek(memfd, flagpos, SEEK_SET) < 0) {
perror("lseek");
exit(1);
}
if ((count = write(memfd, &value, sizeof(value))) < 0) {
perror("write");
exit(1);
}
if (count != sizeof(value)) {
fprintf(stderr, "write failed (only %d bytes written)\n",
count);
exit(1);
}
}
static void
find_offset(char *module)
{
char buffer[512], *sp;
char symbol[64];
FILE *fp;
int len;
len = sprintf(symbol, "%s_debug", module);
if ((fp = fopen("/proc/ksyms", "r")) < 0) {
perror("rpcdebug: can't open /proc/ksyms");
exit(1);
}
while (fgets(buffer, sizeof(buffer), fp) != NULL) {
if (!(sp = strchr(buffer, ' ')))
continue;
if (strncmp(++sp, symbol, len))
continue;
if (sp[len] != '\n' && sp[len] != '\t'
&& strncmp(sp+len, "_R", 2))
continue;
flagpos = (unsigned long) strtol(buffer, &sp, 16);
/* printf("position is %lx\n", flagpos); */
if (sp && *sp == ' ')
return;
fprintf(stderr, "rpcdebug: weird line in /proc/ksyms: %s\n",
buffer);
exit(1);
}
fprintf(stderr, "rpcdebug: debug symbol for module %s not found.\n",
module);
exit(1);
}
static char *
strtolower(char *str)
{
static char temp[64];
char *sp;
strcpy(temp, str);
for (sp = temp; *sp; sp++)
*sp = tolower(*sp);
return temp;
}
static void
print_flags(char *module, unsigned int flags)
{
char *lastmod = NULL;
int i;
if (module) {
printf("%-10s", strtolower(module));
if (!flags) {
printf("<no flags set>\n");
return;
}
/* printf(" <%x>", flags); */
}
for (i = 0; flagmap[i].module; i++) {
if (module) {
if (strcasecmp(flagmap[i].module, module))
continue;
} else if (!lastmod || strcmp(lastmod, flagmap[i].module)) {
if (lastmod)
printf("\n");
printf("%-10s", strtolower(flagmap[i].module));
lastmod = flagmap[i].module;
}
if (!(flags & flagmap[i].value)
|| (module && !strcasecmp(flagmap[i].name, "all")))
continue;
printf(" %s", strtolower(flagmap[i].name));
}
printf("\n");
}
static void
usage(int excode)
{
fprintf(stderr, "usage: rpcdebug [-m module] [-cs] flags ...\n");
if (verbose) {
printf("\nModule Valid flags\n");
print_flags(NULL, ~(unsigned int) 0);
}
exit (excode);
}
|