]> andersk Git - moira.git/blame - lib/critical.c
Make sq routines check the result of malloc. (Mostly for dbck.)
[moira.git] / lib / critical.c
CommitLineData
96d806a4 1/* $Header$
2 *
3 * Log and send a zephyrgram about any critical errors.
babbc197 4 *
5 * (c) Copyright 1988 by the Massachusetts Institute of Technology.
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
96d806a4 8 */
9
babbc197 10#include <mit-copyright.h>
96d806a4 11#include <stdio.h>
24582af9 12#include <sys/types.h>
96d806a4 13#include <sys/file.h>
8defc06b 14#include <moira_site.h>
2f4a1cd0 15#ifdef ZEPHYR
96d806a4 16#include <zephyr/zephyr.h>
2f4a1cd0 17#endif
18#ifdef SYSLOG
19#include <syslog.h>
20#endif
8fd777cf 21#include <string.h>
96d806a4 22
23
96d806a4 24/* mode to create the file with */
25#define LOGFILEMODE 0644
26
5a77c71e 27extern char *whoami;
28
96d806a4 29
8defc06b 30/* This routine sends a class MOIRA zephyrgram of specified instance
955e02e2 31 * and logs to a special logfile the message passed to it via msg
32 * and args in printf format. *** It expects the global variable
33 * whoami to be defined and contain the name of the calling program.
34 * It's a kludge that it takes a max of 8 arguments in a way that
35 * isn't necessarily portable, but varargs doesn't work here and we
36 * don't have vsprintf().
37 */
38
39void critical_alert(instance, msg, arg1, arg2, arg3, arg4,
40 arg5, arg6, arg7, arg8)
96d806a4 41 char *instance; /* Instance for zephyr gram */
42 char *msg; /* printf format message */
955e02e2 43 char *arg1, *arg2, *arg3, *arg4, *arg5, *arg6, *arg7, *arg8;
96d806a4 44{
3f6b08ec 45 FILE *crit; /* FILE for critical log file */
96d806a4 46 char buf[BUFSIZ]; /* Holds the formatted message */
47
955e02e2 48 sprintf(buf, msg, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
96d806a4 49
50 /* Send zephyr notice */
51 send_zgram(instance, buf);
52
53 /* Log message to critical file */
3f6b08ec 54 if ((crit = fopen(CRITERRLOG, "a")) != (FILE *)NULL)
96d806a4 55 {
24582af9 56 long t, time();
3f6b08ec 57 char *time_s;
58
59 time(&t);
60 time_s = ctime(&t) + 4;
61 time_s[strlen(time_s)-6] = '\0';
62
63 fprintf(crit, "%s <%d> %s\n", time_s, getpid(), buf);
64 fclose(crit);
96d806a4 65 }
923cef2a 66
67 com_err(whoami, 0, buf);
96d806a4 68}
69
70
71
8defc06b 72/* Sends a zephyrgram of class "MOIRA", instance as a parameter. Ignores
96d806a4 73 * errors while sending message.
74 */
75
76send_zgram(inst, msg)
77char *inst;
78char *msg;
79{
2f4a1cd0 80#ifdef ZEPHYR
96d806a4 81 ZNotice_t znotice;
82
8fd777cf 83#ifdef POSIX
84 memset (&znotice, 0, sizeof (znotice));
85#else
96d806a4 86 bzero (&znotice, sizeof (znotice));
8fd777cf 87#endif
96d806a4 88 znotice.z_kind = UNSAFE;
8defc06b 89 znotice.z_class = "MOIRA";
96d806a4 90 znotice.z_class_inst = inst;
e8377789 91 znotice.z_default_format = "MOIRA $instance on $fromhost:\n $message\n";
96d806a4 92 (void) ZInitialize ();
93 znotice.z_message = msg;
94 znotice.z_message_len = strlen(msg) + 1;
95 znotice.z_opcode = "";
96 znotice.z_recipient = "";
97 ZSendNotice(&znotice, ZNOAUTH);
2f4a1cd0 98#endif
99#ifdef SYSLOG
100 {
101 char buf[512];
8defc06b 102 sprintf(buf, "MOIRA: %s %s", inst, msg);
2f4a1cd0 103 syslog(LOG_ERR, buf);
104 }
105#endif
96d806a4 106}
This page took 0.1439 seconds and 5 git commands to generate.