summaryrefslogtreecommitdiff
path: root/logging.c
blob: 82ade9c6b91ee6c66e4163f967828a42771d4c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* logging.c -- Shell command logging functionality */

/* This file is part of GNU Bash, the Bourne Again SHell.

   Bash is free software; you can redistribute it and/or modify it under
   the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 2, or (at your option) any later
   version.

   Bash is distributed in the hope that it will be useful, but WITHOUT ANY
   WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   for more details.

   You should have received a copy of the GNU General Public License along
   with Bash; see the file COPYING.  If not, write to the Free Software
   Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.

   This code was originally developed by Vyatta, Inc.
   Portions created by Vyatta are Copyright (C) 2010 Vyatta, Inc. */

#include <unistd.h>

#include "shell.h"
#include "filecntl.h"
#include "jobs.h"

#include <time.h>
#include <utmp.h>
#include <mqueue.h>

#include "logmessage.h"

/*
 * Find terminal port associated with stdin.
 * Since shell is interactive
 */
static const char *get_tty()
{
  const char *tty = ttyname(0);

  if (tty) {
    if (!strncmp(tty, "/dev/", 5))
      tty += 5;
  }

  return tty;
}

static mqd_t message_queue = -1;
static const char *current_tty;

void initialize_logging ()
{
  const char *tty;

  tty = get_tty();
  if (tty == NULL)
    return;	/* Not really an interactive shell */

  message_queue = mq_open("/vbash", O_WRONLY);
  if (message_queue == (mqd_t)-1)
    return;	/* No logging server running */
	
  SET_CLOSE_ON_EXEC(message_queue);

  current_tty = strdup(tty);
}

/*
 * Logs the result of the child for more detailed accounting
 */
void log_process_exit (child)
    PROCESS *child;
{
  size_t cc;
  struct command_log *lrec;

  if (message_queue == (mqd_t) -1)	/* message queue does not exist */
    return;

  if (child->command == NULL)		/* no command info */
    return;

  cc = sizeof(*lrec) + strlen(child->command) + 1;
  lrec = alloca(cc);
  memset(lrec, 0, cc);

  lrec->pid 	= child->pid;
  lrec->status 	= WEXITSTATUS(child->status);
  lrec->endtime	= time(0);
  lrec->uid	= current_user.uid;
  lrec->euid	= current_user.euid;
  lrec->gid	= current_user.gid;
  lrec->egid	= current_user.egid;
  strncpy(lrec->name, current_user.user_name, UT_NAMESIZE);
  strncpy(lrec->tty, current_tty, UT_LINESIZE);
  strcpy(lrec->command, child->command);

  /* Ignore errors?? */
  mq_send(message_queue, (char *)lrec, cc, 0);
}