/* * Copyright (c) University of British Columbia, 1984 * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * the Laboratory for Computation Vision and the Computer Science Department * of the University of British Columbia. * * %sccs.include.redist.c% * * @(#)pk_acct.c 8.2 (Berkeley) 05/14/95 */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include struct vnode *pkacctp; /* * Turn on packet accounting */ pk_accton (path) char *path; { register struct vnode *vp = NULL; struct nameidata nd; struct vnode *oacctp = pkacctp; struct proc *p = curproc; int error; if (path == 0) goto close; NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, path, p); if (error = vn_open (&nd, FWRITE, 0644)) return (error); vp = nd.ni_vp; VOP_UNLOCK(vp, 0, p); if (vp -> v_type != VREG) { vrele (vp); return (EACCES); } pkacctp = vp; if (oacctp) { close: error = vn_close (oacctp, FWRITE, p -> p_ucred, p); } return (error); } /* * Write a record on the accounting file. */ pk_acct (lcp) register struct pklcd *lcp; { register struct vnode *vp; register struct sockaddr_x25 *sa; register char *src, *dst; register int len; register long etime; static struct x25acct acbuf; if ((vp = pkacctp) == 0) return; bzero ((caddr_t)&acbuf, sizeof (acbuf)); if (lcp -> lcd_ceaddr != 0) sa = lcp -> lcd_ceaddr; else if (lcp -> lcd_craddr != 0) { sa = lcp -> lcd_craddr; acbuf.x25acct_callin = 1; } else return; if (sa -> x25_opts.op_flags & X25_REVERSE_CHARGE) acbuf.x25acct_revcharge = 1; acbuf.x25acct_stime = lcp -> lcd_stime; acbuf.x25acct_etime = time.tv_sec - acbuf.x25acct_stime; acbuf.x25acct_uid = curproc -> p_cred -> p_ruid; acbuf.x25acct_psize = sa -> x25_opts.op_psize; acbuf.x25acct_net = sa -> x25_net; /* * Convert address to bcd */ src = sa -> x25_addr; dst = acbuf.x25acct_addr; for (len = 0; *src; len++) if (len & 01) *dst++ |= *src++ & 0xf; else *dst = *src++ << 4; acbuf.x25acct_addrlen = len; bcopy (sa -> x25_udata, acbuf.x25acct_udata, sizeof (acbuf.x25acct_udata)); acbuf.x25acct_txcnt = lcp -> lcd_txcnt; acbuf.x25acct_rxcnt = lcp -> lcd_rxcnt; (void) vn_rdwr(UIO_WRITE, vp, (caddr_t)&acbuf, sizeof (acbuf), (off_t)0, UIO_SYSSPACE, IO_UNIT|IO_APPEND, curproc -> p_ucred, (int *)0, (struct proc *)0); }