17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate * CDDL HEADER START
37c478bd9Sstevel@tonic-gate *
47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
5*7257d1b4Sraf * Common Development and Distribution License (the "License").
6*7257d1b4Sraf * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate *
87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate * and limitations under the License.
127c478bd9Sstevel@tonic-gate *
137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate *
197c478bd9Sstevel@tonic-gate * CDDL HEADER END
207c478bd9Sstevel@tonic-gate */
21*7257d1b4Sraf
227c478bd9Sstevel@tonic-gate /*
23*7257d1b4Sraf * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
247c478bd9Sstevel@tonic-gate * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate */
267c478bd9Sstevel@tonic-gate
277c478bd9Sstevel@tonic-gate /* Copyright (c) 1988 AT&T */
287c478bd9Sstevel@tonic-gate /* All Rights Reserved */
297c478bd9Sstevel@tonic-gate
307c478bd9Sstevel@tonic-gate /* lfmt_log() - log info */
31*7257d1b4Sraf
32*7257d1b4Sraf #include "lint.h"
337c478bd9Sstevel@tonic-gate #include <mtlib.h>
347c478bd9Sstevel@tonic-gate #include <pfmt.h>
357c478bd9Sstevel@tonic-gate #include <stdio.h>
367c478bd9Sstevel@tonic-gate #include <sys/types.h>
377c478bd9Sstevel@tonic-gate #include <sys/types32.h>
387c478bd9Sstevel@tonic-gate #include <sys/stropts.h>
397c478bd9Sstevel@tonic-gate #include <sys/strlog.h>
407c478bd9Sstevel@tonic-gate #include <fcntl.h>
417c478bd9Sstevel@tonic-gate #include <errno.h>
427c478bd9Sstevel@tonic-gate #include <synch.h>
437c478bd9Sstevel@tonic-gate #include <thread.h>
447c478bd9Sstevel@tonic-gate #include "pfmt_data.h"
457c478bd9Sstevel@tonic-gate #include <time.h>
467c478bd9Sstevel@tonic-gate #include <stropts.h>
477c478bd9Sstevel@tonic-gate #include <unistd.h>
487c478bd9Sstevel@tonic-gate #include <strings.h>
497c478bd9Sstevel@tonic-gate #include <sys/uio.h>
507c478bd9Sstevel@tonic-gate
517c478bd9Sstevel@tonic-gate #define MAXMSG 1024
527c478bd9Sstevel@tonic-gate #define LOGNAME "/dev/conslog"
537c478bd9Sstevel@tonic-gate #define LOG_CONSOLE "/dev/console"
547c478bd9Sstevel@tonic-gate
557c478bd9Sstevel@tonic-gate int
__lfmt_log(const char * text,const char * sev,va_list args,long flag,int ret)567c478bd9Sstevel@tonic-gate __lfmt_log(const char *text, const char *sev, va_list args, long flag, int ret)
577c478bd9Sstevel@tonic-gate {
587c478bd9Sstevel@tonic-gate static int fd = -1;
597c478bd9Sstevel@tonic-gate struct strbuf dat;
607c478bd9Sstevel@tonic-gate int msg_offset;
617c478bd9Sstevel@tonic-gate long len;
627c478bd9Sstevel@tonic-gate union {
637c478bd9Sstevel@tonic-gate long flag;
647c478bd9Sstevel@tonic-gate char buf[MAXMSG];
657c478bd9Sstevel@tonic-gate } msg;
667c478bd9Sstevel@tonic-gate int err;
677c478bd9Sstevel@tonic-gate int fdd;
687c478bd9Sstevel@tonic-gate
697c478bd9Sstevel@tonic-gate len = ret + sizeof (long) + 3;
707c478bd9Sstevel@tonic-gate
717c478bd9Sstevel@tonic-gate if (len > sizeof (msg)) {
727c478bd9Sstevel@tonic-gate errno = ERANGE;
737c478bd9Sstevel@tonic-gate return (-2);
747c478bd9Sstevel@tonic-gate }
757c478bd9Sstevel@tonic-gate
767c478bd9Sstevel@tonic-gate msg.flag = flag;
777c478bd9Sstevel@tonic-gate msg_offset = (int)sizeof (long);
787c478bd9Sstevel@tonic-gate
797c478bd9Sstevel@tonic-gate lrw_rdlock(&_rw_pfmt_label);
807c478bd9Sstevel@tonic-gate if (*__pfmt_label)
817c478bd9Sstevel@tonic-gate msg_offset += strlcpy(msg.buf + msg_offset, __pfmt_label,
827c478bd9Sstevel@tonic-gate sizeof (msg.buf) - msg_offset);
837c478bd9Sstevel@tonic-gate lrw_unlock(&_rw_pfmt_label);
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gate if (sev)
867c478bd9Sstevel@tonic-gate msg_offset += sprintf(msg.buf + msg_offset, sev, flag & 0xff);
877c478bd9Sstevel@tonic-gate
887c478bd9Sstevel@tonic-gate msg_offset += 1 + vsprintf(msg.buf + msg_offset, text, args);
897c478bd9Sstevel@tonic-gate msg.buf[msg_offset++] = '\0';
907c478bd9Sstevel@tonic-gate
917c478bd9Sstevel@tonic-gate if (fd == -1 &&
927c478bd9Sstevel@tonic-gate ((fd = open(LOGNAME, O_WRONLY)) == -1 ||
937c478bd9Sstevel@tonic-gate fcntl(fd, F_SETFD, 1) == -1))
947c478bd9Sstevel@tonic-gate return (-2);
957c478bd9Sstevel@tonic-gate
967c478bd9Sstevel@tonic-gate dat.maxlen = MAXMSG;
977c478bd9Sstevel@tonic-gate dat.len = (int)msg_offset;
987c478bd9Sstevel@tonic-gate dat.buf = msg.buf;
997c478bd9Sstevel@tonic-gate
1007c478bd9Sstevel@tonic-gate if (putmsg(fd, 0, &dat, 0) == -1) {
1017c478bd9Sstevel@tonic-gate (void) close(fd);
1027c478bd9Sstevel@tonic-gate return (-2);
1037c478bd9Sstevel@tonic-gate }
1047c478bd9Sstevel@tonic-gate
1057c478bd9Sstevel@tonic-gate /*
1067c478bd9Sstevel@tonic-gate * Display it to a console
1077c478bd9Sstevel@tonic-gate */
1087c478bd9Sstevel@tonic-gate if ((flag & MM_CONSOLE) != 0) {
1097c478bd9Sstevel@tonic-gate char *p;
1107c478bd9Sstevel@tonic-gate time_t t;
1117c478bd9Sstevel@tonic-gate char buf[128];
1127c478bd9Sstevel@tonic-gate err = errno;
1137c478bd9Sstevel@tonic-gate fdd = open(LOG_CONSOLE, O_WRONLY);
1147c478bd9Sstevel@tonic-gate if (fdd != -1) {
1157c478bd9Sstevel@tonic-gate /*
1167c478bd9Sstevel@tonic-gate * Use C locale for time stamp.
1177c478bd9Sstevel@tonic-gate */
1187c478bd9Sstevel@tonic-gate (void) time(&t);
1197c478bd9Sstevel@tonic-gate (void) ctime_r(&t, buf, sizeof (buf));
1207c478bd9Sstevel@tonic-gate p = (char *)strrchr(buf, '\n');
1217c478bd9Sstevel@tonic-gate if (p != NULL)
1227c478bd9Sstevel@tonic-gate *p = ':';
1237c478bd9Sstevel@tonic-gate (void) write(fdd, buf, strlen(buf));
1247c478bd9Sstevel@tonic-gate (void) write(fdd, msg.buf + sizeof (long),
1257c478bd9Sstevel@tonic-gate msg_offset - sizeof (long));
1267c478bd9Sstevel@tonic-gate (void) write(fdd, "\n", 1);
1277c478bd9Sstevel@tonic-gate } else
1287c478bd9Sstevel@tonic-gate return (-2);
1297c478bd9Sstevel@tonic-gate (void) close(fdd);
1307c478bd9Sstevel@tonic-gate errno = err;
1317c478bd9Sstevel@tonic-gate }
1327c478bd9Sstevel@tonic-gate return (ret);
1337c478bd9Sstevel@tonic-gate }
134