]>
git.saurik.com Git - apple/system_cmds.git/blob - sa.tproj/usrdb.c
2 * Copyright (c) 1994 Christopher G. Demetriou
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Christopher G. Demetriou.
16 * 4. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission
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.
32 static const char rcsid
[] =
33 "$FreeBSD: src/usr.sbin/sa/usrdb.c,v 1.12 2002/07/15 16:05:15 des Exp $";
36 #include <sys/param.h>
37 #include <sys/types.h>
48 #include "pathnames.h"
50 static int uid_compare
__P((const DBT
*, const DBT
*));
52 static DB
*usracct_db
;
61 bzero(&bti
, sizeof bti
);
62 bti
.compare
= uid_compare
;
64 usracct_db
= dbopen(NULL
, O_RDWR
, 0, DB_BTREE
, &bti
);
65 if (usracct_db
== NULL
)
73 saved_usracct_db
= dbopen(_PATH_USRACCT
, O_RDONLY
, 0, DB_BTREE
,
75 if (saved_usracct_db
== NULL
) {
76 error
= (errno
== ENOENT
) ? 0 : -1;
78 warn("retrieving user accounting summary");
82 serr
= DB_SEQ(saved_usracct_db
, &key
, &data
, R_FIRST
);
84 warn("retrieving user accounting summary");
89 nerr
= DB_PUT(usracct_db
, &key
, &data
, 0);
91 warn("initializing user accounting stats");
96 serr
= DB_SEQ(saved_usracct_db
, &key
, &data
, R_NEXT
);
98 warn("retrieving user accounting summary");
105 if (DB_CLOSE(saved_usracct_db
) < 0) {
106 warn("closing user accounting summary");
120 if (DB_CLOSE(usracct_db
) < 0)
121 warn("destroying user accounting stats");
126 const struct cmdinfo
*ci
;
129 struct userinfo newui
;
135 key
.size
= sizeof uid
;
137 rv
= DB_GET(usracct_db
, &key
, &data
, 0);
139 warn("get key %lu from user accounting stats", uid
);
141 } else if (rv
== 0) { /* it's there; copy whole thing */
142 /* add the old data to the new data */
143 bcopy(data
.data
, &newui
, data
.size
);
144 if (newui
.ui_uid
!= uid
) {
145 warnx("key %lu != expected record number %lu",
147 warnx("inconsistent user accounting stats");
150 } else { /* it's not there; zero it and copy the key */
151 bzero(&newui
, sizeof newui
);
152 newui
.ui_uid
= ci
->ci_uid
;
155 newui
.ui_calls
+= ci
->ci_calls
;
156 newui
.ui_utime
+= ci
->ci_utime
;
157 newui
.ui_stime
+= ci
->ci_stime
;
158 newui
.ui_mem
+= ci
->ci_mem
;
159 newui
.ui_io
+= ci
->ci_io
;
162 data
.size
= sizeof newui
;
163 rv
= DB_PUT(usracct_db
, &key
, &data
, 0);
165 warn("add key %lu to user accounting stats", uid
);
167 } else if (rv
!= 0) {
168 warnx("DB_PUT returned 1");
178 DB
*saved_usracct_db
;
181 int error
, serr
, nerr
;
183 bzero(&bti
, sizeof bti
);
184 bti
.compare
= uid_compare
;
186 saved_usracct_db
= dbopen(_PATH_USRACCT
, O_RDWR
|O_CREAT
|O_TRUNC
, 0644,
188 if (saved_usracct_db
== NULL
) {
189 warn("creating user accounting summary");
195 serr
= DB_SEQ(usracct_db
, &key
, &data
, R_FIRST
);
197 warn("retrieving user accounting stats");
201 nerr
= DB_PUT(saved_usracct_db
, &key
, &data
, 0);
203 warn("saving user accounting summary");
208 serr
= DB_SEQ(usracct_db
, &key
, &data
, R_NEXT
);
210 warn("retrieving user accounting stats");
216 if (DB_SYNC(saved_usracct_db
, 0) < 0) {
217 warn("syncing process accounting summary");
220 if (DB_CLOSE(saved_usracct_db
) < 0) {
221 warn("closing process accounting summary");
231 struct userinfo uistore
, *ui
= &uistore
;
235 rv
= DB_SEQ(usracct_db
, &key
, &data
, R_FIRST
);
237 warn("retrieving user accounting stats");
240 memcpy(ui
, data
.data
, sizeof(struct userinfo
));
242 printf("%-*s %9ju ", MAXLOGNAME
- 1,
243 user_from_uid(ui
->ui_uid
, 0), (uintmax_t)ui
->ui_calls
);
245 t
= (double) (ui
->ui_utime
+ ui
->ui_stime
) /
247 if (t
< 0.0001) /* kill divide by zero */
250 printf("%12.2f%s ", t
/ 60.0, "cpu");
252 /* ui->ui_calls is always != 0 */
255 (uintmax_t)(ui
->ui_io
/ ui
->ui_calls
), "avio");
257 printf("%12ju%s", (uintmax_t)ui
->ui_io
, "tio");
259 /* t is always >= 0.0001; see above */
261 printf("%12.0f%s", ui
->ui_mem
/ t
, "k");
263 printf("%12ju%s", (uintmax_t)ui
->ui_mem
, "k*sec");
267 rv
= DB_SEQ(usracct_db
, &key
, &data
, R_NEXT
);
269 warn("retrieving user accounting stats");
279 bcopy(k1
->data
, &d1
, sizeof d1
);
280 bcopy(k2
->data
, &d2
, sizeof d2
);