Information about kernel modules


 
Thread Tools Search this Thread
Operating Systems HP-UX Information about kernel modules
# 1  
Old 05-25-2007
Information about kernel modules

Hi all,

what do kernel modules libaudit, klog and strlog do?

Specifically I want to determine if it was possible for us to determine if kernel level auditing is enabled at all?

regards
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Missing Modules After Compiling Kernel

I'm a little embarrassed after all these years I've never really successfully compiled my own kernel. I used this guide to make the following files: linux-headers-5.1.9_5.1.9-1_amd64.deb linux-image-5.1.9_5.1.9-1_amd64.deb linux-libc-dev_5.1.9-1_amd64.deb When I first booted into this... (4 Replies)
Discussion started by: Azrael
4 Replies

2. Linux

Disable loading kernel modules

Hi, I am running CentOS 6.5 and I want to remove auto loading 8021q and garp modules, but there are no configure files in /etc/modprobe.d define bot modules. I even added both module names to /etc/modprobe.d/blacklist.conf, both of them are still loaded after the reboot. How can I disable... (2 Replies)
Discussion started by: hce
2 Replies

3. Hardware

Linux Kernel Modules

Hey everyone. I have a question, doing an lsmod gives me a list of all the loaded modules for my system. But how did they know to load? my /etc/modules files is empty, so how did these modules know to load themselves on boot time? If I were to take this hard drive to another computer with a... (6 Replies)
Discussion started by: Lost in Cyberia
6 Replies

4. UNIX for Dummies Questions & Answers

Linux kernel modules makefiles doubts

This query is regarding the makefiles of linux kernel modules. I saw at some sites on net it is suggesting to include the following path: KERNEL_SOURCE := /usr/src/linux... while at some places it is askibg to include /lib/modules path: KERNEL_SOURCE := /lib/modules/2.6.27-7-generic/build... (0 Replies)
Discussion started by: rupeshkp728
0 Replies

5. Emergency UNIX and Linux Support

Linux: passing parameters to kernel modules

Hi, I need to set qlogic qla2xxx parameters in /etc/modprobe.conf (Oracle Linux Server release 5.7, almost equal to RedHat 5.7) two questions: how can I pass this parameters to the module while it is loaded (fibre channel luns are in use), if possible at all and how can I check the... (3 Replies)
Discussion started by: funksen
3 Replies

6. Programming

Debugging Linux Kernel Modules

I am aware of debugging linux applications using gdb and ddd. Now I have written a simple kernel module having init_module, exit _module and some functions for tasklets and workqueues. I want to debug these kernel modules like I used to debug applications setting breakpoints etc. How can I debug... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

7. UNIX for Advanced & Expert Users

Kernel Modules Not geting built

I installed in VM the Mandriva Linux with 2.6.27 kernel. But presently when I fire make the modules .ko does not get built. I get the following output on firing command in the kernel module folder. $ make Building first_driver.c ... make: Entering directory... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

8. Programming

HELP!!: CPU resource allocation between kernel modules and user mode process

Hi,all: I run my program which consists of one kernel module and one user mode process on a dual core server. The problem here is the kernel module consumes 100% of one core while the user mode process only consumes 10% of the other core, is there any solution that I can assign some computing... (1 Reply)
Discussion started by: neyshule
1 Replies

9. SuSE

How do I load kernel modules so BestCrypt will work

I'm using SuSE 9.2 Pro and trying to use a program call BestCrypt. I get it installed and type bctool and it says "Kernel modules not loaded". If you need to know anymore about it you can find it at http://www.jetico.com/linux/bcrypt-help/index.htm linux:/home/chris/Desktop/Xtheater-0.9.2 #... (6 Replies)
Discussion started by: CTroxtell21
6 Replies
Login or Register to Ask a Question
strlog(7)						 Miscellaneous Information Manual						 strlog(7)

