blob: b4b34dc2b6b821485d1abbbfd172b5129707b464 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * $Id$
31 */
32
33#include "defs.h"
34
35#include <sys/resource.h>
36#ifdef LINUX
37#include <sys/times.h>
38#include <linux/kernel.h>
Wichert Akkermanc7926982000-04-10 22:22:31 +000039#include <sys/quota.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000040#endif /* LINUX */
41#ifdef SUNOS4
42#include <ufs/quota.h>
43#endif /* SUNOS4 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000044#if defined(SVR4) || defined(FREEBSD)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000045#include <sys/times.h>
46#include <sys/time.h>
47#endif
48
John Hughes70623be2001-03-08 13:59:00 +000049#if HAVE_LONG_LONG_RLIM_T
50/*
51 * Hacks for systems that have a long long rlim_t
52 */
53
54#define rlimit64 rlimit /* Ugly hack */
55#define rlim64_t rlim_t /* Ugly hack */
56#define RLIM64_INFINITY RLIM_INFINITY /* You guessed it */
57
58#define sys_getrlimit64 sys_getrlimit
59#define sys_setrlimit64 sys_setrlimit
60#endif
61
Roland McGrathd9f816f2004-09-04 03:39:20 +000062static const struct xlat resources[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000063#ifdef RLIMIT_CPU
64 { RLIMIT_CPU, "RLIMIT_CPU" },
65#endif
66#ifdef RLIMIT_FSIZE
67 { RLIMIT_FSIZE, "RLIMIT_FSIZE" },
68#endif
69#ifdef RLIMIT_DATA
70 { RLIMIT_DATA, "RLIMIT_DATA" },
71#endif
72#ifdef RLIMIT_STACK
73 { RLIMIT_STACK, "RLIMIT_STACK" },
74#endif
75#ifdef RLIMIT_CORE
76 { RLIMIT_CORE, "RLIMIT_CORE" },
77#endif
78#ifdef RLIMIT_RSS
79 { RLIMIT_RSS, "RLIMIT_RSS" },
80#endif
Wichert Akkermanc7926982000-04-10 22:22:31 +000081#ifdef RLIMIT_NPROC
82 { RLIMIT_NPROC,"RLIMIT_NPROC" },
83#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000084#ifdef RLIMIT_NOFILE
85 { RLIMIT_NOFILE,"RLIMIT_NOFILE" },
86#endif
Wichert Akkermanc7926982000-04-10 22:22:31 +000087#ifdef RLIMIT_MEMLOCK
88 { RLIMIT_MEMLOCK, "RLIMIT_MEMLOCK" },
89#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000090#ifdef RLIMIT_VMEM
91 { RLIMIT_VMEM, "RLIMIT_VMEM" },
92#endif
93#ifdef RLIMIT_AS
94 { RLIMIT_AS, "RLIMIT_AS" },
95#endif
Roland McGrath566ce1f2004-10-06 22:14:53 +000096#ifdef RLIMIT_LOCKS
97 { RLIMIT_LOCKS, "RLIMIT_LOCKS" },
98#endif
99#ifdef RLIMIT_SIGPENDING
100 { RLIMIT_SIGPENDING, "RLIMIT_SIGPENDING" },
101#endif
102#ifdef RLIMIT_MSGQUEUE
103 { RLIMIT_MSGQUEUE, "RLIMIT_MSGQUEUE" },
104#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000105 { 0, NULL },
106};
107
John Hughes70623be2001-03-08 13:59:00 +0000108#if !HAVE_LONG_LONG_RLIM_T
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000109static char *
110sprintrlim(lim)
111long lim;
112{
113 static char buf[32];
114
115 if (lim == RLIM_INFINITY)
116 sprintf(buf, "RLIM_INFINITY");
117 else if (lim > 1024 && lim%1024 == 0)
118 sprintf(buf, "%ld*1024", lim/1024);
119 else
120 sprintf(buf, "%ld", lim);
121 return buf;
122}
123
124int
125sys_getrlimit(tcp)
126struct tcb *tcp;
127{
128 struct rlimit rlim;
129
130 if (entering(tcp)) {
131 printxval(resources, tcp->u_arg[0], "RLIMIT_???");
132 tprintf(", ");
133 }
134 else {
135 if (syserror(tcp) || !verbose(tcp))
136 tprintf("%#lx", tcp->u_arg[1]);
137 else if (umove(tcp, tcp->u_arg[1], &rlim) < 0)
138 tprintf("{...}");
139 else {
140 tprintf("{rlim_cur=%s,", sprintrlim(rlim.rlim_cur));
141 tprintf(" rlim_max=%s}", sprintrlim(rlim.rlim_max));
142 }
143 }
144 return 0;
145}
146
147int
148sys_setrlimit(tcp)
149struct tcb *tcp;
150{
151 struct rlimit rlim;
152
153 if (entering(tcp)) {
154 printxval(resources, tcp->u_arg[0], "RLIMIT_???");
155 tprintf(", ");
156 if (!verbose(tcp))
157 tprintf("%#lx", tcp->u_arg[1]);
158 else if (umove(tcp, tcp->u_arg[1], &rlim) < 0)
159 tprintf("{...}");
160 else {
161 tprintf("{rlim_cur=%s,", sprintrlim(rlim.rlim_cur));
162 tprintf(" rlim_max=%s}", sprintrlim(rlim.rlim_max));
163 }
164 }
165 return 0;
166}
John Hughes70623be2001-03-08 13:59:00 +0000167#endif /* !HAVE_LONG_LONG_RLIM_T */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000168
John Hughes70623be2001-03-08 13:59:00 +0000169#if _LFS64_LARGEFILE || HAVE_LONG_LONG_RLIM_T
John Hughesbdf48f52001-03-06 15:08:09 +0000170static char *
171sprintrlim64(lim)
172rlim64_t lim;
173{
174 static char buf[64];
175
176 if (lim == RLIM64_INFINITY)
177 sprintf(buf, "RLIM64_INFINITY");
178 else if (lim > 1024 && lim%1024 == 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000179 sprintf(buf, "%lld*1024", (long long) lim/1024);
John Hughesbdf48f52001-03-06 15:08:09 +0000180 else
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000181 sprintf(buf, "%lld", (long long) lim);
John Hughesbdf48f52001-03-06 15:08:09 +0000182 return buf;
183}
184
185int
186sys_getrlimit64(tcp)
187struct tcb *tcp;
188{
189 struct rlimit64 rlim;
190
191 if (entering(tcp)) {
192 printxval(resources, tcp->u_arg[0], "RLIMIT_???");
193 tprintf(", ");
194 }
195 else {
196 if (syserror(tcp) || !verbose(tcp))
197 tprintf("%#lx", tcp->u_arg[1]);
198 else if (umove(tcp, tcp->u_arg[1], &rlim) < 0)
199 tprintf("{...}");
200 else {
201 tprintf("{rlim_cur=%s,", sprintrlim64(rlim.rlim_cur));
202 tprintf(" rlim_max=%s}", sprintrlim64(rlim.rlim_max));
203 }
204 }
205 return 0;
206}
207
208int
209sys_setrlimit64(tcp)
210struct tcb *tcp;
211{
212 struct rlimit64 rlim;
213
214 if (entering(tcp)) {
215 printxval(resources, tcp->u_arg[0], "RLIMIT_???");
216 tprintf(", ");
217 if (!verbose(tcp))
218 tprintf("%#lx", tcp->u_arg[1]);
219 else if (umove(tcp, tcp->u_arg[1], &rlim) < 0)
220 tprintf("{...}");
221 else {
222 tprintf("{rlim_cur=%s,", sprintrlim64(rlim.rlim_cur));
223 tprintf(" rlim_max=%s}", sprintrlim64(rlim.rlim_max));
224 }
225 }
226 return 0;
227}
John Hughes70623be2001-03-08 13:59:00 +0000228#endif /* _LFS64_LARGEFILES || HAVE_LONG_LONG_RLIM_T */
John Hughesbdf48f52001-03-06 15:08:09 +0000229
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000230#ifndef SVR4
231
Roland McGrathd9f816f2004-09-04 03:39:20 +0000232static const struct xlat usagewho[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000233 { RUSAGE_SELF, "RUSAGE_SELF" },
234 { RUSAGE_CHILDREN, "RUSAGE_CHILDREN" },
Wichert Akkermanc7926982000-04-10 22:22:31 +0000235#ifdef RUSAGE_BOTH
236 { RUSAGE_BOTH, "RUSAGE_BOTH" },
237#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000238 { 0, NULL },
239};
240
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000241#ifdef ALPHA
242void
243printrusage32(tcp, addr)
244struct tcb *tcp;
245long addr;
246{
247 struct timeval32
248 {
249 unsigned tv_sec;
250 unsigned tv_usec;
251 };
252 struct rusage32
253 {
254 struct timeval32 ru_utime; /* user time used */
255 struct timeval32 ru_stime; /* system time used */
256 long ru_maxrss; /* maximum resident set size */
257 long ru_ixrss; /* integral shared memory size */
258 long ru_idrss; /* integral unshared data size */
259 long ru_isrss; /* integral unshared stack size */
260 long ru_minflt; /* page reclaims */
261 long ru_majflt; /* page faults */
262 long ru_nswap; /* swaps */
263 long ru_inblock; /* block input operations */
264 long ru_oublock; /* block output operations */
265 long ru_msgsnd; /* messages sent */
266 long ru_msgrcv; /* messages received */
267 long ru_nsignals; /* signals received */
268 long ru_nvcsw; /* voluntary context switches */
269 long ru_nivcsw; /* involuntary " */
270 } ru;
271
272 if (!addr)
273 tprintf("NULL");
274 else if (syserror(tcp) || !verbose(tcp))
275 tprintf("%#lx", addr);
276 else if (umove(tcp, addr, &ru) < 0)
277 tprintf("{...}");
278 else if (!abbrev(tcp)) {
279 tprintf("{ru_utime={%lu, %lu}, ru_stime={%lu, %lu}, ",
280 (long) ru.ru_utime.tv_sec, (long) ru.ru_utime.tv_usec,
281 (long) ru.ru_stime.tv_sec, (long) ru.ru_stime.tv_usec);
282 tprintf("ru_maxrss=%lu, ru_ixrss=%lu, ",
283 ru.ru_maxrss, ru.ru_ixrss);
284 tprintf("ru_idrss=%lu, ru_isrss=%lu, ",
285 ru.ru_idrss, ru.ru_isrss);
286 tprintf("ru_minflt=%lu, ru_majflt=%lu, ru_nswap=%lu, ",
287 ru.ru_minflt, ru.ru_majflt, ru.ru_nswap);
288 tprintf("ru_inblock=%lu, ru_oublock=%lu, ",
289 ru.ru_inblock, ru.ru_oublock);
290 tprintf("ru_msgsnd=%lu, ru_msgrcv=%lu, ",
291 ru.ru_msgsnd, ru.ru_msgrcv);
292 tprintf("ru_nsignals=%lu, ru_nvcsw=%lu, ru_nivcsw=%lu}",
293 ru.ru_nsignals, ru.ru_nvcsw, ru.ru_nivcsw);
294 }
295 else {
296 tprintf("{ru_utime={%lu, %lu}, ru_stime={%lu, %lu}, ...}",
297 (long) ru.ru_utime.tv_sec, (long) ru.ru_utime.tv_usec,
298 (long) ru.ru_stime.tv_sec, (long) ru.ru_stime.tv_usec);
299 }
300}
301#endif
302
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000303void
304printrusage(tcp, addr)
305struct tcb *tcp;
306long addr;
307{
308 struct rusage ru;
309
310 if (!addr)
311 tprintf("NULL");
312 else if (syserror(tcp) || !verbose(tcp))
313 tprintf("%#lx", addr);
314 else if (umove(tcp, addr, &ru) < 0)
315 tprintf("{...}");
316 else if (!abbrev(tcp)) {
317 tprintf("{ru_utime={%lu, %lu}, ru_stime={%lu, %lu}, ",
318 (long) ru.ru_utime.tv_sec, (long) ru.ru_utime.tv_usec,
319 (long) ru.ru_stime.tv_sec, (long) ru.ru_stime.tv_usec);
320 tprintf("ru_maxrss=%lu, ru_ixrss=%lu, ",
321 ru.ru_maxrss, ru.ru_ixrss);
322 tprintf("ru_idrss=%lu, ru_isrss=%lu, ",
323 ru.ru_idrss, ru.ru_isrss);
324 tprintf("ru_minflt=%lu, ru_majflt=%lu, ru_nswap=%lu, ",
325 ru.ru_minflt, ru.ru_majflt, ru.ru_nswap);
326 tprintf("ru_inblock=%lu, ru_oublock=%lu, ",
327 ru.ru_inblock, ru.ru_oublock);
328 tprintf("ru_msgsnd=%lu, ru_msgrcv=%lu, ",
329 ru.ru_msgsnd, ru.ru_msgrcv);
330 tprintf("ru_nsignals=%lu, ru_nvcsw=%lu, ru_nivcsw=%lu}",
331 ru.ru_nsignals, ru.ru_nvcsw, ru.ru_nivcsw);
332 }
333 else {
334 tprintf("{ru_utime={%lu, %lu}, ru_stime={%lu, %lu}, ...}",
335 (long) ru.ru_utime.tv_sec, (long) ru.ru_utime.tv_usec,
336 (long) ru.ru_stime.tv_sec, (long) ru.ru_stime.tv_usec);
337 }
338}
339
340int
341sys_getrusage(tcp)
342struct tcb *tcp;
343{
344 if (entering(tcp)) {
345 printxval(usagewho, tcp->u_arg[0], "RUSAGE_???");
346 tprintf(", ");
347 }
348 else
349 printrusage(tcp, tcp->u_arg[1]);
350 return 0;
351}
352
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000353#ifdef ALPHA
354int
355sys_osf_getrusage(tcp)
356struct tcb *tcp;
357{
358 if (entering(tcp)) {
359 printxval(usagewho, tcp->u_arg[0], "RUSAGE_???");
360 tprintf(", ");
361 }
362 else
363 printrusage32(tcp, tcp->u_arg[1]);
364 return 0;
365}
366#endif /* ALPHA */
367
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000368#endif /* !SVR4 */
369
370#ifdef LINUX
371
372int
373sys_sysinfo(tcp)
374struct tcb *tcp;
375{
376 struct sysinfo si;
377
378 if (exiting(tcp)) {
379 if (syserror(tcp) || !verbose(tcp))
380 tprintf("%#lx", tcp->u_arg[0]);
381 else if (umove(tcp, tcp->u_arg[0], &si) < 0)
382 tprintf("{...}");
383 else {
384 tprintf("{uptime=%lu, loads=[%lu, %lu, %lu] ",
385 si.uptime, si.loads[0], si.loads[1],
386 si.loads[2]);
387 tprintf("totalram=%lu, freeram=%lu, ",
388 si.totalram, si.freeram);
389 tprintf("sharedram=%lu, bufferram=%lu} ",
390 si.sharedram, si.bufferram);
391 tprintf("totalswap=%lu, freeswap=%lu, procs=%hu}",
392 si.totalswap, si.freeswap, si.procs);
393 }
394 }
395 return 0;
396}
397
398#endif /* LINUX */
399
Roland McGrathd9f816f2004-09-04 03:39:20 +0000400static const struct xlat priorities[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000401 { PRIO_PROCESS, "PRIO_PROCESS" },
402 { PRIO_PGRP, "PRIO_PGRP" },
403 { PRIO_USER, "PRIO_USER" },
404 { 0, NULL },
405};
406
407int
408sys_getpriority(tcp)
409struct tcb *tcp;
410{
411 if (entering(tcp)) {
412 printxval(priorities, tcp->u_arg[0], "PRIO_???");
413 tprintf(", %lu", tcp->u_arg[1]);
414 }
415 return 0;
416}
417
418int
419sys_setpriority(tcp)
420struct tcb *tcp;
421{
422 if (entering(tcp)) {
423 printxval(priorities, tcp->u_arg[0], "PRIO_???");
424 tprintf(", %lu, %ld", tcp->u_arg[1], tcp->u_arg[2]);
425 }
426 return 0;
427}
428
429int
430sys_nice(tcp)
431struct tcb *tcp;
432{
433 if (entering(tcp))
434 tprintf("%ld", tcp->u_arg[0]);
435 return 0;
436}
437
438#ifndef SUNOS4
439
440int
441sys_times(tcp)
442struct tcb *tcp;
443{
444 struct tms tbuf;
445
446 if (exiting(tcp)) {
447 if (tcp->u_arg[0] == 0)
448 tprintf("NULL");
449 else if (syserror(tcp))
450 tprintf("%#lx", tcp->u_arg[0]);
451 else if (umove(tcp, tcp->u_arg[0], &tbuf) < 0)
452 tprintf("{...}");
453 else {
454 tprintf("{tms_utime=%lu, tms_stime=%lu, ",
455 tbuf.tms_utime, tbuf.tms_stime);
456 tprintf("tms_cutime=%lu, tms_cstime=%lu}",
457 tbuf.tms_cutime, tbuf.tms_cstime);
458 }
459 }
460 return 0;
461}
462
463#endif /* !SUNOS4 */
464
Wichert Akkermanc7926982000-04-10 22:22:31 +0000465#ifdef LINUX
466
Roland McGrath19191612003-01-14 23:40:54 +0000467#define NEW_CMD(c) ((0x80<<16)+(c))
468#define XQM_CMD(c) (('X'<<8)+(c))
469#define NEW_COMMAND(c) (( ((c) >> SUBCMDSHIFT) & (0x80 << 16)))
470#define XQM_COMMAND(c) (( ((c) >> SUBCMDSHIFT) & ('X' << 8)) == ('X' << 8))
471#define OLD_COMMAND(c) (!NEW_COMMAND(c) && !XQM_COMMAND(c))
472
Roland McGrathd9f816f2004-09-04 03:39:20 +0000473static const struct xlat quotacmds[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000474 { Q_QUOTAON, "Q_QUOTAON" },
475 { Q_QUOTAOFF, "Q_QUOTAOFF" },
476 { Q_GETQUOTA, "Q_GETQUOTA" },
477 { Q_SETQUOTA, "Q_SETQUOTA" },
478 { Q_SETUSE, "Q_SETUSE" },
479 { Q_SYNC, "Q_SYNC" },
480 { Q_SETQLIM, "Q_SETQLIM" },
481 { Q_GETSTATS, "Q_GETSTATS" },
482 { Q_RSQUASH, "Q_RSQUASH" },
Roland McGrath19191612003-01-14 23:40:54 +0000483 { NEW_CMD(0x1), "Q_SYNC" },
484 { NEW_CMD(0x2), "Q_QUOTAON" },
485 { NEW_CMD(0x3), "Q_QUOTAOFF" },
486 { NEW_CMD(0x4), "Q_GETFMT" },
487 { NEW_CMD(0x5), "Q_GETINFO" },
488 { NEW_CMD(0x6), "Q_SETINFO" },
489 { NEW_CMD(0x7), "Q_GETQUOTA" },
490 { NEW_CMD(0x8), "Q_SETQUOTA" },
491 { XQM_CMD(0x1), "Q_XQUOTAON" },
492 { XQM_CMD(0x2), "Q_XQUOTAOFF" },
493 { XQM_CMD(0x3), "Q_XGETQUOTA" },
494 { XQM_CMD(0x4), "Q_XSETQLIM" },
495 { XQM_CMD(0x5), "Q_XGETQSTAT" },
496 { XQM_CMD(0x6), "Q_XQUOTARM" },
Wichert Akkermanc7926982000-04-10 22:22:31 +0000497 { 0, NULL },
498};
499
Roland McGrathd9f816f2004-09-04 03:39:20 +0000500static const struct xlat quotatypes[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000501 { USRQUOTA, "USRQUOTA" },
502 { GRPQUOTA, "GRPQUOTA" },
503 { 0, NULL },
504};
505
506int
507sys_quotactl(tcp)
508struct tcb *tcp;
509{
Roland McGrath9f09da62004-07-08 19:00:04 +0000510 /*
511 * The Linux kernel only looks at the low 32 bits of the command
512 * argument, but on some 64-bit architectures (s390x) this word
513 * will have been sign-extended when we see it. The high 1 bits
514 * don't mean anything, so don't confuse the output with them.
515 */
516 unsigned int cmd = tcp->u_arg[0];
517
Wichert Akkermanc7926982000-04-10 22:22:31 +0000518 if (entering(tcp)) {
Roland McGrath9f09da62004-07-08 19:00:04 +0000519 printxval(quotacmds, cmd >> SUBCMDSHIFT, "Q_???");
Wichert Akkermanc7926982000-04-10 22:22:31 +0000520 tprintf("|");
Roland McGrath9f09da62004-07-08 19:00:04 +0000521 printxval(quotatypes, cmd & SUBCMDMASK, "???QUOTA");
Wichert Akkermanc7926982000-04-10 22:22:31 +0000522 tprintf(", ");
523 printstr(tcp, tcp->u_arg[1], -1);
524 tprintf(", %lu, ", tcp->u_arg[2]);
525 }
526 else {
527 struct dqblk dq;
528
529 if (!tcp->u_arg[3])
530 tprintf("NULL");
Roland McGrath9f09da62004-07-08 19:00:04 +0000531 else if (!verbose(tcp) || !OLD_COMMAND(cmd))
Wichert Akkermanc7926982000-04-10 22:22:31 +0000532 tprintf("%#lx", tcp->u_arg[3]);
Roland McGrath19191612003-01-14 23:40:54 +0000533 else if (umoven(tcp, tcp->u_arg[3], sizeof(struct dqblk),
Wichert Akkermanc7926982000-04-10 22:22:31 +0000534 (char *) &dq) < 0)
535 tprintf("???");
536 else {
537 tprintf("{");
538 tprintf("%u, ", dq.dqb_bhardlimit);
539 tprintf("%u, ", dq.dqb_bsoftlimit);
540 tprintf("%u, ", dq.dqb_curblocks);
541 tprintf("%u, ", dq.dqb_ihardlimit);
542 tprintf("%u, ", dq.dqb_isoftlimit);
543 tprintf("%u, ", dq.dqb_curinodes);
544 tprintf("%lu, ", dq.dqb_btime);
545 tprintf("%lu", dq.dqb_itime);
546 tprintf("}");
547 }
548
549 }
550 return 0;
551}
552
553#endif /* Linux */
554
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000555#if defined(SUNOS4) || defined(FREEBSD)
556
557#ifdef FREEBSD
558#include <ufs/ufs/quota.h>
559#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000560
Roland McGrathd9f816f2004-09-04 03:39:20 +0000561static const struct xlat quotacmds[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000562 { Q_QUOTAON, "Q_QUOTAON" },
563 { Q_QUOTAOFF, "Q_QUOTAOFF" },
564 { Q_GETQUOTA, "Q_GETQUOTA" },
565 { Q_SETQUOTA, "Q_SETQUOTA" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000566#ifdef Q_SETQLIM
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000567 { Q_SETQLIM, "Q_SETQLIM" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000568#endif
569#ifdef Q_SETUSE
570 { Q_SETUSE, "Q_SETUSE" },
571#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000572 { Q_SYNC, "Q_SYNC" },
573 { 0, NULL },
574};
575
576int
577sys_quotactl(tcp)
578struct tcb *tcp;
579{
580 /* fourth arg (addr) not interpreted here */
581 if (entering(tcp)) {
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000582#ifdef SUNOS4
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000583 printxval(quotacmds, tcp->u_arg[0], "Q_???");
584 tprintf(", ");
585 printstr(tcp, tcp->u_arg[1], -1);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000586#endif
587#ifdef FREEBSD
588 printpath(tcp, tcp->u_arg[0]);
589 tprintf(", ");
590 printxval(quotacmds, tcp->u_arg[1], "Q_???");
Roland McGrath19191612003-01-14 23:40:54 +0000591#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000592 tprintf(", %lu, %#lx", tcp->u_arg[2], tcp->u_arg[3]);
593 }
594 return 0;
595}
596
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000597#endif /* SUNOS4 || FREEBSD */