blob: 9aacfbe486b3d8a686789f03b5853e1d9c0d16df [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.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000029 */
30
31#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000032#include <sys/resource.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000033
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +000034#include "xlat/resources.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035
Denys Vlasenko1945ccc2012-02-27 14:37:48 +010036static const char *
Dmitry V. Levinb468f232012-03-16 23:05:21 +040037sprint_rlim64(uint64_t lim)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000038{
Dmitry V. Levinb468f232012-03-16 23:05:21 +040039 static char buf[sizeof(uint64_t)*3 + sizeof("*1024")];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000040
Dmitry V. Levinb468f232012-03-16 23:05:21 +040041 if (lim == UINT64_MAX)
42 return "RLIM64_INFINITY";
Denys Vlasenko1945ccc2012-02-27 14:37:48 +010043
Dmitry V. Levinb468f232012-03-16 23:05:21 +040044 if (lim > 1024 && lim % 1024 == 0)
45 sprintf(buf, "%" PRIu64 "*1024", lim / 1024);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000046 else
Dmitry V. Levinb468f232012-03-16 23:05:21 +040047 sprintf(buf, "%" PRIu64, lim);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000048 return buf;
49}
50
Andreas Schwabee81c8a2010-07-03 23:17:28 +020051static void
Dmitry V. Levinb468f232012-03-16 23:05:21 +040052print_rlimit64(struct tcb *tcp, unsigned long addr)
Andreas Schwabee81c8a2010-07-03 23:17:28 +020053{
Dmitry V. Levinb468f232012-03-16 23:05:21 +040054 struct rlimit_64 {
55 uint64_t rlim_cur;
56 uint64_t rlim_max;
Andreas Schwabee81c8a2010-07-03 23:17:28 +020057 } rlim;
58
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +000059 if (!umove_or_printaddr(tcp, addr, &rlim)) {
Dmitry V. Levinb468f232012-03-16 23:05:21 +040060 tprintf("{rlim_cur=%s,", sprint_rlim64(rlim.rlim_cur));
61 tprintf(" rlim_max=%s}", sprint_rlim64(rlim.rlim_max));
Andreas Schwabee81c8a2010-07-03 23:17:28 +020062 }
63}
Dmitry V. Levinb468f232012-03-16 23:05:21 +040064
James Hogan3b09ebe2014-05-02 14:15:41 +010065#if !defined(current_wordsize) || current_wordsize == 4
Dmitry V. Levinb468f232012-03-16 23:05:21 +040066
67static const char *
68sprint_rlim32(uint32_t lim)
69{
70 static char buf[sizeof(uint32_t)*3 + sizeof("*1024")];
71
72 if (lim == UINT32_MAX)
73 return "RLIM_INFINITY";
74
75 if (lim > 1024 && lim % 1024 == 0)
76 sprintf(buf, "%" PRIu32 "*1024", lim / 1024);
77 else
78 sprintf(buf, "%" PRIu32, lim);
79 return buf;
80}
81
82static void
83print_rlimit32(struct tcb *tcp, unsigned long addr)
84{
85 struct rlimit_32 {
86 uint32_t rlim_cur;
87 uint32_t rlim_max;
88 } rlim;
89
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +000090 if (!umove_or_printaddr(tcp, addr, &rlim)) {
Dmitry V. Levinb468f232012-03-16 23:05:21 +040091 tprintf("{rlim_cur=%s,", sprint_rlim32(rlim.rlim_cur));
92 tprintf(" rlim_max=%s}", sprint_rlim32(rlim.rlim_max));
93 }
94}
95
96static void
97decode_rlimit(struct tcb *tcp, unsigned long addr)
98{
James Hogan3b09ebe2014-05-02 14:15:41 +010099# if defined(X86_64) || defined(X32)
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +0000100 /*
101 * i386 is the only personality on X86_64 and X32
102 * with 32-bit rlim_t.
103 * When current_personality is X32, current_wordsize
104 * equals to 4 but rlim_t is 64-bit.
105 */
106 if (current_personality == 1)
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400107# else
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +0000108 if (current_wordsize == 4)
James Hogan3b09ebe2014-05-02 14:15:41 +0100109# endif
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +0000110 print_rlimit32(tcp, addr);
111 else
112 print_rlimit64(tcp, addr);
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400113}
114
James Hogan3b09ebe2014-05-02 14:15:41 +0100115#else /* defined(current_wordsize) && current_wordsize != 4 */
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400116
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +0000117# define decode_rlimit print_rlimit64
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400118
James Hogan3b09ebe2014-05-02 14:15:41 +0100119#endif
Andreas Schwabee81c8a2010-07-03 23:17:28 +0200120
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000121SYS_FUNC(getrlimit)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000123 if (entering(tcp)) {
124 printxval(resources, tcp->u_arg[0], "RLIMIT_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200125 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000126 }
127 else {
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400128 decode_rlimit(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000129 }
130 return 0;
131}
132
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000133SYS_FUNC(setrlimit)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000134{
Dmitry V. Levin2b15a582015-07-17 16:39:54 +0000135 printxval(resources, tcp->u_arg[0], "RLIMIT_???");
136 tprints(", ");
137 decode_rlimit(tcp, tcp->u_arg[1]);
138
139 return RVAL_DECODED;
John Hughesbdf48f52001-03-06 15:08:09 +0000140}
141
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000142SYS_FUNC(prlimit64)
John Hughesbdf48f52001-03-06 15:08:09 +0000143{
John Hughesbdf48f52001-03-06 15:08:09 +0000144 if (entering(tcp)) {
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400145 tprintf("%ld, ", tcp->u_arg[0]);
146 printxval(resources, tcp->u_arg[1], "RLIMIT_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200147 tprints(", ");
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +0000148 print_rlimit64(tcp, tcp->u_arg[2]);
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400149 tprints(", ");
150 } else {
Dmitry V. Levin7cc79b42015-07-17 16:25:21 +0000151 print_rlimit64(tcp, tcp->u_arg[3]);
John Hughesbdf48f52001-03-06 15:08:09 +0000152 }
153 return 0;
154}
John Hughesbdf48f52001-03-06 15:08:09 +0000155
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000156#include "xlat/usagewho.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000157
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000158SYS_FUNC(getrusage)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000159{
160 if (entering(tcp)) {
161 printxval(usagewho, tcp->u_arg[0], "RUSAGE_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200162 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000163 }
164 else
Dmitry V. Levine2fb0bb2015-09-15 21:51:15 +0000165 printrusage(tcp, tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166 return 0;
167}
168
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000169#ifdef ALPHA
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000170SYS_FUNC(osf_getrusage)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000171{
Denys Vlasenko59432db2009-01-26 19:09:35 +0000172 if (entering(tcp)) {
173 printxval(usagewho, tcp->u_arg[0], "RUSAGE_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200174 tprints(", ");
Denys Vlasenko59432db2009-01-26 19:09:35 +0000175 }
176 else
177 printrusage32(tcp, tcp->u_arg[1]);
178 return 0;
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000179}
180#endif /* ALPHA */
181
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000182#include "xlat/priorities.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000183
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000184SYS_FUNC(getpriority)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000185{
Dmitry V. Levin2b15a582015-07-17 16:39:54 +0000186 printxval(priorities, tcp->u_arg[0], "PRIO_???");
Fei Jie032a9a42016-03-17 17:30:45 +0800187 tprintf(", %d", (int) tcp->u_arg[1]);
Dmitry V. Levin2b15a582015-07-17 16:39:54 +0000188
189 return RVAL_DECODED;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000190}
191
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000192SYS_FUNC(setpriority)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000193{
Dmitry V. Levin2b15a582015-07-17 16:39:54 +0000194 printxval(priorities, tcp->u_arg[0], "PRIO_???");
Fei Jie032a9a42016-03-17 17:30:45 +0800195 tprintf(", %d, %d", (int) tcp->u_arg[1], (int) tcp->u_arg[2]);
Dmitry V. Levin2b15a582015-07-17 16:39:54 +0000196
197 return RVAL_DECODED;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000198}