NAME
strlog, log - STREAMS log driver driver SYNOPSIS
#include <sys/strlog.h> int strlog( short mid, short sid, char level, ushort flags char fmt, [,value]...); PARAMETERS
Specifies the STREAMS module ID number for the driver or module submitting the log message. Specifies the sub-ID number of a minor device associated with the STREAMS module or driver identified by mid. Specifies a level for screening lower-level event messages from a tracer. Contains several flags that can be set in various combinations. The flags are as follows: The message is for the error logger. The mes- sage is for the tracer. The message is for the console logger. Provides a notification of a fatal error. Makes a request to mail a copy of a message to the system administrator. The following are additional flags. The strlog interface does not use these flags: The message is a warning. The message is a note. A printf style format string. This accepts the %x, %l, %o, %u, %d, %c, and %s conversion specifications. Numeric or character arguments for process-specific information. There is no maximum number of arguments that can be specified. DESCRIPTION
The STREAMS log driver allows user-level processes, and STREAMS drivers and modules, to perform error logging and event tracing. This is done via a user interface and a kernel interface. The interface that this driver presents to user-level processes is a subset of the ioctl() system calls and STREAMS message formats. These processes can be error loggers, trace loggers, or other user processes, that generate error or event messages. The user interface collects log messages from the log driver, and also generates log messages from user processes. The driver also accepts log messages from STREAMS drivers and modules in the kernel via its function call interface. The kernel interface enters requests or calls from STREAMS drivers and modules into log messages. Kernel Interface STREAMS drivers and modules generate log messages by calls to the strlog() function. Definitions used in these calls are contained in the log_ctl structure in the </sys/strlog.h> header file. The SYNOPSIS section describes the kernel interface. User Interface User processes access the log driver with an open() call to /dev/streams/log. Each open to the device will obtain a separate stream. After a process opens /dev/streams/log, it indicates whether it is an error logger or trace logger. It does this by issuing an I_STR ioctl() system call containing the appropriate data and control information in a trace_ids structure. For an error logger, the I_STR ioctl() contains an ic_cmd field of I_ERRLOG with no data. For a trace logger, the I_STR ioctl() contains an ic_cmd field of I_TRCLOG and a data buffer consisting of an array of one or more trace_ids structures. If any of the fields of the trace_ids structure contain a value of -1, /dev/streams/log will accept whatever value it receives in that field. Otherwise, strlog only accepts messages only if the values of mid and sid are the same as their counterparts in the trace_ids structure, and if the message's level is equal to or less than the level value in the trace_ids structure. Once the logger process has sent the I_STR ioctl() call, the STREAMS log driver begins to send log messages matching the restrictions to the logger process. The logger process obtains the log messages via the getmsg(2) system call. The control part of the messages passed in this call includes a log_ctl structure, which indicates the mid, sid and level, time in ticks since the boot time that the message was sub- mitted, the corresponding time in seconds since January 1, 1970, and a sequence number. The time in seconds since January 1, 1970 is pro- vided so that the date and time of the message can be easily computed. The time in ticks since boot time is provided so that the relative timing of log messages can be determined. In addition to the information contained in the log_ctl structure, there is also a priority indication. The priority indication consists of a priority code and a facility code (found in /sys/syslog.h). The valid values for priority codes are the following, based on the setting(s) in flags: If SL_CONSOLE is set in flags. If SL_CONSOLE and SL_WARN are set in flags. If SL_CONSOLE and SL_FATAL are set in flags. If SL_CONSOLE and SL_ERROR are set in flags. If SL_CONSOLE and SL_NOTE are set in flags. If SL_CONSOLE and SL_TRACE are set in flags. The valid values for facility codes are the following: If the message originates from the kernel. If the message originates from a user process. However, these processes may sometimes set another facility code value instead. A user process, other than an error or trace logger, can send a log message to strlog(). The driver will accept only the flags and level fields of the log_ctl structure in the control part of the message, and a properly formatted data part of the message. The data part of the message is properly formatted if it contains a null-terminated format string, followed by any arguments packed one word each after the end of the string. A different series of sequence numbers is provided for error and trace logging streams. These sequence numbers are intended to help track the delivery of the messages. A gap in a sequence of numbers indicates that the logger process did not successfully deliver them. This can happen if the logger process stops sending messages for one reason or another (see the strace and strerr command reference pages for more information). The data part of messages contains unexpanded text of the format string (null terminated), followed by any arguments packed one word each after the end of the string. EXAMPLES
The following examples illustrate how to use the strlog interface for some basic uses. This code example segment illustrates how a STREAMS module can generate a console log message: strlog(TMUX,minor(mydev),0,SL_CONSOLE|SL_FATAL, "TMUX driver (minor:%d) suffers resource shortage.", minor(mydev)); This code example illustrates how a user process can register itself with the STREAMS log driver using the ioctl() command, I_ERRLOG. struct strioctl iocerr: iocerr.ic_cmd = I_ERRLOG; iocerr.ic_timout = 0; iocerr.ic_len = 0; iocerr.ic_dp = NULL; ioctl(logfd, I_STR, &iocerr) NOTES
Tru64 UNIX does not provide a console logger. Note, however, that other systems may provide console loggers. FILES
Specifies the clone interface. Specifies the header file for STREAMS logging. Specifies the header file for STREAMS options and ioctl() commands. ERRORS
If any of the following conditions occurs, strlog() driver's ioctl() command sets errno to the corresponding value: The I_TRCLOG ioctl() call did not contain any trace_ids structures. The I_STR ioctl() call could not be recognized. The driver does not return any errors for incorrectly formatted messages that user processes send. RELATED INFORMATION
Commands: strace(8), strerr(8). Interfaces clone(7), streamio(7). Functions: getmsg(2), putmsg(2), write(2). delim off strlog(7)